selectFilter
selectFilter is a user interface pattern used to filter a collection by selecting a value from a dropdown or select control. The pattern typically presents a list of distinct values for a data attribute (such as category, status, or tag). When a user chooses an option, the visible items are constrained to those whose attribute matches the selected value. An option to clear the filter or select “All” is commonly provided to restore the full dataset.
Implementation and behavior can vary. In client-side filtering, the filter is applied on the in-memory data,
Design considerations include accessibility, such as ensuring the control has a clear label and is navigable
Variants of the pattern may include cascaded filters (where one select’s options depend on another), multi-select