123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { IBaseProps } from '../_util/base';
- export interface IPopupProps extends IBaseProps {
-
- visible: boolean;
-
- destroyOnClose: boolean;
-
- showMask: boolean;
-
- position: 'center' | 'top' | 'bottom' | 'left' | 'right';
-
- animation: boolean;
-
- animationType: 'transform' | 'position';
-
- duration: number;
-
- height: number;
-
- width: number;
-
- maskClassName: string;
-
- maskStyle: string;
- zIndex: number;
-
- onClose?: () => void;
-
- onAfterShow?: () => void;
-
- onAfterClose?: () => void;
- }
- export declare const PopupDefaultProps: Partial<IPopupProps>;
|