UNPKG

@mui/x-data-grid

Version:

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

15 lines 292 B
export const getDefaultCellValue = colDef => { switch (colDef.type) { case 'boolean': return false; case 'date': case 'dateTime': case 'number': return undefined; case 'singleSelect': return null; case 'string': default: return ''; } };