@mui/x-data-grid 9.5.0 → 9.6.0

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 (168) hide show
  1. package/CHANGELOG.md +151 -0
  2. package/DataGrid/DataGrid.js +74 -13
  3. package/DataGrid/DataGrid.mjs +74 -13
  4. package/components/GridColumnHeaders.js +1 -1
  5. package/components/GridColumnHeaders.mjs +1 -1
  6. package/components/GridColumnUnsortedIcon.js +1 -1
  7. package/components/GridColumnUnsortedIcon.mjs +1 -1
  8. package/components/GridFooter.js +1 -1
  9. package/components/GridFooter.mjs +1 -1
  10. package/components/GridLoadingOverlay.js +1 -1
  11. package/components/GridLoadingOverlay.mjs +1 -1
  12. package/components/GridNoColumnsOverlay.js +1 -1
  13. package/components/GridNoColumnsOverlay.mjs +1 -1
  14. package/components/GridNoRowsOverlay.js +1 -1
  15. package/components/GridNoRowsOverlay.mjs +1 -1
  16. package/components/GridRow.js +1 -1
  17. package/components/GridRow.mjs +1 -1
  18. package/components/GridRowCount.js +1 -1
  19. package/components/GridRowCount.mjs +1 -1
  20. package/components/GridRowDragAndDropOverlay.d.mts +1 -1
  21. package/components/GridRowDragAndDropOverlay.d.ts +1 -1
  22. package/components/GridSelectedRowCount.js +1 -1
  23. package/components/GridSelectedRowCount.mjs +1 -1
  24. package/components/GridShadowScrollArea.js +1 -1
  25. package/components/GridShadowScrollArea.mjs +1 -1
  26. package/components/cell/GridActionsCell.js +83 -3
  27. package/components/cell/GridActionsCell.mjs +83 -3
  28. package/components/cell/GridActionsCellItem.js +75 -1
  29. package/components/cell/GridActionsCellItem.mjs +74 -0
  30. package/components/cell/GridBooleanCell.js +1 -1
  31. package/components/cell/GridBooleanCell.mjs +1 -1
  32. package/components/cell/GridCell.js +1 -1
  33. package/components/cell/GridCell.mjs +1 -1
  34. package/components/cell/GridEditBooleanCell.js +1 -1
  35. package/components/cell/GridEditBooleanCell.mjs +1 -1
  36. package/components/cell/GridEditDateCell.js +1 -1
  37. package/components/cell/GridEditDateCell.mjs +1 -1
  38. package/components/cell/GridEditInputCell.js +68 -0
  39. package/components/cell/GridEditInputCell.mjs +68 -0
  40. package/components/cell/GridEditLongTextCell.d.mts +3 -0
  41. package/components/cell/GridEditLongTextCell.d.ts +3 -0
  42. package/components/cell/GridEditLongTextCell.js +141 -0
  43. package/components/cell/GridEditLongTextCell.mjs +141 -0
  44. package/components/cell/GridEditSingleSelectCell.js +1 -1
  45. package/components/cell/GridEditSingleSelectCell.mjs +1 -1
  46. package/components/cell/GridLongTextCell.d.mts +3 -0
  47. package/components/cell/GridLongTextCell.d.ts +3 -0
  48. package/components/cell/GridLongTextCell.js +66 -0
  49. package/components/cell/GridLongTextCell.mjs +66 -0
  50. package/components/cell/GridSkeletonCell.js +3 -2
  51. package/components/cell/GridSkeletonCell.mjs +3 -2
  52. package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +2 -2
  53. package/components/columnHeaders/GridColumnHeaderFilterIconButton.mjs +2 -2
  54. package/components/columnHeaders/GridColumnHeaderItem.js +1 -1
  55. package/components/columnHeaders/GridColumnHeaderItem.mjs +1 -1
  56. package/components/columnHeaders/GridColumnHeaderSeparator.js +1 -1
  57. package/components/columnHeaders/GridColumnHeaderSeparator.mjs +1 -1
  58. package/components/columnHeaders/GridColumnHeaderSortIcon.js +1 -1
  59. package/components/columnHeaders/GridColumnHeaderSortIcon.mjs +1 -1
  60. package/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  61. package/components/columnHeaders/GridColumnHeaderTitle.mjs +1 -1
  62. package/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
  63. package/components/columnSelection/GridCellCheckboxRenderer.mjs +1 -1
  64. package/components/columnSelection/GridHeaderCheckbox.js +1 -1
  65. package/components/columnSelection/GridHeaderCheckbox.mjs +1 -1
  66. package/components/columnSelection/GridRowCheckbox.js +1 -1
  67. package/components/columnSelection/GridRowCheckbox.mjs +1 -1
  68. package/components/columnsManagement/GridColumnsManagement.js +1 -1
  69. package/components/columnsManagement/GridColumnsManagement.mjs +1 -1
  70. package/components/columnsPanel/ColumnsPanelTrigger.js +1 -1
  71. package/components/columnsPanel/ColumnsPanelTrigger.mjs +1 -1
  72. package/components/containers/GridFooterContainer.js +1 -1
  73. package/components/containers/GridFooterContainer.mjs +1 -1
  74. package/components/containers/GridOverlay.js +1 -1
  75. package/components/containers/GridOverlay.mjs +1 -1
  76. package/components/containers/GridRoot.js +1 -1
  77. package/components/containers/GridRoot.mjs +1 -1
  78. package/components/containers/GridRootStyles.js +3 -2
  79. package/components/containers/GridRootStyles.mjs +3 -2
  80. package/components/containers/GridToolbarContainer.js +1 -1
  81. package/components/containers/GridToolbarContainer.mjs +1 -1
  82. package/components/export/ExportCsv.js +1 -1
  83. package/components/export/ExportCsv.mjs +1 -1
  84. package/components/export/ExportPrint.js +1 -1
  85. package/components/export/ExportPrint.mjs +1 -1
  86. package/components/filterPanel/FilterPanelTrigger.js +1 -1
  87. package/components/filterPanel/FilterPanelTrigger.mjs +1 -1
  88. package/components/menu/GridMenu.js +1 -1
  89. package/components/menu/GridMenu.mjs +1 -1
  90. package/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
  91. package/components/menu/columnMenu/GridColumnHeaderMenu.mjs +1 -1
  92. package/components/menu/columnMenu/GridColumnMenu.js +2 -2
  93. package/components/menu/columnMenu/GridColumnMenu.mjs +2 -2
  94. package/components/menu/columnMenu/GridColumnMenuContainer.js +1 -1
  95. package/components/menu/columnMenu/GridColumnMenuContainer.mjs +1 -1
  96. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +1 -1
  97. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.mjs +1 -1
  98. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +1 -1
  99. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.mjs +1 -1
  100. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +1 -1
  101. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.mjs +1 -1
  102. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +1 -1
  103. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.mjs +1 -1
  104. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +1 -1
  105. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.mjs +1 -1
  106. package/components/panel/GridPanel.js +1 -1
  107. package/components/panel/GridPanel.mjs +1 -1
  108. package/components/panel/GridPanelContent.js +1 -1
  109. package/components/panel/GridPanelContent.mjs +1 -1
  110. package/components/panel/GridPanelFooter.js +1 -1
  111. package/components/panel/GridPanelFooter.mjs +1 -1
  112. package/components/panel/GridPanelHeader.js +1 -1
  113. package/components/panel/GridPanelHeader.mjs +1 -1
  114. package/components/panel/filterPanel/GridFilterForm.js +1 -1
  115. package/components/panel/filterPanel/GridFilterForm.mjs +1 -1
  116. package/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
  117. package/components/panel/filterPanel/GridFilterInputBoolean.mjs +1 -1
  118. package/components/panel/filterPanel/GridFilterInputDate.js +1 -1
  119. package/components/panel/filterPanel/GridFilterInputDate.mjs +1 -1
  120. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +1 -1
  121. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.mjs +1 -1
  122. package/components/panel/filterPanel/GridFilterInputMultipleValue.js +1 -1
  123. package/components/panel/filterPanel/GridFilterInputMultipleValue.mjs +1 -1
  124. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +1 -1
  125. package/components/panel/filterPanel/GridFilterInputSingleSelect.mjs +1 -1
  126. package/components/panel/filterPanel/GridFilterInputValue.js +1 -1
  127. package/components/panel/filterPanel/GridFilterInputValue.mjs +1 -1
  128. package/components/panel/filterPanel/GridFilterPanel.js +1 -1
  129. package/components/panel/filterPanel/GridFilterPanel.mjs +1 -1
  130. package/components/quickFilter/QuickFilter.js +1 -1
  131. package/components/quickFilter/QuickFilter.mjs +1 -1
  132. package/components/quickFilter/QuickFilterClear.js +1 -1
  133. package/components/quickFilter/QuickFilterClear.mjs +1 -1
  134. package/components/quickFilter/QuickFilterControl.js +1 -1
  135. package/components/quickFilter/QuickFilterControl.mjs +1 -1
  136. package/components/quickFilter/QuickFilterTrigger.js +1 -1
  137. package/components/quickFilter/QuickFilterTrigger.mjs +1 -1
  138. package/components/toolbar/GridToolbar.js +1 -1
  139. package/components/toolbar/GridToolbar.mjs +1 -1
  140. package/components/toolbar/GridToolbarColumnsButton.js +1 -1
  141. package/components/toolbar/GridToolbarColumnsButton.mjs +1 -1
  142. package/components/toolbar/GridToolbarDensitySelector.js +1 -1
  143. package/components/toolbar/GridToolbarDensitySelector.mjs +1 -1
  144. package/components/toolbar/GridToolbarExport.js +3 -3
  145. package/components/toolbar/GridToolbarExport.mjs +3 -3
  146. package/components/toolbar/GridToolbarExportContainer.js +1 -1
  147. package/components/toolbar/GridToolbarExportContainer.mjs +1 -1
  148. package/components/toolbar/GridToolbarFilterButton.js +1 -1
  149. package/components/toolbar/GridToolbarFilterButton.mjs +1 -1
  150. package/components/toolbar/GridToolbarQuickFilter.js +1 -1
  151. package/components/toolbar/GridToolbarQuickFilter.mjs +1 -1
  152. package/components/toolbarV8/GridToolbar.js +8 -3
  153. package/components/toolbarV8/GridToolbar.mjs +8 -3
  154. package/components/toolbarV8/Toolbar.js +1 -1
  155. package/components/toolbarV8/Toolbar.mjs +1 -1
  156. package/components/toolbarV8/ToolbarButton.js +1 -1
  157. package/components/toolbarV8/ToolbarButton.mjs +1 -1
  158. package/components/virtualization/GridVirtualScrollbar.js +8 -1
  159. package/components/virtualization/GridVirtualScrollbar.mjs +8 -1
  160. package/components/virtualization/GridVirtualScroller.js +12 -0
  161. package/components/virtualization/GridVirtualScroller.mjs +12 -0
  162. package/hooks/utils/useGridSelector.js +1 -1
  163. package/hooks/utils/useGridSelector.mjs +1 -1
  164. package/index.js +1 -1
  165. package/index.mjs +1 -1
  166. package/material/index.js +5 -3
  167. package/material/index.mjs +5 -3
  168. package/package.json +7 -4
@@ -195,7 +195,7 @@ const Toolbar = forwardRef(function Toolbar(props, ref) {
195
195
  });
196
196
  });
197
197
  if (process.env.NODE_ENV !== "production") Toolbar.displayName = "Toolbar";
198
- process.env.NODE_ENV !== "production" ? Toolbar.propTypes = {
198
+ process.env.NODE_ENV !== "production" ? Toolbar.propTypes /* remove-proptypes */ = {
199
199
  // ----------------------------- Warning --------------------------------
200
200
  // | These PropTypes are generated from the TypeScript type definitions |
201
201
  // | To update them edit the TypeScript types and run "pnpm proptypes" |
@@ -93,7 +93,7 @@ const ToolbarButton = exports.ToolbarButton = (0, _forwardRef.forwardRef)(functi
93
93
  });
94
94
  });
95
95
  if (process.env.NODE_ENV !== "production") ToolbarButton.displayName = "ToolbarButton";
96
- process.env.NODE_ENV !== "production" ? ToolbarButton.propTypes = {
96
+ process.env.NODE_ENV !== "production" ? ToolbarButton.propTypes /* remove-proptypes */ = {
97
97
  // ----------------------------- Warning --------------------------------
98
98
  // | These PropTypes are generated from the TypeScript type definitions |
99
99
  // | To update them edit the TypeScript types and run "pnpm proptypes" |
@@ -86,7 +86,7 @@ const ToolbarButton = forwardRef(function ToolbarButton(props, ref) {
86
86
  });
87
87
  });
88
88
  if (process.env.NODE_ENV !== "production") ToolbarButton.displayName = "ToolbarButton";
89
- process.env.NODE_ENV !== "production" ? ToolbarButton.propTypes = {
89
+ process.env.NODE_ENV !== "production" ? ToolbarButton.propTypes /* remove-proptypes */ = {
90
90
  // ----------------------------- Warning --------------------------------
91
91
  // | These PropTypes are generated from the TypeScript type definitions |
92
92
  // | To update them edit the TypeScript types and run "pnpm proptypes" |
@@ -11,6 +11,7 @@ var React = _interopRequireWildcard(require("react"));
11
11
  var _styles = require("@mui/material/styles");
12
12
  var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
13
13
  var _forwardRef = require("@mui/x-internals/forwardRef");
14
+ var _platform = require("@mui/x-internals/platform");
14
15
  var _useGridPrivateApiContext = require("../../hooks/utils/useGridPrivateApiContext");
15
16
  var _hooks = require("../../hooks");
16
17
  var _useGridRootProps = require("../../hooks/utils/useGridRootProps");
@@ -42,7 +43,13 @@ const Scrollbar = (0, _styles.styled)('div', {
42
43
  '&:hover': {
43
44
  zIndex: 70
44
45
  },
45
- '--size': scrollbarSizeCssExpression
46
+ '--size': scrollbarSizeCssExpression,
47
+ // [iOS-scrollbar-swap]
48
+ // On iOS, native scrollbars of the `GridVirtualScroller` are shown instead,
49
+ // so hide these to avoid a duplicate thumb.
50
+ [_platform.iOSMediaQuery]: {
51
+ display: 'none'
52
+ }
46
53
  });
47
54
  const ScrollbarVertical = (0, _styles.styled)(Scrollbar, {
48
55
  slot: 'internal'
@@ -4,6 +4,7 @@ import * as React from 'react';
4
4
  import { styled } from '@mui/material/styles';
5
5
  import composeClasses from '@mui/utils/composeClasses';
6
6
  import { forwardRef } from '@mui/x-internals/forwardRef';
7
+ import { iOSMediaQuery } from '@mui/x-internals/platform';
7
8
  import { useGridPrivateApiContext } from "../../hooks/utils/useGridPrivateApiContext.mjs";
8
9
  import { gridDimensionsSelector, useGridSelector } from "../../hooks/index.mjs";
9
10
  import { useGridRootProps } from "../../hooks/utils/useGridRootProps.mjs";
@@ -35,7 +36,13 @@ const Scrollbar = styled('div', {
35
36
  '&:hover': {
36
37
  zIndex: 70
37
38
  },
38
- '--size': scrollbarSizeCssExpression
39
+ '--size': scrollbarSizeCssExpression,
40
+ // [iOS-scrollbar-swap]
41
+ // On iOS, native scrollbars of the `GridVirtualScroller` are shown instead,
42
+ // so hide these to avoid a duplicate thumb.
43
+ [iOSMediaQuery]: {
44
+ display: 'none'
45
+ }
39
46
  });
40
47
  const ScrollbarVertical = styled(Scrollbar, {
41
48
  slot: 'internal'
@@ -10,6 +10,7 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
10
10
  var React = _interopRequireWildcard(require("react"));
11
11
  var _styles = require("@mui/material/styles");
12
12
  var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
13
+ var _platform = require("@mui/x-internals/platform");
13
14
  var _clsx = _interopRequireDefault(require("clsx"));
14
15
  var _xVirtualizer = require("@mui/x-virtualizer");
15
16
  var _gridDimensionsSelectors = require("../../hooks/features/dimensions/gridDimensionsSelectors");
@@ -66,6 +67,17 @@ const Scroller = (0, _styles.styled)('div', {
66
67
  '&::-webkit-scrollbar': {
67
68
  display: 'none' /* Safari and Chrome */
68
69
  },
70
+ // [iOS-scrollbar-swap]
71
+ // On iOS, virtual scrollbars do not show a thumb unless the user scrolls the element directly:
72
+ // https://github.com/mui/mui-x/issues/22386
73
+ // So keep this scroller's own native scrollbars and hide the ones in `GridVirtualScrollbar`
74
+ // instead to avoid a duplicate thumb.
75
+ [_platform.iOSMediaQuery]: {
76
+ scrollbarWidth: 'auto',
77
+ '&::-webkit-scrollbar': {
78
+ display: 'block'
79
+ }
80
+ },
69
81
  '@media print': {
70
82
  overflow: 'hidden'
71
83
  },
@@ -2,6 +2,7 @@ import _extends from "@babel/runtime/helpers/esm/extends";
2
2
  import * as React from 'react';
3
3
  import { styled } from '@mui/material/styles';
4
4
  import composeClasses from '@mui/utils/composeClasses';
5
+ import { iOSMediaQuery } from '@mui/x-internals/platform';
5
6
  import clsx from 'clsx';
6
7
  import { LayoutDataGrid, Virtualization } from '@mui/x-virtualizer';
7
8
  import { gridHasBottomFillerSelector, gridHasScrollXSelector, gridHasScrollYSelector } from "../../hooks/features/dimensions/gridDimensionsSelectors.mjs";
@@ -58,6 +59,17 @@ const Scroller = styled('div', {
58
59
  '&::-webkit-scrollbar': {
59
60
  display: 'none' /* Safari and Chrome */
60
61
  },
62
+ // [iOS-scrollbar-swap]
63
+ // On iOS, virtual scrollbars do not show a thumb unless the user scrolls the element directly:
64
+ // https://github.com/mui/mui-x/issues/22386
65
+ // So keep this scroller's own native scrollbars and hide the ones in `GridVirtualScrollbar`
66
+ // instead to avoid a duplicate thumb.
67
+ [iOSMediaQuery]: {
68
+ scrollbarWidth: 'auto',
69
+ '&::-webkit-scrollbar': {
70
+ display: 'block'
71
+ }
72
+ },
61
73
  '@media print': {
62
74
  overflow: 'hidden'
63
75
  },
@@ -74,7 +74,7 @@ function useGridSelector(apiRef, selector, args = undefined, equals = defaultCom
74
74
  }
75
75
  }
76
76
  },
77
- // eslint-disable-next-line react-hooks/exhaustive-deps
77
+ // eslint-disable-next-line react-hooks/exhaustive-deps, react-hooks/use-memo
78
78
  EMPTY);
79
79
 
80
80
  // Why subscribe in an effect instead of during render: a component can render without
@@ -66,7 +66,7 @@ export function useGridSelector(apiRef, selector, args = undefined, equals = def
66
66
  }
67
67
  }
68
68
  },
69
- // eslint-disable-next-line react-hooks/exhaustive-deps
69
+ // eslint-disable-next-line react-hooks/exhaustive-deps, react-hooks/use-memo
70
70
  EMPTY);
71
71
 
72
72
  // Why subscribe in an effect instead of during render: a component can render without
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v9.5.0
2
+ * @mui/x-data-grid v9.6.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v9.5.0
2
+ * @mui/x-data-grid v9.6.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/material/index.js CHANGED
@@ -87,7 +87,7 @@ const _excluded = ["id", "label", "labelId", "material", "disabled", "multiple",
87
87
  _excluded21 = ["slotProps"],
88
88
  _excluded22 = ["slotProps", "material"],
89
89
  _excluded23 = ["material"],
90
- _excluded24 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
90
+ _excluded24 = ["open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
91
91
  _excluded25 = ["native"],
92
92
  _excluded26 = ["children", "value", "active"],
93
93
  _excluded27 = ["items", "value", "material"];
@@ -645,7 +645,7 @@ const transformOrigin = {
645
645
  'bottom-start': 'top left',
646
646
  'bottom-end': 'top right'
647
647
  };
648
- function BasePopper(props) {
648
+ const BasePopper = (0, _forwardRef.forwardRef)(function BasePopper(props, ref) {
649
649
  const {
650
650
  open,
651
651
  children,
@@ -720,9 +720,11 @@ function BasePopper(props) {
720
720
  placement: placement,
721
721
  modifiers: modifiers
722
722
  }, other, material, {
723
+ ref: ref,
723
724
  children: content
724
725
  }));
725
- }
726
+ });
727
+ if (process.env.NODE_ENV !== "production") BasePopper.displayName = "BasePopper";
726
728
  function wrappers(props, content) {
727
729
  return focusTrapWrapper(props, clickAwayWrapper(props, content));
728
730
  }
@@ -25,7 +25,7 @@ const _excluded = ["id", "label", "labelId", "material", "disabled", "multiple",
25
25
  _excluded21 = ["slotProps"],
26
26
  _excluded22 = ["slotProps", "material"],
27
27
  _excluded23 = ["material"],
28
- _excluded24 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
28
+ _excluded24 = ["open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
29
29
  _excluded25 = ["native"],
30
30
  _excluded26 = ["children", "value", "active"],
31
31
  _excluded27 = ["items", "value", "material"];
@@ -632,7 +632,7 @@ const transformOrigin = {
632
632
  'bottom-start': 'top left',
633
633
  'bottom-end': 'top right'
634
634
  };
635
- function BasePopper(props) {
635
+ const BasePopper = forwardRef(function BasePopper(props, ref) {
636
636
  const {
637
637
  open,
638
638
  children,
@@ -707,9 +707,11 @@ function BasePopper(props) {
707
707
  placement: placement,
708
708
  modifiers: modifiers
709
709
  }, other, material, {
710
+ ref: ref,
710
711
  children: content
711
712
  }));
712
- }
713
+ });
714
+ if (process.env.NODE_ENV !== "production") BasePopper.displayName = "BasePopper";
713
715
  function wrappers(props, content) {
714
716
  return focusTrapWrapper(props, clickAwayWrapper(props, content));
715
717
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid",
3
- "version": "9.5.0",
3
+ "version": "9.6.0",
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.29.7",
41
- "@mui/utils": "9.0.1",
41
+ "@mui/utils": "^9.0.1",
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-internals": "^9.1.0",
46
- "@mui/x-virtualizer": "9.0.0-alpha.8"
45
+ "@mui/x-internals": "^9.6.0",
46
+ "@mui/x-virtualizer": "9.0.0-alpha.10"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@emotion/react": "^11.9.0",
@@ -264,6 +264,9 @@
264
264
  }
265
265
  }
266
266
  },
267
+ "imports": {
268
+ "#formatErrorMessage": "@mui/x-internals/formatErrorMessage"
269
+ },
267
270
  "main": "./index.js",
268
271
  "types": "./index.d.ts"
269
272
  }