@mui/x-data-grid 7.0.0-alpha.7 → 7.0.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +175 -49
- package/DataGrid/DataGrid.js +9 -21
- package/colDef/gridDateColDef.js +1 -1
- package/components/GridPagination.d.ts +4 -4
- package/components/GridPagination.js +1 -1
- package/components/cell/GridActionsCell.js +1 -1
- package/components/cell/GridActionsCellItem.d.ts +5 -5
- package/components/cell/GridCell.js +2 -2
- package/components/panel/GridPanel.d.ts +3 -3
- package/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +4 -0
- package/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/hooks/core/useGridLoggerFactory.js +2 -2
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.js +1 -1
- package/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -4
- package/hooks/features/editing/useGridCellEditing.js +4 -4
- package/hooks/features/editing/useGridRowEditing.js +4 -4
- package/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/hooks/features/export/useGridPrintExport.js +1 -1
- package/hooks/features/filter/gridFilterUtils.js +5 -5
- package/hooks/features/pagination/gridPaginationUtils.js +2 -2
- package/hooks/features/rowSelection/useGridRowSelection.js +1 -1
- package/hooks/features/rows/gridRowsUtils.js +2 -2
- package/hooks/features/rows/useGridRows.js +7 -7
- package/hooks/features/rows/useGridRowsMeta.js +2 -2
- package/hooks/features/sorting/gridSortingUtils.js +4 -2
- package/hooks/utils/useGridApiContext.js +1 -1
- package/hooks/utils/useGridPrivateApiContext.js +1 -1
- package/hooks/utils/useGridRootProps.js +1 -1
- package/hooks/utils/useGridSelector.js +1 -1
- package/index.d.ts +0 -1
- package/index.js +1 -2
- package/internals/index.d.ts +1 -0
- package/internals/utils/index.d.ts +1 -0
- package/internals/utils/index.js +2 -1
- package/internals/utils/propValidation.d.ts +4 -0
- package/internals/utils/propValidation.js +19 -0
- package/legacy/DataGrid/DataGrid.js +14 -23
- package/legacy/colDef/gridDateColDef.js +1 -1
- package/legacy/components/GridPagination.js +1 -1
- package/legacy/components/cell/GridActionsCell.js +1 -1
- package/legacy/components/cell/GridCell.js +2 -2
- package/legacy/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/legacy/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/legacy/hooks/core/useGridLoggerFactory.js +2 -2
- package/legacy/hooks/features/columnGrouping/gridColumnGroupsUtils.js +1 -1
- package/legacy/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -4
- package/legacy/hooks/features/editing/useGridCellEditing.js +4 -4
- package/legacy/hooks/features/editing/useGridRowEditing.js +4 -4
- package/legacy/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/legacy/hooks/features/export/useGridPrintExport.js +1 -1
- package/legacy/hooks/features/filter/gridFilterUtils.js +5 -5
- package/legacy/hooks/features/pagination/gridPaginationUtils.js +2 -2
- package/legacy/hooks/features/rowSelection/useGridRowSelection.js +1 -1
- package/legacy/hooks/features/rows/gridRowsUtils.js +2 -2
- package/legacy/hooks/features/rows/useGridParamsApi.js +4 -5
- package/legacy/hooks/features/rows/useGridRows.js +7 -7
- package/legacy/hooks/features/rows/useGridRowsMeta.js +2 -2
- package/legacy/hooks/features/sorting/gridSortingUtils.js +4 -2
- package/legacy/hooks/utils/useGridApiContext.js +1 -1
- package/legacy/hooks/utils/useGridPrivateApiContext.js +1 -1
- package/legacy/hooks/utils/useGridRootProps.js +1 -1
- package/legacy/hooks/utils/useGridSelector.js +1 -1
- package/legacy/index.js +1 -2
- package/legacy/internals/utils/index.js +2 -1
- package/legacy/internals/utils/propValidation.js +21 -0
- package/legacy/utils/createSelector.js +1 -1
- package/legacy/utils/exportAs.js +1 -1
- package/models/props/DataGridProps.d.ts +1 -1
- package/modern/DataGrid/DataGrid.js +9 -21
- package/modern/colDef/gridDateColDef.js +1 -1
- package/modern/components/GridPagination.js +1 -1
- package/modern/components/cell/GridActionsCell.js +1 -1
- package/modern/components/cell/GridCell.js +2 -2
- package/modern/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/modern/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/modern/hooks/core/useGridLoggerFactory.js +2 -2
- package/modern/hooks/features/columnGrouping/gridColumnGroupsUtils.js +1 -1
- package/modern/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -4
- package/modern/hooks/features/editing/useGridCellEditing.js +4 -4
- package/modern/hooks/features/editing/useGridRowEditing.js +4 -4
- package/modern/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/modern/hooks/features/export/useGridPrintExport.js +1 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +5 -5
- package/modern/hooks/features/pagination/gridPaginationUtils.js +2 -2
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +1 -1
- package/modern/hooks/features/rows/gridRowsUtils.js +2 -2
- package/modern/hooks/features/rows/useGridRows.js +7 -7
- package/modern/hooks/features/rows/useGridRowsMeta.js +2 -2
- package/modern/hooks/features/sorting/gridSortingUtils.js +4 -2
- package/modern/hooks/utils/useGridApiContext.js +1 -1
- package/modern/hooks/utils/useGridPrivateApiContext.js +1 -1
- package/modern/hooks/utils/useGridRootProps.js +1 -1
- package/modern/hooks/utils/useGridSelector.js +1 -1
- package/modern/index.js +1 -2
- package/modern/internals/utils/index.js +2 -1
- package/modern/internals/utils/propValidation.js +19 -0
- package/modern/utils/createSelector.js +1 -1
- package/modern/utils/exportAs.js +1 -1
- package/node/DataGrid/DataGrid.js +9 -21
- package/node/colDef/gridDateColDef.js +1 -1
- package/node/components/GridPagination.js +1 -1
- package/node/components/cell/GridActionsCell.js +1 -1
- package/node/components/cell/GridCell.js +2 -2
- package/node/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/node/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/node/hooks/core/useGridLoggerFactory.js +2 -2
- package/node/hooks/features/columnGrouping/gridColumnGroupsUtils.js +1 -1
- package/node/hooks/features/columnGrouping/useGridColumnGrouping.js +6 -4
- package/node/hooks/features/editing/useGridCellEditing.js +4 -4
- package/node/hooks/features/editing/useGridRowEditing.js +4 -4
- package/node/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/node/hooks/features/export/useGridPrintExport.js +1 -1
- package/node/hooks/features/filter/gridFilterUtils.js +5 -5
- package/node/hooks/features/pagination/gridPaginationUtils.js +2 -2
- package/node/hooks/features/rowSelection/useGridRowSelection.js +1 -1
- package/node/hooks/features/rows/gridRowsUtils.js +2 -2
- package/node/hooks/features/rows/useGridRows.js +7 -7
- package/node/hooks/features/rows/useGridRowsMeta.js +2 -2
- package/node/hooks/features/sorting/gridSortingUtils.js +4 -2
- package/node/hooks/utils/useGridApiContext.js +1 -1
- package/node/hooks/utils/useGridPrivateApiContext.js +1 -1
- package/node/hooks/utils/useGridRootProps.js +1 -1
- package/node/hooks/utils/useGridSelector.js +1 -1
- package/node/index.js +1 -13
- package/node/internals/utils/index.js +11 -0
- package/node/internals/utils/propValidation.js +26 -0
- package/node/utils/createSelector.js +1 -1
- package/node/utils/exportAs.js +1 -1
- package/package.json +1 -1
- package/utils/createSelector.js +1 -1
- package/utils/exportAs.js +1 -1
|
@@ -25,7 +25,7 @@ const _excluded = ["id"],
|
|
|
25
25
|
_excluded2 = ["id"];
|
|
26
26
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
27
27
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
28
|
-
const missingOnProcessRowUpdateErrorWarning = (0, _warning.buildWarning)(['MUI: A call to `processRowUpdate` threw an error which was not handled because `onProcessRowUpdateError` is missing.', 'To handle the error pass a callback to the `onProcessRowUpdateError` prop, e.g. `<DataGrid onProcessRowUpdateError={(error) => ...} />`.', 'For more detail, see
|
|
28
|
+
const missingOnProcessRowUpdateErrorWarning = (0, _warning.buildWarning)(['MUI X: A call to `processRowUpdate` threw an error which was not handled because `onProcessRowUpdateError` is missing.', 'To handle the error pass a callback to the `onProcessRowUpdateError` prop, e.g. `<DataGrid onProcessRowUpdateError={(error) => ...} />`.', 'For more detail, see https://mui.com/x/react-data-grid/editing/#server-side-persistence.'], 'error');
|
|
29
29
|
const useGridRowEditing = (apiRef, props) => {
|
|
30
30
|
const [rowModesModel, setRowModesModel] = React.useState({});
|
|
31
31
|
const rowModesModelRef = React.useRef(rowModesModel);
|
|
@@ -46,12 +46,12 @@ const useGridRowEditing = (apiRef, props) => {
|
|
|
46
46
|
const throwIfNotEditable = React.useCallback((id, field) => {
|
|
47
47
|
const params = apiRef.current.getCellParams(id, field);
|
|
48
48
|
if (!apiRef.current.isCellEditable(params)) {
|
|
49
|
-
throw new Error(`MUI: The cell with id=${id} and field=${field} is not editable.`);
|
|
49
|
+
throw new Error(`MUI X: The cell with id=${id} and field=${field} is not editable.`);
|
|
50
50
|
}
|
|
51
51
|
}, [apiRef]);
|
|
52
52
|
const throwIfNotInMode = React.useCallback((id, mode) => {
|
|
53
53
|
if (apiRef.current.getRowMode(id) !== mode) {
|
|
54
|
-
throw new Error(`MUI: The row with id=${id} is not in ${mode} mode.`);
|
|
54
|
+
throw new Error(`MUI X: The row with id=${id} is not in ${mode} mode.`);
|
|
55
55
|
}
|
|
56
56
|
}, [apiRef]);
|
|
57
57
|
const handleCellDoubleClick = React.useCallback((params, event) => {
|
|
@@ -388,7 +388,7 @@ const useGridRowEditing = (apiRef, props) => {
|
|
|
388
388
|
});
|
|
389
389
|
if (onProcessRowUpdateError) {
|
|
390
390
|
onProcessRowUpdateError(errorThrown);
|
|
391
|
-
} else {
|
|
391
|
+
} else if (process.env.NODE_ENV !== 'production') {
|
|
392
392
|
missingOnProcessRowUpdateErrorWarning();
|
|
393
393
|
}
|
|
394
394
|
};
|
|
@@ -40,7 +40,7 @@ const serializeCellValue = (cellParams, options) => {
|
|
|
40
40
|
return sanitizeCellValue(value, delimiterCharacter);
|
|
41
41
|
};
|
|
42
42
|
exports.serializeCellValue = serializeCellValue;
|
|
43
|
-
const objectFormattedValueWarning = (0, _warning.buildWarning)(['MUI: When the value of a field is an object or a `renderCell` is provided, the CSV export might not display the value correctly.', 'You can provide a `valueFormatter` with a string representation to be used.']);
|
|
43
|
+
const objectFormattedValueWarning = (0, _warning.buildWarning)(['MUI X: When the value of a field is an object or a `renderCell` is provided, the CSV export might not display the value correctly.', 'You can provide a `valueFormatter` with a string representation to be used.']);
|
|
44
44
|
class CSVRow {
|
|
45
45
|
constructor(options) {
|
|
46
46
|
this.options = void 0;
|
|
@@ -215,7 +215,7 @@ const useGridPrintExport = (apiRef, props) => {
|
|
|
215
215
|
const exportDataAsPrint = React.useCallback(async options => {
|
|
216
216
|
logger.debug(`Export data as Print`);
|
|
217
217
|
if (!apiRef.current.rootElementRef.current) {
|
|
218
|
-
throw new Error('MUI: No grid root element available.');
|
|
218
|
+
throw new Error('MUI X: No grid root element available.');
|
|
219
219
|
}
|
|
220
220
|
previousGridState.current = apiRef.current.exportState();
|
|
221
221
|
// It appends that the visibility model is not exported, especially if columnVisibility is not controlled
|
|
@@ -44,9 +44,9 @@ const cleanFilterItem = (item, apiRef) => {
|
|
|
44
44
|
return cleanItem;
|
|
45
45
|
};
|
|
46
46
|
exports.cleanFilterItem = cleanFilterItem;
|
|
47
|
-
const filterModelDisableMultiColumnsFilteringWarning = (0, _warning.buildWarning)(['MUI: The `filterModel` can only contain a single item when the `disableMultipleColumnsFiltering` prop is set to `true`.', 'If you are using the community version of the `DataGrid`, this prop is always `true`.'], 'error');
|
|
48
|
-
const filterModelMissingItemIdWarning = (0, _warning.buildWarning)('MUI: The `id` field is required on `filterModel.items` when you use multiple filters.', 'error');
|
|
49
|
-
const filterModelMissingItemOperatorWarning = (0, _warning.buildWarning)('MUI: The `operator` field is required on `filterModel.items`, one or more of your filtering item has no `operator` provided.', 'error');
|
|
47
|
+
const filterModelDisableMultiColumnsFilteringWarning = (0, _warning.buildWarning)(['MUI X: The `filterModel` can only contain a single item when the `disableMultipleColumnsFiltering` prop is set to `true`.', 'If you are using the community version of the `DataGrid`, this prop is always `true`.'], 'error');
|
|
48
|
+
const filterModelMissingItemIdWarning = (0, _warning.buildWarning)('MUI X: The `id` field is required on `filterModel.items` when you use multiple filters.', 'error');
|
|
49
|
+
const filterModelMissingItemOperatorWarning = (0, _warning.buildWarning)('MUI X: The `operator` field is required on `filterModel.items`, one or more of your filtering item has no `operator` provided.', 'error');
|
|
50
50
|
const sanitizeFilterModel = (model, disableMultipleColumnsFiltering, apiRef) => {
|
|
51
51
|
const hasSeveralItems = model.items.length > 1;
|
|
52
52
|
let items;
|
|
@@ -114,11 +114,11 @@ const getFilterCallbackFromItem = (filterItem, apiRef) => {
|
|
|
114
114
|
});
|
|
115
115
|
const filterOperators = column.filterOperators;
|
|
116
116
|
if (!filterOperators?.length) {
|
|
117
|
-
throw new Error(`MUI: No filter operators found for column '${column.field}'.`);
|
|
117
|
+
throw new Error(`MUI X: No filter operators found for column '${column.field}'.`);
|
|
118
118
|
}
|
|
119
119
|
const filterOperator = filterOperators.find(operator => operator.value === newFilterItem.operator);
|
|
120
120
|
if (!filterOperator) {
|
|
121
|
-
throw new Error(`MUI: No filter operator found for column '${column.field}' and operator value '${newFilterItem.operator}'.`);
|
|
121
|
+
throw new Error(`MUI X: No filter operator found for column '${column.field}' and operator value '${newFilterItem.operator}'.`);
|
|
122
122
|
}
|
|
123
123
|
const publicApiRef = (0, _getPublicApiRef.getPublicApiRef)(apiRef);
|
|
124
124
|
const applyFilterOnRow = filterOperator.getApplyFilterFn(newFilterItem, column);
|
|
@@ -16,7 +16,7 @@ const getPageCount = (rowCount, pageSize) => {
|
|
|
16
16
|
return 0;
|
|
17
17
|
};
|
|
18
18
|
exports.getPageCount = getPageCount;
|
|
19
|
-
const noRowCountInServerMode = exports.noRowCountInServerMode = (0, _warning.buildWarning)(["MUI: the 'rowCount' prop is undefined while using paginationMode='server'", 'For more detail, see http://mui.com/components/data-grid/pagination/#basic-implementation'], 'error');
|
|
19
|
+
const noRowCountInServerMode = exports.noRowCountInServerMode = (0, _warning.buildWarning)(["MUI X: the 'rowCount' prop is undefined while using paginationMode='server'", 'For more detail, see http://mui.com/components/data-grid/pagination/#basic-implementation'], 'error');
|
|
20
20
|
const getDefaultGridPaginationModel = autoPageSize => ({
|
|
21
21
|
page: 0,
|
|
22
22
|
pageSize: autoPageSize ? 0 : 100
|
|
@@ -31,7 +31,7 @@ const getValidPage = (page, pageCount = 0) => {
|
|
|
31
31
|
exports.getValidPage = getValidPage;
|
|
32
32
|
const throwIfPageSizeExceedsTheLimit = (pageSize, signatureProp) => {
|
|
33
33
|
if (signatureProp === _utils.GridSignature.DataGrid && pageSize > MAX_PAGE_SIZE) {
|
|
34
|
-
throw new Error(['MUI: `pageSize` cannot exceed 100 in the MIT version of the DataGrid.', 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
34
|
+
throw new Error(['MUI X: `pageSize` cannot exceed 100 in the MIT version of the DataGrid.', 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
exports.throwIfPageSizeExceedsTheLimit = throwIfPageSizeExceedsTheLimit;
|
|
@@ -102,7 +102,7 @@ const useGridRowSelection = (apiRef, props) => {
|
|
|
102
102
|
*/
|
|
103
103
|
const setRowSelectionModel = React.useCallback(model => {
|
|
104
104
|
if (props.signature === _useGridApiEventHandler.GridSignature.DataGrid && !canHaveMultipleSelection && Array.isArray(model) && model.length > 1) {
|
|
105
|
-
throw new Error(['MUI: `rowSelectionModel` can only contain 1 item in DataGrid.', 'You need to upgrade to DataGridPro or DataGridPremium component to unlock multiple selection.'].join('\n'));
|
|
105
|
+
throw new Error(['MUI X: `rowSelectionModel` can only contain 1 item in DataGrid.', 'You need to upgrade to DataGridPro or DataGridPremium component to unlock multiple selection.'].join('\n'));
|
|
106
106
|
}
|
|
107
107
|
const currentModel = (0, _gridRowSelectionSelector.gridRowSelectionStateSelector)(apiRef.current.state);
|
|
108
108
|
if (currentModel !== model) {
|
|
@@ -37,7 +37,7 @@ const buildRootGroup = () => ({
|
|
|
37
37
|
exports.buildRootGroup = buildRootGroup;
|
|
38
38
|
function checkGridRowIdIsValid(id, row, detailErrorMessage = 'A row was provided without id in the rows prop:') {
|
|
39
39
|
if (id == null) {
|
|
40
|
-
throw new Error(['MUI: The data grid component requires all rows to have a unique `id` property.', 'Alternatively, you can use the `getRowId` prop to specify a custom id for each row.', detailErrorMessage, JSON.stringify(row)].join('\n'));
|
|
40
|
+
throw new Error(['MUI X: The data grid component requires all rows to have a unique `id` property.', 'Alternatively, you can use the `getRowId` prop to specify a custom id for each row.', detailErrorMessage, JSON.stringify(row)].join('\n'));
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
const getRowIdFromRowModel = (rowModel, getRowId, detailErrorMessage) => {
|
|
@@ -163,7 +163,7 @@ const updateCacheWithNewRows = ({
|
|
|
163
163
|
updates
|
|
164
164
|
}) => {
|
|
165
165
|
if (previousCache.updates.type === 'full') {
|
|
166
|
-
throw new Error('MUI: Unable to prepare a partial update if a full update is not applied yet');
|
|
166
|
+
throw new Error('MUI X: Unable to prepare a partial update if a full update is not applied yet.');
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
// Remove duplicate updates.
|
|
@@ -131,7 +131,7 @@ const useGridRows = (apiRef, props) => {
|
|
|
131
131
|
}, [logger, props.getRowId, props.loading, props.rowCount, throttledRowsChange, apiRef]);
|
|
132
132
|
const updateRows = React.useCallback(updates => {
|
|
133
133
|
if (props.signature === _useGridApiEventHandler.GridSignature.DataGrid && updates.length > 1) {
|
|
134
|
-
throw new Error(["MUI: You can't update several rows at once in `apiRef.current.updateRows` on the DataGrid.", 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
134
|
+
throw new Error(["MUI X: You can't update several rows at once in `apiRef.current.updateRows` on the DataGrid.", 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
135
135
|
}
|
|
136
136
|
const nonPinnedRowsUpdates = [];
|
|
137
137
|
updates.forEach(update => {
|
|
@@ -169,10 +169,10 @@ const useGridRows = (apiRef, props) => {
|
|
|
169
169
|
const setRowChildrenExpansion = React.useCallback((id, isExpanded) => {
|
|
170
170
|
const currentNode = apiRef.current.getRowNode(id);
|
|
171
171
|
if (!currentNode) {
|
|
172
|
-
throw new Error(`MUI: No row with id #${id} found
|
|
172
|
+
throw new Error(`MUI X: No row with id #${id} found.`);
|
|
173
173
|
}
|
|
174
174
|
if (currentNode.type !== 'group') {
|
|
175
|
-
throw new Error('MUI: Only group nodes can be expanded or collapsed');
|
|
175
|
+
throw new Error('MUI X: Only group nodes can be expanded or collapsed.');
|
|
176
176
|
}
|
|
177
177
|
const newNode = (0, _extends2.default)({}, currentNode, {
|
|
178
178
|
childrenExpanded: isExpanded
|
|
@@ -224,13 +224,13 @@ const useGridRows = (apiRef, props) => {
|
|
|
224
224
|
const setRowIndex = React.useCallback((rowId, targetIndex) => {
|
|
225
225
|
const node = apiRef.current.getRowNode(rowId);
|
|
226
226
|
if (!node) {
|
|
227
|
-
throw new Error(`MUI: No row with id #${rowId} found
|
|
227
|
+
throw new Error(`MUI X: No row with id #${rowId} found.`);
|
|
228
228
|
}
|
|
229
229
|
if (node.parent !== _gridRowsUtils.GRID_ROOT_GROUP_ID) {
|
|
230
|
-
throw new Error(`MUI: The row reordering do not support reordering of grouped rows yet
|
|
230
|
+
throw new Error(`MUI X: The row reordering do not support reordering of grouped rows yet.`);
|
|
231
231
|
}
|
|
232
232
|
if (node.type !== 'leaf') {
|
|
233
|
-
throw new Error(`MUI: The row reordering do not support reordering of footer or grouping rows
|
|
233
|
+
throw new Error(`MUI X: The row reordering do not support reordering of footer or grouping rows.`);
|
|
234
234
|
}
|
|
235
235
|
apiRef.current.setState(state => {
|
|
236
236
|
const group = (0, _gridRowsSelector.gridRowTreeSelector)(state, apiRef.current.instanceId)[_gridRowsUtils.GRID_ROOT_GROUP_ID];
|
|
@@ -256,7 +256,7 @@ const useGridRows = (apiRef, props) => {
|
|
|
256
256
|
}, [apiRef, logger]);
|
|
257
257
|
const replaceRows = React.useCallback((firstRowToRender, newRows) => {
|
|
258
258
|
if (props.signature === _useGridApiEventHandler.GridSignature.DataGrid && newRows.length > 1) {
|
|
259
|
-
throw new Error(["MUI: You can't replace rows using `apiRef.current.unstable_replaceRows` on the DataGrid.", 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
259
|
+
throw new Error(["MUI X: You can't replace rows using `apiRef.current.unstable_replaceRows` on the DataGrid.", 'You need to upgrade to DataGridPro or DataGridPremium component to unlock this feature.'].join('\n'));
|
|
260
260
|
}
|
|
261
261
|
if (newRows.length === 0) {
|
|
262
262
|
return;
|
|
@@ -38,8 +38,8 @@ const getValidRowHeight = (rowHeightProp, defaultRowHeight, warningMessage) => {
|
|
|
38
38
|
}
|
|
39
39
|
return defaultRowHeight;
|
|
40
40
|
};
|
|
41
|
-
const rowHeightWarning = [`MUI: The \`rowHeight\` prop should be a number greater than 0.`, `The default value will be used instead.`].join('\n');
|
|
42
|
-
const getRowHeightWarning = [`MUI: The \`getRowHeight\` prop should return a number greater than 0 or 'auto'.`, `The default value will be used instead.`].join('\n');
|
|
41
|
+
const rowHeightWarning = [`MUI X: The \`rowHeight\` prop should be a number greater than 0.`, `The default value will be used instead.`].join('\n');
|
|
42
|
+
const getRowHeightWarning = [`MUI X: The \`getRowHeight\` prop should return a number greater than 0 or 'auto'.`, `The default value will be used instead.`].join('\n');
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
45
|
* @requires useGridPageSize (method)
|
|
@@ -7,10 +7,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.sanitizeSortModel = exports.mergeStateWithSortModel = exports.gridStringOrNumberComparator = exports.gridNumberComparator = exports.gridDateComparator = exports.getNextGridSortDirection = exports.buildAggregatedSortingApplier = void 0;
|
|
8
8
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
9
|
var _warning = require("../../../utils/warning");
|
|
10
|
-
const sortModelDisableMultiColumnsSortingWarning = (0, _warning.buildWarning)(['MUI: The `sortModel` can only contain a single item when the `disableMultipleColumnsSorting` prop is set to `true`.', 'If you are using the community version of the `DataGrid`, this prop is always `true`.'], 'error');
|
|
10
|
+
const sortModelDisableMultiColumnsSortingWarning = (0, _warning.buildWarning)(['MUI X: The `sortModel` can only contain a single item when the `disableMultipleColumnsSorting` prop is set to `true`.', 'If you are using the community version of the `DataGrid`, this prop is always `true`.'], 'error');
|
|
11
11
|
const sanitizeSortModel = (model, disableMultipleColumnsSorting) => {
|
|
12
12
|
if (disableMultipleColumnsSorting && model.length > 1) {
|
|
13
|
-
|
|
13
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
14
|
+
sortModelDisableMultiColumnsSortingWarning();
|
|
15
|
+
}
|
|
14
16
|
return [model[0]];
|
|
15
17
|
}
|
|
16
18
|
return model;
|
|
@@ -11,7 +11,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
11
11
|
function useGridApiContext() {
|
|
12
12
|
const apiRef = React.useContext(_GridApiContext.GridApiContext);
|
|
13
13
|
if (apiRef === undefined) {
|
|
14
|
-
throw new Error(['MUI: Could not find the data grid context.', 'It looks like you rendered your component outside of a DataGrid, DataGridPro or DataGridPremium parent component.', 'This can also happen if you are bundling multiple versions of the data grid.'].join('\n'));
|
|
14
|
+
throw new Error(['MUI X: Could not find the data grid context.', 'It looks like you rendered your component outside of a DataGrid, DataGridPro or DataGridPremium parent component.', 'This can also happen if you are bundling multiple versions of the data grid.'].join('\n'));
|
|
15
15
|
}
|
|
16
16
|
return apiRef;
|
|
17
17
|
}
|
|
@@ -15,7 +15,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
15
15
|
function useGridPrivateApiContext() {
|
|
16
16
|
const privateApiRef = React.useContext(GridPrivateApiContext);
|
|
17
17
|
if (privateApiRef === undefined) {
|
|
18
|
-
throw new Error(['MUI: Could not find the data grid private context.', 'It looks like you rendered your component outside of a DataGrid, DataGridPro or DataGridPremium parent component.', 'This can also happen if you are bundling multiple versions of the data grid.'].join('\n'));
|
|
18
|
+
throw new Error(['MUI X: Could not find the data grid private context.', 'It looks like you rendered your component outside of a DataGrid, DataGridPro or DataGridPremium parent component.', 'This can also happen if you are bundling multiple versions of the data grid.'].join('\n'));
|
|
19
19
|
}
|
|
20
20
|
return privateApiRef;
|
|
21
21
|
}
|
|
@@ -11,7 +11,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
11
11
|
const useGridRootProps = () => {
|
|
12
12
|
const contextValue = React.useContext(_GridRootPropsContext.GridRootPropsContext);
|
|
13
13
|
if (!contextValue) {
|
|
14
|
-
throw new Error('MUI: useGridRootProps should only be used inside the DataGrid, DataGridPro or DataGridPremium component.');
|
|
14
|
+
throw new Error('MUI X: useGridRootProps should only be used inside the DataGrid, DataGridPro or DataGridPremium component.');
|
|
15
15
|
}
|
|
16
16
|
return contextValue;
|
|
17
17
|
};
|
|
@@ -11,7 +11,7 @@ var _warning = require("../../utils/warning");
|
|
|
11
11
|
var _fastObjectShallowCompare = require("../../utils/fastObjectShallowCompare");
|
|
12
12
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
13
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
|
-
const stateNotInitializedWarning = (0, _warning.buildWarning)(['MUI: `useGridSelector` has been called before the initialization of the state.', 'This hook can only be used inside the context of the grid.']);
|
|
14
|
+
const stateNotInitializedWarning = (0, _warning.buildWarning)(['MUI X: `useGridSelector` has been called before the initialization of the state.', 'This hook can only be used inside the context of the grid.']);
|
|
15
15
|
function isOutputSelector(selector) {
|
|
16
16
|
return selector.acceptsApiRef;
|
|
17
17
|
}
|
package/node/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-data-grid v7.0.0-alpha.
|
|
2
|
+
* @mui/x-data-grid v7.0.0-alpha.8
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -112,18 +112,6 @@ Object.keys(_hooks).forEach(function (key) {
|
|
|
112
112
|
}
|
|
113
113
|
});
|
|
114
114
|
});
|
|
115
|
-
var _locales = require("./locales");
|
|
116
|
-
Object.keys(_locales).forEach(function (key) {
|
|
117
|
-
if (key === "default" || key === "__esModule") return;
|
|
118
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
119
|
-
if (key in exports && exports[key] === _locales[key]) return;
|
|
120
|
-
Object.defineProperty(exports, key, {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function () {
|
|
123
|
-
return _locales[key];
|
|
124
|
-
}
|
|
125
|
-
});
|
|
126
|
-
});
|
|
127
115
|
var _models = require("./models");
|
|
128
116
|
Object.keys(_models).forEach(function (key) {
|
|
129
117
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -24,4 +24,15 @@ Object.keys(_useProps).forEach(function (key) {
|
|
|
24
24
|
return _useProps[key];
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
|
+
});
|
|
28
|
+
var _propValidation = require("./propValidation");
|
|
29
|
+
Object.keys(_propValidation).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _propValidation[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _propValidation[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
27
38
|
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.validateProps = exports.propValidatorsDataGrid = void 0;
|
|
7
|
+
const propValidatorsDataGrid = exports.propValidatorsDataGrid = [props => props.autoPageSize && props.autoHeight && ['MUI X: `<DataGrid autoPageSize={true} autoHeight={true} />` are not valid props.', 'You can not use both the `autoPageSize` and `autoHeight` props at the same time because `autoHeight` scales the height of the Data Grid according to the `pageSize`.', '', 'Please remove one of these two props.'].join('\n') || undefined];
|
|
8
|
+
const warnedOnceMap = new Set();
|
|
9
|
+
const warnOnce = message => {
|
|
10
|
+
if (!warnedOnceMap.has(message)) {
|
|
11
|
+
console.error(message);
|
|
12
|
+
warnedOnceMap.add(message);
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
const validateProps = (props, validators) => {
|
|
16
|
+
if (process.env.NODE_ENV === 'production') {
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
validators.forEach(validator => {
|
|
20
|
+
const warning = validator(props);
|
|
21
|
+
if (warning) {
|
|
22
|
+
warnOnce(warning);
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
exports.validateProps = validateProps;
|
|
@@ -9,7 +9,7 @@ var _warning = require("./warning");
|
|
|
9
9
|
const cacheContainer = {
|
|
10
10
|
cache: new WeakMap()
|
|
11
11
|
};
|
|
12
|
-
const missingInstanceIdWarning = (0, _warning.buildWarning)(['MUI: A selector was called without passing the instance ID, which may impact the performance of the grid.', 'To fix, call it with `apiRef`, e.g. `mySelector(apiRef)`, or pass the instance ID explicitly, e.g. `mySelector(state, apiRef.current.instanceId)`.']);
|
|
12
|
+
const missingInstanceIdWarning = (0, _warning.buildWarning)(['MUI X: A selector was called without passing the instance ID, which may impact the performance of the grid.', 'To fix, call it with `apiRef`, e.g. `mySelector(apiRef)`, or pass the instance ID explicitly, e.g. `mySelector(state, apiRef.current.instanceId)`.']);
|
|
13
13
|
function checkIsAPIRef(value) {
|
|
14
14
|
return 'current' in value && 'instanceId' in value.current;
|
|
15
15
|
}
|
package/node/utils/exportAs.js
CHANGED
package/package.json
CHANGED
package/utils/createSelector.js
CHANGED
|
@@ -3,7 +3,7 @@ import { buildWarning } from './warning';
|
|
|
3
3
|
const cacheContainer = {
|
|
4
4
|
cache: new WeakMap()
|
|
5
5
|
};
|
|
6
|
-
const missingInstanceIdWarning = buildWarning(['MUI: A selector was called without passing the instance ID, which may impact the performance of the grid.', 'To fix, call it with `apiRef`, e.g. `mySelector(apiRef)`, or pass the instance ID explicitly, e.g. `mySelector(state, apiRef.current.instanceId)`.']);
|
|
6
|
+
const missingInstanceIdWarning = buildWarning(['MUI X: A selector was called without passing the instance ID, which may impact the performance of the grid.', 'To fix, call it with `apiRef`, e.g. `mySelector(apiRef)`, or pass the instance ID explicitly, e.g. `mySelector(state, apiRef.current.instanceId)`.']);
|
|
7
7
|
function checkIsAPIRef(value) {
|
|
8
8
|
return 'current' in value && 'instanceId' in value.current;
|
|
9
9
|
}
|
package/utils/exportAs.js
CHANGED