未验证 提交 0168e295 编写于 作者: O openharmony_ci 提交者: Gitee

!23445 接口适配最新模板调整

Merge pull request !23445 from LiAn/monthly_20230815
......@@ -14,7 +14,9 @@
## 接口
**方法1:** Button(options?: {type?: ButtonType, stateEffect?: boolean})
### Button
Button(options?: {type?: ButtonType, stateEffect?: boolean})
从API version 9开始,该接口支持在ArkTS卡片中使用。
......@@ -25,9 +27,11 @@
| type | ButtonType | 否 | 描述按钮显示样式。<br/>默认值:ButtonType.Capsule |
| stateEffect | boolean | 否 | 按钮按下时是否开启按压态显示效果,当设置为false时,按压效果关闭。<br/>默认值:true<br/>**说明:** <br/>当开启按压态显示效果,开发者设置状态样式时,会基于状态样式设置完成后的背景色再进行颜色叠加。 |
**方法2:** Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
### Button
Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
使用文本内容创建相应的按钮组件,此时Button无法包含子组件。
使用文本内容创建相应的按钮组件,此时Button无法包含子组件。
从API version 9开始,该接口支持在ArkTS卡片中使用。
......@@ -36,7 +40,7 @@
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------- | ----------------------------------- | ---- | ------------- |
| label | [ResourceStr](ts-types.md#resourcestr) | 否 | 按钮文本内容。 |
| options | { type?: ButtonType, stateEffect?: boolean } | 否 | 见方法1参数说明。 |
| options | { type?: ButtonType, stateEffect?: boolean } | 否 | 见[Button](#button-1)参数说明。 |
## 属性
......
......@@ -20,11 +20,15 @@
## 接口
**方法1:** NavRouter()
### NavRouter
**方法2:** NavRouter(value: RouteInfo)<sup>10+</sup>
NavRouter()
提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
### NavRouter<sup>10+</sup>
NavRouter(value: RouteInfo)
提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
**参数:**
......
......@@ -14,7 +14,9 @@
## 接口
**方法1:** XComponent(value: {id: string, type: string, libraryname?: string, controller?: XComponentController})
### XComponent
XComponent(value: {id: string, type: string, libraryname?: string, controller?: XComponentController})
**参数:**
......@@ -25,7 +27,9 @@
| libraryname | string | 否 | 应用Native层编译输出动态库名称,仅XComponent类型为"surface"时有效。 |
| controller | [XComponentcontroller](#xcomponentcontroller) | 否 | 给组件绑定一个控制器,通过控制器调用组件方法,仅XComponent类型为"surface"时有效。 |
**方法2:** XComponent(value: {id: string, type: XComponentType, libraryname?: string, controller?: XComponentController})<sup>10+</sup>
### XComponent<sup>10+</sup>
XComponent(value: {id: string, type: XComponentType, libraryname?: string, controller?: XComponentController})
**参数:**
......
......@@ -18,7 +18,9 @@
## 接口
**方法1:** Badge(value: {count: number, position?: BadgePosition, maxCount?: number, style: BadgeStyle})
### Badge
Badge(value: {count: number, position?: BadgePosition \| Position, maxCount?: number, style: BadgeStyle})
创建数字标记组件。
......@@ -33,7 +35,9 @@
| maxCount | number | 否 | 最大消息数,超过最大消息时仅显示maxCount+。<br/>默认值:99<br/>取值范围:[-2147483648,2147483647],非整数时会舍去小数部分取整数部分,如5.5取5。 |
| style | [BadgeStyle](#badgestyle对象说明) | 是 | Badge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。 |
**方法2:** Badge(value: {value: string, position?: BadgePosition, style: BadgeStyle})
### Badge
Badge(value: {value: string, position?: BadgePosition \| Position, style: BadgeStyle})
根据字符串创建标记组件。
......
......@@ -15,7 +15,9 @@
从API version 9开始,该接口支持在ArkTS卡片中使用。
**方法1:** ListItem(value?: ListItemOptions)<sup>10+</sup>
### ListItem<sup>10+</sup>
ListItem(value?: ListItemOptions)
**参数:**
......@@ -23,15 +25,17 @@
| ------ | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| value | [ListItemOptions](#listitemoptions10对象说明) | 否 | 为ListItem提供可选参数, 该对象内含有ListItemStyle枚举类型的style参数。 |
**方法2:** ListItem(value?: string)<sup>(deprecated)</sup>
### ListItem<sup>(deprecated)</sup>
ListItem(value?: string)
从API version 10开始, 该接口不再维护,推荐使用方法1
从API version 10开始, 该接口不再维护,推荐使用[ListItem<sup>10+</sup>](#listitem10)
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------ | ----------------------------- | ---- | -------- |
| value | string<sup>(deprecated)</sup> | 否 | 无 |
| value | string | 否 | 无 |
## 属性
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册