mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(ActionSheet): add close-on-popstate prop (#5716)
This commit is contained in:
parent
f070773b42
commit
a5acd379f7
@ -133,6 +133,7 @@ export default {
|
|||||||
| overlay | Whether to show overlay | *boolean* | `true` |
|
| overlay | Whether to show overlay | *boolean* | `true` |
|
||||||
| lock-scroll | Whether to lock background scroll | *boolean* | `true` |
|
| lock-scroll | Whether to lock background scroll | *boolean* | `true` |
|
||||||
| lazy-render | Whether to lazy render util appeared | *boolean* | `true` |
|
| lazy-render | Whether to lazy render util appeared | *boolean* | `true` |
|
||||||
|
| close-on-popstate `v2.5.3` | Whether to close when popstate | *boolean* | `false` |
|
||||||
| close-on-click-action | Whether to close when click action | *boolean* | `false` |
|
| close-on-click-action | Whether to close when click action | *boolean* | `false` |
|
||||||
| close-on-click-overlay | Whether to close when click overlay | *boolean* | `true` |
|
| close-on-click-overlay | Whether to close when click overlay | *boolean* | `true` |
|
||||||
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | *boolean* | `true` |
|
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | *boolean* | `true` |
|
||||||
|
@ -147,6 +147,7 @@ export default {
|
|||||||
| overlay | 是否显示遮罩层 | *boolean* | `true` |
|
| overlay | 是否显示遮罩层 | *boolean* | `true` |
|
||||||
| lock-scroll | 是否锁定背景滚动 | *boolean* | `true` |
|
| lock-scroll | 是否锁定背景滚动 | *boolean* | `true` |
|
||||||
| lazy-render | 是否在显示弹层时才渲染节点 | *boolean* | `true` |
|
| lazy-render | 是否在显示弹层时才渲染节点 | *boolean* | `true` |
|
||||||
|
| close-on-popstate `v2.5.3` | 是否在页面回退时自动关闭 | *boolean* | `false` |
|
||||||
| close-on-click-action | 是否在点击选项后关闭 | *boolean* | `false` |
|
| close-on-click-action | 是否在点击选项后关闭 | *boolean* | `false` |
|
||||||
| close-on-click-overlay | 是否在点击遮罩层后关闭 | *boolean* | `true` |
|
| close-on-click-overlay | 是否在点击遮罩层后关闭 | *boolean* | `true` |
|
||||||
| safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/quickstart#di-bu-an-quan-qu-gua-pei) | *boolean* | `true` |
|
| safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/quickstart#di-bu-an-quan-qu-gua-pei) | *boolean* | `true` |
|
||||||
|
@ -34,6 +34,7 @@ export type ActionSheetProps = PopupMixinProps & {
|
|||||||
closeIcon: string;
|
closeIcon: string;
|
||||||
cancelText?: string;
|
cancelText?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
|
closeOnPopstate?: boolean;
|
||||||
closeOnClickAction?: boolean;
|
closeOnClickAction?: boolean;
|
||||||
safeAreaInsetBottom?: boolean;
|
safeAreaInsetBottom?: boolean;
|
||||||
};
|
};
|
||||||
@ -143,6 +144,7 @@ function ActionSheet(
|
|||||||
lazyRender={props.lazyRender}
|
lazyRender={props.lazyRender}
|
||||||
lockScroll={props.lockScroll}
|
lockScroll={props.lockScroll}
|
||||||
getContainer={props.getContainer}
|
getContainer={props.getContainer}
|
||||||
|
closeOnPopstate={props.closeOnPopstate}
|
||||||
closeOnClickOverlay={props.closeOnClickOverlay}
|
closeOnClickOverlay={props.closeOnClickOverlay}
|
||||||
safeAreaInsetBottom={props.safeAreaInsetBottom}
|
safeAreaInsetBottom={props.safeAreaInsetBottom}
|
||||||
{...inherit(ctx, true)}
|
{...inherit(ctx, true)}
|
||||||
@ -164,6 +166,7 @@ ActionSheet.props = {
|
|||||||
cancelText: String,
|
cancelText: String,
|
||||||
description: String,
|
description: String,
|
||||||
getContainer: [String, Function],
|
getContainer: [String, Function],
|
||||||
|
closeOnPopstate: Boolean,
|
||||||
closeOnClickAction: Boolean,
|
closeOnClickAction: Boolean,
|
||||||
round: {
|
round: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user