UNPKG

@mui/x-data-grid

Version:

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

22 lines (21 loc) 454 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDefaultCellValue = void 0; 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 ''; } }; exports.getDefaultCellValue = getDefaultCellValue;