@mui/x-tree-view 8.27.0 → 8.27.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.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,59 @@
|
|
|
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
|
+
## v8.27.1
|
|
9
|
+
|
|
10
|
+
<!-- generated comparing v8.27.0..v8.x -->
|
|
11
|
+
|
|
12
|
+
_Feb 13, 2026_
|
|
13
|
+
|
|
14
|
+
We'd like to extend a big thank you to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
15
|
+
|
|
16
|
+
- 📝 CSS bundler support is no longer needed for the Data Grid
|
|
17
|
+
- 🐞 Bugfixes
|
|
18
|
+
|
|
19
|
+
Special thanks go out to these community members for their valuable contributions:
|
|
20
|
+
@sai6855
|
|
21
|
+
|
|
22
|
+
The following team members contributed to this release:
|
|
23
|
+
@arminmeh, @cherniavskii, @flaviendelangle, @mj12albert, @MBilalShafi
|
|
24
|
+
|
|
25
|
+
### Data Grid
|
|
26
|
+
|
|
27
|
+
#### `@mui/x-data-grid@8.27.1`
|
|
28
|
+
|
|
29
|
+
- [DataGrid] Hide column menu icon when there are no items (#21303) @MBilalShafi
|
|
30
|
+
- [DataGrid] Migrate styled imports and remove `index.css` (#21176) @MBilalShafi
|
|
31
|
+
- [DataGrid] Optimize `GridRootStyles` overrides resolver (#21251) @sai6855
|
|
32
|
+
|
|
33
|
+
#### `@mui/x-data-grid-pro@8.27.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
34
|
+
|
|
35
|
+
Same changes as in `@mui/x-data-grid@8.27.1`, plus:
|
|
36
|
+
|
|
37
|
+
- [DataGridPro] Fix column pinning issue with `restoreState` (#21305) @MBilalShafi
|
|
38
|
+
- [DataGridPro] Fix lazy loading params for page with one row (#21238) @MBilalShafi
|
|
39
|
+
- [DataGridPro] Properly extract parent path (#21301) @arminmeh
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-data-grid-premium@8.27.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
42
|
+
|
|
43
|
+
Same changes as in `@mui/x-data-grid-pro@8.27.1`, plus:
|
|
44
|
+
|
|
45
|
+
- [DataGridPremium] Fix aggregation display when `initialState` has both `sortModel` and `pinnedColumns` (#21152) @mj12albert
|
|
46
|
+
|
|
47
|
+
### Tree View
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-tree-view@8.27.1`
|
|
50
|
+
|
|
51
|
+
- [tree view] Fix `apiRef.current.setItemExpansion()` (#21095) @flaviendelangle
|
|
52
|
+
|
|
53
|
+
#### `@mui/x-tree-view-pro@8.27.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
54
|
+
|
|
55
|
+
Same changes as in `@mui/x-tree-view@8.27.1`.
|
|
56
|
+
|
|
57
|
+
### Core
|
|
58
|
+
|
|
59
|
+
- [internal] Add CLI for translation using LLM (#21299) @cherniavskii
|
|
60
|
+
|
|
8
61
|
## v8.27.0
|
|
9
62
|
|
|
10
63
|
_Feb 2, 2026_
|
package/esm/index.js
CHANGED
package/index.js
CHANGED
|
@@ -130,5 +130,5 @@ class MinimalTreeViewStore extends _store.Store {
|
|
|
130
130
|
}
|
|
131
131
|
exports.MinimalTreeViewStore = MinimalTreeViewStore;
|
|
132
132
|
function isSyntheticEvent(event) {
|
|
133
|
-
return event
|
|
133
|
+
return event?.isPropagationStopped !== undefined;
|
|
134
134
|
}
|