React bootstrap upgrade to v1, migrate to react-beautiful-dnd (#1639)

* Upgrade packages, fix errors, still WIP

* WIP

* Bootstrap v4 upgrade

* Switch to react-beautiful-dnd

* Fixed some issues

* Added to generate signed Mac build for UX

* PR feedback

* Missed one

* PR feedback
This commit is contained in:
Devin Binnie
2021-07-05 21:19:11 -04:00
committed by GitHub
parent 86a3f13a6b
commit 4130c2c37d
27 changed files with 869 additions and 554 deletions

View File

@@ -11,8 +11,8 @@ type Props = {
acceptLabel: string;
cancelLabel: string;
onHide: () => void;
onAccept: React.MouseEventHandler<Button>;
onCancel: React.MouseEventHandler<Button>;
onAccept: React.MouseEventHandler<HTMLButtonElement>;
onCancel: React.MouseEventHandler<HTMLButtonElement>;
};
export default function DestructiveConfirmationModal(props: Props) {
@@ -36,11 +36,11 @@ export default function DestructiveConfirmationModal(props: Props) {
{body}
<Modal.Footer>
<Button
bsStyle='link'
variant='link'
onClick={onCancel}
>{cancelLabel}</Button>
<Button
bsStyle='danger'
variant='danger'
onClick={onAccept}
>{acceptLabel}</Button>
</Modal.Footer>