parent
e30077dd83
commit
73c71e19a2
|
@ -16,6 +16,7 @@ const ConfirmDialog: FunctionalComponent<ConfirmDialogProps> = props => {
|
|||
onCancel,
|
||||
onOk,
|
||||
close,
|
||||
closable = false,
|
||||
zIndex,
|
||||
afterClose,
|
||||
visible,
|
||||
|
@ -83,6 +84,7 @@ const ConfirmDialog: FunctionalComponent<ConfirmDialogProps> = props => {
|
|||
keyboard={keyboard}
|
||||
centered={centered}
|
||||
getContainer={getContainer}
|
||||
closable={closable}
|
||||
>
|
||||
<div class={`${contentPrefixCls}-body-wrapper`}>
|
||||
<div class={`${contentPrefixCls}-body`}>
|
||||
|
|
|
@ -102,6 +102,7 @@ export interface ModalFuncProps {
|
|||
class?: string;
|
||||
visible?: boolean;
|
||||
title?: VNodeTypes;
|
||||
closable?: boolean;
|
||||
content?: VNodeTypes;
|
||||
// TODO: find out exact types
|
||||
onOk?: (...args: any[]) => any;
|
||||
|
|
Loading…
Reference in New Issue