@mui/x-license 7.18.0 → 7.21.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
CHANGED
|
@@ -3,6 +3,295 @@
|
|
|
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.21.0
|
|
7
|
+
|
|
8
|
+
_Oct 17, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 💫 Added [`dataset` prop support for the Scatter Chart component](https://mui.com/x/react-charts/scatter/#using-a-dataset)
|
|
13
|
+
- 🐞 Bugfixes
|
|
14
|
+
- 📚 Documentation improvements
|
|
15
|
+
|
|
16
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
17
|
+
@k-rajat19, @kalyan90, @rotembarsela, @wangkailang.
|
|
18
|
+
Following are all team members who have contributed to this release:
|
|
19
|
+
@arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @KenanYusuf, @oliviertassinari, @samuelsycamore.
|
|
20
|
+
|
|
21
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
22
|
+
|
|
23
|
+
### Data Grid
|
|
24
|
+
|
|
25
|
+
#### `@mui/x-data-grid@7.21.0`
|
|
26
|
+
|
|
27
|
+
- [DataGrid] Fix `onRowSelectionModelChange` firing unnecessarily on initial render (#14909) @MBilalShafi
|
|
28
|
+
- [DataGrid] Fix `onRowSelectionModelChange` not being called after row is removed (#14972) @arminmeh
|
|
29
|
+
- [DataGrid] Fix pagination scrollbar issue on small zoom (#14911) @cherniavskii
|
|
30
|
+
- [DataGrid] Fix scroll jumping (#14929) @romgrk
|
|
31
|
+
- [DataGrid] Fix excessive white space at the end of the Data Grid (#14864) @kalyan90
|
|
32
|
+
|
|
33
|
+
#### `@mui/x-data-grid-pro@7.21.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
34
|
+
|
|
35
|
+
Same changes as in `@mui/x-data-grid@7.21.0`, plus:
|
|
36
|
+
|
|
37
|
+
- [DataGridPro] Fix indeterminate checkbox state for server-side data (#14956) @MBilalShafi
|
|
38
|
+
- [DataGridPro] Fix scrolling performance when `rowHeight={undefined}` (#14983) @cherniavskii
|
|
39
|
+
- [DataGridPro] List view (#14393) @KenanYusuf @cherniavskii
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-data-grid-premium@7.21.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
42
|
+
|
|
43
|
+
Same changes as in `@mui/x-data-grid-pro@7.21.0`.
|
|
44
|
+
|
|
45
|
+
### Date and Time Pickers
|
|
46
|
+
|
|
47
|
+
#### `@mui/x-date-pickers@7.21.0`
|
|
48
|
+
|
|
49
|
+
- [pickers] Cleanup `PageUp` and `PageDown` event handlers on time components (#14928) @arthurbalduini
|
|
50
|
+
- [pickers] Create the new picker's `ownerState` object (#14889) @flaviendelangle
|
|
51
|
+
- [pickers] Fix `PickerValidDate` usage in the Date Range Picker Toolbar (#14925) @flaviendelangle
|
|
52
|
+
|
|
53
|
+
#### `@mui/x-date-pickers-pro@7.21.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
54
|
+
|
|
55
|
+
Same changes as in `@mui/x-date-pickers@7.21.0`.
|
|
56
|
+
|
|
57
|
+
### Charts
|
|
58
|
+
|
|
59
|
+
#### `@mui/x-charts@7.21.0`
|
|
60
|
+
|
|
61
|
+
- [charts] Allow `dataset` to be used with the Scatter Chart (#14915) @JCQuintas
|
|
62
|
+
- [charts] Ensure `reduce motion` preference disables animation on page load (#14417) @JCQuintas
|
|
63
|
+
|
|
64
|
+
#### `@mui/x-charts-pro@7.0.0-beta.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
65
|
+
|
|
66
|
+
Same changes as in `@mui/x-charts@7.21.0`.
|
|
67
|
+
|
|
68
|
+
### Tree View
|
|
69
|
+
|
|
70
|
+
#### `@mui/x-tree-view@7.21.0`
|
|
71
|
+
|
|
72
|
+
- [TreeView] Fix `alpha` usage with CSS variables (#14969) @wangkailang
|
|
73
|
+
- [TreeView] Fix usage of the `aria-selected` attribute (#14991) @flaviendelangle
|
|
74
|
+
- [TreeView] Fix hydration error (#15002) @flaviendelangle
|
|
75
|
+
|
|
76
|
+
### `@mui/x-codemod@7.21.0`
|
|
77
|
+
|
|
78
|
+
- [codemod] Add a new utility to rename imports (#14919) @flaviendelangle
|
|
79
|
+
|
|
80
|
+
### Docs
|
|
81
|
+
|
|
82
|
+
- [docs] Add recipe showing how to toggle detail panels on row click (#14666) @k-rajat19
|
|
83
|
+
- [docs] Fix broken link to the validation section in the Data grid component (#14973) @arminmeh
|
|
84
|
+
- [docs] Update v5 migration codesandbox @oliviertassinari
|
|
85
|
+
- [docs] Enforce component style rules for the Tree View (#14963) @samuelsycamore
|
|
86
|
+
|
|
87
|
+
### Core
|
|
88
|
+
|
|
89
|
+
- [core] Fix shortcut with localization keyboard (#14220) @rotembarsela
|
|
90
|
+
- [core] Fix docs deploy command (#14920) @arminmeh
|
|
91
|
+
- [code-infra] Prepare some tests to work in `vitest/playwright` (#14926) @JCQuintas
|
|
92
|
+
- [test] Fix `AdapterDayjs` coverage calculation (#14957) @LukasTy
|
|
93
|
+
- [test] Fix split infinitive API convention use @oliviertassinari
|
|
94
|
+
|
|
95
|
+
## 7.20.0
|
|
96
|
+
|
|
97
|
+
_Oct 11, 2024_
|
|
98
|
+
|
|
99
|
+
We'd like to offer a big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
|
|
100
|
+
|
|
101
|
+
- 📚 Updated ["What's new"](https://mui.com/x/whats-new/) page giving more detailed overview of the latest new features and other highlights
|
|
102
|
+
- 📚 New [collapsible column groups demo](https://mui.com/x/react-data-grid/column-groups/#collapsible-column-groups) for the Data Grid component
|
|
103
|
+
- 📚 New [Tree Item Customization](https://mui.com/x/react-tree-view/tree-item-customization/) documentation to learn how to use the new APIs to create custom Tree Items. The old APIs (`props.ContentComponent` and `props.ContentProps`) have been deprecated and will be removed in the new major version of the Tree View component.
|
|
104
|
+
- 🌍 Improve Japanese (ja-JP) locale on the Data Grid component
|
|
105
|
+
- 🐞 Bugfixes
|
|
106
|
+
- 📚 Other documentation improvements
|
|
107
|
+
|
|
108
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
109
|
+
@k-rajat19, @kalyan90, @uma-neko, @vfbiby.
|
|
110
|
+
Following are all team members who have contributed to this release: @alelthomas, @arminmeh, @arthurbalduini,
|
|
111
|
+
@cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte, @oliviertassinari, @samuelsycamore, @siriwatknp.
|
|
112
|
+
|
|
113
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
114
|
+
|
|
115
|
+
### Data Grid
|
|
116
|
+
|
|
117
|
+
#### `@mui/x-data-grid@7.20.0`
|
|
118
|
+
|
|
119
|
+
- [DataGrid] Add `onColumnHeaderContextMenu` event (#14734) @vfbiby
|
|
120
|
+
- [DataGrid] Avoid row spanning computation of outdated rows (#14902) @MBilalShafi
|
|
121
|
+
- [DataGrid] Fix scrollbar position not being updated after `scrollToIndexes` (#14888) @arminmeh
|
|
122
|
+
- [DataGrid] Pass `rowId` param to `processRowUpdate` (#14821) @k-rajat19
|
|
123
|
+
- [l10n] Improve Japanese (ja-JP) locale (#14870) @uma-neko
|
|
124
|
+
|
|
125
|
+
#### `@mui/x-data-grid-pro@7.20.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
126
|
+
|
|
127
|
+
Same changes as in `@mui/x-data-grid@7.20.0`, plus:
|
|
128
|
+
|
|
129
|
+
- [DataGridPro] Fix wording on the `rowSelectionPropagation` JSDoc and doc section (#14907) @flaviendelangle
|
|
130
|
+
|
|
131
|
+
#### `@mui/x-data-grid-premium@7.20.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
132
|
+
|
|
133
|
+
Same changes as in `@mui/x-data-grid-pro@7.20.0`.
|
|
134
|
+
|
|
135
|
+
### Date and Time Pickers
|
|
136
|
+
|
|
137
|
+
#### `@mui/x-date-pickers@7.20.0`
|
|
138
|
+
|
|
139
|
+
- [pickers] Add `PageUp` and `PageDown` support for time components (#14812) @arthurbalduini
|
|
140
|
+
- [pickers] Fix regression on `PickerValidDate` (#14896) @flaviendelangle
|
|
141
|
+
- [pickers] Move the `DateFieldInPickerProps` interface to the `DatePicker` folder and rename it `DatePickerFieldProps` (same for time and date time) (#14828) @flaviendelangle
|
|
142
|
+
|
|
143
|
+
#### `@mui/x-date-pickers-pro@7.20.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
144
|
+
|
|
145
|
+
Same changes as in `@mui/x-date-pickers@7.20.0`.
|
|
146
|
+
|
|
147
|
+
### Charts
|
|
148
|
+
|
|
149
|
+
#### `@mui/x-charts@7.20.0`
|
|
150
|
+
|
|
151
|
+
No changes since `@mui/x-charts@v7.19.0`.
|
|
152
|
+
|
|
153
|
+
#### `@mui/x-charts-pro@7.0.0-beta.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
154
|
+
|
|
155
|
+
Same changes as in `@mui/x-charts@7.20.0`.
|
|
156
|
+
|
|
157
|
+
### Tree View
|
|
158
|
+
|
|
159
|
+
#### `@mui/x-tree-view@7.20.0`
|
|
160
|
+
|
|
161
|
+
- [TreeItem] Deprecate the `ContentComponent` and `ContentProps` props (#14908) @flaviendelangle
|
|
162
|
+
- [TreeView] Rework how items are being rendered in Rich Tree View components (#14749) @flaviendelangle
|
|
163
|
+
|
|
164
|
+
### Docs
|
|
165
|
+
|
|
166
|
+
- [docs] Update "What's new" page (#14858) @cherniavskii
|
|
167
|
+
- [docs] Add collapsible column groups demo (#14818) @cherniavskii
|
|
168
|
+
- [docs] Add custom columns panel demo (#14825) @cherniavskii
|
|
169
|
+
- [docs] Capitalize all instances of "Data Grid" (#14884) @samuelsycamore
|
|
170
|
+
- [docs] Divide charts `tooltip` and `highlighting` pages (#14824) @JCQuintas
|
|
171
|
+
- [docs] Document the `<TreeItem2 />` component and the `useTreeItem2` hook (#14551) @noraleonte
|
|
172
|
+
- [docs] Fix column pinning for "Disable detail panel content scroll" section (#14854 and #14885) @kalyan90
|
|
173
|
+
- [docs] Fix detail panel demo not working well with pinned columns (#14883) @cherniavskii
|
|
174
|
+
- [docs] New recipe of a read-only field (#14606) @flaviendelangle
|
|
175
|
+
- [docs] Change demo name example (#14822) @alelthomas
|
|
176
|
+
|
|
177
|
+
### Core
|
|
178
|
+
|
|
179
|
+
- [core] Support `@mui/utils` v6 (#14867) @siriwatknp
|
|
180
|
+
- [code-infra] Remove deprecated `data-mui-test` in favour of `data-testid` (#14882) @JCQuintas
|
|
181
|
+
- [code-infra] Update renovate config and add a `vitest` group (#14856) @JCQuintas
|
|
182
|
+
- [test] Replace `waitFor()` with `act()` (#14851) @oliviertassinari
|
|
183
|
+
- [test] Restore "pnpm tc" CLI (#14852) @oliviertassinari
|
|
184
|
+
|
|
185
|
+
## 7.19.0
|
|
186
|
+
|
|
187
|
+
_Oct 4, 2024_
|
|
188
|
+
|
|
189
|
+
We'd like to offer a big thanks to the 26 contributors who made this release possible. Here are some highlights ✨:
|
|
190
|
+
|
|
191
|
+
- 🔁 Automatic parents and children selection for Data Grid ["tree data"](https://mui.com/x/react-data-grid/tree-data/) and ["row grouping"](https://mui.com/x/react-data-grid/row-grouping/) features
|
|
192
|
+
- 💫 Support `minHeight` and `maxHeight` on flex parent container for the Data Grid component
|
|
193
|
+
- 🎁 Export `publicAPI` from the `useTreeItem2Utils` hook for the Tree View
|
|
194
|
+
- 🌍 Improve Bulgarian (bg-BG), Croatian (hr-HR), French (fr-FR), German (de-DE), Japanese (ja-JP) and Vietnamese (vi-VN) locales and add Portuguese (pt-PT) locale on the Data Grid component
|
|
195
|
+
- 🌏 Improve Czech (cs-CZ) and Portuguese (pt-BR) locales and add Bulgarian (bg-BG), Croatian (hr-HR) and Portuguese (pt-PT) locales on the Pickers components
|
|
196
|
+
- 🐞 Bugfixes
|
|
197
|
+
- 📚 Documentation improvements
|
|
198
|
+
|
|
199
|
+
Special thanks goes out to our community contributors who have helped make this release possible:
|
|
200
|
+
@AWAIS97, @chucamphong, @GMchris, @JakubSveda, @k-rajat19, @k725, @lhilgert9, @ruiaraujo012, @Sanderand, @thomasmoon, @vallereaugabriel.
|
|
201
|
+
Following are all team members who have contributed to this release:
|
|
202
|
+
@alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @Janpot, @JCQuintas, @KenanYusuf, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @sai6855, @samuelsycamore.
|
|
203
|
+
|
|
204
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
205
|
+
|
|
206
|
+
### Data Grid
|
|
207
|
+
|
|
208
|
+
#### `@mui/x-data-grid@7.19.0`
|
|
209
|
+
|
|
210
|
+
- [DataGrid] Fix column definition `undefined` value (#14456) @sai6855
|
|
211
|
+
- [DataGrid] Fix `checkboxSelectionVisibleOnly` reset the selection on filtering (#14677) @MBilalShafi
|
|
212
|
+
- [DataGrid] Fix background colors when `CSSVarsProvider` is used (#12901) @cherniavskii
|
|
213
|
+
- [DataGrid] Fix error when initializing aggregation with row spanning (#14710) @MBilalShafi
|
|
214
|
+
- [DataGrid] Fix scroll to cell logic for keyboard navigating cells and drag selection with pinned columns (#14550) @KenanYusuf
|
|
215
|
+
- [DataGrid] Support `minHeight` and `maxHeight` on flex parent container (#14614) @cherniavskii
|
|
216
|
+
- [l10n] Add missing Portuguese (pt-PT) translations (#14707) @ruiaraujo012
|
|
217
|
+
- [l10n] Improve Bulgarian (bg-BG) locale (#14451) @GMchris
|
|
218
|
+
- [l10n] Improve Croatian (hr-HR) locale (#14794) @arminmeh
|
|
219
|
+
- [l10n] Improve French (fr-FR) locale (#14750) @vallereaugabriel
|
|
220
|
+
- [l10n] Improve German (de-DE) locale (#14755) @lhilgert9
|
|
221
|
+
- [l10n] Improve Japanese (ja-JP) locale (#14381) @k725
|
|
222
|
+
- [l10n] Improve Vietnamese (vi-VN) locale (#14769) @chucamphong
|
|
223
|
+
|
|
224
|
+
#### `@mui/x-data-grid-pro@7.19.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
225
|
+
|
|
226
|
+
Same changes as in `@mui/x-data-grid@7.19.0`, plus:
|
|
227
|
+
|
|
228
|
+
- [DataGridPro] Fix dragging styles removal in column reorder (#14680) @k-rajat19
|
|
229
|
+
- [DataGridPro] Fix row pre-processing running with a stale data source (#14810) @MBilalShafi
|
|
230
|
+
- [DataGridPro] Fix `onRowsScrollEnd` not firing on very fast scrolling (#14171) @arminmeh
|
|
231
|
+
|
|
232
|
+
#### `@mui/x-data-grid-premium@7.19.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
233
|
+
|
|
234
|
+
Same changes as in `@mui/x-data-grid-pro@7.19.0`, plus:
|
|
235
|
+
|
|
236
|
+
- [DataGridPremium] Automatic parents and children selection (#13757) @MBilalShafi
|
|
237
|
+
|
|
238
|
+
### Date and Time Pickers
|
|
239
|
+
|
|
240
|
+
#### `@mui/x-date-pickers@7.19.0`
|
|
241
|
+
|
|
242
|
+
- [pickers] Fix left-right keyboard nav with `yearsOrder="desc"` and `direction="rtl"` (#14682) @thomasmoon
|
|
243
|
+
- [pickers] Improve `PickerValidDate` type (#14771) @flaviendelangle
|
|
244
|
+
- [pickers] Improve typing of the range pickers (#14716) @flaviendelangle
|
|
245
|
+
- [l10n] Add Bulgarian (bg-BG) locale (#14469) @GMchris
|
|
246
|
+
- [l10n] Add Croatian (hr-HR) locale (#14795) @arminmeh
|
|
247
|
+
- [l10n] Add Portuguese (pt-PT) locale (#14722) @ruiaraujo012
|
|
248
|
+
- [l10n] Improve Czech (cs-CZ) locale (#14732) @JakubSveda
|
|
249
|
+
- [l10n] Improve Portuguese (pt-BR) locale (#14725) @arthurbalduini
|
|
250
|
+
|
|
251
|
+
#### `@mui/x-date-pickers-pro@7.19.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
252
|
+
|
|
253
|
+
Same changes as in `@mui/x-date-pickers@7.19.0`.
|
|
254
|
+
|
|
255
|
+
### Charts
|
|
256
|
+
|
|
257
|
+
#### `@mui/x-charts@7.19.0`
|
|
258
|
+
|
|
259
|
+
- [charts] Fix `LineChart` area animation being stuck when resizing container (#14711) @alexfauquette
|
|
260
|
+
- [charts] Improve types and start using `warnOnce` (#14792) @JCQuintas
|
|
261
|
+
|
|
262
|
+
#### `@mui/x-charts-pro@7.0.0-beta.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
263
|
+
|
|
264
|
+
Same changes as in `@mui/x-charts@7.19.0`.
|
|
265
|
+
|
|
266
|
+
### Tree View
|
|
267
|
+
|
|
268
|
+
#### `@mui/x-tree-view@7.19.0`
|
|
269
|
+
|
|
270
|
+
- [TreeView] Apply experimental features in `getDefaultizedParams` instead of in the plugin render (#14661) @flaviendelangle
|
|
271
|
+
- [TreeView] Export `publicAPI` form `useTreeItem2Utils` (#14729) @noraleonte
|
|
272
|
+
- [TreeView] Fix cursor navigation interfering with browser shortcut keys (#14798) @sai6855
|
|
273
|
+
- [TreeView] Fix invalid test for items reordering (#14665) @flaviendelangle
|
|
274
|
+
- [TreeView] Remove `instance.getTreeItemIdAttribute` (#14667) @flaviendelangle
|
|
275
|
+
|
|
276
|
+
### Docs
|
|
277
|
+
|
|
278
|
+
- [docs] Added warning callout for Firefox reordering bug (#14516) @michelengelen
|
|
279
|
+
- [docs] Copyedit `pages.ts` navigation (#14782) @samuelsycamore
|
|
280
|
+
- [docs] Fix typo in row spanning doc (#14770) @flaviendelangle
|
|
281
|
+
- [docs] Fix typo in the Tree View migration guide to v7 (#14727) @Sanderand
|
|
282
|
+
- [docs] Fix typo in usage of Moment guide for UTC and timezones (#14780) @AWAIS97
|
|
283
|
+
- [docs] Fix what's new link to use absolute URL (#14543) @oliviertassinari
|
|
284
|
+
|
|
285
|
+
### Core
|
|
286
|
+
|
|
287
|
+
- [core] Fix class name composition order (#14775) @oliviertassinari
|
|
288
|
+
- [core] Replace minWidth, maxWidth with width (#14776) @oliviertassinari
|
|
289
|
+
- [code-infra] Remove custom playwright installation steps (#14728) @Janpot
|
|
290
|
+
- [code-infra] Replace or remove all instances of `e` identifier (#14724) @samuelsycamore
|
|
291
|
+
- [infra] Adds community contribution section to the changelog script (#14799) @michelengelen
|
|
292
|
+
- [infra] Fix line break in Stack Overflow message @oliviertassinari
|
|
293
|
+
- [test] Fix `Escape` event firing event (#14797) @oliviertassinari
|
|
294
|
+
|
|
6
295
|
## 7.18.0
|
|
7
296
|
|
|
8
297
|
_Sep 20, 2024_
|
|
@@ -11,7 +300,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
|
|
|
11
300
|
|
|
12
301
|
- 💫 Support [Row spanning](https://mui.com/x/react-data-grid/row-spanning/) on the Data Grid that automatically merges the consecutive cells in a column based on the cell value
|
|
13
302
|
|
|
14
|
-
<img width="600" src="https://github.com/user-attachments/assets/d32ec936-d238-4c92-9e1a-af6788d74cdf" alt="
|
|
303
|
+
<img width="600" src="https://github.com/user-attachments/assets/d32ec936-d238-4c92-9e1a-af6788d74cdf" alt="Data Grid row spanning" />
|
|
15
304
|
|
|
16
305
|
- ⏰ Support `date-fns` v4 (#14673) @LukasTy
|
|
17
306
|
- 🎉 Add option for Pickers to change the order of displayed years (#11780) @thomasmoon
|
|
@@ -167,7 +456,7 @@ Same changes as in `@mui/x-charts@7.17.0`.
|
|
|
167
456
|
|
|
168
457
|
### Docs
|
|
169
458
|
|
|
170
|
-
- [docs] Add missing callout on "Imperative API"
|
|
459
|
+
- [docs] Add missing callout on "Imperative API" Tree View sections (#14503) @flaviendelangle
|
|
171
460
|
- [docs] Fix broken redirection to MUI X v5 @oliviertassinari
|
|
172
461
|
- [docs] Fix multiple `console.error` messages on `charts` docs (#14554) @JCQuintas
|
|
173
462
|
- [docs] Fixed typo in Row Grouping recipes (#14549) @Miodini
|
|
@@ -450,7 +739,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
450
739
|
#### `@mui/x-data-grid@7.13.0`
|
|
451
740
|
|
|
452
741
|
- [DataGrid] Fix CSV export for `null` and `undefined` values (#14166) @k-rajat19
|
|
453
|
-
- [DataGrid] Fix error logged during skeleton loading with nested
|
|
742
|
+
- [DataGrid] Fix error logged during skeleton loading with nested Data Grid (#14186) @KenanYusuf
|
|
454
743
|
- [DataGrid] Remove needless check in `useGridStateInitialization` (#14181) @k-rajat19
|
|
455
744
|
- [DataGrid] Add recipe for persisting filters in local storage (#14208) @cherniavskii
|
|
456
745
|
- [l10n] Improve Vietnamese (vi-VN) locale (#14216) @hungnd-casso
|
|
@@ -508,7 +797,7 @@ Same changes as in `@mui/x-charts@7.13.0`.
|
|
|
508
797
|
- [core] Fix ESLint issue (#14207) @LukasTy
|
|
509
798
|
- [core] Fix Netlify build cache issue (#14182) @cherniavskii
|
|
510
799
|
- [code-infra] Refactor Netlify `cache-docs` plugin setup (#14105) @LukasTy
|
|
511
|
-
- [internals] Move utils needed for
|
|
800
|
+
- [internals] Move utils needed for Tree View virtualization to shared package (#14202) @flaviendelangle
|
|
512
801
|
|
|
513
802
|
## 7.12.1
|
|
514
803
|
|
|
@@ -568,6 +857,8 @@ Same changes as in `@mui/x-charts@7.12.1`, plus:
|
|
|
568
857
|
|
|
569
858
|
#### `@mui/x-tree-view@7.12.1`
|
|
570
859
|
|
|
860
|
+
No changes since `@mui/x-tree-view@7.12.0`.
|
|
861
|
+
|
|
571
862
|
### Docs
|
|
572
863
|
|
|
573
864
|
- [docs] Add a warning to promote the usage of `updateRows` (#14027) @MBilalShafi
|
|
@@ -597,7 +888,7 @@ This expansion of the Pro plan comes with some adjustments to our pricing strate
|
|
|
597
888
|
|
|
598
889
|
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
599
890
|
|
|
600
|
-
- 🎁 Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the
|
|
891
|
+
- 🎁 Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the `<RichTreeViewPro />` component
|
|
601
892
|
|
|
602
893
|
<img width="287" src="https://github.com/user-attachments/assets/78bd83c5-7ce4-4ed7-acf9-be70b2dbce54" alt="Item reordering using drag and drop" />
|
|
603
894
|
|
|
@@ -1090,7 +1381,7 @@ Same changes as in `@mui/x-date-pickers@7.8.0`.
|
|
|
1090
1381
|
|
|
1091
1382
|
- [core] Add eslint rule to restrict import from `../internals` root (#13633) @JCQuintas
|
|
1092
1383
|
- [docs-infra] Sync `\_app` folder with monorepo (#13582) @Janpot
|
|
1093
|
-
- [license] Allow usage of
|
|
1384
|
+
- [license] Allow usage of Charts and Tree View Pro package for old premium licenses (#13619) @flaviendelangle
|
|
1094
1385
|
|
|
1095
1386
|
## 7.7.1
|
|
1096
1387
|
|
|
@@ -1158,7 +1449,7 @@ Same changes as in `@mui/x-date-pickers@7.7.1`, plus:
|
|
|
1158
1449
|
- [TreeView] Improve typing to support optional dependencies in plugins and in the item (#13523) @flaviendelangle
|
|
1159
1450
|
- [TreeView] Move `useTreeViewId` to the core plugins (#13566) @flaviendelangle
|
|
1160
1451
|
- [TreeView] Remove unused state from `useTreeViewId` (#13579) @flaviendelangle
|
|
1161
|
-
- [TreeView] Support `itemId` with escaping characters when using
|
|
1452
|
+
- [TreeView] Support `itemId` with escaping characters when using Simple Tree View (#13487) @oukunan
|
|
1162
1453
|
|
|
1163
1454
|
### Docs
|
|
1164
1455
|
|
|
@@ -1238,7 +1529,7 @@ Same changes as in `@mui/x-date-pickers@7.7.0`.
|
|
|
1238
1529
|
- [TreeView] Improve TypeScript for plugins (#13380) @flaviendelangle
|
|
1239
1530
|
- [TreeView] Improve the typing of the cancelable events (#13152) @flaviendelangle
|
|
1240
1531
|
- [TreeView] Prepare support for PigmentCSS (#13412) @flaviendelangle
|
|
1241
|
-
- [TreeView] Refactor the
|
|
1532
|
+
- [TreeView] Refactor the Tree View internals to prepare for headless API (#13311) @flaviendelangle
|
|
1242
1533
|
|
|
1243
1534
|
### Docs
|
|
1244
1535
|
|
|
@@ -1253,7 +1544,7 @@ Same changes as in `@mui/x-date-pickers@7.7.0`.
|
|
|
1253
1544
|
- [core] Add `eslint-plugin-react-compiler` experimental version and rules (#13415) @JCQuintas
|
|
1254
1545
|
- [core] Minor setup cleanup (#13467) @LukasTy
|
|
1255
1546
|
- [infra] Adjust CI setup (#13448) @LukasTy
|
|
1256
|
-
- [test] Add tests for the custom slots of
|
|
1547
|
+
- [test] Add tests for the custom slots of `<TreeItem2 />` (#13314) @flaviendelangle
|
|
1257
1548
|
|
|
1258
1549
|
## 7.6.2
|
|
1259
1550
|
|
|
@@ -1418,7 +1709,7 @@ Same changes as in `@mui/x-date-pickers@7.6.0`.
|
|
|
1418
1709
|
- [docs] Fix a small typo in property comment (#13245) @Janpot
|
|
1419
1710
|
- [docs] Improve the Data Grid FAQ page (#13258) @MBilalShafi
|
|
1420
1711
|
- [docs] Removes unused lines in TreeItem2 styling (#13264) @arthurbalduini
|
|
1421
|
-
- [docs] Small improvements on accessibility
|
|
1712
|
+
- [docs] Small improvements on accessibility Data Grid doc (#13233) @arthurbalduini
|
|
1422
1713
|
- [docs] Update Pickers demo configurations (#13303) @LukasTy
|
|
1423
1714
|
|
|
1424
1715
|
### Core
|
|
@@ -1432,13 +1723,13 @@ Same changes as in `@mui/x-date-pickers@7.6.0`.
|
|
|
1432
1723
|
- [test] Use test-utils from npm (#12880) @michaldudak
|
|
1433
1724
|
- [typescript] Remove duplicate `DateRangePosition` type in favor of `RangePosition` (#13288) @LukasTy
|
|
1434
1725
|
|
|
1435
|
-
##
|
|
1726
|
+
## 7.5.1
|
|
1436
1727
|
|
|
1437
1728
|
_May 23, 2024_
|
|
1438
1729
|
|
|
1439
1730
|
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
1440
1731
|
|
|
1441
|
-
- 🧰 Improve
|
|
1732
|
+
- 🧰 Improve Tree View testing
|
|
1442
1733
|
- 📊 Add `label` to be displayed in BarChart
|
|
1443
1734
|
|
|
1444
1735
|
### Data Grid
|
|
@@ -1492,7 +1783,7 @@ Same changes as in `@mui/x-date-pickers@7.5.1`.
|
|
|
1492
1783
|
- [code-infra] Run corepack enable on all CI jobs (#13205) @Janpot
|
|
1493
1784
|
- [code-infra] Use `nx` for lerna tasks (#13166) @LukasTy
|
|
1494
1785
|
|
|
1495
|
-
##
|
|
1786
|
+
## 7.5.0
|
|
1496
1787
|
|
|
1497
1788
|
_May 17, 2024_
|
|
1498
1789
|
|
|
@@ -1614,7 +1905,7 @@ Same changes as in `@mui/x-date-pickers@7.4.0`.
|
|
|
1614
1905
|
|
|
1615
1906
|
#### `@mui/x-tree-view@7.4.0`
|
|
1616
1907
|
|
|
1617
|
-
- [TreeView] Fix props propagation and theme entry in
|
|
1908
|
+
- [TreeView] Fix props propagation and theme entry in `<TreeItem2 />` (#12889) @flaviendelangle
|
|
1618
1909
|
|
|
1619
1910
|
### Docs
|
|
1620
1911
|
|
|
@@ -1924,7 +2215,7 @@ Same changes as in `@mui/x-date-pickers@7.2.0`, plus:
|
|
|
1924
2215
|
### Docs
|
|
1925
2216
|
|
|
1926
2217
|
- [docs] Add `AxisFormatter` documentation for customizing tick/tooltip value formatting (#12700) @JCQuintas
|
|
1927
|
-
- [docs] Add file explorer example to rich
|
|
2218
|
+
- [docs] Add file explorer example to rich Tree View customization docs (#12707) @noraleonte
|
|
1928
2219
|
- [docs] Do not use import of depth 3 in the doc (#12716) @flaviendelangle
|
|
1929
2220
|
- [docs] Explain how to clip plots with composition (#12679) @alexfauquette
|
|
1930
2221
|
- [docs] Fix typo in Data Grid v7 migration page (#12720) @bfaulk96
|
|
@@ -2000,7 +2291,7 @@ Same changes as in `@mui/x-date-pickers@7.1.1`, plus:
|
|
|
2000
2291
|
#### `@mui/x-tree-view@7.1.1`
|
|
2001
2292
|
|
|
2002
2293
|
- [TreeView] Add JSDoc to all `publicAPI` methods (#12649) @flaviendelangle
|
|
2003
|
-
- [TreeView] Create
|
|
2294
|
+
- [TreeView] Create `<RichTreeViewPro />` component (not released yet) (#12610) @flaviendelangle
|
|
2004
2295
|
- [TreeView] Create Pro package (not released yet) (#12240) @flaviendelangle
|
|
2005
2296
|
- [TreeView] Fix typo in errors (#12623) @alissa-tung
|
|
2006
2297
|
- [TreeView] New API method: `setItemExpansion` (#12595) @flaviendelangle
|
|
@@ -2017,16 +2308,16 @@ Same changes as in `@mui/x-date-pickers@7.1.1`, plus:
|
|
|
2017
2308
|
- [docs] Fix typo in `getItemId` prop description (#12637) @flaviendelangle
|
|
2018
2309
|
- [docs] Make the Charts `margin` usage more visible (#12591) @alexfauquette
|
|
2019
2310
|
- [docs] Match IE 11 spacing with Material UI @oliviertassinari
|
|
2020
|
-
- [docs] Move
|
|
2311
|
+
- [docs] Move Data Grid interfaces to standard API page layout (#12016) @alexfauquette
|
|
2021
2312
|
- [docs] Remove ` around @default values (#12158) @alexfauquette
|
|
2022
2313
|
- [docs] Remove `day` from the default `dayOfWeekFormatter` function params (#12644) @LukasTy
|
|
2023
|
-
- [docs] Use
|
|
2314
|
+
- [docs] Use `<TreeItem2 />` for icon expansion example on `<RichTreeView />` (#12563) @flaviendelangle
|
|
2024
2315
|
|
|
2025
2316
|
### Core
|
|
2026
2317
|
|
|
2027
2318
|
- [core] Add cherry-pick `master` to `v6` action (#12648) @LukasTy
|
|
2028
2319
|
- [core] Fix typo in `@mui/x-tree-view-pro/themeAugmentation` (#12674) @flaviendelangle
|
|
2029
|
-
- [core] Introduce `describeTreeView` to run test on
|
|
2320
|
+
- [core] Introduce `describeTreeView` to run test on `<SimpleTreeView />` and `<RichTreeView />`, using `<TreeItem />` and `<TreeItem2 />` + migrate expansion tests (#12428) @flaviendelangle
|
|
2030
2321
|
- [core] Limit `test-types` CI step allowed memory (#12651) @LukasTy
|
|
2031
2322
|
- [core] Remove explicit `express` package (#12602) @LukasTy
|
|
2032
2323
|
- [core] Update to new embedded translations in the docs package (#12232) @Janpot
|
|
@@ -2091,7 +2382,7 @@ Same changes as in `@mui/x-date-pickers@7.1.0`, plus:
|
|
|
2091
2382
|
|
|
2092
2383
|
#### `@mui/x-tree-view@7.1.0`
|
|
2093
2384
|
|
|
2094
|
-
- [TreeView] Do not use outdated version of the state to compute new label first char in
|
|
2385
|
+
- [TreeView] Do not use outdated version of the state to compute new label first char in Rich Tree View (#12512) @flaviendelangle
|
|
2095
2386
|
|
|
2096
2387
|
### Docs
|
|
2097
2388
|
|
|
@@ -2218,7 +2509,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0`, plus:
|
|
|
2218
2509
|
|
|
2219
2510
|
#### Breaking changes
|
|
2220
2511
|
|
|
2221
|
-
- The required `nodeId` prop used by
|
|
2512
|
+
- The required `nodeId` prop used by `<TreeItem />` has been renamed to `itemId` for consistency:
|
|
2222
2513
|
|
|
2223
2514
|
```diff
|
|
2224
2515
|
<TreeView>
|
|
@@ -2371,7 +2662,7 @@ The `onNodeFocus` callback has been renamed to `onItemFocus` for consistency:
|
|
|
2371
2662
|
#### `@mui/x-tree-view@7.0.0-beta.7`
|
|
2372
2663
|
|
|
2373
2664
|
- [TreeView] Clean the usage of the term "item" and "node" in API introduced during v7 (#12368) @noraleonte
|
|
2374
|
-
- [TreeView] Introduce a new
|
|
2665
|
+
- [TreeView] Introduce a new `<TreeItem2 />` component and a new `useTreeItem2` hook (#11721) @flaviendelangle
|
|
2375
2666
|
- [TreeView] Rename `onNodeFocus` to `onItemFocus` (#12419) @noraleonte
|
|
2376
2667
|
|
|
2377
2668
|
### Docs
|
|
@@ -2429,9 +2720,9 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2429
2720
|
|
|
2430
2721
|
#### Breaking changes
|
|
2431
2722
|
|
|
2432
|
-
- The component used to animate the item children is now defined as a slot on the
|
|
2723
|
+
- The component used to animate the item children is now defined as a slot on the `<TreeItem />` component.
|
|
2433
2724
|
|
|
2434
|
-
If you were passing a `TransitionComponent` or `TransitionProps` to your
|
|
2725
|
+
If you were passing a `TransitionComponent` or `TransitionProps` to your `<TreeItem />` component,
|
|
2435
2726
|
you need to use the new `groupTransition` slot on this component:
|
|
2436
2727
|
|
|
2437
2728
|
```diff
|
|
@@ -2447,7 +2738,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2447
2738
|
</SimpleTreeView>
|
|
2448
2739
|
```
|
|
2449
2740
|
|
|
2450
|
-
- The `group` class of the
|
|
2741
|
+
- The `group` class of the `<TreeItem />` component has been renamed to `groupTransition` to match with its new slot name.
|
|
2451
2742
|
|
|
2452
2743
|
```diff
|
|
2453
2744
|
const StyledTreeItem = styled(TreeItem)({
|
|
@@ -2461,14 +2752,14 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
|
2461
2752
|
#### `@mui/x-tree-view@7.0.0-beta.6`
|
|
2462
2753
|
|
|
2463
2754
|
- [TreeView] Fix invalid nodes state when updating `props.items` (#12359) @flaviendelangle
|
|
2464
|
-
- [TreeView] In the
|
|
2755
|
+
- [TreeView] In the Rich Tree View, do not use the item id as the HTML id attribute (#12319) @flaviendelangle
|
|
2465
2756
|
- [TreeView] New instance and publicAPI method: `getItem` (#12251) @flaviendelangle
|
|
2466
2757
|
- [TreeView] Replace `TransitionComponent` and `TransitionProps` with a `groupTransition` slot (#12336) @flaviendelangle
|
|
2467
2758
|
|
|
2468
2759
|
### Docs
|
|
2469
2760
|
|
|
2470
2761
|
- [docs] Add a note about `z-index` usage in SVG (#12337) @alexfauquette
|
|
2471
|
-
- [docs]
|
|
2762
|
+
- [docs] Rich Tree View customization docs (#12231) @noraleonte
|
|
2472
2763
|
|
|
2473
2764
|
### Core
|
|
2474
2765
|
|
|
@@ -3121,7 +3412,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.0`, plus:
|
|
|
3121
3412
|
|
|
3122
3413
|
### Docs
|
|
3123
3414
|
|
|
3124
|
-
- [docs] Add `contextValue` to the headless
|
|
3415
|
+
- [docs] Add `contextValue` to the headless Tree View doc (#11705) @flaviendelangle
|
|
3125
3416
|
- [docs] Add section for the `disableSelection` prop (#11821) @flaviendelangle
|
|
3126
3417
|
- [docs] Fix brand name non-breaking space (#11758) @oliviertassinari
|
|
3127
3418
|
- [docs] Fix typo in Data Grid components page (#11775) @flaviendelangle
|
|
@@ -3144,7 +3435,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
3144
3435
|
|
|
3145
3436
|
- 🎁 The Data Grid headers have been refactored to bring immense improvements to scrolling, state management, and overall performance of the grid.
|
|
3146
3437
|
- ⚙️ 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.
|
|
3147
|
-
- 🚀 Uplift the
|
|
3438
|
+
- 🚀 Uplift the Simple Tree View customization examples (#11424) @noraleonte
|
|
3148
3439
|
- 🌍 Add Croatian (hr-HR), Portuguese (pt-PT), and Chinese (Hong Kong) (zh-HK) locales (#11668) on the Data Grid @BCaspari
|
|
3149
3440
|
- 🐞 Bugfixes
|
|
3150
3441
|
- 💔 Bump `@mui/material` peer dependency for all packages (#11692) @LukasTy
|
|
@@ -3355,7 +3646,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.9`.
|
|
|
3355
3646
|
```
|
|
3356
3647
|
|
|
3357
3648
|
- The `useTreeItem` hook has been renamed `useTreeItemState`.
|
|
3358
|
-
This will help create a new headless version of the
|
|
3649
|
+
This will help create a new headless version of the Tree Item component based on a future `useTreeItem` hook.
|
|
3359
3650
|
|
|
3360
3651
|
```diff
|
|
3361
3652
|
-import { TreeItem, useTreeItem } from '@mui/x-tree-view/TreeItem';
|
|
@@ -3455,13 +3746,13 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.9`.
|
|
|
3455
3746
|
- [docs] Cleanup and fix Pickers Playground styling (#11700) @LukasTy
|
|
3456
3747
|
- [docs] First draft of the Tree View custom plugin doc (#11564) @flaviendelangle
|
|
3457
3748
|
- [docs] Fix Pickers migration syntax and diffs (#11695) @LukasTy
|
|
3458
|
-
- [docs] Fix generated
|
|
3749
|
+
- [docs] Fix generated Tree View API docs (#11737) @LukasTy
|
|
3459
3750
|
- [docs] Generate docs for Tree View slots (#11730) @flaviendelangle
|
|
3460
3751
|
- [docs] Improve codemod for v7 (#11650) @oliviertassinari
|
|
3461
|
-
- [docs] Improve
|
|
3752
|
+
- [docs] Improve Data Grid `pageSizeOptions` prop documentation (#11682) @oliviertassinari
|
|
3462
3753
|
- [docs] Parse markdown on API docs demo titles (#11728) @LukasTy
|
|
3463
3754
|
- [docs] Remove the description from the `className` prop (#11693) @oliviertassinari
|
|
3464
|
-
- [docs] Uplift
|
|
3755
|
+
- [docs] Uplift Simple Tree View customization examples (#11424) @noraleonte
|
|
3465
3756
|
- [docs] Uplift the Date Pickers playground (#11555) @danilo-leal
|
|
3466
3757
|
|
|
3467
3758
|
### Core
|
|
@@ -3538,16 +3829,16 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.8`.
|
|
|
3538
3829
|
|
|
3539
3830
|
### Tree View / `@mui/x-tree-view@7.0.0-alpha.8`
|
|
3540
3831
|
|
|
3541
|
-
- [
|
|
3542
|
-
- [
|
|
3832
|
+
- [TreeView] Cleanup `onKeyDown` handler (#11481) @flaviendelangle
|
|
3833
|
+
- [TreeView] Define the parameters used by each plugin to avoid listing them in each component (#11473) @flaviendelangle
|
|
3543
3834
|
|
|
3544
3835
|
### Docs
|
|
3545
3836
|
|
|
3546
3837
|
- [docs] Fix parsing of `x-date-pickers-pro` demo adapter imports (#11628) @LukasTy
|
|
3547
3838
|
- [docs] Improve `git diff` format @oliviertassinari
|
|
3548
3839
|
- [docs] Push up the MUI X brand (#11533) @oliviertassinari
|
|
3549
|
-
- [docs] Remove old
|
|
3550
|
-
- [docs] Improve Server-side
|
|
3840
|
+
- [docs] Remove old Data Grid translation files (#11646) @cherniavskii
|
|
3841
|
+
- [docs] Improve Server-side Data Grid docs (#11589) @oliviertassinari
|
|
3551
3842
|
- [docs] Improve charts landing page (#11570) @oliviertassinari
|
|
3552
3843
|
|
|
3553
3844
|
### Core
|
|
@@ -3566,7 +3857,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
3566
3857
|
|
|
3567
3858
|
- 🎁 New component to create a Tree View from a structured data source:
|
|
3568
3859
|
|
|
3569
|
-
You can now directly pass your data to the
|
|
3860
|
+
You can now directly pass your data to the `<RichTreeView />` component instead of manually converting it into JSX `<TreeItem />` components:
|
|
3570
3861
|
|
|
3571
3862
|
```tsx
|
|
3572
3863
|
const ITEMS = [
|
|
@@ -4057,7 +4348,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
4057
4348
|
|
|
4058
4349
|
- The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
|
|
4059
4350
|
|
|
4060
|
-
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the
|
|
4351
|
+
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the Data Grid exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
|
|
4061
4352
|
|
|
4062
4353
|
- The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
|
|
4063
4354
|
|
|
@@ -4769,7 +5060,7 @@ A special shoutout to thank the 12 contributors who made this release possible.
|
|
|
4769
5060
|
- 🚀 First v7 alpha release
|
|
4770
5061
|
- ✨ Fix aggregation label not showing when `renderHeader` is used (#10961) @cherniavskii
|
|
4771
5062
|
- 📘 Server side data source [early documentation](https://mui.com/x/react-data-grid/server-side-data/)
|
|
4772
|
-
- 💫 New recipes added for the
|
|
5063
|
+
- 💫 New recipes added for the Data Grid
|
|
4773
5064
|
- 📈 `<ChartsReferenceLine />` component is now available
|
|
4774
5065
|
- 🌍 Add Basque (eu) locale, improve Czech (cs-CZ) and Spanish (es-ES) locales
|
|
4775
5066
|
- 🐞 Bugfixes
|
|
@@ -4897,7 +5188,7 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
|
|
|
4897
5188
|
|
|
4898
5189
|
### Core
|
|
4899
5190
|
|
|
4900
|
-
- [core] Adds migration docs for
|
|
5191
|
+
- [core] Adds migration docs for Charts, Pickers, and Tree View (#10926) @michelengelen
|
|
4901
5192
|
- [core] Bump monorepo (#10959) @LukasTy
|
|
4902
5193
|
- [core] Changed prettier branch value to next (#10917) @michelengelen
|
|
4903
5194
|
- [core] Fix GitHub title tag consistency @oliviertassinari
|
package/index.js
CHANGED
package/modern/index.js
CHANGED
|
@@ -5,7 +5,7 @@ export function showInvalidLicenseKeyError() {
|
|
|
5
5
|
showError(['MUI X: Invalid license key.', '', "Your MUI X license key format isn't valid. It could be because the license key is missing a character or has a typo.", '', 'To solve the issue, you need to double check that `setLicenseKey()` is called with the right argument', 'Please check the license key installation https://mui.com/r/x-license-key-installation.']);
|
|
6
6
|
}
|
|
7
7
|
export function showLicenseKeyPlanMismatchError() {
|
|
8
|
-
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use
|
|
8
|
+
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use Data Grid Premium with a license key for the Pro plan.', '', 'To solve the issue, you can upgrade your plan from Pro to Premium at https://mui.com/r/x-get-license?scope=premium.', "Of if you didn't intend to use Premium features, you can replace the import of `@mui/x-data-grid-premium` with `@mui/x-data-grid-pro`."]);
|
|
9
9
|
}
|
|
10
10
|
export function showNotAvailableInInitialProPlanError() {
|
|
11
11
|
showError(['MUI X: Component not included in your license.', '', 'The component you are trying to use is not included in the Pro Plan you purchased.', '', 'Your license is from an old version of the Pro Plan that is only compatible with the `@mui/x-data-grid-pro` and `@mui/x-date-pickers-pro` commercial packages.', '', 'To start using another Pro package, please consider reaching to our sales team to upgrade your license or visit https://mui.com/r/x-get-license to get a new license key.']);
|
package/node/index.js
CHANGED
|
@@ -17,7 +17,7 @@ function showInvalidLicenseKeyError() {
|
|
|
17
17
|
showError(['MUI X: Invalid license key.', '', "Your MUI X license key format isn't valid. It could be because the license key is missing a character or has a typo.", '', 'To solve the issue, you need to double check that `setLicenseKey()` is called with the right argument', 'Please check the license key installation https://mui.com/r/x-license-key-installation.']);
|
|
18
18
|
}
|
|
19
19
|
function showLicenseKeyPlanMismatchError() {
|
|
20
|
-
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use
|
|
20
|
+
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use Data Grid Premium with a license key for the Pro plan.', '', 'To solve the issue, you can upgrade your plan from Pro to Premium at https://mui.com/r/x-get-license?scope=premium.', "Of if you didn't intend to use Premium features, you can replace the import of `@mui/x-data-grid-premium` with `@mui/x-data-grid-pro`."]);
|
|
21
21
|
}
|
|
22
22
|
function showNotAvailableInInitialProPlanError() {
|
|
23
23
|
showError(['MUI X: Component not included in your license.', '', 'The component you are trying to use is not included in the Pro Plan you purchased.', '', 'Your license is from an old version of the Pro Plan that is only compatible with the `@mui/x-data-grid-pro` and `@mui/x-date-pickers-pro` commercial packages.', '', 'To start using another Pro package, please consider reaching to our sales team to upgrade your license or visit https://mui.com/r/x-get-license to get a new license key.']);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-license",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.21.0",
|
|
4
4
|
"description": "MUI X License verification",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"directory": "packages/x-license"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.25.
|
|
28
|
-
"@mui/utils": "^5.16.6"
|
|
27
|
+
"@babel/runtime": "^7.25.7",
|
|
28
|
+
"@mui/utils": "^5.16.6 || ^6.0.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": "^17.0.0 || ^18.0.0"
|
|
@@ -5,7 +5,7 @@ export function showInvalidLicenseKeyError() {
|
|
|
5
5
|
showError(['MUI X: Invalid license key.', '', "Your MUI X license key format isn't valid. It could be because the license key is missing a character or has a typo.", '', 'To solve the issue, you need to double check that `setLicenseKey()` is called with the right argument', 'Please check the license key installation https://mui.com/r/x-license-key-installation.']);
|
|
6
6
|
}
|
|
7
7
|
export function showLicenseKeyPlanMismatchError() {
|
|
8
|
-
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use
|
|
8
|
+
showError(['MUI X: License key plan mismatch.', '', 'Your use of MUI X is not compatible with the plan of your license key. The feature you are trying to use is not included in the plan of your license key. This happens if you try to use Data Grid Premium with a license key for the Pro plan.', '', 'To solve the issue, you can upgrade your plan from Pro to Premium at https://mui.com/r/x-get-license?scope=premium.', "Of if you didn't intend to use Premium features, you can replace the import of `@mui/x-data-grid-premium` with `@mui/x-data-grid-pro`."]);
|
|
9
9
|
}
|
|
10
10
|
export function showNotAvailableInInitialProPlanError() {
|
|
11
11
|
showError(['MUI X: Component not included in your license.', '', 'The component you are trying to use is not included in the Pro Plan you purchased.', '', 'Your license is from an old version of the Pro Plan that is only compatible with the `@mui/x-data-grid-pro` and `@mui/x-date-pickers-pro` commercial packages.', '', 'To start using another Pro package, please consider reaching to our sales team to upgrade your license or visit https://mui.com/r/x-get-license to get a new license key.']);
|