@mui/x-data-grid 7.29.4 → 7.29.5
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 +22 -0
- package/hooks/features/rows/useGridRowsMeta.js +4 -1
- package/index.js +1 -1
- package/modern/hooks/features/rows/useGridRowsMeta.js +4 -1
- package/modern/index.js +1 -1
- package/node/hooks/features/rows/useGridRowsMeta.js +4 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.5
|
|
7
|
+
|
|
8
|
+
_May 29, 2025_
|
|
9
|
+
|
|
10
|
+
We'd like to extend a big thank you to @cherniavskii, who made this release possible.
|
|
11
|
+
|
|
12
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
13
|
+
|
|
14
|
+
### Data Grid
|
|
15
|
+
|
|
16
|
+
#### `@mui/x-data-grid@7.29.5`
|
|
17
|
+
|
|
18
|
+
- [DataGrid] Avoid ResizeObserver loop error (@cherniavskii) (#18005) @github-actions[bot]
|
|
19
|
+
|
|
20
|
+
#### `@mui/x-data-grid-pro@7.29.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
21
|
+
|
|
22
|
+
Same changes as in `@mui/x-data-grid@7.29.5`.
|
|
23
|
+
|
|
24
|
+
#### `@mui/x-data-grid-premium@7.29.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
25
|
+
|
|
26
|
+
Same changes as in `@mui/x-data-grid-pro@7.29.5`.
|
|
27
|
+
|
|
6
28
|
## 7.29.4
|
|
7
29
|
|
|
8
30
|
_May 22, 2025_
|
|
@@ -194,7 +194,10 @@ export const useGridRowsMeta = (apiRef, props) => {
|
|
|
194
194
|
apiRef.current.unstable_storeRowHeightMeasurement(rowId, height);
|
|
195
195
|
}
|
|
196
196
|
if (!isHeightMetaValid.current) {
|
|
197
|
-
|
|
197
|
+
// Avoids "ResizeObserver loop completed with undelivered notifications" error
|
|
198
|
+
requestAnimationFrame(() => {
|
|
199
|
+
apiRef.current.requestPipeProcessorsApplication('rowHeight');
|
|
200
|
+
});
|
|
198
201
|
}
|
|
199
202
|
})).current;
|
|
200
203
|
const observeRowHeight = (element, rowId) => {
|
package/index.js
CHANGED
|
@@ -194,7 +194,10 @@ export const useGridRowsMeta = (apiRef, props) => {
|
|
|
194
194
|
apiRef.current.unstable_storeRowHeightMeasurement(rowId, height);
|
|
195
195
|
}
|
|
196
196
|
if (!isHeightMetaValid.current) {
|
|
197
|
-
|
|
197
|
+
// Avoids "ResizeObserver loop completed with undelivered notifications" error
|
|
198
|
+
requestAnimationFrame(() => {
|
|
199
|
+
apiRef.current.requestPipeProcessorsApplication('rowHeight');
|
|
200
|
+
});
|
|
198
201
|
}
|
|
199
202
|
})).current;
|
|
200
203
|
const observeRowHeight = (element, rowId) => {
|
package/modern/index.js
CHANGED
|
@@ -203,7 +203,10 @@ const useGridRowsMeta = (apiRef, props) => {
|
|
|
203
203
|
apiRef.current.unstable_storeRowHeightMeasurement(rowId, height);
|
|
204
204
|
}
|
|
205
205
|
if (!isHeightMetaValid.current) {
|
|
206
|
-
|
|
206
|
+
// Avoids "ResizeObserver loop completed with undelivered notifications" error
|
|
207
|
+
requestAnimationFrame(() => {
|
|
208
|
+
apiRef.current.requestPipeProcessorsApplication('rowHeight');
|
|
209
|
+
});
|
|
207
210
|
}
|
|
208
211
|
})).current;
|
|
209
212
|
const observeRowHeight = (element, rowId) => {
|
package/node/index.js
CHANGED