diff --git a/packages/react-docs/pages/components/button-group/index.page.mdx b/packages/react-docs/pages/components/button-group/index.page.mdx index d13ebe7a9d..fcafd45aea 100644 --- a/packages/react-docs/pages/components/button-group/index.page.mdx +++ b/packages/react-docs/pages/components/button-group/index.page.mdx @@ -47,6 +47,7 @@ The following example shows different states (i.e. normal, disabled, and selecte | Name | Type | Default | Description | | :--- | :--- | :------ | :---------- | | children | ReactNode \| `(context) => ReactNode` | | A function child can be used intead of a React element. This function is called with the context object. | +| disabled | boolean | | If `true`, all buttons will be disabled. | | orientation | string | 'horizontal' | The orientation of the button group. One of: 'horizontal', 'vertical' | | size | string | 'md' | The size of the button group. One of: 'sm', 'md', 'lg' | | variant | string | 'default' | The variant of the button group. One of: 'emphasis', 'primary', 'default', 'secondary', 'ghost' | diff --git a/packages/react-docs/pages/components/checkbox-group/index.page.mdx b/packages/react-docs/pages/components/checkbox-group/index.page.mdx index 52e293da7d..15001deb19 100644 --- a/packages/react-docs/pages/components/checkbox-group/index.page.mdx +++ b/packages/react-docs/pages/components/checkbox-group/index.page.mdx @@ -52,7 +52,7 @@ Use the `size` prop to change the size of the `CheckboxGroup`. You can set the v | :--- | :--- | :------ | :---------- | | children | ReactNode \| `(context) => ReactNode` | | A function child can be used intead of a React element. This function is called with the context object. | | defaultValue | (string\|number)[] | | The initial value of the checkbox group. | -| disabled | boolean | false | If `true`, all checkboxes will be disabled. | +| disabled | boolean | | If `true`, all checkboxes will be disabled. | | name | string | | The name used to reference the value of the control. If you don't provide this prop, it falls back to a randomly generated name. | | onChange | (event) => void | | A callback fired when any descendant `Checkbox` is checked or unchecked. | | size | string | 'md' | The size (width and height) of the checkbox. One of: 'sm', 'md', 'lg' | diff --git a/packages/react-docs/pages/components/radio-group/index.page.mdx b/packages/react-docs/pages/components/radio-group/index.page.mdx index a339bab527..6014b75478 100644 --- a/packages/react-docs/pages/components/radio-group/index.page.mdx +++ b/packages/react-docs/pages/components/radio-group/index.page.mdx @@ -52,7 +52,7 @@ Use the `size` prop to change the size of the `RadioGroup`. You can set the valu | :--- | :--- | :------ | :---------- | | children | ReactNode \| `(context) => ReactNode` | | A function child can be used intead of a React element. This function is called with the context object. | | defaultValue | string \| number | | The default `input` element value. Use when the component is not controlled. | -| disabled | boolean | false | If `true`, all radios will be disabled. | +| disabled | boolean | | If `true`, all radios will be disabled. | | name | string | | The name used to reference the value of the control. If you don't provide this prop, it falls back to a randomly generated name. | | onChange | function | | A callback called when the state of the radio changes. | | size | string | 'md' | The size (width and height) of the radio. One of: 'sm', 'md', 'lg' |