UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

14 lines 440 B
import { GridFilterInputBoolean } from '../components/panel/filterPanel/GridFilterInputBoolean'; export const getGridBooleanOperators = () => [{ value: 'is', getApplyFilterFn: filterItem => { if (!filterItem.value) { return null; } const valueAsBoolean = String(filterItem.value) === 'true'; return value => { return Boolean(value) === valueAsBoolean; }; }, InputComponent: GridFilterInputBoolean }];