@mui/x-data-grid-pro
Version:
The Pro plan edition of the Data Grid components (MUI X).
19 lines (18 loc) • 703 B
TypeScript
import { GridSlotsComponent } from '@mui/x-data-grid';
import { GridProIconSlotsComponent } from './gridProIconSlotsComponent';
/**
* Grid components React prop interface containing all the overridable components
* for Pro package
*/
export interface GridProSlotsComponent extends GridSlotsComponent, GridProIconSlotsComponent {
/**
* Component responsible for showing menu adornment in Header filter row
* @default GridHeaderFilterCell
*/
headerFilterCell: React.JSXElementConstructor<any>;
/**
* Component responsible for showing menu in Header filter row
* @default GridHeaderFilterMenu
*/
headerFilterMenu: React.JSXElementConstructor<any> | null;
}