UNPKG

@mui/x-data-grid

Version:

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

19 lines 624 B
import _extends from "@babel/runtime/helpers/esm/extends"; import { GRID_STRING_COL_DEF } from './gridStringColDef'; import { renderActionsCell } from '../components/cell/GridActionsCell'; export const GRID_ACTIONS_COLUMN_TYPE = 'actions'; export const GRID_ACTIONS_COL_DEF = _extends({}, GRID_STRING_COL_DEF, { sortable: false, filterable: false, // @ts-ignore aggregable: false, width: 100, align: 'center', headerAlign: 'center', headerName: '', disableColumnMenu: true, disableExport: true, renderCell: renderActionsCell, getApplyQuickFilterFn: undefined, getApplyQuickFilterFnV7: undefined });