fix(ActionSheet): closeOnPopstate prop not work (#9644)

This commit is contained in:
neverland 2021-10-09 10:17:56 +08:00 committed by GitHub
parent 15b08400b0
commit e5a92fe6a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 6 deletions

View File

@ -27,6 +27,13 @@ export type ActionSheetAction = {
className?: unknown;
};
const popupKeys = [
...popupSharedPropKeys,
'round',
'closeOnPopstate',
'safeAreaInsetBottom',
] as const;
export default defineComponent({
name,
@ -38,7 +45,7 @@ export default defineComponent({
closeable: truthProp,
cancelText: String,
description: String,
closeOnPopstate: Boolean,
closeOnPopstate: truthProp,
closeOnClickAction: Boolean,
safeAreaInsetBottom: truthProp,
}),
@ -140,10 +147,8 @@ export default defineComponent({
return () => (
<Popup
class={bem()}
round={props.round}
position="bottom"
safeAreaInsetBottom={props.safeAreaInsetBottom}
{...pick(props, popupSharedPropKeys)}
{...pick(props, popupKeys)}
{...{ 'onUpdate:show': updateShow }}
>
{renderHeader()}

View File

@ -185,7 +185,7 @@ export default {
| overlay-style | Custom overlay style | _object_ | - |
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
| close-on-popstate | Whether to close when popstate | _boolean_ | `false` |
| close-on-popstate | Whether to close when popstate | _boolean_ | `true` |
| close-on-click-action | Whether to close when an action is clicked | _boolean_ | `false` |
| 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` |

View File

@ -195,7 +195,7 @@ export default {
| overlay-style | 自定义遮罩层样式 | _object_ | - |
| lock-scroll | 是否锁定背景滚动 | _boolean_ | `true` |
| lazy-render | 是否在显示弹层时才渲染节点 | _boolean_ | `true` |
| close-on-popstate | 是否在页面回退时自动关闭 | _boolean_ | `false` |
| close-on-popstate | 是否在页面回退时自动关闭 | _boolean_ | `true` |
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `false` |
| close-on-click-overlay | 是否在点击遮罩层后关闭 | _boolean_ | `true` |
| safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` |