Merge branch 'next' of github.com:vueComponent/ant-design-vue into next

pull/3866/head
tangjinzhou 2021-03-27 22:17:17 +08:00
commit 3da83ea161
2 changed files with 3 additions and 0 deletions

View File

@ -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`}>

View File

@ -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;