@mui/x-data-grid-pro 7.29.9 → 7.29.12

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 CHANGED
@@ -3,6 +3,89 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 7.29.12
7
+
8
+ _Nov 26, 2025_
9
+
10
+ We'd like to extend a big thank you to the 2 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🐞 Bugfixes
13
+
14
+ Special thanks go out to the community members for their valuable contributions:
15
+ @m2mathew
16
+
17
+ Following are all team members who have contributed to this release:
18
+ @arminmeh
19
+
20
+ ### Data Grid
21
+
22
+ #### `@mui/x-data-grid@7.29.12`
23
+
24
+ - [DataGrid] Avoid automatic scroll back to the focused element after it leaves the viewport (#20417) @arminmeh
25
+ - [DataGrid] Fix missing rows in the print export window (#20157) @m2mathew
26
+
27
+ #### `@mui/x-data-grid-pro@7.29.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
28
+
29
+ Same changes as in `@mui/x-data-grid@7.29.12`.
30
+
31
+ #### `@mui/x-data-grid-premium@7.29.12` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan")
32
+
33
+ Same changes as in `@mui/x-data-grid-pro@7.29.12`.
34
+
35
+ ## 7.29.11
36
+
37
+ _Nov 19, 2025_
38
+
39
+ We'd like to extend a big thank you to the 2 contributors who made this release possible. Here are some highlights ✨:
40
+
41
+ - 🐞 Bugfixes
42
+
43
+ Following are all team members who have contributed to this release:
44
+ @arminmeh, @mapache-salvaje
45
+
46
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
47
+
48
+ ### Data Grid
49
+
50
+ #### `@mui/x-data-grid@7.29.11`
51
+
52
+ - [DataGrid] Prevent Safari 26 error in the event handler (#20382) @arminmeh
53
+
54
+ #### `@mui/x-data-grid-pro@7.29.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
55
+
56
+ Same changes as in `@mui/x-data-grid@7.29.11`.
57
+
58
+ #### `@mui/x-data-grid-premium@7.29.11` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan")
59
+
60
+ Same changes as in `@mui/x-data-grid-pro@7.29.11`.
61
+
62
+ ### Docs
63
+
64
+ - [docs] Revise the Pro filter docs (#18815) @mapache-salvaje
65
+
66
+ ## v7.29.10
67
+
68
+ _Sep 25, 2025_
69
+
70
+ We'd like to extend a big thank you to the 1 contributor who made this release possible. Here are some highlights ✨:
71
+
72
+ - 🐞 Bugfixes
73
+
74
+ The following is the team member who have contributed to this release:
75
+ @flaviendelangle
76
+
77
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
78
+
79
+ ### Tree View
80
+
81
+ #### `@mui/x-tree-view@7.29.10`
82
+
83
+ - [tree view] Fix the expansion toggle on icon container with old DOM structure (#19546) @flaviendelangle
84
+
85
+ #### `@mui/x-tree-view-pro@7.29.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan")
86
+
87
+ Same changes as in `@mui/x-tree-view@7.29.10`.
88
+
6
89
  ## 7.29.9
7
90
 
8
91
  _Aug 7, 2025_
@@ -108,10 +108,9 @@ const GridHeaderFilterCell = forwardRef((props, ref) => {
108
108
  focusableElement = inputRef.current;
109
109
  }
110
110
  const elementToFocus = focusableElement || cellRef.current;
111
+ const scrollPosition = apiRef.current.getScrollPosition();
111
112
  elementToFocus?.focus();
112
- if (apiRef.current.columnHeadersContainerRef.current) {
113
- apiRef.current.columnHeadersContainerRef.current.scrollLeft = 0;
114
- }
113
+ apiRef.current.scroll(scrollPosition);
115
114
  }
116
115
  }, [InputComponent, apiRef, hasFocus, isEditing, isMenuOpen]);
117
116
  const onKeyDown = React.useCallback(event => {
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v7.29.9
2
+ * @mui/x-data-grid-pro v7.29.12
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -108,10 +108,9 @@ const GridHeaderFilterCell = forwardRef((props, ref) => {
108
108
  focusableElement = inputRef.current;
109
109
  }
110
110
  const elementToFocus = focusableElement || cellRef.current;
111
+ const scrollPosition = apiRef.current.getScrollPosition();
111
112
  elementToFocus?.focus();
112
- if (apiRef.current.columnHeadersContainerRef.current) {
113
- apiRef.current.columnHeadersContainerRef.current.scrollLeft = 0;
114
- }
113
+ apiRef.current.scroll(scrollPosition);
115
114
  }
116
115
  }, [InputComponent, apiRef, hasFocus, isEditing, isMenuOpen]);
117
116
  const onKeyDown = React.useCallback(event => {
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v7.29.9
2
+ * @mui/x-data-grid-pro v7.29.12
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTc1NDUxNzYwMDAwMA==";
3
+ const releaseInfo = "MTc2NDExMTYwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
@@ -116,10 +116,9 @@ const GridHeaderFilterCell = (0, _forwardRef.forwardRef)((props, ref) => {
116
116
  focusableElement = inputRef.current;
117
117
  }
118
118
  const elementToFocus = focusableElement || cellRef.current;
119
+ const scrollPosition = apiRef.current.getScrollPosition();
119
120
  elementToFocus?.focus();
120
- if (apiRef.current.columnHeadersContainerRef.current) {
121
- apiRef.current.columnHeadersContainerRef.current.scrollLeft = 0;
122
- }
121
+ apiRef.current.scroll(scrollPosition);
123
122
  }
124
123
  }, [InputComponent, apiRef, hasFocus, isEditing, isMenuOpen]);
125
124
  const onKeyDown = React.useCallback(event => {
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v7.29.9
2
+ * @mui/x-data-grid-pro v7.29.12
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.getReleaseInfo = void 0;
7
7
  var _utils = require("@mui/utils");
8
8
  const getReleaseInfo = () => {
9
- const releaseInfo = "MTc1NDUxNzYwMDAwMA==";
9
+ const releaseInfo = "MTc2NDExMTYwMDAwMA==";
10
10
  if (process.env.NODE_ENV !== 'production') {
11
11
  // A simple hack to set the value in the test environment (has no build step).
12
12
  // eslint-disable-next-line no-useless-concat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-pro",
3
- "version": "7.29.9",
3
+ "version": "7.29.12",
4
4
  "description": "The Pro plan edition of the Data Grid components (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -39,7 +39,7 @@
39
39
  "clsx": "^2.1.1",
40
40
  "prop-types": "^15.8.1",
41
41
  "reselect": "^5.1.1",
42
- "@mui/x-data-grid": "7.29.9",
42
+ "@mui/x-data-grid": "7.29.12",
43
43
  "@mui/x-internals": "7.29.0",
44
44
  "@mui/x-license": "7.29.1"
45
45
  },
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTc1NDUxNzYwMDAwMA==";
3
+ const releaseInfo = "MTc2NDExMTYwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat