| import type React from 'react'; |
| import type { DialogProps } from 'rc-dialog'; |
|
|
| import { Breakpoint } from '../_util/responsiveObserver'; |
| import type { ButtonProps, LegacyButtonType } from '../button/button'; |
| import type { DirectionType } from '../config-provider'; |
|
|
| interface ModalCommonProps |
| extends Omit< |
| DialogProps, |
| | 'footer' |
| | 'width' |
| | 'onClose' |
| | 'animation' |
| | 'maskAnimation' |
| | 'transitionName' |
| | 'maskTransitionName' |
| > { |
| footer?: |
| | React.ReactNode |
| | (( |
| originNode: React.ReactNode, |
| extra: { OkBtn: React.FC; CancelBtn: React.FC }, |
| ) => React.ReactNode); |
| } |
|
|
| export interface ModalProps extends ModalCommonProps { |
| |
| open?: boolean; |
| |
| confirmLoading?: boolean; |
| |
| title?: React.ReactNode; |
| |
| onOk?: (e: React.MouseEvent<HTMLButtonElement>) => void; |
| |
| onCancel?: (e: React.MouseEvent<HTMLButtonElement>) => void; |
| afterClose?: () => void; |
| |
| afterOpenChange?: (open: boolean) => void; |
| |
| centered?: boolean; |
| |
| width?: string | number | Partial<Record<Breakpoint, string | number>>; |
| |
| okText?: React.ReactNode; |
| |
| okType?: LegacyButtonType; |
| |
| cancelText?: React.ReactNode; |
| |
| maskClosable?: boolean; |
| |
| forceRender?: boolean; |
| okButtonProps?: ButtonProps; |
| cancelButtonProps?: ButtonProps; |
| |
| destroyOnClose?: boolean; |
| |
| |
| |
| destroyOnHidden?: boolean; |
| style?: React.CSSProperties; |
| wrapClassName?: string; |
| maskTransitionName?: string; |
| transitionName?: string; |
| className?: string; |
| rootClassName?: string; |
| classNames?: NonNullable<DialogProps['classNames']>; |
| getContainer?: string | HTMLElement | getContainerFunc | false; |
| zIndex?: number; |
| |
| bodyStyle?: React.CSSProperties; |
| |
| maskStyle?: React.CSSProperties; |
| mask?: boolean; |
| keyboard?: boolean; |
| wrapProps?: any; |
| prefixCls?: string; |
| closeIcon?: React.ReactNode; |
| modalRender?: (node: React.ReactNode) => React.ReactNode; |
| focusTriggerAfterClose?: boolean; |
| children?: React.ReactNode; |
| mousePosition?: MousePosition; |
|
|
| |
| |
| visible?: boolean; |
| |
| |
| |
| loading?: boolean; |
| } |
|
|
| type getContainerFunc = () => HTMLElement; |
|
|
| export interface ModalFuncProps extends ModalCommonProps { |
| prefixCls?: string; |
| className?: string; |
| rootClassName?: string; |
| open?: boolean; |
| |
| visible?: boolean; |
| title?: React.ReactNode; |
| content?: React.ReactNode; |
| |
| onOk?: (...args: any[]) => any; |
| onCancel?: (...args: any[]) => any; |
| afterClose?: () => void; |
| okButtonProps?: ButtonProps; |
| cancelButtonProps?: ButtonProps; |
| centered?: boolean; |
| width?: string | number; |
| okText?: React.ReactNode; |
| okType?: LegacyButtonType; |
| cancelText?: React.ReactNode; |
| icon?: React.ReactNode; |
| mask?: boolean; |
| maskClosable?: boolean; |
| zIndex?: number; |
| okCancel?: boolean; |
| style?: React.CSSProperties; |
| wrapClassName?: string; |
| |
| maskStyle?: React.CSSProperties; |
| type?: 'info' | 'success' | 'error' | 'warn' | 'warning' | 'confirm'; |
| keyboard?: boolean; |
| getContainer?: string | HTMLElement | getContainerFunc | false; |
| autoFocusButton?: null | 'ok' | 'cancel'; |
| transitionName?: string; |
| maskTransitionName?: string; |
| direction?: DirectionType; |
| |
| bodyStyle?: React.CSSProperties; |
| closeIcon?: React.ReactNode; |
| footer?: ModalProps['footer']; |
| modalRender?: (node: React.ReactNode) => React.ReactNode; |
| focusTriggerAfterClose?: boolean; |
| } |
|
|
| export interface ModalLocale { |
| okText: string; |
| cancelText: string; |
| justOkText: string; |
| } |
|
|
| export type MousePosition = { x: number; y: number } | null; |
|
|