Skip to content

Commit

Permalink
fix(Fab): fix cr
Browse files Browse the repository at this point in the history
  • Loading branch information
anlyyao committed Sep 10, 2024
1 parent e609b24 commit 782c10b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Binary file modified db/TDesign.db
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/products/tdesign-miniprogram/src/fab/README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ name | type | default | description | required
style | Object | - | CSS(Cascading Style Sheets) | N
custom-style | Object | - | CSS(Cascading Style Sheets),used to set style on virtual component | N
button-props | Object | - | Typescript:`ButtonProps`[Button API Documents](./button?tab=api)[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
draggable | String / Boolean | false | Typescript:`boolean \| DirectionEnum ` `type DirectionEnum = 'all' \| 'vertical' \| 'horizontal'`[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
draggable | String / Boolean | false | Typescript:`boolean \| FabDirectionEnum ` `type FabDirectionEnum = 'all' \| 'vertical' \| 'horizontal'`[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
icon | String | - | \- | N
text | String | - | \- | N
using-custom-navbar | Boolean | false | \- | N
y-edge | Array | - | Typescript:`Array<string \| number>` | N
y-bounds | Array | - | Typescript:`Array<string \| number>` | N

### Fab Events

Expand Down
4 changes: 2 additions & 2 deletions packages/products/tdesign-miniprogram/src/fab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
style | Object | - | 样式 | N
custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场景 | N
button-props | Object | - | 透传至 Button 组件。TS 类型:`ButtonProps`[Button API Documents](./button?tab=api)[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
draggable | String / Boolean | false | 是否可拖拽。`true` / `'all'`可拖动<br>`'vertical'`可垂直拖动<br>`'horizontal'`可水平拖动<br>`false`禁止拖动。TS 类型:`boolean \| DirectionEnum ` `type DirectionEnum = 'all' \| 'vertical' \| 'horizontal'`[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
draggable | String / Boolean | false | 是否可拖拽。`true` / `'all'`可拖动<br>`'vertical'`可垂直拖动<br>`'horizontal'`可水平拖动<br>`false`禁止拖动。TS 类型:`boolean \| FabDirectionEnum ` `type FabDirectionEnum = 'all' \| 'vertical' \| 'horizontal'`[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/fab/type.ts) | N
icon | String | - | 图标 | N
text | String | - | 文本内容 | N
using-custom-navbar | Boolean | false | 是否使用了自定义导航栏 | N
y-edge | Array | - | 设置垂直方向边界限制,示例:[48, 48]['96rpx', 80]。TS 类型:`Array<string \| number>` | N
y-bounds | Array | - | 设置垂直方向边界限制,示例:[48, 48]['96rpx', 80]。TS 类型:`Array<string \| number>` | N

### Fab Events

Expand Down
2 changes: 1 addition & 1 deletion packages/products/tdesign-miniprogram/src/fab/props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const props: TdFabProps = {
value: false,
},
/** 设置垂直方向边界限制,示例:[48, 48] 或 ['96rpx', 80] */
yEdge: {
yBounds: {
type: Array,
},
};
Expand Down
6 changes: 3 additions & 3 deletions packages/products/tdesign-miniprogram/src/fab/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface TdFabProps {
*/
draggable?: {
type: null;
value?: boolean | DirectionEnum;
value?: boolean | FabDirectionEnum;
};
/**
* 图标
Expand Down Expand Up @@ -57,10 +57,10 @@ export interface TdFabProps {
/**
* 设置垂直方向边界限制,示例:[48, 48] 或 ['96rpx', 80]
*/
yEdge?: {
yBounds?: {
type: ArrayConstructor;
value?: Array<string | number>;
};
}

export type DirectionEnum = 'all' | 'vertical' | 'horizontal';
export type FabDirectionEnum = 'all' | 'vertical' | 'horizontal';
4 changes: 2 additions & 2 deletions packages/scripts/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -47425,7 +47425,7 @@
"create_time": "2024-04-01 10:59:27",
"update_time": "2024-04-01 10:59:27",
"event_output": null,
"custom_field_type": "boolean | DirectionEnum 【type DirectionEnum = 'all' | 'vertical' | 'horizontal'】",
"custom_field_type": "boolean | FabDirectionEnum 【type FabDirectionEnum = 'all' | 'vertical' | 'horizontal'】",
"syntactic_sugar": null,
"readonly": 1,
"html_attribute": 0,
Expand Down Expand Up @@ -47684,7 +47684,7 @@
],
"component": "Fab",
"field_category": 1,
"field_name": "yEdge",
"field_name": "yBounds",
"field_type": [
"16"
],
Expand Down

0 comments on commit 782c10b

Please sign in to comment.