diff --git a/src/color-picker/README.md b/src/color-picker/README.md index 78e3be794..0fa8e37bc 100644 --- a/src/color-picker/README.md +++ b/src/color-picker/README.md @@ -44,7 +44,7 @@ style | Object | - | 样式 | N custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场景 | N auto-close | Boolean | true | 自动关闭。在点击遮罩层时自动关闭,不需要手动设置 visible | N enable-alpha | Boolean | false | 是否开启透明通道 | N -fixed | Boolean | false | `1.8.5`。如果 color-picker 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true | N +fixed | Boolean | false | `1.8.5`。如果 color-picker 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true | N footer | Slot | - | 底部插槽,仅在 `usePopup` 为 `true` 时有效。[通用类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/src/common/common.ts) | N format | String | RGB | 格式化色值。`enableAlpha` 为真时,`RGBA/HSLA/HSVA` 等值有效。可选项:RGB/RGBA/HSL/HSLA/HSB/HSV/HSVA/HEX/CMYK/CSS | N header | Slot | - | 顶部插槽,仅在 `usePopup` 为 `true` 时有效。[通用类型定义](https://github.com/Tencent/tdesign-miniprogram/blob/develop/src/common/common.ts) | N diff --git a/src/color-picker/props.ts b/src/color-picker/props.ts index 98a99be45..d5389acf1 100644 --- a/src/color-picker/props.ts +++ b/src/color-picker/props.ts @@ -16,7 +16,7 @@ const props: TdColorPickerProps = { type: Boolean, value: false, }, - /** 如果 color-picker 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true */ + /** 如果 color-picker 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true */ fixed: { type: Boolean, value: false, diff --git a/src/color-picker/type.ts b/src/color-picker/type.ts index b5d0c978b..1eb6db4ef 100644 --- a/src/color-picker/type.ts +++ b/src/color-picker/type.ts @@ -24,7 +24,7 @@ export interface TdColorPickerProps { value?: boolean; }; /** - * 如果 color-picker 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true + * 如果 color-picker 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true * @default false */ fixed?: { diff --git a/src/textarea/README.en-US.md b/src/textarea/README.en-US.md index be6f40134..cc2ac38b6 100644 --- a/src/textarea/README.en-US.md +++ b/src/textarea/README.en-US.md @@ -43,6 +43,7 @@ enter | `(value: TextareaValue)` | \- focus | `(value: TextareaValue)` | \- keyboardheightchange | `(height: number, duration: number)` | \- line-change | `(value: TextareaValue)` | \- + ### Textarea External Classes className | Description diff --git a/src/textarea/README.md b/src/textarea/README.md index 3a2d9c932..04c2c7f9a 100644 --- a/src/textarea/README.md +++ b/src/textarea/README.md @@ -81,7 +81,7 @@ cursor | Number | -1 | 指定 focus 时的光标位置 | N cursor-spacing | Number | 0 | 指定光标与键盘的距离。取textarea距离底部的距离和cursor-spacing指定的距离的最小值作为光标与键盘的距离 | N disable-default-padding | Boolean | false | 是否去掉 iOS 下的默认内边距 | N disabled | Boolean | undefined | 是否禁用文本框 | N -fixed | Boolean | false | 如果 textarea 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true | N +fixed | Boolean | false | 如果 textarea 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true | N focus | Boolean | false | 自动聚焦 | N hold-keyboard | Boolean | false | focus时,点击页面的时候不收起键盘 | N indicator | Boolean | false | 显示文本计数器,如 0/140。当 `maxlength < 0 && maxcharacter < 0` 成立时, indicator无效 | N @@ -106,6 +106,7 @@ enter | `(value: TextareaValue)` | 点击完成时触发 focus | `(value: TextareaValue)` | 获得焦点时触发 keyboardheightchange | `(height: number, duration: number)` | 键盘高度发生变化的时候触发此事件 line-change | `(value: TextareaValue)` | 行高发生变化时触发 + ### Textarea External Classes 类名 | 描述 diff --git a/src/textarea/__test__/__snapshots__/index.test.js.snap b/src/textarea/__test__/__snapshots__/index.test.js.snap index 09650f8f8..e441ecc0b 100644 --- a/src/textarea/__test__/__snapshots__/index.test.js.snap +++ b/src/textarea/__test__/__snapshots__/index.test.js.snap @@ -31,7 +31,7 @@ exports[`textarea slots : label 1`] = ` cursorSpacing="{{0}}" disabled="{{null}}" disableDefaultPadding="{{false}}" - fixed="{{null}}" + fixed="{{false}}" focus="{{false}}" holdKeyboard="{{false}}" maxlength="{{-1}}" diff --git a/src/textarea/props.ts b/src/textarea/props.ts index ac3f2b8e2..8ae321e34 100644 --- a/src/textarea/props.ts +++ b/src/textarea/props.ts @@ -56,13 +56,8 @@ const props: TdTextareaProps = { type: null, value: undefined, }, - /** 如果 textarea 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true */ + /** 如果 textarea 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true */ fixed: { - type: Boolean, - value: null, - }, - /** 如果 textarea 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true,非受控属性 */ - defaultFixed: { type: Boolean, value: false, }, diff --git a/src/textarea/type.ts b/src/textarea/type.ts index 59da49435..f667de15b 100644 --- a/src/textarea/type.ts +++ b/src/textarea/type.ts @@ -85,21 +85,13 @@ export interface TdTextareaProps { value?: boolean; }; /** - * 如果 textarea 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true + * 如果 textarea 是在一个 `position:fixed` 的区域,需要显式指定属性 fixed 为 true * @default false */ fixed?: { type: BooleanConstructor; value?: boolean; }; - /** - * 如果 textarea 是在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true,非受控属性 - * @default false - */ - defaultFixed?: { - type: BooleanConstructor; - value?: boolean; - }; /** * 自动聚焦 * @default false