@mui/x-date-pickers 7.0.0-beta.4 → 7.0.0-beta.6

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 (41) hide show
  1. package/CHANGELOG.md +271 -61
  2. package/DatePicker/DatePickerToolbar.js +4 -1
  3. package/DateTimePicker/DateTimePickerToolbar.d.ts +2 -2
  4. package/DateTimePicker/DateTimePickerToolbar.js +3 -0
  5. package/MultiSectionDigitalClock/MultiSectionDigitalClock.js +4 -4
  6. package/MultiSectionDigitalClock/MultiSectionDigitalClockSection.js +6 -4
  7. package/TimePicker/TimePickerToolbar.js +3 -0
  8. package/index.js +1 -1
  9. package/internals/components/PickersToolbar.js +13 -9
  10. package/internals/hooks/useField/useFieldCharacterEditing.js +1 -1
  11. package/internals/hooks/useField/useFieldV6TextField.js +5 -3
  12. package/internals/hooks/useField/useFieldV7TextField.js +2 -2
  13. package/internals/models/props/toolbar.d.ts +3 -0
  14. package/locales/koKR.js +1 -2
  15. package/locales/zhCN.js +16 -20
  16. package/modern/DatePicker/DatePickerToolbar.js +4 -1
  17. package/modern/DateTimePicker/DateTimePickerToolbar.js +3 -0
  18. package/modern/MultiSectionDigitalClock/MultiSectionDigitalClock.js +4 -4
  19. package/modern/MultiSectionDigitalClock/MultiSectionDigitalClockSection.js +5 -3
  20. package/modern/TimePicker/TimePickerToolbar.js +3 -0
  21. package/modern/index.js +1 -1
  22. package/modern/internals/components/PickersToolbar.js +13 -9
  23. package/modern/internals/hooks/useField/useFieldCharacterEditing.js +1 -1
  24. package/modern/internals/hooks/useField/useFieldV6TextField.js +5 -3
  25. package/modern/internals/hooks/useField/useFieldV7TextField.js +2 -2
  26. package/modern/locales/koKR.js +1 -2
  27. package/modern/locales/zhCN.js +16 -20
  28. package/node/DatePicker/DatePickerToolbar.js +4 -1
  29. package/node/DateTimePicker/DateTimePickerToolbar.js +3 -0
  30. package/node/MultiSectionDigitalClock/MultiSectionDigitalClock.js +4 -4
  31. package/node/MultiSectionDigitalClock/MultiSectionDigitalClockSection.js +5 -3
  32. package/node/TimePicker/TimePickerToolbar.js +3 -0
  33. package/node/index.js +1 -1
  34. package/node/internals/components/PickersToolbar.js +13 -9
  35. package/node/internals/hooks/useField/useFieldCharacterEditing.js +1 -1
  36. package/node/internals/hooks/useField/useFieldV6TextField.js +5 -3
  37. package/node/internals/hooks/useField/useFieldV7TextField.js +2 -2
  38. package/node/locales/koKR.js +1 -2
  39. package/node/locales/zhCN.js +16 -20
  40. package/package.json +2 -2
  41. package/themeAugmentation/props.d.ts +9 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,175 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 7.0.0-beta.6
7
+
8
+ _Mar 8, 2024_
9
+
10
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🐞 Bugfixes
13
+ - 📚 Documentation improvements
14
+
15
+ ### Data Grid
16
+
17
+ #### `@mui/x-data-grid@7.0.0-beta.6`
18
+
19
+ - [DataGrid] Fix crashing of demos on rating change (#12315) @sai6855
20
+ - [DataGrid] Fix double border below header (#12349) @joespeargresham
21
+ - [DataGrid] Fix empty sort being saved in the `sortModel` (#12325) @MBilalShafi
22
+ - [DataGrid] Remove unnecessary `stopCellMode` event in `renderEditRating` component (#12335) @sai6855
23
+ - [DataGrid] Small performance optimizations (#12346) @romgrk
24
+
25
+ #### `@mui/x-data-grid-pro@7.0.0-beta.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
26
+
27
+ Same changes as in `@mui/x-data-grid@7.0.0-beta.6`, plus:
28
+
29
+ - [DataGridPro] Rework `onRowsScrollEnd` to use `IntersectionObserver` (#8672) @DanailH
30
+
31
+ #### `@mui/x-data-grid-premium@7.0.0-beta.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
32
+
33
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
34
+
35
+ ### Charts
36
+
37
+ #### `@mui/x-charts@7.0.0-beta.6`
38
+
39
+ - [charts] Add context to axis value formatter (#12172) @alexfauquette
40
+ - [charts] Customize tick position for band scale (#12316) @alexfauquette
41
+ - [charts] Fix RTL legend (#12175) @alexfauquette
42
+
43
+ ### Tree View
44
+
45
+ #### Breaking changes
46
+
47
+ - The component used to animate the item children is now defined as a slot on the `TreeItem` component.
48
+
49
+ If you were passing a `TransitionComponent` or `TransitionProps` to your `TreeItem` component,
50
+ you need to use the new `groupTransition` slot on this component:
51
+
52
+ ```diff
53
+ <SimpleTreeView>
54
+ <TreeItem
55
+ nodeId="1"
56
+ label="Node 1"
57
+ - TransitionComponent={Fade}
58
+ + slots={{ groupTransition: Fade }}
59
+ - TransitionProps={{ timeout: 600 }}
60
+ + slotProps={{ groupTransition: { timeout: 600 } }}
61
+ />
62
+ </SimpleTreeView>
63
+ ```
64
+
65
+ - The `group` class of the `TreeItem` component has been renamed to `groupTransition` to match with its new slot name.
66
+
67
+ ```diff
68
+ const StyledTreeItem = styled(TreeItem)({
69
+ - [`& .${treeItemClasses.group}`]: {
70
+ + [`& .${treeItemClasses.groupTransition}`]: {
71
+ marginLeft: 20,
72
+ },
73
+ });
74
+ ```
75
+
76
+ #### `@mui/x-tree-view@7.0.0-beta.6`
77
+
78
+ - [TreeView] Fix invalid nodes state when updating `props.items` (#12359) @flaviendelangle
79
+ - [TreeView] In the `RichTreeView`, do not use the item id as the HTML id attribute (#12319) @flaviendelangle
80
+ - [TreeView] New instance and publicAPI method: `getItem` (#12251) @flaviendelangle
81
+ - [TreeView] Replace `TransitionComponent` and `TransitionProps` with a `groupTransition` slot (#12336) @flaviendelangle
82
+
83
+ ### Docs
84
+
85
+ - [docs] Add a note about `z-index` usage in SVG (#12337) @alexfauquette
86
+ - [docs] `RichTreeView` customization docs (#12231) @noraleonte
87
+
88
+ ### Core
89
+
90
+ - [test] Add `Charts` test (#11551) @alexfauquette
91
+
92
+ ## 7.0.0-beta.5
93
+
94
+ _Mar 1, 2024_
95
+
96
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
97
+
98
+ - 🎁 Add `getSortComparator` for more advanced sorting behaviors (#12215) @cherniavskii
99
+ - 🚀 Add `use client` directive to the Grid packages (#11803) @MBilalShafi
100
+ - 🌍 Improve Korean (ko-KR) and Chinese (zh-CN) locales on the Pickers
101
+ - 🐞 Bugfixes
102
+ - 📚 Documentation improvements
103
+
104
+ ### Data Grid
105
+
106
+ #### `@mui/x-data-grid@7.0.0-beta.5`
107
+
108
+ - [DataGrid] Add `getSortComparator` for more advanced sorting behaviors (#12215) @cherniavskii
109
+ - [DataGrid] Add `use client` directive to the Grid packages (#11803) @MBilalShafi
110
+ - [DataGrid] Fix `disableResetButton` and `disableShowHideToggle` flags to not exclude each other (#12169) @adyry
111
+ - [DataGrid] Fix cell range classnames (#12230) @romgrk
112
+ - [DataGrid] Fix wrong offset for right-pinned columns when toggling dark/light modes (#12233) @cherniavskii
113
+ - [DataGrid] Improve row virtualization and rendering performance (#12247) @romgrk
114
+ - [DataGrid] Improve performance by removing `querySelector` call (#12229) @romgrk
115
+ - [DataGrid] Fix `onColumnWidthChange` called before autosize affects column width (#12140) @shaharyar-shamshi
116
+ - [DataGrid] Fix boolean "is" filter (#12117) @shaharyar-shamshi
117
+ - [DataGrid] Fix `upsertFilterItems` removing filters that are not part of the update (#11954) @gitstart
118
+ - [DataGrid] Render scrollbars only if there is scroll (#12265) @cherniavskii
119
+
120
+ #### `@mui/x-data-grid-pro@7.0.0-beta.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
121
+
122
+ Same changes as in `@mui/x-data-grid@7.0.0-beta.5`, plus:
123
+
124
+ - [DataGridPro] Fix column resize errors on MacOS with automatic scrollbars enabled (#12217) @cherniavskii
125
+ - [DataGridPro] Fix lazy-loading crash (#12080) @romgrk
126
+ - [DataGridPro] Fix useGridRows not giving error on reversed data (#10821) @martijn-basesoft
127
+
128
+ #### `@mui/x-data-grid-premium@7.0.0-beta.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
129
+
130
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.5`, plus:
131
+
132
+ - [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12235) @MBilalShafi
133
+
134
+ ### Date and Time Pickers
135
+
136
+ #### `@mui/x-date-pickers@7.0.0-beta.5`
137
+
138
+ - [pickers] Fix toolbar components props handling (#12211) @LukasTy
139
+ - [l10n] Improve Chinese (zh-CN) locale (#12245) @headironc
140
+ - [l10n] Improve Korean (ko-KR) locale (#12192) @Luzi
141
+
142
+ #### `@mui/x-date-pickers-pro@7.0.0-beta.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
143
+
144
+ Same changes as in `@mui/x-date-pickers@7.0.0-beta.5`.
145
+
146
+ - [DateTimeRangePicker] Fix validation behavior (#12243) @LukasTy
147
+
148
+ ### Charts / `@mui/x-charts@7.0.0-beta.5`
149
+
150
+ - [charts] Fix grid duplicated key (#12208) @alexfauquette
151
+
152
+ ### Tree View / `@mui/x-tree-view@7.0.0-beta.5`
153
+
154
+ - [TreeView] Add public API and expose focus method (#12143) @noraleonte
155
+
156
+ ### Docs
157
+
158
+ - [docs] Fix image layout shift when loading @oliviertassinari
159
+ - [docs] Match Material UI repo comment for redirections @oliviertassinari
160
+ - [docs] Non breaking spaces @oliviertassinari
161
+ - [docs] Polish the Date Picker playground (#11869) @zanivan
162
+ - [docs] Standardize WAI-ARIA references @oliviertassinari
163
+
164
+ ### Core
165
+
166
+ - [core] Allow local docs next.js settings (#12227) @romgrk
167
+ - [core] Remove grid folder from `getComponentInfo` RegExp (#12241) @flaviendelangle
168
+ - [core] Remove `window.` reference for common globals @oliviertassinari
169
+ - [core] Use runtime agnostic setTimeout type @oliviertassinari
170
+ - [docs-infra] Fix Stack Overflow breaking space @oliviertassinari
171
+ - [docs-infra] Fix missing non breaking spaces @oliviertassinari
172
+ - [github] Update `no-response` workflow (#12193) @MBilalShafi
173
+ - [infra] Fix missing permission reset @oliviertassinari
174
+
6
175
  ## 7.0.0-beta.4
7
176
 
8
177
  _Feb 23, 2024_
@@ -38,7 +207,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.4`.
38
207
 
39
208
  Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
40
209
 
41
- ### Date Pickers
210
+ ### Date and Time Pickers
42
211
 
43
212
  #### Breaking changes
44
213
 
@@ -49,7 +218,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
49
218
  <DateField
50
219
  - selectedSections={{ startIndex: 0, endIndex: 0 }}
51
220
  + selectedSections={0}
52
-
221
+
53
222
  // If the field has 3 sections
54
223
  - selectedSections={{ startIndex: 0, endIndex: 2 }}
55
224
  + selectedSections="all"
@@ -68,20 +237,20 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
68
237
  + enableAccessibleFieldDOMStructure,
69
238
  // ... rest of the props you are using
70
239
  } = props;
71
-
240
+
72
241
  return ( /* Some UI to edit the date */ )
73
242
  }
74
-
243
+
75
244
  function MyCustomField(props) {
76
245
  const fieldResponse = useDateField<Dayjs, false, typeof textFieldProps>({
77
246
  ...props,
78
247
  + // If you only support one DOM structure, we advise you to hardcode it here to avoid unwanted switches in your application
79
248
  + enableAccessibleFieldDOMStructure: false,
80
249
  });
81
-
250
+
82
251
  return <MyCustomTextField ref={ref} {...fieldResponse} />;
83
252
  }
84
-
253
+
85
254
  function App() {
86
255
  return <DatePicker slots={{ field: MyCustomField }} />;
87
256
  }
@@ -252,7 +421,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.2`, plus:
252
421
  - [DataGridPremium] Fix autosize grouping cell (#11870) @romgrk
253
422
  - [DataGridPremium] Fix clipboard paste not working with Caps Lock enabled (#11965) @shaharyar-shamshi
254
423
 
255
- ### Date Pickers
424
+ ### Date and Time Pickers
256
425
 
257
426
  #### `@mui/x-date-pickers@7.0.0-beta.2`
258
427
 
@@ -439,7 +608,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.1`.
439
608
 
440
609
  Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.1`.
441
610
 
442
- ### Date Pickers
611
+ ### Date and Time Pickers
443
612
 
444
613
  #### `@mui/x-date-pickers@7.0.0-beta.1`
445
614
 
@@ -544,7 +713,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.0`.
544
713
 
545
714
  Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.0`.
546
715
 
547
- ### Date Pickers
716
+ ### Date and Time Pickers
548
717
 
549
718
  #### `@mui/x-date-pickers@7.0.0-beta.0`
550
719
 
@@ -683,7 +852,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.9`, plus:
683
852
  - [DataGridPremium] Allow aggregation to be applied for non-aggregable columns (#11574) @MBilalShafi
684
853
  - [DataGridPremium] Allow programmatically grouping non-groupable columns (#11539) @MBilalShafi
685
854
 
686
- ### Date Pickers
855
+ ### Date and Time Pickers
687
856
 
688
857
  #### Breaking changes
689
858
 
@@ -968,7 +1137,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.8`.
968
1137
 
969
1138
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.8`.
970
1139
 
971
- ### Date Pickers
1140
+ ### Date and Time Pickers
972
1141
 
973
1142
  #### `@mui/x-date-pickers@7.0.0-alpha.8`
974
1143
 
@@ -1058,7 +1227,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.7`.
1058
1227
 
1059
1228
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.7`.
1060
1229
 
1061
- ### Date Pickers
1230
+ ### Date and Time Pickers
1062
1231
 
1063
1232
  #### `@mui/x-date-pickers@7.0.0-alpha.7`
1064
1233
 
@@ -1200,7 +1369,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.6`.
1200
1369
 
1201
1370
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.6`.
1202
1371
 
1203
- ### Date Pickers
1372
+ ### Date and Time Pickers
1204
1373
 
1205
1374
  #### `@mui/x-date-pickers@7.0.0-alpha.6`
1206
1375
 
@@ -1268,7 +1437,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.5`.
1268
1437
 
1269
1438
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
1270
1439
 
1271
- ### Date Pickers
1440
+ ### Date and Time Pickers
1272
1441
 
1273
1442
  #### Breaking changes
1274
1443
 
@@ -1452,7 +1621,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.4`, plus:
1452
1621
 
1453
1622
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.4`.
1454
1623
 
1455
- ### Date Pickers
1624
+ ### Date and Time Pickers
1456
1625
 
1457
1626
  #### `@mui/x-date-pickers@7.0.0-alpha.4`
1458
1627
 
@@ -1552,7 +1721,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
1552
1721
  - [DataGridPremium] Make Cell selection feature stable (#11246) @MBilalShafi
1553
1722
  - [DataGridPremium] Make Clipboard paste feature stable (#11248) @MBilalShafi
1554
1723
 
1555
- ### Date Pickers
1724
+ ### Date and Time Pickers
1556
1725
 
1557
1726
  #### Breaking changes
1558
1727
 
@@ -1689,7 +1858,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.2`.
1689
1858
 
1690
1859
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`.
1691
1860
 
1692
- ### Date Pickers
1861
+ ### Date and Time Pickers
1693
1862
 
1694
1863
  #### Breaking changes
1695
1864
 
@@ -1795,7 +1964,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
1795
1964
  - 🐞 Bugfixes
1796
1965
  - 📚 Documentation improvements
1797
1966
 
1798
- ### Date Pickers
1967
+ ### Date and Time Pickers
1799
1968
 
1800
1969
  #### `@mui/x-date-pickers@7.0.0-alpha.1` / `@mui/x-date-pickers-pro@7.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1801
1970
 
@@ -2291,7 +2460,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.0`, plus:
2291
2460
 
2292
2461
  - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10936) @cherniavskii
2293
2462
 
2294
- ### Date Pickers
2463
+ ### Date and Time Pickers
2295
2464
 
2296
2465
  #### Breaking changes
2297
2466
 
@@ -2352,6 +2521,47 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
2352
2521
  - [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi
2353
2522
  - [license] Correctly throw errors (#10924) @oliviertassinari
2354
2523
 
2524
+ ## 6.19.6
2525
+
2526
+ _Mar 1, 2024_
2527
+
2528
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
2529
+
2530
+ - 🌍 Improve Korean (ko-KR) and Chinese (zh-CN) locales on the Pickers
2531
+ - 🐞 Bugfixes
2532
+ - 📚 Documentation improvements
2533
+
2534
+ ### Data Grid
2535
+
2536
+ #### `@mui/x-data-grid@6.19.6`
2537
+
2538
+ - [DataGrid] Fix error when existing rows are passed to `replaceRows` (@martijn-basesoft)
2539
+
2540
+ #### `@mui/x-data-grid-pro@6.19.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2541
+
2542
+ Same changes as in `@mui/x-data-grid@6.19.6`.
2543
+
2544
+ #### `@mui/x-data-grid-premium@6.19.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2545
+
2546
+ Same changes as in `@mui/x-data-grid-pro@6.19.6`, plus:
2547
+
2548
+ - [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12255) @MBilalShafi
2549
+
2550
+ ### Date and Time Pickers
2551
+
2552
+ #### `@mui/x-date-pickers@6.19.6`
2553
+
2554
+ - [l10n] Improve Chinese (zh-CN) locale (#12250) @headironc
2555
+ - [l10n] Improve Korean (ko-KR) locale (#12186) @Luzi
2556
+
2557
+ #### `@mui/x-date-pickers-pro@6.19.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2558
+
2559
+ Same changes as in `@mui/x-date-pickers@6.19.6`.
2560
+
2561
+ ### Docs
2562
+
2563
+ - [docs] Update lazy loading demo to show skeleton rows during initial rows fetch (#12062) @cherniavskii
2564
+
2355
2565
  ## 6.19.5
2356
2566
 
2357
2567
  _Feb 23, 2024_
@@ -2375,7 +2585,7 @@ Same changes as in `@mui/x-data-grid@6.19.5`.
2375
2585
 
2376
2586
  Same changes as in `@mui/x-data-grid-pro@6.19.5`.
2377
2587
 
2378
- ### Date Pickers
2588
+ ### Date and Time Pickers
2379
2589
 
2380
2590
  #### `@mui/x-date-pickers@6.19.5`
2381
2591
 
@@ -2394,8 +2604,8 @@ Same changes as in `@mui/x-date-pickers@6.19.5`.
2394
2604
 
2395
2605
  - [docs] Clarify Pickers 'Component composition' section (#12147) @LukasTy
2396
2606
  - [docs] Fix 301 redirection to StackBlitz @oliviertassinari
2397
- - [docs] Fix 301 to Material UI @oliviertassinari
2398
- - [docs] Fix 301 to Material UI @oliviertassinari
2607
+ - [docs] Fix 301 to Material UI @oliviertassinari
2608
+ - [docs] Fix 301 to Material UI @oliviertassinari
2399
2609
  - [docs] Fix 404 links to translation source @oliviertassinari
2400
2610
  - [docs] Fix dead link to translations @oliviertassinari
2401
2611
  - [docs] Fix the Treemap illustration (#12189) @danilo-leal
@@ -2444,7 +2654,7 @@ Same changes as in `@mui/x-data-grid-pro@6.19.4`, plus:
2444
2654
  - [DataGridPremium] Fix autosize grouping cell (#11990) @romgrk
2445
2655
  - [DataGridPremium] Fix error after closing print export (#11889) @cherniavskii
2446
2656
 
2447
- ### Date Pickers
2657
+ ### Date and Time Pickers
2448
2658
 
2449
2659
  #### `@mui/x-date-pickers@6.19.4`
2450
2660
 
@@ -2493,7 +2703,7 @@ Same changes as in `@mui/x-data-grid@6.19.3`.
2493
2703
 
2494
2704
  Same changes as in `@mui/x-data-grid-pro@6.19.3`.
2495
2705
 
2496
- ### Date Pickers
2706
+ ### Date and Time Pickers
2497
2707
 
2498
2708
  #### `@mui/x-date-pickers@6.19.3`
2499
2709
 
@@ -2527,7 +2737,7 @@ We'd like to offer a big thanks to the 2 contributors who made this release poss
2527
2737
  - 🚀 Apply the `layout.tabs` class to `Tabs` slot (@LukasTy) (#11782)
2528
2738
  - 🐞 Bugfixes
2529
2739
 
2530
- ### Date Pickers
2740
+ ### Date and Time Pickers
2531
2741
 
2532
2742
  #### `@mui/x-date-pickers@6.19.2`
2533
2743
 
@@ -2601,7 +2811,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
2601
2811
  import { de } from 'date-fns/locale/de';
2602
2812
  ```
2603
2813
 
2604
- ### Date Pickers
2814
+ ### Date and Time Pickers
2605
2815
 
2606
2816
  #### `@mui/x-date-pickers@6.19.0`
2607
2817
 
@@ -2648,7 +2858,7 @@ Same changes as in `@mui/x-data-grid@6.18.7`.
2648
2858
 
2649
2859
  Same changes as in `@mui/x-data-grid-pro@6.18.7`.
2650
2860
 
2651
- ### Date Pickers
2861
+ ### Date and Time Pickers
2652
2862
 
2653
2863
  #### `@mui/x-date-pickers@6.18.7`
2654
2864
 
@@ -2690,7 +2900,7 @@ Same changes as in `@mui/x-data-grid@6.18.6`.
2690
2900
 
2691
2901
  Same changes as in `@mui/x-data-grid-pro@6.18.6`.
2692
2902
 
2693
- ### Date Pickers
2903
+ ### Date and Time Pickers
2694
2904
 
2695
2905
  #### `@mui/x-date-pickers@6.18.6`
2696
2906
 
@@ -2739,7 +2949,7 @@ Same changes as in `@mui/x-data-grid@6.18.5`.
2739
2949
 
2740
2950
  Same changes as in `@mui/x-data-grid-pro@6.18.5`.
2741
2951
 
2742
- ### Date Pickers
2952
+ ### Date and Time Pickers
2743
2953
 
2744
2954
  #### `@mui/x-date-pickers@6.18.5`
2745
2955
 
@@ -2782,7 +2992,7 @@ Same changes as in `@mui/x-data-grid@6.18.4`.
2782
2992
 
2783
2993
  Same changes as in `@mui/x-data-grid-pro@6.18.4`.
2784
2994
 
2785
- ### Date Pickers
2995
+ ### Date and Time Pickers
2786
2996
 
2787
2997
  #### `@mui/x-date-pickers@6.18.4`
2788
2998
 
@@ -2828,7 +3038,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.3`, plus:
2828
3038
  - [DataGridPremium] Fix aggregated column ignoring column definition changes (#11176) @cherniavskii
2829
3039
  - [DataGridPremium] Fix custom filter operators not working on aggregated column (#11201) @cherniavskii
2830
3040
 
2831
- ### Date Pickers
3041
+ ### Date and Time Pickers
2832
3042
 
2833
3043
  #### `@mui/x-date-pickers@6.18.3`
2834
3044
 
@@ -2884,7 +3094,7 @@ Same changes as in `@mui/x-data-grid@6.18.2`.
2884
3094
 
2885
3095
  Same changes as in `@mui/x-data-grid-pro@6.18.2`.
2886
3096
 
2887
- ### Date Pickers
3097
+ ### Date and Time Pickers
2888
3098
 
2889
3099
  #### `@mui/x-date-pickers@6.18.2`
2890
3100
 
@@ -2941,7 +3151,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.1`, plus:
2941
3151
 
2942
3152
  - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10961) @cherniavskii
2943
3153
 
2944
- ### Date Pickers
3154
+ ### Date and Time Pickers
2945
3155
 
2946
3156
  #### `@mui/x-date-pickers@6.18.1`
2947
3157
 
@@ -3000,7 +3210,7 @@ Same changes as in `@mui/x-data-grid@6.18.0`.
3000
3210
 
3001
3211
  Same changes as in `@mui/x-data-grid-pro@6.18.0`.
3002
3212
 
3003
- ### Date Pickers
3213
+ ### Date and Time Pickers
3004
3214
 
3005
3215
  #### `@mui/x-date-pickers@6.18.0`
3006
3216
 
@@ -3065,7 +3275,7 @@ Same changes as in `@mui/x-data-grid-pro@6.17.0`, plus:
3065
3275
  - [DataGridPremium] Fix `sum` aggregation to ignore non-numeric values (#10730) @cherniavskii
3066
3276
  - [DataGridPremium] Fix cell selection throwing index error on second page and beyond (#10784) @MBilalShafi
3067
3277
 
3068
- ### Date Pickers
3278
+ ### Date and Time Pickers
3069
3279
 
3070
3280
  #### `@mui/x-date-pickers@6.17.0`
3071
3281
 
@@ -3119,7 +3329,7 @@ Same changes as in `@mui/x-data-grid@6.16.3`.
3119
3329
 
3120
3330
  Same changes as in `@mui/x-data-grid-pro@6.16.3`.
3121
3331
 
3122
- ### Date Pickers
3332
+ ### Date and Time Pickers
3123
3333
 
3124
3334
  #### `@mui/x-date-pickers@6.16.3`
3125
3335
 
@@ -3195,7 +3405,7 @@ Same changes as in `@mui/x-data-grid@6.16.2`, plus:
3195
3405
 
3196
3406
  Same changes as in `@mui/x-data-grid-pro@6.16.2`.
3197
3407
 
3198
- ### Date Pickers
3408
+ ### Date and Time Pickers
3199
3409
 
3200
3410
  #### `@mui/x-date-pickers@6.16.2`
3201
3411
 
@@ -3290,7 +3500,7 @@ Same changes as in `@mui/x-data-grid@6.16.1`.
3290
3500
 
3291
3501
  Same changes as in `@mui/x-data-grid-pro@6.16.1`.
3292
3502
 
3293
- ### Date Pickers
3503
+ ### Date and Time Pickers
3294
3504
 
3295
3505
  #### `@mui/x-date-pickers@6.16.1`
3296
3506
 
@@ -3366,7 +3576,7 @@ Same changes as in `@mui/x-data-grid@6.16.0`, plus:
3366
3576
 
3367
3577
  Same changes as in `@mui/x-data-grid-pro@6.16.0`.
3368
3578
 
3369
- ### Date Pickers
3579
+ ### Date and Time Pickers
3370
3580
 
3371
3581
  #### `@mui/x-date-pickers@6.16.0`
3372
3582
 
@@ -3445,7 +3655,7 @@ Same changes as in `@mui/x-data-grid@6.15.0`, plus:
3445
3655
 
3446
3656
  Same changes as in `@mui/x-data-grid-pro@6.15.0`.
3447
3657
 
3448
- ### Date Pickers
3658
+ ### Date and Time Pickers
3449
3659
 
3450
3660
  #### `@mui/x-date-pickers@6.15.0`
3451
3661
 
@@ -3524,7 +3734,7 @@ Same changes as in `@mui/x-data-grid-pro@6.14.0`, plus:
3524
3734
 
3525
3735
  - [DataGridPremium] Fix clipboard import cutting off at 100 rows (#9930) @gitstart
3526
3736
 
3527
- ### Date Pickers
3737
+ ### Date and Time Pickers
3528
3738
 
3529
3739
  #### `@mui/x-date-pickers@6.14.0`
3530
3740
 
@@ -3605,7 +3815,7 @@ Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus:
3605
3815
 
3606
3816
  - [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii
3607
3817
 
3608
- ### Date Pickers
3818
+ ### Date and Time Pickers
3609
3819
 
3610
3820
  #### `@mui/x-date-pickers@6.13.0`
3611
3821
 
@@ -3677,7 +3887,7 @@ Same changes as in `@mui/x-data-grid@6.12.1`.
3677
3887
 
3678
3888
  Same changes as in `@mui/x-data-grid-pro@6.12.1`.
3679
3889
 
3680
- ### Date Pickers
3890
+ ### Date and Time Pickers
3681
3891
 
3682
3892
  #### `@mui/x-date-pickers@6.12.1`
3683
3893
 
@@ -3733,7 +3943,7 @@ Same changes as in `@mui/x-data-grid@6.12.0`.
3733
3943
 
3734
3944
  Same changes as in `@mui/x-data-grid-pro@6.12.0`.
3735
3945
 
3736
- ### Date Pickers
3946
+ ### Date and Time Pickers
3737
3947
 
3738
3948
  #### `@mui/x-date-pickers@6.12.0`
3739
3949
 
@@ -3804,7 +4014,7 @@ Same changes as in `@mui/x-data-grid@6.11.2`.
3804
4014
 
3805
4015
  Same changes as in `@mui/x-data-grid-pro@6.11.2`.
3806
4016
 
3807
- ### Date Pickers
4017
+ ### Date and Time Pickers
3808
4018
 
3809
4019
  #### `@mui/x-date-pickers@6.11.2`
3810
4020
 
@@ -3855,7 +4065,7 @@ Same changes as in `@mui/x-data-grid@6.11.1`.
3855
4065
 
3856
4066
  Same changes as in `@mui/x-data-grid-pro@6.11.1`.
3857
4067
 
3858
- ### Date Pickers
4068
+ ### Date and Time Pickers
3859
4069
 
3860
4070
  #### `@mui/x-date-pickers@6.11.1`
3861
4071
 
@@ -3924,7 +4134,7 @@ Same changes as in `@mui/x-data-grid@6.11.0`.
3924
4134
 
3925
4135
  Same changes as in `@mui/x-data-grid-pro@6.11.0`.
3926
4136
 
3927
- ### Date Pickers
4137
+ ### Date and Time Pickers
3928
4138
 
3929
4139
  #### `@mui/x-date-pickers@6.11.0`
3930
4140
 
@@ -4012,7 +4222,7 @@ Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus:
4012
4222
 
4013
4223
  - [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
4014
4224
 
4015
- ### Date Pickers
4225
+ ### Date and Time Pickers
4016
4226
 
4017
4227
  #### `@mui/x-date-pickers@6.10.2`
4018
4228
 
@@ -4081,7 +4291,7 @@ Same changes as in `@mui/x-data-grid@6.10.1`, plus:
4081
4291
 
4082
4292
  Same changes as in `@mui/x-data-grid-pro@6.10.1`.
4083
4293
 
4084
- ### Date Pickers
4294
+ ### Date and Time Pickers
4085
4295
 
4086
4296
  #### `@mui/x-date-pickers@6.10.1`
4087
4297
 
@@ -4147,7 +4357,7 @@ Same changes as in `@mui/x-data-grid@6.10.0`.
4147
4357
 
4148
4358
  Same changes as in `@mui/x-data-grid-pro@6.10.0`.
4149
4359
 
4150
- ### Date Pickers
4360
+ ### Date and Time Pickers
4151
4361
 
4152
4362
  #### `@mui/x-date-pickers@6.10.0`
4153
4363
 
@@ -4217,7 +4427,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
4217
4427
 
4218
4428
  - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
4219
4429
 
4220
- ### Date Pickers
4430
+ ### Date and Time Pickers
4221
4431
 
4222
4432
  #### `@mui/x-date-pickers@6.9.2`
4223
4433
 
@@ -4264,7 +4474,7 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
4264
4474
 
4265
4475
  #### `@mui/x-data-grid@6.9.1`
4266
4476
 
4267
- - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
4477
+ - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
4268
4478
  - [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
4269
4479
  - [DataGrid] Don't forward `editCellState` prop to DOM element (#9501) @m4theushw
4270
4480
  - [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
@@ -4283,7 +4493,7 @@ Same changes as in `@mui/x-data-grid@6.9.1`, plus:
4283
4493
 
4284
4494
  Same changes as in `@mui/x-data-grid-pro@6.9.1`.
4285
4495
 
4286
- ### Date Pickers
4496
+ ### Date and Time Pickers
4287
4497
 
4288
4498
  #### `@mui/x-date-pickers@6.9.1`
4289
4499
 
@@ -4365,7 +4575,7 @@ Same changes as in `@mui/x-data-grid@6.9.0`.
4365
4575
 
4366
4576
  Same changes as in `@mui/x-data-grid-pro@6.9.0`.
4367
4577
 
4368
- ### Date Pickers
4578
+ ### Date and Time Pickers
4369
4579
 
4370
4580
  #### `@mui/x-date-pickers@6.9.0`
4371
4581
 
@@ -4395,7 +4605,7 @@ Same changes as in `@mui/x-date-pickers@6.9.0`.
4395
4605
  - [docs] Fix random screenshot generation (#9364) @cherniavskii
4396
4606
  - [docs] Remove random generation from chart doc example (#9343) @flaviendelangle
4397
4607
  - [docs] Sync h1 with sidenav link (#9252) @oliviertassinari
4398
- - [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
4608
+ - [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
4399
4609
 
4400
4610
  ### Core
4401
4611
 
@@ -4441,7 +4651,7 @@ Same changes as in `@mui/x-data-grid@6.8.0`.
4441
4651
 
4442
4652
  Same changes as in `@mui/x-data-grid-pro@6.8.0`.
4443
4653
 
4444
- ### Date Pickers
4654
+ ### Date and Time Pickers
4445
4655
 
4446
4656
  #### `@mui/x-date-pickers@6.8.0`
4447
4657
 
@@ -4722,8 +4932,8 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
4722
4932
 
4723
4933
  - [DataGrid] Fix DataGrid rendering in JSDOM (#8968) @cherniavskii
4724
4934
  - [DataGrid] Fix layout when rendered inside a parent with `display: grid` (#8577) @cherniavskii
4725
- - [DataGrid] Add Joy UI icon slots (#8940) @siriwatknp
4726
- - [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
4935
+ - [DataGrid] Add Joy UI icon slots (#8940) @siriwatknp
4936
+ - [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
4727
4937
  - [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
4728
4938
  - [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
4729
4939
  - [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
@@ -4773,7 +4983,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
4773
4983
  - [DataGrid] Fix falsy filter values not showing in filter button tooltip (#8550) @ithrforu
4774
4984
  - [DataGrid] Fix missing watermark in Pro and Premium packages (#8797) @cherniavskii
4775
4985
  - [DataGrid] Remove unwarranted warning log (#8847) @romgrk
4776
- - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
4986
+ - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
4777
4987
  - [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
4778
4988
 
4779
4989
  ### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
@@ -4824,7 +5034,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
4824
5034
  - [DataGrid] Add overlay classes to `gridClasses` (#8686) @lindapaiste
4825
5035
  - [DataGrid] Avoid passing `api` prop to div (#8679) @someden
4826
5036
  - [DataGrid] Fix 'ResizeObserver loop limit exceeded' error (#8744) @m4theushw
4827
- - [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
5037
+ - [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
4828
5038
  - [DataGrid] Fix aggregation label alignment (#8694) @joserodolfofreitas
4829
5039
  - [DataGridPremium] Fix infinite loop when updating grouped rows (#8693) @cherniavskii
4830
5040
  - [DataGridPro] Fix error after updating `columns` and `columnGroupingModel` at once (#8730) @cherniavskii
@@ -4886,7 +5096,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
4886
5096
  #### Changes
4887
5097
 
4888
5098
  - [DataGrid] Add `getTogglableColumns` to `Hide all` and `Show all` actions (#8496) @MBilalShafi
4889
- - [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
5099
+ - [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
4890
5100
  - [DataGrid] Fix print style when rendering inside Shadow DOM (#8656) @Bwatermelon
4891
5101
  - [DataGrid] Replace `GridAutoSizer` with `ResizeObserver` (#8091) @m4theushw
4892
5102
  - [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw