Skip to content

Commit ef735a6

Browse files
xiaodemenJustineo
authored andcommitted
docs: add docs for option-group and switch
Change-Id: I9d2b7e37af40febdbf02104ab7a8756de753e134
1 parent f098a1b commit ef735a6

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

one/build/diff-ignore.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,18 @@ export default {
2828
props: ['model']
2929
},
3030
switch: {
31-
props: ['model']
31+
props: ['model', 'offLabel', 'onLabel'],
32+
slots: ['content']
3233
},
3334
drawer: {
3435
props: ['inline']
3536
},
3637
select: {
3738
props: ['max'] // 脚本没识别出来,先忽略
3839
},
40+
'option-group': {
41+
props: ['optionTag']
42+
},
3943
link: {
4044
props: ['replace']
4145
},

one/docs/components/number-input.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
| ``min`` | `number` | - | 允许的最小值。 |
4545
| ``decimal-place`` | `number` | 0 | 数值的小数精度位数,默认精确到整数位,`-1` 表示不处理精度。 |
4646
| ``step`` | `number` | 1 | 每次递增/递减的数值。 |
47+
| ``format`` | `(val: number, defaultFormattedValue: string) => string` | - | 自定义数字格式化。 |
48+
| ``parse`` | `(val: string) => number` | - | 自定义将输入的值解析成数字。 |
4749

4850
^^^ui
4951
预设样式。

one/docs/components/option-group.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
| 名称 | 类型 | 默认值 | 描述 |
1616
| -- | -- | -- | -- |
1717
| ``label`` | `string` | - | 选项组的标题。 |
18+
| ``expanded`` | `boolean=` | `false` | 选项列表是否展开。 |
19+
| ``trigger`` | `'click' | 'hover'` | `'click'` | 选项列表展开的时机。 |
1820
| ``options`` | `Array<Object>` | `[]` | [^options] |
1921
| ``position`` | `string` | `inline` | [^position] |
2022
| ``overlay-class`` | `string | Array | Object=` | - | 参考 [`Overlay`](./overlay) 组件的 [`overlay-class`](./overlay#props-overlay-class) 属性。 |
@@ -52,6 +54,8 @@
5254
| ``group-label`` | [^slot-group-label] |
5355
| ``option-label`` | [^slot-option-label] |
5456
| ``option`` | [^slot-option] |
57+
| ``before`` | 选项列表的前置区域。 |
58+
| ``after`` | 选项列表的后置区域。 |
5559

5660
^^^slot-label
5761
选项组标题文本区域。
@@ -115,6 +119,13 @@
115119
另外,当前选项数据中除了上面描述的字段之外的其它字段也会自动通过 `v-bind` 进行绑定到作用域参数上。
116120
^^^
117121

122+
### 事件
123+
124+
| 名称 | 描述 |
125+
| -- | -- |
126+
| ``toggle`` | 选项列表展开状态切换时触发,回调参数为 `(expanded: boolean)``expanded` 表示操作将触发选项列表展开还是收起。 |
127+
| ``afteropen`` | 选项列表打开完成之后触发。 |
128+
118129
### 图标
119130

120131
| 名称 | 描述 |

one/docs/components/switch.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
| ``false-value`` | `*` | `false` | 关闭状态对应的值。 |
2727
| ``disabled`` | `boolean=` | `false` | 是否为禁用状态。 |
2828
| ``readonly`` | `boolean=` | `false` | 是否为只读状态。 |
29+
| ``loading`` | `boolean=` | `false` | 是否为加载中状态。 |
2930

3031
^^^ui
3132
预设样式。

0 commit comments

Comments
 (0)