@mui/x-charts 6.0.0-alpha.2 → 6.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/BarChart.d.ts +1 -4
- package/BarChart/BarChart.js +5 -3
- package/BarChart/BarPlot.js +42 -8
- package/CHANGELOG.md +301 -114
- package/ChartContainer/index.d.ts +3 -1
- package/ChartContainer/index.js +10 -6
- package/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
- package/LineChart/LineChart.d.ts +1 -4
- package/LineChart/LineChart.js +5 -3
- package/LineChart/extremums.js +2 -2
- package/ResponsiveChartContainer/index.d.ts +1 -1
- package/ResponsiveChartContainer/index.js +13 -11
- package/ScatterChart/Scatter.d.ts +1 -1
- package/ScatterChart/ScatterChart.d.ts +1 -4
- package/ScatterChart/ScatterChart.js +5 -3
- package/context/CartesianContextProvider.js +31 -20
- package/context/SeriesContextProvider.js +2 -2
- package/esm/BarChart/BarChart.js +3 -2
- package/esm/BarChart/BarPlot.js +44 -8
- package/esm/ChartContainer/index.js +7 -5
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
- package/esm/LineChart/LineChart.js +3 -2
- package/esm/LineChart/extremums.js +2 -2
- package/esm/ResponsiveChartContainer/index.js +11 -10
- package/esm/ScatterChart/ScatterChart.js +3 -2
- package/esm/context/CartesianContextProvider.js +31 -18
- package/esm/context/SeriesContextProvider.js +2 -2
- package/esm/hooks/index.js +2 -0
- package/esm/hooks/useAxisEvents.js +12 -7
- package/esm/hooks/useDrawingArea.js +16 -0
- package/esm/hooks/useScale.js +19 -21
- package/esm/hooks/useTicks.js +26 -13
- package/esm/index.js +1 -0
- package/esm/internals/getScale.js +17 -0
- package/esm/internals/isBandScale.js +3 -0
- package/esm/models/axis.js +6 -1
- package/hooks/index.d.ts +2 -0
- package/hooks/index.js +27 -0
- package/hooks/package.json +6 -0
- package/hooks/useAxisEvents.js +14 -9
- package/hooks/useDrawingArea.d.ts +6 -0
- package/hooks/useDrawingArea.js +24 -0
- package/hooks/useScale.d.ts +3 -6
- package/hooks/useScale.js +24 -24
- package/hooks/useTicks.d.ts +1 -1
- package/hooks/useTicks.js +19 -9
- package/index.d.ts +1 -0
- package/index.js +12 -1
- package/internals/getScale.d.ts +2 -0
- package/internals/getScale.js +23 -0
- package/internals/isBandScale.d.ts +3 -0
- package/internals/isBandScale.js +9 -0
- package/legacy/BarChart/BarChart.js +3 -2
- package/legacy/BarChart/BarPlot.js +44 -10
- package/legacy/ChartContainer/index.js +7 -5
- package/legacy/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
- package/legacy/LineChart/LineChart.js +3 -2
- package/legacy/LineChart/extremums.js +3 -3
- package/legacy/ResponsiveChartContainer/index.js +11 -10
- package/legacy/ScatterChart/ScatterChart.js +3 -2
- package/legacy/context/CartesianContextProvider.js +31 -18
- package/legacy/context/SeriesContextProvider.js +2 -2
- package/legacy/hooks/index.js +2 -0
- package/legacy/hooks/useAxisEvents.js +12 -7
- package/legacy/hooks/useDrawingArea.js +17 -0
- package/legacy/hooks/useScale.js +17 -21
- package/legacy/hooks/useTicks.js +26 -13
- package/legacy/index.js +2 -1
- package/legacy/internals/getScale.js +17 -0
- package/legacy/internals/isBandScale.js +3 -0
- package/legacy/models/axis.js +6 -1
- package/models/axis.d.ts +25 -12
- package/models/axis.js +9 -1
- package/models/seriesType/pie.d.ts +2 -2
- package/modern/BarChart/BarChart.js +3 -2
- package/modern/BarChart/BarPlot.js +44 -8
- package/modern/ChartContainer/index.js +7 -5
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +3 -2
- package/modern/LineChart/LineChart.js +3 -2
- package/modern/LineChart/extremums.js +2 -2
- package/modern/ResponsiveChartContainer/index.js +11 -10
- package/modern/ScatterChart/ScatterChart.js +3 -2
- package/modern/context/CartesianContextProvider.js +29 -18
- package/modern/context/SeriesContextProvider.js +2 -2
- package/modern/hooks/index.js +2 -0
- package/modern/hooks/useAxisEvents.js +12 -7
- package/modern/hooks/useDrawingArea.js +16 -0
- package/modern/hooks/useScale.js +19 -21
- package/modern/hooks/useTicks.js +18 -8
- package/modern/index.js +2 -1
- package/modern/internals/getScale.js +17 -0
- package/modern/internals/isBandScale.js +3 -0
- package/modern/models/axis.js +6 -1
- package/package.json +22 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,134 @@
|
|
|
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.1
|
|
7
|
+
|
|
8
|
+
_Jul 20, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🎁 Fix CSV export for values containing double quotes
|
|
13
|
+
- 🚀 Improve tree data performance
|
|
14
|
+
- 🐞 Bugfixes
|
|
15
|
+
- 📚 Documentation improvements
|
|
16
|
+
|
|
17
|
+
### Data Grid
|
|
18
|
+
|
|
19
|
+
#### `@mui/x-data-grid@v6.10.1`
|
|
20
|
+
|
|
21
|
+
- [DataGrid] Filtering performance: compile filter applier with `eval` (#9635) @romgrk
|
|
22
|
+
- [DataGrid] Fix CSV export for values containing double quotes (#9667) @cherniavskii
|
|
23
|
+
- [DataGrid] Fix column type change not working correctly (#9594) @cherniavskii
|
|
24
|
+
- [DataGrid] Fix quick filter `undefined` row error (#9708) @romgrk
|
|
25
|
+
- [DataGrid] Prevent `viewportOuterSize.height` going negative (#9664) @gitstart
|
|
26
|
+
- [DataGrid] Update focused cell on page change via keyboard (#9203) @m4theushw
|
|
27
|
+
- [DataGrid] Wait for remote stylesheets to load before print (#9665) @cherniavskii
|
|
28
|
+
|
|
29
|
+
#### `@mui/x-data-grid-pro@v6.10.1` [](https://mui.com/r/x-pro-svg-link)
|
|
30
|
+
|
|
31
|
+
Same changes as in `@mui/x-data-grid@v6.10.1`, plus:
|
|
32
|
+
|
|
33
|
+
- [DataGridPro] Improve tree data performance (#9682) @cherniavskii
|
|
34
|
+
- [DataGridPro] Prevent affecting cells from child DataGrid when resizing a column (#9670) @m4theushw
|
|
35
|
+
|
|
36
|
+
#### `@mui/x-data-grid-premium@v6.10.1` [](https://mui.com/r/x-premium-svg-link)
|
|
37
|
+
|
|
38
|
+
Same changes as in `@mui/x-data-grid-pro@v6.10.1`.
|
|
39
|
+
|
|
40
|
+
### Date Pickers
|
|
41
|
+
|
|
42
|
+
#### `@mui/x-date-pickers@v6.10.1`
|
|
43
|
+
|
|
44
|
+
- [fields] Fix `format` and `value` update order (#9715) @LukasTy
|
|
45
|
+
- [pickers] Remove `require` usage in comment (#9675) @LukasTy
|
|
46
|
+
|
|
47
|
+
#### `@mui/x-date-pickers-pro@v6.10.1` [](https://mui.com/r/x-pro-svg-link)
|
|
48
|
+
|
|
49
|
+
Same changes as in `@mui/x-date-pickers@v6.10.1`.
|
|
50
|
+
|
|
51
|
+
### Charts / `@mui/x-charts@v6.0.0-alpha.4`
|
|
52
|
+
|
|
53
|
+
- [charts] Fix blinking in responsive charts and extremums computation for line charts (#9734) @alexfauquette
|
|
54
|
+
- [charts] Use ESM with imports (#9645) @alexfauquette
|
|
55
|
+
|
|
56
|
+
### Docs
|
|
57
|
+
|
|
58
|
+
- [docs] Add additional note for license key installation on Next.js (#9575) @joserodolfofreitas
|
|
59
|
+
- [docs] Add paragraph about managing focus of custom edit components (#9658) @m4theushw
|
|
60
|
+
- [docs] Add unsorted icon slot to the custom sort icons demo (#9169) @d4rekanguok
|
|
61
|
+
- [docs] Disable ad for onboarding pages (#9700) @oliviertassinari
|
|
62
|
+
- [docs] Disabling ads without toolbar has no effect @oliviertassinari
|
|
63
|
+
- [docs] Fix Date Pickers usage to Title Case (#9680) @richbustos
|
|
64
|
+
- [docs] Fix sorting in `CustomSortIcons` demo (#9656) @MBilalShafi
|
|
65
|
+
- [docs] Improve the UI for pickers introduction (#9644) @alexfauquette
|
|
66
|
+
- [docs] Improve the demo design @oliviertassinari
|
|
67
|
+
- [docs] Localization progress, polish (#9672) @oliviertassinari
|
|
68
|
+
- [docs] Normalize the WIP items (#9671) @oliviertassinari
|
|
69
|
+
|
|
70
|
+
### Core
|
|
71
|
+
|
|
72
|
+
- [core] Add `validate` command (#9714) @romgrk
|
|
73
|
+
- [CHANGELOG] Update generator to new format @oliviertassinari
|
|
74
|
+
|
|
75
|
+
## 6.10.0
|
|
76
|
+
|
|
77
|
+
_Jul 13, 2023_
|
|
78
|
+
|
|
79
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
80
|
+
|
|
81
|
+
- ⚡ Improve data grid filtering performance
|
|
82
|
+
- 🎁 Include column groups in the CSV export
|
|
83
|
+
- 🌍 Improve Polish (pl-PL) locale for the data grid
|
|
84
|
+
- 🌍 Improve Norwegian (nb-NO) locale for the pickers
|
|
85
|
+
|
|
86
|
+
### Data Grid
|
|
87
|
+
|
|
88
|
+
#### `@mui/x-data-grid@6.10.0`
|
|
89
|
+
|
|
90
|
+
- [DataGrid] Allow to exclude hidden columns from the quick filter (#9610) @cherniavskii
|
|
91
|
+
- [DataGrid] Filtering performance: remove indirection (#9334) @romgrk
|
|
92
|
+
- [DataGrid] Fix props propagation on `GridToolbarQuickFilter` component (#9633) @giladappsforce
|
|
93
|
+
- [DataGrid] Fix quick filter input lag (#9630) @cherniavskii
|
|
94
|
+
- [DataGrid] Include column groups in the CSV export (#9585) @cherniavskii
|
|
95
|
+
- [DataGrid] Make `rowExpansionChange` event public (#9611) @MBilalShafi
|
|
96
|
+
- [l10n] Improve Polish (pl-PL) locale (#9625) @ch1llysense
|
|
97
|
+
|
|
98
|
+
#### `@mui/x-data-grid-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link)
|
|
99
|
+
|
|
100
|
+
Same changes as in `@mui/x-data-grid@6.10.0`.
|
|
101
|
+
|
|
102
|
+
#### `@mui/x-data-grid-premium@6.10.0` [](https://mui.com/r/x-premium-svg-link)
|
|
103
|
+
|
|
104
|
+
Same changes as in `@mui/x-data-grid-pro@6.10.0`.
|
|
105
|
+
|
|
106
|
+
### Date Pickers
|
|
107
|
+
|
|
108
|
+
#### `@mui/x-date-pickers@6.10.0`
|
|
109
|
+
|
|
110
|
+
- [pickers] Fix date calendar issues (#9652) @LukasTy
|
|
111
|
+
- [l10n] Improve Norwegian (nb-NO) locale (#9608) @JosteinBrevik
|
|
112
|
+
|
|
113
|
+
#### `@mui/x-date-pickers-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link)
|
|
114
|
+
|
|
115
|
+
Same changes as in `@mui/x-date-pickers@6.10.0`.
|
|
116
|
+
|
|
117
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.3`
|
|
118
|
+
|
|
119
|
+
- [charts] Allow configuring bar size (#9632) @alexfauquette
|
|
120
|
+
- [charts] Simplify custom components creation (#9561) @alexfauquette
|
|
121
|
+
|
|
122
|
+
### Docs
|
|
123
|
+
|
|
124
|
+
- [docs] Add slot components usage alert (#9660) @LukasTy
|
|
125
|
+
- [docs] Fix casing Cell selection @oliviertassinari
|
|
126
|
+
|
|
127
|
+
### Core
|
|
128
|
+
|
|
129
|
+
- [core] Disambiguate eslint plugin name @oliviertassinari
|
|
130
|
+
- [core] Update priority support issue template and prompt (#9574) @DanailH
|
|
131
|
+
- [CHANGELOG] Clarify each plan (#9446) @oliviertassinari
|
|
132
|
+
- [license] Fix error terminology (#9614) @oliviertassinari
|
|
133
|
+
|
|
6
134
|
## 6.9.2
|
|
7
135
|
|
|
8
136
|
_Jul 6, 2023_
|
|
@@ -25,27 +153,38 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
25
153
|
|
|
26
154
|
- 📚 Documentation improvements
|
|
27
155
|
|
|
28
|
-
###
|
|
156
|
+
### Data Grid
|
|
29
157
|
|
|
30
|
-
####
|
|
158
|
+
#### `@mui/x-data-grid@6.9.2`
|
|
31
159
|
|
|
32
160
|
- [DataGrid] Fix `RangeError` when using flex columns (#9554) @cherniavskii
|
|
33
161
|
- [DataGrid] Fix React 17 editing bug (#9530) @romgrk
|
|
34
162
|
- [DataGrid] Use `getRowId` in filtering (#9564) @romgrk
|
|
35
163
|
- [DataGrid] Correctly reflect `TablePagination`'s `rowsPerPageOptions` shape to `pageSizeOptions` (#9438) @burakkgunduzz
|
|
36
|
-
- [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
|
|
37
164
|
- [l10n] Improve Spanish (es-ES) locale (#9500) @fufex
|
|
38
165
|
|
|
39
|
-
|
|
166
|
+
#### `@mui/x-data-grid-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link)
|
|
40
167
|
|
|
41
|
-
|
|
168
|
+
Same changes as in `@mui/x-data-grid@6.9.2`.
|
|
169
|
+
|
|
170
|
+
#### `@mui/x-data-grid-premium@6.9.2` [](https://mui.com/r/x-premium-svg-link)
|
|
171
|
+
|
|
172
|
+
Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
|
|
173
|
+
|
|
174
|
+
- [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
|
|
175
|
+
|
|
176
|
+
### Date Pickers
|
|
177
|
+
|
|
178
|
+
#### `@mui/x-date-pickers@6.9.2`
|
|
42
179
|
|
|
43
180
|
- [pickers] Forward digital clock classes (#9555) @YoonjiJang
|
|
44
181
|
- [pickers] Rename `internal` folder to `internals` on `@mui/x-date-picker-pro` (#9571) @flaviendelangle
|
|
45
182
|
|
|
46
|
-
|
|
183
|
+
#### `@mui/x-date-pickers-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link)
|
|
47
184
|
|
|
48
|
-
|
|
185
|
+
Same changes as in `@mui/x-date-pickers@6.9.2`.
|
|
186
|
+
|
|
187
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.2`
|
|
49
188
|
|
|
50
189
|
- [charts] Add pie chart component (#9395) @alexfauquette
|
|
51
190
|
|
|
@@ -77,9 +216,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
77
216
|
- 🐞 Bugfixes
|
|
78
217
|
- 📚 Documentation improvements
|
|
79
218
|
|
|
80
|
-
###
|
|
219
|
+
### Data Grid
|
|
81
220
|
|
|
82
|
-
####
|
|
221
|
+
#### `@mui/x-data-grid@6.9.1`
|
|
83
222
|
|
|
84
223
|
- [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
|
|
85
224
|
- [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
|
|
@@ -87,13 +226,22 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
87
226
|
- [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
|
|
88
227
|
- [DataGrid] Fix `nextFieldToFocus` to always be a visible column field when <kbd>Tab</kbd> key is pressed (#8314) @yaredtsy
|
|
89
228
|
- [DataGrid] Fix `Maximum call stack size exceeded` error when using fractional width (#9516) @cherniavskii
|
|
229
|
+
- [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
|
|
230
|
+
|
|
231
|
+
#### `@mui/x-data-grid-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link)
|
|
232
|
+
|
|
233
|
+
Same changes as in `@mui/x-data-grid@6.9.1`, plus:
|
|
234
|
+
|
|
90
235
|
- [DataGridPro] Don't throw error in column pinning (#9507) @romgrk
|
|
91
236
|
- [DataGridPro] Fix bug with `checkboxSelection` and treeData/grouping (#9418) @romgrk
|
|
92
|
-
- [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
|
|
93
237
|
|
|
94
|
-
|
|
238
|
+
#### `@mui/x-data-grid-premium@6.9.1` [](https://mui.com/r/x-premium-svg-link)
|
|
95
239
|
|
|
96
|
-
|
|
240
|
+
Same changes as in `@mui/x-data-grid-pro@6.9.1`.
|
|
241
|
+
|
|
242
|
+
### Date Pickers
|
|
243
|
+
|
|
244
|
+
#### `@mui/x-date-pickers@6.9.1`
|
|
97
245
|
|
|
98
246
|
- [DateTimePicker] Scroll to Digital Clock section only when selection changes (#9434) @LukasTy
|
|
99
247
|
- [pickers] Handle `keyDown` only when input is focused (#9481) @LukasTy
|
|
@@ -101,9 +249,11 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
101
249
|
- [l10n] Add Chinese (Hong Kong) (zh-HK) locale (#9468) @samchiu90
|
|
102
250
|
- [l10n] Improve Romanian (ro-RO) translations (#9436) @noraleonte
|
|
103
251
|
|
|
104
|
-
|
|
252
|
+
#### `@mui/x-date-pickers-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link)
|
|
105
253
|
|
|
106
|
-
|
|
254
|
+
Same changes as in `@mui/x-date-pickers@6.9.1`.
|
|
255
|
+
|
|
256
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.1`
|
|
107
257
|
|
|
108
258
|
- [charts] Take responsive container from data grid (#9497) @alexfauquette
|
|
109
259
|
- [charts] Update README.md (#9426) @alexfauquette
|
|
@@ -155,17 +305,25 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
155
305
|
- 🐞 Bugfixes
|
|
156
306
|
- 📚 Documentation improvements
|
|
157
307
|
|
|
158
|
-
###
|
|
308
|
+
### Data Grid
|
|
159
309
|
|
|
160
|
-
####
|
|
310
|
+
#### `@mui/x-data-grid@6.9.0`
|
|
161
311
|
|
|
162
312
|
- [DataGrid] Filtering performance: use unmemoized selectors by default (#9287) @romgrk
|
|
163
313
|
- [DataGrid] Use container dimensions from `getComputedStyle` (#9236) @m4theushw
|
|
164
314
|
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#9404) @julioAz
|
|
165
315
|
|
|
166
|
-
|
|
316
|
+
#### `@mui/x-data-grid-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link)
|
|
167
317
|
|
|
168
|
-
|
|
318
|
+
Same changes as in `@mui/x-data-grid@6.9.0`.
|
|
319
|
+
|
|
320
|
+
#### `@mui/x-data-grid-premium@6.9.0` [](https://mui.com/r/x-premium-svg-link)
|
|
321
|
+
|
|
322
|
+
Same changes as in `@mui/x-data-grid-pro@6.9.0`.
|
|
323
|
+
|
|
324
|
+
### Date Pickers
|
|
325
|
+
|
|
326
|
+
#### `@mui/x-date-pickers@6.9.0`
|
|
169
327
|
|
|
170
328
|
- [fields] Ensure `minutesStep` is respected by fields arrows up/down (#9338) @alexfauquette
|
|
171
329
|
- [fields] Reset internal state when `referenceValue` changes (#9390) @adrianmxb
|
|
@@ -175,9 +333,11 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
175
333
|
- [pickers] Reduce date range calendar vertical border width (#9368) @oliviertassinari
|
|
176
334
|
- [pickers] Reset fields internal state when pasting value (#9385) @alexfauquette
|
|
177
335
|
|
|
178
|
-
|
|
336
|
+
#### `@mui/x-date-pickers-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link)
|
|
179
337
|
|
|
180
|
-
|
|
338
|
+
Same changes as in `@mui/x-date-pickers@6.9.0`.
|
|
339
|
+
|
|
340
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.0`
|
|
181
341
|
|
|
182
342
|
- [charts] Allow to customize colors based on the theme mode (#9006) @alexfauquette
|
|
183
343
|
- [charts] Prepare the charts release (#9361) @alexfauquette
|
|
@@ -213,9 +373,9 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
213
373
|
- 🐞 Bugfixes
|
|
214
374
|
- 📚 Documentation improvements
|
|
215
375
|
|
|
216
|
-
###
|
|
376
|
+
### Data Grid
|
|
217
377
|
|
|
218
|
-
####
|
|
378
|
+
#### `@mui/x-data-grid@6.8.0`
|
|
219
379
|
|
|
220
380
|
- [DataGrid] Add missing styles to `overridesResolver` (#9248) @mrmuhammadali
|
|
221
381
|
- [DataGrid] Keep column header menu icon always visible on touch devices (#9076) @cherniavskii
|
|
@@ -229,15 +389,27 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
229
389
|
- [DataGrid] Scroll performance improvements (#9037) @romgrk
|
|
230
390
|
- [l10n] Improve Greek (el-GR) locale (#9292) @clytras
|
|
231
391
|
|
|
232
|
-
|
|
392
|
+
#### `@mui/x-data-grid-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link)
|
|
233
393
|
|
|
234
|
-
|
|
394
|
+
Same changes as in `@mui/x-data-grid@6.8.0`.
|
|
395
|
+
|
|
396
|
+
#### `@mui/x-data-grid-premium@6.8.0` [](https://mui.com/r/x-premium-svg-link)
|
|
397
|
+
|
|
398
|
+
Same changes as in `@mui/x-data-grid-pro@6.8.0`.
|
|
399
|
+
|
|
400
|
+
### Date Pickers
|
|
401
|
+
|
|
402
|
+
#### `@mui/x-date-pickers@6.8.0`
|
|
235
403
|
|
|
236
404
|
- [l10n] Add Greek (el-GR) locale (#9293) @clytras
|
|
237
405
|
- [pickers] Add a `referenceDate` prop on `DateCalendar`, `MonthCalendar` and `YearCalendar` (#9260) @flaviendelangle
|
|
238
406
|
- [pickers] Close the calendar when a shortcut is selected (#9080) @flaviendelangle
|
|
239
407
|
- [pickers] Fix disabling for digital clock (#9300) @alexfauquette
|
|
240
408
|
|
|
409
|
+
#### `@mui/x-date-pickers-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link)
|
|
410
|
+
|
|
411
|
+
Same changes as in `@mui/x-date-pickers@6.8.0`.
|
|
412
|
+
|
|
241
413
|
### Docs
|
|
242
414
|
|
|
243
415
|
- [docs] Add header filters to the popular features demo (#9069) @MBilalShafi
|
|
@@ -295,9 +467,9 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
295
467
|
- 🐞 Bugfixes
|
|
296
468
|
- 📚 Documentation improvements
|
|
297
469
|
|
|
298
|
-
###
|
|
470
|
+
### Data Grid
|
|
299
471
|
|
|
300
|
-
####
|
|
472
|
+
#### `@mui/x-data-grid@6.7.0`
|
|
301
473
|
|
|
302
474
|
- [DataGrid] Allow overflowing grid root element (#9179) @cherniavskii
|
|
303
475
|
- [DataGrid] Fix module augmentation error when using `@mui/lab` (#9235) @cherniavskii
|
|
@@ -306,19 +478,34 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
306
478
|
- [DataGrid] Improve grouping performance for large datasets (#9200) @romgrk
|
|
307
479
|
- [DataGrid] Increase threshold to trigger memory leak warning (#9263) @m4theushw
|
|
308
480
|
- [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
481
|
- [l10n] Improve Czech (cs-CZ) locale (#9266) @MartinSkarpa
|
|
312
482
|
- [l10n] Improve German (de-DE) locale (#9259) @ximex
|
|
313
483
|
- [l10n] Improve Turkish (tr-TR) locale (#9237) @MCErtan
|
|
314
484
|
|
|
315
|
-
|
|
485
|
+
#### `@mui/x-data-grid-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link)
|
|
316
486
|
|
|
317
|
-
|
|
487
|
+
Same changes as in `@mui/x-data-grid@6.7.0`, plus:
|
|
488
|
+
|
|
489
|
+
- [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
|
|
490
|
+
|
|
491
|
+
#### `@mui/x-data-grid-premium@6.7.0` [](https://mui.com/r/x-premium-svg-link)
|
|
492
|
+
|
|
493
|
+
Same changes as in `@mui/x-data-grid-pro@6.7.0`, plus:
|
|
494
|
+
|
|
495
|
+
- [DataGridPremium] Remove last line break on clipboard paste (#9163) @cherniavskii
|
|
496
|
+
|
|
497
|
+
### Pickers
|
|
498
|
+
|
|
499
|
+
#### `@mui/x-date-pickers@6.7.0`
|
|
318
500
|
|
|
319
501
|
- [l10n] Add Romanian (ro-RO) locale (#9257) @ximex
|
|
320
502
|
- [l10n] Improve German (de-DE) locale (#9258) @ximex
|
|
321
503
|
- [pickers] Apply dynamic default format depending on views for all desktop and mobile pickers (#9126) @flaviendelangle
|
|
504
|
+
|
|
505
|
+
#### `@mui/x-date-pickers-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link)
|
|
506
|
+
|
|
507
|
+
Same changes as in `@mui/x-date-pickers@6.7.0`, plus:
|
|
508
|
+
|
|
322
509
|
- [pickers] Update `DateRangePickerDay` props JSDoc (#9191) @stevus
|
|
323
510
|
|
|
324
511
|
### Docs
|
|
@@ -352,7 +539,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
352
539
|
- 🌍 Improve Dutch (nl-NL) and French (fr-FR) locales on the data grid
|
|
353
540
|
- 🌍 Add Vietnamese (vi-VN) locale on the pickers
|
|
354
541
|
|
|
355
|
-
### `@mui/x-data-grid@
|
|
542
|
+
### `@mui/x-data-grid@6.6.0` / `@mui/x-data-grid-pro@6.6.0` / `@mui/x-data-grid-premium@6.6.0`
|
|
356
543
|
|
|
357
544
|
#### Changes
|
|
358
545
|
|
|
@@ -370,7 +557,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
370
557
|
- [l10n] Improve Dutch (nl-NL) locale (#9043) @thedutchruben
|
|
371
558
|
- [l10n] Improve French (fr-FR) locale (#9109) @Jul13nT
|
|
372
559
|
|
|
373
|
-
### `@mui/x-date-pickers@
|
|
560
|
+
### `@mui/x-date-pickers@6.6.0` / `@mui/x-date-pickers-pro@6.6.0`
|
|
374
561
|
|
|
375
562
|
#### Changes
|
|
376
563
|
|
|
@@ -485,7 +672,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
485
672
|
- 🐞 Bugfixes
|
|
486
673
|
- 📚 Documentation improvements
|
|
487
674
|
|
|
488
|
-
### `@mui/x-data-grid@
|
|
675
|
+
### `@mui/x-data-grid@6.4.0` / `@mui/x-data-grid-pro@6.4.0` / `@mui/x-data-grid-premium@6.4.0`
|
|
489
676
|
|
|
490
677
|
#### Changes
|
|
491
678
|
|
|
@@ -495,12 +682,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
495
682
|
- [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
|
|
496
683
|
- [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
|
|
497
684
|
- [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
|
|
498
|
-
- [l10n] Improve French (fr-FR) locale (#8825) @
|
|
685
|
+
- [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
|
|
499
686
|
- [l10n] Improve German (de-DE) locale (#8898) @marcauberer
|
|
500
687
|
- [l10n] Improve Portuguese (pt-BR) locale (#8960) @Sorriso337
|
|
501
688
|
- [l10n] Improve Ukrainian (uk-UA) locale (#8863) @Neonin
|
|
502
689
|
|
|
503
|
-
### `@mui/x-date-pickers@
|
|
690
|
+
### `@mui/x-date-pickers@6.4.0` / `@mui/x-date-pickers-pro@6.4.0`
|
|
504
691
|
|
|
505
692
|
#### Changes
|
|
506
693
|
|
|
@@ -534,7 +721,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
534
721
|
- 🐞 Bugfixes
|
|
535
722
|
- 📚 Documentation improvements
|
|
536
723
|
|
|
537
|
-
### `@mui/x-data-grid@
|
|
724
|
+
### `@mui/x-data-grid@6.3.1` / `@mui/x-data-grid-pro@6.3.1` / `@mui/x-data-grid-premium@6.3.1`
|
|
538
725
|
|
|
539
726
|
#### Changes
|
|
540
727
|
|
|
@@ -545,7 +732,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
545
732
|
- [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
|
|
546
733
|
- [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
|
|
547
734
|
|
|
548
|
-
### `@mui/x-date-pickers@
|
|
735
|
+
### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
|
|
549
736
|
|
|
550
737
|
#### Changes
|
|
551
738
|
|
|
@@ -586,7 +773,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
586
773
|
- 🐞 Bugfixes
|
|
587
774
|
- 📚 Documentation improvements
|
|
588
775
|
|
|
589
|
-
### `@mui/x-data-grid@
|
|
776
|
+
### `@mui/x-data-grid@6.3.0` / `@mui/x-data-grid-pro@6.3.0` / `@mui/x-data-grid-premium@6.3.0`
|
|
590
777
|
|
|
591
778
|
#### Changes
|
|
592
779
|
|
|
@@ -601,7 +788,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
601
788
|
- [l10n] Improve French (fr-FR) locale (#8704) @Jul13nT
|
|
602
789
|
- [l10n] Improve Turkish (tr-TR) locale (#8783) @cccaaannn
|
|
603
790
|
|
|
604
|
-
### `@mui/x-date-pickers@
|
|
791
|
+
### `@mui/x-date-pickers@6.3.0` / `@mui/x-date-pickers-pro@6.3.0`
|
|
605
792
|
|
|
606
793
|
#### Changes
|
|
607
794
|
|
|
@@ -650,7 +837,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
650
837
|
- 🐞 Bugfixes
|
|
651
838
|
- 📚 Documentation improvements
|
|
652
839
|
|
|
653
|
-
### `@mui/x-data-grid@
|
|
840
|
+
### `@mui/x-data-grid@6.2.1` / `@mui/x-data-grid-pro@6.2.1` / `@mui/x-data-grid-premium@6.2.1`
|
|
654
841
|
|
|
655
842
|
#### Changes
|
|
656
843
|
|
|
@@ -661,14 +848,14 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
661
848
|
- [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw
|
|
662
849
|
- [DataGridPro] Virtualize row detail panels (#7969) @yaredtsy
|
|
663
850
|
|
|
664
|
-
### `@mui/x-date-pickers@
|
|
851
|
+
### `@mui/x-date-pickers@6.2.1` / `@mui/x-date-pickers-pro@6.2.1`
|
|
665
852
|
|
|
666
853
|
#### Changes
|
|
667
854
|
|
|
668
855
|
- [pickers] Do not include the time in date components when going to today (#8657) @flaviendelangle
|
|
669
856
|
- [pickers] Sync internal state with controlled value (#8674) @alexfauquette
|
|
670
857
|
|
|
671
|
-
### `@mui/x-codemod@
|
|
858
|
+
### `@mui/x-codemod@6.2.1`
|
|
672
859
|
|
|
673
860
|
#### Changes
|
|
674
861
|
|
|
@@ -708,16 +895,16 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
708
895
|
- 🐞 Bugfixes
|
|
709
896
|
- 📚 Documentation improvements
|
|
710
897
|
|
|
711
|
-
### `@mui/x-data-grid@
|
|
898
|
+
### `@mui/x-data-grid@6.2.0` / `@mui/x-data-grid-pro@6.2.0` / `@mui/x-data-grid-premium@6.2.0`
|
|
712
899
|
|
|
713
900
|
#### Changes
|
|
714
901
|
|
|
715
902
|
- [DataGrid] Reset selection state on `checkboxSelection` toggle (#8522) @MBilalShafi
|
|
716
903
|
- [DataGrid] Use `baseSelect` slot instead of `baseTextField` with `select={true}` (#8110) @cherniavskii
|
|
717
|
-
- [l10n] Improve French (fr-FR) locale (#8537) @
|
|
904
|
+
- [l10n] Improve French (fr-FR) locale (#8537) @allereaugabriel
|
|
718
905
|
- [l10n] Improve Urdu (ur-PK) locale (#8513) @SFARPak
|
|
719
906
|
|
|
720
|
-
### `@mui/x-date-pickers@
|
|
907
|
+
### `@mui/x-date-pickers@6.2.0` / `@mui/x-date-pickers-pro@6.2.0`
|
|
721
908
|
|
|
722
909
|
#### Changes
|
|
723
910
|
|
|
@@ -751,7 +938,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
751
938
|
- 🐞 Bugfixes
|
|
752
939
|
- 📚 Documentation improvements
|
|
753
940
|
|
|
754
|
-
### `@mui/x-data-grid@
|
|
941
|
+
### `@mui/x-data-grid@6.1.0` / `@mui/x-data-grid-pro@6.1.0` / `@mui/x-data-grid-premium@6.1.0`
|
|
755
942
|
|
|
756
943
|
#### Changes
|
|
757
944
|
|
|
@@ -766,7 +953,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
766
953
|
- [l10n] Improve Portuguese (pt-BR) locale (#8480) @pwnedev
|
|
767
954
|
- [l10n] Improve Russian (ru-RU) locale (#8510) @alexrapro
|
|
768
955
|
|
|
769
|
-
### `@mui/x-date-pickers@
|
|
956
|
+
### `@mui/x-date-pickers@6.1.0` / `@mui/x-date-pickers-pro@6.1.0`
|
|
770
957
|
|
|
771
958
|
#### Changes
|
|
772
959
|
|
|
@@ -808,7 +995,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
808
995
|
- 🐞 Bugfixes
|
|
809
996
|
- 📚 Documentation improvements
|
|
810
997
|
|
|
811
|
-
### `@mui/x-data-grid@
|
|
998
|
+
### `@mui/x-data-grid@6.0.4` / `@mui/x-data-grid-pro@6.0.4` / `@mui/x-data-grid-premium@6.0.4`
|
|
812
999
|
|
|
813
1000
|
#### Changes
|
|
814
1001
|
|
|
@@ -826,7 +1013,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
826
1013
|
- [l10n] Improve Spanish (es-ES) locale (#8420) @martjanz
|
|
827
1014
|
- [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
|
|
828
1015
|
|
|
829
|
-
### `@mui/x-date-pickers@
|
|
1016
|
+
### `@mui/x-date-pickers@6.0.4` / `@mui/x-date-pickers-pro@6.0.4`
|
|
830
1017
|
|
|
831
1018
|
#### Changes
|
|
832
1019
|
|
|
@@ -842,7 +1029,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
842
1029
|
- [l10n] Add Danish (da-DK) locale (#8379) @BossElijah
|
|
843
1030
|
- [l10n] Improve Swedish (sv-SE) locale (#8381) @BossElijah
|
|
844
1031
|
|
|
845
|
-
### `@mui/x-codemod@
|
|
1032
|
+
### `@mui/x-codemod@6.0.4`
|
|
846
1033
|
|
|
847
1034
|
#### Changes
|
|
848
1035
|
|
|
@@ -869,7 +1056,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
869
1056
|
- 🐞 Bugfixes
|
|
870
1057
|
- 📚 Documentation improvements
|
|
871
1058
|
|
|
872
|
-
### `@mui/x-data-grid@
|
|
1059
|
+
### `@mui/x-data-grid@6.0.3` / `@mui/x-data-grid-pro@6.0.3` / `@mui/x-data-grid-premium@6.0.3`
|
|
873
1060
|
|
|
874
1061
|
#### Changes
|
|
875
1062
|
|
|
@@ -879,7 +1066,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
879
1066
|
- [l10n] Improve Persian (fa-IR) locale (#8268) @fakhamatia
|
|
880
1067
|
- [l10n] improve Dutch (nl-NL) locale (#8317) @developenguin
|
|
881
1068
|
|
|
882
|
-
### `@mui/x-date-pickers@
|
|
1069
|
+
### `@mui/x-date-pickers@6.0.3` / `@mui/x-date-pickers-pro@6.0.3`
|
|
883
1070
|
|
|
884
1071
|
#### Changes
|
|
885
1072
|
|
|
@@ -926,7 +1113,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
926
1113
|
- 📚 Documentation improvements
|
|
927
1114
|
- 🐞 Bugfixes
|
|
928
1115
|
|
|
929
|
-
### `@mui/x-data-grid@
|
|
1116
|
+
### `@mui/x-data-grid@6.0.2` / `@mui/x-data-grid-pro@6.0.2` / `@mui/x-data-grid-premium@6.0.2`
|
|
930
1117
|
|
|
931
1118
|
#### Changes
|
|
932
1119
|
|
|
@@ -934,7 +1121,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
934
1121
|
- [DataGrid] Remove warning when adding a custom column type (#8227) @m4theushw
|
|
935
1122
|
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#8198) @JoaoSerafim3001
|
|
936
1123
|
|
|
937
|
-
### `@mui/x-date-pickers@
|
|
1124
|
+
### `@mui/x-date-pickers@6.0.2` / `@mui/x-date-pickers-pro@6.0.2`
|
|
938
1125
|
|
|
939
1126
|
#### Changes
|
|
940
1127
|
|
|
@@ -976,7 +1163,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
976
1163
|
- 📚 Documentation improvements
|
|
977
1164
|
- 🐞 Bugfixes
|
|
978
1165
|
|
|
979
|
-
### `@mui/x-data-grid@
|
|
1166
|
+
### `@mui/x-data-grid@6.0.1` / `@mui/x-data-grid-pro@6.0.1` / `@mui/x-data-grid-premium@6.0.1`
|
|
980
1167
|
|
|
981
1168
|
#### Changes
|
|
982
1169
|
|
|
@@ -984,7 +1171,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
984
1171
|
- [DataGrid] Simplify `buildPrintWindow` (#8142) @oliviertassinari
|
|
985
1172
|
- [l10n] Improve French (fr-FR) locale (#8122) @MaherSamiGMC
|
|
986
1173
|
|
|
987
|
-
### `@mui/x-date-pickers@
|
|
1174
|
+
### `@mui/x-date-pickers@6.0.1` / `@mui/x-date-pickers-pro@6.0.1`
|
|
988
1175
|
|
|
989
1176
|
#### Changes
|
|
990
1177
|
|
|
@@ -1035,7 +1222,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
1035
1222
|
- 📚 Documentation improvements
|
|
1036
1223
|
- 🐞 Bugfixes
|
|
1037
1224
|
|
|
1038
|
-
### `@mui/x-data-grid@
|
|
1225
|
+
### `@mui/x-data-grid@6.0.0` / `@mui/x-data-grid-pro@6.0.0` / `@mui/x-data-grid-premium@6.0.0`
|
|
1039
1226
|
|
|
1040
1227
|
#### Breaking changes
|
|
1041
1228
|
|
|
@@ -1058,7 +1245,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
1058
1245
|
- [l10n] Improve Czech (cs-CZ) locale (#8113) @BlastyCZ
|
|
1059
1246
|
- [l10n] Improve Arabic (ar-SD) locale (#8100) @atf98
|
|
1060
1247
|
|
|
1061
|
-
### `@mui/x-date-pickers@
|
|
1248
|
+
### `@mui/x-date-pickers@6.0.0` / `@mui/x-date-pickers-pro@6.0.0`
|
|
1062
1249
|
|
|
1063
1250
|
#### Breaking changes
|
|
1064
1251
|
|
|
@@ -1116,7 +1303,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
1116
1303
|
- 📚 Documentation improvements
|
|
1117
1304
|
- 🐞 Bugfixes
|
|
1118
1305
|
|
|
1119
|
-
### `@mui/x-data-grid@
|
|
1306
|
+
### `@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
1307
|
|
|
1121
1308
|
#### Changes
|
|
1122
1309
|
|
|
@@ -1126,7 +1313,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
1126
1313
|
- [DataGridPro] Add `Remove All` option in filter panel (#7326) @MBilalShafi
|
|
1127
1314
|
- [DataGridPremium] Add web worker support for Excel export (#7770) @m4theushw
|
|
1128
1315
|
|
|
1129
|
-
### `@mui/x-date-pickers@
|
|
1316
|
+
### `@mui/x-date-pickers@6.0.0-beta.5` / `@mui/x-date-pickers-pro@6.0.0-beta.5`
|
|
1130
1317
|
|
|
1131
1318
|
#### Breaking changes
|
|
1132
1319
|
|
|
@@ -1141,7 +1328,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
1141
1328
|
- [fields] Clean the section object (#8009) @flaviendelangle
|
|
1142
1329
|
- [pickers] Fix `textField` slot `error` prop propagation (#7987) @LukasTy
|
|
1143
1330
|
|
|
1144
|
-
### `@mui/x-codemod@
|
|
1331
|
+
### `@mui/x-codemod@6.0.0-beta.5`
|
|
1145
1332
|
|
|
1146
1333
|
#### Changes
|
|
1147
1334
|
|
|
@@ -1168,17 +1355,17 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1168
1355
|
- 📚 Documentation improvements
|
|
1169
1356
|
- 🐞 Bugfixes
|
|
1170
1357
|
|
|
1171
|
-
### `@mui/x-data-grid@
|
|
1358
|
+
### `@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
1359
|
|
|
1173
1360
|
#### Changes
|
|
1174
1361
|
|
|
1175
1362
|
- [DataGrid] Add interface for `singleSelect` column (#7685) @m4theushw
|
|
1176
|
-
- [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7733) @
|
|
1363
|
+
- [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7733) @ivek-Prajapatii
|
|
1177
1364
|
- [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7857) @cherniavskii
|
|
1178
1365
|
- [DataGridPro] Change cursor when dragging a column (#7725) @sai6855
|
|
1179
1366
|
- [DataGridPremium] Fix `leafField` to have correct focus value (#7950) @MBilalShafi
|
|
1180
1367
|
|
|
1181
|
-
### `@mui/x-date-pickers@
|
|
1368
|
+
### `@mui/x-date-pickers@6.0.0-beta.4` / `@mui/x-date-pickers-pro@6.0.0-beta.4`
|
|
1182
1369
|
|
|
1183
1370
|
#### Changes
|
|
1184
1371
|
|
|
@@ -1187,7 +1374,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1187
1374
|
- [fields] Support escaped characters on `Luxon` (#7888) @flaviendelangle
|
|
1188
1375
|
- [pickers] Prepare new pickers for custom fields (#7806) @flaviendelangle
|
|
1189
1376
|
|
|
1190
|
-
### `@mui/x-codemod@
|
|
1377
|
+
### `@mui/x-codemod@6.0.0-beta.4`
|
|
1191
1378
|
|
|
1192
1379
|
#### Changes
|
|
1193
1380
|
|
|
@@ -1217,7 +1404,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
1217
1404
|
- 📚 Documentation improvements
|
|
1218
1405
|
- 🐞 Bugfixes
|
|
1219
1406
|
|
|
1220
|
-
### `@mui/x-data-grid@
|
|
1407
|
+
### `@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
1408
|
|
|
1222
1409
|
#### Changes
|
|
1223
1410
|
|
|
@@ -1229,7 +1416,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
1229
1416
|
- [DataGrid] Improve query selectors for selecting cell element (#7354) @yaredtsy
|
|
1230
1417
|
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#7854) @ed-ateixeira
|
|
1231
1418
|
|
|
1232
|
-
### `@mui/x-date-pickers@
|
|
1419
|
+
### `@mui/x-date-pickers@6.0.0-beta.3` / `@mui/x-date-pickers-pro@6.0.0-beta.3`
|
|
1233
1420
|
|
|
1234
1421
|
#### Changes
|
|
1235
1422
|
|
|
@@ -1241,7 +1428,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
1241
1428
|
- [pickers] Ditch pickers `skipLibCheck` (#7808) @LukasTy
|
|
1242
1429
|
- [pickers] Improve JSDoc and resulting API docs pages (#7847) @LukasTy
|
|
1243
1430
|
|
|
1244
|
-
### `@mui/x-codemod@
|
|
1431
|
+
### `@mui/x-codemod@6.0.0-beta.3`
|
|
1245
1432
|
|
|
1246
1433
|
#### Changes
|
|
1247
1434
|
|
|
@@ -1275,7 +1462,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
1275
1462
|
- 📚 Documentation improvements
|
|
1276
1463
|
- 🐞 Bug fixes
|
|
1277
1464
|
|
|
1278
|
-
### `@mui/x-data-grid@
|
|
1465
|
+
### `@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
1466
|
|
|
1280
1467
|
#### Changes
|
|
1281
1468
|
|
|
@@ -1283,20 +1470,20 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
1283
1470
|
- [DataGrid] Merge row styles with `componentsProps.row.style` (#7641) @marktoman
|
|
1284
1471
|
- [l10n] Add Hungarian (hu-HU) locale (#7776) @noherczeg
|
|
1285
1472
|
- [l10n] Add Urdu (ur-PK) locale (#6866) @MBilalShafi
|
|
1286
|
-
- [l10n] Improve French (fr-FR) locale (#7777) @
|
|
1473
|
+
- [l10n] Improve French (fr-FR) locale (#7777) @ivek-Prajapatii
|
|
1287
1474
|
- [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
|
|
1288
1475
|
|
|
1289
|
-
### `@mui/x-date-pickers@
|
|
1476
|
+
### `@mui/x-date-pickers@6.0.0-beta.2` / `@mui/x-date-pickers-pro@6.0.0-beta.2`
|
|
1290
1477
|
|
|
1291
1478
|
#### Changes
|
|
1292
1479
|
|
|
1293
1480
|
- [fields] Support week day formats (#7392) @flaviendelangle
|
|
1294
1481
|
- [pickers] Allow to initialize and control the `rangePosition` on all range components (#7764) @flaviendelangle
|
|
1295
1482
|
- [pickers] Fix theme augmentation (#7800) @LukasTy
|
|
1296
|
-
- [pickers] Hide scrollbars in the date calendar container (#7766) @
|
|
1483
|
+
- [pickers] Hide scrollbars in the date calendar container (#7766) @ivek-Prajapatii
|
|
1297
1484
|
- [pickers] Remove the dependency on `rifm` (#7785) @alexfauquette
|
|
1298
1485
|
|
|
1299
|
-
### `@mui/x-codemod@
|
|
1486
|
+
### `@mui/x-codemod@6.0.0-beta.2`
|
|
1300
1487
|
|
|
1301
1488
|
#### Changes
|
|
1302
1489
|
|
|
@@ -1329,7 +1516,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
|
|
|
1329
1516
|
- 📚 Documentation improvements
|
|
1330
1517
|
- 🐞 Bug fixes
|
|
1331
1518
|
|
|
1332
|
-
### `@mui/x-data-grid@
|
|
1519
|
+
### `@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
1520
|
|
|
1334
1521
|
#### Changes
|
|
1335
1522
|
|
|
@@ -1341,9 +1528,9 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
|
|
|
1341
1528
|
- [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7702) @msidlo
|
|
1342
1529
|
- [l10n] Add missing core locales for `MuiTablePagination` (#7717) @MBilalShafi
|
|
1343
1530
|
- [l10n] Improve Spanish (es-ES) and Vietnamese (vi-VN) locale (#7634) @WiXSL and @SpacerZ
|
|
1344
|
-
- [l10n] Add Belarusian (be-BY) locale (#7646) @
|
|
1531
|
+
- [l10n] Add Belarusian (be-BY) locale (#7646) @olhalink
|
|
1345
1532
|
|
|
1346
|
-
### `@mui/x-date-pickers@
|
|
1533
|
+
### `@mui/x-date-pickers@6.0.0-beta.1` / `@mui/x-date-pickers-pro@6.0.0-beta.1`
|
|
1347
1534
|
|
|
1348
1535
|
#### Changes
|
|
1349
1536
|
|
|
@@ -1355,7 +1542,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
|
|
|
1355
1542
|
- [l10n] Add Russian (ru-RU) locale (#7706) @rstmzh
|
|
1356
1543
|
- [l10n] Improve Japanese (ja-JP) locale (#7624) @makoto14
|
|
1357
1544
|
|
|
1358
|
-
### `@mui/x-codemod@
|
|
1545
|
+
### `@mui/x-codemod@6.0.0-beta.1`
|
|
1359
1546
|
|
|
1360
1547
|
#### Changes
|
|
1361
1548
|
|
|
@@ -1372,7 +1559,7 @@ We'd like to offer a big thanks to the 17 contributors who made this release pos
|
|
|
1372
1559
|
|
|
1373
1560
|
### Docs
|
|
1374
1561
|
|
|
1375
|
-
- [docs] Add info callout about available component `slots` (#7714) @
|
|
1562
|
+
- [docs] Add info callout about available component `slots` (#7714) @ivek-Prajapatii
|
|
1376
1563
|
- [docs] Add recipe for pinning grouped column (#7712) @MBilalShafi
|
|
1377
1564
|
- [docs] Fix 404 links to picker API page @oliviertassinari
|
|
1378
1565
|
- [docs] Update `DemoContainer` `components` prop using a codemod (#7574) @alexfauquette
|
|
@@ -1411,7 +1598,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
1411
1598
|
- 📚 Documentation improvements
|
|
1412
1599
|
- 🐞 Bug fixes
|
|
1413
1600
|
|
|
1414
|
-
### `@mui/x-data-grid@
|
|
1601
|
+
### `@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
1602
|
|
|
1416
1603
|
#### Breaking changes
|
|
1417
1604
|
|
|
@@ -1518,7 +1705,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
1518
1705
|
- [DataGridPremium] Keep focus on first selected cell (#7482) @m4theushw
|
|
1519
1706
|
- [l10n] Update Swedish (sv-SE) locale (#7585) @MaanTyringe
|
|
1520
1707
|
|
|
1521
|
-
### `@mui/x-date-pickers@
|
|
1708
|
+
### `@mui/x-date-pickers@6.0.0-beta.0` / `@mui/x-date-pickers-pro@6.0.0-beta.0`
|
|
1522
1709
|
|
|
1523
1710
|
#### Breaking changes
|
|
1524
1711
|
|
|
@@ -1577,7 +1764,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
1577
1764
|
- [pickers] Stop using the `WrapperVariantContext` in `DateRangeCalendar` (#7488) @flaviendelangle
|
|
1578
1765
|
- [l10n] Improve Italian (it-IT) locale (#7582) @marikadeveloper
|
|
1579
1766
|
|
|
1580
|
-
### `@mui/x-codemod@
|
|
1767
|
+
### `@mui/x-codemod@6.0.0-beta.0`
|
|
1581
1768
|
|
|
1582
1769
|
#### Changes
|
|
1583
1770
|
|
|
@@ -1609,7 +1796,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
1609
1796
|
- 📚 Documentation improvements
|
|
1610
1797
|
- 🐞 Bugfixes
|
|
1611
1798
|
|
|
1612
|
-
### `@mui/x-data-grid@
|
|
1799
|
+
### `@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
1800
|
|
|
1614
1801
|
#### Breaking changes
|
|
1615
1802
|
|
|
@@ -1728,7 +1915,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
1728
1915
|
#### Changes
|
|
1729
1916
|
|
|
1730
1917
|
- [fields] Fix Android editing (#7444) @flaviendelangle
|
|
1731
|
-
- [pickers] Add Belarusian (be-BY) locale (#7395) @
|
|
1918
|
+
- [pickers] Add Belarusian (be-BY) locale (#7395) @olhalink
|
|
1732
1919
|
- [pickers] Hide am/pm controls when there is no hour view (#7380) @flaviendelangle
|
|
1733
1920
|
- [pickers] Hide the tabs by default on `DesktopNextDateTimePicker` (#7503) @flaviendelangle
|
|
1734
1921
|
- [pickers] Refactor `shouldDisableTime` (#7299) @LukasTy
|
|
@@ -1767,7 +1954,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1767
1954
|
- 📚 Many documentation improvements
|
|
1768
1955
|
- 🐞 Bugfixes
|
|
1769
1956
|
|
|
1770
|
-
### `@mui/x-data-grid@
|
|
1957
|
+
### `@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
1958
|
|
|
1772
1959
|
#### Breaking changes
|
|
1773
1960
|
|
|
@@ -1784,7 +1971,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1784
1971
|
- [DataGrid] Remove remaining props from legacy editing API (#7381) @m4theushw
|
|
1785
1972
|
- [DataGrid] Set default `GridCellParams['value']` type to `unknown` (#6959) @cherniavskii
|
|
1786
1973
|
|
|
1787
|
-
### `@mui/x-date-pickers@
|
|
1974
|
+
### `@mui/x-date-pickers@6.0.0-alpha.14` / `@mui/x-date-pickers-pro@6.0.0-alpha.14`
|
|
1788
1975
|
|
|
1789
1976
|
#### Breaking changes
|
|
1790
1977
|
|
|
@@ -1801,7 +1988,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1801
1988
|
- [pickers] Remove the `PaperContent` slot from the new pickers (#7342) @flaviendelangle
|
|
1802
1989
|
- [pickers] Use grid for modifying the layout (#6900) @alexfauquette
|
|
1803
1990
|
|
|
1804
|
-
### `@mui/x-codemod@
|
|
1991
|
+
### `@mui/x-codemod@6.0.0-alpha.14`
|
|
1805
1992
|
|
|
1806
1993
|
#### Changes
|
|
1807
1994
|
|
|
@@ -1924,7 +2111,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
1924
2111
|
- [DataGrid] Remove `GridDensityType` enum (#7304) @cherniavskii
|
|
1925
2112
|
- [DataGrid] Remove `rowHeight` and `headerHeight` from state (#7199) @DanailH
|
|
1926
2113
|
- [DataGrid] Remove column separator to match table styles (#7067) @MBilalShafi
|
|
1927
|
-
- [DataGrid] Update Russian (ru-RU) locale (#7220) @
|
|
2114
|
+
- [DataGrid] Update Russian (ru-RU) locale (#7220) @eceluXa
|
|
1928
2115
|
- [DataGridPro] Use row ID as `key` of the detail panels (#7302) @m4theushw
|
|
1929
2116
|
- [DataGridPremium] Fix `exceljs` import with parcel (#7284) @alexfauquette
|
|
1930
2117
|
|
|
@@ -1993,7 +2180,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
1993
2180
|
- 📚 Documentation improvements
|
|
1994
2181
|
- 🐞 Bugfixes
|
|
1995
2182
|
|
|
1996
|
-
### `@mui/x-data-grid@
|
|
2183
|
+
### `@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
2184
|
|
|
1998
2185
|
#### Breaking changes
|
|
1999
2186
|
|
|
@@ -2014,7 +2201,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
2014
2201
|
- [DataGridPro] Fix missing border in right-pinned columns (#4197) @cherniavskii
|
|
2015
2202
|
- [DataGridPro] Fix wrong border color on skeleton cells (#7202) @cherniavskii
|
|
2016
2203
|
|
|
2017
|
-
### `@mui/x-date-pickers@
|
|
2204
|
+
### `@mui/x-date-pickers@6.0.0-alpha.12` / `@mui/x-date-pickers-pro@6.0.0-alpha.12`
|
|
2018
2205
|
|
|
2019
2206
|
#### Changes
|
|
2020
2207
|
|
|
@@ -2048,7 +2235,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
2048
2235
|
- ✨ Fix lazy-loading feature not working in `DataGridPremium` (#7124) @m4theushw
|
|
2049
2236
|
- 🐞 Bugfixes
|
|
2050
2237
|
|
|
2051
|
-
### `@mui/x-data-grid@
|
|
2238
|
+
### `@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
2239
|
|
|
2053
2240
|
#### Breaking changes
|
|
2054
2241
|
|
|
@@ -2063,7 +2250,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
2063
2250
|
- [DataGridPremium] Add support for lazy-loading (#7124) @m4theushw
|
|
2064
2251
|
- [DataGridPremium] Pass `groupId` to aggregation function (#7003) @m4theushw
|
|
2065
2252
|
|
|
2066
|
-
### `@mui/x-date-pickers@
|
|
2253
|
+
### `@mui/x-date-pickers@6.0.0-alpha.11` / `@mui/x-date-pickers-pro@6.0.0-alpha.11`
|
|
2067
2254
|
|
|
2068
2255
|
#### Breaking changes
|
|
2069
2256
|
|
|
@@ -2160,7 +2347,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2160
2347
|
- 📚 Documentation improvements
|
|
2161
2348
|
- 🐞 Bugfixes
|
|
2162
2349
|
|
|
2163
|
-
### `@mui/x-data-grid@
|
|
2350
|
+
### `@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
2351
|
|
|
2165
2352
|
### Breaking changes
|
|
2166
2353
|
|
|
@@ -2194,7 +2381,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2194
2381
|
- [DataGridPremium] Use custom cell component for grouping cell by default (#6692) @cherniavskii
|
|
2195
2382
|
- [l10n] Improve Ukrainian (uk-UA) locale (#7009) @rettoua
|
|
2196
2383
|
|
|
2197
|
-
### `@mui/x-date-pickers@
|
|
2384
|
+
### `@mui/x-date-pickers@6.0.0-alpha.10` / `@mui/x-date-pickers-pro@6.0.0-alpha.10`
|
|
2198
2385
|
|
|
2199
2386
|
#### Breaking changes
|
|
2200
2387
|
|
|
@@ -2257,7 +2444,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
|
|
|
2257
2444
|
- 📚 Documentation improvements
|
|
2258
2445
|
- 🐞 Bugfixes
|
|
2259
2446
|
|
|
2260
|
-
### `@mui/x-data-grid@
|
|
2447
|
+
### `@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
2448
|
|
|
2262
2449
|
### Breaking changes
|
|
2263
2450
|
|
|
@@ -2284,7 +2471,7 @@ We'd like to offer a big thanks to the 14 contributors who made this release pos
|
|
|
2284
2471
|
- [DataGridPremium] Improve typing for theme in `styleOverrides` (#6920) @m4theushw
|
|
2285
2472
|
- [l10n] Fix translation of `filterOperatorBefore` in Arabic (ar-SD) locale (#6884) @HassanGhazy
|
|
2286
2473
|
|
|
2287
|
-
### `@mui/x-date-pickers@
|
|
2474
|
+
### `@mui/x-date-pickers@6.0.0-alpha.9` / `@mui/x-date-pickers-pro@6.0.0-alpha.9`
|
|
2288
2475
|
|
|
2289
2476
|
#### Changes
|
|
2290
2477
|
|
|
@@ -2328,12 +2515,12 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
2328
2515
|
- 📚 Documentation improvements
|
|
2329
2516
|
- 🐞 Bugfixes
|
|
2330
2517
|
|
|
2331
|
-
### `@mui/x-data-grid@
|
|
2518
|
+
### `@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
2519
|
|
|
2333
2520
|
#### Changes
|
|
2334
2521
|
|
|
2335
2522
|
- [DataGrid] Fix `ErrorOverlay` not receiving defined input props (#6819) @banoth-ravinder
|
|
2336
|
-
- [DataGrid] Fix conflict with the latest version of `@types/react` (#6797) @
|
|
2523
|
+
- [DataGrid] Fix conflict with the latest version of `@types/react` (#6797) @izv
|
|
2337
2524
|
- [DataGrid] Make more `apiRef` methods private (#6700) @cherniavskii
|
|
2338
2525
|
- [DataGrid] Provide a clear error message when upgrading (#6685) @oliviertassinari
|
|
2339
2526
|
- [DataGridPremium] Allow to customize the indent of group expansion toggle (#6837) @MBilalShafi
|
|
@@ -2342,7 +2529,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
2342
2529
|
- [DataGridPro] Opt-out for column jump back on re-order (#6733) @gavbrennan
|
|
2343
2530
|
- [l10n] Improve Finnish (fi-FI) locale (#6859) @RainoPikkarainen
|
|
2344
2531
|
|
|
2345
|
-
### `@mui/x-date-pickers@
|
|
2532
|
+
### `@mui/x-date-pickers@6.0.0-alpha.8` / `@mui/x-date-pickers-pro@6.0.0-alpha.8`
|
|
2346
2533
|
|
|
2347
2534
|
#### Breaking changes
|
|
2348
2535
|
|
|
@@ -2398,14 +2585,14 @@ We'd like to offer a big thanks to the 5 contributors who made this release poss
|
|
|
2398
2585
|
- 📚 Documentation improvements
|
|
2399
2586
|
- 🐞 Bugfixes
|
|
2400
2587
|
|
|
2401
|
-
### `@mui/x-data-grid@
|
|
2588
|
+
### `@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
2589
|
|
|
2403
2590
|
#### Changes
|
|
2404
2591
|
|
|
2405
2592
|
- [DataGrid] Fix cell focus causing scroll jump when virtualization enabled (#6785) @yaredtsy
|
|
2406
2593
|
- [DataGrid] Remove items marked as `@deprecated` (#6505) @DanailH
|
|
2407
2594
|
|
|
2408
|
-
### `@mui/x-date-pickers@
|
|
2595
|
+
### `@mui/x-date-pickers@6.0.0-alpha.7` / `@mui/x-date-pickers-pro@6.0.0-alpha.7`
|
|
2409
2596
|
|
|
2410
2597
|
#### Changes
|
|
2411
2598
|
|
|
@@ -2448,7 +2635,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
2448
2635
|
- 📚 Documentation improvements
|
|
2449
2636
|
- 🐞 Bugfixes
|
|
2450
2637
|
|
|
2451
|
-
### `@mui/x-data-grid@
|
|
2638
|
+
### `@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
2639
|
|
|
2453
2640
|
#### Breaking changes
|
|
2454
2641
|
|
|
@@ -2463,7 +2650,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
2463
2650
|
- [DataGrid] Remove `disableIgnoreModificationsIfProcessingProps` prop (#6640) @m4theushw
|
|
2464
2651
|
- [DataGrid] Separate private and public `apiRef` properties (#6388) @cherniavskii
|
|
2465
2652
|
|
|
2466
|
-
### `@mui/x-date-pickers@
|
|
2653
|
+
### `@mui/x-date-pickers@6.0.0-alpha.6` / `@mui/x-date-pickers-pro@6.0.0-alpha.6`
|
|
2467
2654
|
|
|
2468
2655
|
#### Changes
|
|
2469
2656
|
|
|
@@ -2493,7 +2680,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
2493
2680
|
- 🎁 Allow to disable the autofocus of the search field when opening the column visibility panel (#6444) @e-cloud
|
|
2494
2681
|
- 🐞 Bugfixes
|
|
2495
2682
|
|
|
2496
|
-
### `@mui/x-data-grid@
|
|
2683
|
+
### `@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
2684
|
|
|
2498
2685
|
#### Breaking changes
|
|
2499
2686
|
|
|
@@ -2517,7 +2704,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
2517
2704
|
- [DataGrid] Stop exporting `gridColumnsSelector` (#6693)
|
|
2518
2705
|
- [l10n] Improve Bulgarian (bg-BG) locale (#6578) @AtanasVA
|
|
2519
2706
|
|
|
2520
|
-
### `@mui/x-date-pickers@
|
|
2707
|
+
### `@mui/x-date-pickers@6.0.0-alpha.5` / `@mui/x-date-pickers-pro@6.0.0-alpha.5`
|
|
2521
2708
|
|
|
2522
2709
|
#### Breaking changes
|
|
2523
2710
|
|
|
@@ -2611,7 +2798,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
2611
2798
|
- 🐞 Bugfixes
|
|
2612
2799
|
- 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
|
|
2613
2800
|
|
|
2614
|
-
### `@mui/x-data-grid@
|
|
2801
|
+
### `@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
2802
|
|
|
2616
2803
|
#### Breaking changes
|
|
2617
2804
|
|
|
@@ -2637,7 +2824,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
2637
2824
|
- [DataGrid] Rename selection props (#6556) @m4theushw
|
|
2638
2825
|
- [l10n] Improve Turkish (tr-TR) locale on the data grid and pickers (#6542) @ramazansancar
|
|
2639
2826
|
|
|
2640
|
-
### `@mui/x-date-pickers@
|
|
2827
|
+
### `@mui/x-date-pickers@6.0.0-alpha.4` / `@mui/x-date-pickers-pro@6.0.0-alpha.4`
|
|
2641
2828
|
|
|
2642
2829
|
#### Breaking changes
|
|
2643
2830
|
|
|
@@ -2755,7 +2942,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
2755
2942
|
- 📚 Documentation improvements
|
|
2756
2943
|
- 🐞 Bugfixes
|
|
2757
2944
|
|
|
2758
|
-
### `@mui/x-data-grid@
|
|
2945
|
+
### `@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
2946
|
|
|
2760
2947
|
#### Breaking changes
|
|
2761
2948
|
|
|
@@ -2789,7 +2976,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
2789
2976
|
- [DataGrid] Use generics instead of verbose state overrides (#6409) @cherniavskii
|
|
2790
2977
|
- [DataGridPro] Allow to limit to one filter per column (#6333) @MBilalShafi
|
|
2791
2978
|
|
|
2792
|
-
### `@mui/x-date-pickers@
|
|
2979
|
+
### `@mui/x-date-pickers@6.0.0-alpha.3` / `@mui/x-date-pickers-pro@6.0.0-alpha.3`
|
|
2793
2980
|
|
|
2794
2981
|
#### Breaking changes
|
|
2795
2982
|
|
|
@@ -2952,7 +3139,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2952
3139
|
- 📚 Documentation improvements
|
|
2953
3140
|
- 🐞 Bugfixes
|
|
2954
3141
|
|
|
2955
|
-
### `@mui/x-data-grid@
|
|
3142
|
+
### `@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
3143
|
|
|
2957
3144
|
#### Breaking changes
|
|
2958
3145
|
|
|
@@ -2977,7 +3164,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2977
3164
|
- [DataGrid] Pass generics to the components in the theme augmentation (#6269) @cherniavskii
|
|
2978
3165
|
- [DataGridPremium] Remove the aggregation from the experimental features (#6372) @flaviendelangle
|
|
2979
3166
|
|
|
2980
|
-
### `@mui/x-date-pickers@
|
|
3167
|
+
### `@mui/x-date-pickers@6.0.0-alpha.2` / `@mui/x-date-pickers-pro@6.0.0-alpha.2`
|
|
2981
3168
|
|
|
2982
3169
|
#### Breaking changes
|
|
2983
3170
|
|
|
@@ -3028,7 +3215,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
3028
3215
|
- 📚 Documentation improvements
|
|
3029
3216
|
- 🐞 Bugfixes
|
|
3030
3217
|
|
|
3031
|
-
### `@mui/x-data-grid@
|
|
3218
|
+
### `@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
3219
|
|
|
3033
3220
|
#### Breaking changes
|
|
3034
3221
|
|
|
@@ -3088,7 +3275,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
3088
3275
|
- [DataGrid] Improve print support (#6273) @oliviertassinari
|
|
3089
3276
|
- [DataGridPremium] Add missing `themeAugmentation` module (#6270) @cherniavskii
|
|
3090
3277
|
|
|
3091
|
-
### `@mui/x-date-pickers@
|
|
3278
|
+
### `@mui/x-date-pickers@6.0.0-alpha.1` / `@mui/x-date-pickers-pro@6.0.0-alpha.1`
|
|
3092
3279
|
|
|
3093
3280
|
#### Breaking changes
|
|
3094
3281
|
|
|
@@ -3160,7 +3347,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
3160
3347
|
- 📚 Documentation improvements
|
|
3161
3348
|
- 🐞 Bugfixes
|
|
3162
3349
|
|
|
3163
|
-
### `@mui/x-data-grid@
|
|
3350
|
+
### `@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
3351
|
|
|
3165
3352
|
#### Breaking changes
|
|
3166
3353
|
|
|
@@ -3197,7 +3384,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
3197
3384
|
- [DataGrid] Remove the `GridEvents` enum (#6003) @flaviendelangle
|
|
3198
3385
|
- [DataGrid] Remove the deprecated `hide` column property (#5999) @flaviendelangle
|
|
3199
3386
|
|
|
3200
|
-
### `@mui/x-date-pickers@
|
|
3387
|
+
### `@mui/x-date-pickers@6.0.0-alpha.0` / `@mui/x-date-pickers-pro@6.0.0-alpha.0`
|
|
3201
3388
|
|
|
3202
3389
|
#### Breaking changes
|
|
3203
3390
|
|