@mui/x-license 7.20.0 → 8.0.0-alpha.0
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 +321 -39
- package/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,290 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
> For full v7 changelog, please refer to the [v.7x branch](https://github.com/mui/mui-x/blob/v7.x/CHANGELOG.md).
|
|
4
|
+
|
|
3
5
|
All notable changes to this project will be documented in this file.
|
|
4
6
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
7
|
|
|
8
|
+
## 8.0.0-alpha.0
|
|
9
|
+
|
|
10
|
+
<img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
|
|
11
|
+
|
|
12
|
+
_Nov 14, 2024_
|
|
13
|
+
|
|
14
|
+
We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
|
|
15
|
+
|
|
16
|
+
- 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
17
|
+
- 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
|
|
18
|
+
- 🌍 Improve Polish (pl-PL) locale on the Data Grid component
|
|
19
|
+
- 🐞 Bugfixes
|
|
20
|
+
- 📚 Documentation improvements
|
|
21
|
+
|
|
22
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
23
|
+
@belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
|
|
24
|
+
Following are all team members who have contributed to this release:
|
|
25
|
+
@alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
|
|
26
|
+
|
|
27
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
28
|
+
|
|
29
|
+
### Data Grid
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid@8.0.0-alpha.0`
|
|
32
|
+
|
|
33
|
+
- [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
|
|
34
|
+
- [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
|
|
35
|
+
- [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
|
|
36
|
+
- [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
|
|
37
|
+
- [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
|
|
38
|
+
- [DataGrid] Remove more material imports (#15063) @romgrk
|
|
39
|
+
- [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
42
|
+
|
|
43
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
|
|
44
|
+
|
|
45
|
+
- [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
|
|
46
|
+
|
|
47
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
48
|
+
|
|
49
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
|
|
50
|
+
|
|
51
|
+
- [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
|
|
52
|
+
|
|
53
|
+
### Date and Time Pickers
|
|
54
|
+
|
|
55
|
+
#### Breaking changes
|
|
56
|
+
|
|
57
|
+
- The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
58
|
+
|
|
59
|
+
- Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
|
|
60
|
+
- Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
|
|
61
|
+
|
|
62
|
+
- Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
|
|
63
|
+
|
|
64
|
+
- The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
65
|
+
|
|
66
|
+
- `UseDateFieldComponentProps`
|
|
67
|
+
- `UseTimeFieldComponentProps`
|
|
68
|
+
- `UseDateTimeFieldComponentProps`
|
|
69
|
+
- `BaseSingleInputFieldProps`
|
|
70
|
+
- `BaseMultiInputFieldProps`
|
|
71
|
+
- `BasePickersTextFieldProps`
|
|
72
|
+
|
|
73
|
+
- The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
|
|
74
|
+
|
|
75
|
+
- Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
76
|
+
|
|
77
|
+
- The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
|
|
78
|
+
|
|
79
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.0`
|
|
80
|
+
|
|
81
|
+
- [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
|
|
82
|
+
- [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
|
|
83
|
+
- [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
|
|
84
|
+
- [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
|
|
85
|
+
- [pickers] Clean definition of validation props (#15198) @flaviendelangle
|
|
86
|
+
- [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
|
|
87
|
+
- [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
|
|
88
|
+
- [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
|
|
89
|
+
- [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
|
|
90
|
+
- [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
|
|
91
|
+
- [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
|
|
92
|
+
- [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
|
|
93
|
+
- [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
|
|
94
|
+
- [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
|
|
95
|
+
- [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
|
|
96
|
+
- [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
|
|
97
|
+
- [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
|
|
98
|
+
- [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
|
|
99
|
+
|
|
100
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
101
|
+
|
|
102
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
|
|
103
|
+
|
|
104
|
+
### Charts
|
|
105
|
+
|
|
106
|
+
#### Breaking changes
|
|
107
|
+
|
|
108
|
+
- The `legend` prop got removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
|
|
109
|
+
|
|
110
|
+
- The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
|
|
111
|
+
|
|
112
|
+
- Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
|
|
113
|
+
|
|
114
|
+
- The `highlighted` and `faded` properties of highlightScope were deprecated in favor of `highlight` and `fade`.
|
|
115
|
+
The deprecated ones are now removed.
|
|
116
|
+
- The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties got deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
|
|
117
|
+
|
|
118
|
+
- The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
|
|
119
|
+
|
|
120
|
+
#### `@mui/x-charts@8.0.0-alpha.0`
|
|
121
|
+
|
|
122
|
+
- [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
|
|
123
|
+
- [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
|
|
124
|
+
- [charts] Fix log scale with `null` data (#15337) @alexfauquette
|
|
125
|
+
- [charts] Fix tooltip follow mouse (#15189) @alexfauquette
|
|
126
|
+
- [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
|
|
127
|
+
- [charts] Remove axis from the pie chart (#15187) @alexfauquette
|
|
128
|
+
- [charts] Remove deprecated `legend` props (#15081) @alexfauquette
|
|
129
|
+
- [charts] Remove deprecated highlight properties (#15191) @alexfauquette
|
|
130
|
+
- [charts] Update Popper position outside of React (#15003) @alexfauquette
|
|
131
|
+
- [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
|
|
132
|
+
|
|
133
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
134
|
+
|
|
135
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
|
|
136
|
+
|
|
137
|
+
### Tree View
|
|
138
|
+
|
|
139
|
+
#### Breaking changes
|
|
140
|
+
|
|
141
|
+
- The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
|
|
142
|
+
|
|
143
|
+
- The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
|
|
144
|
+
|
|
145
|
+
- Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
|
|
146
|
+
|
|
147
|
+
- The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
|
|
148
|
+
|
|
149
|
+
- The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
|
|
150
|
+
|
|
151
|
+
#### `@mui/x-tree-view@8.0.0-alpha.0`
|
|
152
|
+
|
|
153
|
+
- [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
|
|
154
|
+
- [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
|
|
155
|
+
- [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
|
|
156
|
+
- [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
|
|
157
|
+
|
|
158
|
+
### Docs
|
|
159
|
+
|
|
160
|
+
- [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
|
|
161
|
+
- [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
|
|
162
|
+
- [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
|
|
163
|
+
- [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
|
|
164
|
+
- [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
|
|
165
|
+
- [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
|
|
166
|
+
- [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
|
|
167
|
+
- [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
|
|
168
|
+
- [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
|
|
169
|
+
- [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
|
|
170
|
+
- [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
|
|
171
|
+
- [docs] Fix link to private notion page (#15396) @michelengelen
|
|
172
|
+
- [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
|
|
173
|
+
- [docs] Fix peer dependency range (#15281) @oliviertassinari
|
|
174
|
+
- [docs] Fix small Tree View typo (#15390) @oliviertassinari
|
|
175
|
+
- [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
|
|
176
|
+
- [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
|
|
177
|
+
- [docs] Start v8 migration guides (#15096) @MBilalShafi
|
|
178
|
+
- [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
|
|
179
|
+
- [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
|
|
180
|
+
- [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
|
|
181
|
+
|
|
182
|
+
### Core
|
|
183
|
+
|
|
184
|
+
- [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
|
|
185
|
+
- [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
|
|
186
|
+
- [core] Clarify release version bump strategy (#15219) @cherniavskii
|
|
187
|
+
- [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
|
|
188
|
+
- [core] Fix Vale error on `master` @oliviertassinari
|
|
189
|
+
- [core] Fix changelog reference to VoiceOver @oliviertassinari
|
|
190
|
+
- [core] Fix `tools-public.mui.com` redirection @oliviertassinari
|
|
191
|
+
- [core] Fix webpack capitalization (#15353) @oliviertassinari
|
|
192
|
+
- [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
|
|
193
|
+
- [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
|
|
194
|
+
- [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
|
|
195
|
+
- [core] Remove duplicate title header (#15389) @oliviertassinari
|
|
196
|
+
- [release] v8 preparation (#15054) @michelengelen
|
|
197
|
+
- [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
|
|
198
|
+
|
|
199
|
+
## 7.21.0
|
|
200
|
+
|
|
201
|
+
_Oct 17, 2024_
|
|
202
|
+
|
|
203
|
+
We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
|
|
204
|
+
|
|
205
|
+
- 💫 Added [`dataset` prop support for the Scatter Chart component](https://mui.com/x/react-charts/scatter/#using-a-dataset)
|
|
206
|
+
- 🐞 Bugfixes
|
|
207
|
+
- 📚 Documentation improvements
|
|
208
|
+
|
|
209
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
210
|
+
@k-rajat19, @kalyan90, @rotembarsela, @wangkailang.
|
|
211
|
+
Following are all team members who have contributed to this release:
|
|
212
|
+
@arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @KenanYusuf, @oliviertassinari, @samuelsycamore.
|
|
213
|
+
|
|
214
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
215
|
+
|
|
216
|
+
### Data Grid
|
|
217
|
+
|
|
218
|
+
#### `@mui/x-data-grid@7.21.0`
|
|
219
|
+
|
|
220
|
+
- [DataGrid] Fix `onRowSelectionModelChange` firing unnecessarily on initial render (#14909) @MBilalShafi
|
|
221
|
+
- [DataGrid] Fix `onRowSelectionModelChange` not being called after row is removed (#14972) @arminmeh
|
|
222
|
+
- [DataGrid] Fix pagination scrollbar issue on small zoom (#14911) @cherniavskii
|
|
223
|
+
- [DataGrid] Fix scroll jumping (#14929) @romgrk
|
|
224
|
+
- [DataGrid] Fix excessive white space at the end of the Data Grid (#14864) @kalyan90
|
|
225
|
+
|
|
226
|
+
#### `@mui/x-data-grid-pro@7.21.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
227
|
+
|
|
228
|
+
Same changes as in `@mui/x-data-grid@7.21.0`, plus:
|
|
229
|
+
|
|
230
|
+
- [DataGridPro] Fix indeterminate checkbox state for server-side data (#14956) @MBilalShafi
|
|
231
|
+
- [DataGridPro] Fix scrolling performance when `rowHeight={undefined}` (#14983) @cherniavskii
|
|
232
|
+
- [DataGridPro] List view (#14393) @KenanYusuf @cherniavskii
|
|
233
|
+
|
|
234
|
+
#### `@mui/x-data-grid-premium@7.21.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
235
|
+
|
|
236
|
+
Same changes as in `@mui/x-data-grid-pro@7.21.0`.
|
|
237
|
+
|
|
238
|
+
### Date and Time Pickers
|
|
239
|
+
|
|
240
|
+
#### `@mui/x-date-pickers@7.21.0`
|
|
241
|
+
|
|
242
|
+
- [pickers] Cleanup `PageUp` and `PageDown` event handlers on time components (#14928) @arthurbalduini
|
|
243
|
+
- [pickers] Create the new picker's `ownerState` object (#14889) @flaviendelangle
|
|
244
|
+
- [pickers] Fix `PickerValidDate` usage in the Date Range Picker Toolbar (#14925) @flaviendelangle
|
|
245
|
+
|
|
246
|
+
#### `@mui/x-date-pickers-pro@7.21.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
247
|
+
|
|
248
|
+
Same changes as in `@mui/x-date-pickers@7.21.0`.
|
|
249
|
+
|
|
250
|
+
### Charts
|
|
251
|
+
|
|
252
|
+
#### `@mui/x-charts@7.21.0`
|
|
253
|
+
|
|
254
|
+
- [charts] Allow `dataset` to be used with the Scatter Chart (#14915) @JCQuintas
|
|
255
|
+
- [charts] Ensure `reduce motion` preference disables animation on page load (#14417) @JCQuintas
|
|
256
|
+
|
|
257
|
+
#### `@mui/x-charts-pro@7.0.0-beta.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
258
|
+
|
|
259
|
+
Same changes as in `@mui/x-charts@7.21.0`.
|
|
260
|
+
|
|
261
|
+
### Tree View
|
|
262
|
+
|
|
263
|
+
#### `@mui/x-tree-view@7.21.0`
|
|
264
|
+
|
|
265
|
+
- [TreeView] Fix `alpha()` usage with CSS variables (#14969) @wangkailang
|
|
266
|
+
- [TreeView] Fix usage of the `aria-selected` attribute (#14991) @flaviendelangle
|
|
267
|
+
- [TreeView] Fix hydration error (#15002) @flaviendelangle
|
|
268
|
+
|
|
269
|
+
### `@mui/x-codemod@7.21.0`
|
|
270
|
+
|
|
271
|
+
- [codemod] Add a new utility to rename imports (#14919) @flaviendelangle
|
|
272
|
+
|
|
273
|
+
### Docs
|
|
274
|
+
|
|
275
|
+
- [docs] Add recipe showing how to toggle detail panels on row click (#14666) @k-rajat19
|
|
276
|
+
- [docs] Fix broken link to the validation section in the Data grid component (#14973) @arminmeh
|
|
277
|
+
- [docs] Update v5 migration codesandbox @oliviertassinari
|
|
278
|
+
- [docs] Enforce component style rules for the Tree View (#14963) @samuelsycamore
|
|
279
|
+
|
|
280
|
+
### Core
|
|
281
|
+
|
|
282
|
+
- [core] Fix shortcut with localization keyboard (#14220) @rotembarsela
|
|
283
|
+
- [core] Fix docs deploy command (#14920) @arminmeh
|
|
284
|
+
- [code-infra] Prepare some tests to work in `vitest/playwright` (#14926) @JCQuintas
|
|
285
|
+
- [test] Fix `AdapterDayjs` coverage calculation (#14957) @LukasTy
|
|
286
|
+
- [test] Fix split infinitive API convention use @oliviertassinari
|
|
287
|
+
|
|
6
288
|
## 7.20.0
|
|
7
289
|
|
|
8
290
|
_Oct 11, 2024_
|
|
@@ -79,7 +361,7 @@ Same changes as in `@mui/x-charts@7.20.0`.
|
|
|
79
361
|
- [docs] Add custom columns panel demo (#14825) @cherniavskii
|
|
80
362
|
- [docs] Capitalize all instances of "Data Grid" (#14884) @samuelsycamore
|
|
81
363
|
- [docs] Divide charts `tooltip` and `highlighting` pages (#14824) @JCQuintas
|
|
82
|
-
- [docs] Document the
|
|
364
|
+
- [docs] Document the `<TreeItem2 />` component and the `useTreeItem2` hook (#14551) @noraleonte
|
|
83
365
|
- [docs] Fix column pinning for "Disable detail panel content scroll" section (#14854 and #14885) @kalyan90
|
|
84
366
|
- [docs] Fix detail panel demo not working well with pinned columns (#14883) @cherniavskii
|
|
85
367
|
- [docs] New recipe of a read-only field (#14606) @flaviendelangle
|
|
@@ -200,7 +482,7 @@ Same changes as in `@mui/x-charts@7.19.0`.
|
|
|
200
482
|
- [code-infra] Remove custom playwright installation steps (#14728) @Janpot
|
|
201
483
|
- [code-infra] Replace or remove all instances of `e` identifier (#14724) @samuelsycamore
|
|
202
484
|
- [infra] Adds community contribution section to the changelog script (#14799) @michelengelen
|
|
203
|
-
- [infra] Fix line break in Stack
|
|
485
|
+
- [infra] Fix line break in Stack Overflow message @oliviertassinari
|
|
204
486
|
- [test] Fix `Escape` event firing event (#14797) @oliviertassinari
|
|
205
487
|
|
|
206
488
|
## 7.18.0
|
|
@@ -292,7 +574,7 @@ Same changes as in `@mui/x-charts@7.18.0`.
|
|
|
292
574
|
- [core] Fix 301 link to Next.js and git diff @oliviertassinari
|
|
293
575
|
- [core] Fix failing CI on `master` (#14644) @cherniavskii
|
|
294
576
|
- [core] Fix `package.json` repository rule @oliviertassinari
|
|
295
|
-
- [core] MUI
|
|
577
|
+
- [core] MUI X repository moved to a new location @oliviertassinari
|
|
296
578
|
- [docs-infra] Strengthen CSP (#14581) @oliviertassinari
|
|
297
579
|
- [license] Finish renaming of LicensingModel (#14615) @oliviertassinari
|
|
298
580
|
|
|
@@ -316,7 +598,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
316
598
|
|
|
317
599
|
- [DataGrid] Add "does not equal" and "does not contain" filter operators (#14489) @KenanYusuf
|
|
318
600
|
- [DataGrid] Add demo to the "Custom columns" page that does not use generator (#13695) @arminmeh
|
|
319
|
-
- [DataGrid] Fix
|
|
601
|
+
- [DataGrid] Fix VoiceOver reading the column name twice (#14482) @arminmeh
|
|
320
602
|
- [DataGrid] Fix bug in CRUD example (#14513) @michelengelen
|
|
321
603
|
- [DataGrid] Fix failing jsdom tests caused by `:has()` selectors (#14559) @KenanYusuf
|
|
322
604
|
- [DataGrid] Refactor string operator filter functions (#14564) @KenanYusuf
|
|
@@ -367,7 +649,7 @@ Same changes as in `@mui/x-charts@7.17.0`.
|
|
|
367
649
|
|
|
368
650
|
### Docs
|
|
369
651
|
|
|
370
|
-
- [docs] Add missing callout on "Imperative API"
|
|
652
|
+
- [docs] Add missing callout on "Imperative API" Tree View sections (#14503) @flaviendelangle
|
|
371
653
|
- [docs] Fix broken redirection to MUI X v5 @oliviertassinari
|
|
372
654
|
- [docs] Fix multiple `console.error` messages on `charts` docs (#14554) @JCQuintas
|
|
373
655
|
- [docs] Fixed typo in Row Grouping recipes (#14549) @Miodini
|
|
@@ -708,7 +990,7 @@ Same changes as in `@mui/x-charts@7.13.0`.
|
|
|
708
990
|
- [core] Fix ESLint issue (#14207) @LukasTy
|
|
709
991
|
- [core] Fix Netlify build cache issue (#14182) @cherniavskii
|
|
710
992
|
- [code-infra] Refactor Netlify `cache-docs` plugin setup (#14105) @LukasTy
|
|
711
|
-
- [internals] Move utils needed for
|
|
993
|
+
- [internals] Move utils needed for Tree View virtualization to shared package (#14202) @flaviendelangle
|
|
712
994
|
|
|
713
995
|
## 7.12.1
|
|
714
996
|
|
|
@@ -772,10 +1054,9 @@ No changes since `@mui/x-tree-view@7.12.0`.
|
|
|
772
1054
|
|
|
773
1055
|
### Docs
|
|
774
1056
|
|
|
775
|
-
- [docs] Add a warning to promote the usage of `updateRows` (#14027) @MBilalShafi
|
|
1057
|
+
- [docs] Add a warning to promote the usage of `updateRows()` (#14027) @MBilalShafi
|
|
776
1058
|
- [docs] Disable ad in `Rich Tree View-Ordering` page (#14123) @oliviertassinari
|
|
777
1059
|
- [docs] Redesign Date and Time Pickers overview page (#13241) @noraleonte
|
|
778
|
-
|
|
779
1060
|
- [CHANGELOG] Polish details @oliviertassinari
|
|
780
1061
|
- [code-infra] Use concurrency 1 in CircleCI (#14110) @JCQuintas
|
|
781
1062
|
- [infra] Re-added the removal of `Latest Version` section (#14132) @michelengelen
|
|
@@ -799,7 +1080,7 @@ This expansion of the Pro plan comes with some adjustments to our pricing strate
|
|
|
799
1080
|
|
|
800
1081
|
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
801
1082
|
|
|
802
|
-
- 🎁 Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the
|
|
1083
|
+
- 🎁 Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the `<RichTreeViewPro />` component
|
|
803
1084
|
|
|
804
1085
|
<img width="287" src="https://github.com/user-attachments/assets/78bd83c5-7ce4-4ed7-acf9-be70b2dbce54" alt="Item reordering using drag and drop" />
|
|
805
1086
|
|
|
@@ -1136,7 +1417,7 @@ _Jul 5, 2024_
|
|
|
1136
1417
|
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
1137
1418
|
|
|
1138
1419
|
- 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See [Loading overlay docs](https://mui.com/x/react-data-grid/overlays/#loading-overlay) for more details.
|
|
1139
|
-
- 🌳 Add `selectItem` and `getItemDOMElement` methods to the TreeView component public API
|
|
1420
|
+
- 🌳 Add `selectItem()` and `getItemDOMElement()` methods to the TreeView component public API
|
|
1140
1421
|
- ⛏️ Make the `usePickersTranslations` hook public in the pickers component
|
|
1141
1422
|
- 🐞 Bugfixes
|
|
1142
1423
|
|
|
@@ -1181,7 +1462,7 @@ Same changes as in `@mui/x-date-pickers@7.9.0`.
|
|
|
1181
1462
|
|
|
1182
1463
|
#### `@mui/x-tree-view@7.9.0`
|
|
1183
1464
|
|
|
1184
|
-
- [TreeView] Add `selectItem` and `getItemDOMElement` methods to the public API (#13485) @flaviendelangle
|
|
1465
|
+
- [TreeView] Add `selectItem()` and `getItemDOMElement()` methods to the public API (#13485) @flaviendelangle
|
|
1185
1466
|
|
|
1186
1467
|
### Docs
|
|
1187
1468
|
|
|
@@ -1292,7 +1573,7 @@ Same changes as in `@mui/x-date-pickers@7.8.0`.
|
|
|
1292
1573
|
|
|
1293
1574
|
- [core] Add eslint rule to restrict import from `../internals` root (#13633) @JCQuintas
|
|
1294
1575
|
- [docs-infra] Sync `\_app` folder with monorepo (#13582) @Janpot
|
|
1295
|
-
- [license] Allow usage of
|
|
1576
|
+
- [license] Allow usage of Charts and Tree View Pro package for old premium licenses (#13619) @flaviendelangle
|
|
1296
1577
|
|
|
1297
1578
|
## 7.7.1
|
|
1298
1579
|
|
|
@@ -1360,7 +1641,7 @@ Same changes as in `@mui/x-date-pickers@7.7.1`, plus:
|
|
|
1360
1641
|
- [TreeView] Improve typing to support optional dependencies in plugins and in the item (#13523) @flaviendelangle
|
|
1361
1642
|
- [TreeView] Move `useTreeViewId` to the core plugins (#13566) @flaviendelangle
|
|
1362
1643
|
- [TreeView] Remove unused state from `useTreeViewId` (#13579) @flaviendelangle
|
|
1363
|
-
- [TreeView] Support `itemId` with escaping characters when using
|
|
1644
|
+
- [TreeView] Support `itemId` with escaping characters when using Simple Tree View (#13487) @oukunan
|
|
1364
1645
|
|
|
1365
1646
|
### Docs
|
|
1366
1647
|
|
|
@@ -1440,7 +1721,7 @@ Same changes as in `@mui/x-date-pickers@7.7.0`.
|
|
|
1440
1721
|
- [TreeView] Improve TypeScript for plugins (#13380) @flaviendelangle
|
|
1441
1722
|
- [TreeView] Improve the typing of the cancelable events (#13152) @flaviendelangle
|
|
1442
1723
|
- [TreeView] Prepare support for PigmentCSS (#13412) @flaviendelangle
|
|
1443
|
-
- [TreeView] Refactor the
|
|
1724
|
+
- [TreeView] Refactor the Tree View internals to prepare for headless API (#13311) @flaviendelangle
|
|
1444
1725
|
|
|
1445
1726
|
### Docs
|
|
1446
1727
|
|
|
@@ -1455,7 +1736,7 @@ Same changes as in `@mui/x-date-pickers@7.7.0`.
|
|
|
1455
1736
|
- [core] Add `eslint-plugin-react-compiler` experimental version and rules (#13415) @JCQuintas
|
|
1456
1737
|
- [core] Minor setup cleanup (#13467) @LukasTy
|
|
1457
1738
|
- [infra] Adjust CI setup (#13448) @LukasTy
|
|
1458
|
-
- [test] Add tests for the custom slots of
|
|
1739
|
+
- [test] Add tests for the custom slots of `<TreeItem2 />` (#13314) @flaviendelangle
|
|
1459
1740
|
|
|
1460
1741
|
## 7.6.2
|
|
1461
1742
|
|
|
@@ -1640,7 +1921,7 @@ _May 23, 2024_
|
|
|
1640
1921
|
|
|
1641
1922
|
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
1642
1923
|
|
|
1643
|
-
- 🧰 Improve
|
|
1924
|
+
- 🧰 Improve Tree View testing
|
|
1644
1925
|
- 📊 Add `label` to be displayed in BarChart
|
|
1645
1926
|
|
|
1646
1927
|
### Data Grid
|
|
@@ -1816,7 +2097,7 @@ Same changes as in `@mui/x-date-pickers@7.4.0`.
|
|
|
1816
2097
|
|
|
1817
2098
|
#### `@mui/x-tree-view@7.4.0`
|
|
1818
2099
|
|
|
1819
|
-
- [TreeView] Fix props propagation and theme entry in
|
|
2100
|
+
- [TreeView] Fix props propagation and theme entry in `<TreeItem2 />` (#12889) @flaviendelangle
|
|
1820
2101
|
|
|
1821
2102
|
### Docs
|
|
1822
2103
|
|
|
@@ -2126,7 +2407,7 @@ Same changes as in `@mui/x-date-pickers@7.2.0`, plus:
|
|
|
2126
2407
|
### Docs
|
|
2127
2408
|
|
|
2128
2409
|
- [docs] Add `AxisFormatter` documentation for customizing tick/tooltip value formatting (#12700) @JCQuintas
|
|
2129
|
-
- [docs] Add file explorer example to rich
|
|
2410
|
+
- [docs] Add file explorer example to rich Tree View customization docs (#12707) @noraleonte
|
|
2130
2411
|
- [docs] Do not use import of depth 3 in the doc (#12716) @flaviendelangle
|
|
2131
2412
|
- [docs] Explain how to clip plots with composition (#12679) @alexfauquette
|
|
2132
2413
|
- [docs] Fix typo in Data Grid v7 migration page (#12720) @bfaulk96
|
|
@@ -2202,7 +2483,7 @@ Same changes as in `@mui/x-date-pickers@7.1.1`, plus:
|
|
|
2202
2483
|
#### `@mui/x-tree-view@7.1.1`
|
|
2203
2484
|
|
|
2204
2485
|
- [TreeView] Add JSDoc to all `publicAPI` methods (#12649) @flaviendelangle
|
|
2205
|
-
- [TreeView] Create
|
|
2486
|
+
- [TreeView] Create `<RichTreeViewPro />` component (not released yet) (#12610) @flaviendelangle
|
|
2206
2487
|
- [TreeView] Create Pro package (not released yet) (#12240) @flaviendelangle
|
|
2207
2488
|
- [TreeView] Fix typo in errors (#12623) @alissa-tung
|
|
2208
2489
|
- [TreeView] New API method: `setItemExpansion` (#12595) @flaviendelangle
|
|
@@ -2222,13 +2503,13 @@ Same changes as in `@mui/x-date-pickers@7.1.1`, plus:
|
|
|
2222
2503
|
- [docs] Move Data Grid interfaces to standard API page layout (#12016) @alexfauquette
|
|
2223
2504
|
- [docs] Remove ` around @default values (#12158) @alexfauquette
|
|
2224
2505
|
- [docs] Remove `day` from the default `dayOfWeekFormatter` function params (#12644) @LukasTy
|
|
2225
|
-
- [docs] Use
|
|
2506
|
+
- [docs] Use `<TreeItem2 />` for icon expansion example on `<RichTreeView />` (#12563) @flaviendelangle
|
|
2226
2507
|
|
|
2227
2508
|
### Core
|
|
2228
2509
|
|
|
2229
2510
|
- [core] Add cherry-pick `master` to `v6` action (#12648) @LukasTy
|
|
2230
2511
|
- [core] Fix typo in `@mui/x-tree-view-pro/themeAugmentation` (#12674) @flaviendelangle
|
|
2231
|
-
- [core] Introduce `describeTreeView` to run test on
|
|
2512
|
+
- [core] Introduce `describeTreeView` to run test on `<SimpleTreeView />` and `<RichTreeView />`, using `<TreeItem />` and `<TreeItem2 />` + migrate expansion tests (#12428) @flaviendelangle
|
|
2232
2513
|
- [core] Limit `test-types` CI step allowed memory (#12651) @LukasTy
|
|
2233
2514
|
- [core] Remove explicit `express` package (#12602) @LukasTy
|
|
2234
2515
|
- [core] Update to new embedded translations in the docs package (#12232) @Janpot
|
|
@@ -2293,7 +2574,7 @@ Same changes as in `@mui/x-date-pickers@7.1.0`, plus:
|
|
|
2293
2574
|
|
|
2294
2575
|
#### `@mui/x-tree-view@7.1.0`
|
|
2295
2576
|
|
|
2296
|
-
- [TreeView] Do not use outdated version of the state to compute new label first char in
|
|
2577
|
+
- [TreeView] Do not use outdated version of the state to compute new label first char in Rich Tree View (#12512) @flaviendelangle
|
|
2297
2578
|
|
|
2298
2579
|
### Docs
|
|
2299
2580
|
|
|
@@ -2420,7 +2701,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0`, plus:
|
|
|
2420
2701
|
|
|
2421
2702
|
#### Breaking changes
|
|
2422
2703
|
|
|
2423
|
-
- The required `nodeId` prop used by
|
|
2704
|
+
- The required `nodeId` prop used by `<TreeItem />` has been renamed to `itemId` for consistency:
|
|
2424
2705
|
|
|
2425
2706
|
```diff
|
|
2426
2707
|
<TreeView>
|
|
@@ -2573,7 +2854,7 @@ The `onNodeFocus` callback has been renamed to `onItemFocus` for consistency:
|
|
|
2573
2854
|
#### `@mui/x-tree-view@7.0.0-beta.7`
|
|
2574
2855
|
|
|
2575
2856
|
- [TreeView] Clean the usage of the term "item" and "node" in API introduced during v7 (#12368) @noraleonte
|
|
2576
|
-
- [TreeView] Introduce a new
|
|
2857
|
+
- [TreeView] Introduce a new `<TreeItem2 />` component and a new `useTreeItem2` hook (#11721) @flaviendelangle
|
|
2577
2858
|
- [TreeView] Rename `onNodeFocus` to `onItemFocus` (#12419) @noraleonte
|
|
2578
2859
|
|
|
2579
2860
|
### Docs
|
|
@@ -2631,9 +2912,9 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2631
2912
|
|
|
2632
2913
|
#### Breaking changes
|
|
2633
2914
|
|
|
2634
|
-
- The component used to animate the item children is now defined as a slot on the
|
|
2915
|
+
- The component used to animate the item children is now defined as a slot on the `<TreeItem />` component.
|
|
2635
2916
|
|
|
2636
|
-
If you were passing a `TransitionComponent` or `TransitionProps` to your
|
|
2917
|
+
If you were passing a `TransitionComponent` or `TransitionProps` to your `<TreeItem />` component,
|
|
2637
2918
|
you need to use the new `groupTransition` slot on this component:
|
|
2638
2919
|
|
|
2639
2920
|
```diff
|
|
@@ -2649,7 +2930,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2649
2930
|
</SimpleTreeView>
|
|
2650
2931
|
```
|
|
2651
2932
|
|
|
2652
|
-
- The `group` class of the
|
|
2933
|
+
- The `group` class of the `<TreeItem />` component has been renamed to `groupTransition` to match with its new slot name.
|
|
2653
2934
|
|
|
2654
2935
|
```diff
|
|
2655
2936
|
const StyledTreeItem = styled(TreeItem)({
|
|
@@ -2663,14 +2944,14 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2663
2944
|
#### `@mui/x-tree-view@7.0.0-beta.6`
|
|
2664
2945
|
|
|
2665
2946
|
- [TreeView] Fix invalid nodes state when updating `props.items` (#12359) @flaviendelangle
|
|
2666
|
-
- [TreeView] In the
|
|
2947
|
+
- [TreeView] In the Rich Tree View, do not use the item id as the HTML id attribute (#12319) @flaviendelangle
|
|
2667
2948
|
- [TreeView] New instance and publicAPI method: `getItem` (#12251) @flaviendelangle
|
|
2668
2949
|
- [TreeView] Replace `TransitionComponent` and `TransitionProps` with a `groupTransition` slot (#12336) @flaviendelangle
|
|
2669
2950
|
|
|
2670
2951
|
### Docs
|
|
2671
2952
|
|
|
2672
2953
|
- [docs] Add a note about `z-index` usage in SVG (#12337) @alexfauquette
|
|
2673
|
-
- [docs]
|
|
2954
|
+
- [docs] Rich Tree View customization docs (#12231) @noraleonte
|
|
2674
2955
|
|
|
2675
2956
|
### Core
|
|
2676
2957
|
|
|
@@ -2813,7 +3094,8 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
|
|
|
2813
3094
|
```
|
|
2814
3095
|
|
|
2815
3096
|
- The headless field hooks (e.g.: `useDateField`) now returns a new prop called `enableAccessibleFieldDOMStructure`.
|
|
2816
|
-
This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure.
|
|
3097
|
+
This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure.
|
|
3098
|
+
Learn more about this new accessible DOM structure in the [v8 migration guide](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
2817
3099
|
|
|
2818
3100
|
When building a custom UI, you are most-likely only supporting one DOM structure, so you can remove `enableAccessibleFieldDOMStructure` before it is passed to the DOM:
|
|
2819
3101
|
|
|
@@ -3323,7 +3605,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.0`, plus:
|
|
|
3323
3605
|
|
|
3324
3606
|
### Docs
|
|
3325
3607
|
|
|
3326
|
-
- [docs] Add `contextValue` to the headless
|
|
3608
|
+
- [docs] Add `contextValue` to the headless Tree View doc (#11705) @flaviendelangle
|
|
3327
3609
|
- [docs] Add section for the `disableSelection` prop (#11821) @flaviendelangle
|
|
3328
3610
|
- [docs] Fix brand name non-breaking space (#11758) @oliviertassinari
|
|
3329
3611
|
- [docs] Fix typo in Data Grid components page (#11775) @flaviendelangle
|
|
@@ -3346,7 +3628,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
3346
3628
|
|
|
3347
3629
|
- 🎁 The Data Grid headers have been refactored to bring immense improvements to scrolling, state management, and overall performance of the grid.
|
|
3348
3630
|
- ⚙️ The Data Grid disabled column-specific features like filtering, sorting, grouping, etc. could now be accessed programmatically. See the related [docs](https://next.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
|
|
3349
|
-
- 🚀 Uplift the
|
|
3631
|
+
- 🚀 Uplift the Simple Tree View customization examples (#11424) @noraleonte
|
|
3350
3632
|
- 🌍 Add Croatian (hr-HR), Portuguese (pt-PT), and Chinese (Hong Kong) (zh-HK) locales (#11668) on the Data Grid @BCaspari
|
|
3351
3633
|
- 🐞 Bugfixes
|
|
3352
3634
|
- 💔 Bump `@mui/material` peer dependency for all packages (#11692) @LukasTy
|
|
@@ -3557,7 +3839,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.9`.
|
|
|
3557
3839
|
```
|
|
3558
3840
|
|
|
3559
3841
|
- The `useTreeItem` hook has been renamed `useTreeItemState`.
|
|
3560
|
-
This will help create a new headless version of the
|
|
3842
|
+
This will help create a new headless version of the Tree Item component based on a future `useTreeItem` hook.
|
|
3561
3843
|
|
|
3562
3844
|
```diff
|
|
3563
3845
|
-import { TreeItem, useTreeItem } from '@mui/x-tree-view/TreeItem';
|
|
@@ -3657,13 +3939,13 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.9`.
|
|
|
3657
3939
|
- [docs] Cleanup and fix Pickers Playground styling (#11700) @LukasTy
|
|
3658
3940
|
- [docs] First draft of the Tree View custom plugin doc (#11564) @flaviendelangle
|
|
3659
3941
|
- [docs] Fix Pickers migration syntax and diffs (#11695) @LukasTy
|
|
3660
|
-
- [docs] Fix generated
|
|
3942
|
+
- [docs] Fix generated Tree View API docs (#11737) @LukasTy
|
|
3661
3943
|
- [docs] Generate docs for Tree View slots (#11730) @flaviendelangle
|
|
3662
3944
|
- [docs] Improve codemod for v7 (#11650) @oliviertassinari
|
|
3663
3945
|
- [docs] Improve Data Grid `pageSizeOptions` prop documentation (#11682) @oliviertassinari
|
|
3664
3946
|
- [docs] Parse markdown on API docs demo titles (#11728) @LukasTy
|
|
3665
3947
|
- [docs] Remove the description from the `className` prop (#11693) @oliviertassinari
|
|
3666
|
-
- [docs] Uplift
|
|
3948
|
+
- [docs] Uplift Simple Tree View customization examples (#11424) @noraleonte
|
|
3667
3949
|
- [docs] Uplift the Date Pickers playground (#11555) @danilo-leal
|
|
3668
3950
|
|
|
3669
3951
|
### Core
|
|
@@ -3740,8 +4022,8 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.8`.
|
|
|
3740
4022
|
|
|
3741
4023
|
### Tree View / `@mui/x-tree-view@7.0.0-alpha.8`
|
|
3742
4024
|
|
|
3743
|
-
- [
|
|
3744
|
-
- [
|
|
4025
|
+
- [TreeView] Cleanup `onKeyDown` handler (#11481) @flaviendelangle
|
|
4026
|
+
- [TreeView] Define the parameters used by each plugin to avoid listing them in each component (#11473) @flaviendelangle
|
|
3745
4027
|
|
|
3746
4028
|
### Docs
|
|
3747
4029
|
|
|
@@ -3768,7 +4050,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
3768
4050
|
|
|
3769
4051
|
- 🎁 New component to create a Tree View from a structured data source:
|
|
3770
4052
|
|
|
3771
|
-
You can now directly pass your data to the
|
|
4053
|
+
You can now directly pass your data to the `<RichTreeView />` component instead of manually converting it into JSX `<TreeItem />` components:
|
|
3772
4054
|
|
|
3773
4055
|
```tsx
|
|
3774
4056
|
const ITEMS = [
|
|
@@ -5099,7 +5381,7 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
|
|
|
5099
5381
|
|
|
5100
5382
|
### Core
|
|
5101
5383
|
|
|
5102
|
-
- [core] Adds migration docs for
|
|
5384
|
+
- [core] Adds migration docs for Charts, Pickers, and Tree View (#10926) @michelengelen
|
|
5103
5385
|
- [core] Bump monorepo (#10959) @LukasTy
|
|
5104
5386
|
- [core] Changed prettier branch value to next (#10917) @michelengelen
|
|
5105
5387
|
- [core] Fix GitHub title tag consistency @oliviertassinari
|
package/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-license",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-alpha.0",
|
|
4
4
|
"description": "MUI X License verification",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"directory": "packages/x-license"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.
|
|
27
|
+
"@babel/runtime": "^7.26.0",
|
|
28
28
|
"@mui/utils": "^5.16.6 || ^6.0.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|