UNPKG

@mui/x-data-grid

Version:

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

12 lines 615 B
import { GridValidRowModel } from "./gridRows.js"; import { GridCellParams } from "./params/gridCellParams.js"; /** * A function used to process cellClassName params. * @param {GridCellParams<R, V>} params The parameters of the cell. * @returns {string} The class name to be added to the cell. */ export type GridCellClassFn<R extends GridValidRowModel = any, V = unknown> = (params: GridCellParams<R, V>) => string; /** * The union type representing the [[GridColDef]] cell class type. */ export type GridCellClassNamePropType<R extends GridValidRowModel = any, V = unknown> = string | GridCellClassFn<R, V>;