Home > @uniformdev/mesh-sdk-react > FilterEditorRendererProps

FilterEditorRendererProps type

Signature:

type FilterEditorRendererProps<TValue extends string | string[]> = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
    ariaLabel?: string;
    editorType: FilterEditor;
    options?: Array<InputOption>;
    value: TValue | undefined;
    onChange: (e: TValue | undefined) => void;
    valueTestId?: string;
    filterFieldName: string;
};

References: FilterOption, InputOption