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
Copy file name to clipboardExpand all lines: packages/paste-website/src/pages/components/form/index.mdx
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -416,6 +416,32 @@ Make required and optional fields distinguishable. Try to avoid optional input f
416
416
417
417
Text is the clearest way to indicate whether a field is required or optional. However, the required symbol is relatively well understood. If you use the required symbol to indicate required fields, you'll see a "Required" title on the symbol. If you're building for other languages, use the `i18nLabel` prop to translate the "Required" title.
|[Radio Group](/components/radio-group) or [Radio Button Group](/components/radio-button-group)| Use it when you have a list of up to 6 fixed items, and users need to select only one at a time. |
426
+
|[Select](/components/select) or [Singleselect Combobox](/components/combobox)| Use it when you have more than 6 options in a fixed list and users need to select only one at a time.|
427
+
|[Singleselect Combobox - Autocomplete](/components/combobox#autocomplete-combobox)| Use it when you have lists with over 15 options or if users need to search through a database and select a single option at a time.|
|[Checkbox Group](/components/checkbox)| Use it when you have a list of up to 6 fixed items, and users can select multiple values at a time.|
434
+
|[Multiselect Combobox](/components/multiselect-combobox)| Use it when you have lists with over 6 options or if users need to search through a database and select multiple values at a time.|
0 commit comments