v1.13.0
Minor Changes
-
#57
5a25241Thanks @MikeNotThePope! - UpgradeComboboxwith MUI Autocomplete's niceties.Comboboxhandled a static, client-filtered option list. Everything MUI'sAutocompleteadds around that — async sources, values that aren't in the list, grouping, chip overflow — was missing. All of it is additive and opt-in; existing usage is unchanged.- Async:
onInputChangereports the query so you can fetch for it,loadingshows a spinner row, andmanualFilterstops the built-in filter from re-filtering results you already filtered server-side. - Free solo:
freeSolooffers an "Add …" row when the query matches no option. The value is emitted as typed and still renders in the trigger despite not being inoptions. - Grouping:
groupBy(option)returns a heading; groups filter down and disappear with their heading when empty. - Chips:
limitTagscollapses a long multi-selection into a count badge instead of growing the trigger, andclearableadds a reset button. - Chip remove buttons now carry an accessible name (
Remove React) — the docs claimed this and it was not true. Override vialabels.remove, alongside newloading,clear,create, andmorelabel keys.
- Async: