UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

14 lines (13 loc) 498 B
import * as React from 'react'; import { BoxProps } from 'rebass'; import { QlPredicate, QlPredicateDef } from '../../../parser/src/predicate'; interface ColumnFilterComponentProps { columnId: string; disabled?: boolean; predicate?: QlPredicate; predicateDefs: QlPredicateDef[]; onPredicateChange: (predicate: QlPredicate | null) => void; wrapperProps?: BoxProps; } export declare const ColumnFilterComponent: React.FunctionComponent<ColumnFilterComponentProps>; export {};