@mui/x-virtualizer 0.3.2 → 0.3.3

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
@@ -5,6 +5,90 @@
5
5
  All notable changes to this project will be documented in this file.
6
6
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
7
 
8
+ ## 8.26.0
9
+
10
+ _Jan 22, 2026_
11
+
12
+ We'd like to extend a big thank you to the 6 contributors who made this release possible. Here are some highlights ✨:
13
+
14
+ - 🔄 Data Grid now supports undo and redo actions. See the [Undo and redo](https://mui.com/x/react-data-grid/undo-redo/) page for details about out-of-the-box support and customization options.
15
+ - 🐞 Bugfixes
16
+
17
+ Special thanks go out to these community members for their valuable contributions:
18
+ @jhe-iqbis
19
+
20
+ The following team members contributed to this release:
21
+ @arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @romgrk
22
+
23
+ ### Data Grid
24
+
25
+ #### `@mui/x-data-grid@8.26.0`
26
+
27
+ - [DataGrid] Add `onMenuOpen()` and `onMenuClose()` event handlers in `GridActionsCell` (#20994) @jhe-iqbis
28
+ - [DataGrid] Fix scroll position when virtualization is disabled (#20958) @romgrk
29
+
30
+ #### `@mui/x-data-grid-pro@8.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
31
+
32
+ Same changes as in `@mui/x-data-grid@8.26.0`.
33
+
34
+ #### `@mui/x-data-grid-premium@8.26.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
35
+
36
+ Same changes as in `@mui/x-data-grid-pro@8.26.0`, plus:
37
+
38
+ - [DataGridPremium] Undo and redo (#20993) @arminmeh
39
+
40
+ ### Date and Time Pickers
41
+
42
+ #### `@mui/x-date-pickers@8.26.0`
43
+
44
+ Internal changes.
45
+
46
+ #### `@mui/x-date-pickers-pro@8.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
47
+
48
+ Same changes as in `@mui/x-date-pickers@8.26.0`.
49
+
50
+ ### Charts
51
+
52
+ #### `@mui/x-charts@8.26.0`
53
+
54
+ Internal changes.
55
+
56
+ #### `@mui/x-charts-pro@8.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
57
+
58
+ Same changes as in `@mui/x-charts@8.26.0`.
59
+
60
+ #### `@mui/x-charts-premium@8.26.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
61
+
62
+ Same changes as in `@mui/x-charts-pro@8.26.0`.
63
+
64
+ ### Tree View
65
+
66
+ #### `@mui/x-tree-view@8.26.0`
67
+
68
+ - [tree view] Fix `props.id` not passed to the root element (#20976) @flaviendelangle
69
+
70
+ #### `@mui/x-tree-view-pro@8.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
71
+
72
+ Same changes as in `@mui/x-tree-view@8.26.0`.
73
+
74
+ ### Codemod
75
+
76
+ #### `@mui/x-codemod@8.26.0`
77
+
78
+ Internal changes.
79
+
80
+ ### Docs
81
+
82
+ - [docs] Recipe for lazy loading DataGrid's detail panels with auto height (#20995) @arminmeh
83
+
84
+ ### Core
85
+
86
+ - [code-infra] Update `master` to `v8` references (#20864) @JCQuintas
87
+ - [code-infra] Update v8 branch tags (#20926) @JCQuintas
88
+ - [code-infra] V8 changes in master (#20919) @JCQuintas
89
+ - [code-infra] Allow user to select target branch if it exists for current major (#21005) @JCQuintas
90
+ - [internal] Set up shared instructions for coding agents (#21000) @cherniavskii
91
+
8
92
  ## 8.25.0
9
93
 
10
94
  <!-- generated comparing v8.24.0..master -->
@@ -208,6 +208,12 @@ function useVirtualization(store, params, api) {
208
208
  updateRenderContext(nextRenderContext);
209
209
  });
210
210
  scrollTimeout.start(1000, triggerUpdateRenderContext);
211
+ } else {
212
+ store.set('virtualization', _extends({}, store.state.virtualization, {
213
+ scrollPosition: {
214
+ current: _extends({}, scrollPosition.current)
215
+ }
216
+ }));
211
217
  }
212
218
  return nextRenderContext;
213
219
  });
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-virtualizer v0.3.2
2
+ * @mui/x-virtualizer v0.3.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -217,6 +217,12 @@ function useVirtualization(store, params, api) {
217
217
  updateRenderContext(nextRenderContext);
218
218
  });
219
219
  scrollTimeout.start(1000, triggerUpdateRenderContext);
220
+ } else {
221
+ store.set('virtualization', (0, _extends2.default)({}, store.state.virtualization, {
222
+ scrollPosition: {
223
+ current: (0, _extends2.default)({}, scrollPosition.current)
224
+ }
225
+ }));
220
226
  }
221
227
  return nextRenderContext;
222
228
  });
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-virtualizer v0.3.2
2
+ * @mui/x-virtualizer v0.3.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-virtualizer",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "author": "MUI Team",
5
5
  "description": "MUI virtualization library",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.28.4",
31
31
  "@mui/utils": "^7.3.5",
32
- "@mui/x-internals": "8.25.0"
32
+ "@mui/x-internals": "8.26.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",