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

@@ -13,8 +13,8 @@ import {MODAL_INFO} from 'common/communication';
import {PERMISSION_DESCRIPTION} from 'common/permissions';
type Props = {
handleDeny: React.MouseEventHandler<Button>;
handleGrant: React.MouseEventHandler<Button>;
handleDeny: React.MouseEventHandler<HTMLButtonElement>;
handleGrant: React.MouseEventHandler<HTMLButtonElement>;
getPermissionInfo: () => void;
openExternalLink: (protocol: string, url: string) => void;
};
@@ -107,7 +107,7 @@ export default class PermissionModal extends React.PureComponent<Props, State> {
onClick={this.props.handleDeny}
>{'Cancel'}</Button>
<Button
bsStyle='primary'
variant='primary'
onClick={this.props.handleGrant}
>{'Accept'}</Button>
</div>