@mui/x-data-grid 8.13.1 → 8.14.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +204 -1
  2. package/components/cell/GridCell.js +1 -0
  3. package/esm/components/cell/GridCell.js +1 -0
  4. package/esm/hooks/core/useGridProps.d.ts +3 -5
  5. package/esm/hooks/core/useGridProps.js +5 -3
  6. package/esm/hooks/core/useGridVirtualizer.js +11 -9
  7. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -2
  8. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.js +34 -0
  9. package/esm/hooks/features/columnGrouping/useGridColumnGrouping.js +1 -34
  10. package/esm/hooks/features/dataSource/useGridDataSourceBase.js +8 -6
  11. package/esm/hooks/features/dataSource/utils.js +2 -4
  12. package/esm/hooks/features/rowSelection/useGridRowSelection.js +1 -1
  13. package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +1 -11
  14. package/esm/hooks/features/rows/useGridRows.js +4 -4
  15. package/esm/index.js +1 -1
  16. package/esm/internals/index.d.ts +1 -1
  17. package/esm/locales/itIT.js +103 -115
  18. package/esm/locales/ptBR.js +117 -128
  19. package/esm/models/gridStateCommunity.d.ts +2 -3
  20. package/hooks/core/useGridProps.d.ts +3 -5
  21. package/hooks/core/useGridProps.js +5 -3
  22. package/hooks/core/useGridVirtualizer.js +11 -9
  23. package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -2
  24. package/hooks/features/columnGrouping/gridColumnGroupsUtils.js +37 -1
  25. package/hooks/features/columnGrouping/useGridColumnGrouping.js +3 -36
  26. package/hooks/features/dataSource/useGridDataSourceBase.js +8 -6
  27. package/hooks/features/dataSource/utils.js +2 -4
  28. package/hooks/features/rowSelection/useGridRowSelection.js +1 -1
  29. package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -11
  30. package/hooks/features/rows/useGridRows.js +4 -4
  31. package/index.js +1 -1
  32. package/internals/index.d.ts +1 -1
  33. package/locales/itIT.js +103 -115
  34. package/locales/ptBR.js +117 -128
  35. package/models/gridStateCommunity.d.ts +2 -3
  36. package/package.json +5 -5
@@ -13,7 +13,7 @@ import type { GridRowReorderState } from "../hooks/features/rowReorder/gridRowRe
13
13
  * Some props are passed on the state to enable grid selectors to select
14
14
  * and react to them.
15
15
  */
16
- type GridStateProps = Pick<DataGridProcessedProps, 'getRowId' | 'listView'>;
16
+ export type GridStateProps = Pick<DataGridProcessedProps, 'getRowId' | 'listView' | 'isCellEditable'>;
17
17
  /**
18
18
  * The state of Data Grid.
19
19
  */
@@ -58,5 +58,4 @@ export interface GridInitialStateCommunity {
58
58
  top: number;
59
59
  left: number;
60
60
  };
61
- }
62
- export {};
61
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid",
3
- "version": "8.13.1",
3
+ "version": "8.14.1",
4
4
  "author": "MUI Team",
5
5
  "description": "The Community plan edition of the MUI X Data Grid components.",
6
6
  "license": "MIT",
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@babel/runtime": "^7.28.4",
41
- "@mui/utils": "^7.3.2",
41
+ "@mui/utils": "^7.3.3",
42
42
  "clsx": "^2.1.1",
43
43
  "prop-types": "^15.8.1",
44
- "use-sync-external-store": "^1.5.0",
45
- "@mui/x-internals": "8.13.1",
46
- "@mui/x-virtualizer": "0.2.2"
44
+ "use-sync-external-store": "^1.6.0",
45
+ "@mui/x-internals": "8.14.0",
46
+ "@mui/x-virtualizer": "0.2.4"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@emotion/react": "^11.9.0",