diff --git a/src/action-sheet/README.md b/src/action-sheet/README.md index eabe4f757..a40faa2ce 100644 --- a/src/action-sheet/README.md +++ b/src/action-sheet/README.md @@ -190,6 +190,7 @@ export default { | close-on-click-overlay | Whether to close when overlay is clicked | _boolean_ | `true` | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | | teleport | Specifies a target element where ActionSheet will be mounted | _string \| Element_ | - | +| before-close `v3.1.4` | Callback function before close | _(action: string) => boolean \| Promise\_ | - | ### Data Structure of Action diff --git a/src/action-sheet/README.zh-CN.md b/src/action-sheet/README.zh-CN.md index 98e77a3aa..c81d3fb81 100644 --- a/src/action-sheet/README.zh-CN.md +++ b/src/action-sheet/README.zh-CN.md @@ -200,6 +200,7 @@ export default { | close-on-click-overlay | 是否在点击遮罩层后关闭 | _boolean_ | `true` | | safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` | | teleport | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| Element_ | - | +| before-close `v3.1.4` | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action: string) => boolean \| Promise\_ | - | ### Action 数据结构 diff --git a/src/dialog/Dialog.tsx b/src/dialog/Dialog.tsx index ad1ed8474..3a0900412 100644 --- a/src/dialog/Dialog.tsx +++ b/src/dialog/Dialog.tsx @@ -1,7 +1,6 @@ import { PropType, reactive, defineComponent } from 'vue'; // Utils -import { callInterceptor, Interceptor } from '../utils/interceptor'; import { pick, extend, @@ -11,6 +10,7 @@ import { unknownProp, createNamespace, } from '../utils'; +import { callInterceptor } from '../utils/interceptor'; import { BORDER_TOP, BORDER_LEFT } from '../utils/constant'; import { popupSharedProps, popupSharedPropKeys } from '../popup/shared'; @@ -44,7 +44,6 @@ export default defineComponent({ callback: Function as PropType<(action?: DialogAction) => void>, allowHtml: Boolean, className: unknownProp, - beforeClose: Function as PropType, messageAlign: String as PropType, closeOnPopstate: truthProp, showCancelButton: Boolean, diff --git a/src/popup/Popup.tsx b/src/popup/Popup.tsx index f68196d64..cf1abbdcd 100644 --- a/src/popup/Popup.tsx +++ b/src/popup/Popup.tsx @@ -16,7 +16,7 @@ import { // Utils import { popupSharedProps } from './shared'; import { createNamespace, extend, isDef } from '../utils'; -import { callInterceptor, Interceptor } from '../utils/interceptor'; +import { callInterceptor } from '../utils/interceptor'; // Composables import { useEventListener } from '@vant/use'; @@ -51,7 +51,6 @@ export default defineComponent({ closeable: Boolean, transition: String, iconPrefix: String, - beforeClose: Function as PropType, closeOnPopstate: Boolean, safeAreaInsetBottom: Boolean, position: { diff --git a/src/popup/shared.ts b/src/popup/shared.ts index 4e3d49b8d..b37b55bb2 100644 --- a/src/popup/shared.ts +++ b/src/popup/shared.ts @@ -1,5 +1,6 @@ import { PropType, CSSProperties, TeleportProps } from 'vue'; import { truthProp, unknownProp } from '../utils'; +import type { Interceptor } from '../utils/interceptor'; export const popupSharedProps = { // whether to show popup @@ -16,6 +17,8 @@ export const popupSharedProps = { lockScroll: truthProp, // whether to lazy render lazyRender: truthProp, + // callback function before close + beforeClose: Function as PropType, // overlay custom style overlayStyle: Object as PropType, // overlay custom class name diff --git a/src/share-sheet/README.md b/src/share-sheet/README.md index 7f14ec258..064e2d3fa 100644 --- a/src/share-sheet/README.md +++ b/src/share-sheet/README.md @@ -183,6 +183,7 @@ export default { | close-on-click-overlay | Whether to close when overlay is clicked | _boolean_ | `true` | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | | teleport | Specifies a target element where ShareSheet will be mounted | _string \| Element_ | - | +| before-close `v3.1.4` | Callback function before close | _(action: string) => boolean \| Promise\_ | - | ### Data Structure of Option diff --git a/src/share-sheet/README.zh-CN.md b/src/share-sheet/README.zh-CN.md index 853cce2ae..8f031dba5 100644 --- a/src/share-sheet/README.zh-CN.md +++ b/src/share-sheet/README.zh-CN.md @@ -195,6 +195,7 @@ export default { | close-on-click-overlay | 是否在点击遮罩层后关闭 | _boolean_ | `true` | | safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` | | teleport | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| Element_ | - | +| before-close `v3.1.4` | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action: string) => boolean \| Promise\_ | - | ### Option 数据结构