@mui/x-license 7.0.0-beta.2 → 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 (38) hide show
  1. package/CHANGELOG.md +560 -75
  2. package/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
  3. package/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.d.ts +4 -0
  4. package/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.js +8 -0
  5. package/index.js +1 -1
  6. package/modern/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
  7. package/modern/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.js +8 -0
  8. package/modern/index.js +1 -1
  9. package/modern/useLicenseVerifier/useLicenseVerifier.js +2 -2
  10. package/node/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
  11. package/node/Unstable_LicenseInfoProvider/{LicenseInfoContext.js → MuiLicenseInfoContext.js} +6 -2
  12. package/node/index.js +1 -1
  13. package/node/useLicenseVerifier/useLicenseVerifier.js +2 -2
  14. package/package.json +3 -4
  15. package/useLicenseVerifier/useLicenseVerifier.js +2 -2
  16. package/Unstable_LicenseInfoProvider/LicenseInfoContext.d.ts +0 -4
  17. package/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
  18. package/legacy/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
  19. package/legacy/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +0 -18
  20. package/legacy/Unstable_LicenseInfoProvider/index.js +0 -1
  21. package/legacy/Watermark/Watermark.js +0 -44
  22. package/legacy/Watermark/index.js +0 -1
  23. package/legacy/encoding/base64.js +0 -57
  24. package/legacy/encoding/md5.js +0 -42
  25. package/legacy/generateLicense/generateLicense.js +0 -18
  26. package/legacy/generateLicense/index.js +0 -1
  27. package/legacy/index.js +0 -13
  28. package/legacy/useLicenseVerifier/index.js +0 -1
  29. package/legacy/useLicenseVerifier/useLicenseVerifier.js +0 -59
  30. package/legacy/utils/index.js +0 -4
  31. package/legacy/utils/licenseErrorMessageUtils.js +0 -31
  32. package/legacy/utils/licenseInfo.js +0 -40
  33. package/legacy/utils/licenseScope.js +0 -1
  34. package/legacy/utils/licenseStatus.js +0 -11
  35. package/legacy/utils/licensingModel.js +0 -15
  36. package/legacy/verifyLicense/index.js +0 -1
  37. package/legacy/verifyLicense/verifyLicense.js +0 -167
  38. package/modern/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
package/CHANGELOG.md CHANGED
@@ -3,7 +3,390 @@
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
- ## v7.0.0-beta.2
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
+
175
+ ## 7.0.0-beta.4
176
+
177
+ _Feb 23, 2024_
178
+
179
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
180
+
181
+ - 🎁 Introduce a new DOM structure for the field components that provides a better accessibility
182
+ - 🚀 Simplify Data Grid DOM structure for improved performance (#12013) @romgrk
183
+ - 🕥 The support for IE11 has been removed (#12151) @flaviendelangle
184
+ - 🐞 Bugfixes
185
+ - 📚 Documentation improvements
186
+
187
+ ### Breaking changes
188
+
189
+ - The support for IE11 has been removed from all MUI X packages. The `legacy` bundle that used to support old browsers like IE11 is no longer included.
190
+
191
+ ### Data Grid
192
+
193
+ #### Breaking changes
194
+
195
+ - The cell inner wrapper `.MuiDataGrid-cellContent` has been removed, use `.MuiDataGrid-cell` to style the cells.
196
+
197
+ #### `@mui/x-data-grid@7.0.0-beta.4`
198
+
199
+ - [DataGrid] Simplify cell DOM structure (#12013) @romgrk
200
+ - [DataGrid] Fix values labels in `is any of` filter operator (#11939) @gitstart
201
+
202
+ #### `@mui/x-data-grid-pro@7.0.0-beta.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
203
+
204
+ Same changes as in `@mui/x-data-grid@7.0.0-beta.4`.
205
+
206
+ #### `@mui/x-data-grid-premium@7.0.0-beta.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
207
+
208
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
209
+
210
+ ### Date and Time Pickers
211
+
212
+ #### Breaking changes
213
+
214
+ - The `selectedSections` prop no longer accepts start and end indexes.
215
+ When selecting several — but not all — sections, the field components were not behaving correctly, you can now only select one or all sections:
216
+
217
+ ```diff
218
+ <DateField
219
+ - selectedSections={{ startIndex: 0, endIndex: 0 }}
220
+ + selectedSections={0}
221
+
222
+ // If the field has 3 sections
223
+ - selectedSections={{ startIndex: 0, endIndex: 2 }}
224
+ + selectedSections="all"
225
+ />
226
+ ```
227
+
228
+ - The headless field hooks (e.g.: `useDateField`) now returns a new prop called `enableAccessibleFieldDOMStructure`.
229
+ This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure. Learn more about this new [accessible DOM structure](/x/react-date-pickers/fields/#accessible-dom-structure).
230
+
231
+ When building a custom UI, you are most-likely only supporting one DOM structure, so you can remove `enableAccessibleFieldDOMStructure` before it is passed to the DOM:
232
+
233
+ ```diff
234
+ function MyCustomTextField(props) {
235
+ const {
236
+ + // Should be ignored
237
+ + enableAccessibleFieldDOMStructure,
238
+ // ... rest of the props you are using
239
+ } = props;
240
+
241
+ return ( /* Some UI to edit the date */ )
242
+ }
243
+
244
+ function MyCustomField(props) {
245
+ const fieldResponse = useDateField<Dayjs, false, typeof textFieldProps>({
246
+ ...props,
247
+ + // If you only support one DOM structure, we advise you to hardcode it here to avoid unwanted switches in your application
248
+ + enableAccessibleFieldDOMStructure: false,
249
+ });
250
+
251
+ return <MyCustomTextField ref={ref} {...fieldResponse} />;
252
+ }
253
+
254
+ function App() {
255
+ return <DatePicker slots={{ field: MyCustomField }} />;
256
+ }
257
+ ```
258
+
259
+ - The following internal types were exported by mistake and have been removed from the public API:
260
+
261
+ - `UseDateFieldDefaultizedProps`
262
+ - `UseTimeFieldDefaultizedProps`
263
+ - `UseDateTimeFieldDefaultizedProps`
264
+ - `UseSingleInputDateRangeFieldComponentProps`
265
+ - `UseSingleInputTimeRangeFieldComponentProps`
266
+ - `UseSingleInputDateTimeRangeFieldComponentProps`
267
+
268
+ #### `@mui/x-date-pickers@7.0.0-beta.4`
269
+
270
+ - [fields] Add a11y support to multi-HTML field (#12173) @LukasTy
271
+ - [fields] Use the `PickersTextField` component in the fields (#10649) @flaviendelangle
272
+ - [pickers] Fix styling props propagation to `DateTimePickerTabs` (#12096) @LukasTy
273
+
274
+ #### `@mui/x-date-pickers-pro@7.0.0-beta.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
275
+
276
+ Same changes as in `@mui/x-date-pickers@7.0.0-beta.4`.
277
+
278
+ ### Charts / `@mui/x-charts@7.0.0-beta.4`
279
+
280
+ #### Breaking changes
281
+
282
+ These components are no longer exported from `@mui/x-charts`:
283
+
284
+ - `CartesianContextProvider`
285
+ - `DrawingProvider`
286
+
287
+ #### `@mui/x-charts@7.0.0-beta.4`
288
+
289
+ - [charts] Don't display text if no value is provided (#12127) @alexfauquette
290
+ - [charts] Remove export of context providers (#12123) @oliviertassinari
291
+
292
+ ### Tree View / `@mui/x-tree-view@7.0.0-beta.4`
293
+
294
+ - [TreeView] Stop using custom `findIndex` to support IE11 (#12129) @flaviendelangle
295
+
296
+ ### Docs
297
+
298
+ - [docs] Add recipe for hiding separator on non-resizable columns (#12134) @michelengelen
299
+ - [docs] Add small improvements to the Gauge Chart page (#12076) @danilo-leal
300
+ - [docs] Add the 'point' scaleType to the axis documentation (#12179) @alexfauquette
301
+ - [docs] Clarify Pickers 'Component composition' section (#12097) @LukasTy
302
+ - [docs] Fix "Licensing" page link (#12156) @LukasTy
303
+ - [docs] Fix the Treemap illustration (#12185) @danilo-leal
304
+ - [docs] Fix error raised by Grammarly on the page @oliviertassinari
305
+ - [docs] Improve performance on Charts entry point @oliviertassinari
306
+ - [docs] Link to React Transition Group with https @oliviertassinari
307
+ - [docs] Move Heatmap to `pro` plan (#12047) @alexfauquette
308
+ - [docs] Reduce number of Vale errors @oliviertassinari
309
+ - [docs] Remove default value set to `undefined` (#12128) @alexfauquette
310
+
311
+ ### Core
312
+
313
+ - [core] Fix docs link check (#12135) @LukasTy
314
+ - [core] Fix missing context display names (#12124) @oliviertassinari
315
+ - [core] Fix shortcuts when Caps Lock enabled (#12121) @oliviertassinari
316
+ - [core] Remove IE 11 compat logic (#12119) @oliviertassinari
317
+ - [core] Simplify key utils (#12120) @oliviertassinari
318
+ - [core] Use the @mui/internal-scripts package (#12142) @michaldudak
319
+ - [all components] Remove legacy IE 11 bundle (#12151) @flaviendelangle
320
+ - [code-infra] Bump monorepo (#11880) @Janpot
321
+ - [code-infra] Use `experimental.cpus` to control amount of export workers in Next.js (#12095) @Janpot
322
+ - [docs-infra] Remove randomized API page layout (#11876) @alexfauquette
323
+ - [test] Create local wrapper over `describeConformance` (#12130) @michaldudak
324
+
325
+ ## 7.0.0-beta.3
326
+
327
+ _Feb 16, 2024_
328
+
329
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
330
+
331
+ - 🎁 Charts get a [built in grid](https://next.mui.com/x/react-charts/axis/#grid)
332
+
333
+ <img src="https://github.com/mui/mui-x/assets/45398769/74299f54-f020-4135-b38c-dc88a230db30" width="510" alt="Charts Grid" />
334
+
335
+ - 🎛️ Charts get a [Gauge component](https://next.mui.com/x/react-charts/gauge/).
336
+
337
+ <img src="https://github.com/mui/mui-x/assets/45398769/fb7a94b5-bef6-4fc2-a0cd-d6ff5b60fa8b" width="510" alt="Guage Chart" />
338
+
339
+ - 🐞 Bugfixes
340
+
341
+ - 📚 Documentation improvements
342
+
343
+ ### Data Grid
344
+
345
+ #### Breaking changes
346
+
347
+ - The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://next.mui.com/x/react-data-grid/editing/#the-processrowupdate-callback) prop can be used in place.
348
+
349
+ #### `@mui/x-data-grid@7.0.0-beta.3`
350
+
351
+ - [DataGrid] Performance: avoid style invalidation (#12019) @romgrk
352
+ - [DataGrid] Remove legacy editing API event: `rowEditCommit` (#12073) @MBilalShafi
353
+ - [DataGrid] Fix styling grid filter input single select (#11520) @FreakDroid
354
+
355
+ #### `@mui/x-data-grid-pro@7.0.0-beta.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
356
+
357
+ Same changes as in `@mui/x-data-grid@7.0.0-beta.3`.
358
+
359
+ #### `@mui/x-data-grid-premium@7.0.0-beta.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
360
+
361
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.3`.
362
+
363
+ ### Charts / `@mui/x-charts@7.0.0-beta.3`
364
+
365
+ - [charts] Add Gauge component (#11996) @alexfauquette
366
+ - [charts] Add a `ChartsGrid` component (#11034) @alexfauquette
367
+
368
+ ### Tree View / `@mui/x-tree-view@7.0.0-beta.3`
369
+
370
+ - [TreeView] Remove instance existence checks (#12066) @flaviendelangle
371
+
372
+ ### Docs
373
+
374
+ - [docs] Complete charts API pages (#12038) @alexfauquette
375
+ - [docs] Add more illustrations to the charts overview page (#12041) @danilo-leal
376
+ - [docs] Fix 301 redirection to StackBlitz @oliviertassinari
377
+ - [docs] Fix Tree space to match the reset of the docs @oliviertassinari
378
+ - [docs] Fix `dayOfWeekFormatter` typo in the pickers v6 to v7 migration document (#12043) @StylesTrip
379
+ - [docs] Fix redirection @oliviertassinari
380
+ - [docs] Fix typo for `AdapterDateFnsV3` (#12036) @flaviendelangle
381
+ - [docs] Removed `focused` prop from demo (#12092) @michelengelen
382
+
383
+ ### Core
384
+
385
+ - [core] Fix CodeSandbox CI template @oliviertassinari
386
+ - [core] Sort prop asc (#12033) @oliviertassinari
387
+ - [core] Bump monorepo (#12055) @alexfauquette
388
+
389
+ ## 7.0.0-beta.2
7
390
 
8
391
  _Feb 9, 2024_
9
392
 
@@ -17,7 +400,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
17
400
 
18
401
  ### Data Grid
19
402
 
20
- #### `@mui/x-data-grid@v7.0.0-beta.2`
403
+ #### `@mui/x-data-grid@7.0.0-beta.2`
21
404
 
22
405
  - [DataGrid] Add `removeAllFilterItems` as a reason of `onFilterModelChange` callback (#11911) @shaharyar-shamshi
23
406
  - [DataGrid] Add slot typings (#11795) @romgrk
@@ -27,35 +410,35 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
27
410
  - [DataGrid] Improve vertical scrolling performance (#11924) @romgrk
28
411
  - [l10n] Improve Danish (da-DK) locale (#11877) @ShahrazH
29
412
 
30
- #### `@mui/x-data-grid-pro@v7.0.0-beta.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
413
+ #### `@mui/x-data-grid-pro@7.0.0-beta.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
31
414
 
32
415
  Same changes as in `@mui/x-data-grid@v7.0.0-beta.2`.
33
416
 
34
417
  #### `@mui/x-data-grid-premium@v7.0.0-beta.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
35
418
 
36
- Same changes as in `@mui/x-data-grid-pro@v7.0.0-beta.2`, plus:
419
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.2`, plus:
37
420
 
38
421
  - [DataGridPremium] Fix autosize grouping cell (#11870) @romgrk
39
422
  - [DataGridPremium] Fix clipboard paste not working with Caps Lock enabled (#11965) @shaharyar-shamshi
40
423
 
41
- ### Date Pickers
424
+ ### Date and Time Pickers
42
425
 
43
- #### `@mui/x-date-pickers@v7.0.0-beta.2`
426
+ #### `@mui/x-date-pickers@7.0.0-beta.2`
44
427
 
45
428
  - [pickers] Avoid relying on locale in Luxon `isWithinRange` method (#11936) @LukasTy
46
429
  - [pickers] Limit the valid values of `TDate` (#11791) @flaviendelangle
47
430
 
48
- #### `@mui/x-date-pickers-pro@v7.0.0-beta.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
431
+ #### `@mui/x-date-pickers-pro@7.0.0-beta.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
49
432
 
50
- Same changes as in `@mui/x-date-pickers@v7.0.0-beta.2`.
433
+ Same changes as in `@mui/x-date-pickers@7.0.0-beta.2`.
51
434
 
52
- ### Charts / `@mui/x-charts@v7.0.0-beta.2`
435
+ ### Charts / `@mui/x-charts@7.0.0-beta.2`
53
436
 
54
437
  - [charts] Add `reverse` property to axes (#11899) @alexfauquette
55
438
  - [charts] Allow series ids to be numbers (#11941) @alexfauquette
56
439
  - [charts] Support UTC date formatting in tooltip (#11943) @shaharyar-shamshi
57
440
 
58
- ### Tree View / `@mui/x-tree-view@v7.0.0-beta.2`
441
+ ### Tree View / `@mui/x-tree-view@7.0.0-beta.2`
59
442
 
60
443
  - [TreeView] Correctly detect if an item is expandable (#11963) @swalker326
61
444
  - [TreeView] Polish the default design & revise the simple version pages (#11529) @danilo-leal
@@ -71,7 +454,7 @@ Same changes as in `@mui/x-date-pickers@v7.0.0-beta.2`.
71
454
  +import { LicenseInfo } from '@mui/x-license';
72
455
  ```
73
456
 
74
- `@mui/x-license@v7.0.0-beta.2`
457
+ `@mui/x-license@7.0.0-beta.2`
75
458
 
76
459
  - [license] Rename `@mui/x-license-pro` to `@mui/x-license` (#11938) @cherniavskii
77
460
 
@@ -225,7 +608,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.1`.
225
608
 
226
609
  Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.1`.
227
610
 
228
- ### Date Pickers
611
+ ### Date and Time Pickers
229
612
 
230
613
  #### `@mui/x-date-pickers@7.0.0-beta.1`
231
614
 
@@ -272,7 +655,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.1`.
272
655
 
273
656
  _Jan 26, 2024_
274
657
 
275
- We are glad to announce MUI X v7 beta!
658
+ We are glad to announce MUI X v7 beta!
276
659
  This version has several improvements, bug fixes, and exciting features 🎉.
277
660
  We want to offer a big thanks to the 7 contributors who made this release possible ✨:
278
661
 
@@ -330,7 +713,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.0`.
330
713
 
331
714
  Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.0`.
332
715
 
333
- ### Date Pickers
716
+ ### Date and Time Pickers
334
717
 
335
718
  #### `@mui/x-date-pickers@7.0.0-beta.0`
336
719
 
@@ -469,7 +852,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.9`, plus:
469
852
  - [DataGridPremium] Allow aggregation to be applied for non-aggregable columns (#11574) @MBilalShafi
470
853
  - [DataGridPremium] Allow programmatically grouping non-groupable columns (#11539) @MBilalShafi
471
854
 
472
- ### Date Pickers
855
+ ### Date and Time Pickers
473
856
 
474
857
  #### Breaking changes
475
858
 
@@ -754,7 +1137,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.8`.
754
1137
 
755
1138
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.8`.
756
1139
 
757
- ### Date Pickers
1140
+ ### Date and Time Pickers
758
1141
 
759
1142
  #### `@mui/x-date-pickers@7.0.0-alpha.8`
760
1143
 
@@ -844,7 +1227,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.7`.
844
1227
 
845
1228
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.7`.
846
1229
 
847
- ### Date Pickers
1230
+ ### Date and Time Pickers
848
1231
 
849
1232
  #### `@mui/x-date-pickers@7.0.0-alpha.7`
850
1233
 
@@ -986,7 +1369,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.6`.
986
1369
 
987
1370
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.6`.
988
1371
 
989
- ### Date Pickers
1372
+ ### Date and Time Pickers
990
1373
 
991
1374
  #### `@mui/x-date-pickers@7.0.0-alpha.6`
992
1375
 
@@ -1054,7 +1437,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.5`.
1054
1437
 
1055
1438
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
1056
1439
 
1057
- ### Date Pickers
1440
+ ### Date and Time Pickers
1058
1441
 
1059
1442
  #### Breaking changes
1060
1443
 
@@ -1238,7 +1621,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.4`, plus:
1238
1621
 
1239
1622
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.4`.
1240
1623
 
1241
- ### Date Pickers
1624
+ ### Date and Time Pickers
1242
1625
 
1243
1626
  #### `@mui/x-date-pickers@7.0.0-alpha.4`
1244
1627
 
@@ -1289,7 +1672,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
1289
1672
 
1290
1673
  - The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
1291
1674
 
1292
- - The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the `DataGrid` exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#DataGrid-prop-filterDebounceMs) prop to customize filter debounce time.
1675
+ - The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the `DataGrid` exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
1293
1676
 
1294
1677
  - The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
1295
1678
 
@@ -1338,7 +1721,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
1338
1721
  - [DataGridPremium] Make Cell selection feature stable (#11246) @MBilalShafi
1339
1722
  - [DataGridPremium] Make Clipboard paste feature stable (#11248) @MBilalShafi
1340
1723
 
1341
- ### Date Pickers
1724
+ ### Date and Time Pickers
1342
1725
 
1343
1726
  #### Breaking changes
1344
1727
 
@@ -1475,7 +1858,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.2`.
1475
1858
 
1476
1859
  Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`.
1477
1860
 
1478
- ### Date Pickers
1861
+ ### Date and Time Pickers
1479
1862
 
1480
1863
  #### Breaking changes
1481
1864
 
@@ -1581,7 +1964,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
1581
1964
  - 🐞 Bugfixes
1582
1965
  - 📚 Documentation improvements
1583
1966
 
1584
- ### Date Pickers
1967
+ ### Date and Time Pickers
1585
1968
 
1586
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')
1587
1970
 
@@ -2077,7 +2460,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.0`, plus:
2077
2460
 
2078
2461
  - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10936) @cherniavskii
2079
2462
 
2080
- ### Date Pickers
2463
+ ### Date and Time Pickers
2081
2464
 
2082
2465
  #### Breaking changes
2083
2466
 
@@ -2138,7 +2521,109 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
2138
2521
  - [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi
2139
2522
  - [license] Correctly throw errors (#10924) @oliviertassinari
2140
2523
 
2141
- ## v6.19.4
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
+
2565
+ ## 6.19.5
2566
+
2567
+ _Feb 23, 2024_
2568
+
2569
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
2570
+
2571
+ - 🐞 Bugfixes
2572
+ - 📚 Documentation improvements
2573
+
2574
+ ### Data Grid
2575
+
2576
+ #### `@mui/x-data-grid@6.19.5`
2577
+
2578
+ - [DataGrid] Fix styling grid filter input single select (#12079) @FreakDroid
2579
+
2580
+ #### `@mui/x-data-grid-pro@6.19.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2581
+
2582
+ Same changes as in `@mui/x-data-grid@6.19.5`.
2583
+
2584
+ #### `@mui/x-data-grid-premium@6.19.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2585
+
2586
+ Same changes as in `@mui/x-data-grid-pro@6.19.5`.
2587
+
2588
+ ### Date and Time Pickers
2589
+
2590
+ #### `@mui/x-date-pickers@6.19.5`
2591
+
2592
+ - [pickers] Fix `referenceDate` day calendar focus (#12136) @LukasTy
2593
+ - [pickers] Fix styling props propagation to `DateTimePickerTabs` (#12131) @LukasTy
2594
+
2595
+ #### `@mui/x-date-pickers-pro@6.19.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2596
+
2597
+ Same changes as in `@mui/x-date-pickers@6.19.5`.
2598
+
2599
+ ### Charts / `@mui/x-charts@6.19.5`
2600
+
2601
+ - [charts] Allow to skip animation on sparkline bar (#12160) @alexfauquette
2602
+
2603
+ ### Docs
2604
+
2605
+ - [docs] Clarify Pickers 'Component composition' section (#12147) @LukasTy
2606
+ - [docs] Fix 301 redirection to StackBlitz @oliviertassinari
2607
+ - [docs] Fix 301 to Material UI @oliviertassinari
2608
+ - [docs] Fix 301 to Material UI @oliviertassinari
2609
+ - [docs] Fix 404 links to translation source @oliviertassinari
2610
+ - [docs] Fix dead link to translations @oliviertassinari
2611
+ - [docs] Fix the Treemap illustration (#12189) @danilo-leal
2612
+ - [docs] Fix typo for `AdapterDateFnsV3` (#12037) @flaviendelangle
2613
+ - [docs] Improve performance on Charts entry point @oliviertassinari
2614
+ - [docs] Move Heatmap to pro (#12170) @alexfauquette
2615
+ - [docs] Remove Charts installation next tag call-out (#12133) @LukasTy
2616
+ - [docs] Removed `focused` prop from demo (#12126) @michelengelen
2617
+ - [docs] Add missing Heatmap pro icon @oliviertassinari
2618
+ - [docs] Add more illustrations to the Overview page (#12041) @danilo-leal
2619
+ - [docs] Avoid use of shorthand (#12009) @oliviertassinari
2620
+
2621
+ ### Core
2622
+
2623
+ - [core] Fix CI @oliviertassinari
2624
+ - [core] Fix docs link check (#12137) @LukasTy
2625
+
2626
+ ## 6.19.4
2142
2627
 
2143
2628
  _Feb 9, 2024_
2144
2629
 
@@ -2150,7 +2635,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2150
2635
 
2151
2636
  ### Data Grid
2152
2637
 
2153
- #### `@mui/x-data-grid@v6.19.4`
2638
+ #### `@mui/x-data-grid@6.19.4`
2154
2639
 
2155
2640
  - [DataGrid] Add support for dialogs in menu actions (#11937) @cherniavskii
2156
2641
  - [DataGrid] Allow passing readonly arrays to `pageSizeOptions` prop (#11992) @pcorpet
@@ -2158,28 +2643,28 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
2158
2643
  - [DataGrid] Replace `eval` with `new Function` (#11962) @cherniavskii
2159
2644
  - [l10n] Improve Danish (da-DK) locale (#11972) @ShahrazH
2160
2645
 
2161
- #### `@mui/x-data-grid-pro@v6.19.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2646
+ #### `@mui/x-data-grid-pro@6.19.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2162
2647
 
2163
- Same changes as in `@mui/x-data-grid@v6.19.4`.
2648
+ Same changes as in `@mui/x-data-grid@6.19.4`.
2164
2649
 
2165
- #### `@mui/x-data-grid-premium@v6.19.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2650
+ #### `@mui/x-data-grid-premium@6.19.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2166
2651
 
2167
- Same changes as in `@mui/x-data-grid-pro@v6.19.4`, plus:
2652
+ Same changes as in `@mui/x-data-grid-pro@6.19.4`, plus:
2168
2653
 
2169
2654
  - [DataGridPremium] Fix autosize grouping cell (#11990) @romgrk
2170
2655
  - [DataGridPremium] Fix error after closing print export (#11889) @cherniavskii
2171
2656
 
2172
- ### Date Pickers
2657
+ ### Date and Time Pickers
2173
2658
 
2174
- #### `@mui/x-date-pickers@v6.19.4`
2659
+ #### `@mui/x-date-pickers@6.19.4`
2175
2660
 
2176
2661
  - [pickers] Avoid relying on locale in Luxon `isWithinRange` method (#11940) @LukasTy
2177
2662
 
2178
- #### `@mui/x-date-pickers-pro@v6.19.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2663
+ #### `@mui/x-date-pickers-pro@6.19.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2179
2664
 
2180
- Same changes as in `@mui/x-date-pickers@v6.19.4`.
2665
+ Same changes as in `@mui/x-date-pickers@6.19.4`.
2181
2666
 
2182
- ### Charts / `@mui/x-charts@v6.19.4`
2667
+ ### Charts / `@mui/x-charts@6.19.4`
2183
2668
 
2184
2669
  - [charts] Add `reverse` property to axes (#11959) @alexfauquette
2185
2670
  - [charts] Allow series ids to be numbers (#11960) @alexfauquette
@@ -2218,7 +2703,7 @@ Same changes as in `@mui/x-data-grid@6.19.3`.
2218
2703
 
2219
2704
  Same changes as in `@mui/x-data-grid-pro@6.19.3`.
2220
2705
 
2221
- ### Date Pickers
2706
+ ### Date and Time Pickers
2222
2707
 
2223
2708
  #### `@mui/x-date-pickers@6.19.3`
2224
2709
 
@@ -2240,7 +2725,7 @@ Same changes as in `@mui/x-date-pickers@6.19.3`.
2240
2725
  - [docs] Fix docs:api when typo in slots typing (#11861) @alexfauquette
2241
2726
  - [docs] Improve Support page (#11556) @oliviertassinari
2242
2727
  - [docs] Sync support page with core @oliviertassinari
2243
- - [docs] These API don't exist in MUI X v6 @oliviertassinari
2728
+ - [docs] These API don't exist in MUI X v6 @oliviertassinari
2244
2729
  - [docs] Update whats new page with v7 Beta blogpost content (#11886) @joserodolfofreitas
2245
2730
 
2246
2731
  ## 6.19.2
@@ -2252,7 +2737,7 @@ We'd like to offer a big thanks to the 2 contributors who made this release poss
2252
2737
  - 🚀 Apply the `layout.tabs` class to `Tabs` slot (@LukasTy) (#11782)
2253
2738
  - 🐞 Bugfixes
2254
2739
 
2255
- ### Date Pickers
2740
+ ### Date and Time Pickers
2256
2741
 
2257
2742
  #### `@mui/x-date-pickers@6.19.2`
2258
2743
 
@@ -2326,7 +2811,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
2326
2811
  import { de } from 'date-fns/locale/de';
2327
2812
  ```
2328
2813
 
2329
- ### Date Pickers
2814
+ ### Date and Time Pickers
2330
2815
 
2331
2816
  #### `@mui/x-date-pickers@6.19.0`
2332
2817
 
@@ -2373,7 +2858,7 @@ Same changes as in `@mui/x-data-grid@6.18.7`.
2373
2858
 
2374
2859
  Same changes as in `@mui/x-data-grid-pro@6.18.7`.
2375
2860
 
2376
- ### Date Pickers
2861
+ ### Date and Time Pickers
2377
2862
 
2378
2863
  #### `@mui/x-date-pickers@6.18.7`
2379
2864
 
@@ -2415,7 +2900,7 @@ Same changes as in `@mui/x-data-grid@6.18.6`.
2415
2900
 
2416
2901
  Same changes as in `@mui/x-data-grid-pro@6.18.6`.
2417
2902
 
2418
- ### Date Pickers
2903
+ ### Date and Time Pickers
2419
2904
 
2420
2905
  #### `@mui/x-date-pickers@6.18.6`
2421
2906
 
@@ -2464,7 +2949,7 @@ Same changes as in `@mui/x-data-grid@6.18.5`.
2464
2949
 
2465
2950
  Same changes as in `@mui/x-data-grid-pro@6.18.5`.
2466
2951
 
2467
- ### Date Pickers
2952
+ ### Date and Time Pickers
2468
2953
 
2469
2954
  #### `@mui/x-date-pickers@6.18.5`
2470
2955
 
@@ -2507,7 +2992,7 @@ Same changes as in `@mui/x-data-grid@6.18.4`.
2507
2992
 
2508
2993
  Same changes as in `@mui/x-data-grid-pro@6.18.4`.
2509
2994
 
2510
- ### Date Pickers
2995
+ ### Date and Time Pickers
2511
2996
 
2512
2997
  #### `@mui/x-date-pickers@6.18.4`
2513
2998
 
@@ -2553,7 +3038,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.3`, plus:
2553
3038
  - [DataGridPremium] Fix aggregated column ignoring column definition changes (#11176) @cherniavskii
2554
3039
  - [DataGridPremium] Fix custom filter operators not working on aggregated column (#11201) @cherniavskii
2555
3040
 
2556
- ### Date Pickers
3041
+ ### Date and Time Pickers
2557
3042
 
2558
3043
  #### `@mui/x-date-pickers@6.18.3`
2559
3044
 
@@ -2609,7 +3094,7 @@ Same changes as in `@mui/x-data-grid@6.18.2`.
2609
3094
 
2610
3095
  Same changes as in `@mui/x-data-grid-pro@6.18.2`.
2611
3096
 
2612
- ### Date Pickers
3097
+ ### Date and Time Pickers
2613
3098
 
2614
3099
  #### `@mui/x-date-pickers@6.18.2`
2615
3100
 
@@ -2666,7 +3151,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.1`, plus:
2666
3151
 
2667
3152
  - [DataGridPremium] Render aggregation label when `renderHeader` is used (#10961) @cherniavskii
2668
3153
 
2669
- ### Date Pickers
3154
+ ### Date and Time Pickers
2670
3155
 
2671
3156
  #### `@mui/x-date-pickers@6.18.1`
2672
3157
 
@@ -2725,7 +3210,7 @@ Same changes as in `@mui/x-data-grid@6.18.0`.
2725
3210
 
2726
3211
  Same changes as in `@mui/x-data-grid-pro@6.18.0`.
2727
3212
 
2728
- ### Date Pickers
3213
+ ### Date and Time Pickers
2729
3214
 
2730
3215
  #### `@mui/x-date-pickers@6.18.0`
2731
3216
 
@@ -2790,7 +3275,7 @@ Same changes as in `@mui/x-data-grid-pro@6.17.0`, plus:
2790
3275
  - [DataGridPremium] Fix `sum` aggregation to ignore non-numeric values (#10730) @cherniavskii
2791
3276
  - [DataGridPremium] Fix cell selection throwing index error on second page and beyond (#10784) @MBilalShafi
2792
3277
 
2793
- ### Date Pickers
3278
+ ### Date and Time Pickers
2794
3279
 
2795
3280
  #### `@mui/x-date-pickers@6.17.0`
2796
3281
 
@@ -2844,7 +3329,7 @@ Same changes as in `@mui/x-data-grid@6.16.3`.
2844
3329
 
2845
3330
  Same changes as in `@mui/x-data-grid-pro@6.16.3`.
2846
3331
 
2847
- ### Date Pickers
3332
+ ### Date and Time Pickers
2848
3333
 
2849
3334
  #### `@mui/x-date-pickers@6.16.3`
2850
3335
 
@@ -2920,7 +3405,7 @@ Same changes as in `@mui/x-data-grid@6.16.2`, plus:
2920
3405
 
2921
3406
  Same changes as in `@mui/x-data-grid-pro@6.16.2`.
2922
3407
 
2923
- ### Date Pickers
3408
+ ### Date and Time Pickers
2924
3409
 
2925
3410
  #### `@mui/x-date-pickers@6.16.2`
2926
3411
 
@@ -3015,7 +3500,7 @@ Same changes as in `@mui/x-data-grid@6.16.1`.
3015
3500
 
3016
3501
  Same changes as in `@mui/x-data-grid-pro@6.16.1`.
3017
3502
 
3018
- ### Date Pickers
3503
+ ### Date and Time Pickers
3019
3504
 
3020
3505
  #### `@mui/x-date-pickers@6.16.1`
3021
3506
 
@@ -3091,7 +3576,7 @@ Same changes as in `@mui/x-data-grid@6.16.0`, plus:
3091
3576
 
3092
3577
  Same changes as in `@mui/x-data-grid-pro@6.16.0`.
3093
3578
 
3094
- ### Date Pickers
3579
+ ### Date and Time Pickers
3095
3580
 
3096
3581
  #### `@mui/x-date-pickers@6.16.0`
3097
3582
 
@@ -3170,7 +3655,7 @@ Same changes as in `@mui/x-data-grid@6.15.0`, plus:
3170
3655
 
3171
3656
  Same changes as in `@mui/x-data-grid-pro@6.15.0`.
3172
3657
 
3173
- ### Date Pickers
3658
+ ### Date and Time Pickers
3174
3659
 
3175
3660
  #### `@mui/x-date-pickers@6.15.0`
3176
3661
 
@@ -3249,7 +3734,7 @@ Same changes as in `@mui/x-data-grid-pro@6.14.0`, plus:
3249
3734
 
3250
3735
  - [DataGridPremium] Fix clipboard import cutting off at 100 rows (#9930) @gitstart
3251
3736
 
3252
- ### Date Pickers
3737
+ ### Date and Time Pickers
3253
3738
 
3254
3739
  #### `@mui/x-date-pickers@6.14.0`
3255
3740
 
@@ -3330,7 +3815,7 @@ Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus:
3330
3815
 
3331
3816
  - [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii
3332
3817
 
3333
- ### Date Pickers
3818
+ ### Date and Time Pickers
3334
3819
 
3335
3820
  #### `@mui/x-date-pickers@6.13.0`
3336
3821
 
@@ -3402,7 +3887,7 @@ Same changes as in `@mui/x-data-grid@6.12.1`.
3402
3887
 
3403
3888
  Same changes as in `@mui/x-data-grid-pro@6.12.1`.
3404
3889
 
3405
- ### Date Pickers
3890
+ ### Date and Time Pickers
3406
3891
 
3407
3892
  #### `@mui/x-date-pickers@6.12.1`
3408
3893
 
@@ -3458,7 +3943,7 @@ Same changes as in `@mui/x-data-grid@6.12.0`.
3458
3943
 
3459
3944
  Same changes as in `@mui/x-data-grid-pro@6.12.0`.
3460
3945
 
3461
- ### Date Pickers
3946
+ ### Date and Time Pickers
3462
3947
 
3463
3948
  #### `@mui/x-date-pickers@6.12.0`
3464
3949
 
@@ -3529,7 +4014,7 @@ Same changes as in `@mui/x-data-grid@6.11.2`.
3529
4014
 
3530
4015
  Same changes as in `@mui/x-data-grid-pro@6.11.2`.
3531
4016
 
3532
- ### Date Pickers
4017
+ ### Date and Time Pickers
3533
4018
 
3534
4019
  #### `@mui/x-date-pickers@6.11.2`
3535
4020
 
@@ -3580,7 +4065,7 @@ Same changes as in `@mui/x-data-grid@6.11.1`.
3580
4065
 
3581
4066
  Same changes as in `@mui/x-data-grid-pro@6.11.1`.
3582
4067
 
3583
- ### Date Pickers
4068
+ ### Date and Time Pickers
3584
4069
 
3585
4070
  #### `@mui/x-date-pickers@6.11.1`
3586
4071
 
@@ -3649,7 +4134,7 @@ Same changes as in `@mui/x-data-grid@6.11.0`.
3649
4134
 
3650
4135
  Same changes as in `@mui/x-data-grid-pro@6.11.0`.
3651
4136
 
3652
- ### Date Pickers
4137
+ ### Date and Time Pickers
3653
4138
 
3654
4139
  #### `@mui/x-date-pickers@6.11.0`
3655
4140
 
@@ -3737,7 +4222,7 @@ Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus:
3737
4222
 
3738
4223
  - [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
3739
4224
 
3740
- ### Date Pickers
4225
+ ### Date and Time Pickers
3741
4226
 
3742
4227
  #### `@mui/x-date-pickers@6.10.2`
3743
4228
 
@@ -3806,7 +4291,7 @@ Same changes as in `@mui/x-data-grid@6.10.1`, plus:
3806
4291
 
3807
4292
  Same changes as in `@mui/x-data-grid-pro@6.10.1`.
3808
4293
 
3809
- ### Date Pickers
4294
+ ### Date and Time Pickers
3810
4295
 
3811
4296
  #### `@mui/x-date-pickers@6.10.1`
3812
4297
 
@@ -3872,7 +4357,7 @@ Same changes as in `@mui/x-data-grid@6.10.0`.
3872
4357
 
3873
4358
  Same changes as in `@mui/x-data-grid-pro@6.10.0`.
3874
4359
 
3875
- ### Date Pickers
4360
+ ### Date and Time Pickers
3876
4361
 
3877
4362
  #### `@mui/x-date-pickers@6.10.0`
3878
4363
 
@@ -3942,7 +4427,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
3942
4427
 
3943
4428
  - [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
3944
4429
 
3945
- ### Date Pickers
4430
+ ### Date and Time Pickers
3946
4431
 
3947
4432
  #### `@mui/x-date-pickers@6.9.2`
3948
4433
 
@@ -3989,7 +4474,7 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
3989
4474
 
3990
4475
  #### `@mui/x-data-grid@6.9.1`
3991
4476
 
3992
- - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
4477
+ - [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
3993
4478
  - [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
3994
4479
  - [DataGrid] Don't forward `editCellState` prop to DOM element (#9501) @m4theushw
3995
4480
  - [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
@@ -4008,7 +4493,7 @@ Same changes as in `@mui/x-data-grid@6.9.1`, plus:
4008
4493
 
4009
4494
  Same changes as in `@mui/x-data-grid-pro@6.9.1`.
4010
4495
 
4011
- ### Date Pickers
4496
+ ### Date and Time Pickers
4012
4497
 
4013
4498
  #### `@mui/x-date-pickers@6.9.1`
4014
4499
 
@@ -4090,7 +4575,7 @@ Same changes as in `@mui/x-data-grid@6.9.0`.
4090
4575
 
4091
4576
  Same changes as in `@mui/x-data-grid-pro@6.9.0`.
4092
4577
 
4093
- ### Date Pickers
4578
+ ### Date and Time Pickers
4094
4579
 
4095
4580
  #### `@mui/x-date-pickers@6.9.0`
4096
4581
 
@@ -4120,7 +4605,7 @@ Same changes as in `@mui/x-date-pickers@6.9.0`.
4120
4605
  - [docs] Fix random screenshot generation (#9364) @cherniavskii
4121
4606
  - [docs] Remove random generation from chart doc example (#9343) @flaviendelangle
4122
4607
  - [docs] Sync h1 with sidenav link (#9252) @oliviertassinari
4123
- - [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
4608
+ - [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
4124
4609
 
4125
4610
  ### Core
4126
4611
 
@@ -4166,7 +4651,7 @@ Same changes as in `@mui/x-data-grid@6.8.0`.
4166
4651
 
4167
4652
  Same changes as in `@mui/x-data-grid-pro@6.8.0`.
4168
4653
 
4169
- ### Date Pickers
4654
+ ### Date and Time Pickers
4170
4655
 
4171
4656
  #### `@mui/x-date-pickers@6.8.0`
4172
4657
 
@@ -4447,8 +4932,8 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
4447
4932
 
4448
4933
  - [DataGrid] Fix DataGrid rendering in JSDOM (#8968) @cherniavskii
4449
4934
  - [DataGrid] Fix layout when rendered inside a parent with `display: grid` (#8577) @cherniavskii
4450
- - [DataGrid] Add Joy UI icon slots (#8940) @siriwatknp
4451
- - [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
4452
4937
  - [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
4453
4938
  - [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
4454
4939
  - [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
@@ -4498,7 +4983,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
4498
4983
  - [DataGrid] Fix falsy filter values not showing in filter button tooltip (#8550) @ithrforu
4499
4984
  - [DataGrid] Fix missing watermark in Pro and Premium packages (#8797) @cherniavskii
4500
4985
  - [DataGrid] Remove unwarranted warning log (#8847) @romgrk
4501
- - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
4986
+ - [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
4502
4987
  - [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
4503
4988
 
4504
4989
  ### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
@@ -4549,7 +5034,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
4549
5034
  - [DataGrid] Add overlay classes to `gridClasses` (#8686) @lindapaiste
4550
5035
  - [DataGrid] Avoid passing `api` prop to div (#8679) @someden
4551
5036
  - [DataGrid] Fix 'ResizeObserver loop limit exceeded' error (#8744) @m4theushw
4552
- - [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
5037
+ - [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
4553
5038
  - [DataGrid] Fix aggregation label alignment (#8694) @joserodolfofreitas
4554
5039
  - [DataGridPremium] Fix infinite loop when updating grouped rows (#8693) @cherniavskii
4555
5040
  - [DataGridPro] Fix error after updating `columns` and `columnGroupingModel` at once (#8730) @cherniavskii
@@ -4611,7 +5096,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
4611
5096
  #### Changes
4612
5097
 
4613
5098
  - [DataGrid] Add `getTogglableColumns` to `Hide all` and `Show all` actions (#8496) @MBilalShafi
4614
- - [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
5099
+ - [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
4615
5100
  - [DataGrid] Fix print style when rendering inside Shadow DOM (#8656) @Bwatermelon
4616
5101
  - [DataGrid] Replace `GridAutoSizer` with `ResizeObserver` (#8091) @m4theushw
4617
5102
  - [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw