Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
max-mykhailenko authored and actions-user committed Mar 29, 2021
1 parent db4cdec commit 53073ad
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions dist/pure-modal-content.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ declare type Props = {
children: JSX.Element;
onDragStart?: (event: MouseOrTouch) => unknown;
onDragEnd?: (event: MouseOrTouch) => unknown;
onClose: (event: React.MouseEvent<HTMLDivElement>) => void;
bodyClass: string;
header: JSX.Element | string;
footer: JSX.Element | string;
onClose?: (event: React.MouseEvent<HTMLDivElement>) => void;
bodyClass?: string;
header?: JSX.Element | string;
footer?: JSX.Element | string;
closeButton: JSX.Element | string;
closeButtonPosition: string;
draggable: boolean;
Expand Down
24 changes: 12 additions & 12 deletions dist/react-pure-modal.d.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import './react-pure-modal.css';
declare type Props = {
children: JSX.Element;
replace: boolean;
className: string;
header: JSX.Element | string;
footer: JSX.Element | string;
scrollable: boolean;
draggable: boolean;
width: string;
isOpen: boolean;
onClose: Function;
closeButton: JSX.Element | string;
closeButtonPosition: string;
portal: boolean;
replace?: boolean;
className?: string;
header?: JSX.Element | string;
footer?: JSX.Element | string;
scrollable?: boolean;
draggable?: boolean;
width?: string;
isOpen?: boolean;
onClose?: Function;
closeButton?: JSX.Element | string;
closeButtonPosition?: string;
portal?: boolean;
};
declare function PureModal(props: Props): JSX.Element | null;
export default PureModal;

0 comments on commit 53073ad

Please sign in to comment.