@mui/x-charts 6.0.0-alpha.1 → 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 (179) hide show
  1. package/BarChart/BarChart.d.ts +1 -4
  2. package/BarChart/BarChart.js +6 -3
  3. package/BarChart/BarPlot.js +42 -8
  4. package/BarChart/legend.d.ts +3 -0
  5. package/BarChart/legend.js +20 -0
  6. package/CHANGELOG.md +287 -107
  7. package/ChartContainer/index.d.ts +3 -1
  8. package/ChartContainer/index.js +10 -6
  9. package/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  10. package/ChartsLegend/ChartsLegend.d.ts +5 -1
  11. package/ChartsLegend/ChartsLegend.js +5 -1
  12. package/ChartsLegend/utils.d.ts +1 -1
  13. package/ChartsLegend/utils.js +12 -1
  14. package/ChartsTooltip/ChartsAxisTooltipContent.js +1 -1
  15. package/ChartsTooltip/ChartsItemTooltipContent.js +11 -2
  16. package/LineChart/LineChart.d.ts +1 -4
  17. package/LineChart/LineChart.js +6 -3
  18. package/LineChart/legend.d.ts +3 -0
  19. package/LineChart/legend.js +20 -0
  20. package/PieChart/PieArc.d.ts +36 -0
  21. package/PieChart/PieArc.js +128 -0
  22. package/PieChart/PieArcLabel.d.ts +36 -0
  23. package/PieChart/PieArcLabel.js +113 -0
  24. package/PieChart/PieChart.d.ts +20 -0
  25. package/PieChart/PieChart.js +292 -0
  26. package/PieChart/PiePlot.d.ts +2 -0
  27. package/PieChart/PiePlot.js +98 -0
  28. package/PieChart/formatter.d.ts +3 -0
  29. package/PieChart/formatter.js +49 -0
  30. package/PieChart/index.d.ts +4 -0
  31. package/PieChart/index.js +47 -0
  32. package/PieChart/legend.d.ts +3 -0
  33. package/PieChart/legend.js +19 -0
  34. package/PieChart/package.json +6 -0
  35. package/README.md +2 -2
  36. package/ResponsiveChartContainer/index.d.ts +1 -1
  37. package/ResponsiveChartContainer/index.js +22 -9
  38. package/ScatterChart/Scatter.d.ts +1 -1
  39. package/ScatterChart/Scatter.js +1 -1
  40. package/ScatterChart/ScatterChart.d.ts +1 -4
  41. package/ScatterChart/ScatterChart.js +6 -3
  42. package/ScatterChart/legend.d.ts +3 -0
  43. package/ScatterChart/legend.js +20 -0
  44. package/context/CartesianContextProvider.js +31 -20
  45. package/context/SeriesContextProvider.js +11 -1
  46. package/esm/BarChart/BarChart.js +4 -2
  47. package/esm/BarChart/BarPlot.js +44 -8
  48. package/esm/BarChart/legend.js +13 -0
  49. package/esm/ChartContainer/index.js +7 -5
  50. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  51. package/esm/ChartsLegend/ChartsLegend.js +5 -1
  52. package/esm/ChartsLegend/utils.js +11 -1
  53. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +1 -1
  54. package/esm/ChartsTooltip/ChartsItemTooltipContent.js +11 -3
  55. package/esm/LineChart/LineChart.js +4 -2
  56. package/esm/LineChart/legend.js +13 -0
  57. package/esm/PieChart/PieArc.js +117 -0
  58. package/esm/PieChart/PieArcLabel.js +101 -0
  59. package/esm/PieChart/PieChart.js +285 -0
  60. package/esm/PieChart/PiePlot.js +92 -0
  61. package/esm/PieChart/formatter.js +48 -0
  62. package/esm/PieChart/index.js +4 -0
  63. package/esm/PieChart/legend.js +12 -0
  64. package/esm/ResponsiveChartContainer/index.js +20 -8
  65. package/esm/ScatterChart/Scatter.js +1 -1
  66. package/esm/ScatterChart/ScatterChart.js +4 -2
  67. package/esm/ScatterChart/legend.js +13 -0
  68. package/esm/context/CartesianContextProvider.js +31 -18
  69. package/esm/context/SeriesContextProvider.js +11 -1
  70. package/esm/hooks/index.js +2 -0
  71. package/esm/hooks/useAxisEvents.js +12 -7
  72. package/esm/hooks/useDrawingArea.js +16 -0
  73. package/esm/hooks/useScale.js +19 -21
  74. package/esm/hooks/useTicks.js +26 -13
  75. package/esm/index.js +2 -0
  76. package/esm/internals/defaultizeColor.js +7 -0
  77. package/esm/internals/getScale.js +17 -0
  78. package/esm/internals/isBandScale.js +3 -0
  79. package/esm/models/axis.js +6 -1
  80. package/esm/models/seriesType/index.js +1 -8
  81. package/hooks/index.d.ts +2 -0
  82. package/hooks/index.js +27 -0
  83. package/hooks/package.json +6 -0
  84. package/hooks/useAxisEvents.js +14 -9
  85. package/hooks/useDrawingArea.d.ts +6 -0
  86. package/hooks/useDrawingArea.js +24 -0
  87. package/hooks/useScale.d.ts +3 -6
  88. package/hooks/useScale.js +24 -24
  89. package/hooks/useTicks.d.ts +1 -1
  90. package/hooks/useTicks.js +19 -9
  91. package/index.d.ts +2 -0
  92. package/index.js +23 -1
  93. package/internals/defaultizeColor.d.ts +35 -0
  94. package/internals/defaultizeColor.js +7 -0
  95. package/internals/getScale.d.ts +2 -0
  96. package/internals/getScale.js +23 -0
  97. package/internals/isBandScale.d.ts +3 -0
  98. package/internals/isBandScale.js +9 -0
  99. package/legacy/BarChart/BarChart.js +4 -2
  100. package/legacy/BarChart/BarPlot.js +44 -10
  101. package/legacy/BarChart/legend.js +15 -0
  102. package/legacy/ChartContainer/index.js +7 -5
  103. package/legacy/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  104. package/legacy/ChartsLegend/ChartsLegend.js +5 -1
  105. package/legacy/ChartsLegend/utils.js +12 -6
  106. package/legacy/ChartsTooltip/ChartsAxisTooltipContent.js +3 -1
  107. package/legacy/ChartsTooltip/ChartsItemTooltipContent.js +10 -3
  108. package/legacy/LineChart/LineChart.js +4 -2
  109. package/legacy/LineChart/legend.js +15 -0
  110. package/legacy/PieChart/PieArc.js +118 -0
  111. package/legacy/PieChart/PieArcLabel.js +101 -0
  112. package/legacy/PieChart/PieChart.js +297 -0
  113. package/legacy/PieChart/PiePlot.js +89 -0
  114. package/legacy/PieChart/formatter.js +55 -0
  115. package/legacy/PieChart/index.js +4 -0
  116. package/legacy/PieChart/legend.js +16 -0
  117. package/legacy/ResponsiveChartContainer/index.js +18 -8
  118. package/legacy/ScatterChart/Scatter.js +1 -1
  119. package/legacy/ScatterChart/ScatterChart.js +4 -2
  120. package/legacy/ScatterChart/legend.js +15 -0
  121. package/legacy/context/CartesianContextProvider.js +31 -18
  122. package/legacy/context/SeriesContextProvider.js +11 -1
  123. package/legacy/hooks/index.js +2 -0
  124. package/legacy/hooks/useAxisEvents.js +12 -7
  125. package/legacy/hooks/useDrawingArea.js +17 -0
  126. package/legacy/hooks/useScale.js +17 -21
  127. package/legacy/hooks/useTicks.js +26 -13
  128. package/legacy/index.js +3 -1
  129. package/legacy/internals/defaultizeColor.js +9 -0
  130. package/legacy/internals/getScale.js +17 -0
  131. package/legacy/internals/isBandScale.js +3 -0
  132. package/legacy/models/axis.js +6 -1
  133. package/legacy/models/seriesType/index.js +1 -8
  134. package/models/axis.d.ts +25 -12
  135. package/models/axis.js +9 -1
  136. package/models/seriesType/bar.d.ts +1 -1
  137. package/models/seriesType/common.d.ts +1 -1
  138. package/models/seriesType/config.d.ts +29 -2
  139. package/models/seriesType/index.d.ts +7 -3
  140. package/models/seriesType/index.js +11 -0
  141. package/models/seriesType/line.d.ts +1 -1
  142. package/models/seriesType/pie.d.ts +103 -3
  143. package/models/seriesType/scatter.d.ts +1 -1
  144. package/modern/BarChart/BarChart.js +4 -2
  145. package/modern/BarChart/BarPlot.js +44 -8
  146. package/modern/BarChart/legend.js +13 -0
  147. package/modern/ChartContainer/index.js +7 -5
  148. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
  149. package/modern/ChartsLegend/ChartsLegend.js +5 -1
  150. package/modern/ChartsLegend/utils.js +11 -1
  151. package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +1 -1
  152. package/modern/ChartsTooltip/ChartsItemTooltipContent.js +11 -2
  153. package/modern/LineChart/LineChart.js +4 -2
  154. package/modern/LineChart/legend.js +13 -0
  155. package/modern/PieChart/PieArc.js +116 -0
  156. package/modern/PieChart/PieArcLabel.js +101 -0
  157. package/modern/PieChart/PieChart.js +285 -0
  158. package/modern/PieChart/PiePlot.js +91 -0
  159. package/modern/PieChart/formatter.js +41 -0
  160. package/modern/PieChart/index.js +4 -0
  161. package/modern/PieChart/legend.js +12 -0
  162. package/modern/ResponsiveChartContainer/index.js +20 -8
  163. package/modern/ScatterChart/Scatter.js +1 -1
  164. package/modern/ScatterChart/ScatterChart.js +4 -2
  165. package/modern/ScatterChart/legend.js +13 -0
  166. package/modern/context/CartesianContextProvider.js +29 -18
  167. package/modern/context/SeriesContextProvider.js +11 -1
  168. package/modern/hooks/index.js +2 -0
  169. package/modern/hooks/useAxisEvents.js +12 -7
  170. package/modern/hooks/useDrawingArea.js +16 -0
  171. package/modern/hooks/useScale.js +19 -21
  172. package/modern/hooks/useTicks.js +18 -8
  173. package/modern/index.js +3 -1
  174. package/modern/internals/defaultizeColor.js +7 -0
  175. package/modern/internals/getScale.js +17 -0
  176. package/modern/internals/isBandScale.js +3 -0
  177. package/modern/models/axis.js +6 -1
  178. package/modern/models/seriesType/index.js +1 -8
  179. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,138 @@
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
+
65
+ ## 6.9.2
66
+
67
+ _Jul 6, 2023_
68
+
69
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
70
+
71
+ - 🚀 Auto-scroll when making range selection (#8661) @m4theushw
72
+
73
+ - 📚 New page: Components lifecycle (#8372) @flaviendelangle
74
+
75
+ Clarify pickers events and value updates in a [single docs page](https://mui.com/x/react-date-pickers/lifecycle/).
76
+
77
+ - 🥧 Add pie chart component
78
+
79
+ 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/).
80
+
81
+ <img width="380" alt="pie-charts" src="https://github.com/mui/mui-x/assets/13808724/fe908c45-803c-4316-b913-dbd2f9f0551e">
82
+
83
+ - 🐞 Bugfixes
84
+
85
+ - 📚 Documentation improvements
86
+
87
+ ### Data Grid
88
+
89
+ #### `@mui/x-data-grid@6.9.2`
90
+
91
+ - [DataGrid] Fix `RangeError` when using flex columns (#9554) @cherniavskii
92
+ - [DataGrid] Fix React 17 editing bug (#9530) @romgrk
93
+ - [DataGrid] Use `getRowId` in filtering (#9564) @romgrk
94
+ - [DataGrid] Correctly reflect `TablePagination`'s `rowsPerPageOptions` shape to `pageSizeOptions` (#9438) @burakkgunduzz
95
+ - [l10n] Improve Spanish (es-ES) locale (#9500) @fufex
96
+
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)
98
+
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`
110
+
111
+ - [pickers] Forward digital clock classes (#9555) @YoonjiJang
112
+ - [pickers] Rename `internal` folder to `internals` on `@mui/x-date-picker-pro` (#9571) @flaviendelangle
113
+
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)
115
+
116
+ Same changes as in `@mui/x-date-pickers@6.9.2`.
117
+
118
+ ### Charts / `@mui/x-charts@6.0.0-alpha.2`
119
+
120
+ - [charts] Add pie chart component (#9395) @alexfauquette
121
+
122
+ ### Docs
123
+
124
+ - [docs] Add pickers playground (#9164) @LukasTy
125
+ - [docs] Fix API links for pickers (#9573) @alexfauquette
126
+ - [docs] Fix demos with `ToggleButtonGroup` (#9548) @flaviendelangle
127
+ - [docs] Fix typos in pagination documentation page (#9332) @RatherBeLunar
128
+ - [docs] Hide ads on paid content @oliviertassinari
129
+ - [docs] Move the charts in the sidebar (#9437) @flaviendelangle
130
+ - [docs] New page: Components lifecycle (#8372) @flaviendelangle
131
+ - [docs] Remove outdated header tag @oliviertassinari
132
+
133
+ ### Core
134
+
135
+ - [core] Fix typo in priority support @oliviertassinari
136
+ - [core] Remove mention of Crowdin @oliviertassinari
137
+
6
138
  ## 6.9.1
7
139
 
8
140
  _Jun 30, 2023_
@@ -15,9 +147,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
15
147
  - 🐞 Bugfixes
16
148
  - 📚 Documentation improvements
17
149
 
18
- ### `@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
19
151
 
20
- #### Changes
152
+ #### `@mui/x-data-grid@6.9.1`
21
153
 
22
154
  - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
23
155
  - [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
@@ -25,13 +157,22 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
25
157
  - [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
26
158
  - [DataGrid] Fix `nextFieldToFocus` to always be a visible column field when <kbd>Tab</kbd> key is pressed (#8314) @yaredtsy
27
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
+
28
166
  - [DataGridPro] Don't throw error in column pinning (#9507) @romgrk
29
167
  - [DataGridPro] Fix bug with `checkboxSelection` and treeData/grouping (#9418) @romgrk
30
- - [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
31
168
 
32
- ### `@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)
33
170
 
34
- #### 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`
35
176
 
36
177
  - [DateTimePicker] Scroll to Digital Clock section only when selection changes (#9434) @LukasTy
37
178
  - [pickers] Handle `keyDown` only when input is focused (#9481) @LukasTy
@@ -39,9 +180,11 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
39
180
  - [l10n] Add Chinese (Hong Kong) (zh-HK) locale (#9468) @samchiu90
40
181
  - [l10n] Improve Romanian (ro-RO) translations (#9436) @noraleonte
41
182
 
42
- ### `@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)
43
184
 
44
- #### Changes
185
+ Same changes as in `@mui/x-date-pickers@6.9.1`.
186
+
187
+ ### Charts / `@mui/x-charts@6.0.0-alpha.1`
45
188
 
46
189
  - [charts] Take responsive container from data grid (#9497) @alexfauquette
47
190
  - [charts] Update README.md (#9426) @alexfauquette
@@ -93,17 +236,25 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
93
236
  - 🐞 Bugfixes
94
237
  - 📚 Documentation improvements
95
238
 
96
- ### `@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
97
240
 
98
- #### Changes
241
+ #### `@mui/x-data-grid@6.9.0`
99
242
 
100
243
  - [DataGrid] Filtering performance: use unmemoized selectors by default (#9287) @romgrk
101
244
  - [DataGrid] Use container dimensions from `getComputedStyle` (#9236) @m4theushw
102
245
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#9404) @julioAz
103
246
 
104
- ### `@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)
105
248
 
106
- #### 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`
107
258
 
108
259
  - [fields] Ensure `minutesStep` is respected by fields arrows up/down (#9338) @alexfauquette
109
260
  - [fields] Reset internal state when `referenceValue` changes (#9390) @adrianmxb
@@ -113,9 +264,11 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
113
264
  - [pickers] Reduce date range calendar vertical border width (#9368) @oliviertassinari
114
265
  - [pickers] Reset fields internal state when pasting value (#9385) @alexfauquette
115
266
 
116
- ### `@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)
117
268
 
118
- #### Changes
269
+ Same changes as in `@mui/x-date-pickers@6.9.0`.
270
+
271
+ ### Charts / `@mui/x-charts@6.0.0-alpha.0`
119
272
 
120
273
  - [charts] Allow to customize colors based on the theme mode (#9006) @alexfauquette
121
274
  - [charts] Prepare the charts release (#9361) @alexfauquette
@@ -151,9 +304,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
151
304
  - 🐞 Bugfixes
152
305
  - 📚 Documentation improvements
153
306
 
154
- ### `@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
155
308
 
156
- #### Changes
309
+ #### `@mui/x-data-grid@6.8.0`
157
310
 
158
311
  - [DataGrid] Add missing styles to `overridesResolver` (#9248) @mrmuhammadali
159
312
  - [DataGrid] Keep column header menu icon always visible on touch devices (#9076) @cherniavskii
@@ -167,15 +320,27 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
167
320
  - [DataGrid] Scroll performance improvements (#9037) @romgrk
168
321
  - [l10n] Improve Greek (el-GR) locale (#9292) @clytras
169
322
 
170
- ### `@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)
171
324
 
172
- #### 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`
173
334
 
174
335
  - [l10n] Add Greek (el-GR) locale (#9293) @clytras
175
336
  - [pickers] Add a `referenceDate` prop on `DateCalendar`, `MonthCalendar` and `YearCalendar` (#9260) @flaviendelangle
176
337
  - [pickers] Close the calendar when a shortcut is selected (#9080) @flaviendelangle
177
338
  - [pickers] Fix disabling for digital clock (#9300) @alexfauquette
178
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
+
179
344
  ### Docs
180
345
 
181
346
  - [docs] Add header filters to the popular features demo (#9069) @MBilalShafi
@@ -233,9 +398,9 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
233
398
  - 🐞 Bugfixes
234
399
  - 📚 Documentation improvements
235
400
 
236
- ### `@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
237
402
 
238
- #### Changes
403
+ #### `@mui/x-data-grid@6.7.0`
239
404
 
240
405
  - [DataGrid] Allow overflowing grid root element (#9179) @cherniavskii
241
406
  - [DataGrid] Fix module augmentation error when using `@mui/lab` (#9235) @cherniavskii
@@ -244,19 +409,34 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
244
409
  - [DataGrid] Improve grouping performance for large datasets (#9200) @romgrk
245
410
  - [DataGrid] Increase threshold to trigger memory leak warning (#9263) @m4theushw
246
411
  - [DataGrid] Update data grid migration guide to include updated type (#9272) @MBilalShafi
247
- - [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
248
- - [DataGridPremium] Remove last line break on clipboard paste (#9163) @cherniavskii
249
412
  - [l10n] Improve Czech (cs-CZ) locale (#9266) @MartinSkarpa
250
413
  - [l10n] Improve German (de-DE) locale (#9259) @ximex
251
414
  - [l10n] Improve Turkish (tr-TR) locale (#9237) @MCErtan
252
415
 
253
- ### `@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)
254
417
 
255
- #### 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`
256
431
 
257
432
  - [l10n] Add Romanian (ro-RO) locale (#9257) @ximex
258
433
  - [l10n] Improve German (de-DE) locale (#9258) @ximex
259
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
+
260
440
  - [pickers] Update `DateRangePickerDay` props JSDoc (#9191) @stevus
261
441
 
262
442
  ### Docs
@@ -290,7 +470,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
290
470
  - 🌍 Improve Dutch (nl-NL) and French (fr-FR) locales on the data grid
291
471
  - 🌍 Add Vietnamese (vi-VN) locale on the pickers
292
472
 
293
- ### `@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`
294
474
 
295
475
  #### Changes
296
476
 
@@ -308,7 +488,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
308
488
  - [l10n] Improve Dutch (nl-NL) locale (#9043) @thedutchruben
309
489
  - [l10n] Improve French (fr-FR) locale (#9109) @Jul13nT
310
490
 
311
- ### `@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`
312
492
 
313
493
  #### Changes
314
494
 
@@ -423,7 +603,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
423
603
  - 🐞 Bugfixes
424
604
  - 📚 Documentation improvements
425
605
 
426
- ### `@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`
427
607
 
428
608
  #### Changes
429
609
 
@@ -433,12 +613,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
433
613
  - [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
434
614
  - [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
435
615
  - [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
436
- - [l10n] Improve French (fr-FR) locale (#8825) @vallereaugabriel
616
+ - [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
437
617
  - [l10n] Improve German (de-DE) locale (#8898) @marcauberer
438
618
  - [l10n] Improve Portuguese (pt-BR) locale (#8960) @Sorriso337
439
619
  - [l10n] Improve Ukrainian (uk-UA) locale (#8863) @Neonin
440
620
 
441
- ### `@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`
442
622
 
443
623
  #### Changes
444
624
 
@@ -472,7 +652,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
472
652
  - 🐞 Bugfixes
473
653
  - 📚 Documentation improvements
474
654
 
475
- ### `@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`
476
656
 
477
657
  #### Changes
478
658
 
@@ -483,7 +663,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
483
663
  - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
484
664
  - [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
485
665
 
486
- ### `@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`
487
667
 
488
668
  #### Changes
489
669
 
@@ -524,7 +704,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
524
704
  - 🐞 Bugfixes
525
705
  - 📚 Documentation improvements
526
706
 
527
- ### `@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`
528
708
 
529
709
  #### Changes
530
710
 
@@ -539,7 +719,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
539
719
  - [l10n] Improve French (fr-FR) locale (#8704) @Jul13nT
540
720
  - [l10n] Improve Turkish (tr-TR) locale (#8783) @cccaaannn
541
721
 
542
- ### `@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`
543
723
 
544
724
  #### Changes
545
725
 
@@ -588,7 +768,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
588
768
  - 🐞 Bugfixes
589
769
  - 📚 Documentation improvements
590
770
 
591
- ### `@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`
592
772
 
593
773
  #### Changes
594
774
 
@@ -599,14 +779,14 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
599
779
  - [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw
600
780
  - [DataGridPro] Virtualize row detail panels (#7969) @yaredtsy
601
781
 
602
- ### `@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`
603
783
 
604
784
  #### Changes
605
785
 
606
786
  - [pickers] Do not include the time in date components when going to today (#8657) @flaviendelangle
607
787
  - [pickers] Sync internal state with controlled value (#8674) @alexfauquette
608
788
 
609
- ### `@mui/x-codemod@v6.2.1`
789
+ ### `@mui/x-codemod@6.2.1`
610
790
 
611
791
  #### Changes
612
792
 
@@ -646,16 +826,16 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
646
826
  - 🐞 Bugfixes
647
827
  - 📚 Documentation improvements
648
828
 
649
- ### `@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`
650
830
 
651
831
  #### Changes
652
832
 
653
833
  - [DataGrid] Reset selection state on `checkboxSelection` toggle (#8522) @MBilalShafi
654
834
  - [DataGrid] Use `baseSelect` slot instead of `baseTextField` with `select={true}` (#8110) @cherniavskii
655
- - [l10n] Improve French (fr-FR) locale (#8537) @vallereaugabriel
835
+ - [l10n] Improve French (fr-FR) locale (#8537) @allereaugabriel
656
836
  - [l10n] Improve Urdu (ur-PK) locale (#8513) @SFARPak
657
837
 
658
- ### `@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`
659
839
 
660
840
  #### Changes
661
841
 
@@ -689,7 +869,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
689
869
  - 🐞 Bugfixes
690
870
  - 📚 Documentation improvements
691
871
 
692
- ### `@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`
693
873
 
694
874
  #### Changes
695
875
 
@@ -704,7 +884,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
704
884
  - [l10n] Improve Portuguese (pt-BR) locale (#8480) @pwnedev
705
885
  - [l10n] Improve Russian (ru-RU) locale (#8510) @alexrapro
706
886
 
707
- ### `@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`
708
888
 
709
889
  #### Changes
710
890
 
@@ -746,7 +926,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
746
926
  - 🐞 Bugfixes
747
927
  - 📚 Documentation improvements
748
928
 
749
- ### `@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`
750
930
 
751
931
  #### Changes
752
932
 
@@ -764,7 +944,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
764
944
  - [l10n] Improve Spanish (es-ES) locale (#8420) @martjanz
765
945
  - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
766
946
 
767
- ### `@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`
768
948
 
769
949
  #### Changes
770
950
 
@@ -780,7 +960,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
780
960
  - [l10n] Add Danish (da-DK) locale (#8379) @BossElijah
781
961
  - [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
782
962
 
783
- ### `@mui/x-codemod@v6.0.4`
963
+ ### `@mui/x-codemod@6.0.4`
784
964
 
785
965
  #### Changes
786
966
 
@@ -807,7 +987,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
807
987
  - 🐞 Bugfixes
808
988
  - 📚 Documentation improvements
809
989
 
810
- ### `@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`
811
991
 
812
992
  #### Changes
813
993
 
@@ -817,7 +997,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
817
997
  - [l10n] Improve Persian (fa-IR) locale (#8268) @fakhamatia
818
998
  - [l10n] improve Dutch (nl-NL) locale (#8317) @developenguin
819
999
 
820
- ### `@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`
821
1001
 
822
1002
  #### Changes
823
1003
 
@@ -864,7 +1044,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
864
1044
  - 📚 Documentation improvements
865
1045
  - 🐞 Bugfixes
866
1046
 
867
- ### `@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`
868
1048
 
869
1049
  #### Changes
870
1050
 
@@ -872,7 +1052,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
872
1052
  - [DataGrid] Remove warning when adding a custom column type (#8227) @m4theushw
873
1053
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#8198) @JoaoSerafim3001
874
1054
 
875
- ### `@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`
876
1056
 
877
1057
  #### Changes
878
1058
 
@@ -914,7 +1094,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
914
1094
  - 📚 Documentation improvements
915
1095
  - 🐞 Bugfixes
916
1096
 
917
- ### `@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`
918
1098
 
919
1099
  #### Changes
920
1100
 
@@ -922,7 +1102,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
922
1102
  - [DataGrid] Simplify `buildPrintWindow` (#8142) @oliviertassinari
923
1103
  - [l10n] Improve French (fr-FR) locale (#8122) @MaherSamiGMC
924
1104
 
925
- ### `@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`
926
1106
 
927
1107
  #### Changes
928
1108
 
@@ -973,7 +1153,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
973
1153
  - 📚 Documentation improvements
974
1154
  - 🐞 Bugfixes
975
1155
 
976
- ### `@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`
977
1157
 
978
1158
  #### Breaking changes
979
1159
 
@@ -996,7 +1176,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
996
1176
  - [l10n] Improve Czech (cs-CZ) locale (#8113) @BlastyCZ
997
1177
  - [l10n] Improve Arabic (ar-SD) locale (#8100) @atf98
998
1178
 
999
- ### `@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`
1000
1180
 
1001
1181
  #### Breaking changes
1002
1182
 
@@ -1054,7 +1234,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1054
1234
  - 📚 Documentation improvements
1055
1235
  - 🐞 Bugfixes
1056
1236
 
1057
- ### `@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`
1058
1238
 
1059
1239
  #### Changes
1060
1240
 
@@ -1064,7 +1244,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1064
1244
  - [DataGridPro] Add `Remove All` option in filter panel (#7326) @MBilalShafi
1065
1245
  - [DataGridPremium] Add web worker support for Excel export (#7770) @m4theushw
1066
1246
 
1067
- ### `@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`
1068
1248
 
1069
1249
  #### Breaking changes
1070
1250
 
@@ -1079,7 +1259,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1079
1259
  - [fields] Clean the section object (#8009) @flaviendelangle
1080
1260
  - [pickers] Fix `textField` slot `error` prop propagation (#7987) @LukasTy
1081
1261
 
1082
- ### `@mui/x-codemod@v6.0.0-beta.5`
1262
+ ### `@mui/x-codemod@6.0.0-beta.5`
1083
1263
 
1084
1264
  #### Changes
1085
1265
 
@@ -1106,17 +1286,17 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1106
1286
  - 📚 Documentation improvements
1107
1287
  - 🐞 Bugfixes
1108
1288
 
1109
- ### `@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`
1110
1290
 
1111
1291
  #### Changes
1112
1292
 
1113
1293
  - [DataGrid] Add interface for `singleSelect` column (#7685) @m4theushw
1114
- - [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
1115
1295
  - [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7857) @cherniavskii
1116
1296
  - [DataGridPro] Change cursor when dragging a column (#7725) @sai6855
1117
1297
  - [DataGridPremium] Fix `leafField` to have correct focus value (#7950) @MBilalShafi
1118
1298
 
1119
- ### `@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`
1120
1300
 
1121
1301
  #### Changes
1122
1302
 
@@ -1125,7 +1305,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1125
1305
  - [fields] Support escaped characters on `Luxon` (#7888) @flaviendelangle
1126
1306
  - [pickers] Prepare new pickers for custom fields (#7806) @flaviendelangle
1127
1307
 
1128
- ### `@mui/x-codemod@v6.0.0-beta.4`
1308
+ ### `@mui/x-codemod@6.0.0-beta.4`
1129
1309
 
1130
1310
  #### Changes
1131
1311
 
@@ -1155,7 +1335,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1155
1335
  - 📚 Documentation improvements
1156
1336
  - 🐞 Bugfixes
1157
1337
 
1158
- ### `@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`
1159
1339
 
1160
1340
  #### Changes
1161
1341
 
@@ -1167,7 +1347,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1167
1347
  - [DataGrid] Improve query selectors for selecting cell element (#7354) @yaredtsy
1168
1348
  - [l10n] Improve Brazilian Portuguese (pt-BR) locale (#7854) @ed-ateixeira
1169
1349
 
1170
- ### `@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`
1171
1351
 
1172
1352
  #### Changes
1173
1353
 
@@ -1179,7 +1359,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1179
1359
  - [pickers] Ditch pickers `skipLibCheck` (#7808) @LukasTy
1180
1360
  - [pickers] Improve JSDoc and resulting API docs pages (#7847) @LukasTy
1181
1361
 
1182
- ### `@mui/x-codemod@v6.0.0-beta.3`
1362
+ ### `@mui/x-codemod@6.0.0-beta.3`
1183
1363
 
1184
1364
  #### Changes
1185
1365
 
@@ -1213,7 +1393,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1213
1393
  - 📚 Documentation improvements
1214
1394
  - 🐞 Bug fixes
1215
1395
 
1216
- ### `@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`
1217
1397
 
1218
1398
  #### Changes
1219
1399
 
@@ -1221,20 +1401,20 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
1221
1401
  - [DataGrid] Merge row styles with `componentsProps.row.style` (#7641) @marktoman
1222
1402
  - [l10n] Add Hungarian (hu-HU) locale (#7776) @noherczeg
1223
1403
  - [l10n] Add Urdu (ur-PK) locale (#6866) @MBilalShafi
1224
- - [l10n] Improve French (fr-FR) locale (#7777) @Vivek-Prajapatii
1404
+ - [l10n] Improve French (fr-FR) locale (#7777) @ivek-Prajapatii
1225
1405
  - [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
1226
1406
 
1227
- ### `@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`
1228
1408
 
1229
1409
  #### Changes
1230
1410
 
1231
1411
  - [fields] Support week day formats (#7392) @flaviendelangle
1232
1412
  - [pickers] Allow to initialize and control the `rangePosition` on all range components (#7764) @flaviendelangle
1233
1413
  - [pickers] Fix theme augmentation (#7800) @LukasTy
1234
- - [pickers] Hide scrollbars in the date calendar container (#7766) @Vivek-Prajapatii
1414
+ - [pickers] Hide scrollbars in the date calendar container (#7766) @ivek-Prajapatii
1235
1415
  - [pickers] Remove the dependency on `rifm` (#7785) @alexfauquette
1236
1416
 
1237
- ### `@mui/x-codemod@v6.0.0-beta.2`
1417
+ ### `@mui/x-codemod@6.0.0-beta.2`
1238
1418
 
1239
1419
  #### Changes
1240
1420
 
@@ -1267,7 +1447,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1267
1447
  - 📚 Documentation improvements
1268
1448
  - 🐞 Bug fixes
1269
1449
 
1270
- ### `@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`
1271
1451
 
1272
1452
  #### Changes
1273
1453
 
@@ -1279,9 +1459,9 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1279
1459
  - [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7702) @msidlo
1280
1460
  - [l10n] Add missing core locales for `MuiTablePagination` (#7717) @MBilalShafi
1281
1461
  - [l10n] Improve Spanish (es-ES) and Vietnamese (vi-VN) locale (#7634) @WiXSL and @SpacerZ
1282
- - [l10n] Add Belarusian (be-BY) locale (#7646) @volhalink
1462
+ - [l10n] Add Belarusian (be-BY) locale (#7646) @olhalink
1283
1463
 
1284
- ### `@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`
1285
1465
 
1286
1466
  #### Changes
1287
1467
 
@@ -1293,7 +1473,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1293
1473
  - [l10n] Add Russian (ru-RU) locale (#7706) @rstmzh
1294
1474
  - [l10n] Improve Japanese (ja-JP) locale (#7624) @makoto14
1295
1475
 
1296
- ### `@mui/x-codemod@v6.0.0-beta.1`
1476
+ ### `@mui/x-codemod@6.0.0-beta.1`
1297
1477
 
1298
1478
  #### Changes
1299
1479
 
@@ -1310,7 +1490,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
1310
1490
 
1311
1491
  ### Docs
1312
1492
 
1313
- - [docs] Add info callout about available component `slots` (#7714) @Vivek-Prajapatii
1493
+ - [docs] Add info callout about available component `slots` (#7714) @ivek-Prajapatii
1314
1494
  - [docs] Add recipe for pinning grouped column (#7712) @MBilalShafi
1315
1495
  - [docs] Fix 404 links to picker API page @oliviertassinari
1316
1496
  - [docs] Update `DemoContainer` `components` prop using a codemod (#7574) @alexfauquette
@@ -1349,7 +1529,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1349
1529
  - 📚 Documentation improvements
1350
1530
  - 🐞 Bug fixes
1351
1531
 
1352
- ### `@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`
1353
1533
 
1354
1534
  #### Breaking changes
1355
1535
 
@@ -1456,7 +1636,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1456
1636
  - [DataGridPremium] Keep focus on first selected cell (#7482) @m4theushw
1457
1637
  - [l10n] Update Swedish (sv-SE) locale (#7585) @MaanTyringe
1458
1638
 
1459
- ### `@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`
1460
1640
 
1461
1641
  #### Breaking changes
1462
1642
 
@@ -1515,7 +1695,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1515
1695
  - [pickers] Stop using the `WrapperVariantContext` in `DateRangeCalendar` (#7488) @flaviendelangle
1516
1696
  - [l10n] Improve Italian (it-IT) locale (#7582) @marikadeveloper
1517
1697
 
1518
- ### `@mui/x-codemod@v6.0.0-beta.0`
1698
+ ### `@mui/x-codemod@6.0.0-beta.0`
1519
1699
 
1520
1700
  #### Changes
1521
1701
 
@@ -1547,7 +1727,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
1547
1727
  - 📚 Documentation improvements
1548
1728
  - 🐞 Bugfixes
1549
1729
 
1550
- ### `@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`
1551
1731
 
1552
1732
  #### Breaking changes
1553
1733
 
@@ -1666,7 +1846,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
1666
1846
  #### Changes
1667
1847
 
1668
1848
  - [fields] Fix Android editing (#7444) @flaviendelangle
1669
- - [pickers] Add Belarusian (be-BY) locale (#7395) @volhalink
1849
+ - [pickers] Add Belarusian (be-BY) locale (#7395) @olhalink
1670
1850
  - [pickers] Hide am/pm controls when there is no hour view (#7380) @flaviendelangle
1671
1851
  - [pickers] Hide the tabs by default on `DesktopNextDateTimePicker` (#7503) @flaviendelangle
1672
1852
  - [pickers] Refactor `shouldDisableTime` (#7299) @LukasTy
@@ -1705,7 +1885,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1705
1885
  - 📚 Many documentation improvements
1706
1886
  - 🐞 Bugfixes
1707
1887
 
1708
- ### `@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`
1709
1889
 
1710
1890
  #### Breaking changes
1711
1891
 
@@ -1722,7 +1902,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1722
1902
  - [DataGrid] Remove remaining props from legacy editing API (#7381) @m4theushw
1723
1903
  - [DataGrid] Set default `GridCellParams['value']` type to `unknown` (#6959) @cherniavskii
1724
1904
 
1725
- ### `@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`
1726
1906
 
1727
1907
  #### Breaking changes
1728
1908
 
@@ -1739,7 +1919,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1739
1919
  - [pickers] Remove the `PaperContent` slot from the new pickers (#7342) @flaviendelangle
1740
1920
  - [pickers] Use grid for modifying the layout (#6900) @alexfauquette
1741
1921
 
1742
- ### `@mui/x-codemod@v6.0.0-alpha.14`
1922
+ ### `@mui/x-codemod@6.0.0-alpha.14`
1743
1923
 
1744
1924
  #### Changes
1745
1925
 
@@ -1862,7 +2042,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
1862
2042
  - [DataGrid] Remove `GridDensityType` enum (#7304) @cherniavskii
1863
2043
  - [DataGrid] Remove `rowHeight` and `headerHeight` from state (#7199) @DanailH
1864
2044
  - [DataGrid] Remove column separator to match table styles (#7067) @MBilalShafi
1865
- - [DataGrid] Update Russian (ru-RU) locale (#7220) @VeceluXa
2045
+ - [DataGrid] Update Russian (ru-RU) locale (#7220) @eceluXa
1866
2046
  - [DataGridPro] Use row ID as `key` of the detail panels (#7302) @m4theushw
1867
2047
  - [DataGridPremium] Fix `exceljs` import with parcel (#7284) @alexfauquette
1868
2048
 
@@ -1931,7 +2111,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1931
2111
  - 📚 Documentation improvements
1932
2112
  - 🐞 Bugfixes
1933
2113
 
1934
- ### `@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`
1935
2115
 
1936
2116
  #### Breaking changes
1937
2117
 
@@ -1952,7 +2132,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
1952
2132
  - [DataGridPro] Fix missing border in right-pinned columns (#4197) @cherniavskii
1953
2133
  - [DataGridPro] Fix wrong border color on skeleton cells (#7202) @cherniavskii
1954
2134
 
1955
- ### `@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`
1956
2136
 
1957
2137
  #### Changes
1958
2138
 
@@ -1986,7 +2166,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
1986
2166
  - ✨ Fix lazy-loading feature not working in `DataGridPremium` (#7124) @m4theushw
1987
2167
  - 🐞 Bugfixes
1988
2168
 
1989
- ### `@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`
1990
2170
 
1991
2171
  #### Breaking changes
1992
2172
 
@@ -2001,7 +2181,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
2001
2181
  - [DataGridPremium] Add support for lazy-loading (#7124) @m4theushw
2002
2182
  - [DataGridPremium] Pass `groupId` to aggregation function (#7003) @m4theushw
2003
2183
 
2004
- ### `@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`
2005
2185
 
2006
2186
  #### Breaking changes
2007
2187
 
@@ -2098,7 +2278,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2098
2278
  - 📚 Documentation improvements
2099
2279
  - 🐞 Bugfixes
2100
2280
 
2101
- ### `@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`
2102
2282
 
2103
2283
  ### Breaking changes
2104
2284
 
@@ -2132,7 +2312,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2132
2312
  - [DataGridPremium] Use custom cell component for grouping cell by default (#6692) @cherniavskii
2133
2313
  - [l10n] Improve Ukrainian (uk-UA) locale (#7009) @rettoua
2134
2314
 
2135
- ### `@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`
2136
2316
 
2137
2317
  #### Breaking changes
2138
2318
 
@@ -2195,7 +2375,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
2195
2375
  - 📚 Documentation improvements
2196
2376
  - 🐞 Bugfixes
2197
2377
 
2198
- ### `@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`
2199
2379
 
2200
2380
  ### Breaking changes
2201
2381
 
@@ -2222,7 +2402,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
2222
2402
  - [DataGridPremium] Improve typing for theme in `styleOverrides` (#6920) @m4theushw
2223
2403
  - [l10n] Fix translation of `filterOperatorBefore` in Arabic (ar-SD) locale (#6884) @HassanGhazy
2224
2404
 
2225
- ### `@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`
2226
2406
 
2227
2407
  #### Changes
2228
2408
 
@@ -2266,12 +2446,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
2266
2446
  - 📚 Documentation improvements
2267
2447
  - 🐞 Bugfixes
2268
2448
 
2269
- ### `@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`
2270
2450
 
2271
2451
  #### Changes
2272
2452
 
2273
2453
  - [DataGrid] Fix `ErrorOverlay` not receiving defined input props (#6819) @banoth-ravinder
2274
- - [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
2275
2455
  - [DataGrid] Make more `apiRef` methods private (#6700) @cherniavskii
2276
2456
  - [DataGrid] Provide a clear error message when upgrading (#6685) @oliviertassinari
2277
2457
  - [DataGridPremium] Allow to customize the indent of group expansion toggle (#6837) @MBilalShafi
@@ -2280,7 +2460,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
2280
2460
  - [DataGridPro] Opt-out for column jump back on re-order (#6733) @gavbrennan
2281
2461
  - [l10n] Improve Finnish (fi-FI) locale (#6859) @RainoPikkarainen
2282
2462
 
2283
- ### `@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`
2284
2464
 
2285
2465
  #### Breaking changes
2286
2466
 
@@ -2336,14 +2516,14 @@ We'd like to offer a big thanks to the 5 contributors who made this release poss
2336
2516
  - 📚 Documentation improvements
2337
2517
  - 🐞 Bugfixes
2338
2518
 
2339
- ### `@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`
2340
2520
 
2341
2521
  #### Changes
2342
2522
 
2343
2523
  - [DataGrid] Fix cell focus causing scroll jump when virtualization enabled (#6785) @yaredtsy
2344
2524
  - [DataGrid] Remove items marked as `@deprecated` (#6505) @DanailH
2345
2525
 
2346
- ### `@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`
2347
2527
 
2348
2528
  #### Changes
2349
2529
 
@@ -2386,7 +2566,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2386
2566
  - 📚 Documentation improvements
2387
2567
  - 🐞 Bugfixes
2388
2568
 
2389
- ### `@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`
2390
2570
 
2391
2571
  #### Breaking changes
2392
2572
 
@@ -2401,7 +2581,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2401
2581
  - [DataGrid] Remove `disableIgnoreModificationsIfProcessingProps` prop (#6640) @m4theushw
2402
2582
  - [DataGrid] Separate private and public `apiRef` properties (#6388) @cherniavskii
2403
2583
 
2404
- ### `@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`
2405
2585
 
2406
2586
  #### Changes
2407
2587
 
@@ -2431,7 +2611,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2431
2611
  - 🎁 Allow to disable the autofocus of the search field when opening the column visibility panel (#6444) @e-cloud
2432
2612
  - 🐞 Bugfixes
2433
2613
 
2434
- ### `@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`
2435
2615
 
2436
2616
  #### Breaking changes
2437
2617
 
@@ -2455,7 +2635,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2455
2635
  - [DataGrid] Stop exporting `gridColumnsSelector` (#6693)
2456
2636
  - [l10n] Improve Bulgarian (bg-BG) locale (#6578) @AtanasVA
2457
2637
 
2458
- ### `@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`
2459
2639
 
2460
2640
  #### Breaking changes
2461
2641
 
@@ -2549,7 +2729,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2549
2729
  - 🐞 Bugfixes
2550
2730
  - 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2551
2731
 
2552
- ### `@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`
2553
2733
 
2554
2734
  #### Breaking changes
2555
2735
 
@@ -2575,7 +2755,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
2575
2755
  - [DataGrid] Rename selection props (#6556) @m4theushw
2576
2756
  - [l10n] Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
2577
2757
 
2578
- ### `@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`
2579
2759
 
2580
2760
  #### Breaking changes
2581
2761
 
@@ -2693,7 +2873,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2693
2873
  - 📚 Documentation improvements
2694
2874
  - 🐞 Bugfixes
2695
2875
 
2696
- ### `@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`
2697
2877
 
2698
2878
  #### Breaking changes
2699
2879
 
@@ -2727,7 +2907,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2727
2907
  - [DataGrid] Use generics instead of verbose state overrides (#6409) @cherniavskii
2728
2908
  - [DataGridPro] Allow to limit to one filter per column (#6333) @MBilalShafi
2729
2909
 
2730
- ### `@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`
2731
2911
 
2732
2912
  #### Breaking changes
2733
2913
 
@@ -2890,7 +3070,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2890
3070
  - 📚 Documentation improvements
2891
3071
  - 🐞 Bugfixes
2892
3072
 
2893
- ### `@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`
2894
3074
 
2895
3075
  #### Breaking changes
2896
3076
 
@@ -2915,7 +3095,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2915
3095
  - [DataGrid] Pass generics to the components in the theme augmentation (#6269) @cherniavskii
2916
3096
  - [DataGridPremium] Remove the aggregation from the experimental features (#6372) @flaviendelangle
2917
3097
 
2918
- ### `@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`
2919
3099
 
2920
3100
  #### Breaking changes
2921
3101
 
@@ -2966,7 +3146,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
2966
3146
  - 📚 Documentation improvements
2967
3147
  - 🐞 Bugfixes
2968
3148
 
2969
- ### `@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`
2970
3150
 
2971
3151
  #### Breaking changes
2972
3152
 
@@ -3026,7 +3206,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
3026
3206
  - [DataGrid] Improve print support (#6273) @oliviertassinari
3027
3207
  - [DataGridPremium] Add missing `themeAugmentation` module (#6270) @cherniavskii
3028
3208
 
3029
- ### `@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`
3030
3210
 
3031
3211
  #### Breaking changes
3032
3212
 
@@ -3098,7 +3278,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
3098
3278
  - 📚 Documentation improvements
3099
3279
  - 🐞 Bugfixes
3100
3280
 
3101
- ### `@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`
3102
3282
 
3103
3283
  #### Breaking changes
3104
3284
 
@@ -3135,7 +3315,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
3135
3315
  - [DataGrid] Remove the `GridEvents` enum (#6003) @flaviendelangle
3136
3316
  - [DataGrid] Remove the deprecated `hide` column property (#5999) @flaviendelangle
3137
3317
 
3138
- ### `@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`
3139
3319
 
3140
3320
  #### Breaking changes
3141
3321