@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
25 lines (22 loc) • 864 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getDefaultGridFilterModel = void 0;
var _gridFilterItem = require("../../../models/gridFilterItem");
const getDefaultGridFilterModel = () => ({
items: [],
logicOperator: _gridFilterItem.GridLogicOperator.And,
quickFilterValues: [],
quickFilterLogicOperator: _gridFilterItem.GridLogicOperator.And
});
/**
* @param {GridRowId} rowId The id of the row we want to filter.
* @param {(filterItem: GridFilterItem) => boolean} shouldApplyItem An optional callback to allow the filtering engine to only apply some items.
*/
/**
* Visibility status for each row.
* A row is visible if it is passing the filters AND if its parents are expanded.
* If a row is not registered in this lookup, it is visible.
*/
exports.getDefaultGridFilterModel = getDefaultGridFilterModel;
;