UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the MUI X Data Grid components.

18 lines 685 B
import { GridSlotsComponent } from '@mui/x-data-grid'; import { GridProIconSlotsComponent } from "./gridProIconSlotsComponent.js"; /** * 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; }