Filter
The Filter component streamlines data manipulation by providing a user-friendly interface for refining search results or dataset views. Users can easily apply various filter criteria to narrow down options or highlight specific information. With customizable settings and seamless integration, the Filter component enhances data exploration and management within Clinux applications.
html
<Filter [...props] />typescript
interface FilterProps {
modelValue: F;
loading?: boolean;
errors?: Record<Extract<keyof F, string>, string>;
required: Array<keyof F>;
watchFields?: Array<keyof F>;
sections: FieldSection<F>[];
actions?: FormAction<F>[];
cancelLabel?: string;
submitLabel?: string;
}