@mui/x-date-pickers-pro 7.0.0-alpha.2 → 7.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +364 -0
  2. package/DateRangeCalendar/DateRangeCalendar.js +4 -4
  3. package/DateRangePicker/DateRangePicker.js +3 -3
  4. package/DesktopDateRangePicker/DesktopDateRangePicker.js +3 -3
  5. package/MobileDateRangePicker/MobileDateRangePicker.js +3 -3
  6. package/README.md +0 -1
  7. package/StaticDateRangePicker/StaticDateRangePicker.js +3 -3
  8. package/index.js +1 -1
  9. package/internals/utils/releaseInfo.js +1 -1
  10. package/legacy/DateRangeCalendar/DateRangeCalendar.js +4 -4
  11. package/legacy/DateRangePicker/DateRangePicker.js +3 -3
  12. package/legacy/DesktopDateRangePicker/DesktopDateRangePicker.js +3 -3
  13. package/legacy/MobileDateRangePicker/MobileDateRangePicker.js +3 -3
  14. package/legacy/StaticDateRangePicker/StaticDateRangePicker.js +3 -3
  15. package/legacy/index.js +1 -1
  16. package/legacy/internals/utils/releaseInfo.js +1 -1
  17. package/modern/DateRangeCalendar/DateRangeCalendar.js +4 -4
  18. package/modern/DateRangePicker/DateRangePicker.js +3 -3
  19. package/modern/DesktopDateRangePicker/DesktopDateRangePicker.js +3 -3
  20. package/modern/MobileDateRangePicker/MobileDateRangePicker.js +3 -3
  21. package/modern/StaticDateRangePicker/StaticDateRangePicker.js +3 -3
  22. package/modern/index.js +1 -1
  23. package/modern/internals/utils/releaseInfo.js +1 -1
  24. package/node/DateRangeCalendar/DateRangeCalendar.js +4 -4
  25. package/node/DateRangePicker/DateRangePicker.js +3 -3
  26. package/node/DesktopDateRangePicker/DesktopDateRangePicker.js +3 -3
  27. package/node/MobileDateRangePicker/MobileDateRangePicker.js +3 -3
  28. package/node/StaticDateRangePicker/StaticDateRangePicker.js +3 -3
  29. package/node/index.js +1 -1
  30. package/node/internals/utils/releaseInfo.js +1 -1
  31. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,271 @@
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-alpha.4
7
+
8
+ _Dec 8, 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
+ - 🚀 The scatter charts now use voronoi to trigger items
13
+
14
+ Users needed to hover the item to highlight the scatter item or show the tooltip.
15
+ Now they can interact with data by triggering the closest element. See the [docs page](https://next.mui.com/x/react-charts/scatter/#interaction) for more info.
16
+
17
+ - 📚 Add [Pickers FAQ page](https://next.mui.com/x/react-date-pickers/faq/)
18
+ - 🎉 The Data Grid Header filters feature is now stable
19
+ - 🌍 Improve Danish (da-DK) locale on Data Grid
20
+ - 🐞 Bugfixes
21
+
22
+ ### Data Grid
23
+
24
+ #### Breaking changes
25
+
26
+ - The header filters feature is now stable. `unstable_` prefix is removed from prop `headerFilters` and related exports.
27
+ See [migration docs](https://next.mui.com/x/migration/migration-data-grid-v6/#filtering) for more details.
28
+
29
+ - The `GridColDef['type']` has been narrowed down to only accept the built-in column types.
30
+ TypeScript users need to use the `GridColDef` interface when defining columns:
31
+
32
+ ```tsx
33
+ // 🛑 `type` is inferred as `string` and is too wide
34
+ const columns = [{ type: 'number', field: 'id' }];
35
+ <DataGrid columns={columns} />;
36
+
37
+ // ✅ `type` is `'number'`
38
+ const columns: GridColDef[] = [{ type: 'number', field: 'id' }];
39
+ <DataGrid columns={columns} />;
40
+
41
+ // ✅ Alternalively, `as const` can be used to narrow down the type
42
+ const columns = [{ type: 'number' as const, field: 'id' }];
43
+ <DataGrid columns={columns} />;
44
+ ```
45
+
46
+ #### `@mui/x-data-grid@7.0.0-alpha.4`
47
+
48
+ - [DataGrid] Added a guard for reorder cells (#11159) @michelengelen
49
+ - [DataGrid] Narrow down `GridColDef['type']` (#11270) @cherniavskii
50
+ - [l10n] Improve Danish (da-DK) locale (#11304) @goibon
51
+
52
+ #### `@mui/x-data-grid-pro@7.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
53
+
54
+ Same changes as in `@mui/x-data-grid@7.0.0-alpha.4`, plus:
55
+
56
+ - [DataGridPro] Make header filters feature stable (#11243) @MBilalShafi
57
+
58
+ #### `@mui/x-data-grid-premium@7.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
59
+
60
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.4`.
61
+
62
+ ### Date Pickers
63
+
64
+ #### `@mui/x-date-pickers@7.0.0-alpha.4`
65
+
66
+ - [fields] Rework `PickersTextField` (#11258) @flaviendelangle
67
+ - [pickers] Fix `MultiSectionDigitalClock` issues (#11305) @LukasTy
68
+ - [pickers] Fix views height consistency (#11337) @LukasTy
69
+
70
+ #### `@mui/x-date-pickers-pro@7.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
71
+
72
+ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.4`.
73
+
74
+ ### Charts / `@mui/x-charts@7.0.0-alpha.4`
75
+
76
+ - [charts] Remove animation on sparkline (#11311) @oliviertassinari
77
+ - [charts] Use voronoi cells to trigger interaction with scatter items (#10981) @alexfauquette
78
+ - [charts] Add `@mui/utils` as a dependency (#11351) @michelengelen
79
+
80
+ ### Docs
81
+
82
+ - [docs] Add FAQ page (#11271) @noraleonte
83
+ - [docs] Add a doc section on how to override the start of the week with each adapter (#11223) @flaviendelangle
84
+ - [docs] Added params to `onPaginationModelChange` docs (#10191) @JFBenzs
85
+ - [docs] Fix typo (#11324) @cadam11
86
+ - [docs] Improve `DemoContainer` styling coverage (#11315) @LukasTy
87
+ - [docs] General revision of the Charts docs (#11249) @danilo-leal
88
+
89
+ ## 7.0.0-alpha.3
90
+
91
+ _Dec 4, 2023_
92
+
93
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
94
+
95
+ - 🚀 Support localized start of the week on pickers' `AdapterLuxon`
96
+
97
+ When using Luxon 3.4.4 or higher, the start of the week will be defined by the date locale (e.g.: Sunday for `en-US`, Monday for `fr-FR`).
98
+
99
+ - 📈 Fix a lot of Charts package issues
100
+ - 🎉 The Data Grid features Cell selection and Clipboard paste are now stable
101
+ - 🌍 Improve Bulgarian (bg-BG) locale on Data Grid
102
+ - 🐞 Bugfixes
103
+ - 📚 Documentation improvements
104
+
105
+ ### Data Grid
106
+
107
+ #### Breaking changes
108
+
109
+ - The clipboard paste feature is now enabled by default. The flag `clipboardPaste` is no longer needed to be passed to the `experimentalFeatures` prop.
110
+
111
+ - The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
112
+
113
+ - 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.
114
+
115
+ - The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
116
+
117
+ - The `GridPreferencesPanel` component is not exported anymore as it wasn't meant to be used outside of the Data Grid.
118
+
119
+ - The `unstable_` prefix has been removed from the cell selection props listed below.
120
+
121
+ | Old name | New name |
122
+ | :------------------------------------ | :--------------------------- |
123
+ | `unstable_cellSelection` | `cellSelection` |
124
+ | `unstable_cellSelectionModel` | `cellSelectionModel` |
125
+ | `unstable_onCellSelectionModelChange` | `onCellSelectionModelChange` |
126
+
127
+ - The `unstable_` prefix has been removed from the cell selection API methods listed below.
128
+
129
+ | Old name | New name |
130
+ | :--------------------------------- | :------------------------ |
131
+ | `unstable_getCellSelectionModel` | `getCellSelectionModel` |
132
+ | `unstable_getSelectedCellsAsArray` | `getSelectedCellsAsArray` |
133
+ | `unstable_isCellSelected` | `isCellSelected` |
134
+ | `unstable_selectCellRange` | `selectCellRange` |
135
+ | `unstable_setCellSelectionModel` | `setCellSelectionModel` |
136
+
137
+ - The Quick Filter now ignores hidden columns by default.
138
+ See [including hidden columns](https://next.mui.com/x/react-data-grid/filtering/quick-filter/#including-hidden-columns) section for more details.
139
+
140
+ #### `@mui/x-data-grid@7.0.0-alpha.3`
141
+
142
+ - [DataGrid] Fix cell editing adding a leading "v" on paste (#9205) @prasad5795
143
+ - [DataGrid] Exclude hidden columns from quick filtering by default (#11229) @cherniavskii
144
+ - [DataGrid] Fix `onFilterModelChange` being fired with stale field value (#11000) @gitstart
145
+ - [DataGrid] Fix handling of event target in portal (#11174) @cherniavskii
146
+ - [DataGrid] Remove deprecated constants (#11233) @michelengelen
147
+ - [DataGrid] Remove the `preferencesPanel` slot (#11228) @cherniavskii
148
+ - [l10n] Improve Bulgarian (bg-BG) locale (#10856) @Kristiqn95
149
+
150
+ #### `@mui/x-data-grid-pro@7.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
151
+
152
+ Same changes as in `@mui/x-data-grid@7.0.0-alpha.3`.
153
+
154
+ #### `@mui/x-data-grid-premium@7.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
155
+
156
+ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
157
+
158
+ - [DataGridPremium] Fix aggregated column ignoring column definition changes (#11129) @cherniavskii
159
+ - [DataGridPremium] Make Cell selection feature stable (#11246) @MBilalShafi
160
+ - [DataGridPremium] Make Clipboard paste feature stable (#11248) @MBilalShafi
161
+
162
+ ### Date Pickers
163
+
164
+ #### Breaking changes
165
+
166
+ - The Date and Time Pickers now use the localized week when using `AdapterLuxon` and Luxon v3.4.4 or higher is installed.
167
+ This new behavior allows `AdapterLuxon` to have the same behavior as the other adapters.
168
+ If you want to keep the start of the week on Monday even if your locale says otherwise, you can hardcode the week settings as follows:
169
+ The Firefox browser currently does not support this behavior because the [getWeekInfo](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo) API is not yet implemented.
170
+
171
+ ```ts
172
+ import { Settings } from 'luxon';
173
+
174
+ Settings.defaultWeekSettings = {
175
+ firstDay: 1,
176
+ minimalDays: Info.getMinimumDaysInFirstWeek(),
177
+ weekend: [6, 7],
178
+ };
179
+ ```
180
+
181
+ - Add new parameters to the `shortcuts` slot `onChange` callback
182
+
183
+ The `onChange` callback fired when selecting a shortcut now requires two new parameters (previously they were optional):
184
+
185
+ - The [`changeImportance`](/x/react-date-pickers/shortcuts/#behavior-when-selecting-a-shortcut) of the shortcut.
186
+ - The `item` containing the entire shortcut object.
187
+
188
+ ```diff
189
+ const CustomShortcuts = (props) => {
190
+ return (
191
+ <React.Fragment>
192
+ {props.items.map(item => {
193
+ const value = item.getValue({ isValid: props.isValid });
194
+ return (
195
+ <button
196
+ - onClick={() => onChange(value)}
197
+ + onClick={() => onChange(value, props.changeImportance ?? 'accept', item)}
198
+ >
199
+ {value}
200
+ </button>
201
+ )
202
+ }}
203
+ </React.Fragment>
204
+ )
205
+ }
206
+
207
+ <DatePicker slots={{ shortcuts: CustomShortcuts }} />
208
+ ```
209
+
210
+ - Usage of `AdapterDayjs` with the `customParseFormat` plugin
211
+ The call to `dayjs.extend(customParseFormatPlugin)` has been moved to the `AdapterDayjs` constructor. This allows users to pass custom options to this plugin before the adapter uses it.
212
+
213
+ If you are using this plugin before the rendering of the first `LocalizationProvider` component and did not call `dayjs.extend` in your own codebase, you will need to manually extend `dayjs`:
214
+
215
+ ```tsx
216
+ import dayjs from 'dayjs';
217
+ import customParseFormatPlugin from 'dayjs/plugin/customParseFormat';
218
+
219
+ dayjs.extend(customParseFormatPlugin);
220
+ ```
221
+
222
+ The other plugins are still added before the adapter initialization.
223
+
224
+ #### `@mui/x-date-pickers@7.0.0-alpha.3`
225
+
226
+ - [pickers] Expand field placeholder methods flexibility by providing `format` parameter (#11130) @LukasTy
227
+ - [pickers] Make `changeImportance` and `shortcut` mandatory in `PickersShortcuts` (#10941) @flaviendelangle
228
+ - [pickers] Moved extend with `customParseFormat` to constructor (#11151) @michelengelen
229
+ - [pickers] POC: `PickersTextField` styling - outlined variant (#10778) @noraleonte
230
+ - [pickers] Support localized start of the week on `AdapterLuxon` (#10964) @flaviendelangle
231
+ - [pickers] Use adapter methods instead of date library ones whenever possible (#11142) @flaviendelangle
232
+
233
+ #### `@mui/x-date-pickers-pro@7.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
234
+
235
+ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.3`.
236
+
237
+ ### Charts / `@mui/x-charts@7.0.0-alpha.3`
238
+
239
+ - [charts] Adjusted `defaultizeValueFormatter` util to accept an optional `series.valueFormatter` value (#11144) @michelengelen
240
+ - [charts] Apply `labelStyle` and `tickLabelStyle` props on `<ChartsYAxis />` (#11180) @akamfoad
241
+ - [charts] Fix TS config (#11259) @alexfauquette
242
+ - [charts] Fix error with empty dataset (#11063) @alexfauquette
243
+ - [charts] Fix export strategy (#11235) @alexfauquette
244
+ - [charts] Remove outdated prop-types (#11045) @alexfauquette
245
+
246
+ ### Docs
247
+
248
+ - [docs] Add `TextField` styling example to customization playground (#10812) @noraleonte
249
+ - [docs] Add a card grid to the installation page (#11177) @danilo-leal
250
+ - [docs] Add end v6 blogpost to whats new page (#10999) @joserodolfofreitas
251
+ - [docs] Add small formatting improvements to the licensing page (#11178) @danilo-leal
252
+ - [docs] Document charts composition (#10710) (#11239) @alexfauquette
253
+ - [docs] Fix <title> generation (#11182) @oliviertassinari
254
+ - [docs] Fix dead anchor link (#11265) @oliviertassinari
255
+ - [docs] Improve Data Grid togglable columns example (#11238) @MBilalShafi
256
+ - [docs] Improve the prop descriptions of `DayCalendar` (#11158) @flaviendelangle
257
+ - [docs] Move the adapter breaking changes in a collapsable block (#11205) @flaviendelangle
258
+ - [docs] Polish Next.js header description @oliviertassinari
259
+ - [docs] Remove the `newFeature` flag on v6 features (#11168) @flaviendelangle
260
+ - [docs] Simplify a bit chart demo (#11173) @oliviertassinari
261
+ - [docs] Standardize the usage of callouts in the MUI X docs (#7127) @samuelsycamore
262
+ - [docs] Adjust the Data Grid demo page design (#11231) @danilo-leal
263
+
264
+ ### Core
265
+
266
+ - [core] Make `@mui/system` a direct dependency (#11128) @LukasTy
267
+ - [core] Remove blank lines, coding style @oliviertassinari
268
+ - [core] Remove outdated `ENABLE_AD` env variable (#11181) @oliviertassinari
269
+ - [github] Do not add `plan: Pro` and `plan: Premium` labels on pro / premium issue templates (#10183) @flaviendelangle
270
+
6
271
  ## 7.0.0-alpha.2
7
272
 
8
273
  _Nov 23, 2023_
@@ -684,6 +949,105 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
684
949
  - [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi
685
950
  - [license] Correctly throw errors (#10924) @oliviertassinari
686
951
 
952
+ ## 6.18.4
953
+
954
+ _Dec 8, 2023_
955
+
956
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
957
+
958
+ - 📚 Add [Pickers FAQ page](https://mui.com/x/react-date-pickers/faq/)
959
+ - 🌍 Improve Danish (da-DK) locale on Data Grid
960
+ - 🐞 Bugfixes
961
+
962
+ ### Data Grid
963
+
964
+ #### `@mui/x-data-grid@6.18.4`
965
+
966
+ - [DataGrid] Fix cell slot style override (#11215) @oliviertassinari
967
+ - [l10n] Improve Danish (da-DK) locale (#11346) @goibon
968
+
969
+ #### `@mui/x-data-grid-pro@6.18.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
970
+
971
+ Same changes as in `@mui/x-data-grid@6.18.4`.
972
+
973
+ #### `@mui/x-data-grid-premium@6.18.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
974
+
975
+ Same changes as in `@mui/x-data-grid-pro@6.18.4`.
976
+
977
+ ### Date Pickers
978
+
979
+ #### `@mui/x-date-pickers@6.18.4`
980
+
981
+ - [pickers] Fix `MultiSectionDigitalClock` issues (#11308) @LukasTy
982
+
983
+ #### `@mui/x-date-pickers-pro@6.18.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
984
+
985
+ Same changes as in `@mui/x-date-pickers@6.18.4`.
986
+
987
+ ### Docs
988
+
989
+ - [docs] Fix typo (#11323) @cadam11
990
+ - [docs] Add FAQ page (#11347) @noraleonte
991
+
992
+ ## 6.18.3
993
+
994
+ _Dec 4, 2023_
995
+
996
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
997
+
998
+ - 📈 Fix a lot of Charts package issues
999
+ - 🌍 Improve Bulgarian (bg-BG) locale on Data Grid
1000
+ - 🐞 Bugfixes
1001
+ - 📚 Documentation improvements
1002
+
1003
+ ### Data Grid
1004
+
1005
+ #### `@mui/x-data-grid@6.18.3`
1006
+
1007
+ - [DataGrid] Fix cell editing adding a leading "v" on paste (#11166) @prasad5795
1008
+ - [DataGrid] Fix handling of event target in portal (#11209) @cherniavskii
1009
+ - [DataGrid] Fix `onFilterModelChange` being fired with stale field value (#11244) @gitstart
1010
+ - [l10n] Improve Bulgarian (bg-BG) locale (#10856) (#11206) @Kristiqn95
1011
+
1012
+ #### `@mui/x-data-grid-pro@6.18.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1013
+
1014
+ Same changes as in `@mui/x-data-grid@6.18.3`.
1015
+
1016
+ #### `@mui/x-data-grid-premium@6.18.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1017
+
1018
+ Same changes as in `@mui/x-data-grid-pro@6.18.3`, plus:
1019
+
1020
+ - [DataGridPremium] Fix aggregated column ignoring column definition changes (#11176) @cherniavskii
1021
+ - [DataGridPremium] Fix custom filter operators not working on aggregated column (#11201) @cherniavskii
1022
+
1023
+ ### Date Pickers
1024
+
1025
+ #### `@mui/x-date-pickers@6.18.3`
1026
+
1027
+ - [pickers] Correctly format `MultiSectionDigitalClock` number sections (#11297) @LukasTy
1028
+ - [pickers] Expand field placeholder methods flexibility by providing `format` parameter (#11254) @LukasTy
1029
+
1030
+ #### `@mui/x-date-pickers-pro@6.18.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1031
+
1032
+ Same changes as in `@mui/x-date-pickers@6.18.3`.
1033
+
1034
+ ### Charts / `@mui/x-charts@6.18.3`
1035
+
1036
+ - [charts] Adjusted `defaultizeValueFormatter` util to accept an optional `series.valueFormatter` value (#11213) @michelengelen
1037
+ - [charts] Apply `labelStyle` and `tickLabelStyle` props on `<ChartsYAxis />` (#11180) @akamfoad
1038
+ - [charts] Fix TS config (#11259) @alexfauquette
1039
+ - [charts] Fix error with empty dataset (#11063) @alexfauquette
1040
+ - [charts] Fix export strategy (#11235) @alexfauquette
1041
+
1042
+ ### Docs
1043
+
1044
+ - [docs] Add LTS section to support page (#11300) @joserodolfofreitas
1045
+ - [docs] Add end v6 blogpost to whats new page (#11299) @joserodolfofreitas
1046
+ - [docs] Document charts composition (#10710) @alexfauquette
1047
+ - [docs] Fix version links (#11167) @LukasTy
1048
+ - [docs] Improve Data Grid togglable columns example (#11241) @MBilalShafi
1049
+ - [docs] Split charts overview and getting started in distinct pages (#10910) @alexfauquette
1050
+
687
1051
  ## 6.18.2
688
1052
 
689
1053
  _Nov 23, 2023_
@@ -44,7 +44,7 @@ const DateRangeCalendarMonthContainer = styled('div', {
44
44
  }
45
45
  }));
46
46
  const DateRangeCalendarArrowSwitcher = styled(PickersArrowSwitcher)({
47
- padding: '16px 16px 8px 16px',
47
+ padding: '12px 16px 4px 16px',
48
48
  display: 'flex',
49
49
  alignItems: 'center',
50
50
  justifyContent: 'space-between'
@@ -563,8 +563,8 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
563
563
  */
564
564
  displayWeekNumber: PropTypes.bool,
565
565
  /**
566
- * Calendar will show more weeks in order to match this value.
567
- * Put it to 6 for having fix number of week in Gregorian calendars
566
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
567
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
568
568
  * @default undefined
569
569
  */
570
570
  fixedWeekNumber: PropTypes.number,
@@ -621,7 +621,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
621
621
  */
622
622
  referenceDate: PropTypes.any,
623
623
  /**
624
- * Component displaying when passed `loading` true.
624
+ * Component rendered on the "day" view when `props.loading` is true.
625
625
  * @returns {React.ReactNode} The node to render when loading.
626
626
  * @default () => "..."
627
627
  */
@@ -137,8 +137,8 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
137
137
  */
138
138
  displayWeekNumber: PropTypes.bool,
139
139
  /**
140
- * Calendar will show more weeks in order to match this value.
141
- * Put it to 6 for having fix number of week in Gregorian calendars
140
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
141
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
142
142
  * @default undefined
143
143
  */
144
144
  fixedWeekNumber: PropTypes.number,
@@ -254,7 +254,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
254
254
  */
255
255
  referenceDate: PropTypes.any,
256
256
  /**
257
- * Component displaying when passed `loading` true.
257
+ * Component rendered on the "day" view when `props.loading` is true.
258
258
  * @returns {React.ReactNode} The node to render when loading.
259
259
  * @default () => "..."
260
260
  */
@@ -146,8 +146,8 @@ DesktopDateRangePicker.propTypes = {
146
146
  */
147
147
  displayWeekNumber: PropTypes.bool,
148
148
  /**
149
- * Calendar will show more weeks in order to match this value.
150
- * Put it to 6 for having fix number of week in Gregorian calendars
149
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
150
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
151
151
  * @default undefined
152
152
  */
153
153
  fixedWeekNumber: PropTypes.number,
@@ -263,7 +263,7 @@ DesktopDateRangePicker.propTypes = {
263
263
  */
264
264
  referenceDate: PropTypes.any,
265
265
  /**
266
- * Component displaying when passed `loading` true.
266
+ * Component rendered on the "day" view when `props.loading` is true.
267
267
  * @returns {React.ReactNode} The node to render when loading.
268
268
  * @default () => "..."
269
269
  */
@@ -146,8 +146,8 @@ MobileDateRangePicker.propTypes = {
146
146
  */
147
147
  displayWeekNumber: PropTypes.bool,
148
148
  /**
149
- * Calendar will show more weeks in order to match this value.
150
- * Put it to 6 for having fix number of week in Gregorian calendars
149
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
150
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
151
151
  * @default undefined
152
152
  */
153
153
  fixedWeekNumber: PropTypes.number,
@@ -263,7 +263,7 @@ MobileDateRangePicker.propTypes = {
263
263
  */
264
264
  referenceDate: PropTypes.any,
265
265
  /**
266
- * Component displaying when passed `loading` true.
266
+ * Component rendered on the "day" view when `props.loading` is true.
267
267
  * @returns {React.ReactNode} The node to render when loading.
268
268
  * @default () => "..."
269
269
  */
package/README.md CHANGED
@@ -35,7 +35,6 @@ This component has the following peer dependencies that you will need to install
35
35
  ```json
36
36
  "peerDependencies": {
37
37
  "@mui/material": "^5.8.6",
38
- "@mui/system": "^5.8.0",
39
38
  "react": "^17.0.0 || ^18.0.0",
40
39
  "react-dom": "^17.0.0 || ^18.0.0"
41
40
  },
@@ -132,8 +132,8 @@ StaticDateRangePicker.propTypes = {
132
132
  */
133
133
  displayWeekNumber: PropTypes.bool,
134
134
  /**
135
- * Calendar will show more weeks in order to match this value.
136
- * Put it to 6 for having fix number of week in Gregorian calendars
135
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
136
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
137
137
  * @default undefined
138
138
  */
139
139
  fixedWeekNumber: PropTypes.number,
@@ -214,7 +214,7 @@ StaticDateRangePicker.propTypes = {
214
214
  */
215
215
  referenceDate: PropTypes.any,
216
216
  /**
217
- * Component displaying when passed `loading` true.
217
+ * Component rendered on the "day" view when `props.loading` is true.
218
218
  * @returns {React.ReactNode} The node to render when loading.
219
219
  * @default () => "..."
220
220
  */
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v7.0.0-alpha.2
2
+ * @mui/x-date-pickers-pro v7.0.0-alpha.4
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTcwMDY5MDQwMDAwMA==";
3
+ const releaseInfo = "MTcwMTk5MDAwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
@@ -51,7 +51,7 @@ var DateRangeCalendarMonthContainer = styled('div', {
51
51
  };
52
52
  });
53
53
  var DateRangeCalendarArrowSwitcher = styled(PickersArrowSwitcher)({
54
- padding: '16px 16px 8px 16px',
54
+ padding: '12px 16px 4px 16px',
55
55
  display: 'flex',
56
56
  alignItems: 'center',
57
57
  justifyContent: 'space-between'
@@ -583,8 +583,8 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
583
583
  */
584
584
  displayWeekNumber: PropTypes.bool,
585
585
  /**
586
- * Calendar will show more weeks in order to match this value.
587
- * Put it to 6 for having fix number of week in Gregorian calendars
586
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
587
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
588
588
  * @default undefined
589
589
  */
590
590
  fixedWeekNumber: PropTypes.number,
@@ -641,7 +641,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
641
641
  */
642
642
  referenceDate: PropTypes.any,
643
643
  /**
644
- * Component displaying when passed `loading` true.
644
+ * Component rendered on the "day" view when `props.loading` is true.
645
645
  * @returns {React.ReactNode} The node to render when loading.
646
646
  * @default () => "..."
647
647
  */
@@ -136,8 +136,8 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
136
136
  */
137
137
  displayWeekNumber: PropTypes.bool,
138
138
  /**
139
- * Calendar will show more weeks in order to match this value.
140
- * Put it to 6 for having fix number of week in Gregorian calendars
139
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
140
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
141
141
  * @default undefined
142
142
  */
143
143
  fixedWeekNumber: PropTypes.number,
@@ -253,7 +253,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
253
253
  */
254
254
  referenceDate: PropTypes.any,
255
255
  /**
256
- * Component displaying when passed `loading` true.
256
+ * Component rendered on the "day" view when `props.loading` is true.
257
257
  * @returns {React.ReactNode} The node to render when loading.
258
258
  * @default () => "..."
259
259
  */
@@ -145,8 +145,8 @@ DesktopDateRangePicker.propTypes = {
145
145
  */
146
146
  displayWeekNumber: PropTypes.bool,
147
147
  /**
148
- * Calendar will show more weeks in order to match this value.
149
- * Put it to 6 for having fix number of week in Gregorian calendars
148
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
149
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
150
150
  * @default undefined
151
151
  */
152
152
  fixedWeekNumber: PropTypes.number,
@@ -262,7 +262,7 @@ DesktopDateRangePicker.propTypes = {
262
262
  */
263
263
  referenceDate: PropTypes.any,
264
264
  /**
265
- * Component displaying when passed `loading` true.
265
+ * Component rendered on the "day" view when `props.loading` is true.
266
266
  * @returns {React.ReactNode} The node to render when loading.
267
267
  * @default () => "..."
268
268
  */
@@ -145,8 +145,8 @@ MobileDateRangePicker.propTypes = {
145
145
  */
146
146
  displayWeekNumber: PropTypes.bool,
147
147
  /**
148
- * Calendar will show more weeks in order to match this value.
149
- * Put it to 6 for having fix number of week in Gregorian calendars
148
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
149
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
150
150
  * @default undefined
151
151
  */
152
152
  fixedWeekNumber: PropTypes.number,
@@ -262,7 +262,7 @@ MobileDateRangePicker.propTypes = {
262
262
  */
263
263
  referenceDate: PropTypes.any,
264
264
  /**
265
- * Component displaying when passed `loading` true.
265
+ * Component rendered on the "day" view when `props.loading` is true.
266
266
  * @returns {React.ReactNode} The node to render when loading.
267
267
  * @default () => "..."
268
268
  */
@@ -131,8 +131,8 @@ StaticDateRangePicker.propTypes = {
131
131
  */
132
132
  displayWeekNumber: PropTypes.bool,
133
133
  /**
134
- * Calendar will show more weeks in order to match this value.
135
- * Put it to 6 for having fix number of week in Gregorian calendars
134
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
135
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
136
136
  * @default undefined
137
137
  */
138
138
  fixedWeekNumber: PropTypes.number,
@@ -213,7 +213,7 @@ StaticDateRangePicker.propTypes = {
213
213
  */
214
214
  referenceDate: PropTypes.any,
215
215
  /**
216
- * Component displaying when passed `loading` true.
216
+ * Component rendered on the "day" view when `props.loading` is true.
217
217
  * @returns {React.ReactNode} The node to render when loading.
218
218
  * @default () => "..."
219
219
  */
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v7.0.0-alpha.2
2
+ * @mui/x-date-pickers-pro v7.0.0-alpha.4
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export var getReleaseInfo = function getReleaseInfo() {
3
- var releaseInfo = "MTcwMDY5MDQwMDAwMA==";
3
+ var releaseInfo = "MTcwMTk5MDAwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
@@ -44,7 +44,7 @@ const DateRangeCalendarMonthContainer = styled('div', {
44
44
  }
45
45
  }));
46
46
  const DateRangeCalendarArrowSwitcher = styled(PickersArrowSwitcher)({
47
- padding: '16px 16px 8px 16px',
47
+ padding: '12px 16px 4px 16px',
48
48
  display: 'flex',
49
49
  alignItems: 'center',
50
50
  justifyContent: 'space-between'
@@ -555,8 +555,8 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
555
555
  */
556
556
  displayWeekNumber: PropTypes.bool,
557
557
  /**
558
- * Calendar will show more weeks in order to match this value.
559
- * Put it to 6 for having fix number of week in Gregorian calendars
558
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
559
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
560
560
  * @default undefined
561
561
  */
562
562
  fixedWeekNumber: PropTypes.number,
@@ -613,7 +613,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
613
613
  */
614
614
  referenceDate: PropTypes.any,
615
615
  /**
616
- * Component displaying when passed `loading` true.
616
+ * Component rendered on the "day" view when `props.loading` is true.
617
617
  * @returns {React.ReactNode} The node to render when loading.
618
618
  * @default () => "..."
619
619
  */
@@ -137,8 +137,8 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
137
137
  */
138
138
  displayWeekNumber: PropTypes.bool,
139
139
  /**
140
- * Calendar will show more weeks in order to match this value.
141
- * Put it to 6 for having fix number of week in Gregorian calendars
140
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
141
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
142
142
  * @default undefined
143
143
  */
144
144
  fixedWeekNumber: PropTypes.number,
@@ -254,7 +254,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
254
254
  */
255
255
  referenceDate: PropTypes.any,
256
256
  /**
257
- * Component displaying when passed `loading` true.
257
+ * Component rendered on the "day" view when `props.loading` is true.
258
258
  * @returns {React.ReactNode} The node to render when loading.
259
259
  * @default () => "..."
260
260
  */
@@ -142,8 +142,8 @@ DesktopDateRangePicker.propTypes = {
142
142
  */
143
143
  displayWeekNumber: PropTypes.bool,
144
144
  /**
145
- * Calendar will show more weeks in order to match this value.
146
- * Put it to 6 for having fix number of week in Gregorian calendars
145
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
146
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
147
147
  * @default undefined
148
148
  */
149
149
  fixedWeekNumber: PropTypes.number,
@@ -259,7 +259,7 @@ DesktopDateRangePicker.propTypes = {
259
259
  */
260
260
  referenceDate: PropTypes.any,
261
261
  /**
262
- * Component displaying when passed `loading` true.
262
+ * Component rendered on the "day" view when `props.loading` is true.
263
263
  * @returns {React.ReactNode} The node to render when loading.
264
264
  * @default () => "..."
265
265
  */
@@ -142,8 +142,8 @@ MobileDateRangePicker.propTypes = {
142
142
  */
143
143
  displayWeekNumber: PropTypes.bool,
144
144
  /**
145
- * Calendar will show more weeks in order to match this value.
146
- * Put it to 6 for having fix number of week in Gregorian calendars
145
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
146
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
147
147
  * @default undefined
148
148
  */
149
149
  fixedWeekNumber: PropTypes.number,
@@ -259,7 +259,7 @@ MobileDateRangePicker.propTypes = {
259
259
  */
260
260
  referenceDate: PropTypes.any,
261
261
  /**
262
- * Component displaying when passed `loading` true.
262
+ * Component rendered on the "day" view when `props.loading` is true.
263
263
  * @returns {React.ReactNode} The node to render when loading.
264
264
  * @default () => "..."
265
265
  */
@@ -131,8 +131,8 @@ StaticDateRangePicker.propTypes = {
131
131
  */
132
132
  displayWeekNumber: PropTypes.bool,
133
133
  /**
134
- * Calendar will show more weeks in order to match this value.
135
- * Put it to 6 for having fix number of week in Gregorian calendars
134
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
135
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
136
136
  * @default undefined
137
137
  */
138
138
  fixedWeekNumber: PropTypes.number,
@@ -213,7 +213,7 @@ StaticDateRangePicker.propTypes = {
213
213
  */
214
214
  referenceDate: PropTypes.any,
215
215
  /**
216
- * Component displaying when passed `loading` true.
216
+ * Component rendered on the "day" view when `props.loading` is true.
217
217
  * @returns {React.ReactNode} The node to render when loading.
218
218
  * @default () => "..."
219
219
  */
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v7.0.0-alpha.2
2
+ * @mui/x-date-pickers-pro v7.0.0-alpha.4
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTcwMDY5MDQwMDAwMA==";
3
+ const releaseInfo = "MTcwMTk5MDAwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
@@ -52,7 +52,7 @@ const DateRangeCalendarMonthContainer = (0, _styles.styled)('div', {
52
52
  }
53
53
  }));
54
54
  const DateRangeCalendarArrowSwitcher = (0, _styles.styled)(_internals.PickersArrowSwitcher)({
55
- padding: '16px 16px 8px 16px',
55
+ padding: '12px 16px 4px 16px',
56
56
  display: 'flex',
57
57
  alignItems: 'center',
58
58
  justifyContent: 'space-between'
@@ -563,8 +563,8 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
563
563
  */
564
564
  displayWeekNumber: _propTypes.default.bool,
565
565
  /**
566
- * Calendar will show more weeks in order to match this value.
567
- * Put it to 6 for having fix number of week in Gregorian calendars
566
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
567
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
568
568
  * @default undefined
569
569
  */
570
570
  fixedWeekNumber: _propTypes.default.number,
@@ -621,7 +621,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
621
621
  */
622
622
  referenceDate: _propTypes.default.any,
623
623
  /**
624
- * Component displaying when passed `loading` true.
624
+ * Component rendered on the "day" view when `props.loading` is true.
625
625
  * @returns {React.ReactNode} The node to render when loading.
626
626
  * @default () => "..."
627
627
  */
@@ -146,8 +146,8 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
146
146
  */
147
147
  displayWeekNumber: _propTypes.default.bool,
148
148
  /**
149
- * Calendar will show more weeks in order to match this value.
150
- * Put it to 6 for having fix number of week in Gregorian calendars
149
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
150
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
151
151
  * @default undefined
152
152
  */
153
153
  fixedWeekNumber: _propTypes.default.number,
@@ -263,7 +263,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
263
263
  */
264
264
  referenceDate: _propTypes.default.any,
265
265
  /**
266
- * Component displaying when passed `loading` true.
266
+ * Component rendered on the "day" view when `props.loading` is true.
267
267
  * @returns {React.ReactNode} The node to render when loading.
268
268
  * @default () => "..."
269
269
  */
@@ -151,8 +151,8 @@ DesktopDateRangePicker.propTypes = {
151
151
  */
152
152
  displayWeekNumber: _propTypes.default.bool,
153
153
  /**
154
- * Calendar will show more weeks in order to match this value.
155
- * Put it to 6 for having fix number of week in Gregorian calendars
154
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
155
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
156
156
  * @default undefined
157
157
  */
158
158
  fixedWeekNumber: _propTypes.default.number,
@@ -268,7 +268,7 @@ DesktopDateRangePicker.propTypes = {
268
268
  */
269
269
  referenceDate: _propTypes.default.any,
270
270
  /**
271
- * Component displaying when passed `loading` true.
271
+ * Component rendered on the "day" view when `props.loading` is true.
272
272
  * @returns {React.ReactNode} The node to render when loading.
273
273
  * @default () => "..."
274
274
  */
@@ -151,8 +151,8 @@ MobileDateRangePicker.propTypes = {
151
151
  */
152
152
  displayWeekNumber: _propTypes.default.bool,
153
153
  /**
154
- * Calendar will show more weeks in order to match this value.
155
- * Put it to 6 for having fix number of week in Gregorian calendars
154
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
155
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
156
156
  * @default undefined
157
157
  */
158
158
  fixedWeekNumber: _propTypes.default.number,
@@ -268,7 +268,7 @@ MobileDateRangePicker.propTypes = {
268
268
  */
269
269
  referenceDate: _propTypes.default.any,
270
270
  /**
271
- * Component displaying when passed `loading` true.
271
+ * Component rendered on the "day" view when `props.loading` is true.
272
272
  * @returns {React.ReactNode} The node to render when loading.
273
273
  * @default () => "..."
274
274
  */
@@ -140,8 +140,8 @@ StaticDateRangePicker.propTypes = {
140
140
  */
141
141
  displayWeekNumber: _propTypes.default.bool,
142
142
  /**
143
- * Calendar will show more weeks in order to match this value.
144
- * Put it to 6 for having fix number of week in Gregorian calendars
143
+ * The day view will show as many weeks as needed after the end of the current month to match this value.
144
+ * Put it to 6 to have a fixed number of weeks in Gregorian calendars
145
145
  * @default undefined
146
146
  */
147
147
  fixedWeekNumber: _propTypes.default.number,
@@ -222,7 +222,7 @@ StaticDateRangePicker.propTypes = {
222
222
  */
223
223
  referenceDate: _propTypes.default.any,
224
224
  /**
225
- * Component displaying when passed `loading` true.
225
+ * Component rendered on the "day" view when `props.loading` is true.
226
226
  * @returns {React.ReactNode} The node to render when loading.
227
227
  * @default () => "..."
228
228
  */
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v7.0.0-alpha.2
2
+ * @mui/x-date-pickers-pro v7.0.0-alpha.4
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.getReleaseInfo = void 0;
7
7
  var _utils = require("@mui/utils");
8
8
  const getReleaseInfo = () => {
9
- const releaseInfo = "MTcwMDY5MDQwMDAwMA==";
9
+ const releaseInfo = "MTcwMTk5MDAwMDAwMA==";
10
10
  if (process.env.NODE_ENV !== 'production') {
11
11
  // A simple hack to set the value in the test environment (has no build step).
12
12
  // eslint-disable-next-line no-useless-concat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-date-pickers-pro",
3
- "version": "7.0.0-alpha.2",
3
+ "version": "7.0.0-alpha.4",
4
4
  "description": "The commercial edition of the date picker components (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -31,10 +31,11 @@
31
31
  "directory": "packages/x-date-pickers-pro"
32
32
  },
33
33
  "dependencies": {
34
- "@babel/runtime": "^7.23.4",
35
- "@mui/base": "^5.0.0-beta.24",
36
- "@mui/utils": "^5.14.18",
37
- "@mui/x-date-pickers": "7.0.0-alpha.2",
34
+ "@babel/runtime": "^7.23.5",
35
+ "@mui/base": "^5.0.0-beta.26",
36
+ "@mui/system": "^5.14.20",
37
+ "@mui/utils": "^5.14.20",
38
+ "@mui/x-date-pickers": "7.0.0-alpha.4",
38
39
  "@mui/x-license-pro": "7.0.0-alpha.1",
39
40
  "clsx": "^2.0.0",
40
41
  "prop-types": "^15.8.1",
@@ -44,7 +45,6 @@
44
45
  "@emotion/react": "^11.9.0",
45
46
  "@emotion/styled": "^11.8.1",
46
47
  "@mui/material": "^5.8.6",
47
- "@mui/system": "^5.8.0",
48
48
  "date-fns": "^2.25.0",
49
49
  "date-fns-jalali": "^2.13.0-0",
50
50
  "dayjs": "^1.10.7",