You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicate a warning state by setting `warn` to `true`. This example shows a warning about unassociated accounts.
@@ -192,6 +202,16 @@ Indicate a warning state by setting `warn` to `true`. This example shows a warni
192
202
{id: "2", text: "Fax"}]}"
193
203
/>
194
204
205
+
## Warning state (filterable)
206
+
207
+
Combine `filterable` and `warn` to show warnings on a filterable multi-select.
208
+
209
+
<MultiSelect filterable warn warnText="One or more contact methods are not associated with your account" labelText="Contact" placeholder="Filter contact methods..."
210
+
items="{[{id: "0", text: "Slack"},
211
+
{id: "1", text: "Email"},
212
+
{id: "2", text: "Fax"}]}"
213
+
/>
214
+
195
215
## Disabled state
196
216
197
217
Disable the entire dropdown by setting `disabled` to `true`. This prevents all user interaction.
0 commit comments