@mui/x-charts 6.0.0-alpha.2 → 6.0.0-alpha.3

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 (90) hide show
  1. package/BarChart/BarChart.d.ts +1 -4
  2. package/BarChart/BarChart.js +5 -3
  3. package/BarChart/BarPlot.js +42 -8
  4. package/CHANGELOG.md +232 -114
  5. package/ChartContainer/index.d.ts +3 -1
  6. package/ChartContainer/index.js +10 -6
  7. package/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  8. package/LineChart/LineChart.d.ts +1 -4
  9. package/LineChart/LineChart.js +5 -3
  10. package/ResponsiveChartContainer/index.d.ts +1 -1
  11. package/ResponsiveChartContainer/index.js +11 -9
  12. package/ScatterChart/Scatter.d.ts +1 -1
  13. package/ScatterChart/ScatterChart.d.ts +1 -4
  14. package/ScatterChart/ScatterChart.js +5 -3
  15. package/context/CartesianContextProvider.js +31 -20
  16. package/context/SeriesContextProvider.js +2 -2
  17. package/esm/BarChart/BarChart.js +3 -2
  18. package/esm/BarChart/BarPlot.js +44 -8
  19. package/esm/ChartContainer/index.js +7 -5
  20. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  21. package/esm/LineChart/LineChart.js +3 -2
  22. package/esm/ResponsiveChartContainer/index.js +9 -8
  23. package/esm/ScatterChart/ScatterChart.js +3 -2
  24. package/esm/context/CartesianContextProvider.js +31 -18
  25. package/esm/context/SeriesContextProvider.js +2 -2
  26. package/esm/hooks/index.js +2 -0
  27. package/esm/hooks/useAxisEvents.js +12 -7
  28. package/esm/hooks/useDrawingArea.js +16 -0
  29. package/esm/hooks/useScale.js +19 -21
  30. package/esm/hooks/useTicks.js +26 -13
  31. package/esm/index.js +1 -0
  32. package/esm/internals/getScale.js +17 -0
  33. package/esm/internals/isBandScale.js +3 -0
  34. package/esm/models/axis.js +6 -1
  35. package/hooks/index.d.ts +2 -0
  36. package/hooks/index.js +27 -0
  37. package/hooks/package.json +6 -0
  38. package/hooks/useAxisEvents.js +14 -9
  39. package/hooks/useDrawingArea.d.ts +6 -0
  40. package/hooks/useDrawingArea.js +24 -0
  41. package/hooks/useScale.d.ts +3 -6
  42. package/hooks/useScale.js +24 -24
  43. package/hooks/useTicks.d.ts +1 -1
  44. package/hooks/useTicks.js +19 -9
  45. package/index.d.ts +1 -0
  46. package/index.js +12 -1
  47. package/internals/getScale.d.ts +2 -0
  48. package/internals/getScale.js +23 -0
  49. package/internals/isBandScale.d.ts +3 -0
  50. package/internals/isBandScale.js +9 -0
  51. package/legacy/BarChart/BarChart.js +3 -2
  52. package/legacy/BarChart/BarPlot.js +44 -10
  53. package/legacy/ChartContainer/index.js +7 -5
  54. package/legacy/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  55. package/legacy/LineChart/LineChart.js +3 -2
  56. package/legacy/ResponsiveChartContainer/index.js +9 -8
  57. package/legacy/ScatterChart/ScatterChart.js +3 -2
  58. package/legacy/context/CartesianContextProvider.js +31 -18
  59. package/legacy/context/SeriesContextProvider.js +2 -2
  60. package/legacy/hooks/index.js +2 -0
  61. package/legacy/hooks/useAxisEvents.js +12 -7
  62. package/legacy/hooks/useDrawingArea.js +17 -0
  63. package/legacy/hooks/useScale.js +17 -21
  64. package/legacy/hooks/useTicks.js +26 -13
  65. package/legacy/index.js +2 -1
  66. package/legacy/internals/getScale.js +17 -0
  67. package/legacy/internals/isBandScale.js +3 -0
  68. package/legacy/models/axis.js +6 -1
  69. package/models/axis.d.ts +25 -12
  70. package/models/axis.js +9 -1
  71. package/models/seriesType/pie.d.ts +2 -2
  72. package/modern/BarChart/BarChart.js +3 -2
  73. package/modern/BarChart/BarPlot.js +44 -8
  74. package/modern/ChartContainer/index.js +7 -5
  75. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  76. package/modern/LineChart/LineChart.js +3 -2
  77. package/modern/ResponsiveChartContainer/index.js +9 -8
  78. package/modern/ScatterChart/ScatterChart.js +3 -2
  79. package/modern/context/CartesianContextProvider.js +29 -18
  80. package/modern/context/SeriesContextProvider.js +2 -2
  81. package/modern/hooks/index.js +2 -0
  82. package/modern/hooks/useAxisEvents.js +12 -7
  83. package/modern/hooks/useDrawingArea.js +16 -0
  84. package/modern/hooks/useScale.js +19 -21
  85. package/modern/hooks/useTicks.js +18 -8
  86. package/modern/index.js +2 -1
  87. package/modern/internals/getScale.js +17 -0
  88. package/modern/internals/isBandScale.js +3 -0
  89. package/modern/models/axis.js +6 -1
  90. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,65 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 6.10.0
7
+
8
+ _Jul 13, 2023_
9
+
10
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - ⚡ Improve data grid filtering performance
13
+ - 🎁 Include column groups in the CSV export
14
+ - 🌍 Improve Polish (pl-PL) locale for the data grid
15
+ - 🌍 Improve Norwegian (nb-NO) locale for the pickers
16
+
17
+ ### Data Grid
18
+
19
+ #### `@mui/x-data-grid@6.10.0`
20
+
21
+ - [DataGrid] Allow to exclude hidden columns from the quick filter (#9610) @cherniavskii
22
+ - [DataGrid] Filtering performance: remove indirection (#9334) @romgrk
23
+ - [DataGrid] Fix props propagation on `GridToolbarQuickFilter` component (#9633) @giladappsforce
24
+ - [DataGrid] Fix quick filter input lag (#9630) @cherniavskii
25
+ - [DataGrid] Include column groups in the CSV export (#9585) @cherniavskii
26
+ - [DataGrid] Make `rowExpansionChange` event public (#9611) @MBilalShafi
27
+ - [l10n] Improve Polish (pl-PL) locale (#9625) @ch1llysense
28
+
29
+ #### `@mui/x-data-grid-pro@6.10.0`
30
+
31
+ Same changes as in `@mui/x-data-grid@6.10.0`.
32
+
33
+ #### `@mui/x-data-grid-premium@6.10.0`
34
+
35
+ Same changes as in `@mui/x-data-grid-pro@6.10.0`.
36
+
37
+ ### Date Pickers
38
+
39
+ #### `@mui/x-date-pickers@6.10.0`
40
+
41
+ - [pickers] Fix date calendar issues (#9652) @LukasTy
42
+ - [l10n] Improve Norwegian (nb-NO) locale (#9608) @JosteinBrevik
43
+
44
+ #### `@mui/x-date-pickers-pro@6.10.0`
45
+
46
+ Same changes as in `@mui/x-date-pickers@6.10.0`.
47
+
48
+ ### Charts / `@mui/x-charts@6.0.0-alpha.3`
49
+
50
+ - [charts] Allow configuring bar size (#9632) @alexfauquette
51
+ - [charts] Simplify custom components creation (#9561) @alexfauquette
52
+
53
+ ### Docs
54
+
55
+ - [docs] Add slot components usage alert (#9660) @LukasTy
56
+ - [docs] Fix casing Cell selection @oliviertassinari
57
+
58
+ ### Core
59
+
60
+ - [core] Disambiguate eslint plugin name @oliviertassinari
61
+ - [core] Update priority support issue template and prompt (#9574) @DanailH
62
+ - [CHANGELOG] Clarify each plan (#9446) @oliviertassinari
63
+ - [license] Fix error terminology (#9614) @oliviertassinari
64
+
6
65
  ## 6.9.2
7
66
 
8
67
  _Jul 6, 2023_
@@ -25,27 +84,38 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
25
84
 
26
85
  - 📚 Documentation improvements
27
86
 
28
- ### `@mui/x-data-grid@v6.9.2` / `@mui/x-data-grid-pro@v6.9.2` / `@mui/x-data-grid-premium@v6.9.2`
87
+ ### Data Grid
29
88
 
30
- #### Changes
89
+ #### `@mui/x-data-grid@6.9.2`
31
90
 
32
91
  - [DataGrid] Fix `RangeError` when using flex columns (#9554) @cherniavskii
33
92
  - [DataGrid] Fix React 17 editing bug (#9530) @romgrk
34
93
  - [DataGrid] Use `getRowId` in filtering (#9564) @romgrk
35
94
  - [DataGrid] Correctly reflect `TablePagination`'s `rowsPerPageOptions` shape to `pageSizeOptions` (#9438) @burakkgunduzz
36
- - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
37
95
  - [l10n] Improve Spanish (es-ES) locale (#9500) @fufex
38
96
 
39
- ### `@mui/x-date-pickers@v6.9.2` / `@mui/x-date-pickers-pro@v6.9.2`
97
+ #### `@mui/x-data-grid-pro@6.9.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
40
98
 
41
- #### Changes
99
+ Same changes as in `@mui/x-data-grid@6.9.2`.
100
+
101
+ #### `@mui/x-data-grid-premium@6.9.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
102
+
103
+ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
104
+
105
+ - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
106
+
107
+ ### Date Pickers
108
+
109
+ #### `@mui/x-date-pickers@6.9.2`
42
110
 
43
111
  - [pickers] Forward digital clock classes (#9555) @YoonjiJang
44
112
  - [pickers] Rename `internal` folder to `internals` on `@mui/x-date-picker-pro` (#9571) @flaviendelangle
45
113
 
46
- ### `@mui/x-charts@6.0.0-alpha.2`
114
+ #### `@mui/x-date-pickers-pro@6.9.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
47
115
 
48
- #### Changes
116
+ Same changes as in `@mui/x-date-pickers@6.9.2`.
117
+
118
+ ### Charts / `@mui/x-charts@6.0.0-alpha.2`
49
119
 
50
120
  - [charts] Add pie chart component (#9395) @alexfauquette
51
121
 
@@ -77,9 +147,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
77
147
  - 🐞 Bugfixes
78
148
  - 📚 Documentation improvements
79
149
 
80
- ### `@mui/x-data-grid@v6.9.1` / `@mui/x-data-grid-pro@v6.9.1` / `@mui/x-data-grid-premium@v6.9.1`
150
+ ### Data Grid
81
151
 
82
- #### Changes
152
+ #### `@mui/x-data-grid@6.9.1`
83
153
 
84
154
  - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
85
155
  - [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
@@ -87,13 +157,22 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
87
157
  - [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
88
158
  - [DataGrid] Fix `nextFieldToFocus` to always be a visible column field when <kbd>Tab</kbd> key is pressed (#8314) @yaredtsy
89
159
  - [DataGrid] Fix `Maximum call stack size exceeded` error when using fractional width (#9516) @cherniavskii
160
+ - [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
161
+
162
+ #### `@mui/x-data-grid-pro@6.9.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
163
+
164
+ Same changes as in `@mui/x-data-grid@6.9.1`, plus:
165
+
90
166
  - [DataGridPro] Don't throw error in column pinning (#9507) @romgrk
91
167
  - [DataGridPro] Fix bug with `checkboxSelection` and treeData/grouping (#9418) @romgrk
92
- - [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
93
168
 
94
- ### `@mui/x-date-pickers@v6.9.1` / `@mui/x-date-pickers-pro@v6.9.1`
169
+ #### `@mui/x-data-grid-premium@6.9.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
95
170
 
96
- #### Changes
171
+ Same changes as in `@mui/x-data-grid-pro@6.9.1`.
172
+
173
+ ### Date Pickers
174
+
175
+ #### `@mui/x-date-pickers@6.9.1`
97
176
 
98
177
  - [DateTimePicker] Scroll to Digital Clock section only when selection changes (#9434) @LukasTy
99
178
  - [pickers] Handle `keyDown` only when input is focused (#9481) @LukasTy
@@ -101,9 +180,11 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
101
180
  - [l10n] Add Chinese (Hong Kong) (zh-HK) locale (#9468) @samchiu90
102
181
  - [l10n] Improve Romanian (ro-RO) translations (#9436) @noraleonte
103
182
 
104
- ### `@mui/x-charts@6.0.0-alpha.1`
183
+ #### `@mui/x-date-pickers-pro@6.9.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
105
184
 
106
- #### Changes
185
+ Same changes as in `@mui/x-date-pickers@6.9.1`.
186
+
187
+ ### Charts / `@mui/x-charts@6.0.0-alpha.1`
107
188
 
108
189
  - [charts] Take responsive container from data grid (#9497) @alexfauquette
109
190
  - [charts] Update README.md (#9426) @alexfauquette
@@ -155,17 +236,25 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
155
236
  - 🐞 Bugfixes
156
237
  - 📚 Documentation improvements
157
238
 
158
- ### `@mui/x-data-grid@v6.9.0` / `@mui/x-data-grid-pro@v6.9.0` / `@mui/x-data-grid-premium@v6.9.0`
239
+ ### Data Grid
159
240
 
160
- #### Changes
241
+ #### `@mui/x-data-grid@6.9.0`
161
242
 
162
243
  - [DataGrid] Filtering performance: use unmemoized selectors by default (#9287) @romgrk
163
244
  - [DataGrid] Use container dimensions from `getComputedStyle` (#9236) @m4theushw
164
245
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#9404) @julioAz
165
246
 
166
- ### `@mui/x-date-pickers@v6.9.0` / `@mui/x-date-pickers-pro@v6.9.0`
247
+ #### `@mui/x-data-grid-pro@6.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
167
248
 
168
- #### Changes
249
+ Same changes as in `@mui/x-data-grid@6.9.0`.
250
+
251
+ #### `@mui/x-data-grid-premium@6.9.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
252
+
253
+ Same changes as in `@mui/x-data-grid-pro@6.9.0`.
254
+
255
+ ### Date Pickers
256
+
257
+ #### `@mui/x-date-pickers@6.9.0`
169
258
 
170
259
  - [fields] Ensure `minutesStep` is respected by fields arrows up/down (#9338) @alexfauquette
171
260
  - [fields] Reset internal state when `referenceValue` changes (#9390) @adrianmxb
@@ -175,9 +264,11 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
175
264
  - [pickers] Reduce date range calendar vertical border width (#9368) @oliviertassinari
176
265
  - [pickers] Reset fields internal state when pasting value (#9385) @alexfauquette
177
266
 
178
- ### `@mui/x-charts@v6.0.0-alpha.0`
267
+ #### `@mui/x-date-pickers-pro@6.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
179
268
 
180
- #### Changes
269
+ Same changes as in `@mui/x-date-pickers@6.9.0`.
270
+
271
+ ### Charts / `@mui/x-charts@6.0.0-alpha.0`
181
272
 
182
273
  - [charts] Allow to customize colors based on the theme mode (#9006) @alexfauquette
183
274
  - [charts] Prepare the charts release (#9361) @alexfauquette
@@ -213,9 +304,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
213
304
  - 🐞 Bugfixes
214
305
  - 📚 Documentation improvements
215
306
 
216
- ### `@mui/x-data-grid@6.8.0` / `@mui/x-data-grid-pro@6.8.0` / `@mui/x-data-grid-premium@6.8.0`
307
+ ### Data Grid
217
308
 
218
- #### Changes
309
+ #### `@mui/x-data-grid@6.8.0`
219
310
 
220
311
  - [DataGrid] Add missing styles to `overridesResolver` (#9248) @mrmuhammadali
221
312
  - [DataGrid] Keep column header menu icon always visible on touch devices (#9076) @cherniavskii
@@ -229,15 +320,27 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
229
320
  - [DataGrid] Scroll performance improvements (#9037) @romgrk
230
321
  - [l10n] Improve Greek (el-GR) locale (#9292) @clytras
231
322
 
232
- ### `@mui/x-date-pickers@6.8.0` / `@mui/x-date-pickers-pro@6.8.0`
323
+ #### `@mui/x-data-grid-pro@6.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
233
324
 
234
- #### Changes
325
+ Same changes as in `@mui/x-data-grid@6.8.0`.
326
+
327
+ #### `@mui/x-data-grid-premium@6.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
328
+
329
+ Same changes as in `@mui/x-data-grid-pro@6.8.0`.
330
+
331
+ ### Date Pickers
332
+
333
+ #### `@mui/x-date-pickers@6.8.0`
235
334
 
236
335
  - [l10n] Add Greek (el-GR) locale (#9293) @clytras
237
336
  - [pickers] Add a `referenceDate` prop on `DateCalendar`, `MonthCalendar` and `YearCalendar` (#9260) @flaviendelangle
238
337
  - [pickers] Close the calendar when a shortcut is selected (#9080) @flaviendelangle
239
338
  - [pickers] Fix disabling for digital clock (#9300) @alexfauquette
240
339
 
340
+ #### `@mui/x-date-pickers-pro@6.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
341
+
342
+ Same changes as in `@mui/x-date-pickers@6.8.0`.
343
+
241
344
  ### Docs
242
345
 
243
346
  - [docs] Add header filters to the popular features demo (#9069) @MBilalShafi
@@ -295,9 +398,9 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
295
398
  - 🐞 Bugfixes
296
399
  - 📚 Documentation improvements
297
400
 
298
- ### `@mui/x-data-grid@v6.7.0` / `@mui/x-data-grid-pro@v6.7.0` / `@mui/x-data-grid-premium@v6.7.0`
401
+ ### Data Grid
299
402
 
300
- #### Changes
403
+ #### `@mui/x-data-grid@6.7.0`
301
404
 
302
405
  - [DataGrid] Allow overflowing grid root element (#9179) @cherniavskii
303
406
  - [DataGrid] Fix module augmentation error when using `@mui/lab` (#9235) @cherniavskii
@@ -306,19 +409,34 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
306
409
  - [DataGrid] Improve grouping performance for large datasets (#9200) @romgrk
307
410
  - [DataGrid] Increase threshold to trigger memory leak warning (#9263) @m4theushw
308
411
  - [DataGrid] Update data grid migration guide to include updated type (#9272) @MBilalShafi
309
- - [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
310
- - [DataGridPremium] Remove last line break on clipboard paste (#9163) @cherniavskii
311
412
  - [l10n] Improve Czech (cs-CZ) locale (#9266) @MartinSkarpa
312
413
  - [l10n] Improve German (de-DE) locale (#9259) @ximex
313
414
  - [l10n] Improve Turkish (tr-TR) locale (#9237) @MCErtan
314
415
 
315
- ### `@mui/x-date-pickers@v6.7.0` / `@mui/x-date-pickers-pro@v6.7.0`
416
+ #### `@mui/x-data-grid-pro@6.7.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
316
417
 
317
- #### Changes
418
+ Same changes as in `@mui/x-data-grid@6.7.0`, plus:
419
+
420
+ - [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
421
+
422
+ #### `@mui/x-data-grid-premium@6.7.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)
423
+
424
+ Same changes as in `@mui/x-data-grid-pro@6.7.0`, plus:
425
+
426
+ - [DataGridPremium] Remove last line break on clipboard paste (#9163) @cherniavskii
427
+
428
+ ### Pickers
429
+
430
+ #### `@mui/x-date-pickers@6.7.0`
318
431
 
319
432
  - [l10n] Add Romanian (ro-RO) locale (#9257) @ximex
320
433
  - [l10n] Improve German (de-DE) locale (#9258) @ximex
321
434
  - [pickers] Apply dynamic default format depending on views for all desktop and mobile pickers (#9126) @flaviendelangle
435
+
436
+ #### `@mui/x-date-pickers-pro@6.7.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)
437
+
438
+ Same changes as in `@mui/x-date-pickers@6.7.0`, plus:
439
+
322
440
  - [pickers] Update `DateRangePickerDay` props JSDoc (#9191) @stevus
323
441
 
324
442
  ### Docs
@@ -352,7 +470,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
352
470
  - 🌍 Improve Dutch (nl-NL) and French (fr-FR) locales on the data grid
353
471
  - 🌍 Add Vietnamese (vi-VN) locale on the pickers
354
472
 
355
- ### `@mui/x-data-grid@v6.6.0` / `@mui/x-data-grid-pro@v6.6.0` / `@mui/x-data-grid-premium@v6.6.0`
473
+ ### `@mui/x-data-grid@6.6.0` / `@mui/x-data-grid-pro@6.6.0` / `@mui/x-data-grid-premium@6.6.0`
356
474
 
357
475
  #### Changes
358
476
 
@@ -370,7 +488,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
370
488
  - [l10n] Improve Dutch (nl-NL) locale (#9043) @thedutchruben
371
489
  - [l10n] Improve French (fr-FR) locale (#9109) @Jul13nT
372
490
 
373
- ### `@mui/x-date-pickers@v6.6.0` / `@mui/x-date-pickers-pro@v6.6.0`
491
+ ### `@mui/x-date-pickers@6.6.0` / `@mui/x-date-pickers-pro@6.6.0`
374
492
 
375
493
  #### Changes
376
494
 
@@ -485,7 +603,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
485
603
  - 🐞 Bugfixes
486
604
  - 📚 Documentation improvements
487
605
 
488
- ### `@mui/x-data-grid@v6.4.0` / `@mui/x-data-grid-pro@v6.4.0` / `@mui/x-data-grid-premium@v6.4.0`
606
+ ### `@mui/x-data-grid@6.4.0` / `@mui/x-data-grid-pro@6.4.0` / `@mui/x-data-grid-premium@6.4.0`
489
607
 
490
608
  #### Changes
491
609
 
@@ -495,12 +613,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
495
613
  - [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
496
614
  - [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
497
615
  - [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
498
- - [l10n] Improve French (fr-FR) locale (#8825) @vallereaugabriel
616
+ - [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
499
617
  - [l10n] Improve German (de-DE) locale (#8898) @marcauberer
500
618
  - [l10n] Improve Portuguese (pt-BR) locale (#8960) @Sorriso337
501
619
  - [l10n] Improve Ukrainian (uk-UA) locale (#8863) @Neonin
502
620
 
503
- ### `@mui/x-date-pickers@v6.4.0` / `@mui/x-date-pickers-pro@v6.4.0`
621
+ ### `@mui/x-date-pickers@6.4.0` / `@mui/x-date-pickers-pro@6.4.0`
504
622
 
505
623
  #### Changes
506
624
 
@@ -534,7 +652,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
534
652
  - 🐞 Bugfixes
535
653
  - 📚 Documentation improvements
536
654
 
537
- ### `@mui/x-data-grid@v6.3.1` / `@mui/x-data-grid-pro@v6.3.1` / `@mui/x-data-grid-premium@v6.3.1`
655
+ ### `@mui/x-data-grid@6.3.1` / `@mui/x-data-grid-pro@6.3.1` / `@mui/x-data-grid-premium@6.3.1`
538
656
 
539
657
  #### Changes
540
658
 
@@ -545,7 +663,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
545
663
  - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
546
664
  - [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
547
665
 
548
- ### `@mui/x-date-pickers@v6.3.1` / `@mui/x-date-pickers-pro@v6.3.1`
666
+ ### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
549
667
 
550
668
  #### Changes
551
669
 
@@ -586,7 +704,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
586
704
  - 🐞 Bugfixes
587
705
  - 📚 Documentation improvements
588
706
 
589
- ### `@mui/x-data-grid@v6.3.0` / `@mui/x-data-grid-pro@v6.3.0` / `@mui/x-data-grid-premium@v6.3.0`
707
+ ### `@mui/x-data-grid@6.3.0` / `@mui/x-data-grid-pro@6.3.0` / `@mui/x-data-grid-premium@6.3.0`
590
708
 
591
709
  #### Changes
592
710
 
@@ -601,7 +719,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
601
719
  - [l10n] Improve French (fr-FR) locale (#8704) @Jul13nT
602
720
  - [l10n] Improve Turkish (tr-TR) locale (#8783) @cccaaannn
603
721
 
604
- ### `@mui/x-date-pickers@v6.3.0` / `@mui/x-date-pickers-pro@v6.3.0`
722
+ ### `@mui/x-date-pickers@6.3.0` / `@mui/x-date-pickers-pro@6.3.0`
605
723
 
606
724
  #### Changes
607
725
 
@@ -650,7 +768,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
650
768
  - 🐞 Bugfixes
651
769
  - 📚 Documentation improvements
652
770
 
653
- ### `@mui/x-data-grid@v6.2.1` / `@mui/x-data-grid-pro@v6.2.1` / `@mui/x-data-grid-premium@v6.2.1`
771
+ ### `@mui/x-data-grid@6.2.1` / `@mui/x-data-grid-pro@6.2.1` / `@mui/x-data-grid-premium@6.2.1`
654
772
 
655
773
  #### Changes
656
774
 
@@ -661,14 +779,14 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
661
779
  - [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw
662
780
  - [DataGridPro] Virtualize row detail panels (#7969) @yaredtsy
663
781
 
664
- ### `@mui/x-date-pickers@v6.2.1` / `@mui/x-date-pickers-pro@v6.2.1`
782
+ ### `@mui/x-date-pickers@6.2.1` / `@mui/x-date-pickers-pro@6.2.1`
665
783
 
666
784
  #### Changes
667
785
 
668
786
  - [pickers] Do not include the time in date components when going to today (#8657) @flaviendelangle
669
787
  - [pickers] Sync internal state with controlled value (#8674) @alexfauquette
670
788
 
671
- ### `@mui/x-codemod@v6.2.1`
789
+ ### `@mui/x-codemod@6.2.1`
672
790
 
673
791
  #### Changes
674
792
 
@@ -708,16 +826,16 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
708
826
  - 🐞 Bugfixes
709
827
  - 📚 Documentation improvements
710
828
 
711
- ### `@mui/x-data-grid@v6.2.0` / `@mui/x-data-grid-pro@v6.2.0` / `@mui/x-data-grid-premium@v6.2.0`
829
+ ### `@mui/x-data-grid@6.2.0` / `@mui/x-data-grid-pro@6.2.0` / `@mui/x-data-grid-premium@6.2.0`
712
830
 
713
831
  #### Changes
714
832
 
715
833
  - [DataGrid] Reset selection state on `checkboxSelection` toggle (#8522) @MBilalShafi
716
834
  - [DataGrid] Use `baseSelect` slot instead of `baseTextField` with `select={true}` (#8110) @cherniavskii
717
- - [l10n] Improve French (fr-FR) locale (#8537) @vallereaugabriel
835
+ - [l10n] Improve French (fr-FR) locale (#8537) @allereaugabriel
718
836
  - [l10n] Improve Urdu (ur-PK) locale (#8513) @SFARPak
719
837
 
720
- ### `@mui/x-date-pickers@v6.2.0` / `@mui/x-date-pickers-pro@v6.2.0`
838
+ ### `@mui/x-date-pickers@6.2.0` / `@mui/x-date-pickers-pro@6.2.0`
721
839
 
722
840
  #### Changes
723
841
 
@@ -751,7 +869,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
751
869
  - 🐞 Bugfixes
752
870
  - 📚 Documentation improvements
753
871
 
754
- ### `@mui/x-data-grid@v6.1.0` / `@mui/x-data-grid-pro@v6.1.0` / `@mui/x-data-grid-premium@v6.1.0`
872
+ ### `@mui/x-data-grid@6.1.0` / `@mui/x-data-grid-pro@6.1.0` / `@mui/x-data-grid-premium@6.1.0`
755
873
 
756
874
  #### Changes
757
875
 
@@ -766,7 +884,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
766
884
  - [l10n] Improve Portuguese (pt-BR) locale (#8480) @pwnedev
767
885
  - [l10n] Improve Russian (ru-RU) locale (#8510) @alexrapro
768
886
 
769
- ### `@mui/x-date-pickers@v6.1.0` / `@mui/x-date-pickers-pro@v6.1.0`
887
+ ### `@mui/x-date-pickers@6.1.0` / `@mui/x-date-pickers-pro@6.1.0`
770
888
 
771
889
  #### Changes
772
890
 
@@ -808,7 +926,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
808
926
  - 🐞 Bugfixes
809
927
  - 📚 Documentation improvements
810
928
 
811
- ### `@mui/x-data-grid@v6.0.4` / `@mui/x-data-grid-pro@v6.0.4` / `@mui/x-data-grid-premium@v6.0.4`
929
+ ### `@mui/x-data-grid@6.0.4` / `@mui/x-data-grid-pro@6.0.4` / `@mui/x-data-grid-premium@6.0.4`
812
930
 
813
931
  #### Changes
814
932
 
@@ -826,7 +944,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
826
944
  - [l10n] Improve Spanish (es-ES) locale (#8420) @martjanz
827
945
  - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
828
946
 
829
- ### `@mui/x-date-pickers@v6.0.4` / `@mui/x-date-pickers-pro@v6.0.4`
947
+ ### `@mui/x-date-pickers@6.0.4` / `@mui/x-date-pickers-pro@6.0.4`
830
948
 
831
949
  #### Changes
832
950
 
@@ -842,7 +960,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
842
960
  - [l10n] Add Danish (da-DK) locale (#8379) @BossElijah
843
961
  - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
844
962
 
845
- ### `@mui/x-codemod@v6.0.4`
963
+ ### `@mui/x-codemod@6.0.4`
846
964
 
847
965
  #### Changes
848
966
 
@@ -869,7 +987,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
869
987
  - 🐞 Bugfixes
870
988
  - 📚 Documentation improvements
871
989
 
872
- ### `@mui/x-data-grid@v6.0.3` / `@mui/x-data-grid-pro@v6.0.3` / `@mui/x-data-grid-premium@v6.0.3`
990
+ ### `@mui/x-data-grid@6.0.3` / `@mui/x-data-grid-pro@6.0.3` / `@mui/x-data-grid-premium@6.0.3`
873
991
 
874
992
  #### Changes
875
993
 
@@ -879,7 +997,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
879
997
  - [l10n] Improve Persian (fa-IR) locale (#8268) @fakhamatia
880
998
  - [l10n] improve Dutch (nl-NL) locale (#8317) @developenguin
881
999
 
882
- ### `@mui/x-date-pickers@v6.0.3` / `@mui/x-date-pickers-pro@v6.0.3`
1000
+ ### `@mui/x-date-pickers@6.0.3` / `@mui/x-date-pickers-pro@6.0.3`
883
1001
 
884
1002
  #### Changes
885
1003
 
@@ -926,7 +1044,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
926
1044
  - 📚 Documentation improvements
927
1045
  - 🐞 Bugfixes
928
1046
 
929
- ### `@mui/x-data-grid@v6.0.2` / `@mui/x-data-grid-pro@v6.0.2` / `@mui/x-data-grid-premium@v6.0.2`
1047
+ ### `@mui/x-data-grid@6.0.2` / `@mui/x-data-grid-pro@6.0.2` / `@mui/x-data-grid-premium@6.0.2`
930
1048
 
931
1049
  #### Changes
932
1050
 
@@ -934,7 +1052,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
934
1052
  - [DataGrid] Remove warning when adding a custom column type (#8227) @m4theushw
935
1053
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#8198) @JoaoSerafim3001
936
1054
 
937
- ### `@mui/x-date-pickers@v6.0.2` / `@mui/x-date-pickers-pro@v6.0.2`
1055
+ ### `@mui/x-date-pickers@6.0.2` / `@mui/x-date-pickers-pro@6.0.2`
938
1056
 
939
1057
  #### Changes
940
1058
 
@@ -976,7 +1094,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
976
1094
  - 📚 Documentation improvements
977
1095
  - 🐞 Bugfixes
978
1096
 
979
- ### `@mui/x-data-grid@v6.0.1` / `@mui/x-data-grid-pro@v6.0.1` / `@mui/x-data-grid-premium@v6.0.1`
1097
+ ### `@mui/x-data-grid@6.0.1` / `@mui/x-data-grid-pro@6.0.1` / `@mui/x-data-grid-premium@6.0.1`
980
1098
 
981
1099
  #### Changes
982
1100
 
@@ -984,7 +1102,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
984
1102
  - [DataGrid] Simplify `buildPrintWindow` (#8142) @oliviertassinari
985
1103
  - [l10n] Improve French (fr-FR) locale (#8122) @MaherSamiGMC
986
1104
 
987
- ### `@mui/x-date-pickers@v6.0.1` / `@mui/x-date-pickers-pro@v6.0.1`
1105
+ ### `@mui/x-date-pickers@6.0.1` / `@mui/x-date-pickers-pro@6.0.1`
988
1106
 
989
1107
  #### Changes
990
1108
 
@@ -1035,7 +1153,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
1035
1153
  - 📚 Documentation improvements
1036
1154
  - 🐞 Bugfixes
1037
1155
 
1038
- ### `@mui/x-data-grid@v6.0.0` / `@mui/x-data-grid-pro@v6.0.0` / `@mui/x-data-grid-premium@v6.0.0`
1156
+ ### `@mui/x-data-grid@6.0.0` / `@mui/x-data-grid-pro@6.0.0` / `@mui/x-data-grid-premium@6.0.0`
1039
1157
 
1040
1158
  #### Breaking changes
1041
1159
 
@@ -1058,7 +1176,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
1058
1176
  - [l10n] Improve Czech (cs-CZ) locale (#8113) @BlastyCZ
1059
1177
  - [l10n] Improve Arabic (ar-SD) locale (#8100) @atf98
1060
1178
 
1061
- ### `@mui/x-date-pickers@v6.0.0` / `@mui/x-date-pickers-pro@v6.0.0`
1179
+ ### `@mui/x-date-pickers@6.0.0` / `@mui/x-date-pickers-pro@6.0.0`
1062
1180
 
1063
1181
  #### Breaking changes
1064
1182
 
@@ -1116,7 +1234,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1116
1234
  - 📚 Documentation improvements
1117
1235
  - 🐞 Bugfixes
1118
1236
 
1119
- ### `@mui/x-data-grid@v6.0.0-beta.5` / `@mui/x-data-grid-pro@v6.0.0-beta.5` / `@mui/x-data-grid-premium@v6.0.0-beta.5`
1237
+ ### `@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`
1120
1238
 
1121
1239
  #### Changes
1122
1240
 
@@ -1126,7 +1244,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1126
1244
  - [DataGridPro] Add `Remove All` option in filter panel (#7326) @MBilalShafi
1127
1245
  - [DataGridPremium] Add web worker support for Excel export (#7770) @m4theushw
1128
1246
 
1129
- ### `@mui/x-date-pickers@v6.0.0-beta.5` / `@mui/x-date-pickers-pro@v6.0.0-beta.5`
1247
+ ### `@mui/x-date-pickers@6.0.0-beta.5` / `@mui/x-date-pickers-pro@6.0.0-beta.5`
1130
1248
 
1131
1249
  #### Breaking changes
1132
1250
 
@@ -1141,7 +1259,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1141
1259
  - [fields] Clean the section object (#8009) @flaviendelangle
1142
1260
  - [pickers] Fix `textField` slot `error` prop propagation (#7987) @LukasTy
1143
1261
 
1144
- ### `@mui/x-codemod@v6.0.0-beta.5`
1262
+ ### `@mui/x-codemod@6.0.0-beta.5`
1145
1263
 
1146
1264
  #### Changes
1147
1265
 
@@ -1168,17 +1286,17 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1168
1286
  - 📚 Documentation improvements
1169
1287
  - 🐞 Bugfixes
1170
1288
 
1171
- ### `@mui/x-data-grid@v6.0.0-beta.4` / `@mui/x-data-grid-pro@v6.0.0-beta.4` / `@mui/x-data-grid-premium@v6.0.0-beta.4`
1289
+ ### `@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`
1172
1290
 
1173
1291
  #### Changes
1174
1292
 
1175
1293
  - [DataGrid] Add interface for `singleSelect` column (#7685) @m4theushw
1176
- - [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7733) @Vivek-Prajapatii
1294
+ - [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7733) @ivek-Prajapatii
1177
1295
  - [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7857) @cherniavskii
1178
1296
  - [DataGridPro] Change cursor when dragging a column (#7725) @sai6855
1179
1297
  - [DataGridPremium] Fix `leafField` to have correct focus value (#7950) @MBilalShafi
1180
1298
 
1181
- ### `@mui/x-date-pickers@v6.0.0-beta.4` / `@mui/x-date-pickers-pro@v6.0.0-beta.4`
1299
+ ### `@mui/x-date-pickers@6.0.0-beta.4` / `@mui/x-date-pickers-pro@6.0.0-beta.4`
1182
1300
 
1183
1301
  #### Changes
1184
1302
 
@@ -1187,7 +1305,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1187
1305
  - [fields] Support escaped characters on `Luxon` (#7888) @flaviendelangle
1188
1306
  - [pickers] Prepare new pickers for custom fields (#7806) @flaviendelangle
1189
1307
 
1190
- ### `@mui/x-codemod@v6.0.0-beta.4`
1308
+ ### `@mui/x-codemod@6.0.0-beta.4`
1191
1309
 
1192
1310
  #### Changes
1193
1311
 
@@ -1217,7 +1335,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1217
1335
  - 📚 Documentation improvements
1218
1336
  - 🐞 Bugfixes
1219
1337
 
1220
- ### `@mui/x-data-grid@v6.0.0-beta.3` / `@mui/x-data-grid-pro@v6.0.0-beta.3` / `@mui/x-data-grid-premium@v6.0.0-beta.3`
1338
+ ### `@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`
1221
1339
 
1222
1340
  #### Changes
1223
1341
 
@@ -1229,7 +1347,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1229
1347
  - [DataGrid] Improve query selectors for selecting cell element (#7354) @yaredtsy
1230
1348
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#7854) @ed-ateixeira
1231
1349
 
1232
- ### `@mui/x-date-pickers@v6.0.0-beta.3` / `@mui/x-date-pickers-pro@v6.0.0-beta.3`
1350
+ ### `@mui/x-date-pickers@6.0.0-beta.3` / `@mui/x-date-pickers-pro@6.0.0-beta.3`
1233
1351
 
1234
1352
  #### Changes
1235
1353
 
@@ -1241,7 +1359,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1241
1359
  - [pickers] Ditch pickers `skipLibCheck` (#7808) @LukasTy
1242
1360
  - [pickers] Improve JSDoc and resulting API docs pages (#7847) @LukasTy
1243
1361
 
1244
- ### `@mui/x-codemod@v6.0.0-beta.3`
1362
+ ### `@mui/x-codemod@6.0.0-beta.3`
1245
1363
 
1246
1364
  #### Changes
1247
1365
 
@@ -1275,7 +1393,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1275
1393
  - 📚 Documentation improvements
1276
1394
  - 🐞 Bug fixes
1277
1395
 
1278
- ### `@mui/x-data-grid@v6.0.0-beta.2` / `@mui/x-data-grid-pro@v6.0.0-beta.2` / `@mui/x-data-grid-premium@v6.0.0-beta.2`
1396
+ ### `@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`
1279
1397
 
1280
1398
  #### Changes
1281
1399
 
@@ -1283,20 +1401,20 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1283
1401
  - [DataGrid] Merge row styles with `componentsProps.row.style` (#7641) @marktoman
1284
1402
  - [l10n] Add Hungarian (hu-HU) locale (#7776) @noherczeg
1285
1403
  - [l10n] Add Urdu (ur-PK) locale (#6866) @MBilalShafi
1286
- - [l10n] Improve French (fr-FR) locale (#7777) @Vivek-Prajapatii
1404
+ - [l10n] Improve French (fr-FR) locale (#7777) @ivek-Prajapatii
1287
1405
  - [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
1288
1406
 
1289
- ### `@mui/x-date-pickers@v6.0.0-beta.2` / `@mui/x-date-pickers-pro@v6.0.0-beta.2`
1407
+ ### `@mui/x-date-pickers@6.0.0-beta.2` / `@mui/x-date-pickers-pro@6.0.0-beta.2`
1290
1408
 
1291
1409
  #### Changes
1292
1410
 
1293
1411
  - [fields] Support week day formats (#7392) @flaviendelangle
1294
1412
  - [pickers] Allow to initialize and control the `rangePosition` on all range components (#7764) @flaviendelangle
1295
1413
  - [pickers] Fix theme augmentation (#7800) @LukasTy
1296
- - [pickers] Hide scrollbars in the date calendar container (#7766) @Vivek-Prajapatii
1414
+ - [pickers] Hide scrollbars in the date calendar container (#7766) @ivek-Prajapatii
1297
1415
  - [pickers] Remove the dependency on `rifm` (#7785) @alexfauquette
1298
1416
 
1299
- ### `@mui/x-codemod@v6.0.0-beta.2`
1417
+ ### `@mui/x-codemod@6.0.0-beta.2`
1300
1418
 
1301
1419
  #### Changes
1302
1420
 
@@ -1329,7 +1447,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1329
1447
  - 📚 Documentation improvements
1330
1448
  - 🐞 Bug fixes
1331
1449
 
1332
- ### `@mui/x-data-grid@v6.0.0-beta.1` / `@mui/x-data-grid-pro@v6.0.0-beta.1` / `@mui/x-data-grid-premium@v6.0.0-beta.1`
1450
+ ### `@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`
1333
1451
 
1334
1452
  #### Changes
1335
1453
 
@@ -1341,9 +1459,9 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1341
1459
  - [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7702) @msidlo
1342
1460
  - [l10n] Add missing core locales for `MuiTablePagination` (#7717) @MBilalShafi
1343
1461
  - [l10n] Improve Spanish (es-ES) and Vietnamese (vi-VN) locale (#7634) @WiXSL and @SpacerZ
1344
- - [l10n] Add Belarusian (be-BY) locale (#7646) @volhalink
1462
+ - [l10n] Add Belarusian (be-BY) locale (#7646) @olhalink
1345
1463
 
1346
- ### `@mui/x-date-pickers@v6.0.0-beta.1` / `@mui/x-date-pickers-pro@v6.0.0-beta.1`
1464
+ ### `@mui/x-date-pickers@6.0.0-beta.1` / `@mui/x-date-pickers-pro@6.0.0-beta.1`
1347
1465
 
1348
1466
  #### Changes
1349
1467
 
@@ -1355,7 +1473,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1355
1473
  - [l10n] Add Russian (ru-RU) locale (#7706) @rstmzh
1356
1474
  - [l10n] Improve Japanese (ja-JP) locale (#7624) @makoto14
1357
1475
 
1358
- ### `@mui/x-codemod@v6.0.0-beta.1`
1476
+ ### `@mui/x-codemod@6.0.0-beta.1`
1359
1477
 
1360
1478
  #### Changes
1361
1479
 
@@ -1372,7 +1490,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1372
1490
 
1373
1491
  ### Docs
1374
1492
 
1375
- - [docs] Add info callout about available component `slots` (#7714) @Vivek-Prajapatii
1493
+ - [docs] Add info callout about available component `slots` (#7714) @ivek-Prajapatii
1376
1494
  - [docs] Add recipe for pinning grouped column (#7712) @MBilalShafi
1377
1495
  - [docs] Fix 404 links to picker API page @oliviertassinari
1378
1496
  - [docs] Update `DemoContainer` `components` prop using a codemod (#7574) @alexfauquette
@@ -1411,7 +1529,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1411
1529
  - 📚 Documentation improvements
1412
1530
  - 🐞 Bug fixes
1413
1531
 
1414
- ### `@mui/x-data-grid@v6.0.0-beta.0` / `@mui/x-data-grid-pro@v6.0.0-beta.0` / `@mui/x-data-grid-premium@v6.0.0-beta.0`
1532
+ ### `@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`
1415
1533
 
1416
1534
  #### Breaking changes
1417
1535
 
@@ -1518,7 +1636,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1518
1636
  - [DataGridPremium] Keep focus on first selected cell (#7482) @m4theushw
1519
1637
  - [l10n] Update Swedish (sv-SE) locale (#7585) @MaanTyringe
1520
1638
 
1521
- ### `@mui/x-date-pickers@v6.0.0-beta.0` / `@mui/x-date-pickers-pro@v6.0.0-beta.0`
1639
+ ### `@mui/x-date-pickers@6.0.0-beta.0` / `@mui/x-date-pickers-pro@6.0.0-beta.0`
1522
1640
 
1523
1641
  #### Breaking changes
1524
1642
 
@@ -1577,7 +1695,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1577
1695
  - [pickers] Stop using the `WrapperVariantContext` in `DateRangeCalendar` (#7488) @flaviendelangle
1578
1696
  - [l10n] Improve Italian (it-IT) locale (#7582) @marikadeveloper
1579
1697
 
1580
- ### `@mui/x-codemod@v6.0.0-beta.0`
1698
+ ### `@mui/x-codemod@6.0.0-beta.0`
1581
1699
 
1582
1700
  #### Changes
1583
1701
 
@@ -1609,7 +1727,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
1609
1727
  - 📚 Documentation improvements
1610
1728
  - 🐞 Bugfixes
1611
1729
 
1612
- ### `@mui/x-data-grid@v6.0.0-alpha.15` / `@mui/x-data-grid-pro@6.0.0-alpha.15` / `@mui/x-data-grid-premium@6.0.0-alpha.15`
1730
+ ### `@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`
1613
1731
 
1614
1732
  #### Breaking changes
1615
1733
 
@@ -1728,7 +1846,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
1728
1846
  #### Changes
1729
1847
 
1730
1848
  - [fields] Fix Android editing (#7444) @flaviendelangle
1731
- - [pickers] Add Belarusian (be-BY) locale (#7395) @volhalink
1849
+ - [pickers] Add Belarusian (be-BY) locale (#7395) @olhalink
1732
1850
  - [pickers] Hide am/pm controls when there is no hour view (#7380) @flaviendelangle
1733
1851
  - [pickers] Hide the tabs by default on `DesktopNextDateTimePicker` (#7503) @flaviendelangle
1734
1852
  - [pickers] Refactor `shouldDisableTime` (#7299) @LukasTy
@@ -1767,7 +1885,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1767
1885
  - 📚 Many documentation improvements
1768
1886
  - 🐞 Bugfixes
1769
1887
 
1770
- ### `@mui/x-data-grid@v6.0.0-alpha.14` / `@mui/x-data-grid-pro@v6.0.0-alpha.14` / `@mui/x-data-grid-premium@v6.0.0-alpha.14`
1888
+ ### `@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`
1771
1889
 
1772
1890
  #### Breaking changes
1773
1891
 
@@ -1784,7 +1902,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1784
1902
  - [DataGrid] Remove remaining props from legacy editing API (#7381) @m4theushw
1785
1903
  - [DataGrid] Set default `GridCellParams['value']` type to `unknown` (#6959) @cherniavskii
1786
1904
 
1787
- ### `@mui/x-date-pickers@v6.0.0-alpha.14` / `@mui/x-date-pickers-pro@v6.0.0-alpha.14`
1905
+ ### `@mui/x-date-pickers@6.0.0-alpha.14` / `@mui/x-date-pickers-pro@6.0.0-alpha.14`
1788
1906
 
1789
1907
  #### Breaking changes
1790
1908
 
@@ -1801,7 +1919,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1801
1919
  - [pickers] Remove the `PaperContent` slot from the new pickers (#7342) @flaviendelangle
1802
1920
  - [pickers] Use grid for modifying the layout (#6900) @alexfauquette
1803
1921
 
1804
- ### `@mui/x-codemod@v6.0.0-alpha.14`
1922
+ ### `@mui/x-codemod@6.0.0-alpha.14`
1805
1923
 
1806
1924
  #### Changes
1807
1925
 
@@ -1924,7 +2042,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1924
2042
  - [DataGrid] Remove `GridDensityType` enum (#7304) @cherniavskii
1925
2043
  - [DataGrid] Remove `rowHeight` and `headerHeight` from state (#7199) @DanailH
1926
2044
  - [DataGrid] Remove column separator to match table styles (#7067) @MBilalShafi
1927
- - [DataGrid] Update Russian (ru-RU) locale (#7220) @VeceluXa
2045
+ - [DataGrid] Update Russian (ru-RU) locale (#7220) @eceluXa
1928
2046
  - [DataGridPro] Use row ID as `key` of the detail panels (#7302) @m4theushw
1929
2047
  - [DataGridPremium] Fix `exceljs` import with parcel (#7284) @alexfauquette
1930
2048
 
@@ -1993,7 +2111,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1993
2111
  - 📚 Documentation improvements
1994
2112
  - 🐞 Bugfixes
1995
2113
 
1996
- ### `@mui/x-data-grid@v6.0.0-alpha.12` / `@mui/x-data-grid-pro@v6.0.0-alpha.12` / `@mui/x-data-grid-premium@v6.0.0-alpha.12`
2114
+ ### `@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`
1997
2115
 
1998
2116
  #### Breaking changes
1999
2117
 
@@ -2014,7 +2132,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
2014
2132
  - [DataGridPro] Fix missing border in right-pinned columns (#4197) @cherniavskii
2015
2133
  - [DataGridPro] Fix wrong border color on skeleton cells (#7202) @cherniavskii
2016
2134
 
2017
- ### `@mui/x-date-pickers@v6.0.0-alpha.12` / `@mui/x-date-pickers-pro@v6.0.0-alpha.12`
2135
+ ### `@mui/x-date-pickers@6.0.0-alpha.12` / `@mui/x-date-pickers-pro@6.0.0-alpha.12`
2018
2136
 
2019
2137
  #### Changes
2020
2138
 
@@ -2048,7 +2166,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
2048
2166
  - ✨ Fix lazy-loading feature not working in `DataGridPremium` (#7124) @m4theushw
2049
2167
  - 🐞 Bugfixes
2050
2168
 
2051
- ### `@mui/x-data-grid@v6.0.0-alpha.11` / `@mui/x-data-grid-pro@v6.0.0-alpha.11` / `@mui/x-data-grid-premium@v6.0.0-alpha.11`
2169
+ ### `@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`
2052
2170
 
2053
2171
  #### Breaking changes
2054
2172
 
@@ -2063,7 +2181,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
2063
2181
  - [DataGridPremium] Add support for lazy-loading (#7124) @m4theushw
2064
2182
  - [DataGridPremium] Pass `groupId` to aggregation function (#7003) @m4theushw
2065
2183
 
2066
- ### `@mui/x-date-pickers@v6.0.0-alpha.11` / `@mui/x-date-pickers-pro@v6.0.0-alpha.11`
2184
+ ### `@mui/x-date-pickers@6.0.0-alpha.11` / `@mui/x-date-pickers-pro@6.0.0-alpha.11`
2067
2185
 
2068
2186
  #### Breaking changes
2069
2187
 
@@ -2160,7 +2278,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2160
2278
  - 📚 Documentation improvements
2161
2279
  - 🐞 Bugfixes
2162
2280
 
2163
- ### `@mui/x-data-grid@v6.0.0-alpha.10` / `@mui/x-data-grid-pro@v6.0.0-alpha.10` / `@mui/x-data-grid-premium@v6.0.0-alpha.10`
2281
+ ### `@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`
2164
2282
 
2165
2283
  ### Breaking changes
2166
2284
 
@@ -2194,7 +2312,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2194
2312
  - [DataGridPremium] Use custom cell component for grouping cell by default (#6692) @cherniavskii
2195
2313
  - [l10n] Improve Ukrainian (uk-UA) locale (#7009) @rettoua
2196
2314
 
2197
- ### `@mui/x-date-pickers@v6.0.0-alpha.10` / `@mui/x-date-pickers-pro@v6.0.0-alpha.10`
2315
+ ### `@mui/x-date-pickers@6.0.0-alpha.10` / `@mui/x-date-pickers-pro@6.0.0-alpha.10`
2198
2316
 
2199
2317
  #### Breaking changes
2200
2318
 
@@ -2257,7 +2375,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
2257
2375
  - 📚 Documentation improvements
2258
2376
  - 🐞 Bugfixes
2259
2377
 
2260
- ### `@mui/x-data-grid@v6.0.0-alpha.9` / `@mui/x-data-grid-pro@v6.0.0-alpha.9` / `@mui/x-data-grid-premium@v6.0.0-alpha.9`
2378
+ ### `@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`
2261
2379
 
2262
2380
  ### Breaking changes
2263
2381
 
@@ -2284,7 +2402,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
2284
2402
  - [DataGridPremium] Improve typing for theme in `styleOverrides` (#6920) @m4theushw
2285
2403
  - [l10n] Fix translation of `filterOperatorBefore` in Arabic (ar-SD) locale (#6884) @HassanGhazy
2286
2404
 
2287
- ### `@mui/x-date-pickers@v6.0.0-alpha.9` / `@mui/x-date-pickers-pro@v6.0.0-alpha.9`
2405
+ ### `@mui/x-date-pickers@6.0.0-alpha.9` / `@mui/x-date-pickers-pro@6.0.0-alpha.9`
2288
2406
 
2289
2407
  #### Changes
2290
2408
 
@@ -2328,12 +2446,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
2328
2446
  - 📚 Documentation improvements
2329
2447
  - 🐞 Bugfixes
2330
2448
 
2331
- ### `@mui/x-data-grid@v6.0.0-alpha.8` / `@mui/x-data-grid-pro@v6.0.0-alpha.8` / `@mui/x-data-grid-premium@v6.0.0-alpha.8`
2449
+ ### `@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`
2332
2450
 
2333
2451
  #### Changes
2334
2452
 
2335
2453
  - [DataGrid] Fix `ErrorOverlay` not receiving defined input props (#6819) @banoth-ravinder
2336
- - [DataGrid] Fix conflict with the latest version of `@types/react` (#6797) @vizv
2454
+ - [DataGrid] Fix conflict with the latest version of `@types/react` (#6797) @izv
2337
2455
  - [DataGrid] Make more `apiRef` methods private (#6700) @cherniavskii
2338
2456
  - [DataGrid] Provide a clear error message when upgrading (#6685) @oliviertassinari
2339
2457
  - [DataGridPremium] Allow to customize the indent of group expansion toggle (#6837) @MBilalShafi
@@ -2342,7 +2460,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
2342
2460
  - [DataGridPro] Opt-out for column jump back on re-order (#6733) @gavbrennan
2343
2461
  - [l10n] Improve Finnish (fi-FI) locale (#6859) @RainoPikkarainen
2344
2462
 
2345
- ### `@mui/x-date-pickers@v6.0.0-alpha.8` / `@mui/x-date-pickers-pro@v6.0.0-alpha.8`
2463
+ ### `@mui/x-date-pickers@6.0.0-alpha.8` / `@mui/x-date-pickers-pro@6.0.0-alpha.8`
2346
2464
 
2347
2465
  #### Breaking changes
2348
2466
 
@@ -2398,14 +2516,14 @@ We'd like to offer a big thanks to the 5 contributors who made this release poss
2398
2516
  - 📚 Documentation improvements
2399
2517
  - 🐞 Bugfixes
2400
2518
 
2401
- ### `@mui/x-data-grid@v6.0.0-alpha.7` / `@mui/x-data-grid-pro@v6.0.0-alpha.7` / `@mui/x-data-grid-premium@v6.0.0-alpha.7`
2519
+ ### `@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`
2402
2520
 
2403
2521
  #### Changes
2404
2522
 
2405
2523
  - [DataGrid] Fix cell focus causing scroll jump when virtualization enabled (#6785) @yaredtsy
2406
2524
  - [DataGrid] Remove items marked as `@deprecated` (#6505) @DanailH
2407
2525
 
2408
- ### `@mui/x-date-pickers@v6.0.0-alpha.7` / `@mui/x-date-pickers-pro@v6.0.0-alpha.7`
2526
+ ### `@mui/x-date-pickers@6.0.0-alpha.7` / `@mui/x-date-pickers-pro@6.0.0-alpha.7`
2409
2527
 
2410
2528
  #### Changes
2411
2529
 
@@ -2448,7 +2566,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2448
2566
  - 📚 Documentation improvements
2449
2567
  - 🐞 Bugfixes
2450
2568
 
2451
- ### `@mui/x-data-grid@v6.0.0-alpha.6` / `@mui/x-data-grid-pro@v6.0.0-alpha.6` / `@mui/x-data-grid-premium@v6.0.0-alpha.6`
2569
+ ### `@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`
2452
2570
 
2453
2571
  #### Breaking changes
2454
2572
 
@@ -2463,7 +2581,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2463
2581
  - [DataGrid] Remove `disableIgnoreModificationsIfProcessingProps` prop (#6640) @m4theushw
2464
2582
  - [DataGrid] Separate private and public `apiRef` properties (#6388) @cherniavskii
2465
2583
 
2466
- ### `@mui/x-date-pickers@v6.0.0-alpha.6` / `@mui/x-date-pickers-pro@v6.0.0-alpha.6`
2584
+ ### `@mui/x-date-pickers@6.0.0-alpha.6` / `@mui/x-date-pickers-pro@6.0.0-alpha.6`
2467
2585
 
2468
2586
  #### Changes
2469
2587
 
@@ -2493,7 +2611,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2493
2611
  - 🎁 Allow to disable the autofocus of the search field when opening the column visibility panel (#6444) @e-cloud
2494
2612
  - 🐞 Bugfixes
2495
2613
 
2496
- ### `@mui/x-data-grid@v6.0.0-alpha.5` / `@mui/x-data-grid-pro@v6.0.0-alpha.5` / `@mui/x-data-grid-premium@v6.0.0-alpha.5`
2614
+ ### `@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`
2497
2615
 
2498
2616
  #### Breaking changes
2499
2617
 
@@ -2517,7 +2635,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2517
2635
  - [DataGrid] Stop exporting `gridColumnsSelector` (#6693)
2518
2636
  - [l10n] Improve Bulgarian (bg-BG) locale (#6578) @AtanasVA
2519
2637
 
2520
- ### `@mui/x-date-pickers@v6.0.0-alpha.5` / `@mui/x-date-pickers-pro@v6.0.0-alpha.5`
2638
+ ### `@mui/x-date-pickers@6.0.0-alpha.5` / `@mui/x-date-pickers-pro@6.0.0-alpha.5`
2521
2639
 
2522
2640
  #### Breaking changes
2523
2641
 
@@ -2611,7 +2729,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2611
2729
  - 🐞 Bugfixes
2612
2730
  - 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2613
2731
 
2614
- ### `@mui/x-data-grid@v6.0.0-alpha.4` / `@mui/x-data-grid-pro@v6.0.0-alpha.4` / `@mui/x-data-grid-premium@v6.0.0-alpha.4`
2732
+ ### `@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`
2615
2733
 
2616
2734
  #### Breaking changes
2617
2735
 
@@ -2637,7 +2755,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2637
2755
  - [DataGrid] Rename selection props (#6556) @m4theushw
2638
2756
  - [l10n] Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2639
2757
 
2640
- ### `@mui/x-date-pickers@v6.0.0-alpha.4` / `@mui/x-date-pickers-pro@v6.0.0-alpha.4`
2758
+ ### `@mui/x-date-pickers@6.0.0-alpha.4` / `@mui/x-date-pickers-pro@6.0.0-alpha.4`
2641
2759
 
2642
2760
  #### Breaking changes
2643
2761
 
@@ -2755,7 +2873,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2755
2873
  - 📚 Documentation improvements
2756
2874
  - 🐞 Bugfixes
2757
2875
 
2758
- ### `@mui/x-data-grid@v6.0.0-alpha.3` / `@mui/x-data-grid-pro@v6.0.0-alpha.3` / `@mui/x-data-grid-premium@v6.0.0-alpha.3`
2876
+ ### `@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`
2759
2877
 
2760
2878
  #### Breaking changes
2761
2879
 
@@ -2789,7 +2907,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2789
2907
  - [DataGrid] Use generics instead of verbose state overrides (#6409) @cherniavskii
2790
2908
  - [DataGridPro] Allow to limit to one filter per column (#6333) @MBilalShafi
2791
2909
 
2792
- ### `@mui/x-date-pickers@v6.0.0-alpha.3` / `@mui/x-date-pickers-pro@v6.0.0-alpha.3`
2910
+ ### `@mui/x-date-pickers@6.0.0-alpha.3` / `@mui/x-date-pickers-pro@6.0.0-alpha.3`
2793
2911
 
2794
2912
  #### Breaking changes
2795
2913
 
@@ -2952,7 +3070,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2952
3070
  - 📚 Documentation improvements
2953
3071
  - 🐞 Bugfixes
2954
3072
 
2955
- ### `@mui/x-data-grid@v6.0.0-alpha.2` / `@mui/x-data-grid-pro@v6.0.0-alpha.2` / `@mui/x-data-grid-premium@v6.0.0-alpha.2`
3073
+ ### `@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`
2956
3074
 
2957
3075
  #### Breaking changes
2958
3076
 
@@ -2977,7 +3095,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2977
3095
  - [DataGrid] Pass generics to the components in the theme augmentation (#6269) @cherniavskii
2978
3096
  - [DataGridPremium] Remove the aggregation from the experimental features (#6372) @flaviendelangle
2979
3097
 
2980
- ### `@mui/x-date-pickers@v6.0.0-alpha.2` / `@mui/x-date-pickers-pro@v6.0.0-alpha.2`
3098
+ ### `@mui/x-date-pickers@6.0.0-alpha.2` / `@mui/x-date-pickers-pro@6.0.0-alpha.2`
2981
3099
 
2982
3100
  #### Breaking changes
2983
3101
 
@@ -3028,7 +3146,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
3028
3146
  - 📚 Documentation improvements
3029
3147
  - 🐞 Bugfixes
3030
3148
 
3031
- ### `@mui/x-data-grid@v6.0.0-alpha.1` / `@mui/x-data-grid-pro@v6.0.0-alpha.1` / `@mui/x-data-grid-premium@v6.0.0-alpha.1`
3149
+ ### `@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`
3032
3150
 
3033
3151
  #### Breaking changes
3034
3152
 
@@ -3088,7 +3206,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
3088
3206
  - [DataGrid] Improve print support (#6273) @oliviertassinari
3089
3207
  - [DataGridPremium] Add missing `themeAugmentation` module (#6270) @cherniavskii
3090
3208
 
3091
- ### `@mui/x-date-pickers@v6.0.0-alpha.1` / `@mui/x-date-pickers-pro@v6.0.0-alpha.1`
3209
+ ### `@mui/x-date-pickers@6.0.0-alpha.1` / `@mui/x-date-pickers-pro@6.0.0-alpha.1`
3092
3210
 
3093
3211
  #### Breaking changes
3094
3212
 
@@ -3160,7 +3278,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
3160
3278
  - 📚 Documentation improvements
3161
3279
  - 🐞 Bugfixes
3162
3280
 
3163
- ### `@mui/x-data-grid@v6.0.0-alpha.0` / `@mui/x-data-grid-pro@v6.0.0-alpha.0` / `@mui/x-data-grid-premium@v6.0.0-alpha.0`
3281
+ ### `@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`
3164
3282
 
3165
3283
  #### Breaking changes
3166
3284
 
@@ -3197,7 +3315,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
3197
3315
  - [DataGrid] Remove the `GridEvents` enum (#6003) @flaviendelangle
3198
3316
  - [DataGrid] Remove the deprecated `hide` column property (#5999) @flaviendelangle
3199
3317
 
3200
- ### `@mui/x-date-pickers@v6.0.0-alpha.0` / `@mui/x-date-pickers-pro@v6.0.0-alpha.0`
3318
+ ### `@mui/x-date-pickers@6.0.0-alpha.0` / `@mui/x-date-pickers-pro@6.0.0-alpha.0`
3201
3319
 
3202
3320
  #### Breaking changes
3203
3321