/* eslint-disable @typescript-eslint/no-explicit-any */ import FactoryRenderer from "../../../../Renderer"; import { FilterExpression } from "../../data/quickFilter"; interface FilterProps { filterRow: FilterExpression; dataKeyRelatedValues?: Record; onQuickFilterApply: ( id: string, value: { label: string; value: any }, ) => void; } const Filter = (props: FilterProps) => { return (
{props.filterRow.propertyToFilter.label} props.onQuickFilterApply(props.filterRow.id, e) } uiElementType="WIDGET" widgetType="DROPDOWN" />
); }; export default Filter;