Skip to content

Commit

Permalink
docs: add quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
daixianceng committed Mar 22, 2019
1 parent 8721391 commit 2db3b2e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/en_US/FormikCheckboxGroupField.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
|multiple|`bool`|`false`|Whether to enable multiple selection, if it is `true`, the field value in `initialValues` must be an array|
|name|`string`||The name of the field, see formik docs [field#name](https://jaredpalmer.com/formik/docs/api/field#name)|
|options|`array`||The checkbox list, each of which is an object like `{ label: 'Male', value: 'male' }`, `value` must be unique and can only be a `string`|
|row|`true` or `false` or `all`|`false`|Whether to use the row layout, if it is `all` then all the elements are arranged in a row|
|row|`true` or `false` or `'all'`|`false`|Whether to use the row layout, if it is `'all'` then all the elements are arranged in a row|
|validate|`func`||Validator, see formik docs [field#validate](https://jaredpalmer.com/formik/docs/api/field#validate)|

Any other properties supplied will be spread to the [@material-ui/core/FormControl](https://material-ui.com/api/form-control/) component.
Expand Down
2 changes: 1 addition & 1 deletion docs/en_US/FormikRadioGroupField.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|options|`array`||The radio list, each of which is an object like `{ label: 'Male', value: 'male' }`, `value` must be unique and can only be a `string`|
|RadioGroupProps|`object`||Properties applied to the [@material-ui/core/RadioGroup](https://material-ui.com/api/radio-group/) component|
|RadioProps|`object`||Properties applied to the [@material-ui/core/Radio](https://material-ui.com/api/radio/) component|
|row|`true` or `false` or `all`|`false`|Whether to use the row layout, if it is `all` then all the elements are arranged in a row|
|row|`true` or `false` or `'all'`|`false`|Whether to use the row layout, if it is `'all'` then all the elements are arranged in a row|
|validate|`func`||Validator, see formik docs [field#validate](https://jaredpalmer.com/formik/docs/api/field#validate)|

Any other properties supplied will be spread to the [@material-ui/core/FormControl](https://material-ui.com/api/form-control/) component.
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/FormikCheckboxGroupField.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
|multiple|`bool`|`false`|是否启用多选,如果为`true``initialValues`中的字段值必须是一个数组|
|name|`string`||字段的名字,见formik文档 [field#name](https://jaredpalmer.com/formik/docs/api/field#name)|
|options|`array`||checkbox列表,每一项是一个形如`{ label: 'Male', value: 'male' }`的对象,`value`必须唯一,且只能为`string`|
|row|`true``false``all`|`false`|是否使用行布局,如果是`all`则所有元素都排列成一行|
|row|`true``false``'all'`|`false`|是否使用行布局,如果是`'all'`则所有元素都排列成一行|
|validate|`func`||验证函数,见formik文档 [field#validate](https://jaredpalmer.com/formik/docs/api/field#validate)|

其它道具将会传递到 [@material-ui/core/FormControl](https://material-ui.com/api/form-control/) 组件
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/FormikRadioGroupField.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|options|`array`||radio列表,每一项是一个形如`{ label: 'Male', value: 'male' }`的对象,`value`必须唯一,且只能为`string`|
|RadioGroupProps|`object`||附加到 [@material-ui/core/RadioGroup](https://material-ui.com/api/radio-group/) 上的道具|
|RadioProps|`object`||附加到 [@material-ui/core/Radio](https://material-ui.com/api/radio/) 上的道具|
|row|`true``false``all`|`false`|是否使用行布局,如果是`all`则所有元素都排列成一行|
|row|`true``false``'all'`|`false`|是否使用行布局,如果是`'all'`则所有元素都排列成一行|
|validate|`func`||验证函数,见formik文档 [field#validate](https://jaredpalmer.com/formik/docs/api/field#validate)|

其它道具将会传递到 [@material-ui/core/FormControl](https://material-ui.com/api/form-control/) 组件
Expand Down

0 comments on commit 2db3b2e

Please sign in to comment.