Axinom Mosaic Libraries
    Preparing search index...

    Interface CustomFilter<T>

    interface CustomFilter<T extends Data> {
        component: FC<CustomFilterProps>;
        label: string;
        onValidate?: FilterValidatorFunction<T>;
        property: keyof T;
        selectedValueRenderer?: SelectedValueRenderer;
        type: Custom;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    component: FC<CustomFilterProps>
    label: string

    Label displayed for the filter

    Callback triggered when the filter is validated

    property: keyof T

    Property of the data the filter applies to

    selectedValueRenderer?: SelectedValueRenderer

    Custom renderer for the selected value

    type: Custom

    Type of the filter