diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md index 2dd74f689b7a90bfdc9810ee0aa5c67d88b80ff0..a6a11470211d552783c6218ce240102bf175bfc7 100644 --- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md +++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md @@ -18,7 +18,7 @@ You can bind a sheet to a component through the **bindSheet** attribute. You can | Name | Type | Mandatory| Description | | ------------------ | -------------------------------------- | ---- | ---------------------- | | height | [SheetSize](#sheetsize10) \| [Length](ts-types.md#length) | No| Height of the sheet. | -| showDragBar | boolean | No | Whether the control bar is visible. | +| dragBar | boolean | No | Whether the control bar is visible. | ## SheetSize10+ diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md index 03c7394394aedf0a934661329705e2eedb8c843f..df86634a95ce075ebc90b65545e1d54630c4f197 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md @@ -39,7 +39,7 @@ Search(options?: { value?: string; placeholder?: ResourceStr; icon?: string; con | cancelButton10+ | {
style? : [CancelButtonStyle](#cancelbuttonstyle10枚举说明)
icon?: [IconOptions](#iconoptions10对象说明)
} | 设置右侧清除按钮样式。 | | fontColor10+ | [ResourceColor](ts-types.md#resourcecolor) | 设置输入文本的字体颜色。 | | caretStyle10+ | [CaretStyle](#caretstyle10对象说明) | 设置光标样式。 | - +| enableKeyboardOnFocus10+ | boolean | Search获焦时,是否绑定输入法
默认值:true。从API version 10开始,获焦默认绑定输入法。 | ## IconOptions10+对象说明 | 参数名 | 参数类型 | 必填 | 参数描述 | diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md index 9a00a64d8418d0c7cc1a5ef46f816f2872cd3b5c..7086a821147c96c37d49b7e8483313fc14ef5139 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md @@ -40,6 +40,7 @@ TextArea(value?:{placeholder?: ResourceStr, text?: ResourceStr, controller?: Tex | maxLength10+ | number | 设置文本的最大输入字符数。
默认不设置最大输入字符数限制。 | | showCounter10+ | boolean | 设置文本最大输入字符数后,是否显示字数。
默认值:false | | style10+ | [TextContentStyle](ts-appendix-enums.md#textcontentstyle10) | 设置文本框多态样式。
默认值:TextContentStyle.DEFAULT | +| enableKeyboardOnFocus10+ | boolean | TextArea获焦时,是否绑定输入法
默认值:true。从API version 10开始,获焦默认绑定输入法。 | > **说明:** > diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md index c482e62c90b7c64b61a8e11ae0c517337ef07708..15fc98f9298a4de66d0b5bf830c5fa5d1d50600f 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md @@ -49,6 +49,7 @@ TextInput(value?:{placeholder?: ResourceStr, text?: ResourceStr, controller?: Te | showError10+ | string \| undefined | 设置错误状态下提示的错误文本或者不显示错误状态。
默认不显示错误状态。 | | showUnderline10+ | boolean | 设置是否开启下划线。
默认值:false | | passwordIcon10+ | [PasswordIcon](#passwordicon10对象说明) | 密码输入模式时,设置输入框末尾的图标。
默认为系统提供的密码图标。 | +| enableKeyboardOnFocus10+ | boolean | TextInput获焦时,是否绑定输入法
默认值:true。从API version 10开始,获焦默认绑定输入法。 | > **说明:** > diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md index 235648a9c0604eff8f30edad5e4aeab3a30a4a76..0fde5239fbd643db09eb91960b2fe14e758d99a9 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-sheet-transition.md @@ -18,7 +18,7 @@ | 名称 | 类型 | 必填 | 描述 | | ------------------ | -------------------------------------- | ---- | ---------------------- | | height | [SheetSize](#sheetsize10) \| [Length](ts-types.md#length) | 否 | 半模态高度。 | -| showDragBar | boolean | 否 | 是否显示控制条。 | +| dragBar | boolean | 否 | 是否显示控制条。 | ## SheetSize10+