Props for the FilterChips component.
interface FilterChipsProps { filters: AdvancedMatchFilters; onRemoveFilter: ( filterType: "confidence" | "format" | "genre" | "status" | "year" | "tag", value?: string, ) => void; onClearAll: () => void;} Copy
interface FilterChipsProps { filters: AdvancedMatchFilters; onRemoveFilter: ( filterType: "confidence" | "format" | "genre" | "status" | "year" | "tag", value?: string, ) => void; onClearAll: () => void;}
Current filter state.
Callback when removing individual filters.
Callback to clear all filters at once.
Props for the FilterChips component.
Source