From d9d2faf849386e55241124a2a7bfd76e7e129b78 Mon Sep 17 00:00:00 2001 From: afc163 Date: Thu, 8 Dec 2022 10:17:51 +0800 Subject: [PATCH] docs: improve Radio API table format (#39381) * docs: fix Radio API table * docs: fix Radio API table * docs: fix Radio API table * docs: fix Radio API table * docs: fix Radio API table --- components/radio/index.en-US.md | 3 ++- components/radio/index.zh-CN.md | 25 ++++++++++++++----------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/components/radio/index.en-US.md b/components/radio/index.en-US.md index 9743901483..07ee5893e1 100644 --- a/components/radio/index.en-US.md +++ b/components/radio/index.en-US.md @@ -16,7 +16,7 @@ Radio. ## Examples - + Basic disabled Radio Group @@ -28,6 +28,7 @@ Radio. Solid radio button Badge style Wireframe + ## API diff --git a/components/radio/index.zh-CN.md b/components/radio/index.zh-CN.md index 40eb8a1458..dde76ad235 100644 --- a/components/radio/index.zh-CN.md +++ b/components/radio/index.zh-CN.md @@ -17,7 +17,7 @@ demo: ## 代码演示 - + 基本 不可用 单选组合 @@ -29,25 +29,28 @@ demo: 填底的按钮样式 测试 Badge 的样式 线框风格 + ## API ### Radio/Radio.Button -| 参数 | 说明 | 类型 | 默认值 | -| -------------- | --------------------------------- | ------- | ------ | -| autoFocus | 自动获取焦点 | boolean | false | -| checked | 指定当前是否选中 | boolean | false | -| defaultChecked | 初始是否选中 | boolean | false | -| disabled | 禁用 Radio | boolean | false | -| value | 根据 value 进行比较,判断是否选中 | any | - | + +| 参数 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| autoFocus | 自动获取焦点 | boolean | false | +| checked | 指定当前是否选中 | boolean | false | +| defaultChecked | 初始是否选中 | boolean | false | +| disabled | 禁用 Radio | boolean | false | +| value | 根据 value 进行比较,判断是否选中 | any | - | -### RadioGroup +### Radio.Group 单选框组合,用于包裹一组 `Radio`。 -| 参数 | 说明 | 类型 | 默认值 | 版本 | | -| --- | --- | --- | --- | --- | --- | + +| 参数 | 说明 | 类型 | 默认值 | 版本 | +| --- | --- | --- | --- | --- | | buttonStyle | RadioButton 的风格样式,目前有描边和填色两种风格 | `outline` \| `solid` | `outline` | | | | defaultValue | 默认选中的值 | any | - | | | | disabled | 禁选所有子单选器 | boolean | false | | |