diff --git a/packages/goods-action/en-US.md b/packages/goods-action/en-US.md index 001cc0836..e17c0e443 100644 --- a/packages/goods-action/en-US.md +++ b/packages/goods-action/en-US.md @@ -83,6 +83,11 @@ Use `info` prop to show messages in upper right corner of icon ### API +#### GoodsAction + +| Attribute | Description | Type | Default | +| safe-area-inset-bottom | Whether to enable bottom safe area adaptation, to enable those features use `viewport-fit=cover` in the `viewport` meta tag | `Boolean` | `false` | + #### GoodsActionMiniBtn | Attribute | Description | Type | Default | diff --git a/packages/goods-action/index.less b/packages/goods-action/index.less index ad7823967..136b6a5f6 100644 --- a/packages/goods-action/index.less +++ b/packages/goods-action/index.less @@ -6,4 +6,10 @@ bottom: 0; display: flex; position: fixed; + background-color: @white; + + &--safe-area-inset-bottom { + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); + } } diff --git a/packages/goods-action/index.tsx b/packages/goods-action/index.tsx index 3e09c01d2..7d39baf2f 100644 --- a/packages/goods-action/index.tsx +++ b/packages/goods-action/index.tsx @@ -3,21 +3,32 @@ import { inherit } from '../utils/functional'; // Types import { CreateElement, RenderContext } from 'vue/types'; -import { DefaultProps, DefaultSlots } from '../utils/use/sfc'; +import { DefaultSlots } from '../utils/use/sfc'; + +export type GoodsActionProps = { + safeAreaInsetBottom?: boolean; +}; const [sfc, bem] = use('goods-action'); function GoodsAction( h: CreateElement, - props: DefaultProps, + props: GoodsActionProps, slots: DefaultSlots, ctx: RenderContext ) { return ( -