File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const ConfirmDialog: FunctionalComponent<ConfirmDialogProps> = props => {
16
16
onCancel,
17
17
onOk,
18
18
close,
19
+ closable = false ,
19
20
zIndex,
20
21
afterClose,
21
22
visible,
@@ -83,6 +84,7 @@ const ConfirmDialog: FunctionalComponent<ConfirmDialogProps> = props => {
83
84
keyboard = { keyboard }
84
85
centered = { centered }
85
86
getContainer = { getContainer }
87
+ closable = { closable }
86
88
>
87
89
< div class = { `${ contentPrefixCls } -body-wrapper` } >
88
90
< div class = { `${ contentPrefixCls } -body` } >
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ export interface ModalFuncProps {
102
102
class ?: string ;
103
103
visible ?: boolean ;
104
104
title ?: VNodeTypes ;
105
+ closable ?: boolean ;
105
106
content ?: VNodeTypes ;
106
107
// TODO: find out exact types
107
108
onOk ?: ( ...args : any [ ] ) => any ;
You can’t perform that action at this time.
0 commit comments