diff --git a/docs/src/pages/components/ComboBox.svx b/docs/src/pages/components/ComboBox.svx index 4b4e20f1..46ee62ed 100644 --- a/docs/src/pages/components/ComboBox.svx +++ b/docs/src/pages/components/ComboBox.svx @@ -112,11 +112,25 @@ items={[ {id: "2", text: "Fax"} ]} /> -### Disabled +### Disabled state \ No newline at end of file + ]} /> + +### Disabled items + +Use the `disabled` property in the `items` prop to disable specific items. + + \ No newline at end of file diff --git a/docs/src/pages/components/Dropdown.svx b/docs/src/pages/components/Dropdown.svx index a45c00a2..9ac60d2a 100644 --- a/docs/src/pages/components/Dropdown.svx +++ b/docs/src/pages/components/Dropdown.svx @@ -95,6 +95,20 @@ Set `direction` to `"top"` for the dropdown menu to appear above the input. {id: "1", text: "Email"}, {id: "2", text: "Fax"}]}" /> +### Disabled items + +Use the `disabled` property in the `items` prop to disable specific items. + + + ### Skeleton \ No newline at end of file diff --git a/docs/src/pages/components/MultiSelect.svx b/docs/src/pages/components/MultiSelect.svx index 6f8d5a86..82c5fc2d 100644 --- a/docs/src/pages/components/MultiSelect.svx +++ b/docs/src/pages/components/MultiSelect.svx @@ -145,4 +145,18 @@ Set `direction` to `"top"` for the dropdown menu to appear above the input. items="{[{id: "0", text: "Slack"}, {id: "1", text: "Email"}, {id: "2", text: "Fax"}]}" - /> \ No newline at end of file + /> + +### Disabled items + +Use the `disabled` property in the `items` prop to disable specific items. + + \ No newline at end of file