@mui/x-tree-view-pro 8.0.0-alpha.10 → 8.0.0-alpha.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.
Files changed (112) hide show
  1. package/CHANGELOG.md +267 -2
  2. package/RichTreeViewPro/RichTreeViewPro.d.ts +4 -4
  3. package/RichTreeViewPro/RichTreeViewPro.js +85 -86
  4. package/RichTreeViewPro/RichTreeViewPro.plugins.d.ts +2 -3
  5. package/RichTreeViewPro/RichTreeViewPro.plugins.js +9 -3
  6. package/RichTreeViewPro/RichTreeViewPro.types.d.ts +38 -38
  7. package/RichTreeViewPro/RichTreeViewPro.types.js +5 -1
  8. package/RichTreeViewPro/index.d.ts +3 -3
  9. package/RichTreeViewPro/index.js +27 -3
  10. package/RichTreeViewPro/richTreeViewProClasses.d.ts +3 -3
  11. package/RichTreeViewPro/richTreeViewProClasses.js +13 -5
  12. package/esm/RichTreeViewPro/RichTreeViewPro.d.ts +20 -0
  13. package/{node → esm}/RichTreeViewPro/RichTreeViewPro.js +79 -92
  14. package/esm/RichTreeViewPro/RichTreeViewPro.plugins.d.ts +7 -0
  15. package/esm/RichTreeViewPro/RichTreeViewPro.plugins.js +5 -0
  16. package/esm/RichTreeViewPro/RichTreeViewPro.types.d.ts +51 -0
  17. package/esm/RichTreeViewPro/RichTreeViewPro.types.js +1 -0
  18. package/esm/RichTreeViewPro/index.d.ts +3 -0
  19. package/esm/RichTreeViewPro/index.js +3 -0
  20. package/esm/RichTreeViewPro/richTreeViewProClasses.d.ts +7 -0
  21. package/esm/RichTreeViewPro/richTreeViewProClasses.js +6 -0
  22. package/esm/index.d.ts +12 -0
  23. package/esm/index.js +22 -0
  24. package/esm/internals/index.d.ts +1 -0
  25. package/esm/internals/index.js +1 -0
  26. package/esm/internals/plugins/useTreeViewItemsReordering/index.d.ts +2 -0
  27. package/esm/internals/plugins/useTreeViewItemsReordering/index.js +1 -0
  28. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.d.ts +3 -0
  29. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.itemPlugin.d.ts +3 -0
  30. package/{node → esm}/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.itemPlugin.js +10 -19
  31. package/{node → esm}/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.js +29 -48
  32. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.d.ts +179 -0
  33. package/{node → esm}/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.js +4 -11
  34. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.d.ts +132 -0
  35. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.js +1 -0
  36. package/esm/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.d.ts +37 -0
  37. package/{node → esm}/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.js +21 -31
  38. package/esm/internals/utils/releaseInfo.d.ts +1 -0
  39. package/esm/internals/utils/releaseInfo.js +13 -0
  40. package/esm/internals/zero-styled/index.d.ts +3 -0
  41. package/esm/internals/zero-styled/index.js +7 -0
  42. package/esm/package.json +1 -0
  43. package/esm/themeAugmentation/components.d.ts +11 -0
  44. package/esm/themeAugmentation/index.d.ts +3 -0
  45. package/esm/themeAugmentation/index.js +0 -0
  46. package/esm/themeAugmentation/overrides.d.ts +12 -0
  47. package/esm/themeAugmentation/props.d.ts +10 -0
  48. package/index.d.ts +2 -2
  49. package/index.js +147 -15
  50. package/internals/index.d.ts +1 -1
  51. package/internals/index.js +12 -1
  52. package/internals/plugins/useTreeViewItemsReordering/index.d.ts +2 -2
  53. package/internals/plugins/useTreeViewItemsReordering/index.js +12 -1
  54. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.d.ts +2 -2
  55. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.itemPlugin.d.ts +1 -1
  56. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.itemPlugin.js +19 -10
  57. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.js +38 -39
  58. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.d.ts +134 -134
  59. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.js +11 -4
  60. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.d.ts +108 -117
  61. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.js +5 -1
  62. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.d.ts +28 -15
  63. package/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.js +31 -21
  64. package/internals/utils/releaseInfo.d.ts +1 -1
  65. package/internals/utils/releaseInfo.js +13 -5
  66. package/internals/zero-styled/index.d.ts +1 -1
  67. package/internals/zero-styled/index.js +14 -4
  68. package/modern/RichTreeViewPro/RichTreeViewPro.d.ts +20 -0
  69. package/modern/RichTreeViewPro/RichTreeViewPro.js +5 -12
  70. package/modern/RichTreeViewPro/RichTreeViewPro.plugins.d.ts +7 -0
  71. package/modern/RichTreeViewPro/RichTreeViewPro.types.d.ts +51 -0
  72. package/modern/RichTreeViewPro/index.d.ts +3 -0
  73. package/modern/RichTreeViewPro/richTreeViewProClasses.d.ts +7 -0
  74. package/modern/index.d.ts +12 -0
  75. package/modern/index.js +1 -1
  76. package/modern/internals/index.d.ts +1 -0
  77. package/modern/internals/plugins/useTreeViewItemsReordering/index.d.ts +2 -0
  78. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.d.ts +3 -0
  79. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.itemPlugin.d.ts +3 -0
  80. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.js +4 -14
  81. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.selectors.d.ts +179 -0
  82. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.d.ts +132 -0
  83. package/modern/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.utils.d.ts +37 -0
  84. package/modern/internals/utils/releaseInfo.d.ts +1 -0
  85. package/modern/internals/utils/releaseInfo.js +1 -1
  86. package/modern/internals/zero-styled/index.d.ts +3 -0
  87. package/modern/package.json +1 -0
  88. package/modern/themeAugmentation/components.d.ts +11 -0
  89. package/modern/themeAugmentation/index.d.ts +3 -0
  90. package/modern/themeAugmentation/overrides.d.ts +12 -0
  91. package/modern/themeAugmentation/props.d.ts +10 -0
  92. package/package.json +40 -10
  93. package/themeAugmentation/components.d.ts +1 -3
  94. package/themeAugmentation/index.d.ts +1 -1
  95. package/themeAugmentation/index.js +1 -0
  96. package/themeAugmentation/overrides.d.ts +2 -3
  97. package/themeAugmentation/props.d.ts +2 -4
  98. package/tsconfig.build.tsbuildinfo +1 -0
  99. package/RichTreeViewPro/package.json +0 -6
  100. package/internals/package.json +0 -6
  101. package/node/RichTreeViewPro/RichTreeViewPro.plugins.js +0 -11
  102. package/node/RichTreeViewPro/RichTreeViewPro.types.js +0 -5
  103. package/node/RichTreeViewPro/index.js +0 -27
  104. package/node/RichTreeViewPro/richTreeViewProClasses.js +0 -14
  105. package/node/index.js +0 -154
  106. package/node/internals/index.js +0 -12
  107. package/node/internals/plugins/useTreeViewItemsReordering/index.js +0 -12
  108. package/node/internals/plugins/useTreeViewItemsReordering/useTreeViewItemsReordering.types.js +0 -5
  109. package/node/internals/utils/releaseInfo.js +0 -21
  110. package/node/internals/zero-styled/index.js +0 -17
  111. package/node/themeAugmentation/index.js +0 -1
  112. package/themeAugmentation/package.json +0 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,270 @@
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.0.0-alpha.12
9
+
10
+ _Feb 17, 2025_
11
+
12
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
13
+
14
+ - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
15
+ - ⚡ Improve Data Grid Excel export serialization performance
16
+ - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
17
+ - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
18
+ - 🐞 Bugfixes
19
+
20
+ Special thanks go out to the community contributors who have helped make this release possible:
21
+ @Neonin, @nusr, and @pawelkula.
22
+ Following are all team members who have contributed to this release:
23
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk, and @mapache-salvaje.
24
+
25
+ ### Data Grid
26
+
27
+ #### Breaking changes
28
+
29
+ - The `main--hasSkeletonLoadingOverlay` class has been renamed to `main--hiddenContent` and is now also applied when the "No columns" overlay is displayed.
30
+
31
+ - The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state.
32
+
33
+ - The selectors signature has been updated. They are only accepting `apiRef` as a first argument and `instanceId` is no longer the third argument.
34
+
35
+ ```diff
36
+ -mySelector(state, arguments, instanceId)
37
+ +mySelector(apiRef, arguments)
38
+ ```
39
+
40
+ #### `@mui/x-data-grid@8.0.0-alpha.12`
41
+
42
+ - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf
43
+ - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh
44
+ - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii
45
+ - [DataGrid] Create the base Checkbox slot (#16445) @romgrk
46
+ - [DataGrid] Create the base Input slot (#16443) @romgrk
47
+ - [DataGrid] Create the base MenuList slot (#16481) @romgrk
48
+ - [DataGrid] Create the base Popper slot (#16362) @romgrk
49
+ - [DataGrid] Create the base Select slot (#16394) @romgrk
50
+ - [DataGrid] Create the base Switch slot (#16527) @romgrk
51
+ - [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi
52
+ - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk
53
+ - [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh
54
+ - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi
55
+ - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi
56
+ - [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr
57
+ - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula
58
+ - [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin
59
+
60
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
61
+
62
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.12`.
63
+
64
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.12` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
65
+
66
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus:
67
+
68
+ - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii
69
+ - [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi
70
+ - [DataGridPremium] Improve Excel export serialization performance (#16526) @cherniavskii
71
+ - [DataGridPremium] Namespace Excel export worker (#16020) @oliviertassinari
72
+
73
+ ### Date and Time Pickers
74
+
75
+ #### Breaking changes
76
+
77
+ - The `aria-label` on the `<Clock />` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale.
78
+
79
+ - The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `<LocalizationProvider />` component:
80
+
81
+ - `fullTime` - please use `fullTime12h` and `fullTime24h` instead:
82
+ ```diff
83
+ <LocalizationProvider
84
+ dateFormats={{
85
+ - fullTime: 'LT',
86
+ + fullTime12h: 'hh:mm A',
87
+ + fullTime24h: 'hh:mm',
88
+ }}
89
+ >
90
+ ```
91
+ - `keyboardDateTime` - please use `keyboardDateTime12h` and `keyboardDateTime24h` instead:
92
+ ```diff
93
+ <LocalizationProvider
94
+ dateFormats={{
95
+ - keyboardDateTime: 'DD.MM.YYYY | LT',
96
+ + keyboardDateTime12h: 'DD.MM.YYYY | hh:mm A',
97
+ + keyboardDateTime24h: 'DD.MM.YYYY | hh:mm',
98
+ }}
99
+ >
100
+ ```
101
+
102
+ #### `@mui/x-date-pickers@8.0.0-alpha.12`
103
+
104
+ - [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy
105
+ - [pickers] Remove unused adapter formats (#16522) @LukasTy
106
+
107
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
108
+
109
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
110
+
111
+ - [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy
112
+
113
+ ### Charts
114
+
115
+ #### Breaking changes
116
+
117
+ - The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
118
+
119
+ #### `@mui/x-charts@8.0.0-alpha.12`
120
+
121
+ - [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior
122
+ - [charts] Add `test:performance:browser` script #16600 @bernardobelchior
123
+ - [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas
124
+ - [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas
125
+ - [charts] Document plugins for internal use (#16504) @JCQuintas
126
+ - [charts] Fix internal typo (#16524) @alexfauquette
127
+ - [charts] Fix type overloads (#16581) @JCQuintas
128
+ - [charts] Fix zoom filter regression (#16507) @alexfauquette
129
+ - [charts] Improve tooltip placement in mobile (#16553) @bernardobelchior
130
+ - [charts] Let the `useXxxSeries` support array of ids and document them (#15545) @JCQuintas
131
+ - [charts] Memoize some tooltip internals (#16564) @alexfauquette
132
+ - [charts] Move Voronoi handler in a dedicated plugin (#16470) @alexfauquette
133
+ - [charts] Performance tests: set license on setup. Update vitest minor version. (#16525) @bernardobelchior
134
+ - [charts] Propagate the axis scale to the `valueFormatter` (#16555) @alexfauquette
135
+ - [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior
136
+ - [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior
137
+
138
+ #### `@mui/x-charts-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
139
+
140
+ Same changes as in `@mui/x-charts@8.0.0-alpha.12`.
141
+
142
+ ### Tree View
143
+
144
+ #### `@mui/x-tree-view@8.0.0-alpha.12`
145
+
146
+ Internal changes.
147
+
148
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
149
+
150
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`.
151
+
152
+ ### Docs
153
+
154
+ - [docs] Add demo for Scatter Chart with linked points (#16505) @bernardobelchior
155
+ - [docs] Improve license installation page (#16403) @michelengelen
156
+ - [docs] Standardize getting started docs across all packages (#16302) @mapache-salvaje
157
+
158
+ ### Core
159
+
160
+ - [core] Update charts folder structure (#16471) @alexfauquette
161
+ - [code-infra] Bump @mui/monorepo (#16422) @LukasTy
162
+ - [code-infra] Fix lock file (#16562) @LukasTy
163
+ - [code-infra] Fix root package version (#16503) @JCQuintas
164
+ - [code-infra] Update internal packages to `next` releases (#16423) @LukasTy
165
+ - [code-infra] Update package layout for better ESM support (#14386) @Janpot
166
+ - [code-infra] Update peer dependencies for v8 (#16563) @Janpot
167
+
168
+ ## 8.0.0-alpha.11
169
+
170
+ _Feb 7, 2025_
171
+
172
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
173
+
174
+ - ⚡ Mount and resize performance improvements for the Data Grid
175
+
176
+ Special thanks go out to the community contributors who have helped make this release possible:
177
+ @lauri865.
178
+ Following are all team members who have contributed to this release:
179
+ @alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @Janpot, @KenanYusuf, @LukasTy, @MBilalShafi, @noraleonte, @romgrk.
180
+
181
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
182
+
183
+ ### Data Grid
184
+
185
+ #### Breaking changes
186
+
187
+ - `createUseGridApiEventHandler()` is not exported anymore.
188
+ - The `filteredRowsLookup` object of the filter state does not contain `true` values anymore. If the row is filtered out, the value is `false`. Otherwise, the row id is not present in the object.
189
+ This change only impacts you if you relied on `filteredRowsLookup` to get ids of filtered rows. In this case,use `gridDataRowIdsSelector` selector to get row ids and check `filteredRowsLookup` for `false` values:
190
+
191
+ ```diff
192
+ const filteredRowsLookup = gridFilteredRowsLookupSelector(apiRef);
193
+ -const filteredRowIds = Object.keys(filteredRowsLookup).filter((rowId) => filteredRowsLookup[rowId] === true);
194
+ +const rowIds = gridDataRowIdsSelector(apiRef);
195
+ +const filteredRowIds = rowIds.filter((rowId) => filteredRowsLookup[rowId] !== false);
196
+ ```
197
+
198
+ - The `visibleRowsLookup` state does not contain `true` values anymore. If the row is not visible, the value is `false`. Otherwise, the row id is not present in the object:
199
+
200
+ ```diff
201
+ const visibleRowsLookup = gridVisibleRowsLookupSelector(apiRef);
202
+ -const isRowVisible = visibleRowsLookup[rowId] === true;
203
+ +const isRowVisible = visibleRowsLookup[rowId] !== false;
204
+ ```
205
+
206
+ #### `@mui/x-data-grid@8.0.0-alpha.11`
207
+
208
+ - [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#15648) @lauri865
209
+ - [DataGrid] Fix loading overlay not in sync with scroll (#16437) @MBilalShafi
210
+ - [DataGrid] Refactor: remove material `MenuList` import (#16444) @romgrk
211
+ - [DataGrid] Refactor: simplify `useGridApiEventHandler()` (#16479) @romgrk
212
+
213
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
214
+
215
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.11`, plus:
216
+
217
+ - [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16441) @arminmeh
218
+
219
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.11` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
220
+
221
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.11`, plus:
222
+
223
+ - [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16466) @KenanYusuf
224
+
225
+ ### Date and Time Pickers
226
+
227
+ #### `@mui/x-date-pickers@8.0.0-alpha.11`
228
+
229
+ Internal changes.
230
+
231
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
232
+
233
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.11`, plus:
234
+
235
+ - [DateRangeCalendar] Support arrow navigation with multiple months rendered (#16363) @flaviendelangle
236
+ - [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16455) @LukasTy
237
+ - [DateRangePicker] Fix vertical alignment for multi input fields (#16489) @noraleonte
238
+
239
+ ### Charts
240
+
241
+ #### `@mui/x-charts@8.0.0-alpha.11`
242
+
243
+ - [charts] Add `color` prop to `Sparkline` and deprecate `colors` (#16477) @bernardobelchior
244
+ - [charts] Make typescript more flexible about plugins and their params (#16478) @alexfauquette
245
+ - [charts] Remove component for axis event listener (#16314) @alexfauquette
246
+
247
+ #### `@mui/x-charts-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
248
+
249
+ Same changes as in `@mui/x-charts@8.0.0-alpha.11`.
250
+
251
+ ### Tree View
252
+
253
+ #### `@mui/x-tree-view@8.0.0-alpha.11`
254
+
255
+ Internal changes.
256
+
257
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
258
+
259
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.11`.
260
+
261
+ ### Docs
262
+
263
+ - [docs] Update charts colors default value (#16484) @bernardobelchior
264
+
265
+ ### Core
266
+
267
+ - [core] Fix corepack and pnpm installation in CircleCI (#16434) @flaviendelangle
268
+ - [code-infra] Update monorepo (#16112) @Janpot
269
+ - [test] Avoid test warning when running on React 18 (#16486) @LukasTy
270
+ - [test] Disable `react-transition-group` transitions in unit testing (#16288) @lauri865
271
+
8
272
  ## 8.0.0-alpha.10
9
273
 
10
274
  _Jan 30, 2025_
@@ -50,6 +314,7 @@ Following are all team members who have contributed to this release:
50
314
  + },
51
315
  });
52
316
  ```
317
+
53
318
  - The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
54
319
  - Return type of the `useGridApiRef()` hook and the type of `apiRef` prop are updated to explicitly include the possibilty of `null`. In addition to this, `useGridApiRef()` returns a reference that is initialized with `null` instead of `{}`.
55
320
 
@@ -91,7 +356,7 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
91
356
 
92
357
  #### Breaking changes
93
358
 
94
- - The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
359
+ - The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
95
360
  - The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
96
361
 
97
362
  #### `@mui/x-date-pickers@8.0.0-alpha.10`
@@ -111,7 +376,7 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
111
376
 
112
377
  - Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
113
378
  This is to align with the CSS values and reflect the RTL ability of the legend component.
114
- - The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
379
+ - The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
115
380
  - The `id` property is now optional on the `Pie` and `Scatter` data types.
116
381
 
117
382
  #### `@mui/x-charts@8.0.0-alpha.10`
@@ -1,10 +1,10 @@
1
1
  import * as React from 'react';
2
- import { RichTreeViewProProps } from './RichTreeViewPro.types';
2
+ import { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
3
3
  export declare const RichTreeViewProRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
4
- ownerState: RichTreeViewProProps<any, any>;
4
+ ownerState: RichTreeViewProProps<any, any>;
5
5
  }, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, keyof React.ClassAttributes<HTMLUListElement> | keyof React.HTMLAttributes<HTMLUListElement>>, {}>;
6
6
  type RichTreeViewProComponent = (<R extends {}, Multiple extends boolean | undefined = undefined>(props: RichTreeViewProProps<R, Multiple> & React.RefAttributes<HTMLUListElement>) => React.JSX.Element) & {
7
- propTypes?: any;
7
+ propTypes?: any;
8
8
  };
9
9
  /**
10
10
  *
@@ -17,4 +17,4 @@ type RichTreeViewProComponent = (<R extends {}, Multiple extends boolean | undef
17
17
  * - [RichTreeView API](https://mui.com/x/api/tree-view/rich-tree-view/)
18
18
  */
19
19
  declare const RichTreeViewPro: RichTreeViewProComponent;
20
- export { RichTreeViewPro };
20
+ export { RichTreeViewPro };