@mui/x-tree-view 6.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.
Files changed (76) hide show
  1. package/CHANGELOG.md +3682 -0
  2. package/LICENSE +21 -0
  3. package/README.md +34 -0
  4. package/TreeItem/TreeItem.d.ts +13 -0
  5. package/TreeItem/TreeItem.js +392 -0
  6. package/TreeItem/TreeItem.types.d.ts +84 -0
  7. package/TreeItem/TreeItem.types.js +1 -0
  8. package/TreeItem/TreeItemContent.d.ts +52 -0
  9. package/TreeItem/TreeItemContent.js +101 -0
  10. package/TreeItem/index.d.ts +5 -0
  11. package/TreeItem/index.js +4 -0
  12. package/TreeItem/package.json +6 -0
  13. package/TreeItem/treeItemClasses.d.ts +23 -0
  14. package/TreeItem/treeItemClasses.js +6 -0
  15. package/TreeItem/useTreeItem.d.ts +10 -0
  16. package/TreeItem/useTreeItem.js +68 -0
  17. package/TreeView/TreeView.d.ts +14 -0
  18. package/TreeView/TreeView.js +854 -0
  19. package/TreeView/TreeView.types.d.ts +170 -0
  20. package/TreeView/TreeView.types.js +1 -0
  21. package/TreeView/TreeViewContext.d.ts +6 -0
  22. package/TreeView/TreeViewContext.js +31 -0
  23. package/TreeView/descendants.d.ts +42 -0
  24. package/TreeView/descendants.js +186 -0
  25. package/TreeView/index.d.ts +3 -0
  26. package/TreeView/index.js +3 -0
  27. package/TreeView/package.json +6 -0
  28. package/TreeView/treeViewClasses.d.ts +7 -0
  29. package/TreeView/treeViewClasses.js +6 -0
  30. package/index.d.ts +2 -0
  31. package/index.js +9 -0
  32. package/internals/models.d.ts +1 -0
  33. package/internals/models.js +1 -0
  34. package/legacy/TreeItem/TreeItem.js +391 -0
  35. package/legacy/TreeItem/TreeItem.types.js +1 -0
  36. package/legacy/TreeItem/TreeItemContent.js +98 -0
  37. package/legacy/TreeItem/index.js +4 -0
  38. package/legacy/TreeItem/treeItemClasses.js +6 -0
  39. package/legacy/TreeItem/useTreeItem.js +67 -0
  40. package/legacy/TreeView/TreeView.js +907 -0
  41. package/legacy/TreeView/TreeView.types.js +1 -0
  42. package/legacy/TreeView/TreeViewContext.js +41 -0
  43. package/legacy/TreeView/descendants.js +199 -0
  44. package/legacy/TreeView/index.js +3 -0
  45. package/legacy/TreeView/treeViewClasses.js +6 -0
  46. package/legacy/index.js +9 -0
  47. package/legacy/internals/models.js +1 -0
  48. package/modern/TreeItem/TreeItem.js +391 -0
  49. package/modern/TreeItem/TreeItem.types.js +1 -0
  50. package/modern/TreeItem/TreeItemContent.js +101 -0
  51. package/modern/TreeItem/index.js +4 -0
  52. package/modern/TreeItem/treeItemClasses.js +6 -0
  53. package/modern/TreeItem/useTreeItem.js +68 -0
  54. package/modern/TreeView/TreeView.js +853 -0
  55. package/modern/TreeView/TreeView.types.js +1 -0
  56. package/modern/TreeView/TreeViewContext.js +31 -0
  57. package/modern/TreeView/descendants.js +186 -0
  58. package/modern/TreeView/index.js +3 -0
  59. package/modern/TreeView/treeViewClasses.js +6 -0
  60. package/modern/index.js +9 -0
  61. package/modern/internals/models.js +1 -0
  62. package/node/TreeItem/TreeItem.js +400 -0
  63. package/node/TreeItem/TreeItem.types.js +5 -0
  64. package/node/TreeItem/TreeItemContent.js +109 -0
  65. package/node/TreeItem/index.js +38 -0
  66. package/node/TreeItem/treeItemClasses.js +15 -0
  67. package/node/TreeItem/useTreeItem.js +76 -0
  68. package/node/TreeView/TreeView.js +862 -0
  69. package/node/TreeView/TreeView.types.js +5 -0
  70. package/node/TreeView/TreeViewContext.js +40 -0
  71. package/node/TreeView/descendants.js +194 -0
  72. package/node/TreeView/index.js +27 -0
  73. package/node/TreeView/treeViewClasses.js +15 -0
  74. package/node/index.js +34 -0
  75. package/node/internals/models.js +5 -0
  76. package/package.json +59 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3682 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## 6.11.0
7
+
8
+ _Aug 4, 2023_
9
+
10
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - ⌚️ Move the tree view component from `@mui/lab` package
13
+
14
+ The `<TreeView />` component has been moved to the MUI X repository.
15
+ It is now accessible from its own package: `@mui/x-tree-view`.
16
+
17
+ - 🌍 Improve Hebrew (he-IL), Finnish (fi-FI), and Italian (it-IT) locales on the data grid
18
+ - 🐞 Bugfixes
19
+ - 📚 Documentation improvements
20
+
21
+ ### Data Grid
22
+
23
+ #### `@mui/x-data-grid@v6.11.0`
24
+
25
+ - [DataGrid] Add `ariaV7` experimental flag (#9496) @cherniavskii
26
+ - [DataGrid] Fix cell size when column width is set to `undefined` (#9871) @gitstart
27
+ - [l10n] Improve Hebrew (he-IL) locale (#9820) @itayG98
28
+ - [l10n] Improve Finnish (fi-FI) locale (#9848) @sambbaahh
29
+ - [l10n] Improve Italian (it-IT) locale (#9627) @fabio-rizzello-omnia
30
+
31
+ #### `@mui/x-data-grid-pro@v6.11.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
32
+
33
+ Same changes as in `@mui/x-data-grid@v6.11.0`.
34
+
35
+ #### `@mui/x-data-grid-premium@v6.11.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
36
+
37
+ Same changes as in `@mui/x-data-grid-pro@v6.11.0`.
38
+
39
+ ### Date Pickers
40
+
41
+ #### `@mui/x-date-pickers@v6.11.0`
42
+
43
+ - [fields] Correctly handle events with a complete value insertion (#9896) @LukasTy
44
+ - [fields] Fix hours editing on dayjs with timezone and DST (#9901) @flaviendelangle
45
+ - [fields] Fix section clearing with timezone (#9819) @flaviendelangle
46
+ - [pickers] Add `CalendarHeader` slot (#7784) @flaviendelangle
47
+ - [pickers] Allow to override the `InputProps` of the `TextField` using the `slotProps` (#9849) @flaviendelangle
48
+ - [pickers] Allow to override the opening aria text using the `localeText` prop on the pickers (#9870) @flaviendelangle
49
+ - [pickers] Fix `sx` and `className` props on `MobileDateRangePicker` (#9853) @flaviendelangle
50
+ - [pickers] Fix default descriptions (#9887) @LukasTy
51
+ - [pickers] Fix offset management on dayjs adapter (#9884) @flaviendelangle
52
+ - [pickers] Use device motion reduction preference (#9823) @LukasTy
53
+
54
+ #### `@mui/x-date-pickers-pro@v6.11.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
55
+
56
+ Same changes as in `@mui/x-date-pickers@v6.11.0`.
57
+
58
+ ### Charts / `@mui/x-charts@v6.0.0-alpha.6`
59
+
60
+ - [charts] Add TS definition to the exported elements (#9885) @alexfauquette
61
+ - [charts] Add sparkline (#9662) @alexfauquette
62
+ - [charts] Fix missing configuration types (#9886) @alexfauquette
63
+ - [charts] Introduce dataset to simplify plot of data from API (#9774) @alexfauquette
64
+
65
+ ### Tree View / `@mui/x-tree-view@v6.0.0-alpha.0`
66
+
67
+ - [TreeView] Add missing exported types (#9862) @flaviendelangle
68
+ - [TreeView] Add tree view to changelog generator script (#9903) @MBilalShafi
69
+ - [TreeView] Create the package on the X repository (#9798) @flaviendelangle
70
+ - [TreeView] Improve props typing (#9855) @flaviendelangle
71
+
72
+ ### Docs
73
+
74
+ - [docs] Add Tree View doc (#9825) @flaviendelangle
75
+ - [docs] Add charts nav item (#9821) @LukasTy
76
+ - [docs] Add charts to MUI X introduction pages (#9704) @joserodolfofreitas
77
+ - [docs] Add example for avoiding picker views layout shift (#9781) @noraleonte
78
+ - [docs] Consistency of Next.js App Router @oliviertassinari
79
+ - [docs] Fix API page regression: bring back slots section (#9866) @alexfauquette
80
+ - [docs] Fix demo using Pro while it's MIT (#9842) @oliviertassinari
81
+ - [docs] Get ready for next docs-infra change @oliviertassinari
82
+ - [docs] Improve the slots documentation `Recommended usage` section (#9892) @flaviendelangle
83
+
84
+ ### Core
85
+
86
+ - [core] Fix font loading issue dev-mode (#9843) @oliviertassinari
87
+ - [core] Fix pipeline (#9894) @LukasTy
88
+ - [core] Fix the link-check script on Windows (#9888) @alexfauquette
89
+ - [core] Fix v7 capitalization (#9878) @oliviertassinari
90
+ - [core] Regen doc (#9902) @flaviendelangle
91
+ - [core] Remove benchmark package (#9413) @LukasTy
92
+ - [core] Stop using the deprecated `JSX` global namespace (#9854) @flaviendelangle
93
+ - [core] Update monorepo (#9846) @flaviendelangle
94
+ - [core] Update tree data API docs (#9827) @cherniavskii
95
+ - [test] Add pickers e2e tests (#9747) @LukasTy
96
+ - [test] Data grid e2e tests follow-up (#9822) @cherniavskii
97
+
98
+ ## 6.10.2
99
+
100
+ _Jul 27, 2023_
101
+
102
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
103
+
104
+ - 🚀 Improve scatter charts performance
105
+ - 📚 Redesigned component API documentation and side navigation
106
+ - 🐞 Bugfixes
107
+
108
+ ### Data Grid
109
+
110
+ #### `@mui/x-data-grid@v6.10.2`
111
+
112
+ - [DataGrid] Fix quick filter & aggregation error (#9729) @romgrk
113
+ - [DataGrid] Fix row click propagation causing error in nested grid (#9741) @cherniavskii
114
+ - [DataGrid] Keep focused cell in the DOM (#7357) @yaredtsy
115
+ - [l10n] Improve Finnish (fi-FI) locale (#9746) @sambbaahh
116
+
117
+ #### `@mui/x-data-grid-pro@v6.10.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
118
+
119
+ Same changes as in `@mui/x-data-grid@v6.10.2`.
120
+
121
+ #### `@mui/x-data-grid-premium@v6.10.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
122
+
123
+ Same changes as in `@mui/x-data-grid-pro@v6.10.2`, plus:
124
+
125
+ - [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
126
+
127
+ ### Date Pickers
128
+
129
+ #### `@mui/x-date-pickers@v6.10.2`
130
+
131
+ - [pickers] Remove the `endOfDate` from `DigitalClock` timeOptions (#9800) @noraleonte
132
+
133
+ #### `@mui/x-date-pickers-pro@v6.10.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
134
+
135
+ Same changes as in `@mui/x-date-pickers@v6.10.2`.
136
+
137
+ ### Charts / `@mui/x-charts@v6.0.0-alpha.5`
138
+
139
+ - [charts] Improve JSDoc for axis-related props (#9779) @flaviendelangle
140
+ - [charts] Improve performances of Scatter component (#9527) @flaviendelangle
141
+
142
+ ### Docs
143
+
144
+ - [docs] Add `pnpm` in more places @oliviertassinari
145
+ - [docs] Add `pnpm` installation instructions for MUI X (#9707) @richbustos
146
+ - [docs] Align pickers "uncontrolled vs controlled" sections (#9772) @LukasTy
147
+ - [docs] Apply style guide to the data grid Layout page (#9673) @richbustos
148
+ - [docs] Differentiate between packages in `slotProps` docs (#9668) @cherniavskii
149
+ - [docs] Fix charts width in axis pages (#9801) @alexfauquette
150
+ - [docs] Fix wrong prop name in the Editing page (#9753) @m4theushw
151
+ - [docs] New component API page and side nav design (#9187) @alexfauquette
152
+ - [docs] Update overview page with up to date information about the plans (#9512) @joserodolfofreitas
153
+
154
+ ### Core
155
+
156
+ - [core] Use PR charts version in preview (#9787) @alexfauquette
157
+ - [license] Allow overriding the license on specific parts of the page (#9717) @Janpot
158
+ - [license] Throw in dev mode after 30 days (#9701) @oliviertassinari
159
+ - [license] Only throw in dev mode (#9803) @oliviertassinari
160
+ - [test] Fail the CI when new unexpected files are created (#9728) @oliviertassinari
161
+
162
+ ## 6.10.1
163
+
164
+ _Jul 20, 2023_
165
+
166
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
167
+
168
+ - 🎁 Fix CSV export for values containing double quotes
169
+ - 🚀 Improve tree data performance
170
+ - 🐞 Bugfixes
171
+ - 📚 Documentation improvements
172
+
173
+ ### Data Grid
174
+
175
+ #### `@mui/x-data-grid@v6.10.1`
176
+
177
+ - [DataGrid] Filtering performance: compile filter applier with `eval` (#9635) @romgrk
178
+ - [DataGrid] Fix CSV export for values containing double quotes (#9667) @cherniavskii
179
+ - [DataGrid] Fix column type change not working correctly (#9594) @cherniavskii
180
+ - [DataGrid] Fix quick filter `undefined` row error (#9708) @romgrk
181
+ - [DataGrid] Prevent `viewportOuterSize.height` going negative (#9664) @gitstart
182
+ - [DataGrid] Update focused cell on page change via keyboard (#9203) @m4theushw
183
+ - [DataGrid] Wait for remote stylesheets to load before print (#9665) @cherniavskii
184
+
185
+ #### `@mui/x-data-grid-pro@v6.10.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
186
+
187
+ Same changes as in `@mui/x-data-grid@v6.10.1`, plus:
188
+
189
+ - [DataGridPro] Improve tree data performance (#9682) @cherniavskii
190
+ - [DataGridPro] Prevent affecting cells from child DataGrid when resizing a column (#9670) @m4theushw
191
+
192
+ #### `@mui/x-data-grid-premium@v6.10.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
193
+
194
+ Same changes as in `@mui/x-data-grid-pro@v6.10.1`.
195
+
196
+ ### Date Pickers
197
+
198
+ #### `@mui/x-date-pickers@v6.10.1`
199
+
200
+ - [fields] Fix `format` and `value` update order (#9715) @LukasTy
201
+ - [pickers] Remove `require` usage in comment (#9675) @LukasTy
202
+
203
+ #### `@mui/x-date-pickers-pro@v6.10.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
204
+
205
+ Same changes as in `@mui/x-date-pickers@v6.10.1`.
206
+
207
+ ### Charts / `@mui/x-charts@v6.0.0-alpha.4`
208
+
209
+ - [charts] Fix blinking in responsive charts and extremums computation for line charts (#9734) @alexfauquette
210
+ - [charts] Use ESM with imports (#9645) @alexfauquette
211
+
212
+ ### Docs
213
+
214
+ - [docs] Add additional note for license key installation on Next.js (#9575) @joserodolfofreitas
215
+ - [docs] Add paragraph about managing focus of custom edit components (#9658) @m4theushw
216
+ - [docs] Add unsorted icon slot to the custom sort icons demo (#9169) @d4rekanguok
217
+ - [docs] Disable ad for onboarding pages (#9700) @oliviertassinari
218
+ - [docs] Disabling ads without toolbar has no effect @oliviertassinari
219
+ - [docs] Fix Date Pickers usage to Title Case (#9680) @richbustos
220
+ - [docs] Fix sorting in `CustomSortIcons` demo (#9656) @MBilalShafi
221
+ - [docs] Improve the UI for pickers introduction (#9644) @alexfauquette
222
+ - [docs] Improve the demo design @oliviertassinari
223
+ - [docs] Localization progress, polish (#9672) @oliviertassinari
224
+ - [docs] Normalize the WIP items (#9671) @oliviertassinari
225
+
226
+ ### Core
227
+
228
+ - [core] Add `validate` command (#9714) @romgrk
229
+ - [CHANGELOG] Update generator to new format @oliviertassinari
230
+
231
+ ## 6.10.0
232
+
233
+ _Jul 13, 2023_
234
+
235
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
236
+
237
+ - ⚡ Improve data grid filtering performance
238
+ - 🎁 Include column groups in the CSV export
239
+ - 🌍 Improve Polish (pl-PL) locale for the data grid
240
+ - 🌍 Improve Norwegian (nb-NO) locale for the pickers
241
+
242
+ ### Data Grid
243
+
244
+ #### `@mui/x-data-grid@6.10.0`
245
+
246
+ - [DataGrid] Allow to exclude hidden columns from the quick filter (#9610) @cherniavskii
247
+ - [DataGrid] Filtering performance: remove indirection (#9334) @romgrk
248
+ - [DataGrid] Fix props propagation on `GridToolbarQuickFilter` component (#9633) @giladappsforce
249
+ - [DataGrid] Fix quick filter input lag (#9630) @cherniavskii
250
+ - [DataGrid] Include column groups in the CSV export (#9585) @cherniavskii
251
+ - [DataGrid] Make `rowExpansionChange` event public (#9611) @MBilalShafi
252
+ - [l10n] Improve Polish (pl-PL) locale (#9625) @ch1llysense
253
+
254
+ #### `@mui/x-data-grid-pro@6.10.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
255
+
256
+ Same changes as in `@mui/x-data-grid@6.10.0`.
257
+
258
+ #### `@mui/x-data-grid-premium@6.10.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
259
+
260
+ Same changes as in `@mui/x-data-grid-pro@6.10.0`.
261
+
262
+ ### Date Pickers
263
+
264
+ #### `@mui/x-date-pickers@6.10.0`
265
+
266
+ - [pickers] Fix date calendar issues (#9652) @LukasTy
267
+ - [l10n] Improve Norwegian (nb-NO) locale (#9608) @JosteinBrevik
268
+
269
+ #### `@mui/x-date-pickers-pro@6.10.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
270
+
271
+ Same changes as in `@mui/x-date-pickers@6.10.0`.
272
+
273
+ ### Charts / `@mui/x-charts@6.0.0-alpha.3`
274
+
275
+ - [charts] Allow configuring bar size (#9632) @alexfauquette
276
+ - [charts] Simplify custom components creation (#9561) @alexfauquette
277
+
278
+ ### Docs
279
+
280
+ - [docs] Add slot components usage alert (#9660) @LukasTy
281
+ - [docs] Fix casing Cell selection @oliviertassinari
282
+
283
+ ### Core
284
+
285
+ - [core] Disambiguate eslint plugin name @oliviertassinari
286
+ - [core] Update priority support issue template and prompt (#9574) @DanailH
287
+ - [CHANGELOG] Clarify each plan (#9446) @oliviertassinari
288
+ - [license] Fix error terminology (#9614) @oliviertassinari
289
+
290
+ ## 6.9.2
291
+
292
+ _Jul 6, 2023_
293
+
294
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
295
+
296
+ - 🚀 Auto-scroll when making range selection (#8661) @m4theushw
297
+
298
+ - 📚 New page: Components lifecycle (#8372) @flaviendelangle
299
+
300
+ Clarify pickers events and value updates in a [single docs page](https://mui.com/x/react-date-pickers/lifecycle/).
301
+
302
+ - 🥧 Add pie chart component
303
+
304
+ They are fresh from the code editor. You can visit [pie charts docs](https://mui.com/x/react-charts/pie/) or their [demo page](https://mui.com/x/react-charts/pie-demo/).
305
+
306
+ <img width="380" alt="pie-charts" src="https://github.com/mui/mui-x/assets/13808724/fe908c45-803c-4316-b913-dbd2f9f0551e">
307
+
308
+ - 🐞 Bugfixes
309
+
310
+ - 📚 Documentation improvements
311
+
312
+ ### Data Grid
313
+
314
+ #### `@mui/x-data-grid@6.9.2`
315
+
316
+ - [DataGrid] Fix `RangeError` when using flex columns (#9554) @cherniavskii
317
+ - [DataGrid] Fix React 17 editing bug (#9530) @romgrk
318
+ - [DataGrid] Use `getRowId` in filtering (#9564) @romgrk
319
+ - [DataGrid] Correctly reflect `TablePagination`'s `rowsPerPageOptions` shape to `pageSizeOptions` (#9438) @burakkgunduzz
320
+ - [l10n] Improve Spanish (es-ES) locale (#9500) @fufex
321
+
322
+ #### `@mui/x-data-grid-pro@6.9.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
323
+
324
+ Same changes as in `@mui/x-data-grid@6.9.2`.
325
+
326
+ #### `@mui/x-data-grid-premium@6.9.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
327
+
328
+ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
329
+
330
+ - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
331
+
332
+ ### Date Pickers
333
+
334
+ #### `@mui/x-date-pickers@6.9.2`
335
+
336
+ - [pickers] Forward digital clock classes (#9555) @YoonjiJang
337
+ - [pickers] Rename `internal` folder to `internals` on `@mui/x-date-picker-pro` (#9571) @flaviendelangle
338
+
339
+ #### `@mui/x-date-pickers-pro@6.9.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
340
+
341
+ Same changes as in `@mui/x-date-pickers@6.9.2`.
342
+
343
+ ### Charts / `@mui/x-charts@6.0.0-alpha.2`
344
+
345
+ - [charts] Add pie chart component (#9395) @alexfauquette
346
+
347
+ ### Docs
348
+
349
+ - [docs] Add pickers playground (#9164) @LukasTy
350
+ - [docs] Fix API links for pickers (#9573) @alexfauquette
351
+ - [docs] Fix demos with `ToggleButtonGroup` (#9548) @flaviendelangle
352
+ - [docs] Fix typos in pagination documentation page (#9332) @RatherBeLunar
353
+ - [docs] Hide ads on paid content @oliviertassinari
354
+ - [docs] Move the charts in the sidebar (#9437) @flaviendelangle
355
+ - [docs] New page: Components lifecycle (#8372) @flaviendelangle
356
+ - [docs] Remove outdated header tag @oliviertassinari
357
+
358
+ ### Core
359
+
360
+ - [core] Fix typo in priority support @oliviertassinari
361
+ - [core] Remove mention of Crowdin @oliviertassinari
362
+
363
+ ## 6.9.1
364
+
365
+ _Jun 30, 2023_
366
+
367
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
368
+
369
+ - 🔎 Add experimental API for faster filtering performance
370
+ - 🌍 Add Chinese (Hong Kong) (zh-HK) locale on the pickers
371
+ - 🌍 Improve Romanian (ro-RO) and Hungarian (hu-HU) translations on the pickers and the data grid
372
+ - 🐞 Bugfixes
373
+ - 📚 Documentation improvements
374
+
375
+ ### Data Grid
376
+
377
+ #### `@mui/x-data-grid@6.9.1`
378
+
379
+ - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
380
+ - [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
381
+ - [DataGrid] Don't forward `editCellState` prop to DOM element (#9501) @m4theushw
382
+ - [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
383
+ - [DataGrid] Fix `nextFieldToFocus` to always be a visible column field when <kbd>Tab</kbd> key is pressed (#8314) @yaredtsy
384
+ - [DataGrid] Fix `Maximum call stack size exceeded` error when using fractional width (#9516) @cherniavskii
385
+ - [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
386
+
387
+ #### `@mui/x-data-grid-pro@6.9.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
388
+
389
+ Same changes as in `@mui/x-data-grid@6.9.1`, plus:
390
+
391
+ - [DataGridPro] Don't throw error in column pinning (#9507) @romgrk
392
+ - [DataGridPro] Fix bug with `checkboxSelection` and treeData/grouping (#9418) @romgrk
393
+
394
+ #### `@mui/x-data-grid-premium@6.9.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
395
+
396
+ Same changes as in `@mui/x-data-grid-pro@6.9.1`.
397
+
398
+ ### Date Pickers
399
+
400
+ #### `@mui/x-date-pickers@6.9.1`
401
+
402
+ - [DateTimePicker] Scroll to Digital Clock section only when selection changes (#9434) @LukasTy
403
+ - [pickers] Handle `keyDown` only when input is focused (#9481) @LukasTy
404
+ - [pickers] Add `referenceDate` prop on `TimeClock`, `DigitalClock` and `MultiSectionDigitalClock` (#9356) @flaviendelangle
405
+ - [l10n] Add Chinese (Hong Kong) (zh-HK) locale (#9468) @samchiu90
406
+ - [l10n] Improve Romanian (ro-RO) translations (#9436) @noraleonte
407
+
408
+ #### `@mui/x-date-pickers-pro@6.9.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
409
+
410
+ Same changes as in `@mui/x-date-pickers@6.9.1`.
411
+
412
+ ### Charts / `@mui/x-charts@6.0.0-alpha.1`
413
+
414
+ - [charts] Take responsive container from data grid (#9497) @alexfauquette
415
+ - [charts] Update README.md (#9426) @alexfauquette
416
+ - [charts] Fix typo and small refactor (#9526) @flaviendelangle
417
+
418
+ ### Docs
419
+
420
+ - [docs] Add a recipe limiting to one expanded detail panel at a time (#9488) @cherniavskii
421
+ - [docs] Add missing upcoming flag without issue (#9449) @oliviertassinari
422
+ - [docs] Fix 301 when opening the charts @oliviertassinari
423
+ - [docs] Fix 404 link (#9435) @alexfauquette
424
+ - [docs] Fix `productId` logic (#9451) @oliviertassinari
425
+ - [docs] Update charts overview.md (#9429) @brentertz
426
+ - [docs] Avoid systematic usage of `"bg": "inline"` (#9499) @alexfauquette
427
+ - [docs] Display plan icon in ToC (#9490) @cherniavskii
428
+ - [docs] Remove "product" markdown header (#9517) @oliviertassinari
429
+
430
+ ### Core
431
+
432
+ - [core] Add `edit-mode` to priority support action (#9483) @DanailH
433
+ - [core] Fix priority support prompt action (#9472) @DanailH
434
+ - [core] Update `uses` for priority support action (#9480) @DanailH
435
+ - [core] Bumb update monorepo (#9476) @alexfauquette
436
+ - [CHANGELOG] Fix media quality (#9439) @oliviertassinari
437
+ - [CHANGELOG] Remove height img attribute @oliviertassinari
438
+ - [test] Skip flaky row pinning tests in JSDOM (#9511) @cherniavskii
439
+
440
+ ## 6.9.0
441
+
442
+ _Jun 22, 2023_
443
+
444
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
445
+
446
+ - 🎁 We released a new open-source package: `@mui/x-charts`. This package aims at simplifying the integration of charts into your dashboards. 📊
447
+
448
+ <img width="512" alt="charts" src="https://github.com/mui/mui-x/assets/3165635/41201d3c-16a4-442d-a230-68356e6b433d">
449
+
450
+ It already contains [line](https://mui.com/x/react-charts/lines/), [bar](https://mui.com/x/react-charts/bars/), and [scatter](https://mui.com/x/react-charts/scatter/) charts, with basic customization features. Check out the [documentation](https://mui.com/x/react-charts/) to see what it can do, and open issues to get the feature you need implemented.
451
+
452
+ - 🚀 Introducing UTC and timezone support for pickers.
453
+
454
+ <img width="774" src="https://github.com/mui/mui-x/assets/3165635/ad95a404-ee67-4aff-b996-ad6cbb322348">
455
+
456
+ Visit the [documentation](https://mui.com/x/react-date-pickers/timezone/) to learn how to use it.
457
+
458
+ - 🌍 Improve Brazilian Portuguese (pt-BR) on the data grid
459
+ - 🌍 Improve Czech (cs-CZ) locale on the pickers
460
+ - 🚅 Performance improvements
461
+ - 🐞 Bugfixes
462
+ - 📚 Documentation improvements
463
+
464
+ ### Data Grid
465
+
466
+ #### `@mui/x-data-grid@6.9.0`
467
+
468
+ - [DataGrid] Filtering performance: use unmemoized selectors by default (#9287) @romgrk
469
+ - [DataGrid] Use container dimensions from `getComputedStyle` (#9236) @m4theushw
470
+ - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#9404) @julioAz
471
+
472
+ #### `@mui/x-data-grid-pro@6.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
473
+
474
+ Same changes as in `@mui/x-data-grid@6.9.0`.
475
+
476
+ #### `@mui/x-data-grid-premium@6.9.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
477
+
478
+ Same changes as in `@mui/x-data-grid-pro@6.9.0`.
479
+
480
+ ### Date Pickers
481
+
482
+ #### `@mui/x-date-pickers@6.9.0`
483
+
484
+ - [fields] Ensure `minutesStep` is respected by fields arrows up/down (#9338) @alexfauquette
485
+ - [fields] Reset internal state when `referenceValue` changes (#9390) @adrianmxb
486
+ - [l10n] Improve Czech (cs-CZ) locale (#9397) @radimkafka
487
+ - [pickers] Add proper support for UTC and timezones (#8261) @flaviendelangle
488
+ - [pickers] Fix field section selection on `DateTimePicker` (#9342) @LukasTy
489
+ - [pickers] Reduce date range calendar vertical border width (#9368) @oliviertassinari
490
+ - [pickers] Reset fields internal state when pasting value (#9385) @alexfauquette
491
+
492
+ #### `@mui/x-date-pickers-pro@6.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
493
+
494
+ Same changes as in `@mui/x-date-pickers@6.9.0`.
495
+
496
+ ### Charts / `@mui/x-charts@6.0.0-alpha.0`
497
+
498
+ - [charts] Allow to customize colors based on the theme mode (#9006) @alexfauquette
499
+ - [charts] Prepare the charts release (#9361) @alexfauquette
500
+ - [charts] Various improvements of charts docs (#9341) @alexfauquette
501
+
502
+ ### Docs
503
+
504
+ - [docs] Add examples of using different time view renderers (#9360) @LukasTy
505
+ - [docs] Add recipe for single-click editing (#8365) @m4theushw
506
+ - [docs] Fix Base UI references (#9349) @oliviertassinari
507
+ - [docs] Fix random screenshot generation (#9364) @cherniavskii
508
+ - [docs] Remove random generation from chart doc example (#9343) @flaviendelangle
509
+ - [docs] Sync h1 with sidenav link (#9252) @oliviertassinari
510
+ - [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
511
+
512
+ ### Core
513
+
514
+ - [core] Add PR template and update the contributions guide (#9329) @DanailH
515
+ - [core] Bump monorepo (#9420) @LukasTy
516
+ - [core] Fix file typo (#9421) @DanailH
517
+ - [core] Fix proptypes (#9396) @LukasTy
518
+ - [core] Move old release notes in `CHANGELOG.old.md` (#9269) @flaviendelangle
519
+ - [core] Add priority support issue template (#8928) @DanailH
520
+
521
+ ## 6.8.0
522
+
523
+ _Jun 16, 2023_
524
+
525
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
526
+
527
+ - 🌍 Add Greek (el-GR) locale on Pickers and improve on Data Grid
528
+ - 🚅 Performance improvements
529
+ - 🐞 Bugfixes
530
+ - 📚 Documentation improvements
531
+
532
+ ### Data Grid
533
+
534
+ #### `@mui/x-data-grid@6.8.0`
535
+
536
+ - [DataGrid] Add missing styles to `overridesResolver` (#9248) @mrmuhammadali
537
+ - [DataGrid] Keep column header menu icon always visible on touch devices (#9076) @cherniavskii
538
+ - [DataGrid] Correct the type for single digit edited number value (#9282) @MBilalShafi
539
+ - [DataGrid] Correct the type for single digit edited number for row edit (#9348) @MBilalShafi
540
+ - [DataGrid] Filtering performance: cache values (#9284) @romgrk
541
+ - [DataGrid] Fix tabbing between `actions` cells in edit mode (#9321) @md250721
542
+ - [DataGrid] Make autocompletion work for `GridColDef['type']` (#9320) @cherniavskii
543
+ - [DataGrid] Polish shortcut logic (#9220) @oliviertassinari
544
+ - [DataGrid] Row reordering fix for different row heights (#7006) @yaredtsy
545
+ - [DataGrid] Scroll performance improvements (#9037) @romgrk
546
+ - [l10n] Improve Greek (el-GR) locale (#9292) @clytras
547
+
548
+ #### `@mui/x-data-grid-pro@6.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
549
+
550
+ Same changes as in `@mui/x-data-grid@6.8.0`.
551
+
552
+ #### `@mui/x-data-grid-premium@6.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
553
+
554
+ Same changes as in `@mui/x-data-grid-pro@6.8.0`.
555
+
556
+ ### Date Pickers
557
+
558
+ #### `@mui/x-date-pickers@6.8.0`
559
+
560
+ - [l10n] Add Greek (el-GR) locale (#9293) @clytras
561
+ - [pickers] Add a `referenceDate` prop on `DateCalendar`, `MonthCalendar` and `YearCalendar` (#9260) @flaviendelangle
562
+ - [pickers] Close the calendar when a shortcut is selected (#9080) @flaviendelangle
563
+ - [pickers] Fix disabling for digital clock (#9300) @alexfauquette
564
+
565
+ #### `@mui/x-date-pickers-pro@6.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
566
+
567
+ Same changes as in `@mui/x-date-pickers@6.8.0`.
568
+
569
+ ### Docs
570
+
571
+ - [docs] Add header filters to the popular features demo (#9069) @MBilalShafi
572
+ - [docs] Fix `Date Calendar` dynamic data demo (#9290) @benzler
573
+ - [docs] Fix Data Grid header filter link (#9225) @oliviertassinari
574
+ - [docs] Fix missing docs version warning (#9221) @oliviertassinari
575
+ - [docs] Improve Chart overview (#9333) @oliviertassinari
576
+ - [docs] Improve Next.js license installation guide (#8975) @oliviertassinari
577
+ - [docs] Link pagination documentation to the migration guide (#9296) @MBilalShafi
578
+ - [docs] One step toward components -> slots (#9251) @oliviertassinari
579
+ - [docs] Improve and reorganize sections on editing page (#8431) @joserodolfofreitas
580
+ - [docs] Add clipboard paste to popular features demo (#9029) @cherniavskii
581
+
582
+ ### Core
583
+
584
+ - [core] Polish event name (#9336) @oliviertassinari
585
+ - [core] Re-enable `Argos` CI step (#9301) @LukasTy
586
+ - [core] Upgrade Node.js to v18 on CircleCI, CodeSandbox and Netlify (#9319) @ZeeshanTamboli
587
+ - [core] Upgrade Node.js v18 for l10n GitHub CI (#9355) @ZeeshanTamboli
588
+ - [charts] Add demonstration pages based on Recharts demo (#9175) @alexfauquette
589
+ - [charts] Add legend (#9024) @alexfauquette
590
+ - [charts] Complete the docs to introduce charts (#9153) @alexfauquette
591
+ - [charts] Manage elements highlights (#9242) @alexfauquette
592
+ - [charts] Prefix subcomponents with `Charts` (#9314) @alexfauquette
593
+ - [license] Improve annual license expiration message (#9135) @oliviertassinari
594
+
595
+ ## 6.7.0
596
+
597
+ _Jun 9, 2023_
598
+
599
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
600
+
601
+ - 🎁 Improve the default `format` prop value on the pickers.
602
+
603
+ Here are a few examples:
604
+
605
+ ```tsx
606
+ <TimePicker views={['hours', 'minutes', 'seconds']} ampm />
607
+ // Format before v6.7.0: `hh:mm aa`
608
+ // Format after v6.7.0: `hh:mm:ss aa`
609
+
610
+ <DatePicker views={['year']} />
611
+ // Format before v6.7.0: `MM/DD/YYYY`
612
+ // Format after v6.7.0: `YYYY`
613
+
614
+ <DateTimePicker views={['day', 'hours', 'minutes']} ampm />
615
+ // Format before v6.7.0: `MM/DD/YYYY hh:mm aa`
616
+ // Format after v6.7.0: `DD hh:mm aa`
617
+ ```
618
+
619
+ - 🌍 Add Romanian (ro-RO) locale on the pickers
620
+ - 🌍 Improve German (de-DE) locale on the pickers
621
+ - 🌍 Improve Czech (cs-CZ), German (de-DE) and Turkish (tr-TR) locales on the data grid
622
+ - 🚀 Performance improvements
623
+ - 🐞 Bugfixes
624
+ - 📚 Documentation improvements
625
+
626
+ ### Data Grid
627
+
628
+ #### `@mui/x-data-grid@6.7.0`
629
+
630
+ - [DataGrid] Allow overflowing grid root element (#9179) @cherniavskii
631
+ - [DataGrid] Fix module augmentation error when using `@mui/lab` (#9235) @cherniavskii
632
+ - [DataGrid] Fix row with ids matching `Object` prototype (#9265) @romgrk
633
+ - [DataGrid] Fix `sortModel` and `filterModel` resetting when columns change (#9239) @alexgonch
634
+ - [DataGrid] Improve grouping performance for large datasets (#9200) @romgrk
635
+ - [DataGrid] Increase threshold to trigger memory leak warning (#9263) @m4theushw
636
+ - [DataGrid] Update data grid migration guide to include updated type (#9272) @MBilalShafi
637
+ - [l10n] Improve Czech (cs-CZ) locale (#9266) @MartinSkarpa
638
+ - [l10n] Improve German (de-DE) locale (#9259) @ximex
639
+ - [l10n] Improve Turkish (tr-TR) locale (#9237) @MCErtan
640
+
641
+ #### `@mui/x-data-grid-pro@6.7.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
642
+
643
+ Same changes as in `@mui/x-data-grid@6.7.0`, plus:
644
+
645
+ - [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
646
+
647
+ #### `@mui/x-data-grid-premium@6.7.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
648
+
649
+ Same changes as in `@mui/x-data-grid-pro@6.7.0`, plus:
650
+
651
+ - [DataGridPremium] Remove last line break on clipboard paste (#9163) @cherniavskii
652
+
653
+ ### Pickers
654
+
655
+ #### `@mui/x-date-pickers@6.7.0`
656
+
657
+ - [l10n] Add Romanian (ro-RO) locale (#9257) @ximex
658
+ - [l10n] Improve German (de-DE) locale (#9258) @ximex
659
+ - [pickers] Apply dynamic default format depending on views for all desktop and mobile pickers (#9126) @flaviendelangle
660
+
661
+ #### `@mui/x-date-pickers-pro@6.7.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
662
+
663
+ Same changes as in `@mui/x-date-pickers@6.7.0`, plus:
664
+
665
+ - [pickers] Update `DateRangePickerDay` props JSDoc (#9191) @stevus
666
+
667
+ ### Docs
668
+
669
+ - [docs] Fix missing props on the `GridFilterPanel` API page (#9180) @cherniavskii
670
+ - [docs] Fix overview page typo (#9230) @LukasTy
671
+ - [docs] Fix version redirect (#9273) @alexfauquette
672
+
673
+ ### Core
674
+
675
+ - [core] Temporarily remove the Argos upload on the regression testing (#9267) @flaviendelangle
676
+ - [charts] Add clip-path to avoid charts overflow (#9012) @alexfauquette
677
+ - [charts] Add style customization on bar (#8935) @alexfauquette
678
+ - [charts] Enforce axis `min`/`max` over the `nice()` method (#9189) @alexfauquette
679
+ - [charts] Improve axis label and ticks label alignements (#9190) @alexfauquette
680
+ - [charts] Simplify the switch between responsive and fix dimensions (#9151) @alexfauquette
681
+
682
+ ## 6.6.0
683
+
684
+ _Jun 1, 2023_
685
+
686
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
687
+
688
+ - 🚀 New date time picking UI on [`DesktopDateTimePicker`](https://mui.com/x/react-date-pickers/date-time-picker/)
689
+
690
+ <img src="https://github.com/mui/mui-x/assets/3165635/4e1fe9f9-03eb-4f23-99dd-80212b21fb23" width="840" height="506" />
691
+
692
+ - 🚀 Performance improvements
693
+ - 🐞 Bugfixes
694
+ - 📚 Documentation improvements
695
+ - 🌍 Improve Dutch (nl-NL) and French (fr-FR) locales on the data grid
696
+ - 🌍 Add Vietnamese (vi-VN) locale on the pickers
697
+
698
+ ### `@mui/x-data-grid@6.6.0` / `@mui/x-data-grid-pro@6.6.0` / `@mui/x-data-grid-premium@6.6.0`
699
+
700
+ #### Changes
701
+
702
+ - [DataGrid] Support data attributes (#8845) @romgrk
703
+ - [DataGrid] Avoid allocations in `hydrateRowsMeta` (#9121) @romgrk
704
+ - [DataGrid] Fix filter input select accessibility (#9018) @Jul13nT
705
+ - [DataGrid] Fix accessibility issues in panels and toolbar buttons (#8862) @romgrk
706
+ - [DataGrid] Fix `onCellEditStop` not invoked (#8857) @romgrk
707
+ - [DataGridPro] Fix auto-scroll when reordering columns (#8856) @m4theushw
708
+ - [DataGridPro] Fix row ID type casting in detail panels lookup (#8976) @minchaej
709
+ - [DataGridPro] Emit `columnWidthChange` event on `touchEnd` of column resize (#8669) @MBilalShafi
710
+ - [DataGridPro] Do not apply filters on `rowExpansionChange` (#8671) @cherniavskii
711
+ - [DataGridPro] Prevent click event on sorting after a resize (#9117) @romgrk
712
+ - [DataGridPremium] Improve Excel export interface (#9128) @TiagoPortfolio
713
+ - [l10n] Improve Dutch (nl-NL) locale (#9043) @thedutchruben
714
+ - [l10n] Improve French (fr-FR) locale (#9109) @Jul13nT
715
+
716
+ ### `@mui/x-date-pickers@6.6.0` / `@mui/x-date-pickers-pro@6.6.0`
717
+
718
+ #### Changes
719
+
720
+ - [fields] Allow to explicitly define the reference value and improve its default value (#9019) @flaviendelangle
721
+ - [l10n] Add Vietnamese (vi-VN) locale (#9099) @nhannt201
722
+ - [pickers] Add `DigitalClock` to `DesktopDateTimePicker` (#8946) @LukasTy
723
+ - [pickers] Add support for timezones on the adapters (#9068) @flaviendelangle
724
+ - [pickers] Fix `MonthCalendar` and `YearCalendar` disabled validation (#9149) @LukasTy
725
+ - [pickers] Fix bug when fields have a unique section (#9110) @alexfauquette
726
+ - [pickers] Fix focus jumping on Safari (#9072) @LukasTy
727
+ - [pickers] Use the locale start of the week in `getWeekArray` (#9176) @flaviendelangle
728
+
729
+ ### Docs
730
+
731
+ - [docs] Add single input range picker demo (#9159) @LukasTy
732
+ - [docs] Align `DateCalendar` demo views with labels (#9152) @LukasTy
733
+ - [docs] Clarify the peer dependency with React (#9067) @oliviertassinari
734
+ - [docs] Fix Norwegian locale typo (#9168) @LukasTy
735
+ - [docs] Fix column menu item demo (#9071) @MBilalShafi
736
+ - [docs] Improve localization table progress bars (#9033) @noraleonte
737
+ - [docs] Smooth performance animation (#8986) @oliviertassinari
738
+ - [docs] Use responsive time and date time pickers and the views sections (#9127) @flaviendelangle
739
+ - [docs] Reduce layout shift in grid demo (#9132) @oliviertassinari
740
+ - [docs] Fix tree data children lazy-loading demo (#8840) @yaredtsy
741
+ - [docs] Improve filtering docs discoverability (#9074) @MBilalShafi
742
+
743
+ ### Core
744
+
745
+ - [core] Allow string literals as keys in `localesText` (#9045) @MBilalShafi
746
+ - [core] Fix `randomInt` producing values exceeding `max` value (#9086) @cherniavskii
747
+ - [core] Fix flaky test on `dateWithTimezone` adapter test (#9129) @flaviendelangle
748
+ - [core] Lock `@types/node` on v18 (#9107) @LukasTy
749
+ - [core] Remove `cross-fetch` dependency (#9108) @LukasTy
750
+ - [core] Remove `createDetectElementResize()` replaced with `ResizeObserver` (#9015) @oliviertassinari
751
+ - [core] Upgrade monorepo (#9027) @m4theushw
752
+ - [core] Upgrade monorepo (#9106) @LukasTy
753
+ - [charts] Fix proptypes (#9125) @LukasTy
754
+ - [charts] Generate the charts proptypes (#9010) @alexfauquette
755
+ - [charts] Manage series stacking (#8888) @alexfauquette
756
+ - [license] List side effects in the license package (#9092) @cherniavskii
757
+
758
+ ## 6.5.0
759
+
760
+ _May 19, 2023_
761
+
762
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
763
+
764
+ - 💫 Introduce filtering on column headers for `DataGridPro` and `DataGridPremium`:
765
+
766
+ <img src="https://github.com/mui/mui-x/releases/download/v6.5.0/recording.gif" width="840" height="506" />
767
+
768
+ See [the documentation](https://mui.com/x/react-data-grid/filtering/header-filters/) for more information
769
+
770
+ - 🌍 Improve Hebrew (he-IL) and Czech (cs-CZ) locales
771
+ - 📝 Support for editing on pinned rows
772
+ - 🚀 Performance improvements
773
+ - 🐞 Bugfixes
774
+ - 📚 Documentation improvements
775
+
776
+ ### `@mui/x-data-grid@6.5.0` / `@mui/x-data-grid-pro@6.5.0` / `@mui/x-data-grid-premium@6.5.0`
777
+
778
+ #### Changes
779
+
780
+ - [DataGrid] Fix grid size calculation when `.MuiDataGrid-main` has border (#8882) @cherniavskii
781
+ - [DataGridPro] Filtering on Column Header (#7760) @MBilalShafi
782
+ - [DataGridPro] Improve `treeData` and `rowGrouping` performance (#8990) @MBilalShafi
783
+ - [DataGridPro] Support pinned rows editing (#8921) @cherniavskii
784
+ - [l10n] Improve Hebrew (he-IL) locale (#8943) @Itzik-Tech
785
+ - [l10n] Improve Czech (cs-CZ) locale (#8829) @harastaivan
786
+ - [l10n] Improve Czech (cs-CZ) locale (#8956) @davidzemancz
787
+
788
+ ### `@mui/x-date-pickers@6.5.0` / `@mui/x-date-pickers-pro@6.5.0`
789
+
790
+ #### Changes
791
+
792
+ - [fields] Select the first section instead of last when clicking right of content (#9005) @noraleonte
793
+ - [fields] Refactor prop drilling in fields (#8660) @flaviendelangle
794
+ - [pickers] Allow to render the months before `currentMonth` instead of the one after (#8592) @flaviendelangle
795
+ - [pickers] Fix view management when `openTo` or `views` is modified (#8997) @alexfauquette
796
+ - [l10n] Improve Czech (cs-CZ) locale (#8829) @harastaivan
797
+
798
+ ### Docs
799
+
800
+ - [docs] Clarify what Controlled / Uncontrolled means (#8926) @flaviendelangle
801
+ - [docs] Fix docs using wrong service worker (#9030) @cherniavskii
802
+ - [docs] Remove prop-types from JS demos (#9008) @flaviendelangle
803
+
804
+ ### Core
805
+
806
+ - [core] Add assertion about checkbox rerenders (#8974) @oliviertassinari
807
+ - [core] Allow selecting a section by type in field tests (#9009) @flaviendelangle
808
+ - [core] Fix `yarn.lock` (#8988) @flaviendelangle
809
+ - [core] Fix flacky adapter test (#8995) @flaviendelangle
810
+ - [charts] Clean the axis rendering (#8948) @alexfauquette
811
+ - [DataGrid] Memoize root props for better performance (#8942) @romgrk
812
+ - [test] Skip flaky unit tests in JSDOM (#8994) @cherniavskii
813
+
814
+ ## 6.4.0
815
+
816
+ _May 12, 2023_
817
+
818
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
819
+
820
+ - 🎁 Introduce clipboard paste support for `DataGridPremium`:
821
+
822
+ https://github.com/mui/mui-x/assets/13808724/abfcb5c6-9db6-4677-9ba7-ae97de441080
823
+
824
+ See [the documentation](https://mui.com/x/react-data-grid/clipboard/#clipboard-paste) for more information
825
+
826
+ - 🌍 Improve French (fr-FR), German (de-DE), Portuguese (pt-BR) and Ukrainian (uk-UA) locales on the data grid
827
+ - 🌍 Add Slovak (sk-SK) locale on the pickers
828
+ - 🐞 Bugfixes
829
+ - 📚 Documentation improvements
830
+
831
+ ### `@mui/x-data-grid@6.4.0` / `@mui/x-data-grid-pro@6.4.0` / `@mui/x-data-grid-premium@6.4.0`
832
+
833
+ #### Changes
834
+
835
+ - [DataGrid] Fix DataGrid rendering in JSDOM (#8968) @cherniavskii
836
+ - [DataGrid] Fix layout when rendered inside a parent with `display: grid` (#8577) @cherniavskii
837
+ - [DataGrid] Add Joy UI icon slots (#8940) @siriwatknp
838
+ - [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
839
+ - [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
840
+ - [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
841
+ - [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
842
+ - [l10n] Improve German (de-DE) locale (#8898) @marcauberer
843
+ - [l10n] Improve Portuguese (pt-BR) locale (#8960) @Sorriso337
844
+ - [l10n] Improve Ukrainian (uk-UA) locale (#8863) @Neonin
845
+
846
+ ### `@mui/x-date-pickers@6.4.0` / `@mui/x-date-pickers-pro@6.4.0`
847
+
848
+ #### Changes
849
+
850
+ - [pickers] Fix trailing zeros inconsistency in `LuxonAdapter` (#8955) @alexfauquette
851
+ - [pickers] Stop using deprecated adapter methods (#8735) @flaviendelangle
852
+ - [pickers] Strictly type the `adapterLocale` prop of `LocalizationProvider` (#8780) @flaviendelangle
853
+ - [l10n] Add Slovak (sk-SK) locale (#8875) @MatejFacko
854
+
855
+ ### Docs
856
+
857
+ - [docs] Fix date pickers typo in the docs (#8939) @richbustos
858
+ - [docs] Fix master detail demo (#8894) @m4theushw
859
+ - [docs] Fix typo in clipboard docs (#8971) @MBilalShafi
860
+ - [docs] Reduce list of dependencies in Codesandbox/Stackblitz demos (#8535) @cherniavskii
861
+
862
+ ### Core
863
+
864
+ - [core] Improve testing of the adapters (#8789) @flaviendelangle
865
+ - [core] Update license key for tests (#8917) @LukasTy
866
+ - [charts] Make introduction docs pages for each chart (#8869) @alexfauquette
867
+ - [charts] Document Tooltip and Highlighs (#8867) @alexfauquette
868
+ - [test] Cover row grouping regression with a unit test (#8870) @cherniavskii
869
+ - [test] Fix flaky regression tests (#8954) @cherniavskii
870
+
871
+ ## 6.3.1
872
+
873
+ _May 5, 2023_
874
+
875
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
876
+
877
+ - 🐞 Bugfixes
878
+ - 📚 Documentation improvements
879
+
880
+ ### `@mui/x-data-grid@6.3.1` / `@mui/x-data-grid-pro@6.3.1` / `@mui/x-data-grid-premium@6.3.1`
881
+
882
+ #### Changes
883
+
884
+ - [DataGrid] Fix broken filtering in the value formatter demo (#8621) @cherniavskii
885
+ - [DataGrid] Fix falsy filter values not showing in filter button tooltip (#8550) @ithrforu
886
+ - [DataGrid] Fix missing watermark in Pro and Premium packages (#8797) @cherniavskii
887
+ - [DataGrid] Remove unwarranted warning log (#8847) @romgrk
888
+ - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
889
+ - [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
890
+
891
+ ### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
892
+
893
+ #### Changes
894
+
895
+ - [pickers] Fix `minutesStep` validation prop behavior (#8794) @LukasTy
896
+ - [pickers] Fix time picker `viewRenderers` overriding (#8830) @LukasTy
897
+ - [pickers] Remove last additional character when using LTR (#8848) @alexfauquette
898
+
899
+ ### Docs
900
+
901
+ - [docs] Fix controlled mode demo on Editing page (#8800) @yaredtsy
902
+ - [docs] Fix scrolling demo not working with React 18 (#6489) @cherniavskii
903
+ - [docs] Update demo to support agregation on popular feature cell (#8617) @BalaM314
904
+ - [docs] Clarify what `<path>` is (#8764) @alexfauquette
905
+
906
+ ### Core
907
+
908
+ - [core] Do not include playground pages in `yarn typescript` script (#8822) @cherniavskii
909
+ - [core] Limit `typescript:ci` step memory limit (#8796) @LukasTy
910
+ - [core] Upgrade monorepo (#8835) @cherniavskii
911
+ - [test] Use `fake` clock on `MobileDateRangePicker` (#8861) @LukasTy
912
+ - [charts] Clean some styling (#8778) @alexfauquette
913
+ - [charts] Improve tooltip (#8792) @alexfauquette
914
+ - [charts] Improvement and docs on axis (#8654) @alexfauquette
915
+ - [charts] Defaultize attributes (#8788) @alexfauquette
916
+
917
+ ## 6.3.0
918
+
919
+ _Apr 28, 2023_
920
+
921
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
922
+
923
+ - 🚀 New [time-picking UI](https://mui.com/x/react-date-pickers/digital-clock/) designed for desktops (#7958) @LukasTy
924
+
925
+ <img src="https://user-images.githubusercontent.com/4941090/235072007-de39a397-e4a4-4c98-8e10-5ee4ad440108.gif" width="494" />
926
+
927
+ - ✨ Picker fields [now always include a leading zero](https://mui.com/x/react-date-pickers/adapters-locale/#respect-leading-zeros-in-fields) on digit sections (#8527) @flaviendelangle
928
+ - 🌍 Improve Chinese (zh-CN), French (fr-FR), and Turkish (tr-TR) locales
929
+ - 🐞 Bugfixes
930
+ - 📚 Documentation improvements
931
+
932
+ ### `@mui/x-data-grid@6.3.0` / `@mui/x-data-grid-pro@6.3.0` / `@mui/x-data-grid-premium@6.3.0`
933
+
934
+ #### Changes
935
+
936
+ - [DataGrid] Add overlay classes to `gridClasses` (#8686) @lindapaiste
937
+ - [DataGrid] Avoid passing `api` prop to div (#8679) @someden
938
+ - [DataGrid] Fix 'ResizeObserver loop limit exceeded' error (#8744) @m4theushw
939
+ - [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
940
+ - [DataGrid] Fix aggregation label alignment (#8694) @joserodolfofreitas
941
+ - [DataGridPremium] Fix infinite loop when updating grouped rows (#8693) @cherniavskii
942
+ - [DataGridPro] Fix error after updating `columns` and `columnGroupingModel` at once (#8730) @cherniavskii
943
+ - [l10n] Improve Chinese (zh-CN) locale (#8753) @SakumyZ
944
+ - [l10n] Improve French (fr-FR) locale (#8704) @Jul13nT
945
+ - [l10n] Improve Turkish (tr-TR) locale (#8783) @cccaaannn
946
+
947
+ ### `@mui/x-date-pickers@6.3.0` / `@mui/x-date-pickers-pro@6.3.0`
948
+
949
+ #### Changes
950
+
951
+ - [fields] Always add leading zeroes on digit sections (#8527) @flaviendelangle
952
+ - [fields] Pass the `readOnly` prop to `InputProps` instead of `inputProps` (#8659) @flaviendelangle
953
+ - [pickers] Add missing export for `caES` locale (#8782) @flaviendelangle
954
+ - [pickers] Add new `DigitalClock` desktop time picking experience (#7958) @LukasTy
955
+ - [pickers] Do not use `instanceOf DateTime` in `AdapterLuxon` (#8734) @flaviendelangle
956
+ - [pickers] Fix date calendar `selected` & `disabled` day style (#8773) @LukasTy
957
+ - [pickers] Migrate `AdapterDateFns` to our repository (#8736) @flaviendelangle
958
+ - [pickers] Migrate `AdapterLuxon` to our repository (#8600) @flaviendelangle
959
+ - [pickers] Migrate `AdapterMomentHijri` to our repository (#8776) @flaviendelangle
960
+ - [pickers] Migrate `AdapterMomentJalaali` and `AdapterDateFnsJalali` to our repository (#8741) @flaviendelangle
961
+ - [pickers] Migrate `AdapterMoment` to our repository (#8700) @flaviendelangle
962
+ - [pickers] Refactor the validation files (#8622) @flaviendelangle
963
+ - [pickers] Use `en dash` instead of `em dash` in multi input range fields (#8738) @flaviendelangle
964
+ - [l10n] Improve Chinese (zh-CN) locale (#8753) @SakumyZ
965
+ - [l10n] Improve Turkish (tr-TR) locale (#8783) @cccaaannn
966
+
967
+ ### Docs
968
+
969
+ - [docs] Add icons for charts menu (#8752) @alexfauquette
970
+ - [docs] Document the supported formats (#8746) @flaviendelangle
971
+ - [docs] Fix Hijri demo (#8698) @alexfauquette
972
+ - [docs] Fix `x-codemod` package version in changelog (#8690) @MBilalShafi
973
+ - [docs] Fix columns special properties code example (#8414) @mikkelhl
974
+ - [docs] Fix error in `minDateTime` `validation` page section (#8777) @LukasTy
975
+ - [docs] Update custom field pickers using theme scoping (#8609) @siriwatknp
976
+ - [docs] Use community version of data grid for column grouping demo (#7346) @ASchwad
977
+ - [docs] Use new `slots` / `slotProps` props in the pickers migration guide (#8341) @flaviendelangle
978
+
979
+ ### Core
980
+
981
+ - [core] Cleanup picker tests (#8652) @flaviendelangle
982
+ - [core] Use `adapter.lib` instead of `adapterName` in `describeAdapters` (#8779) @flaviendelangle
983
+ - [charts] Adapt line and scatter plot to the "band" scale type (#8701) @alexfauquette
984
+ - [charts] Link the Gantt Charts issue in the docs (#8739) @flaviendelangle
985
+
986
+ ## 6.2.1
987
+
988
+ _Apr 20, 2023_
989
+
990
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
991
+
992
+ - 🚀 Add virtualization to row detail panels (#7969) @yaredtsy
993
+ - 🐞 Bugfixes
994
+ - 📚 Documentation improvements
995
+
996
+ ### `@mui/x-data-grid@6.2.1` / `@mui/x-data-grid-pro@6.2.1` / `@mui/x-data-grid-premium@6.2.1`
997
+
998
+ #### Changes
999
+
1000
+ - [DataGrid] Add `getTogglableColumns` to `Hide all` and `Show all` actions (#8496) @MBilalShafi
1001
+ - [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
1002
+ - [DataGrid] Fix print style when rendering inside Shadow DOM (#8656) @Bwatermelon
1003
+ - [DataGrid] Replace `GridAutoSizer` with `ResizeObserver` (#8091) @m4theushw
1004
+ - [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw
1005
+ - [DataGridPro] Virtualize row detail panels (#7969) @yaredtsy
1006
+
1007
+ ### `@mui/x-date-pickers@6.2.1` / `@mui/x-date-pickers-pro@6.2.1`
1008
+
1009
+ #### Changes
1010
+
1011
+ - [pickers] Do not include the time in date components when going to today (#8657) @flaviendelangle
1012
+ - [pickers] Sync internal state with controlled value (#8674) @alexfauquette
1013
+
1014
+ ### `@mui/x-codemod@6.2.1`
1015
+
1016
+ #### Changes
1017
+
1018
+ - [codemod] Avoid filter failures on object prototype properties (#8647) @LukasTy
1019
+
1020
+ ### Docs
1021
+
1022
+ - [docs] Add no-op service worker to fix stale cache issue (#8598) @cherniavskii
1023
+ - [docs] Clarify what `AdapterDayjs` is in the Getting Started page (#8219) @flaviendelangle
1024
+ - [docs] Fix typo on picker page description (#8611) @maxolasersquad
1025
+ - [docs] Improve section title in Getting Started page (#8648) @flaviendelangle
1026
+ - [docs] Inform about input format modification (#8458) @alexfauquette
1027
+
1028
+ ### Core
1029
+
1030
+ - [core] Fix release date (#8618) @flaviendelangle
1031
+ - [core] Upgrade monorepo (#8668) @MBilalShafi
1032
+ - [charts] Support Tooltip (#8356) @alexfauquette
1033
+
1034
+ ## 6.2.0
1035
+
1036
+ _Apr 14, 2023_
1037
+
1038
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1039
+
1040
+ - Add `@mui/base` as a `peerDependency` of `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` (#8590) @LukasTy
1041
+
1042
+ Both libraries were not working correctly if used without `@mui/base`.
1043
+ Most package manager should automatically use the `@mui/base` version installed for `@mui/material`.
1044
+
1045
+ - The value rendered in the picker or field input no longer has spaces around the `/` characters (#8425) @flaviendelangle
1046
+
1047
+ You can use the `formatDensity='spacious'` prop to add it back.
1048
+ More information on [the dedicated doc section](https://mui.com/x/react-date-pickers/custom-field/#change-the-format-density)
1049
+
1050
+ - 🌍 Improve French (fr-FR) and Urdu (ur-PK) and locales.
1051
+ - 🐞 Bugfixes
1052
+ - 📚 Documentation improvements
1053
+
1054
+ ### `@mui/x-data-grid@6.2.0` / `@mui/x-data-grid-pro@6.2.0` / `@mui/x-data-grid-premium@6.2.0`
1055
+
1056
+ #### Changes
1057
+
1058
+ - [DataGrid] Reset selection state on `checkboxSelection` toggle (#8522) @MBilalShafi
1059
+ - [DataGrid] Use `baseSelect` slot instead of `baseTextField` with `select={true}` (#8110) @cherniavskii
1060
+ - [l10n] Improve French (fr-FR) locale (#8537) @allereaugabriel
1061
+ - [l10n] Improve Urdu (ur-PK) locale (#8513) @SFARPak
1062
+
1063
+ ### `@mui/x-date-pickers@6.2.0` / `@mui/x-date-pickers-pro@6.2.0`
1064
+
1065
+ #### Changes
1066
+
1067
+ - [DateTimePicker] Fix `TimeClock` validation ignoring date by default (#8570) @LukasTy
1068
+ - [fields] Fix reliance on section order (#8545) @LukasTy
1069
+ - [fields] Make the space between format separators controllable (#8425) @flaviendelangle
1070
+ - [pickers] Add `@mui/base` to `peerDependencies` (#8590) @LukasTy
1071
+ - [pickers] Fix JSDoc for `formatDensity` prop (#8601) @flaviendelangle
1072
+ - [pickers] Improve value lifecycle on non-controlled pickers (#8312) @flaviendelangle
1073
+ - [pickers] Migrate `AdapterDayjs` to our repository (#8487) @flaviendelangle
1074
+
1075
+ ### Docs
1076
+
1077
+ - [docs] Fix "Custom day rendering" demo alignment (#8541) @LukasTy
1078
+ - [docs] Fix **below** typo (#8576) @alexfauquette
1079
+
1080
+ ### Core
1081
+
1082
+ - [core] Optimize `renovate` rules (#8575) @LukasTy
1083
+ - [core] Upgrade monorepo (#8578) @cherniavskii
1084
+ - [core] Update last release date (#8569) @DanailH
1085
+
1086
+ ## 6.1.0
1087
+
1088
+ _Apr 10, 2023_
1089
+
1090
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
1091
+
1092
+ - 🌍 Add Catalan (ca-ES), Kazakh (kz-KZ) and improve Spanish (es-ES), Dutch (nl-NL), Hebrew (he-IL), Hungarian (hu-HU), Japanese (ja-JP), Portuguese (pt-BR), and Russian (ru-RU) locales
1093
+ - ✨ Allow to control visibility of columns shown in the columns panel (#8401) @MBilalShafi
1094
+ - 🐞 Bugfixes
1095
+ - 📚 Documentation improvements
1096
+
1097
+ ### `@mui/x-data-grid@6.1.0` / `@mui/x-data-grid-pro@6.1.0` / `@mui/x-data-grid-premium@6.1.0`
1098
+
1099
+ #### Changes
1100
+
1101
+ - [DataGrid] Allow to control visibility of columns shown in the `ColumnsPanel` component (#8401) @MBilalShafi
1102
+ - [DataGrid] Fix filters with empty array value not being removed from the filter model (#8501) @cherniavskii
1103
+ - [DataGrid] Fix memory leaks in development (#8301) @cherniavskii
1104
+ - [DataGrid] Sync `date` column value when entering edit mode by pressing a digit (#8364) @m4theushw
1105
+ - [DataGrid] Wrap column menu button with a tooltip (#7890) @cherniavskii
1106
+ - [l10n] Improve Dutch (nl-NL) locale (#8491) @thedutchruben
1107
+ - [l10n] Improve Hungarian (hu-HU) locale (#8486) @PetakCC
1108
+ - [l10n] Improve Japanese (ja-JP) locale (#8462) @megos
1109
+ - [l10n] Improve Portuguese (pt-BR) locale (#8480) @pwnedev
1110
+ - [l10n] Improve Russian (ru-RU) locale (#8510) @alexrapro
1111
+
1112
+ ### `@mui/x-date-pickers@6.1.0` / `@mui/x-date-pickers-pro@6.1.0`
1113
+
1114
+ #### Changes
1115
+
1116
+ - [fields] Fix RTL navigation (#8490) @alexfauquette
1117
+ - [fields] Fix usage of `slotProps.textField.InputProps` (#8428) @flaviendelangle
1118
+ - [pickers] Fix `componentsProps.dialog` propagation (#8509) @LukasTy
1119
+ - [pickers] Move `hasError` from `fieldValueManager` to `valueManager` (#8453) @flaviendelangle
1120
+ - [pickers] Move the adapters interfaces to the X repository (#8412) @flaviendelangle
1121
+ - [pickers] Update peer dependency versions (#8531) @LukasTy
1122
+ - [pickers] Fix `isValid` regression (#8543) @LukasTy
1123
+ - [l10n] Add Catalan (Spain) (ca-ES) and improve Spanish (es-ES) locales (#8498) @makenshikuro
1124
+ - [l10n] Add Kazakh (kz-KZ) locale (#8451) @zhunus
1125
+ - [l10n] Improve Dutch (nl-NL) locale (#8491) @thedutchruben
1126
+ - [l10n] Improve Hebrew (he-IL) locale (#8464) @soris1989
1127
+ - [l10n] Improve Japanese (ja-JP) locale (#8462) @megos
1128
+ - [l10n] Improve Portuguese (pt-BR) locale (#8480) @pwnedev
1129
+
1130
+ ### Docs
1131
+
1132
+ - [docs] Fix 301 redirect (#8524) @alexfauquette
1133
+ - [docs] Fix 404 links (#8454) @alexfauquette
1134
+ - [docs] Fix broken API reference link (#8460) @oliviertassinari
1135
+
1136
+ ### Core
1137
+
1138
+ - [core] Avoid 301 links (#8383) @oliviertassinari
1139
+ - [core] Fix the l10n helper by using danger instead of actions (#8512) @alexfauquette
1140
+ - [core] Help contributors for l10n PRs (#8503) @alexfauquette
1141
+ - [core] Remove legacy token (#8457) @oliviertassinari
1142
+ - [charts] Add a styling system (#8445) @alexfauquette
1143
+
1144
+ ## 6.0.4
1145
+
1146
+ _Mar 30, 2023_
1147
+
1148
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1149
+
1150
+ - 🌍 Add Danish (da-DK), and improve Norwegian (nb-NO), Spanish (es-ES), and Swedish (sv-SE) locales
1151
+ - 🐞 Bugfixes
1152
+ - 📚 Documentation improvements
1153
+
1154
+ ### `@mui/x-data-grid@6.0.4` / `@mui/x-data-grid-pro@6.0.4` / `@mui/x-data-grid-premium@6.0.4`
1155
+
1156
+ #### Changes
1157
+
1158
+ - [DataGrid] Fix column header tooltip not showing when the title is truncated (#8433) @rohitnatesh
1159
+ - [DataGrid] Fix filter model buttons' display condition (#8415) @MBilalShafi
1160
+ - [DataGrid] Fix infinite rerender in a flex parent (#8436) @cherniavskii
1161
+ - [DataGrid] Prevent reopening column menu when clicking in the button while it is open (#8286) @tanuj-22
1162
+ - [DataGrid] Rename `components` by `slots` in column menu API (#7999) @MBilalShafi
1163
+ - [DataGrid] Remove hardcoded CSS classes' usages (#8444) @MBilalShafi
1164
+ - [DataGridPremium] Fix aggregation initial state causing issue with quick filter (#8441) @MBilalShafi
1165
+ - [l10n] Improve Danish (da-DK) locale (#8368) @BossElijah
1166
+ - [l10n] Improve Danish (da-DK) locale (#8378) @BossElijah
1167
+ - [l10n] Improve Norwegian (nb-NO) locale (#8367) @BossElijah
1168
+ - [l10n] Improve Norwegian (nb-NO) locale (#8409) @BossElijah
1169
+ - [l10n] Improve Spanish (es-ES) locale (#8420) @martjanz
1170
+ - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
1171
+
1172
+ ### `@mui/x-date-pickers@6.0.4` / `@mui/x-date-pickers-pro@6.0.4`
1173
+
1174
+ #### Changes
1175
+
1176
+ - [fields] Add missing tokens to `AdapterDateFnsJalali` (#8402) @flaviendelangle
1177
+ - [fields] Clean the active date manager (#8370) @flaviendelangle
1178
+ - [fields] Cleanup `useFieldState` (#8292) @flaviendelangle
1179
+ - [fields] Only add RTL characters when needed (#8325) @flaviendelangle
1180
+ - [pickers] Add support for single input fields in range pickers (#7927) @flaviendelangle
1181
+ - [pickers] Allows non token characters in format (#8256) @alexfauquette
1182
+ - [pickers] Avoid root imports and move public models to the models folder (#8337) @flaviendelangle
1183
+ - [pickers] Update `view` when `views` or `openTo` changes (#8361) @LukasTy
1184
+ - [l10n] Improve Norwegian (nb-NO) locale (#8382) @BossElijah
1185
+ - [l10n] Add Danish (da-DK) locale (#8379) @BossElijah
1186
+ - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
1187
+
1188
+ ### `@mui/x-codemod@6.0.4`
1189
+
1190
+ #### Changes
1191
+
1192
+ - [codemod] Fix `remove-stabilized-experimentalFeatures` codemod (#8289) @alexfauquette
1193
+
1194
+ ### Docs
1195
+
1196
+ - [docs] Fix `GridCellParams` signature in migration guide (#8427) @cherniavskii
1197
+ - [docs] Fix "Custom field" demos responsive styles (#8408) @LukasTy
1198
+ - [docs] Remove `label` from demos where it reduces clarity (#8416) @LukasTy
1199
+ - [docs] Update slots' references in Data Grid migration guide (#8159) @MBilalShafi
1200
+
1201
+ ### Core
1202
+
1203
+ - [charts] Work on typing (#8421) @flaviendelangle
1204
+
1205
+ ## 6.0.3
1206
+
1207
+ _Mar 23, 2023_
1208
+
1209
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1210
+
1211
+ - 🌍 Improve Bulgarian (bg-BG), Persian (fa-IR), Polish (pl-PL), and Dutch (nl-NL) locales
1212
+ - 🐞 Bugfixes
1213
+ - 📚 Documentation improvements
1214
+
1215
+ ### `@mui/x-data-grid@6.0.3` / `@mui/x-data-grid-pro@6.0.3` / `@mui/x-data-grid-premium@6.0.3`
1216
+
1217
+ #### Changes
1218
+
1219
+ - [DataGrid] Fix overflow calculation issue in column group headers (#8246) @MBilalShafi
1220
+ - [DataGridPro] Fix column reorder glitches (#8335) @cherniavskii
1221
+ - [l10n] Improve Bulgarian (bg-BG) locale (#8315) @todevmilen
1222
+ - [l10n] Improve Persian (fa-IR) locale (#8268) @fakhamatia
1223
+ - [l10n] improve Dutch (nl-NL) locale (#8317) @developenguin
1224
+
1225
+ ### `@mui/x-date-pickers@6.0.3` / `@mui/x-date-pickers-pro@6.0.3`
1226
+
1227
+ #### Changes
1228
+
1229
+ - [fields] Allow to reset the value from the outside (#8287) @flaviendelangle
1230
+ - [fields] Cleanup section order generation (#8290) @flaviendelangle
1231
+ - [fields] Fix Safari input selection resetting regression (#8295) @LukasTy
1232
+ - [fields] Fix editing when all sections are selected (#8330) @flaviendelangle
1233
+ - [fields] Fix iOS browser scroll jumping when entering data (#8328) @LukasTy
1234
+ - [fields] New prop `unstableFieldRef` to imperatively interact with the selected sections (#8235) @flaviendelangle
1235
+ - [pickers] Align date calendar colors (#8318) @LukasTy
1236
+ - [pickers] Support invalid dates from the field (#8298) @flaviendelangle
1237
+ - [l10n] Improve Persian (fa-IR) locale (#8268) @fakhamatia
1238
+ - [l10n] Improve Polish (pl-PL) locale (#8344) @drmats
1239
+ - [l10n] improve Dutch (nl-NL) locale (#8317) @developenguin
1240
+
1241
+ ### Docs
1242
+
1243
+ - [docs] Create examples of pickers with custom fields (#8034) @flaviendelangle
1244
+ - [docs] Fix 301 redirections @oliviertassinari
1245
+ - [docs] Fix link to React's docs @oliviertassinari
1246
+ - [docs] Fix pro license links to point to the same page (#8303) @LukasTy
1247
+ - [docs] Give an incentive to upgrade (#8269) @oliviertassinari
1248
+ - [docs] Improve contrast on data grid navigation (#8239) @oliviertassinari
1249
+ - [docs] Update shortcuts page to use slotProps (#8288) @dcorb
1250
+ - [docs] Explain the `shouldDisableTime` migration in more depth (#8348) @LukasTy
1251
+
1252
+ ### Core
1253
+
1254
+ - [core] Remove unused `visx` chart package (#8259) @LukasTy
1255
+ - [core] Upgrade monorepo (#8331) @cherniavskii
1256
+ - [charts] Project setup (#8308) @alexfauquette
1257
+ - [test] Track visual regressions of column menu and filter/column panels (#8095) @cherniavskii
1258
+
1259
+ ## 6.0.2
1260
+
1261
+ _Mar 16, 2023_
1262
+
1263
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
1264
+
1265
+ - 🚀 Fire `onChange` when filling a partial date (#8082) @flaviendelangle
1266
+ - 🎁 Support date format like `1st` (`do`) (#8188) @flaviendelangle
1267
+ - 🌍 Add Hebrew (he-IL) locale (#8222) @ylarom
1268
+ - 🌍 Improve Brazilian Portuguese (pt-BR), German (de-DE), and French (fr-FR) locales
1269
+ - 📚 Documentation improvements
1270
+ - 🐞 Bugfixes
1271
+
1272
+ ### `@mui/x-data-grid@6.0.2` / `@mui/x-data-grid-pro@6.0.2` / `@mui/x-data-grid-premium@6.0.2`
1273
+
1274
+ #### Changes
1275
+
1276
+ - [DataGrid] Fix <kbd>Space</kbd> triggering edit mode (#8180) @m4theushw
1277
+ - [DataGrid] Remove warning when adding a custom column type (#8227) @m4theushw
1278
+ - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#8198) @JoaoSerafim3001
1279
+
1280
+ ### `@mui/x-date-pickers@6.0.2` / `@mui/x-date-pickers-pro@6.0.2`
1281
+
1282
+ #### Changes
1283
+
1284
+ - [l10n] Add Hebrew (he-IL) locale (#8222) @ylarom
1285
+ - [l10n] Improve German (de-DE) locale (#8204) @sebkasanzew
1286
+ - [l10n] Improve French (fr-FR) locale (#8229) @marvinroger
1287
+ - [DateRangePicker] Allow overriding `slotProps.textField` (#8201) @LukasTy
1288
+ - [fields] Fire `onChange` when filling a partial date (#8082) @flaviendelangle
1289
+ - [fields] Fix editing in shadow dom (#8254) @flaviendelangle
1290
+ - [fields] Remove the duplicated warning about invalid adapter (#8187) @flaviendelangle
1291
+ - [fields] Support date format like `1st` (`do`) (#8188) @flaviendelangle
1292
+ - [pickers] Fix to avoid selecting sections on mobile picker field (#8228) @LukasTy
1293
+ - [pickers] Inherit previous and next icons size from their parent button (#8218) @flaviendelangle
1294
+
1295
+ ### Docs
1296
+
1297
+ - [docs] Add a warning in the migration guide for people re-enabling the clock on desktop (#8184) @flaviendelangle
1298
+ - [docs] Add a warning for `luxon` macro tokens (#8245) @flaviendelangle
1299
+ - [docs] Complete pickers customization pages (#8066) @alexfauquette
1300
+ - [docs] Fix 301 redirection @oliviertassinari
1301
+ - [docs] Fix 404 links to customization Material UI APIs (#8200) @oliviertassinari
1302
+ - [docs] Fix `moment-hijri` demo (#8255) @LukasTy
1303
+ - [docs] Improve migration diff (#8240) @oliviertassinari
1304
+ - [docs] Change **What's new** page url to point to announcement blog post (#8186) @joserodolfofreitas
1305
+ - [docs] Resolve 301 in changelog @oliviertassinari
1306
+
1307
+ ### Core
1308
+
1309
+ - [core] Regen api docs (#8220) @flaviendelangle
1310
+ - [core] Remove duplicated `/` (#8223) @alexfauquette
1311
+
1312
+ ## 6.0.1
1313
+
1314
+ _Mar 9, 2023_
1315
+
1316
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1317
+
1318
+ - 🌍 Improve French (fr-FR) locale (#8122) @MaherSamiGMC
1319
+ - 📚 Documentation improvements
1320
+ - 🐞 Bugfixes
1321
+
1322
+ ### `@mui/x-data-grid@6.0.1` / `@mui/x-data-grid-pro@6.0.1` / `@mui/x-data-grid-premium@6.0.1`
1323
+
1324
+ #### Changes
1325
+
1326
+ - [DataGrid] Fix `MenuProps.onClose` being overridden for single select edit component (#8174) @rohitnatesh
1327
+ - [DataGrid] Simplify `buildPrintWindow` (#8142) @oliviertassinari
1328
+ - [l10n] Improve French (fr-FR) locale (#8122) @MaherSamiGMC
1329
+
1330
+ ### `@mui/x-date-pickers@6.0.1` / `@mui/x-date-pickers-pro@6.0.1`
1331
+
1332
+ #### Changes
1333
+
1334
+ - [pickers] Add a runtime warning when a `renderInput` prop is passed to a picker (#8183) @flaviendelangle
1335
+ - [pickers] Don't pass `ownerState` to the `inputAdornment` slot (#8165) @flaviendelangle
1336
+
1337
+ ### Docs
1338
+
1339
+ - [docs] Fix a typo in the migration guide (#8152) @flaviendelangle
1340
+ - [docs] Fix package version used in CodeSandbox demos (#8125) @cherniavskii
1341
+ - [docs] Fix typos across codebase (#8126) @stavares843
1342
+ - [docs] Improve Data Grid quick filter documentation (#8109) @MBilalShafi
1343
+ - [docs] Improve link from npm to docs (#8141) @oliviertassinari
1344
+ - [docs] Remove test sections (#8177) @m4theushw
1345
+
1346
+ ### Core
1347
+
1348
+ - [core] Upgrade monorepo (#8162) @m4theushw
1349
+
1350
+ ## 6.0.0
1351
+
1352
+ _Mar 3, 2023_
1353
+
1354
+ We're excited to [announce the first v6 stable release](https://mui.com/blog/mui-x-v6/)! 🎉🚀
1355
+
1356
+ This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
1357
+ Migration guides are available with a complete list of the breaking changes:
1358
+
1359
+ - [Data Grid](https://mui.com/x/migration/migration-data-grid-v5/)
1360
+ - [Date Pickers](https://mui.com/x/migration/migration-pickers-v5/)
1361
+
1362
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
1363
+
1364
+ - 🎁 The row pinning is no longer experimental (#8055) @MBilalShafi
1365
+
1366
+ You can now use the row pinning without the `experimentalFeatures.rowPinning` flag enabled.
1367
+
1368
+ ```diff
1369
+ <DataGridPro
1370
+ - experimentalFeatures={{ rowPinning: true }}
1371
+ />
1372
+ ```
1373
+
1374
+ - ⚡️ Improved grid performance by rows and cells memoization (#7846) @m4theushw
1375
+ - ✨ Fields have a distinct visual state when empty (#8069) @LukasTy
1376
+ - 🌍 Improve Czech (cs-CZ) locale (#8113) @BlastyCZ
1377
+ - 🌍 Improve Arabic (ar-SD) locale (#8100) @atf98
1378
+ - 📚 Documentation improvements
1379
+ - 🐞 Bugfixes
1380
+
1381
+ ### `@mui/x-data-grid@6.0.0` / `@mui/x-data-grid-pro@6.0.0` / `@mui/x-data-grid-premium@6.0.0`
1382
+
1383
+ #### Breaking changes
1384
+
1385
+ - The `componentsProps` and `slotProps` props are now typed for better DX
1386
+ - The `cellFocus`, `cellTabIndex` and `editRowsState` props are not passed to the component used in the row slot. You can use the new `focusedCell` and `tabbableCell` props instead. For the editing state, use the API methods.
1387
+ The flag `experimentalFeatures.rowPinning` is no longer needed.
1388
+
1389
+ #### Changes
1390
+
1391
+ - [DataGrid] Add typing for `componentsProps` (#7968) @MBilalShafi
1392
+ - [DataGrid] Allow multiple modules' augmentation (#8098) @MBilalShafi
1393
+ - [DataGrid] Extract `BaseInputLabel` slot (#8068) @cherniavskii
1394
+ - [DataGrid] Extract `BaseSelectOption` slot (#8072) @cherniavskii
1395
+ - [DataGrid] Make possible to memoize rows and cells (#7846) @m4theushw
1396
+ - [DataGrid] Register `getLocaleText` synchronously (#8029) @m4theushw
1397
+ - [DataGrid] Start extracting material slots to a separate directory (#8004) @cherniavskii
1398
+ - [DataGrid] Use `styled` from system (#8032) @siriwatknp
1399
+ - [DataGridPro] Improve typing for `getColumnForNewFilter` method (#8043) @MBilalShafi
1400
+ - [DataGridPro] Remove row pinning from experimental features (#8055) @MBilalShafi
1401
+ - [l10n] Improve Czech (cs-CZ) locale (#8113) @BlastyCZ
1402
+ - [l10n] Improve Arabic (ar-SD) locale (#8100) @atf98
1403
+
1404
+ ### `@mui/x-date-pickers@6.0.0` / `@mui/x-date-pickers-pro@6.0.0`
1405
+
1406
+ #### Breaking changes
1407
+
1408
+ On desktop, `DateTimePicker` shows the am/pm controls in the toolbar instead of the clock by default.
1409
+ It can be overridden by specifying `ampmInClock` prop.
1410
+
1411
+ #### Changes
1412
+
1413
+ - [DateRangePicker] Generalize the highlight between months (#8079) @alexfauquette
1414
+ - [fields] Clean the order of the tokens in the `formatTokenMap` of each adapter (#8112) @flaviendelangle
1415
+ - [fields] Implement empty visual state (#8069) @LukasTy
1416
+ - [fields] Replace `sectionOrder` state with a memoized variable (#8090) @flaviendelangle
1417
+ - [pickers] Add support for UTC on `moment` adapter (#8031) @flaviendelangle
1418
+ - [pickers] Document and deprecate `onClose` callback on static pickers (#8021) @LukasTy
1419
+ - [pickers] Fix am/pm buttons position and responsiveness (#5149) @alexfauquette
1420
+ - [pickers] Fix layout `sx` propagation (#8064) @alexfauquette
1421
+ - [pickers] Increase `moment` peer dependency minimum version (#8046) @oliviertassinari
1422
+ - [pickers] Remove `WrapperVariantContext` (#8088) @LukasTy
1423
+ - [pickers] Stop using `WrapperVariantContext` in `Clock` (#8083) @LukasTy
1424
+
1425
+ ### Docs
1426
+
1427
+ - [docs] Add `aggregation` experimental flag removal to the migration guide (#8056) @MBilalShafi
1428
+ - [docs] Add expansion state behavioral change to v6 migration guide (#8108) @MBilalShafi
1429
+ - [docs] Change default date from 4th of April to 17th of April for readability (#8089) @flaviendelangle
1430
+ - [docs] Clarify the MIT license restriction for grid pagination (#8045) @arunkp
1431
+ - [docs] Fix typo replacing "bellow" by "below" (#8080) @TheBox193
1432
+ - [docs] Link `API object` in the `apiRef` sections (#8106) @MBilalShafi
1433
+ - [docs] Link to demonstrations in the interfaces API docs (#8028) @cherniavskii
1434
+ - [docs] Remove the `@next` tag from installation instructions (#8102) @cherniavskii
1435
+ - [docs] Start enforcing consistency in documentation vocabulary (#6871) @alexfauquette
1436
+ - [docs] Update accessibility guidelines (#7970) @oliviertassinari
1437
+ - [docs] Update the DataGrid demo to leverage the latest features (#7863) @joserodolfofreitas
1438
+ - [docs] Update migration guide for stable release (#8092) @joserodolfofreitas
1439
+
1440
+ ### Core
1441
+
1442
+ - [core] Add modified docs page links in the PR (#7848) @alexfauquette
1443
+ - [core] Add test on value timezone (#7867) @alexfauquette
1444
+ - [core] Bump monorepo (#8006) @LukasTy
1445
+ - [core] Change default branch back to `master` (#8081) @m4theushw
1446
+ - [core] Upgrade monorepo (#8115) @MBilalShafi
1447
+ - [core] Mention the use of Support key as an alternative to the OrderID (#6968) @joserodolfofreitas
1448
+ - [test] Fix flaky tests (#8097) @cherniavskii
1449
+
1450
+ ## 6.0.0-beta.5
1451
+
1452
+ _Feb 23, 2023_
1453
+
1454
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
1455
+
1456
+ - ⚡️ Add web worker support for Excel export (#7770) @m4theushw
1457
+ - 🎁 Add a button to remove all filters on the data grid filter panel (#7326) @MBilalShafi
1458
+ - ⚙️ Allow to customize options label and value in the data grid `singleSelect` column (#7684) @m4theushw
1459
+ - 📚 Documentation improvements
1460
+ - 🐞 Bugfixes
1461
+
1462
+ ### `@mui/x-data-grid@6.0.0-beta.5` / `@mui/x-data-grid-pro@6.0.0-beta.5` / `@mui/x-data-grid-premium@6.0.0-beta.5`
1463
+
1464
+ #### Changes
1465
+
1466
+ - [DataGrid] Allow to customize label and value for `singleSelect` (#7684) @m4theushw
1467
+ - [DataGrid] Fix `ownerState` being `undefined` in theme style overrides (#7964) @lolaignatova
1468
+ - [DataGrid] Introduce `slots` and deprecate `components` (#7882) @MBilalShafi
1469
+ - [DataGridPro] Add `Remove All` option in filter panel (#7326) @MBilalShafi
1470
+ - [DataGridPremium] Add web worker support for Excel export (#7770) @m4theushw
1471
+
1472
+ ### `@mui/x-date-pickers@6.0.0-beta.5` / `@mui/x-date-pickers-pro@6.0.0-beta.5`
1473
+
1474
+ #### Breaking changes
1475
+
1476
+ - The `MuiDateSectionName` type was renamed to `FieldSectionType`
1477
+
1478
+ #### Changes
1479
+
1480
+ - [fields] Fix multi input range fields validation when uncontrolled (#8002) @LukasTy
1481
+ - [fields] Fix single input time range fields slot props (#7988) @LukasTy
1482
+ - [fields] Make the `ArrowUp` / `ArrowDown` edition only impact the active section (#7993) @flaviendelangle
1483
+ - [fields] Fix single input range fields clearing (#7995) @flaviendelangle
1484
+ - [fields] Clean the section object (#8009) @flaviendelangle
1485
+ - [pickers] Fix `textField` slot `error` prop propagation (#7987) @LukasTy
1486
+
1487
+ ### `@mui/x-codemod@6.0.0-beta.5`
1488
+
1489
+ #### Changes
1490
+
1491
+ - [codemod] Add `apiRef.current.getRowIndex` to `DataGrid` renaming codemod (#8001) @MBilalShafi
1492
+
1493
+ ### Docs
1494
+
1495
+ - [docs] Fine tune range fields demos (#7992) @LukasTy
1496
+ - [docs] Fix a few scroll issues on mobile (#7900) @oliviertassinari
1497
+ - [docs] Fix inconsistency in the data grid migration guide (#7963) @MBilalShafi
1498
+
1499
+ ### Core
1500
+
1501
+ - [core] Fix `moment` locale on adapter tests (#8020) @flaviendelangle
1502
+ - [test] Support all adapters on the field tests about the formats (#7996) @flaviendelangle
1503
+
1504
+ ## 6.0.0-beta.4
1505
+
1506
+ _Feb 16, 2023_
1507
+
1508
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1509
+
1510
+ - ⚡️ Improve grid performance by reducing rerenders (#7857) @cherniavskii
1511
+ - 📚 Documentation improvements
1512
+ - 🐞 Bugfixes
1513
+
1514
+ ### `@mui/x-data-grid@6.0.0-beta.4` / `@mui/x-data-grid-pro@6.0.0-beta.4` / `@mui/x-data-grid-premium@6.0.0-beta.4`
1515
+
1516
+ #### Changes
1517
+
1518
+ - [DataGrid] Add interface for `singleSelect` column (#7685) @m4theushw
1519
+ - [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7733) @ivek-Prajapatii
1520
+ - [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7857) @cherniavskii
1521
+ - [DataGridPro] Change cursor when dragging a column (#7725) @sai6855
1522
+ - [DataGridPremium] Fix `leafField` to have correct focus value (#7950) @MBilalShafi
1523
+
1524
+ ### `@mui/x-date-pickers@6.0.0-beta.4` / `@mui/x-date-pickers-pro@6.0.0-beta.4`
1525
+
1526
+ #### Changes
1527
+
1528
+ - [DateRangePicker] Fix slide transition by avoiding useless component re-rendering (#7874) @LukasTy
1529
+ - [fields] Support Backspace key on `Android` (#7842) @flaviendelangle
1530
+ - [fields] Support escaped characters on `Luxon` (#7888) @flaviendelangle
1531
+ - [pickers] Prepare new pickers for custom fields (#7806) @flaviendelangle
1532
+
1533
+ ### `@mui/x-codemod@6.0.0-beta.4`
1534
+
1535
+ #### Changes
1536
+
1537
+ - [codemod] Fix import path (#7952) @LukasTy
1538
+
1539
+ ### Docs
1540
+
1541
+ - [docs] Add an info callout specifying the current state of desktop time view (#7933) @LukasTy
1542
+ - [docs] Add missing param in `useGridApiEventHandler` examples (#7939) @flaviendelangle
1543
+ - [docs] Fix markdown table alignments (#7898) @oliviertassinari
1544
+ - [docs] Improve `DataGrid` migration guide (#7861) @MBilalShafi
1545
+ - [docs] Update `LocalizationProvider` `dateAdapter` with a link to the doc (#7872) @LukasTy
1546
+
1547
+ ### Core
1548
+
1549
+ - [core] Run editing field tests on all major adapters (#7868) @flaviendelangle
1550
+
1551
+ ## 6.0.0-beta.3
1552
+
1553
+ _Feb 9, 2023_
1554
+
1555
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1556
+
1557
+ - ⬅️ Add right-to-left support for the data grid (#6580) @yaredtsy
1558
+ - ⚡️ Improve grid resize performance (#7864) @cherniavskii
1559
+ - ✨ New codemods for migrating to v6 @MBilalShafi
1560
+ - 📚 Documentation improvements
1561
+ - 🐞 Bugfixes
1562
+
1563
+ ### `@mui/x-data-grid@6.0.0-beta.3` / `@mui/x-data-grid-pro@6.0.0-beta.3` / `@mui/x-data-grid-premium@6.0.0-beta.3`
1564
+
1565
+ #### Changes
1566
+
1567
+ - [DataGrid] Add `BaseIconButton` component slot (#7329) @123joshuawu
1568
+ - [DataGrid] Allow to customize the value displayed in the filter button tooltip (#6956) @ithrforu
1569
+ - [DataGrid] Improve grid resize performance (#7864) @cherniavskii
1570
+ - [DataGrid] Make `apiRef.current.getRowWithUpdatedValues` stable (#7788) @m4theushw
1571
+ - [DataGrid] Support RTL (#6580) @yaredtsy
1572
+ - [DataGrid] Improve query selectors for selecting cell element (#7354) @yaredtsy
1573
+ - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#7854) @ed-ateixeira
1574
+
1575
+ ### `@mui/x-date-pickers@6.0.0-beta.3` / `@mui/x-date-pickers-pro@6.0.0-beta.3`
1576
+
1577
+ #### Changes
1578
+
1579
+ - [fields] Allow to select year 2000 on 2-digit year section (#7858) @flaviendelangle
1580
+ - [fields] Fix year editing on `day.js` (#7862) @flaviendelangle
1581
+ - [fields] Fix year editing on valid date (#7834) @flaviendelangle
1582
+ - [fields] Reset query when pressing `Backspace` or `Delete` (#7855) @flaviendelangle
1583
+ - [pickers] Clean Popper position on new pickers (#7445) @flaviendelangle
1584
+ - [pickers] Ditch pickers `skipLibCheck` (#7808) @LukasTy
1585
+ - [pickers] Improve JSDoc and resulting API docs pages (#7847) @LukasTy
1586
+
1587
+ ### `@mui/x-codemod@6.0.0-beta.3`
1588
+
1589
+ #### Changes
1590
+
1591
+ - [codemod] Add more cases to `rename-selectors-and-events` codemod (#7856) @MBilalShafi
1592
+ - [codemod] Add warning message to the codemods and migration guide (#7813) @MBilalShafi
1593
+ - [codemod] Add codemod to remove unnecessary `experimentalFeatures` flag (#7836) @MBilalShafi
1594
+ - [codemod] Rename `GridFilterItem` props (#7483) @MBilalShafi
1595
+ - [codemod] Rename `linkOperators` to `logicOperators` (#7707) @MBilalShafi
1596
+ - [codemod] Replace `onCellFocusOut` prop for Data Grid (#7786) @MBilalShafi
1597
+
1598
+ ### Docs
1599
+
1600
+ - [docs] Add a "Whats new in v6" page linked on the sidebar (#7820) @joserodolfofreitas
1601
+ - [docs] Fix hydration crash in pickers (#7734) @oliviertassinari
1602
+ - [docs] Remove no longer relevant range shortcuts section (#7840) @LukasTy
1603
+ - [docs] Use `@next` tag in grid and pickers installation instructions (#7814) @cherniavskii
1604
+
1605
+ ### Core
1606
+
1607
+ - [core] Remove `tslint` package leftovers (#7841) @LukasTy
1608
+ - [test] Use `createDescribes` for `describeValue` and `describeValidation` (#7866) @flaviendelangle
1609
+
1610
+ ## 6.0.0-beta.2
1611
+
1612
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1613
+
1614
+ - 🚀 Support week day formats in the field components
1615
+ - 🌍 Add Hungarian (hu-HU) and Urdu (ur-PK) locales
1616
+ - 🌍 Improve French (fr-FR) and Italian (it-IT) locales
1617
+ - ✨ New codemods for migrating to v6
1618
+ - 📚 Documentation improvements
1619
+ - 🐞 Bug fixes
1620
+
1621
+ ### `@mui/x-data-grid@6.0.0-beta.2` / `@mui/x-data-grid-pro@6.0.0-beta.2` / `@mui/x-data-grid-premium@6.0.0-beta.2`
1622
+
1623
+ #### Changes
1624
+
1625
+ - [DataGrid] Handle non-numeric values returned by `getRowHeight` prop (#7703) @cherniavskii
1626
+ - [DataGrid] Merge row styles with `componentsProps.row.style` (#7641) @marktoman
1627
+ - [l10n] Add Hungarian (hu-HU) locale (#7776) @noherczeg
1628
+ - [l10n] Add Urdu (ur-PK) locale (#6866) @MBilalShafi
1629
+ - [l10n] Improve French (fr-FR) locale (#7777) @ivek-Prajapatii
1630
+ - [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
1631
+
1632
+ ### `@mui/x-date-pickers@6.0.0-beta.2` / `@mui/x-date-pickers-pro@6.0.0-beta.2`
1633
+
1634
+ #### Changes
1635
+
1636
+ - [fields] Support week day formats (#7392) @flaviendelangle
1637
+ - [pickers] Allow to initialize and control the `rangePosition` on all range components (#7764) @flaviendelangle
1638
+ - [pickers] Fix theme augmentation (#7800) @LukasTy
1639
+ - [pickers] Hide scrollbars in the date calendar container (#7766) @ivek-Prajapatii
1640
+ - [pickers] Remove the dependency on `rifm` (#7785) @alexfauquette
1641
+
1642
+ ### `@mui/x-codemod@6.0.0-beta.2`
1643
+
1644
+ #### Changes
1645
+
1646
+ - [codemod] Add pickers `rename-default-toolbar-title-localeText` codemod (#7752) @LukasTy
1647
+ - [codemod] Add pickers `rename-inputFormat-prop` codemod (#7736) @LukasTy
1648
+
1649
+ ### Docs
1650
+
1651
+ - [docs] Fix a typo in data grid layout page (#7113) @sfbaker7
1652
+ - [docs] Fix require context path to avoid duplicate key creation (#7781) @LukasTy
1653
+ - [docs] Polish pickers migration docs (#7737) @LukasTy
1654
+ - [docs] Rename `next` translation docs and remove duplicates with `-next` (#7729) @LukasTy
1655
+
1656
+ ### Core
1657
+
1658
+ - [core] Fix l10n data file (#7804) @flaviendelangle
1659
+ - [core] Fix Next.js warning (#7754) @oliviertassinari
1660
+ - [core] Remove unused demos (#7758) @flaviendelangle
1661
+
1662
+ ## 6.0.0-beta.1
1663
+
1664
+ _Jan 27, 2023_
1665
+
1666
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
1667
+
1668
+ - 🚀 New shortcuts component for the date pickers (#7154) @alexfauquette
1669
+ - 🌍 Add Belarusian (be-BY), Czech (cs-CZ) and Russian (ru-RU) locales
1670
+ - 🌍 Improve Spanish (es-ES), Japanese (ja-JP), Slovak (sk-SK), and Vietnamese (vi-VN) locales
1671
+ - ✨ New codemods for migrating to v6
1672
+ - 📚 Documentation improvements
1673
+ - 🐞 Bug fixes
1674
+
1675
+ ### `@mui/x-data-grid@6.0.0-beta.1` / `@mui/x-data-grid-pro@6.0.0-beta.1` / `@mui/x-data-grid-premium@6.0.0-beta.1`
1676
+
1677
+ #### Changes
1678
+
1679
+ - [DataGrid] Add `title` attribute to cells (#7682) @thupi
1680
+ - [DataGrid] Fix `autoHeight` not working properly inside of a flex container (#7701) @cherniavskii
1681
+ - [DataGrid] Fix grid state not being updated after print preview is closed (#7642) @cherniavskii
1682
+ - [DataGrid] Fix non-hideable columns visibility toggling (#7637) @cherniavskii
1683
+ - [DataGrid] Fix scrolling on resize for data grids inside shadow root (#7298) @akiradev
1684
+ - [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7702) @msidlo
1685
+ - [l10n] Add missing core locales for `MuiTablePagination` (#7717) @MBilalShafi
1686
+ - [l10n] Improve Spanish (es-ES) and Vietnamese (vi-VN) locale (#7634) @WiXSL and @SpacerZ
1687
+ - [l10n] Add Belarusian (be-BY) locale (#7646) @olhalink
1688
+
1689
+ ### `@mui/x-date-pickers@6.0.0-beta.1` / `@mui/x-date-pickers-pro@6.0.0-beta.1`
1690
+
1691
+ #### Changes
1692
+
1693
+ - [pickers] Fix `aria-labelledby` assignment to dialog (#7608) @LukasTy
1694
+ - [pickers] Support `UTC` with `dayjs` (#7610) @flaviendelangle
1695
+ - [pickers] Update focus when opening a UI view (#7620) @alexfauquette
1696
+ - [DateRangePickers] Add shortcuts component (#7154) @alexfauquette
1697
+ - [l10n] Add Czech (cs-CZ) locale (#7645) @OndrejHj04
1698
+ - [l10n] Add Russian (ru-RU) locale (#7706) @rstmzh
1699
+ - [l10n] Improve Japanese (ja-JP) locale (#7624) @makoto14
1700
+
1701
+ ### `@mui/x-codemod@6.0.0-beta.1`
1702
+
1703
+ #### Changes
1704
+
1705
+ - [codemod] Add pickers `replace-toolbar-props-by-slot` codemod (#7687) @alexfauquette
1706
+ - [codemod] Add `GridColumnMenuItemProps` to `column-menu-components-rename` codemod (#7710) @MBilalShafi
1707
+ - [codemod] Add `headerHeight` prop update to `row-selection-props-rename` codemod (#7711) @MBilalShafi
1708
+ - [codemod] Add pickers codemod for `components` to `slots` renaming (#7533) @alexfauquette
1709
+ - [codemod] Add pickers `migrate-to-components-componentsProps` and `replace-arrows-button-slot` codemods (#7698) @alexfauquette
1710
+ - [codemod] Add data grid codemod renaming `rowsPerPageOptions` prop to `pageSizeOptions` (#7603) @MBilalShafi
1711
+ - [codemod] Add pickers `rename-should-disable-time` codemod (#7709) @alexfauquette
1712
+ - [codemod] Add data grid `row-selection-props-rename` codemod (#7485) @MBilalShafi
1713
+ - [codemod] Add data grid `rename-selectors-and-events` codemod (#7699) @MBilalShafi
1714
+ - [codemod] Add pickers `replace-tabs-props` codemod (#7639) @alexfauquette
1715
+
1716
+ ### Docs
1717
+
1718
+ - [docs] Add info callout about available component `slots` (#7714) @ivek-Prajapatii
1719
+ - [docs] Add recipe for pinning grouped column (#7712) @MBilalShafi
1720
+ - [docs] Fix 404 links to picker API page @oliviertassinari
1721
+ - [docs] Update `DemoContainer` `components` prop using a codemod (#7574) @alexfauquette
1722
+
1723
+ ### Core
1724
+
1725
+ - [core] Fix `innerslotProps` typo (#7697) @LukasTy
1726
+ - [core] Upgrade monorepo (#7676) @cherniavskii
1727
+
1728
+ ## 6.0.0-beta.0
1729
+
1730
+ _Jan 19, 2023_
1731
+
1732
+ After a long period in alpha, we're glad to announce the first MUI X v6 beta!
1733
+ We encourage you to try out this version, packed with improvements, bug fixes, and a few highlighted features ✨:
1734
+
1735
+ **Data Grid**
1736
+
1737
+ - [Access to the API Object in the community version](https://mui.com/x/react-data-grid/api-object/)
1738
+ - [Improved column menu](https://mui.com/x/react-data-grid/column-menu/)
1739
+ - [Cell selection range](https://mui.com/x/react-data-grid/cell-selection/) (Premium)
1740
+
1741
+ **Date and Time pickers**
1742
+
1743
+ - [Fields: the new default input for pickers](https://mui.com/x/react-date-pickers/fields/).
1744
+ - [Improved layout customization](https://mui.com/x/react-date-pickers/custom-layout/)
1745
+ - [Edit date ranges with drag and drop](https://mui.com/x/react-date-pickers/date-range-calendar/) (Pro)
1746
+
1747
+ You can check the migration guides for the [Data Grid](https://mui.com/x/migration/migration-data-grid-v5/) and [Date Pickers](https://mui.com/x/migration/migration-pickers-v5/) in the documentation.
1748
+
1749
+ We'd like to offer a big thanks to the 10 contributors who made this release possible.
1750
+
1751
+ - ✨ Merge `page` and `pageSize` props into `paginationModel`
1752
+ - 🚀 Replace old masked picker components with field based ones
1753
+ - 🌍 Improve Swedish (sv-SE) and Italian (it-IT) locales
1754
+ - 📚 Documentation improvements
1755
+ - 🐞 Bug fixes
1756
+
1757
+ ### `@mui/x-data-grid@6.0.0-beta.0` / `@mui/x-data-grid-pro@6.0.0-beta.0` / `@mui/x-data-grid-premium@6.0.0-beta.0`
1758
+
1759
+ #### Breaking changes
1760
+
1761
+ - The `disableExtendRowFullWidth` prop was removed.
1762
+ Use `showCellVerticalBorder` or `showColumnVerticalBorder` props to show or hide right border for cells and header cells respectively.
1763
+
1764
+ - The `GridCellIdentifier` type was removed. Use `GridCellCoordinates` instead.
1765
+
1766
+ - The `singleSelect` column type now has a default value formatter that returns the `label` corresponding to the selected value when `valueOptions` is an array of objects.
1767
+ As consequence, any existing value formatter will not be applied to the individual options anymore, but only to the text of the cell.
1768
+ It is recommended to migrate `valueOptions` to an array of objects to be able to add a custom label for each value.
1769
+ To override the label used for each option when the cell is in edit mode or in the filter panel, the following components now support a `getOptionLabel` prop.
1770
+ This prop accepts a callback that is called with the item from `valueOptions` and must return the new label.
1771
+
1772
+ - `GridEditSingleSelectCell`
1773
+ - `GridFilterInputSingleSelect`
1774
+ - `GridFilterInputMultipleSingleSelect`
1775
+
1776
+ - The `getGridSingleSelectQuickFilterFn` function was removed.
1777
+ You can copy the old function and pass it to the `getApplyQuickFilterFn` property of the `singleSelect` column definition.
1778
+
1779
+ - The `page` and `pageSize` props and their respective event handlers `onPageChange` and `onPageSizeChange` were removed.
1780
+ Use `paginationModel` and `onPaginationModelChange` instead.
1781
+
1782
+ ```diff
1783
+ <DataGrid
1784
+ rows={rows}
1785
+ columns={columns}
1786
+ - page={page}
1787
+ - pageSize={pageSize}
1788
+ - onPageChange={handlePageChange}
1789
+ - onPageSizeChange={handlePageSizeChange}
1790
+ + paginationModel={{ page, pageSize }}
1791
+ + onPaginationModelChange={handlePaginationModelChange}
1792
+ />
1793
+ ```
1794
+
1795
+ - The properties `initialState.pagination.page` and `initialState.pagination.pageSize` were also removed.
1796
+ Use `initialState.pagination.paginationModel` instead.
1797
+
1798
+ ```diff
1799
+ -initialState={{ pagination: { page: 1, pageSize: 10 } }}
1800
+ +initialState={{ pagination: { paginationModel: { page: 1, pageSize: 10 } } }}
1801
+ ```
1802
+
1803
+ - The `rowsPerPageOptions` prop was renamed to `pageSizeOptions`.
1804
+
1805
+ ```diff
1806
+ -<DataGrid rowsPerPageOptions={[10, 20, 50]} />
1807
+ +<DataGrid pageSizeOptions={[10, 20, 50]} />
1808
+ ```
1809
+
1810
+ - The `error` and `onError` props were removed - the grid no longer catches errors during rendering.
1811
+ To catch errors that happen during rendering use the [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary).
1812
+
1813
+ - The `components.ErrorOverlay` slot was removed.
1814
+
1815
+ - The `GridErrorOverlay` component was removed.
1816
+
1817
+ - The `componentError` event was removed.
1818
+ Use the [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary) to catch errors thrown during rendering.
1819
+
1820
+ - The `apiRef.current.showError` method was removed.
1821
+ The UI for errors is no longer handled by the grid.
1822
+
1823
+ - The `date` and `dateTime` columns now only support `Date` objects as values.
1824
+ To parse a string value, use the [`valueGetter`](https://mui.com/x/react-data-grid/column-definition/#value-getter):
1825
+
1826
+ ```tsx
1827
+ <DataGrid
1828
+ columns={[
1829
+ {
1830
+ field: 'date',
1831
+ type: 'date',
1832
+ valueGetter: (params) => new Date(params.value),
1833
+ },
1834
+ ]}
1835
+ />
1836
+ ```
1837
+
1838
+ - The following selectors have been renamed:
1839
+
1840
+ - `gridVisibleSortedRowIdsSelector` renamed to `gridExpandedSortedRowIdsSelector`
1841
+ - `gridVisibleSortedRowEntriesSelector` renamed to `gridExpandedSortedRowEntriesSelector`
1842
+ - `gridVisibleRowCountSelector` renamed to `gridExpandedRowCountSelector`
1843
+ - `gridVisibleSortedTopLevelRowEntriesSelector` renamed to `gridFilteredSortedTopLevelRowEntriesSelector`
1844
+ - `gridVisibleTopLevelRowCountSelector` renamed to `gridFilteredTopLevelRowCountSelector`
1845
+
1846
+ - The `apiRef.current.getVisibleRowModels` method was removed. Use the `gridVisibleSortedRowEntriesSelector` selector instead.
1847
+
1848
+ - The `GridRowScrollEndParams["virtualRowsCount"]` parameter was renamed to `GridRowScrollEndParams["visibleRowsCount"]`.
1849
+
1850
+ #### Changes
1851
+
1852
+ - [DataGrid] Add default value formatter to `singleSelect` (#7290) @m4theushw
1853
+ - [DataGrid] Fix flickering on grid scroll (#7549) @cherniavskii
1854
+ - [DataGrid] Merge `page` and `pageSize` props into `paginationModel` (#7147) @MBilalShafi
1855
+ - [DataGrid] Only support `Date` as value in `date` and `dateTime` column types (#7594) @cherniavskii
1856
+ - [DataGrid] Remove error boundary (#7579) @cherniavskii
1857
+ - [DataGrid] Remove `GridCellIdentifier` redundant type (#7578) @MBilalShafi
1858
+ - [DataGrid] Remove `disableExtendRowFullWidth` prop (#7373) @MBilalShafi
1859
+ - [DataGrid] Remove tag limit from `isAnyOf` operator input (#7592) @m4theushw
1860
+ - [DataGrid] Use v6 terminology (#7473) @DanailH
1861
+ - [DataGridPremium] Keep focus on first selected cell (#7482) @m4theushw
1862
+ - [l10n] Update Swedish (sv-SE) locale (#7585) @MaanTyringe
1863
+
1864
+ ### `@mui/x-date-pickers@6.0.0-beta.0` / `@mui/x-date-pickers-pro@6.0.0-beta.0`
1865
+
1866
+ #### Breaking changes
1867
+
1868
+ - The `showToolbar` prop has been moved to the `toolbar` component slot props:
1869
+
1870
+ ```diff
1871
+ <DatePicker
1872
+ - showToolbar
1873
+ + slotProps={{
1874
+ + toolbar: {
1875
+ + hidden: false,
1876
+ + }
1877
+ + }}
1878
+ />
1879
+ ```
1880
+
1881
+ - The new pickers have replaced the legacy one.
1882
+
1883
+ If you were using the new pickers with their temporary name, you just have to change your imports.
1884
+
1885
+ ```diff
1886
+ -import { Unstable_NextDatePicker as NextDatePicker } from '@mui/x-date-pickers/NextDatePicker';
1887
+ +import { DatePicker } from '@mui/x-date-pickers/DatePicker';
1888
+ -import { Unstable_DesktopNextDatePicker as DesktopNextDatePicker } from '@mui/x-date-pickers/DesktopNextDatePicker';
1889
+ +import { DesktopDatePicker } from '@mui/x-date-pickers/DesktopDatePicker';
1890
+
1891
+ // Same for all the other pickers with an `Unstable_` prefix
1892
+ ```
1893
+
1894
+ If you were still using the legacy picker (`DatePicker`, `DesktopDatePicker`, ...), please take a look at our [migration guide](https://mui.com/x/migration/migration-pickers-v5/#picker-components) for detailed explanations on how to start using the new ones.
1895
+
1896
+ - The fields components are no longer unstable
1897
+
1898
+ ```diff
1899
+ -import { Unstable_DateField as DateField } from '@mui/x-date-pickers/DateField';
1900
+ +import { DateField } from '@mui/x-date-pickers/DateField';
1901
+ ```
1902
+
1903
+ #### Changes
1904
+
1905
+ - [DateRangeCalendar] Ignore `calendars` prop on mobile (#7526) @flaviendelangle
1906
+ - [DateRangeCalendar] Ignore `showDaysOutsideCurrentMonth` when `calendars > 1` (#7529) @flaviendelangle
1907
+ - [DateRangePicker] Propagate `rangePosition` to view (#7602) @LukasTy
1908
+ - [fields] Fix upper boundary on 12-hours sections (#7618) @flaviendelangle
1909
+ - [fields] Publish value when cleaning the last section of a date (#7519) @flaviendelangle
1910
+ - [fields] Remove the `Unstable_` prefix for field components (#7185) @flaviendelangle
1911
+ - [pickers] Add missing `slots` and `slotProps` on the date range view renderer (#7586) @flaviendelangle
1912
+ - [pickers] Drop legacy pickers (#7545) @flaviendelangle
1913
+ - [pickers] Fix day calendar row and column index (#7589) @LukasTy
1914
+ - [pickers] Go to the default view when opening a picker (#7484) @flaviendelangle
1915
+ - [pickers] Make sure the `className` and `sx` props are applied to the field / static root of the picker and never to the view (#7600) @flaviendelangle
1916
+ - [pickers] Rename new pickers (#7575) @flaviendelangle
1917
+ - [pickers] Rename remaining `components` and `componentSlots` references (#7576) @LukasTy
1918
+ - [pickers] Replace `showToolbar` with toolbar slot `hidden` prop (#7498) @LukasTy
1919
+ - [pickers] Spread props to the DOM in `DateCalendar` and `TimeClock` (#7587) @flaviendelangle
1920
+ - [pickers] Stop using the `WrapperVariantContext` in `DateRangeCalendar` (#7488) @flaviendelangle
1921
+ - [l10n] Improve Italian (it-IT) locale (#7582) @marikadeveloper
1922
+
1923
+ ### `@mui/x-codemod@6.0.0-beta.0`
1924
+
1925
+ #### Changes
1926
+
1927
+ - [codemod] Remove `disableExtendRowFullWidth` prop (#7508) @MBilalShafi
1928
+
1929
+ ### Docs
1930
+
1931
+ - [docs] Clean-up the `field components` page (#7605) @flaviendelangle
1932
+ - [docs] List all pickers toolbar pages in api docs side menu (#7577) @LukasTy
1933
+ - [docs] Remove "Flex layout" docs section and demo (#7477) @cherniavskii
1934
+ - [docs] Rework the pickers "Getting Started" page (#7140) @flaviendelangle
1935
+
1936
+ ### Core
1937
+
1938
+ - [core] Add missing `status: needs triage` label on RFC @oliviertassinari
1939
+ - [core] Add release documentation step detailing `x-codemod` package tag change (#7617) @LukasTy
1940
+ - [core] Fix typo in `CHANGELOG` (#7611) @flaviendelangle
1941
+ - [test] Fix date range picker tests to work with western time zones (#7581) @m4theushw
1942
+
1943
+ ## 6.0.0-alpha.15
1944
+
1945
+ _Jan 13, 2023_
1946
+
1947
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1948
+
1949
+ - 🚀 Support components and slots for new pickers (#7390) @alexfauquette
1950
+ - ✨ Update `onColumnOrderChange` behavior to match `onRowsOrderChange` (#7385) @DanailH
1951
+ - 🌍 Improve Spanish (es-ES) and Belarusian (be-BY) locales
1952
+ - 📚 Documentation improvements
1953
+ - 🐞 Bugfixes
1954
+
1955
+ ### `@mui/x-data-grid@6.0.0-alpha.15` / `@mui/x-data-grid-pro@6.0.0-alpha.15` / `@mui/x-data-grid-premium@6.0.0-alpha.15`
1956
+
1957
+ #### Breaking changes
1958
+
1959
+ - Remove the `onCellFocusOut` prop (#6302) @cherniavskii
1960
+
1961
+ The `onCellFocusOut` prop was removed. Use `componentsProps.cell.onBlur` instead:
1962
+
1963
+ ```tsx
1964
+ <DataGrid
1965
+ componentsProps={{
1966
+ cell: {
1967
+ onBlur: (event) => {
1968
+ const cellElement = event.currentTarget;
1969
+ const field = cellElement.getAttribute('data-field');
1970
+ const rowId = cell.parentElement.getAttribute('data-id');
1971
+ },
1972
+ },
1973
+ }}
1974
+ />
1975
+ ```
1976
+
1977
+ - [DataGrid] Stop exporting editing selector (#7456) @m4theushw
1978
+
1979
+ The `gridEditRowsStateSelector` selector was removed.
1980
+
1981
+ - [DataGrid] Rework column headers and virtual scroller positioning (#7001) @cherniavskii
1982
+
1983
+ The `headerHeight` prop was renamed to `columnHeaderHeight`.
1984
+
1985
+ - [DataGrid] Remove the `columnTypes` prop (#7309) @cherniavskii
1986
+
1987
+ The `columnTypes` prop was removed. For custom column types see [Custom column types](https://mui.com/x/react-data-grid/column-definition/#custom-column-types) docs.
1988
+
1989
+ - [DataGrid] Rename `linkOperators` to `logicOperators` (#7310) @cherniavskii
1990
+
1991
+ The `apiRef.current.setFilterLinkOperator` method was renamed to `apiRef.current.setFilterLogicOperator`.
1992
+ The `GridLinkOperator` enum was renamed to `GridLogicOperator`.
1993
+ The `GridFilterModel['linkOperator']` was renamed to `GridFilterModel['logicOperator']`.
1994
+ The `linkOperators` prop of `GridFilterForm` and `GridFilterPanel` components was renamed to `logicOperators`.
1995
+ The `linkOperatorInputProps` prop of `GridFilterForm` component was renamed to `logicOperatorInputProps`.
1996
+ The `filterFormProps.linkOperatorInputProps` prop in `GridFilterForm` component was renamed to `filterFormProps.logicOperatorInputProps`.
1997
+ The `GridLocaleText['filterPanelLinkOperator']` property was renamed to `GridLocaleText['filterPanelLogicOperator']`.
1998
+ The `.MuiDataGrid-filterFormLinkOperatorInput`CSS class was renamed to `.MuiDataGrid-filterFormLogicOperatorInput`.
1999
+
2000
+ - [DataGrid] Remove `Alt+C` keyboard shortcut (#7466) @MBilalShafi
2001
+
2002
+ <kbd>Alt</kbd> (or <kbd>⌥ Option</kbd>) + <kbd>C</kbd> keyboard shortcut is no longer supported.
2003
+
2004
+ #### Changes
2005
+
2006
+ - [DataGrid] Fix <kbd>Tab</kbd> between portaled and non-portaled edit components (#7098) @m4theushw
2007
+ - [DataGrid] Remove the `columnTypes` prop (#7309) @cherniavskii
2008
+ - [DataGrid] Remove the `onCellFocusOut` prop (#6302) @cherniavskii
2009
+ - [DataGrid] Rename `linkOperators` to `logicOperators` (#7310) @cherniavskii
2010
+ - [DataGrid] Rework column headers and virtual scroller positioning (#7001) @cherniavskii
2011
+ - [DataGrid] Stop exporting editing selector (#7456) @m4theushw
2012
+ - [DataGrid] Update `onColumnOrderChange` behavior to match `onRowsOrderChange` (#7385) @DanailH
2013
+ - [DataGrid] Improve Spanish (es-ES) locale (#7447) @Anderssxn
2014
+ - [DataGrid] Remove Alt+C keyboard shortcut (#7466) @MBilalShafi
2015
+ - [DataGridPremium] Fix Excel export not working with date strings (#7396) @cherniavskii
2016
+
2017
+ ### `@mui/x-date-pickers@6.0.0-alpha.15` / `@mui/x-date-pickers-pro@6.0.0-alpha.15`
2018
+
2019
+ #### Breaking changes
2020
+
2021
+ - [pickers] Stop using the `WrapperVariantContext` in `MonthCalendar` and `YearCalendar` (#7382) @flaviendelangle
2022
+
2023
+ The `modeMobile` and `modeDesktop` classes have been removed from the `PickersMonth` and `PickersYear` internal components.
2024
+
2025
+ If you were using those classes on responsive components,
2026
+ you can import `DEFAULT_DESKTOP_MODE_MEDIA_QUERY` from `@mui/x-date-pickers` or `@mui/x-date-pickers-pro` (or use your custom media query if any):
2027
+
2028
+ ```diff
2029
+ <GlobalStyles
2030
+ styles={{
2031
+ - [`.${pickersYearClasses.modeDesktop}`]: {
2032
+ - backgroundColor: 'red'
2033
+ - }
2034
+ + [DEFAULT_DESKTOP_MODE_MEDIA_QUERY]: {
2035
+ + [`.${pickersYearClasses.root}`]: {
2036
+ + backgroundColor: 'red'
2037
+ + }
2038
+ + }
2039
+ - [`.${pickersYearClasses.modeMobile}`]: {
2040
+ - backgroundColor: 'red'
2041
+ - }
2042
+ + [DEFAULT_DESKTOP_MODE_MEDIA_QUERY.replace('@media', '@media not')]: {
2043
+ + [`.${pickersYearClasses.root}`]: {
2044
+ + backgroundColor: 'red'
2045
+ + }
2046
+ + }
2047
+ }}
2048
+ />
2049
+ ```
2050
+
2051
+ Works exactly the same way for `PickersMonth`.
2052
+
2053
+ - [pickers] Refactor `shouldDisableTime` (#7299) @LukasTy
2054
+
2055
+ The `shouldDisableTime` prop signature has been changed. Either rename the prop usage to `shouldDisableClock` or refactor usage.
2056
+
2057
+ ```diff
2058
+ <DateTimePicker
2059
+ - shouldDisableTime={(timeValue, view) => view === 'hours' && timeValue < 12}
2060
+ + shouldDisableClock={(timeValue, view) => view === 'hours' && timeValue < 12}
2061
+ />
2062
+ ```
2063
+
2064
+ ```diff
2065
+ <DateTimePicker
2066
+ - shouldDisableTime={(timeValue, view) => view === 'hours' && timeValue < 12}
2067
+ + shouldDisableTime={(value, view) => view === 'hours' && value.hour() < 12}
2068
+ />
2069
+ ```
2070
+
2071
+ #### Changes
2072
+
2073
+ - [fields] Fix Android editing (#7444) @flaviendelangle
2074
+ - [pickers] Add Belarusian (be-BY) locale (#7395) @olhalink
2075
+ - [pickers] Hide am/pm controls when there is no hour view (#7380) @flaviendelangle
2076
+ - [pickers] Hide the tabs by default on `DesktopNextDateTimePicker` (#7503) @flaviendelangle
2077
+ - [pickers] Refactor `shouldDisableTime` (#7299) @LukasTy
2078
+ - [pickers] Remove `WrapperVariantContext` from `DateTimePickerTabs` (#7374) @LukasTy
2079
+ - [pickers] Stop using the `WrapperVariantContext` in `MonthCalendar` and `YearCalendar` (#7382) @flaviendelangle
2080
+ - [pickers] Support `components` and `slots` for new pickers (#7390) @alexfauquette
2081
+ - [pickers] Replace `slotsProps` by `slotProps` (#7528) @alexfauquette
2082
+
2083
+ ### Docs
2084
+
2085
+ - [docs] Fix codesandboxes using `DemoContainer` (#7388) @LukasTy
2086
+ - [docs] Fix wrong reference to currentView (#7441) @oliviertassinari
2087
+ - [docs] New page for `DateRangeCalendar` (#7378) @flaviendelangle
2088
+ - [docs] Update the migration guide with the breaking changes between the legacy and the new pickers (#7345) @flaviendelangle
2089
+ - [docs] Use new pickers on "Custom components" demos (#7194) @flaviendelangle
2090
+
2091
+ ### Core
2092
+
2093
+ - [core] Handle selection edge case (#7350) @oliviertassinari
2094
+ - [core] Improve license message @oliviertassinari
2095
+ - [core] Move default `closeOnSelect` to prop definition in `usePickerValue` (#7459) @flaviendelangle
2096
+ - [core] Move interfaces of UI views to dedicated files (#7458) @flaviendelangle
2097
+ - [core] Update package used to import LicenseInfo (#7442) @oliviertassinari
2098
+ - [test] Add a few inheritComponent (#7352) @oliviertassinari
2099
+
2100
+ ## 6.0.0-alpha.14
2101
+
2102
+ _Jan 5, 2023_
2103
+
2104
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2105
+
2106
+ - 📆 Add `SingleInputTimeRangeField` and `SingleInputDateTimeRangeField` components (#7186) @alexfauquette
2107
+ - 🚀 Use grid for modifying pickers layout (#6900) @alexfauquette
2108
+ - ✨ Improve field components editing experience (#7272) @flaviendelangle
2109
+ - 💻 Multiple codemods
2110
+ - 📚 Many documentation improvements
2111
+ - 🐞 Bugfixes
2112
+
2113
+ ### `@mui/x-data-grid@6.0.0-alpha.14` / `@mui/x-data-grid-pro@6.0.0-alpha.14` / `@mui/x-data-grid-premium@6.0.0-alpha.14`
2114
+
2115
+ #### Breaking changes
2116
+
2117
+ - [DataGrid] Set default `GridCellParams['value']` type to `unknown` (#6959) @cherniavskii
2118
+
2119
+ The default type of `GridCellParams['value']` was changed from `any` to `unknown`.
2120
+
2121
+ #### Changes
2122
+
2123
+ - [DataGrid] Fix flickering on mount (#7205) @cherniavskii
2124
+ - [DataGrid] Fix selected text in cell input not being copied in Firefox (#6593) @cherniavskii
2125
+ - [DataGrid] Invert generic parameters order (#6874) @DanailH
2126
+ - [DataGrid] Remove legacy logic for `singleSelect` inside `GridFilterInputValue` (#7386) @m4theushw
2127
+ - [DataGrid] Remove remaining props from legacy editing API (#7381) @m4theushw
2128
+ - [DataGrid] Set default `GridCellParams['value']` type to `unknown` (#6959) @cherniavskii
2129
+
2130
+ ### `@mui/x-date-pickers@6.0.0-alpha.14` / `@mui/x-date-pickers-pro@6.0.0-alpha.14`
2131
+
2132
+ #### Breaking changes
2133
+
2134
+ - [fields] Rename the `input` slot of the fields to `textField` to avoid confusion (#7369) @flaviendelangle
2135
+
2136
+ #### Changes
2137
+
2138
+ - [fields] Add `SingleInputTimeRangeField` and `SingleInputDateTimeRangeField` components (#7186) @alexfauquette
2139
+ - [fields] Improve editing (automatic section switch, allow letter editing in digit section, allow numeric editing in letter section) (#7272) @flaviendelangle
2140
+ - [fields] Rename the `input` slot of the fields to `textField` to avoid confusion (#7369) @flaviendelangle
2141
+ - [fields] Prevent date change on `TimeField` arrow edition (#7383) @flaviendelangle
2142
+ - [pickers] Clean some JSDoc descriptions (#7384) @flaviendelangle
2143
+ - [pickers] Remove redundant `variants` in theme augmentation (#7356) @LukasTy
2144
+ - [pickers] Remove the `PaperContent` slot from the new pickers (#7342) @flaviendelangle
2145
+ - [pickers] Use grid for modifying the layout (#6900) @alexfauquette
2146
+
2147
+ ### `@mui/x-codemod@6.0.0-alpha.14`
2148
+
2149
+ #### Changes
2150
+
2151
+ - [codemod] Add new codemod for adapter import (#7348) @flaviendelangle
2152
+ - [codemod] Add new codemod for the value prop renaming on the view components (#7338) @flaviendelangle
2153
+ - [codemod] Reorganize codemods and add rename column menu components codemod (#7368) @MBilalShafi
2154
+
2155
+ ### Docs
2156
+
2157
+ - [docs] Add example to add back the mobile keyboard view (#7347) @flaviendelangle
2158
+ - [docs] Cleanup the doc pages of the community pickers (#7339) @flaviendelangle
2159
+ - [docs] Drop security fixes support for v4 (#7322) @oliviertassinari
2160
+ - [docs] Fix `disablePast` and `disableFuture` definition swap (#7324) @alexfauquette
2161
+ - [docs] Hide ad for paid docs pages (#7321) @oliviertassinari
2162
+ - [docs] New page for `TimeClock` (#7280) @flaviendelangle
2163
+ - [docs] Note the pickers breaking changes supported by the codemod (#7337) @flaviendelangle
2164
+ - [docs] Redirect translated pages (#7341) @cherniavskii
2165
+ - [docs] Reorganize v6 pickers migration guide (#7257) @flaviendelangle
2166
+
2167
+ ### Core
2168
+
2169
+ - [core] Apply eslint rule for React component @oliviertassinari
2170
+ - [core] Apply title capitalization convention @oliviertassinari
2171
+ - [core] Fix the product license reference name (#7367) @oliviertassinari
2172
+ - [core] Order the slots alphabetically in the JSON files (#7349) @flaviendelangle
2173
+ - [core] Remove blanklines in `_redirects` @oliviertassinari
2174
+ - [core] Remove dead prettier config @oliviertassinari
2175
+ - [core] Sync back with the mono repo (#7351) @oliviertassinari
2176
+ - [core] Sync monorepo, fix layout scrollbar @oliviertassinari
2177
+ - [core] Upgrade monorepo (#7307) @LukasTy
2178
+
2179
+ ## 6.0.0-alpha.13
2180
+
2181
+ _Dec 24, 2022_
2182
+
2183
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
2184
+
2185
+ - 🚀 New column menu design and API
2186
+ - 🌍 Improve Russian (ru-RU) and Korean (ko-KR) locales
2187
+ - 📚 Documentation improvements
2188
+ - 🐞 Bugfixes
2189
+
2190
+ ### `@mui/x-data-grid@6.0.0-alpha.13` / `@mui/x-data-grid-pro@6.0.0-alpha.13` / `@mui/x-data-grid-premium@6.0.0-alpha.13`
2191
+
2192
+ #### Breaking changes
2193
+
2194
+ - New column menu design and API (#6619) MBilalShafi
2195
+
2196
+ The `currentColumn` prop passed to `components.ColumnMenu` was renamed to `colDef`.
2197
+ The `column` prop passed to the items of the column menu was renamed to `colDef`.
2198
+ The `DATA_GRID_DEFAULT_SLOTS_COMPONENTS` export has been removed.
2199
+ The following components and interfaces were been renamed for consistency:
2200
+
2201
+ **Community Package:**
2202
+
2203
+ ```diff
2204
+ -<GridFilterMenuItem />
2205
+ +<GridColumnMenuFilterItem />
2206
+ ```
2207
+
2208
+ ```diff
2209
+ -<HideGridColMenuItem />
2210
+ +<GridColumnMenuHideItem />
2211
+ ```
2212
+
2213
+ ```diff
2214
+ -<GridColumnsMenuItem />
2215
+ +<GridColumnMenuColumnsItem />
2216
+ ```
2217
+
2218
+ ```diff
2219
+ -<SortGridMenuItems />
2220
+ +<GridColumnMenuSortItem />
2221
+ ```
2222
+
2223
+ ```diff
2224
+ -interface GridFilterItemProps
2225
+ +interface GridColumnMenuItemProps
2226
+ ```
2227
+
2228
+ **Pro package:**
2229
+
2230
+ ```diff
2231
+ -<GridColumnPinningMenuItems />
2232
+ +<GridColumnMenuPinningItem />
2233
+ ```
2234
+
2235
+ **Premium package:**
2236
+
2237
+ ```diff
2238
+ -<GridAggregationColumnMenuItem />
2239
+ +<GridColumnMenuAggregationItem />
2240
+ ```
2241
+
2242
+ ```diff
2243
+ -<GridRowGroupingColumnMenuItems />
2244
+ -<GridRowGroupableColumnMenuItems />
2245
+ +<GridColumnMenuGroupingItem />
2246
+ ```
2247
+
2248
+ - Improve column definition typing (#7224) @cherniavskii
2249
+
2250
+ The `GridColumns` type was removed. Use `GridColDef[]` instead.
2251
+ The `GridActionsColDef` interface was removed. Use `GridColDef` instead.
2252
+ The `GridEnrichedColDef` type was removed. Use `GridColDef` instead.
2253
+ The `GridStateColDef` type was removed.
2254
+
2255
+ If you use it to type `searchPredicate`, use `GridColumnsPanelProps['searchPredicate']` instead.
2256
+ If you use it to type `getApplyFilterFn`, `GridFilterOperator['getApplyFilterFn']` can be used as replacement.
2257
+
2258
+ - Remove GridDensityType enum (#7304) @cherniavskii
2259
+
2260
+ The `GridDensityTypes` enum was removed. Use `GridDensity` type instead.
2261
+
2262
+ #### Changes
2263
+
2264
+ - [DataGrid] Allow disabling of buttons in column panel (#6947) @MBilalShafi
2265
+ - [DataGrid] Improve column definition typing (#7224) @cherniavskii
2266
+ - [DataGrid] Improve column menu design and API (#6619) @MBilalShafi
2267
+ - [DataGrid] Remove `GridDensityType` enum (#7304) @cherniavskii
2268
+ - [DataGrid] Remove `rowHeight` and `headerHeight` from state (#7199) @DanailH
2269
+ - [DataGrid] Remove column separator to match table styles (#7067) @MBilalShafi
2270
+ - [DataGrid] Update Russian (ru-RU) locale (#7220) @eceluXa
2271
+ - [DataGridPro] Use row ID as `key` of the detail panels (#7302) @m4theushw
2272
+ - [DataGridPremium] Fix `exceljs` import with parcel (#7284) @alexfauquette
2273
+
2274
+ ### `@mui/x-date-pickers@6.0.0-alpha.13` / `@mui/x-date-pickers-pro@6.0.0-alpha.13`
2275
+
2276
+ #### Breaking changes
2277
+
2278
+ - Require Luxon 3.0.2 or higher (#7249) @flaviendelangle
2279
+
2280
+ `AdapterLuxon` now requires `luxon` in version `3.0.2` or higher in order to work.
2281
+
2282
+ Take a look at the [Upgrading Luxon](https://moment.github.io/luxon/#/upgrading) guide if you are using an older version.
2283
+
2284
+ #### Changes
2285
+
2286
+ - [DateRangePicker] Fix to propagate `disabled` and `readOnly` on multi input picker (#7135) @LukasTy
2287
+ - [fields] Fix multi input fields root element props order and types (#7225) @LukasTy
2288
+ - [fields] Support escaped characters (#7184) @flaviendelangle
2289
+ - [pickers] Allow to define custom view renderers on the pickers (#7176) @flaviendelangle
2290
+ - [pickers] Avoid running validation methods several times in `DateCalendar` (#7247) @flaviendelangle
2291
+ - [pickers] Improve Korean (ko-KR) locale (#7266) @hanbin9775
2292
+ - [pickers] Require Luxon 3.0.2 or higher (#7249) @flaviendelangle
2293
+ - [pickers] Rework view internals (#7097) @flaviendelangle
2294
+
2295
+ ### `@mui/x-codemod@6.0.0-alpha.13`
2296
+
2297
+ #### Changes
2298
+
2299
+ - [codemod] New codemod for view component renaming (#7264) @flaviendelangle
2300
+
2301
+ ### Docs
2302
+
2303
+ - [docs] Fix some selectors not being documented (#7218) @cherniavskii
2304
+ - [docs] New page for `DateCalendar` (#7053) @flaviendelangle
2305
+ - [docs] Split selection docs (#7213) @m4theushw
2306
+
2307
+ ### Core
2308
+
2309
+ - [core] Fix API demos callout spacing @oliviertassinari
2310
+
2311
+ ## 6.0.0-alpha.12
2312
+
2313
+ _Dec 16, 2022_
2314
+
2315
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
2316
+
2317
+ - 🚀 The `apiRef` prop is now available in the `@mui/x-data-grid` package:
2318
+
2319
+ ```tsx
2320
+ const apiRef = useGridApiRef();
2321
+
2322
+ return <DataGrid apiRef={apiRef} {...other} />;
2323
+ ```
2324
+
2325
+ See [the documentation](https://mui.com/x/react-data-grid/api-object/) for more information.
2326
+
2327
+ - 🎁 The `DataGridPremium` now supports cell selection:
2328
+
2329
+ ```tsx
2330
+ <DataGridPremium unstable_cellSelection />
2331
+ ```
2332
+
2333
+ See [the documentation](https://mui.com/x/react-data-grid/cell-selection/) for more information
2334
+
2335
+ - 🌍 Support the Right To Left orientation on the fields components
2336
+ - 📚 Documentation improvements
2337
+ - 🐞 Bugfixes
2338
+
2339
+ ### `@mui/x-data-grid@6.0.0-alpha.12` / `@mui/x-data-grid-pro@6.0.0-alpha.12` / `@mui/x-data-grid-premium@6.0.0-alpha.12`
2340
+
2341
+ #### Breaking changes
2342
+
2343
+ - The `showCellRightBorder` was renamed to `showCellVerticalBorder`
2344
+ - The `showColumnRightBorder` was renamed to `showColumnVerticalBorder`
2345
+ - The `.MuiDataGrid-withBorder` CSS class was renamed to `.MuiDataGrid-withBorderColor` and it only sets `border-color` CSS property now.
2346
+ - The following undocumented properties from `apiRef` were removed: `footerRef`, `headerRef`, `columnHeadersElementRef`, `columnHeadersContainerElementRef`
2347
+ - The `GridHeaderPlaceholder` component was removed.
2348
+ - The `MAX_PAGE_SIZE` constant was removed.
2349
+ - The `useGridScrollFn` hook was removed.
2350
+
2351
+ #### Changes
2352
+
2353
+ - [DataGrid] Display sort column menu items as per `sortingOrder` prop (#7180) @MBilalShafi
2354
+ - [DataGrid] Support `apiRef` in Community package (#6773) @cherniavskii
2355
+ - [DataGridPremium] Add support for cell selection (#6567) @m4theushw
2356
+ - [DataGridPremium] Use separate cache for aggregation columns pre-processor (#7142) @m4theushw
2357
+ - [DataGridPro] Fix missing border in right-pinned columns (#4197) @cherniavskii
2358
+ - [DataGridPro] Fix wrong border color on skeleton cells (#7202) @cherniavskii
2359
+
2360
+ ### `@mui/x-date-pickers@6.0.0-alpha.12` / `@mui/x-date-pickers-pro@6.0.0-alpha.12`
2361
+
2362
+ #### Changes
2363
+
2364
+ - [fields] Fix bug introduced by RTL in single input range fields (#7189) @alexfauquette
2365
+ - [fields] Support RTL out of the box (#6715) @alexfauquette
2366
+ - [pickers] Clean `autoFocus` behavior on fields and new pickers (#7153) @flaviendelangle
2367
+ - [pickers] Fix label on the new range pickers (#7210) @flaviendelangle
2368
+ - [pickers] Fix wrong component name on `StaticNextDateTime` (#7187) @flaviendelangle
2369
+
2370
+ ### Docs
2371
+
2372
+ - [docs] Add docs section about field placeholders' localization (#7139) @flaviendelangle
2373
+ - [docs] Create a `DemoGrid` component to unify demos with several components (#7057) @flaviendelangle
2374
+ - [docs] Document aggregation selectors (#7148) @cherniavskii
2375
+ - [docs] Fix 301 links to demo pages in API pages (#7197) @oliviertassinari
2376
+ - [docs] Fix errors and warning in demos (#7209) @LukasTy
2377
+ - [docs] Use `DemoContainer` and `DemoItem` on every picker demo (#7149) @flaviendelangle
2378
+
2379
+ ### Core
2380
+
2381
+ - [core] Fix broken test (#7179) @flaviendelangle
2382
+
2383
+ ## 6.0.0-alpha.11
2384
+
2385
+ _Dec 8, 2022_
2386
+
2387
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2388
+
2389
+ - 🚀 Add dragging support for the new Date Range Picker (`NextDateRangePicker`) (#6763) @LukasTy
2390
+ - ⚡️ Improve performance of the `day` view (#7066) @flaviendelangle
2391
+ - ✨ Fix lazy-loading feature not working in `DataGridPremium` (#7124) @m4theushw
2392
+ - 🐞 Bugfixes
2393
+
2394
+ ### `@mui/x-data-grid@6.0.0-alpha.11` / `@mui/x-data-grid-pro@6.0.0-alpha.11` / `@mui/x-data-grid-premium@6.0.0-alpha.11`
2395
+
2396
+ #### Breaking changes
2397
+
2398
+ - The `filterPanelOperators` translation key was renamed to `filterPanelOperator` (#7062) @MBilalShafi
2399
+ - The `components.Header` slot was removed. Use `components.Toolbar` slot instead (#6999) @cherniavskii
2400
+
2401
+ #### Changes
2402
+
2403
+ - [DataGrid] Fix rows not rendering properly after height change (#6892) @MBilalShafi
2404
+ - [DataGrid] Remove `Header` slot (#6999) @cherniavskii
2405
+ - [DataGrid] Rename `filterPanelOperators` -> `filterPanelOperator` (#7062) @MBilalShafi
2406
+ - [DataGridPremium] Add support for lazy-loading (#7124) @m4theushw
2407
+ - [DataGridPremium] Pass `groupId` to aggregation function (#7003) @m4theushw
2408
+
2409
+ ### `@mui/x-date-pickers@6.0.0-alpha.11` / `@mui/x-date-pickers-pro@6.0.0-alpha.11`
2410
+
2411
+ #### Breaking changes
2412
+
2413
+ - Remove the callback version of the `action` prop on the `actionBar` slot (#7038) @flaviendelangle
2414
+
2415
+ The `action` prop of the `actionBar` slot is no longer supporting a callback.
2416
+ Instead, you can pass a callback at the slot level:
2417
+
2418
+ ```diff
2419
+ <DatePicker
2420
+ componentsProps={{
2421
+ - actionBar: {
2422
+ - actions: (variant) => (variant === 'desktop' ? [] : ['clear']),
2423
+ - },
2424
+ + actionBar: ({ wrapperVariant }) => ({
2425
+ + actions: wrapperVariant === 'desktop' ? [] : ['clear'],
2426
+ + }),
2427
+ }}
2428
+ />
2429
+ ```
2430
+
2431
+ - The `selectedDays` prop has been removed from the `Day` component (#7066) @flaviendelangle
2432
+ If you need to access it, you can control the value and pass it to the slot using `componentsProps`:
2433
+
2434
+ ```tsx
2435
+ function CustomDay({ selectedDay, ...other }) {
2436
+ // do something with 'selectedDay'
2437
+ return <PickersDay {...other} />;
2438
+ }
2439
+ function App() {
2440
+ const [value, setValue] = React.useState(null);
2441
+ return (
2442
+ <DatePicker
2443
+ value={value}
2444
+ onChange={(newValue) => setValue(newValue)}
2445
+ components={{ Day: CustomDay }}
2446
+ componentsProps={{
2447
+ day: { selectedDay: value },
2448
+ }}
2449
+ />
2450
+ );
2451
+ }
2452
+ ```
2453
+
2454
+ - The `currentlySelectingRangeEnd` / `setCurrentlySelectingRangeEnd` props on the Date Range Picker toolbar have been renamed to `rangePosition` / `onRangePositionChange` (#6989) @flaviendelangle
2455
+
2456
+ ```diff
2457
+ const CustomToolbarComponent = props => (
2458
+ <div>
2459
+ - <button onChange={() => props.setCurrentlySelectingRangeEnd('end')}>Edit end date</button>
2460
+ + <button onClick={() => props.onRangePositionChange('end')}>Edit end date</button>
2461
+ - <div>Is editing end date: {props.currentlySelectingRangeEnd === 'end'}</div>
2462
+ + <div>Is editing end date: {props.rangePosition === 'end'}</div>
2463
+ </div>
2464
+ )
2465
+ <DateRangePicker
2466
+ components={{
2467
+ Toolbar: CustomToolbarComponent
2468
+ }}
2469
+ />
2470
+ ```
2471
+
2472
+ #### Changes
2473
+
2474
+ - [DateRangePicker] Add dragging support to edit range (#6763) @LukasTy
2475
+ - [pickers] Fix lost props on Date Range Pickers (#7092) @flaviendelangle
2476
+ - [pickers] Fix toolbar on the new range pickers (#6989) @flaviendelangle
2477
+ - [pickers] Improve performance of `DayCalendar` (#7066) @flaviendelangle
2478
+ - [pickers] Initialize date without time when selecting year or month (#7120) @LukasTy
2479
+ - [pickers] Remove the callback version of the `action` prop in the `actionBar` component slot (#7038) @flaviendelangle
2480
+
2481
+ ### Docs
2482
+
2483
+ - [docs] Add `GridCell` change in migration guide (#7087) @MBilalShafi
2484
+ - [docs] Fix API page ad space regression (#7051) @oliviertassinari
2485
+ - [docs] Update localization doc to use existing locale (#7102) @LukasTy
2486
+
2487
+ ### Core
2488
+
2489
+ - [core] Add codemod to move l10n translation (#7027) @alexfauquette
2490
+ - [core] Add notes to remove the legacy pickers internals (#7133) @flaviendelangle
2491
+ - [core] Remove `internals-fields` imports (#7119) @flaviendelangle
2492
+ - [core] Remove unused code (#7094) @flaviendelangle
2493
+ - [core] Sync `ApiPage.js` with monorepo (#7073) @oliviertassinari
2494
+ - [test] Fix karma-mocha assertion error messages (#7054) @cherniavskii
2495
+
2496
+ ## 6.0.0-alpha.10
2497
+
2498
+ _Dec 1, 2022_
2499
+
2500
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
2501
+
2502
+ - 🌍 Improve Ukrainian (uk-UA) and add Urdu (ur-PK) locales
2503
+ - 📚 Documentation improvements
2504
+ - 🐞 Bugfixes
2505
+
2506
+ ### `@mui/x-data-grid@6.0.0-alpha.10` / `@mui/x-data-grid-pro@6.0.0-alpha.10` / `@mui/x-data-grid-premium@6.0.0-alpha.10`
2507
+
2508
+ ### Breaking changes
2509
+
2510
+ - [DataGrid] Removes `GridCell` fallback to `valueToRender` on `null` children (#7023) @MBilalShafi
2511
+
2512
+ Returning `null` in `column.renderCell` or `column.renderEditCell` now renders an empty cell instead of the default formatted value.
2513
+
2514
+ - [DataGrid] Refactor `GridFilterItem` props (#6985) @MBilalShafi
2515
+
2516
+ Properties `columnField` and `operatorValue` of `GridFilterItem` are renamed `field` and `operator`. And `operator` property is now required.
2517
+
2518
+ ```diff
2519
+ filterModel: {
2520
+ items: [{
2521
+ - columnField: 'rating',
2522
+ + field: 'rating',
2523
+ - operatorValue: '>',
2524
+ + operator: '>', // required
2525
+ value: '2.5'
2526
+ }],
2527
+ },
2528
+ ```
2529
+
2530
+ #### Changes
2531
+
2532
+ - [DataGrid] Fix row selection when clicking blank cell (#6974) @yami03
2533
+ - [DataGrid] Refactor `GridFilterItem` props (#6985) @MBilalShafi
2534
+ - [DataGrid] Removes `<GridCell />` fallback to `valueToRender` on `null` children (#7023) @MBilalShafi
2535
+ - [DataGridPremium] Fix empty column group in Excel export (#7029) @alexfauquette
2536
+ - [DataGridPremium] Update cache before hydrating columns (#7040) @m4theushw
2537
+ - [DataGridPremium] Use custom cell component for grouping cell by default (#6692) @cherniavskii
2538
+ - [l10n] Improve Ukrainian (uk-UA) locale (#7009) @rettoua
2539
+
2540
+ ### `@mui/x-date-pickers@6.0.0-alpha.10` / `@mui/x-date-pickers-pro@6.0.0-alpha.10`
2541
+
2542
+ #### Breaking changes
2543
+
2544
+ - Rename `dateRangeIcon` to `dateIcon` (#7024) @LukasTy
2545
+
2546
+ The `dateRangeIcon` prop has been renamed to `dateIcon`:
2547
+
2548
+ ```diff
2549
+ // Same on all other Date Time Picker variations
2550
+ <DateTimePicker
2551
+ componentsProps={{
2552
+ tabs: {
2553
+ - dateRangeIcon: <LightModeIcon />,
2554
+ + dateIcon: <LightModeIcon />,
2555
+ }
2556
+ }}
2557
+ />
2558
+ ```
2559
+
2560
+ #### Changes
2561
+
2562
+ - [DateTimePicker] Rename `dateRangeIcon` to `dateIcon` (#7024) @LukasTy
2563
+ - [pickers] Allow non-controlled usage of `TimeClock` (#6962) @flaviendelangle
2564
+ - [pickers] Throw error when using adapter from `@date-io` (#6972) @flaviendelangle
2565
+ - [l10n] Add Urdu (ur-PK) locale (#7007) @MBilalShafi
2566
+ - [l10n] Improve Ukrainian (uk-UA) locale (#7009) @rettoua
2567
+
2568
+ ### Docs
2569
+
2570
+ - [docs] Add Demos section on the pickers API pages (#6909) @flaviendelangle
2571
+ - [docs] Add missing pickers migration docs (#7000) @LukasTy
2572
+ - [docs] Fix broken link (#7048) @flaviendelangle
2573
+ - [docs] Improve demo about customizing pagination (#6724) @m4theushw
2574
+ - [docs] Keep track of localization completion (#7002) @alexfauquette
2575
+ - [docs] Remove `LocalizationProvider` from previews (#6869) @flaviendelangle
2576
+ - [docs] Remove the statement of support to RTL (#6521) @joserodolfofreitas
2577
+ - [docs] Rework localization doc pages (#6625) @flaviendelangle
2578
+ - [docs] Setup GitHub issue template for feedbacks about docs (#7026) @alexfauquette
2579
+ - [docs] Test links with API page ignoring url hash (#7004) @alexfauquette
2580
+ - [docs] Update API links from clock-picker to time-clock (#6993) @alexfauquette
2581
+ - [docs] Use new pickers on the validation page (#7047) @flaviendelangle
2582
+
2583
+ ### Core
2584
+
2585
+ - [core] Remove useless type casting in field hooks (#7045) @flaviendelangle
2586
+ - [test] Sync `test:unit` with monorepo (#6907) @oliviertassinari
2587
+
2588
+ ## 6.0.0-alpha.9
2589
+
2590
+ _Nov 24, 2022_
2591
+
2592
+ We'd like to offer a big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
2593
+
2594
+ - 🎁 Introduce the v6 pickers, built on top of the field components [DatePicker](https://mui.com/x/react-date-pickers/date-picker/), [TimePicker](https://mui.com/x/react-date-pickers/time-picker/), [DateTimePicker](https://mui.com/x/react-date-pickers/date-time-picker/), [DateRangePicker](https://mui.com/x/react-date-pickers/date-range-picker/).
2595
+
2596
+ The old (legacy) components will be removed at the end of the v6 beta.
2597
+
2598
+ - 💅 Add support for `theme.vars` in the pickers and the DataGrid (#6784, #6778) @alexfauquette
2599
+ - ✨ Improve DataGrid theme augmentation (#5818) @iigrik
2600
+ - 📚 Documentation improvements
2601
+ - 🐞 Bugfixes
2602
+
2603
+ ### `@mui/x-data-grid@6.0.0-alpha.9` / `@mui/x-data-grid-pro@6.0.0-alpha.9` / `@mui/x-data-grid-premium@6.0.0-alpha.9`
2604
+
2605
+ ### Breaking changes
2606
+
2607
+ - <kbd>Ctrl</kbd> + <kbd>Enter</kbd> will no longer toggle the master detail panel (#6945) @MBilalShafi
2608
+ You can restore the old behavior by listening to `cellKeyDown` and calling `apiRef.current.toggleDetailPanel()`.
2609
+
2610
+ - Remove unnecessary keyboard navigation events (#6863) @m4theushw
2611
+ The `cellNavigationKeyDown` event was removed. Use `cellKeyDown` and check the key provided in the event argument.
2612
+ The `columnHeaderNavigationKeyDown` event was removed. Use `columnHeaderKeyDown` and check the key provided in the event argument.
2613
+
2614
+ - Rename `rowsScroll` event to `scrollPositionChange` (#6957) @DanailH
2615
+
2616
+ #### Changes
2617
+
2618
+ - [DataGrid] Add spacing in `GridToolbar` for better visibility (#6904) @MBilalShafi
2619
+ - [DataGrid] Improve typing for the theme in `styleOverrides` (#5818) @iigrik
2620
+ - [DataGrid] Prevents master detail panel toggle with <kbd>Ctrl</kbd> + <kbd>Enter</kbd> (#6945) @MBilalShafi
2621
+ - [DataGrid] Remove unnecessary keyboard navigation events (#6863) @m4theushw
2622
+ - [DataGrid] Rename `ErrorOverlay` to `GridErrorOverlay` (#6946) @MBilalShafi
2623
+ - [DataGrid] Stop exporting root base state selectors (#6912) @DanailH
2624
+ - [DataGrid] Support `theme.vars` (#6784) @alexfauquette
2625
+ - [DataGrid] Rename `rowsScroll` event to `scrollPositionChange` (#6957) @DanailH
2626
+ - [DataGridPro] Fix lazy-loaded rows not working with `updateRows` API method (#6976) @cherniavskii
2627
+ - [DataGridPremium] Improve typing for theme in `styleOverrides` (#6920) @m4theushw
2628
+ - [l10n] Fix translation of `filterOperatorBefore` in Arabic (ar-SD) locale (#6884) @HassanGhazy
2629
+
2630
+ ### `@mui/x-date-pickers@6.0.0-alpha.9` / `@mui/x-date-pickers-pro@6.0.0-alpha.9`
2631
+
2632
+ #### Changes
2633
+
2634
+ - [DatePicker] Display week number (#6144) @alexfauquette
2635
+ - [pickers] Clean `PickersCalendarHeader` slots (#6943) @flaviendelangle
2636
+ - [pickers] Do not loose the translations when using nested `LocalizationProvider` with each a `localeText` prop (#6895) @flaviendelangle
2637
+ - [pickers] Fix calendar header switch view button hover circle (#6938) @rajendraarora16
2638
+ - [pickers] Fix focus management (#6914) @alexfauquette
2639
+ - [pickers] Fix usage with Shadow DOM (#6952) @flaviendelangle
2640
+ - [pickers] New `MobileDateRangePicker`, `DesktopDateRangePicker`, `DateRangePicker` and `StaticDateRangePicker` based on `MultiInputDateRangeField` (#6888) @flaviendelangle
2641
+ - [pickers] Support `theme.vars` (#6778) @alexfauquette
2642
+
2643
+ ### Docs
2644
+
2645
+ - [docs] Add new "Expired package version" error type (#6937) @oliviertassinari
2646
+ - [docs] Add support for API pages of unstable components (#6981) @flaviendelangle
2647
+ - [docs] Create docs for the new date pickers (#6902) @flaviendelangle
2648
+ - [docs] Create docs for the new time, date time and date range pickers (#6958) @flaviendelangle
2649
+ - [docs] Fix demos live edit (#6975) @oliviertassinari
2650
+ - [docs] Fix toggle button bug in demos in Custom Components page (#6913) @01zulfi
2651
+ - [docs] Remove partial Portuguese and Chinese translations of the pickers pages (#6893) @flaviendelangle
2652
+
2653
+ ### Core
2654
+
2655
+ - [core] Cleanup `describeValidation` (#6942) @flaviendelangle
2656
+ - [core] Group renovate GitHub Action dependency updates @oliviertassinari
2657
+ - [core] Introduce `x-codemod` package (#6876) @LukasTy
2658
+ - [core] Update minimum supported version of Node.js to 14.0.0 (#6966) @cherniavskii
2659
+ - [core] Upgrade monorepo (#6905) @cherniavskii
2660
+ - [core] Upgrade node to v14.21 (#6916) @piwysocki
2661
+ - [core] Upgrade ESLint (#6738) @Janpot
2662
+ - [test] Test validation on date range view (#6941) @alexfauquette
2663
+
2664
+ ## 6.0.0-alpha.8
2665
+
2666
+ _Nov 17, 2022_
2667
+
2668
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
2669
+
2670
+ - 🎁 Support aggregating data from multiple row fields (#6656) @cherniavskii
2671
+ - 📚 Documentation improvements
2672
+ - 🐞 Bugfixes
2673
+
2674
+ ### `@mui/x-data-grid@6.0.0-alpha.8` / `@mui/x-data-grid-pro@6.0.0-alpha.8` / `@mui/x-data-grid-premium@6.0.0-alpha.8`
2675
+
2676
+ #### Changes
2677
+
2678
+ - [DataGrid] Fix `ErrorOverlay` not receiving defined input props (#6819) @banoth-ravinder
2679
+ - [DataGrid] Fix conflict with the latest version of `@types/react` (#6797) @izv
2680
+ - [DataGrid] Make more `apiRef` methods private (#6700) @cherniavskii
2681
+ - [DataGrid] Provide a clear error message when upgrading (#6685) @oliviertassinari
2682
+ - [DataGridPremium] Allow to customize the indent of group expansion toggle (#6837) @MBilalShafi
2683
+ - [DataGridPremium] Support aggregating data from multiple row fields (#6656) @cherniavskii
2684
+ - [DataGridPro] Fix detail panel not working with `getRowSpacing` prop (#6707) @cherniavskii
2685
+ - [DataGridPro] Opt-out for column jump back on re-order (#6733) @gavbrennan
2686
+ - [l10n] Improve Finnish (fi-FI) locale (#6859) @RainoPikkarainen
2687
+
2688
+ ### `@mui/x-date-pickers@6.0.0-alpha.8` / `@mui/x-date-pickers-pro@6.0.0-alpha.8`
2689
+
2690
+ #### Breaking changes
2691
+
2692
+ - The `ClockPicker` view component has been renamed to `TimeClock` to better fit its usage:
2693
+
2694
+ ```diff
2695
+ -<ClockPicker {...props} />
2696
+ +<TimeClock {...props} />
2697
+ ```
2698
+
2699
+ Component name in the theme has changed as well:
2700
+
2701
+ ```diff
2702
+ -MuiClockPicker: {
2703
+ +MuiTimeClock: {
2704
+ ```
2705
+
2706
+ #### Changes
2707
+
2708
+ - [pickers] Fix typing and prop drilling on `DateRangeCalendar` and multi input range fields (#6852) @flaviendelangle
2709
+ - [pickers] Pass the `ampm` prop from the new pickers to their field (#6868) @flaviendelangle
2710
+ - [pickers] Rename `CalendarPickerView`, `ClockPickerView` and `CalendarOrClockPickerView` (#6855) @flaviendelangle
2711
+ - [pickers] Rename `ClockPicker` into `TimeClock` (#6851) @flaviendelangle
2712
+
2713
+ ### Docs
2714
+
2715
+ - [docs] Add `dayjs` to the dependencies (#6862) @m4theushw
2716
+ - [docs] Clarify how the Row Pinning works with other features of the DataGrid (#6853) @cherniavskii
2717
+ - [docs] Fix typo in Export page (#6848) @m4theushw
2718
+ - [docs] Group picker pages (#6369) @flaviendelangle
2719
+ - [docs] Remove default prop and improve format (#6781) @oliviertassinari
2720
+ - [docs] Sync prism-okaidia.css with source (#6820) @oliviertassinari
2721
+
2722
+ ### Core
2723
+
2724
+ - [core] Convert scripts to ESM (#6789) @LukasTy
2725
+ - [core] Feedback on branch protection @oliviertassinari
2726
+ - [core] Fix `test-types` out of memory error (#6850) @LukasTy
2727
+ - [core] Import from `@mui/utils` instead of `@mui/material/utils` (#6816) @cherniavskii
2728
+ - [core] Show the whole version to make blame easier @oliviertassinari
2729
+ - [core] Small changes on new pickers internals (#6840) @flaviendelangle
2730
+ - [core] Remove prettier scripts (#6815) @Janpot
2731
+ - [license] Polish error messages (#6881) @oliviertassinari
2732
+ - [test] Verify `onError` call on the pickers (#6771) @alexfauquette
2733
+
2734
+ ## 6.0.0-alpha.7
2735
+
2736
+ _Nov 10, 2022_
2737
+
2738
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2739
+
2740
+ - ⚙️ Removed everything marked as `@deprecated`
2741
+ - 📚 Documentation improvements
2742
+ - 🐞 Bugfixes
2743
+
2744
+ ### `@mui/x-data-grid@6.0.0-alpha.7` / `@mui/x-data-grid-pro@6.0.0-alpha.7` / `@mui/x-data-grid-premium@6.0.0-alpha.7`
2745
+
2746
+ #### Changes
2747
+
2748
+ - [DataGrid] Fix cell focus causing scroll jump when virtualization enabled (#6785) @yaredtsy
2749
+ - [DataGrid] Remove items marked as `@deprecated` (#6505) @DanailH
2750
+
2751
+ ### `@mui/x-date-pickers@6.0.0-alpha.7` / `@mui/x-date-pickers-pro@6.0.0-alpha.7`
2752
+
2753
+ #### Changes
2754
+
2755
+ - [fields] Rename section names to match the picker view nomenclature (#6779) @flaviendelangle
2756
+ - [pickers] Fix pickers toolbar styling (#6793) @LukasTy
2757
+ - [pickers] Improve validation JSDoc descriptions (#6777) @flaviendelangle
2758
+ - [pickers] New `MobileDateTimePicker`, `DesktopDateTimePicker`, `DateTimePicker` and `StaticDateTimePicker` based on `DateTimeField` (#6767) @flaviendelangle
2759
+ - [pickers] New `MobileTimePicker`, `DesktopTimePicker`, `TimePicker` and `StaticTimePicker` based on `TimeField` (#6728) @flaviendelangle
2760
+ - [pickers] Support the `onError` prop and add context on the `onChange` prop (#6731) @flaviendelangle
2761
+
2762
+ ### Docs
2763
+
2764
+ - [docs] Add missing Pro header suffix (#6775) @oliviertassinari
2765
+ - [docs] Upgrade to Next.js 13 (#6790) @cherniavskii
2766
+
2767
+ ### Core
2768
+
2769
+ - [core] Add OSSF Scorecard action (#6760) @oliviertassinari
2770
+ - [core] Fix Pinned-Dependencies @oliviertassinari
2771
+ - [core] Fix Scorecard fail Action @oliviertassinari
2772
+ - [core] Pin GitHub Action dependencies (#6739) @renovate[bot]
2773
+ - [core] Remove default access to GitHub action scopes @oliviertassinari
2774
+ - [test] Fix test case name: Pro-> Premium @oliviertassinari
2775
+
2776
+ ## 6.0.0-alpha.6
2777
+
2778
+ _Nov 4, 2022_
2779
+
2780
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2781
+
2782
+ - 🎁 Allow non-controlled usage of the calendar components (#6643) @flaviendelangle
2783
+
2784
+ ```tsx
2785
+ <DateCalendar defaultValue={dayjs()} />
2786
+ <MonthCalendar defaultValue={dayjs()} />
2787
+ <YearCalendar defaultValue={dayjs()} />
2788
+ ```
2789
+
2790
+ - 🌍 Add Ukrainian (uk-UA) locale to pickers (#6661) @Dufran
2791
+ - 📚 Documentation improvements
2792
+ - 🐞 Bugfixes
2793
+
2794
+ ### `@mui/x-data-grid@6.0.0-alpha.6` / `@mui/x-data-grid-pro@6.0.0-alpha.6` / `@mui/x-data-grid-premium@6.0.0-alpha.6`
2795
+
2796
+ #### Breaking changes
2797
+
2798
+ - The `disableIgnoreModificationsIfProcessingProps` prop has been removed and its behavior when `true` was incorporated as the default behavior.
2799
+ The old behavior can be restored by using `apiRef.current.stopRowEditMode({ ignoreModifications: true })` or `apiRef.current.stopCellEditMode({ ignoreModifications: true })`.
2800
+
2801
+ #### Changes
2802
+
2803
+ - [DataGrid] Add `rowSelection` prop (#6499) @m4theushw
2804
+ - [DataGrid] Avoid future regression with React 19 (#6638) @oliviertassinari
2805
+ - [DataGrid] Refactor `@mui/material` imports to `@mui/utils` (#6569) @LukasTy
2806
+ - [DataGrid] Remove `disableIgnoreModificationsIfProcessingProps` prop (#6640) @m4theushw
2807
+ - [DataGrid] Separate private and public `apiRef` properties (#6388) @cherniavskii
2808
+
2809
+ ### `@mui/x-date-pickers@6.0.0-alpha.6` / `@mui/x-date-pickers-pro@6.0.0-alpha.6`
2810
+
2811
+ #### Changes
2812
+
2813
+ - [DateRangePicker] Fix input focused style and mobile behaviour (#6645) @LukasTy
2814
+ - [fields] Update sections when the locale changes (#6649) @flaviendelangle
2815
+ - [pickers] Add Ukrainian (uk-UA) locale (#6661) @Dufran
2816
+ - [pickers] Allow non-controlled usage of the calendar components (#6643) @flaviendelangle
2817
+ - [pickers] Export other adapters derived from moment or date-fns (#6571) @alexfauquette
2818
+ - [pickers] New `MobileDatePicker` and `DatePicker` based on `DateField` (#6690) @flaviendelangle
2819
+ - [pickers] New `StaticDatePicker` component (#6708) @flaviendelangle
2820
+ - [pickers] Rename `inputFormat` prop to `format` on the new pickers (#6722) @flaviendelangle
2821
+
2822
+ ### Core
2823
+
2824
+ - [core] Fix `typescript:ci` failures (#6705) @LukasTy
2825
+ - [core] Fixes for upcoming eslint upgrade (#6667) @Janpot
2826
+ - [core] Pin GitHub Action to digests (#6683) @oliviertassinari
2827
+
2828
+ ## 6.0.0-alpha.5
2829
+
2830
+ _Oct 31, 2022_
2831
+
2832
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
2833
+
2834
+ - ⚡ Fix memory leak during unmount of the DataGrid (#6620) @cherniavskii
2835
+ - 📝 New guide for migrating pickers from v5 to v6 (#6472) @flaviendelangle
2836
+ - 🎁 Allow to disable the autofocus of the search field when opening the column visibility panel (#6444) @e-cloud
2837
+ - 🐞 Bugfixes
2838
+
2839
+ ### `@mui/x-data-grid@6.0.0-alpha.5` / `@mui/x-data-grid-pro@6.0.0-alpha.5` / `@mui/x-data-grid-premium@6.0.0-alpha.5`
2840
+
2841
+ #### Breaking changes
2842
+
2843
+ - Stop exporting `gridColumnsSelector` (#6693) @m4theushw
2844
+
2845
+ The `gridColumnsSelector` was deprecated during v5 and is now removed from the export list.
2846
+
2847
+ Please consider using one of the following selectors as a replacement:
2848
+
2849
+ - `gridColumnFieldsSelector`, to obtain the column fields in the order they appear on the screen;
2850
+ - `gridColumnLookupSelector`, to access column definitions by field;
2851
+ - `gridColumnVisibilityModelSelector`, for the visibility state of each column.
2852
+
2853
+ #### Changes
2854
+
2855
+ - [DataGrid] Allow to disable autofocusing the search field in the columns panel (#6444) @e-cloud
2856
+ - [DataGrid] Fix `setRows` method not persisting new rows data after `loading` prop change (#6493) @cherniavskii
2857
+ - [DataGrid] Fix memory leak on grid unmount (#6620) @cherniavskii
2858
+ - [DataGrid] Rename `GridColumnsState['all']` to `GridColumnsState['orderedFields']` (#6562) @DanailH
2859
+ - [DataGrid] Remove `React.memo` from `GridCellCheckboxRenderer` (#6655) @mattcorner
2860
+ - [DataGrid] Stop exporting `gridColumnsSelector` (#6693)
2861
+ - [l10n] Improve Bulgarian (bg-BG) locale (#6578) @AtanasVA
2862
+
2863
+ ### `@mui/x-date-pickers@6.0.0-alpha.5` / `@mui/x-date-pickers-pro@6.0.0-alpha.5`
2864
+
2865
+ #### Breaking changes
2866
+
2867
+ - [pickers] Rename remaining `private` components (#6550) @LukasTy
2868
+ Previously we had 4 component names with `Private` prefix in order to avoid breaking changes in v5.
2869
+ These components were renamed:
2870
+
2871
+ - `PrivatePickersMonth` -> `MuiPickersMonth`
2872
+ - `PrivatePickersSlideTransition` -> `MuiPickersSlideTransition`
2873
+ - `PrivatePickersToolbarText` -> `MuiPickersToolbarText`
2874
+ - `PrivatePickersYear` -> `MuiPickersYear`
2875
+
2876
+ Manual style overriding will need to use updated classes:
2877
+
2878
+ ```diff
2879
+ -.PrivatePickersMonth-root {
2880
+ +.MuiPickersMonth-root {
2881
+
2882
+ -.PrivatePickersSlideTransition-root {
2883
+ +.MuiPickersSlideTransition-root {
2884
+
2885
+ -.PrivatePickersToolbarText-root {
2886
+ +.MuiPickersToolbarText-root {
2887
+
2888
+ -.PrivatePickersYear-root {
2889
+ +.MuiPickersYear-root {
2890
+ ```
2891
+
2892
+ Component name changes are also reflected in `themeAugmentation`:
2893
+
2894
+ ```diff
2895
+ const theme = createTheme({
2896
+ components: {
2897
+ - PrivatePickersMonth: {
2898
+ + MuiPickersMonth: {
2899
+ // overrides
2900
+ },
2901
+ - PrivatePickersSlideTransition: {
2902
+ + MuiPickersSlideTransition: {
2903
+ // overrides
2904
+ },
2905
+ - PrivatePickersToolbarText: {
2906
+ + MuiPickersToolbarText: {
2907
+ // overrides
2908
+ },
2909
+ - PrivatePickersYear: {
2910
+ + MuiPickersYear: {
2911
+ // overrides
2912
+ },
2913
+ },
2914
+ });
2915
+ ```
2916
+
2917
+ #### Changes
2918
+
2919
+ - [DateTimePicker] Fix toolbar time order when `theme.rtl=true` (#6636) @alexfauquette
2920
+ - [pickers] Import fixes for mask editing (#6623) @alexfauquette
2921
+ - [pickers] Rename remaining `private` components (#6550) @LukasTy
2922
+ - [pickers] New `DesktopDatePicker` based on `DateField` (#6548) @flaviendelangle
2923
+
2924
+ ### Docs
2925
+
2926
+ - [docs] Add feedback in next doc (#6591) @alexfauquette
2927
+ - [docs] Check link validity in PR (#6497) @alexfauquette
2928
+ - [docs] Disable translations (#6560) @cherniavskii
2929
+ - [docs] Fix typo in DataGrid demo page (#6632) @banoth-ravinder
2930
+ - [docs] New page to migrate pickers from v5 to v6 (#6472) @flaviendelangle
2931
+ - [docs] Remove broken welcome page (#6585) @alexfauquette
2932
+ - [docs] Mark data grid column group as available (#6660) @alexfauquette
2933
+ - [docs] Fix double space @oliviertassinari
2934
+
2935
+ ### Core
2936
+
2937
+ - [core] Fix duplicate CodeQL build @oliviertassinari
2938
+ - [core] Fix spreading on validation page (#6624) @flaviendelangle
2939
+ - [core] Small TypeScript improvements (#6575) @flaviendelangle
2940
+ - [core] Upgrade monorepo (#6594) @oliviertassinari
2941
+ - [core] Change reproduction position (#6621) @oliviertassinari
2942
+ - [core] Fix permissions in `no-response` workflow (#6658) @cherniavskii
2943
+ - [core] Remove legacy migration function (#6669) @oliviertassinari
2944
+ - [license] Improve the license content (#6459) @oliviertassinari
2945
+ - [test] Test Arrow up/down on every token (#6563) @alexfauquette
2946
+
2947
+ ## 6.0.0-alpha.4
2948
+
2949
+ _Oct 20, 2022_
2950
+
2951
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
2952
+
2953
+ - 📝 Manage pickers' toolbar customization with slots
2954
+ - 🐞 Bugfixes
2955
+ - 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2956
+
2957
+ ### `@mui/x-data-grid@6.0.0-alpha.4` / `@mui/x-data-grid-pro@6.0.0-alpha.4` / `@mui/x-data-grid-premium@6.0.0-alpha.4`
2958
+
2959
+ #### Breaking changes
2960
+
2961
+ - To avoid confusion with the props that will be added for the cell selection feature, some props related to row selection were renamed to have "row" in their name.
2962
+ The renamed props are the following:
2963
+
2964
+ | Old name | New name |
2965
+ | :------------------------- | :---------------------------- |
2966
+ | `selectionModel` | `rowSelectionModel` |
2967
+ | `onSelectionModelChange` | `onRowSelectionModelChange` |
2968
+ | `disableSelectionOnClick` | `disableRowSelectionOnClick` |
2969
+ | `disableMultipleSelection` | `disableMultipleRowSelection` |
2970
+
2971
+ - The `gridSelectionStateSelector` selector was renamed to `gridRowSelectionStateSelector`.
2972
+
2973
+ - The `selectionChange` event was renamed to `rowSelectionChange`.
2974
+
2975
+ #### Changes
2976
+
2977
+ - [DataGrid] Add `searchPredicate` prop to `GridColumnsPanel` component (#6557) @cherniavskii
2978
+ - [DataGrid] Support keyboard navigation in column group header (#5947) @alexfauquette
2979
+ - [DataGrid] Fix grid not updating state on `rowCount` prop change (#5982) @cherniavskii
2980
+ - [DataGrid] Rename selection props (#6556) @m4theushw
2981
+ - [l10n] Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2982
+
2983
+ ### `@mui/x-date-pickers@6.0.0-alpha.4` / `@mui/x-date-pickers-pro@6.0.0-alpha.4`
2984
+
2985
+ #### Breaking changes
2986
+
2987
+ - The `ToolbarComponent` has been replaced by a `Toolbar` component slot.
2988
+ You can find more information about this pattern in the [Base UI documentation](https://mui.com/base-ui/getting-started/usage/#shared-props):
2989
+
2990
+ ```diff
2991
+ // Same on all other pickers
2992
+ <DatePicker
2993
+ - ToolbarComponent: MyToolbar,
2994
+ + components={{ Toolbar: MyToolbar }}
2995
+ />
2996
+ ```
2997
+
2998
+ - The `toolbarPlaceholder` and `toolbarFormat` props have been moved to the `toolbar` components props slot:
2999
+
3000
+ ```diff
3001
+ // Same on all other pickers
3002
+ <DatePicker
3003
+ - toolbarPlaceholder="__"
3004
+ - toolbarFormat="DD / MM / YYYY"
3005
+ + componentsProps={{
3006
+ + toolbar: {
3007
+ + toolbarPlaceholder: '__',
3008
+ + toolbarFormat: 'DD / MM / YYYY',
3009
+ + }
3010
+ + }}
3011
+ />
3012
+ ```
3013
+
3014
+ - The `toolbarTitle` prop has been moved to the localization object:
3015
+
3016
+ ```diff
3017
+ // Same on all other pickers
3018
+ <DatePicker
3019
+ - toolbarTitle="Title"
3020
+ + localeText={{ toolbarTitle: 'Title' }}
3021
+ />
3022
+ ```
3023
+
3024
+ - The toolbar related translation keys have been renamed to better fit their usage:
3025
+
3026
+ ```diff
3027
+ <LocalizationProvider
3028
+ localeText={{
3029
+ - datePickerDefaultToolbarTitle: 'Date Picker',
3030
+ + datePickerToolbarTitle: 'Date Picker',
3031
+
3032
+ - timePickerDefaultToolbarTitle: 'Time Picker',
3033
+ + timePickerToolbarTitle: 'Time Picker',
3034
+
3035
+ - dateTimePickerDefaultToolbarTitle: 'Date Time Picker',
3036
+ + dateTimePickerToolbarTitle: 'Date Time Picker',
3037
+
3038
+ - dateRangePickerDefaultToolbarTitle: 'Date Range Picker',
3039
+ + dateRangePickerToolbarTitle: 'Date Range Picker',
3040
+ }}
3041
+ />
3042
+ ```
3043
+
3044
+ - The `onChange` / `openView` props on the toolbar have been renamed `onViewChange` / `view`
3045
+
3046
+ #### Changes
3047
+
3048
+ - [fields] Add a `validationError` property to the `onChange` callback (#6539) @flaviendelangle
3049
+ - [fields] Distinguish start and end input error on multi input fields (#6503) @flaviendelangle
3050
+ - [pickers] Clean the `Tabs` component slot (#6543) @flaviendelangle
3051
+ - [pickers] Fix localization of the placeholder (#6547) @alexfauquette
3052
+ - [pickers] Fix TypeScript issues (#6322) @flaviendelangle
3053
+ - [pickers] Improve error consistency between single and multiple range pickers (#6561) @alexfauquette
3054
+ - [pickers] Refactor `@mui/material` imports to `@mui/utils` (#6443) @LukasTy
3055
+ - [pickers] Replace toolbar's props by a component slot (#6445) @flaviendelangle
3056
+
3057
+ ### Docs
3058
+
3059
+ - [docs] Enable inlined preview for disabled date picker (#6477) @oliviertassinari
3060
+ - [docs] Fix 404 errors (#6541) @alexfauquette
3061
+ - [docs] Fix broken links on field pages (#6501) @flaviendelangle
3062
+ - [docs] Improve markdownlint (#6518) @oliviertassinari
3063
+
3064
+ ### Core
3065
+
3066
+ - [core] Run CodeQL only on schedule @oliviertassinari
3067
+ - [core] Fix trailing spaces and git diff format (#6523) @oliviertassinari
3068
+ - [core] Harden GitHub Actions permissions (#6396) @step-security-bot
3069
+ - [core] Improve the playground DX (#6514) @oliviertassinari
3070
+ - [core] Link Netlify in the danger comment (#6513) @oliviertassinari
3071
+ - [core] Organize tests for pickers slots (#6546) @flaviendelangle
3072
+ - [core] Remove outdated `docsearch.js` dependency (#6242) @oliviertassinari
3073
+ - [core] Upgrade monorepo (#6549) @cherniavskii
3074
+ - [test] Add validation test on range pickers (#6504) @alexfauquette
3075
+ - [test] Remove BrowserStack (#6263) @DanailH
3076
+
3077
+ ## 6.0.0-alpha.3
3078
+
3079
+ _Oct 13, 2022_
3080
+
3081
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
3082
+
3083
+ - ⌚️ New components to edit date and time with <kbd>keyboard</kbd>—without using any modal or dropdown UI.
3084
+ Please check out our [documentation](https://mui.com/x/react-date-pickers/fields/) to discover those new components.
3085
+
3086
+ - [`DateField`](https://mui.com/x/react-date-pickers/date-field/) to edit date
3087
+ - [`TimeField`](https://mui.com/x/react-date-pickers/time-field/) to edit time
3088
+ - [`DateTimeField`](https://mui.com/x/react-date-pickers/date-time-field/) to edit date and time
3089
+ - [`MultiInputDateRangeField` / `SingleInputDateRangeField`](https://mui.com/x/react-date-pickers/date-range-field/) to edit date range
3090
+ - [`MultiInputTimeRangeField`](https://mui.com/x/react-date-pickers/time-range-field/) to edit time range with two inputs
3091
+ - [`MultiInputDateTimeRangeField`](https://mui.com/x/react-date-pickers/date-time-range-field/) to edit date and time range with two inputs
3092
+
3093
+ ⚠️ These components are unstable.
3094
+ They might receive breaking changes on their props to have the best components possible by the time of the stable release.
3095
+
3096
+ - 📝 Allow to limit to one filter per column for `DataGridPro` and `DataGridPremium` (#6333) @MBilalShafi
3097
+ - 📚 New [page describing the validation props on each picker](https://mui.com/x/react-date-pickers/validation/) (#6064) @flaviendelangle
3098
+ - 📚 Documentation improvements
3099
+ - 🐞 Bugfixes
3100
+
3101
+ ### `@mui/x-data-grid@6.0.0-alpha.3` / `@mui/x-data-grid-pro@6.0.0-alpha.3` / `@mui/x-data-grid-premium@6.0.0-alpha.3`
3102
+
3103
+ #### Breaking changes
3104
+
3105
+ - [DataGrid] Remove legacy editing API
3106
+
3107
+ The editing API that is enabled by default was replaced with a new API that contains better support for server-side persistence, validation and customization. This new editing feature was already available in v5 under the `newEditingApi` experimental flag. In v6, this flag can be removed.
3108
+
3109
+ ```diff
3110
+ <DataGrid
3111
+ - experimentalFeatures={{ newEditingApi: true }}
3112
+ />
3113
+ ```
3114
+
3115
+ For users that didn't migrate to the new editing API in v5, additional work may be needed because the new API is not equivalent to the legacy API. Although, some migration steps are available to help in this task.
3116
+
3117
+ - The `editCellPropsChange` event was removed. If you still need it please file a new issue so we can propose an alternative.
3118
+ - The `cellEditCommit` event was removed and the `processRowUpdate` prop can be used in place. More information, check the [docs](https://mui.com/x/react-data-grid/editing/#persistence) section about the topic.
3119
+ - The `editRowsModel` and `onEditRowsModelChange` props were removed. The [`cellModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) or [`rowModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) props can be used to achieve the same goal.
3120
+ - The following API methods were removed:
3121
+ - Use `apiRef.current.stopCellEditMode` to replace `apiRef.current.commitCellChange`
3122
+ - Use `apiRef.current.startCellEditMode` to replace `apiRef.current.setCellMode(id, field, 'edit')`
3123
+ - Use `apiRef.current.stopRowEditMode` to replace `apiRef.current.commitRowChange`
3124
+ - Use `apiRef.current.startRowMode` to replace `apiRef.current.setRowMode(id, 'edit')`
3125
+ - Use the [`cellModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) or [`rowModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) props to replace `apiRef.current.setEditRowsModel`
3126
+
3127
+ #### Changes
3128
+
3129
+ - [DataGrid] Fix start edit mode with printable character in React 18 (#6257) @m4theushw
3130
+ - [DataGrid] Remove legacy editing API (#6016) @m4theushw
3131
+ - [DataGrid] Simplify `useGridApiContext` and `useGridApiRef` type overrides (#6423) @cherniavskii
3132
+ - [DataGrid] Use generics instead of verbose state overrides (#6409) @cherniavskii
3133
+ - [DataGridPro] Allow to limit to one filter per column (#6333) @MBilalShafi
3134
+
3135
+ ### `@mui/x-date-pickers@6.0.0-alpha.3` / `@mui/x-date-pickers-pro@6.0.0-alpha.3`
3136
+
3137
+ #### Breaking changes
3138
+
3139
+ - All the props used by the mobile and desktop wrappers to override components or components' props have been replaced by component slots. You can find more information about this pattern in the [Base UI documentation](https://mui.com/base-ui/getting-started/usage/#shared-props).
3140
+
3141
+ Some of the names have also been prefixed by `desktop` when it was unclear that the behavior was only applied on the desktop version of the pickers (or the responsive version when used on a desktop).
3142
+
3143
+ The `DialogProps` prop has been replaced by a `dialog` component props slot on responsive and mobile pickers:
3144
+
3145
+ ```diff
3146
+ // Same on MobileDatePicker, DateTimePicker, MobileDateTimePicker,
3147
+ // TimePicker, MobileTimePicker, DateRangePicker and MobileDateRangePicker.
3148
+ <DatePicker
3149
+ - DialogProps={{ backgroundColor: 'red' }}
3150
+ + componentsProps={{ dialog: { backgroundColor: 'red' }}}
3151
+ />
3152
+ ```
3153
+
3154
+ The `PaperProps` prop has been replaced by a `desktopPaper` component props slot on all responsive and desktop pickers:
3155
+
3156
+ ```diff
3157
+ // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
3158
+ // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
3159
+ <DatePicker
3160
+ - PaperProps={{ backgroundColor: 'red' }}
3161
+ + componentsProps={{ desktopPaper: { backgroundColor: 'red' }}}
3162
+ />
3163
+ ```
3164
+
3165
+ The `PopperProps` prop has been replaced by a `popper` component props slot on all responsive and desktop pickers:
3166
+
3167
+ ```diff
3168
+ // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
3169
+ // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
3170
+ <DatePicker
3171
+ - PopperProps={{ onClick: handleClick }}
3172
+ + componentsProps={{ popper: { onClick: handleClick }}}
3173
+ />
3174
+ ```
3175
+
3176
+ The `TransitionComponent` prop has been replaced by a `DesktopTransition` component slot on all responsive and desktop pickers:
3177
+
3178
+ ```diff
3179
+ // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
3180
+ // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
3181
+ <DatePicker
3182
+ - TransitionComponent={Fade}
3183
+ + components={{ DesktopTransition: Fade }}
3184
+ />
3185
+ ```
3186
+
3187
+ The `TrapFocusProps` prop has been replaced by a `desktopTrapFocus` component props slot on all responsive and desktop pickers:
3188
+
3189
+ ```diff
3190
+ // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
3191
+ // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
3192
+ <DatePicker
3193
+ - TrapFocusProps={{ isEnabled: () => false }}
3194
+ + componentsProps={{ desktopTrapFocus: { isEnabled: () => false }}}
3195
+ />
3196
+ ```
3197
+
3198
+ - The view components allowing to pick a date or parts of a date without an input have been renamed to better fit their usage:
3199
+
3200
+ ```diff
3201
+ -<CalendarPicker {...props} />
3202
+ +<DateCalendar {...props} />
3203
+ ```
3204
+
3205
+ ```diff
3206
+ -<DayPicker {...props} />
3207
+ +<DayCalendar {...props} />
3208
+ ```
3209
+
3210
+ ```diff
3211
+ -<CalendarPickerSkeleton {...props} />
3212
+ +<DayCalendarSkeleton {...props} />
3213
+ ```
3214
+
3215
+ ```diff
3216
+ -<MonthPicker {...props} />
3217
+ +<MonthCalendar {...props} />
3218
+ ```
3219
+
3220
+ ```diff
3221
+ -<YearPicker {...props} />
3222
+ +<YearCalendar {...props} />
3223
+ ```
3224
+
3225
+ - Component names in the theme have changed as well:
3226
+
3227
+ ```diff
3228
+ -MuiCalendarPicker: {
3229
+ +MuiDateCalendar: {
3230
+ ```
3231
+
3232
+ ```diff
3233
+ -MuiDayPicker: {
3234
+ +MuiDayCalendar: {
3235
+ ```
3236
+
3237
+ ```diff
3238
+ -MuiCalendarPickerSkeleton: {
3239
+ +MuiDayCalendarSkeleton: {
3240
+ ```
3241
+
3242
+ ```diff
3243
+ -MuiMonthPicker: {
3244
+ +MuiMonthCalendar: {
3245
+ ```
3246
+
3247
+ ```diff
3248
+ -MuiYearPicker: {
3249
+ +MuiYearCalendar: {
3250
+ ```
3251
+
3252
+ #### Changes
3253
+
3254
+ - [DatePicker] Allows to fix the number of week displayed (#6299) @alexfauquette
3255
+ - [DateRangePicker] Fix calendar day outside of month layout shifting on hover (#6448) @alexfauquette
3256
+ - [fields] New components: `MultiInputDateTimeRangePicker` and `MultiInputTimeRangePicker` (#6392) @alexfauquette
3257
+ - [fields] Prepare the field exports for the public release (#6467) @flaviendelangle
3258
+ - [fields] Support paste in single section (#6422) @alexfauquette
3259
+ - [pickers] Add field placeholders to the locale (#6337) @flaviendelangle
3260
+ - [pickers] Do not use `Partial` for `components` and `componentsProps` props (#6463) @flaviendelangle
3261
+ - [pickers] New component: `DateRangeCalendar` (#6416) @flaviendelangle
3262
+ - [pickers] Replace the `Picker` prefix in the view component by `Calendar` (eg: `MonthPicker` => `MonthCalendar`) (#6389) @flaviendelangle
3263
+ - [pickers] Support pasting on fields (#6364) @flaviendelangle
3264
+ - [pickers] Use slots in the mobile and desktop wrappers instead of `XXXComponent` and `XXXProps` (#6381) @flaviendelangle
3265
+
3266
+ ### Docs
3267
+
3268
+ - [docs] Add migration to DataGrid v6 page (#6235) @m4theushw
3269
+ - [docs] Create first publishable version of the field doc (#6323) @flaviendelangle
3270
+ - [docs] Fix trailing spaces in the readme @oliviertassinari
3271
+ - [docs] New page for the pickers: Validation (#6064) @flaviendelangle
3272
+ - [docs] Organize migration pages (#6480) @flaviendelangle
3273
+
3274
+ ### Core
3275
+
3276
+ - [core] Add CodeQL workflow (#6387) @DanailH
3277
+ - [core] Add missing breaking change to the changelog (#6471) @flaviendelangle
3278
+ - [core] Fix playground structure (#6466) @LukasTy
3279
+ - [core] Fix tests for pasting on fields (#6465) @flaviendelangle
3280
+ - [core] Remove absolute link (#6420) @flaviendelangle
3281
+ - [core] Remove unused `react-text-mask` package (#6408) @LukasTy
3282
+ - [core] Send explicit warning when dayjs locale is not found (#6424) @alexfauquette
3283
+ - [core] Test validation on textfield and date views (#6265) @alexfauquette
3284
+ - [test] Sync comment with monorepo @oliviertassinari
3285
+
3286
+ ## 6.0.0-alpha.2
3287
+
3288
+ _Oct 7, 2022_
3289
+
3290
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
3291
+
3292
+ - 🚀 Further progress on stabilizing new date field components
3293
+ - 🎁 Improve support for theme augmentation in the DataGrid (#6269) @cherniavskii
3294
+ - 🌍 Add Japanese (ja-JP) locale to pickers (#6365) @sho918
3295
+ - 📚 Documentation improvements
3296
+ - 🐞 Bugfixes
3297
+
3298
+ ### `@mui/x-data-grid@6.0.0-alpha.2` / `@mui/x-data-grid-pro@6.0.0-alpha.2` / `@mui/x-data-grid-premium@6.0.0-alpha.2`
3299
+
3300
+ #### Breaking changes
3301
+
3302
+ - 🎁 The aggregation is no longer experimental.
3303
+
3304
+ You can now use the aggregation without the `experimentalFeatures.aggregation` flag enabled.
3305
+
3306
+ ```diff
3307
+ <DataGridPremium
3308
+ - experimentalFeatures={{ aggregation: true }}
3309
+ />
3310
+ ```
3311
+
3312
+ The aggregation of the columns through the column menu is now enabled by default on `DataGridPremium`. You can set `disableAggregation={true}` to disable it.
3313
+
3314
+ #### Changes
3315
+
3316
+ - [DataGrid] Add filter item ID to `.MuiDataGrid-filterForm` (#6313) @m4theushw
3317
+ - [DataGrid] Add missing `valueOptions` (#6401) @DanailH
3318
+ - [DataGrid] Don't start edit mode when pressing Shift + Space (#6228) @m4theushw
3319
+ - [DataGrid] Fix error when using column grouping with all columns hidden (#6405) @alexfauquette
3320
+ - [DataGrid] Pass generics to the components in the theme augmentation (#6269) @cherniavskii
3321
+ - [DataGridPremium] Remove the aggregation from the experimental features (#6372) @flaviendelangle
3322
+
3323
+ ### `@mui/x-date-pickers@6.0.0-alpha.2` / `@mui/x-date-pickers-pro@6.0.0-alpha.2`
3324
+
3325
+ #### Breaking changes
3326
+
3327
+ - The `renderDay` prop has been replaced by a `Day` component slot.
3328
+ You can find more information about this pattern in the [Base UI documentation](https://mui.com/base-ui/getting-started/usage/#shared-props).
3329
+
3330
+ ```diff
3331
+ // Same for any other date, date time or date range picker.
3332
+ <DatePicker
3333
+ - renderDay={(_, dayProps) => <CustomDay {...dayProps} />}
3334
+ + components={{ Day: CustomDay }}
3335
+ />
3336
+ ```
3337
+
3338
+ #### Changes
3339
+
3340
+ - [DateRangePicker] Fix the shape of the first selected day when the start date has an hour set (#6403) @flaviendelangle
3341
+ - [l10n] Add Japanese (ja-JP) locale to pickers (#6365) @sho918
3342
+ - [DateRangePicker] Force focus to stay on inputs (#6324) @alexfauquette
3343
+ - [pickers] Improve edition on field components (#6339) @flaviendelangle
3344
+ - [pickers] Improve field selection behaviors (#6317) @flaviendelangle
3345
+ - [pickers] Replace the `renderDay` prop with a `Day` component slot (#6293) @flaviendelangle
3346
+
3347
+ ### Docs
3348
+
3349
+ - [docs] Apply style guide to Data Grid Aggregation page (#5781) @samuelsycamore
3350
+ - [docs] Fix code examples of editing cells (#6004) @TiagoPortfolio
3351
+ - [docs] Fix customized day rendering demo style (#6342) (#6399) @Ambrish-git
3352
+ - [docs] Implement Style Guide on "Advanced" Data Grid doc pages (#6331) @samuelsycamore
3353
+ - [docs] Use components instead of demos for `SelectorsDocs` (#6103) @flaviendelangle
3354
+ - [license] Add new license status 'Out of scope' (#5260) @flaviendelangle
3355
+
3356
+ ### Core
3357
+
3358
+ - [core] Speedup of yarn install in the CI (#6395) @oliviertassinari
3359
+ - [test] Remove redundant test clean-ups (#6377) @oliviertassinari
3360
+ - [test] Replace `React.render` with `React.createRoot` in e2e tests (#6393) @m4theushw
3361
+
3362
+ ## 6.0.0-alpha.1
3363
+
3364
+ _Sep 29, 2022_
3365
+
3366
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
3367
+
3368
+ - 🚀 Better support for custom overlays (#5808) @cherniavskii
3369
+ - 🖨️ Improve print export (#6273) @oliviertassinari
3370
+ - 🎁 Reduce confusion when initializing pickers with a date value (#6170) @flaviendelangle
3371
+ - 📚 Documentation improvements
3372
+ - 🐞 Bugfixes
3373
+
3374
+ ### `@mui/x-data-grid@6.0.0-alpha.1` / `@mui/x-data-grid-pro@6.0.0-alpha.1` / `@mui/x-data-grid-premium@6.0.0-alpha.1`
3375
+
3376
+ #### Breaking changes
3377
+
3378
+ - New internal rows structure for v6 (#4927) @flaviendelangle
3379
+
3380
+ Some selectors related to the rows have been renamed to better describe the type of rows they are returning:
3381
+
3382
+ ```diff
3383
+ -const result = gridRowsIdToIdLookupSelector(apiRef);
3384
+ +const result = gridRowsDataRowIdToIdLookupSelector(apiRef);
3385
+ ```
3386
+
3387
+ ```diff
3388
+ -const result = gridRowTreeDepthSelector(apiRef);
3389
+ +const result = gridRowMaximumTreeDepthSelector(apiRef);
3390
+ ```
3391
+
3392
+ The format of the tree nodes (the element accessible in `params.node` or with the `apiRef.current.getRowNode` method) have changed.
3393
+ You have a new `type` property, which can be useful, for example, to apply custom behavior on groups.
3394
+ Here is an example of the old and new approach showing how to apply a custom value formatter in groups for the grouping column:
3395
+
3396
+ ```diff
3397
+ <DataGridPremium
3398
+ groupingColDef={() => ({
3399
+ valueFormatter: (params) => {
3400
+ if (params.id == null) {
3401
+ return params.value;
3402
+ }
3403
+
3404
+ const rowNode = apiRef.current.getRowNode(params.id!)!;
3405
+ - if (rowNode.children?.length) {
3406
+ + if (rowNode.type === 'group') {
3407
+ return `by ${rowNode.groupingKey ?? ''}`;
3408
+ }
3409
+
3410
+ return params.value;
3411
+ }
3412
+ })}
3413
+ />
3414
+ ```
3415
+
3416
+ - The `GridFeatureModeConstant` constant no longer exists (#6077) @DanailH
3417
+
3418
+ ```diff
3419
+ -import { GridFeatureModeConstant } from '@mui/x-data-grid';
3420
+ ```
3421
+
3422
+ #### Changes
3423
+
3424
+ - [DataGrid] Fix `GridPagination` props typing (#6238) @cherniavskii
3425
+ - [DataGrid] Fix `GridRow` not forwarding `ref` to the root element (#6274) @cherniavskii
3426
+ - [DataGrid] Fix `undefined` value being showed in filter button tooltip text (#6259) @cherniavskii
3427
+ - [DataGrid] Fix blank space when changing page with dynamic row height (#6049) @m4theushw
3428
+ - [DataGrid] New internal rows structure for v6 (#4927) @flaviendelangle
3429
+ - [DataGrid] Revert cell/row mode if `processRowUpdate` fails (#6185) @m4theushw
3430
+ - [DataGrid] Rework overlays layout (#5808) @cherniavskii
3431
+ - [DataGrid] Improve print support (#6273) @oliviertassinari
3432
+ - [DataGridPremium] Add missing `themeAugmentation` module (#6270) @cherniavskii
3433
+
3434
+ ### `@mui/x-date-pickers@6.0.0-alpha.1` / `@mui/x-date-pickers-pro@6.0.0-alpha.1`
3435
+
3436
+ #### Breaking changes
3437
+
3438
+ - The `value` prop of the pickers now expects a parsed value.
3439
+
3440
+ Until now, it was possible to provide any format that your date management library was able to parse.
3441
+ For instance, you could pass `value={new Date()}` when using `AdapterDayjs`.
3442
+
3443
+ This brought a lot of confusion so we decided to remove this behavior.
3444
+ The format expected by the `value` prop is now the same as for any other prop holding a date.
3445
+ Here is the syntax to initialize a date picker at the current date for each adapter:
3446
+
3447
+ ```tsx
3448
+ // Date-fns
3449
+ <DatePicker value={new Date()} />;
3450
+
3451
+ // Dayjs
3452
+ import dayjs from 'dayjs';
3453
+ <DatePicker value={dayjs()} />;
3454
+
3455
+ // Moment
3456
+ import moment from 'moment';
3457
+ <DatePicker value={moment()} />;
3458
+
3459
+ // Luxon
3460
+ import { DateTime } from 'luxon';
3461
+ <DatePicker value={DateTime.now()} />;
3462
+ ```
3463
+
3464
+ #### Changes
3465
+
3466
+ - [DatePicker] Respect `minDate` and `maxDate` when opening a `DatePicker` or `DateTimePicker` (#6309) @alexfauquette
3467
+ - [DateTimePicker] Fix validation with `shouldDisableMonth` and `shouldDisableYear` (#6266) @flaviendelangle
3468
+ - [TimePicker] Add support for `disablePast` and `disableFuture` validation props (#6226) @LukasTy
3469
+ - [CalendarPicker] Prevent getting focus when `autoFocus=false` (#6304) @alexfauquette
3470
+ - [DateField] Extend moment adapter to support `expandFormat` and `formatTokenMap` (#6215) @alexfauquette
3471
+ - [pickers] Allow to control the selected sections (#6209, #6307) @flaviendelangle
3472
+ - [pickers] Do not loose the value of date sections not present in the format in the new field components (#6141) @flaviendelangle
3473
+ - [pickers] Do not support unparsed date formats anymore (#6170) @flaviendelangle
3474
+ - [pickers] Support slots on the `DateField` component (#6048) @flaviendelangle
3475
+ - [pickers] Support Luxon v3 in `AdapterLuxon` (#6069) @alexfauquette
3476
+ - [pickers] New components `TimeField` and `DateTimeField` (#6312) @flaviendelangle
3477
+ - [pickers] Support basic mobile edition on new field components (#5958) @flaviendelangle
3478
+
3479
+ ### Docs
3480
+
3481
+ - [docs] Fix issue in DataGrid/DataGridPro row styling demo (#6264) @MBilalShafi
3482
+ - [docs] Improve pickers Getting Started examples (#6292) @flaviendelangle
3483
+ - [docs] Pass model change callbacks in controlled grid editing demos (#6296) @cherniavskii
3484
+ - [docs] Update the CodeSandbox to use the `next` branch (#6275) @oliviertassinari
3485
+
3486
+ ### Core
3487
+
3488
+ - [core] Fix typing error (#6291) @flaviendelangle
3489
+ - [core] Fix typo in the state updater of `useField` (#6311) @flaviendelangle
3490
+ - [core] Remove `GridFeatureModeConstant` (#6077) @DanailH
3491
+ - [core] Simplify testing architecture (#6043) @flaviendelangle
3492
+ - [test] Skip test in Chrome non-headless and Edge (#6318) @m4theushw
3493
+
3494
+ ## 6.0.0-alpha.0
3495
+
3496
+ _Sep 22, 2022_
3497
+
3498
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
3499
+
3500
+ - 🌍 Add a `localeText` prop to all pickers to customize the translations (#6212) @flaviendelangle
3501
+ - 🌍 Add Finnish (fi-FI) locale to the pickers (#6219) @PetroSilenius
3502
+ - 🌍 Add Persian (fa-IR) locale to the pickers (#6181) @fakhamatia
3503
+ - 📚 Documentation improvements
3504
+ - 🐞 Bugfixes
3505
+
3506
+ ### `@mui/x-data-grid@6.0.0-alpha.0` / `@mui/x-data-grid-pro@6.0.0-alpha.0` / `@mui/x-data-grid-premium@6.0.0-alpha.0`
3507
+
3508
+ #### Breaking changes
3509
+
3510
+ - The deprecated `hide` column property has been removed in favor of the `columnVisibilityModel` prop and initial state.
3511
+
3512
+ ```diff
3513
+ <DataGrid
3514
+ columns={[
3515
+ field: 'id,
3516
+ - hide: true,
3517
+ ]}
3518
+ + initialState={{
3519
+ + columns: {
3520
+ + columnVisibilityModel: { id: false },
3521
+ + },
3522
+ + }}
3523
+ />
3524
+ ```
3525
+
3526
+ You can find more information about this new API on our [documentation](https://mui.com/x/react-data-grid/column-visibility/).
3527
+
3528
+ - The `GridEvents` enum is now a TypeScript type.
3529
+
3530
+ ```diff
3531
+ -apiRef.current.subscribeEvent(GridEvents.rowClick', handleRowClick);
3532
+ +apiRef.current.subscribeEvent('rowClick', handleRowClick);
3533
+ ```
3534
+
3535
+ #### Changes
3536
+
3537
+ - [DataGrid] Do not publish `cellFocusOut` event if the row was removed (#6251) @cherniavskii
3538
+ - [DataGrid] Fix scroll anchoring with master details (#6054) @oliviertassinari
3539
+ - [DataGrid] Improve Polish (pl-PL) locale on the data grid (#6245) @grzegorz-bach
3540
+ - [DataGrid] Remove the `GridEvents` enum (#6003) @flaviendelangle
3541
+ - [DataGrid] Remove the deprecated `hide` column property (#5999) @flaviendelangle
3542
+
3543
+ ### `@mui/x-date-pickers@6.0.0-alpha.0` / `@mui/x-date-pickers-pro@6.0.0-alpha.0`
3544
+
3545
+ #### Breaking changes
3546
+
3547
+ - All the deprecated props that allowed you to set the text displayed in the pickers have been removed.
3548
+
3549
+ You can now use the `localText` prop available on all picker components:
3550
+
3551
+ | Removed prop | Property in the new `localText` prop |
3552
+ | :--------------------------- | :-------------------------------------------------------------------------------- |
3553
+ | `endText` | `end` |
3554
+ | `getClockLabelText` | `clockLabelText` |
3555
+ | `getHoursClockNumberText` | `hoursClockNumberText` |
3556
+ | `getMinutesClockNumberText` | `minutesClockNumberText` |
3557
+ | `getSecondsClockNumberText` | `secondsClockNumberText` |
3558
+ | `getViewSwitchingButtonText` | `calendarViewSwitchingButtonAriaLabel` |
3559
+ | `leftArrowButtonText` | `openPreviousView` (or `previousMonth` when the button changes the visible month) |
3560
+ | `rightArrowButtonText` | `openNextView` (or `nextMonth` when the button changes the visible month) |
3561
+ | `startText` | `start` |
3562
+
3563
+ For instance if you want to replace the `startText` / `endText`
3564
+
3565
+ ```diff
3566
+ <DateRangePicker
3567
+ - startText="From"
3568
+ - endText="To"
3569
+ + localeText={{
3570
+ + start: 'From',
3571
+ + end: 'To',
3572
+ + }}
3573
+ />
3574
+ ```
3575
+
3576
+ You can find more information about the new api, including how to set those translations on all your components at once in the [documentation](https://mui.com/x/react-date-pickers/localization/)
3577
+
3578
+ - The deprecated `locale` prop of the `LocalizationProvider` component have been renamed `adapterLocale`:
3579
+
3580
+ ```diff
3581
+ <LocalizationProvider
3582
+ dateAdapter={AdapterDayjs}
3583
+ - locale="fr"
3584
+ + adapterLocale="fr"
3585
+ >
3586
+ {children}
3587
+ </LocalizationProvider>
3588
+ ```
3589
+
3590
+ - The component slots `LeftArrowButton` and `RightArrowButton` have been renamed `PreviousIconButton` and `NextIconButton` to better describe there usage:
3591
+
3592
+ ```diff
3593
+ <DatePicker
3594
+ components={{
3595
+ - LeftArrowButton: CustomButton,
3596
+ + PreviousIconButton: CustomButton,
3597
+
3598
+ - RightArrowButton: CustomButton,
3599
+ + NextIconButton: CustomButton,
3600
+ }}
3601
+ componentsProps={{
3602
+ - leftArrowButton: {},
3603
+ + previousIconButton: {},
3604
+
3605
+ - rightArrowButton: {},
3606
+ + nextIconButton: {},
3607
+ }}
3608
+ />
3609
+ ```
3610
+
3611
+ - The `date` prop has been renamed `value` on `MonthPicker` / `YearPicker`, `ClockPicker` and `CalendarPicker`.
3612
+
3613
+ ```diff
3614
+ -<MonthPicker date={dayjs()} onChange={handleMonthChange} />
3615
+ +<MonthPicker value={dayjs()} onChange={handleMonthChange} />
3616
+
3617
+ -<YearPicker date={dayjs()} onChange={handleYearChange} />
3618
+ +<YearPicker value={dayjs()} onChange={handleYearChange} />
3619
+
3620
+ -<ClockPicker date={dayjs()} onChange={handleTimeChange} />
3621
+ +<ClockPicker value={dayjs()} onChange={handleTimeChange} />
3622
+
3623
+ -<CalendarPicker date={dayjs()} onChange={handleDateChange} />
3624
+ +<CalendarPicker value={dayjs()} onChange={handleDateChange} />
3625
+ ```
3626
+
3627
+ #### Changes
3628
+
3629
+ - [CalendarPicker] Don't move to closest enabled date when `props.date` contains a disabled date (#6146) @flaviendelangle
3630
+ - [DateRangePicker] Switch to new month when changing the value from the outside (#6166) @flaviendelangle
3631
+ - [pickers] Add a `localeText` prop to all pickers to customize the translations (#6212) @flaviendelangle
3632
+ - [pickers] Add Finnish (fi-FI) locale to the pickers (#6219) (#6230) @PetroSilenius
3633
+ - [pickers] Add Persian (fa-IR) locale to the pickers (#6181) @fakhamatia
3634
+ - [pickers] Allow nested `LocalizationProvider` (#6011) @flaviendelangle
3635
+ - [pickers] Clean slots on `PickersArrowSwitcher` component (#5890) @flaviendelangle
3636
+ - [pickers] Fix invalid date error when decreasing `DateField` day (#6071) @alexfauquette
3637
+ - [pickers] Fix mobile section selection (#6207) @oliviertassinari
3638
+ - [pickers] Fix usage with Typescript 4.8 (#6229) @flaviendelangle
3639
+ - [pickers] Improve error message when no adapter context is found (#6211) @flaviendelangle
3640
+ - [pickers] Remove `valueStr` from the field state (#6142) @flaviendelangle
3641
+ - [pickers] Remove remaining deprecated locale props (#6233) @flaviendelangle
3642
+ - [pickers] Rename the `date` prop `value` on `MonthPicker` / `YearPicker`, `ClockPicker` and `CalendarPicker` (#6128) @flaviendelangle
3643
+ - [pickers] Rename the `onClose` prop of `PickersPopper` `onDismiss` to simplify typing (#6155) @flaviendelangle
3644
+ - [pickers] Support the `sx` prop on all public component with a root HTML elements (#5944) @flaviendelangle
3645
+ - [pickers] Unify `PickersMonth` and `PickersYear` behaviors (#6034) @flaviendelangle
3646
+ - [pickers] Use `shouldDisableMonth` and `shouldDisableYear` for date validation (#6066) @flaviendelangle
3647
+ - [YearPicker] Scroll to the current year even with `autoFocus=false` (#6224) @alexfauquette
3648
+
3649
+ ### Docs
3650
+
3651
+ - [docs] Add automatic vale check (#5429) @alexfauquette
3652
+ - [docs] Add Pro logo in "column ordering" link (#6127) @alexfauquette
3653
+ - [docs] Fix 301 link (#6239) @oliviertassinari
3654
+ - [docs] Fix broken link (#6163) @alexfauquette
3655
+ - [docs] Fix broken links (#6101) @alexfauquette
3656
+ - [docs] Fix demonstration date to avoid hydration errors (#6032) @alexfauquette
3657
+ - [docs] Fix hidden popper in restore state example (#6191) @heyfirst
3658
+ - [docs] Fix invalid links causing 404 & 301 errors (#6105) @oliviertassinari
3659
+ - [docs] Fix npm repository url in the pickers `package.json` (#6172) @oliviertassinari
3660
+ - [docs] Fix typo in linked issue (#6162) @flaviendelangle
3661
+ - [docs] Import `generateUtilityClass` from `@mui/utils` (#6216) @michaldudak
3662
+ - [docs] Improve Upgrade plan docs (#6018) @oliviertassinari
3663
+ - [docs] Link the OpenSSF Best Practices card (#6171) @oliviertassinari
3664
+
3665
+ ### Core
3666
+
3667
+ - [core] Add `v5.17.3` changelog to next branch (#6250) @flaviendelangle
3668
+ - [core] Add link to the security page on the `README` (#6073) @oliviertassinari
3669
+ - [core] Fix scroll restoration in the docs (#5938) @oliviertassinari
3670
+ - [core] Remove the Storybook (#6099) @flaviendelangle
3671
+ - [core] Tag release as `next` in NPM (#6256) @m4theushw
3672
+ - [core] Update monorepo (#6180) @flaviendelangle
3673
+ - [core] Use the `next` branch for Prettier (#6097) @flaviendelangle
3674
+ - [core] Use the official repository for `@mui/monorepo` instead of a fork (#6189) @oliviertassinari
3675
+ - [test] Fix logic to skip column pinning tests (#6133) @m4theushw
3676
+ - [test] Hide the date on the print regression test (#6120) @flaviendelangle
3677
+ - [test] Skip tests for column pinning and dynamic row height (#5997) @m4theushw
3678
+ - [website] Improve security header @oliviertassinari
3679
+
3680
+ ## Older versions
3681
+
3682
+ Changes before 6.x are listed in our [changelog for older versions](https://github.com/mui/mui-x/blob/HEAD/changelogOld/).