@mui/x-data-grid 9.0.0 → 9.0.1
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 +94 -6891
- package/hooks/features/editing/useGridRowEditing.js +1 -1
- package/hooks/features/editing/useGridRowEditing.mjs +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
|
@@ -411,7 +411,7 @@ const useGridRowEditing = (apiRef, props) => {
|
|
|
411
411
|
updateRowInRowModesModel(id, null);
|
|
412
412
|
delete prevRowValuesLookup.current[id];
|
|
413
413
|
};
|
|
414
|
-
if (ignoreModifications
|
|
414
|
+
if (ignoreModifications) {
|
|
415
415
|
finishRowEditMode();
|
|
416
416
|
return;
|
|
417
417
|
}
|
|
@@ -404,7 +404,7 @@ export const useGridRowEditing = (apiRef, props) => {
|
|
|
404
404
|
updateRowInRowModesModel(id, null);
|
|
405
405
|
delete prevRowValuesLookup.current[id];
|
|
406
406
|
};
|
|
407
|
-
if (ignoreModifications
|
|
407
|
+
if (ignoreModifications) {
|
|
408
408
|
finishRowEditMode();
|
|
409
409
|
return;
|
|
410
410
|
}
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Community plan edition of the MUI X Data Grid components.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"clsx": "^2.1.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"use-sync-external-store": "^1.6.0",
|
|
45
|
-
"@mui/x-
|
|
46
|
-
"@mui/x-
|
|
45
|
+
"@mui/x-internals": "^9.0.0",
|
|
46
|
+
"@mui/x-virtualizer": "9.0.0-alpha.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@emotion/react": "^11.9.0",
|