Add missing disabled property (#7805)

- add missing disabled property on the switch documentation page
This commit is contained in:
Ffloriel 2017-10-06 09:09:19 +01:00 committed by 偏右
parent eb4659c409
commit 873c85cec8

View File

@ -16,11 +16,12 @@ Switching Selector.
### Switch
Property | Description | Type | Default |
-----|-----|-----|------|
checked | determine whether the `Switch` is checked | boolean | false |
defaultChecked | to set the initial state | boolean | false |
onChange | a callback function, can be executed when the checked state is changing | Function(checked:Boolean) | |
checkedChildren | content to be shown when the state is checked | string\|ReactNode | |
unCheckedChildren | content to be shown when the state is unchecked | string\|ReactNode | |
size | the size of the `Switch`, options: `default` `small` | string | default |
| Property | Description | Type | Default |
| -----|-----|-----|------|
| checked | determine whether the `Switch` is checked | boolean | false |
| defaultChecked | to set the initial state | boolean | false |
| onChange | a callback function, can be executed when the checked state is changing | Function(checked:Boolean) | |
| checkedChildren | content to be shown when the state is checked | string\|ReactNode | |
| unCheckedChildren | content to be shown when the state is unchecked | string\|ReactNode | |
| size | the size of the `Switch`, options: `default` `small` | string | default |
| disabled | Disable switch | boolean | false|