12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import { IBaseProps } from '../_util/base';
- export interface IPopoverProps extends IBaseProps {
-
- visible: boolean;
-
- defaultVisible: boolean;
-
- destroyOnClose: boolean;
-
- color: string;
-
- contentStyle: string;
-
- contentClassName: string;
-
- content?: string;
-
- maskClassName: string;
-
- maskStyle: string;
-
- onVisibleChange?: (visible: boolean, e: Record<string, any>) => void;
-
- placement: 'top' | 'top-right' | 'top-left' | 'bottom' | 'bottom-left' | 'bottom-right' | 'left' | 'left-top' | 'left-bottom' | 'right' | 'right-top' | 'right-bottom';
-
- showMask: boolean;
-
- autoAdjustOverflow: boolean;
- }
- export declare const PopoverDefaultProps: Partial<IPopoverProps>;
|