mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Calendar): add safe-area-inset-top prop (#10358)
This commit is contained in:
parent
220efc05ca
commit
bc7afd7037
@ -79,6 +79,7 @@ const calendarProps = {
|
|||||||
showRangePrompt: truthProp,
|
showRangePrompt: truthProp,
|
||||||
confirmDisabledText: String,
|
confirmDisabledText: String,
|
||||||
closeOnClickOverlay: truthProp,
|
closeOnClickOverlay: truthProp,
|
||||||
|
safeAreaInsetTop: Boolean,
|
||||||
safeAreaInsetBottom: truthProp,
|
safeAreaInsetBottom: truthProp,
|
||||||
minDate: {
|
minDate: {
|
||||||
type: Date,
|
type: Date,
|
||||||
@ -565,6 +566,7 @@ export default defineComponent({
|
|||||||
closeable={props.showTitle || props.showSubtitle}
|
closeable={props.showTitle || props.showSubtitle}
|
||||||
teleport={props.teleport}
|
teleport={props.teleport}
|
||||||
closeOnPopstate={props.closeOnPopstate}
|
closeOnPopstate={props.closeOnPopstate}
|
||||||
|
safeAreaInsetTop={props.safeAreaInsetTop}
|
||||||
closeOnClickOverlay={props.closeOnClickOverlay}
|
closeOnClickOverlay={props.closeOnClickOverlay}
|
||||||
onUpdate:show={updateShow}
|
onUpdate:show={updateShow}
|
||||||
/>
|
/>
|
||||||
|
@ -279,6 +279,7 @@ Following props are supported when the poppable is true
|
|||||||
| round | Whether to show round corner | _boolean_ | `true` |
|
| round | Whether to show round corner | _boolean_ | `true` |
|
||||||
| close-on-popstate | Whether to close when popstate | _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` |
|
| 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` |
|
| 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_ | - |
|
| teleport | Specifies a target element where Calendar will be mounted | _string \| Element_ | - |
|
||||||
|
|
||||||
|
@ -283,6 +283,7 @@ export default {
|
|||||||
| round | 是否显示圆角弹窗 | _boolean_ | `true` |
|
| round | 是否显示圆角弹窗 | _boolean_ | `true` |
|
||||||
| close-on-popstate | 是否在页面回退时自动关闭 | _boolean_ | `true` |
|
| close-on-popstate | 是否在页面回退时自动关闭 | _boolean_ | `true` |
|
||||||
| close-on-click-overlay | 是否在点击遮罩层后关闭 | _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` |
|
| 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_ | - |
|
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://v3.cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user