UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

89 lines (88 loc) 3.98 kB
import { GridFilterItem } from '../../../models/gridFilterItem'; import { GridStateCommunity } from '../../../models/gridStateCommunity'; /** * Get the current filter model. * @category Filtering */ export declare const gridFilterModelSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, import("../../..").GridFilterModel>; /** * Get the current quick filter values. * @category Filtering */ export declare const gridQuickFilterValuesSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, any[] | undefined>; /** * @category Visible rows * @ignore - do not document. */ export declare const gridVisibleRowsLookupSelector: (state: GridStateCommunity) => import("./gridFilterState").GridVisibleRowsLookupState; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilteredRowsLookupSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, Record<import("../../..").GridRowId, boolean>>; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilteredDescendantCountLookupSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, Record<import("../../..").GridRowId, number>>; /** * Get the id and the model of the rows accessible after the filtering process. * Does not contain the collapsed children. * @category Filtering */ export declare const gridExpandedSortedRowEntriesSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, { id: import("../../..").GridRowId; model: import("../../..").GridValidRowModel; }[]>; /** * Get the id of the rows accessible after the filtering process. * Does not contain the collapsed children. * @category Filtering */ export declare const gridExpandedSortedRowIdsSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, import("../../..").GridRowId[]>; /** * Get the id and the model of the rows accessible after the filtering process. * Contains the collapsed children. * @category Filtering */ export declare const gridFilteredSortedRowEntriesSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, { id: import("../../..").GridRowId; model: import("../../..").GridValidRowModel; }[]>; /** * Get the id of the rows accessible after the filtering process. * Contains the collapsed children. * @category Filtering */ export declare const gridFilteredSortedRowIdsSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, import("../../..").GridRowId[]>; /** * Get the id and the model of the top level rows accessible after the filtering process. * @category Filtering */ export declare const gridFilteredSortedTopLevelRowEntriesSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, { id: import("../../..").GridRowId; model: import("../../..").GridValidRowModel; }[]>; /** * Get the amount of rows accessible after the filtering process. * @category Filtering */ export declare const gridExpandedRowCountSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, number>; /** * Get the amount of top level rows accessible after the filtering process. * @category Filtering */ export declare const gridFilteredTopLevelRowCountSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, number>; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilterActiveItemsSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, GridFilterItem[]>; export type GridFilterActiveItemsLookup = { [field: string]: GridFilterItem[]; }; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilterActiveItemsLookupSelector: import("../../../utils/createSelector").OutputSelector<GridStateCommunity, GridFilterActiveItemsLookup>;