diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-animatorproperty.md b/zh-cn/application-dev/reference/arkui-ts/ts-animatorproperty.md
index 9b0ab8744329916188b16671b981c2f48b58a832..e29d6b2372322d3fdf099d746563e6c7aefdbc05 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-animatorproperty.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-animatorproperty.md
@@ -1,6 +1,6 @@
# 属性动画
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md
index 547d7983b6223bd6e154c4b8371d3be27e8f6914..b2d0500e8ad7a6d31755105dc6caced9cb298708 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navigation.md
@@ -1,6 +1,6 @@
# Navigation
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md
index 7cb3c5838645ecdb278b03e18bf72a6378e37314..697744ebf191bea97bed95270fee18e57422539b 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-plugincomponent.md
@@ -1,7 +1,7 @@
# PluginComponent
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> - 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
>
> - 本组件均为系统接口,三方应用不支持调用。
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 7bd3efd8b8b88be129a61186d3e7e269bb50e7b9..86169b59304c2ed1a9d4588998d1ab4f776e053f 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
@@ -1,6 +1,6 @@
# Search
-> ![](public_sys-resources/icon-note.gif) **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
+> **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
提供搜索框组件,用于提供用户搜索内容的输入区域。
@@ -18,32 +18,32 @@ Search(options?: { value?: string; placeholder?: string; icon?: string; controll
- 参数
- | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
- | -------- | -------- | -------- | -------- | -------- |
- | value | string | 否 | - | 搜索文本值。 |
- | placeholder | string | 否 | - | 无输入时的提示文本。|
- | icon | string | 否 | - | 搜索图标路径,默认使用系统搜索图标,支持的图标格式: svg, jpg和png。 |
- | controller | SearchController | 否 | - | 控制器。|
+ | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
+ | ----------- | ---------------- | ---- | ---- | ---------------------------------------- |
+ | value | string | 否 | - | 搜索文本值。 |
+ | placeholder | string | 否 | - | 无输入时的提示文本。 |
+ | icon | string | 否 | - | 搜索图标路径,默认使用系统搜索图标,支持的图标格式: svg, jpg和png。 |
+ | controller | SearchController | 否 | - | 控制器。 |
## 属性
-| 名称 | 参数类型 | 默认值 | 描述 |
-| -------- | -------- | -------- | -------- |
-| searchButton | string | 无 | 搜索框末尾搜索按钮文本值,默认无搜索按钮。|
-| placeholderColor | [ResourceColor](../../ui/ts-types.md) | - | 设置placeholder颜色。|
-| placeholderFont | [Font](../../ui/ts-types.md) | - | 设置placeholder文本样式。|
-| textFont | [Font](../../ui/ts-types.md) | - | 设置搜索框内文本样式。|
+| 名称 | 参数类型 | 默认值 | 描述 |
+| ---------------- | ------------------------------------- | ---- | --------------------- |
+| searchButton | string | 无 | 搜索框末尾搜索按钮文本值,默认无搜索按钮。 |
+| placeholderColor | [ResourceColor](../../ui/ts-types.md) | - | 设置placeholder颜色。 |
+| placeholderFont | [Font](../../ui/ts-types.md) | - | 设置placeholder文本样式。 |
+| textFont | [Font](../../ui/ts-types.md) | - | 设置搜索框内文本样式。 |
## 事件
-| 名称 | 功能描述 |
-| -------- | -------- |
-| onSubmit(callback: (value: string) => void) | 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时触发。
-value: 当前输入文本框的内容。|
-| onChange(callback: (value: string) => void) | 输入内容发生变化时,触发回调。
-value: 当前输入文本框的内容。|
-| onCopy(callback: (value: string) => void) | 组件触发系统剪切板复制操作。
-value: 复制的文本内容。|
-| onCut(callback: (value: string) => void) | 组件触发系统剪切板剪切操作。
-value: 剪切的文本内容。|
-| onPaste(callback: (value: string) => void) | 组件触发系统剪切板粘贴操作。
-value: 粘贴的文本内容。|
+| 名称 | 功能描述 |
+| ---------------------------------------- | ---------------------------------------- |
+| onSubmit(callback: (value: string) => void) | 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时触发。
-value: 当前输入文本框的内容。 |
+| onChange(callback: (value: string) => void) | 输入内容发生变化时,触发回调。
-value: 当前输入文本框的内容。 |
+| onCopy(callback: (value: string) => void) | 组件触发系统剪切板复制操作。
-value: 复制的文本内容。 |
+| onCut(callback: (value: string) => void) | 组件触发系统剪切板剪切操作。
-value: 剪切的文本内容。 |
+| onPaste(callback: (value: string) => void) | 组件触发系统剪切板粘贴操作。
-value: 粘贴的文本内容。 |
## SearchController
@@ -61,8 +61,8 @@ creatPosition(value: number): void
- 参数
- | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
- | ---- | ------ | ---- | ---- | --------------------- |
+ | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
+ | ----- | ------ | ---- | ---- | ----------------- |
| value | number | 是 | - | 从字符串开始到光标所在位置的长度。 |
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md
index bf9c9f0cc55edcb0e1a03e8804783c83aa6502a7..290c065e01ab19dda9b62fda3739171d764f6d86 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-select.md
@@ -1,6 +1,6 @@
# Select
-> ![](public_sys-resources/icon-note.gif) **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
+> **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
提供下拉选择菜单,可以让用户在多个选项之间选择。
@@ -18,30 +18,30 @@ Select(options: Array\)
- SelectOption参数
- | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
- | ------ | ----------------------------------------------- | ---- | ------ | -------------- |
- | value | [ResourceStr](../../ui/ts-types.md) | 是 | - | 下拉选项内容。 |
- | icon | [ResourceStr](../../ui/ts-types.md) | 否 | - | 下拉选项图片。 |
+ | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
+ | ----- | ----------------------------------- | ---- | ---- | ------- |
+ | value | [ResourceStr](../../ui/ts-types.md) | 是 | - | 下拉选项内容。 |
+ | icon | [ResourceStr](../../ui/ts-types.md) | 否 | - | 下拉选项图片。 |
## 属性
-| 名称 | 参数类型 | 默认值 | 描述 |
-| ----------------------- | --------------------------------------------------- | ------ | ----------------------------------------------- |
-| selected | number | - | 设置下拉菜单初始选择项的索引,第一项的索引为0。 |
-| value | string | - | 设置下拉按钮本身的文本显示。 |
-| font | [Font](../../ui/ts-types.md) | - | 设置下拉按钮本身的文本样式: |
-| fontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉按钮本身的文本颜色。 |
-| selectedOptionBgColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单选中项的背景色。 |
-| selectedOptionFont | [Font](../../ui/ts-types.md) | - | 设置下拉菜单选中项的文本样式: |
-| selectedOptionFontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单选中项的文本颜色。 |
-| optionBgColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单项的背景色。 |
-| optionFont | [Font](../../ui/ts-types.md) | - | 设置下拉菜单项的文本样式: |
-| optionFontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单项的文本颜色。 |
+| 名称 | 参数类型 | 默认值 | 描述 |
+| ----------------------- | ------------------------------------- | ---- | ------------------------ |
+| selected | number | - | 设置下拉菜单初始选择项的索引,第一项的索引为0。 |
+| value | string | - | 设置下拉按钮本身的文本显示。 |
+| font | [Font](../../ui/ts-types.md) | - | 设置下拉按钮本身的文本样式: |
+| fontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉按钮本身的文本颜色。 |
+| selectedOptionBgColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单选中项的背景色。 |
+| selectedOptionFont | [Font](../../ui/ts-types.md) | - | 设置下拉菜单选中项的文本样式: |
+| selectedOptionFontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单选中项的文本颜色。 |
+| optionBgColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单项的背景色。 |
+| optionFont | [Font](../../ui/ts-types.md) | - | 设置下拉菜单项的文本样式: |
+| optionFontColor | [ResourceColor](../../ui/ts-types.md) | - | 设置下拉菜单项的文本颜色。 |
## 事件
-| 名称 | 功能描述 |
-| ----------------------------------------------------------- | ------------------------------------------------------------ |
+| 名称 | 功能描述 |
+| ---------------------------------------- | -------------------------------------- |
| onSelect(callback: (index: number, value?:string) => void) | 下拉菜单选中某一项的回调。index:选中项的索引。value:选中项的值。 |
## 示例
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-canvas.md b/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-canvas.md
index 15aa306e29043171919c9e6b405b35dc77a316d0..765a7f7729bc2e0c25bfdced0f6254fbb048041c 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-canvas.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-canvas.md
@@ -1,6 +1,6 @@
# Canvas
-> ![img](public_sys-resources/icon-note.gif) **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
+> **说明:** 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
提供画布组件,用于自定义绘制图形。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-lottie.md b/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-lottie.md
index 8c2fb1e0867e1ec4bb3fc2c75000f31b3e184075..b6cbc21fde54ff812e045aa2879fbb89bc457297 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-lottie.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-components-canvas-lottie.md
@@ -1,6 +1,6 @@
# Lottie
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从 API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
@@ -15,7 +15,7 @@
import lottie from '@ohos/lottieETS'
```
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 在Terminal窗口使用 `npm install @ohos/lottieETS` 命令下载Lottie。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md
index 0f90a5268f0e616a2fa14a8fbc0963dc83aecb2b..da30cdcf9abb5cd091b8fae77c2ab29c3392ad9d 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-flex.md
@@ -1,6 +1,6 @@
# Flex
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-navigator.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-navigator.md
index 772f7fb2b26d6623ff444e644c83d37dc4c68a21..653fde335653ecb07d51cd595d4634ce2fb0a75c 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-navigator.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-navigator.md
@@ -1,6 +1,6 @@
# Navigator
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md
index ff05dddc30d5de88a45877750ef319a1f04596cd..7c612c94cb36f2894a1482b48013b6e5cc3c69b2 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-swiper.md
@@ -1,6 +1,6 @@
# Swiper
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md b/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md
index a970e95ff945db2c971d61b795f42cdab9563dd3..f613126abf1396769695e30e8b94aa6ca946b3d0 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-interpolation-calculation.md
@@ -1,6 +1,6 @@
# 插值计算
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md b/zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md
index 83ab2d8ace5bbdacff1f0878847596513c15f61d..8c8503e738bd5099df347f0c076002b78f2c2f47 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-matrix-transformation.md
@@ -1,6 +1,6 @@
# 矩阵变换
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md b/zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
index 579c65cb38684c436de61a3d9edcd7e94959660e..b01a7f2515243a94ada35d211cba355e5fe368c0 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-methods-custom-dialog-box.md
@@ -1,6 +1,6 @@
# 自定义弹窗
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md b/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md
index 729fe48e405cd00b13e72a5cd3abdba14be9f4ad..86e054475822bfc9b21f14af8d46a138e2a1b57a 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md
@@ -1,6 +1,6 @@
# 页面间转场
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md b/zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md
index e714d382f0a79cc3509ccddafb03819a85087193..18528e264f3ba1b0848c5303ea8fc8688e2daecc 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-transition-animation-shared-elements.md
@@ -1,6 +1,6 @@
# 共享元素转场
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-menu.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-menu.md
index 1bdc9500fa73dc77fd8c217936b7bd81310d5c87..6be5562c698e85489097c4da40431179be2f3de3 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-menu.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-menu.md
@@ -1,6 +1,6 @@
# Menu控制
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-transformation.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-transformation.md
index 9c14d37e74e4d8b7ce6209abc561f2686c8cd67b..f1c71c494574e8e2280cc6effb61d273daf8bed8 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-transformation.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-transformation.md
@@ -1,6 +1,6 @@
# 图形变换
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-show-hide.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-show-hide.md
index 783eae66cf8ef2a4fbe89820e41731d1d3786267..76af7f4a6cd5ae15cb585234ccd9421586458d19 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-show-hide.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-show-hide.md
@@ -1,6 +1,6 @@
# 挂载卸载事件
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-touch.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-touch.md
index a78e3cd633f3e2531729f1818652b1612ea8b39d..8285447b7bf50b4d408b2d3c4c17b6dc362f2380 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-touch.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-events-touch.md
@@ -1,6 +1,6 @@
# 触摸事件
-> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
+> **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。