From bc7afd703797a78c1001f764681caf2a7cdb6d7c Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 6 Mar 2022 10:57:36 +0800 Subject: [PATCH] feat(Calendar): add safe-area-inset-top prop (#10358) --- packages/vant/src/calendar/Calendar.tsx | 2 ++ packages/vant/src/calendar/README.md | 1 + packages/vant/src/calendar/README.zh-CN.md | 1 + 3 files changed, 4 insertions(+) diff --git a/packages/vant/src/calendar/Calendar.tsx b/packages/vant/src/calendar/Calendar.tsx index 55d2970f3..6ddfa66c8 100644 --- a/packages/vant/src/calendar/Calendar.tsx +++ b/packages/vant/src/calendar/Calendar.tsx @@ -79,6 +79,7 @@ const calendarProps = { showRangePrompt: truthProp, confirmDisabledText: String, closeOnClickOverlay: truthProp, + safeAreaInsetTop: Boolean, safeAreaInsetBottom: truthProp, minDate: { type: Date, @@ -565,6 +566,7 @@ export default defineComponent({ closeable={props.showTitle || props.showSubtitle} teleport={props.teleport} closeOnPopstate={props.closeOnPopstate} + safeAreaInsetTop={props.safeAreaInsetTop} closeOnClickOverlay={props.closeOnClickOverlay} onUpdate:show={updateShow} /> diff --git a/packages/vant/src/calendar/README.md b/packages/vant/src/calendar/README.md index 699bb5376..3fda11f1e 100644 --- a/packages/vant/src/calendar/README.md +++ b/packages/vant/src/calendar/README.md @@ -279,6 +279,7 @@ Following props are supported when the poppable is true | round | Whether to show round corner | _boolean_ | `true` | | close-on-popstate | Whether to close when popstate | _boolean_ | `true` | | close-on-click-overlay | Whether to close when overlay is clicked | _boolean_ | `true` | +| safe-area-inset-top | Whether to enable top safe area adaptation | _boolean_ | `false` | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | | teleport | Specifies a target element where Calendar will be mounted | _string \| Element_ | - | diff --git a/packages/vant/src/calendar/README.zh-CN.md b/packages/vant/src/calendar/README.zh-CN.md index 556a18cc4..827817593 100644 --- a/packages/vant/src/calendar/README.zh-CN.md +++ b/packages/vant/src/calendar/README.zh-CN.md @@ -283,6 +283,7 @@ export default { | round | 是否显示圆角弹窗 | _boolean_ | `true` | | close-on-popstate | 是否在页面回退时自动关闭 | _boolean_ | `true` | | close-on-click-overlay | 是否在点击遮罩层后关闭 | _boolean_ | `true` | +| safe-area-inset-top | 是否开启[顶部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `false` | | safe-area-inset-bottom | 是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei) | _boolean_ | `true` | | teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://v3.cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |