File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ ReactDOM.render(
70
70
| keyboard | Boolean | true | whether support press esc to close | |
71
71
| mousePosition | {x: number ,y: number } | | set pageX and pageY of current mouse(it will cause transform origin to be set). | |
72
72
| onClose | function() | | called when click close button or mask | |
73
- | ~~ afterClose~~ | function() | | called when close animation end | |
73
+ | afterClose | function() | | called when close animation end | |
74
74
| getContainer | function(): HTMLElement | | to determine where Dialog will be mounted | |
75
75
| destroyOnHidden | Boolean | false | to unmount child compenents on onClose | |
76
76
| closeIcon | ReactNode | | specific the close icon. | |
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ export type IDialogPropTypes = {
20
20
rootStyle ?: CSSProperties ;
21
21
mask ?: boolean ;
22
22
children ?: React . ReactNode ;
23
- /** @description please use `closable.afterClose` instead */
24
23
afterClose ?: ( ) => any ;
25
24
afterOpenChange ?: ( open : boolean ) => void ;
26
25
onClose ?: ( e : SyntheticEvent ) => any ;
You can’t perform that action at this time.
0 commit comments