UNPKG

adou-ui

Version:

feat:修复了TagInput无法清空的问题

39 lines (38 loc) 1.02 kB
import React from "react"; import "./index.scss"; interface DialogProps { canCancel?: boolean; showFooter?: boolean; externalContentCls?: string; footerStyle?: React.CSSProperties; footerLeftContent?: React.ReactNode; confirmWhenEnter?: boolean; draggble?: boolean; confirmBtnLoading?: boolean; needDestroy?: boolean; maxY?: boolean; maxX?: boolean; max?: boolean; showConfirm?: boolean; showCancel?: boolean; showClose?: boolean; canConfirm?: boolean; clickOutside?: boolean; confirmText?: string; cancelText?: string; confirmBtnClass?: string; cancelBtnClass?: string; show?: boolean; title?: string; children?: React.ReactNode; type?: string; maxHeight?: string; width?: string; height?: string; maxWidth?: string; onCancel?: () => void; onClose?: () => void; onConfirm?: () => void; } declare const Dialog: React.FC<DialogProps>; export default Dialog;