@mui/x-date-pickers-pro 9.3.0 → 9.5.0

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 (26) hide show
  1. package/CHANGELOG.md +296 -0
  2. package/DateRangeCalendar/DateRangeCalendar.js +4 -4
  3. package/DateRangeCalendar/DateRangeCalendar.mjs +4 -4
  4. package/DateRangePicker/DateRangePicker.js +1 -1
  5. package/DateRangePicker/DateRangePicker.mjs +1 -1
  6. package/DateRangePickerDay/DateRangePickerDay.js +2 -2
  7. package/DateRangePickerDay/DateRangePickerDay.mjs +2 -2
  8. package/DateTimeRangePicker/DateTimeRangePicker.js +1 -1
  9. package/DateTimeRangePicker/DateTimeRangePicker.mjs +1 -1
  10. package/DesktopDateRangePicker/DesktopDateRangePicker.js +1 -1
  11. package/DesktopDateRangePicker/DesktopDateRangePicker.mjs +1 -1
  12. package/DesktopDateTimeRangePicker/DesktopDateTimeRangePicker.js +1 -1
  13. package/DesktopDateTimeRangePicker/DesktopDateTimeRangePicker.mjs +1 -1
  14. package/MobileDateRangePicker/MobileDateRangePicker.js +1 -1
  15. package/MobileDateRangePicker/MobileDateRangePicker.mjs +1 -1
  16. package/MobileDateTimeRangePicker/MobileDateTimeRangePicker.js +1 -1
  17. package/MobileDateTimeRangePicker/MobileDateTimeRangePicker.mjs +1 -1
  18. package/StaticDateRangePicker/StaticDateRangePicker.js +1 -1
  19. package/StaticDateRangePicker/StaticDateRangePicker.mjs +1 -1
  20. package/index.js +1 -1
  21. package/index.mjs +1 -1
  22. package/internals/hooks/useDesktopRangePicker/useDesktopRangePicker.js +2 -2
  23. package/internals/hooks/useDesktopRangePicker/useDesktopRangePicker.mjs +2 -2
  24. package/internals/hooks/useMobileRangePicker/useMobileRangePicker.js +2 -2
  25. package/internals/hooks/useMobileRangePicker/useMobileRangePicker.mjs +2 -2
  26. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,301 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.5.0
4
+
5
+ _Jun 11, 2026_
6
+
7
+ We'd like to extend a big thank you to the 9 contributors who made this release possible. Here are some highlights ✨:
8
+
9
+ - 🎁 New [`multiSelect` column type for Data Grid Pro](https://mui.com/x/react-data-grid/column-definition/#MultiSelectColumn)
10
+ - 🚀 New [renderer="svg-progressive"](https://mui.com/x/react-charts/scatter/#progressive-renderer) paints scatter points in batched frames so large datasets render smoothly without blocking the main thread.
11
+ - 🐞 Bugfixes
12
+ - 📚 Documentation improvements
13
+
14
+ Special thanks go out to community members @mustafajw07 and @Anexus5919 for their valuable contribution.
15
+
16
+ The following team members contributed to this release:
17
+ @alexfauquette, @JCQuintas, @rita-codes, @rluzists1, @sai6855, @siriwatknp, @arminmeh, @brijeshb42
18
+
19
+ ### Data Grid
20
+
21
+ #### `@mui/x-data-grid@9.5.0`
22
+
23
+ - [DataGrid] Restrict warning messages to non-production environments in various components (#22461) @sai6855
24
+ - [DataGrid] Prevent React state update before mount (#22374) @arminmeh
25
+
26
+ #### `@mui/x-data-grid-pro@9.5.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
27
+
28
+ Same changes as in `@mui/x-data-grid@9.5.0`, plus:
29
+
30
+ - [DataGridPro] Add new `multiSelect` column type (#21157) @siriwatknp
31
+
32
+ #### `@mui/x-data-grid-premium@9.5.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
33
+
34
+ Same changes as in `@mui/x-data-grid-pro@9.5.0`.
35
+
36
+ ### Date and Time Pickers
37
+
38
+ #### `@mui/x-date-pickers@9.5.0`
39
+
40
+ - [pickers] Fix missing export of `th-TH` (#22703) @alexfauquette
41
+
42
+ #### `@mui/x-date-pickers-pro@9.5.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
43
+
44
+ Same changes as in `@mui/x-date-pickers@9.5.0`.
45
+
46
+ ### Charts
47
+
48
+ #### `@mui/x-charts@9.5.0`
49
+
50
+ - [charts] Add `FocusedBar` component to `BarScatterComposition` demo (#22704) @sai6855
51
+ - [charts] Add dedicated Bubble Chart documentation page (#22688) @mustafajw07
52
+ - [charts] Add progressive scatter renderer (#22518) @JCQuintas
53
+ - [charts] Avoid full axis pipeline rebuild on resize (#22695) @JCQuintas
54
+ - [charts] Document focus indicator in composition page (#22712) @JCQuintas
55
+ - [charts] Fix `ChartsTooltip` `container` and `disablePortal` props being ignored (#22690) @JCQuintas
56
+ - [charts] Make ordinal scales O(1) to copy and re-range (#22691) @JCQuintas
57
+ - [charts] Stabilize WebGL bar rendering at sub-pixel widths (#22678) @JCQuintas
58
+ - [charts] Use the series config to define value types (#22693) @sai6855
59
+ - [charts] Decouple interaction hook from the cartesian zoom (#22708) @alexfauquette
60
+
61
+ #### `@mui/x-charts-pro@9.5.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
62
+
63
+ Same changes as in `@mui/x-charts@9.5.0`, plus:
64
+
65
+ - [charts-pro] Add missing focus highlight (#22689) @alexfauquette
66
+
67
+ #### `@mui/x-charts-premium@9.5.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
68
+
69
+ Same changes as in `@mui/x-charts-pro@9.5.0`, plus:
70
+
71
+ - [charts-premium] Set `Heatmap` WebGL render as stable (#22665) @alexfauquette
72
+ - [charts-premium] Stabilize candlestick charts (#22666) @alexfauquette
73
+ - [charts-premium] Stabilize the radial charts (#22655) @alexfauquette
74
+
75
+ ### Scheduler
76
+
77
+ #### `@mui/x-scheduler@9.0.0-beta.1`
78
+
79
+ Internal changes.
80
+
81
+ #### `@mui/x-scheduler-premium@9.0.0-beta.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
82
+
83
+ Same changes as in `@mui/x-scheduler@9.0.0-beta.1`, plus:
84
+
85
+ - [scheduler] Remove dead CSS variable writes in `EventTimelinePremiumContent` (#22720) @rita-codes
86
+ - [scheduler] Show scope dialog when deleting a recurring event (#22552) @Anexus5919
87
+
88
+ ### Core
89
+
90
+ - [docs-infra] Fix immutable cache headers for `/\_next/static` assets (#22747) @brijeshb42
91
+ - [docs-infra] Prefix `/\_next/static` cache header rule with `/x` basePath (#22748) @brijeshb42
92
+ - [code-infra] Update dependencies to resolve Dependabot security alerts (#22714) @Janpot
93
+
94
+ ### Docs
95
+
96
+ - [docs] Fix broken links checker crashing on 404 known-targets fetch (#22707) @sai6855
97
+ - [docs] Fix country data (#22716) @alexfauquette
98
+
99
+ ### Miscellaneous
100
+
101
+ - [legal] Update EULA links in docs (#22717) @rluzists1
102
+
103
+ ## 9.4.0
104
+
105
+ <!-- generated comparing v9.3.0..master -->
106
+
107
+ _Jun 4, 2026_
108
+
109
+ We'd like to extend a big thank you to the 21 contributors who made this release possible. Here are some highlights ✨:
110
+
111
+ - 🎉 Scheduler is now in Beta shipping with Timeline vitualization and lazy loading
112
+ - 📆 Implement Event Timeline virtualization (#22339)
113
+ - 🫧 Introduce bubble charts (#22537)
114
+ - 🐞 Bugfixes
115
+ - 📚 Documentation improvements
116
+
117
+ Special thanks go out to these community members for their valuable contributions:
118
+ @imxv, @mixelburg, @mustafajw07
119
+
120
+ The following team members contributed to this release:
121
+ @aemartos, @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @joserodolfofreitas, @LukasTy, @MBilalShafi, @michelengelen, @mj12albert, @noraleonte, @oliviertassinari, @rita-codes, @romgrk, @sai6855
122
+
123
+ ### Data Grid
124
+
125
+ #### `@mui/x-data-grid@9.4.0`
126
+
127
+ - [DataGrid] Fix `avg` aggregation when the average is zero (#22652) @mj12albert
128
+ - [DataGrid] Inherit icon `fontSize` from `baseIconButton` size (#22187) @imxv
129
+ - [DataGrid] Fix `noRowsOverlay` flicker between `dataSource` re-fetches (#22465) @LukasTy
130
+
131
+ #### `@mui/x-data-grid-pro@9.4.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
132
+
133
+ Same changes as in `@mui/x-data-grid@9.4.0`.
134
+
135
+ #### `@mui/x-data-grid-premium@9.4.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
136
+
137
+ > This release includes a version bump of the `@mui/x-internal-exceljs-fork` package to address the vulnerable dependencies.
138
+ > The following CVEs are fixed:
139
+ >
140
+ > - <https://github.com/advisories/GHSA-ph9p-34f9-6g65>
141
+ > - <https://github.com/isaacs/minimatch/security/advisories/GHSA-23c5-xmqv-rm74>
142
+ > - <https://github.com/advisories/GHSA-w5hq-g745-h8pq>
143
+ >
144
+ > To make this security update possible, we bumped the `node` version requirement from `>=14.0.0` to `>=14.17.0`.
145
+ > [Node.js 14.17.0](https://nodejs.org/en/blog/release/v14.17.0) was released in May 2021, so we consider it safe to bump the requirement without causing issues for our users.
146
+
147
+ Same changes as in `@mui/x-data-grid-pro@9.4.0`, plus:
148
+
149
+ - [DataGridPremium] Nested Lazy Loading (#21043) @MBilalShafi
150
+ - [DataGridPremium] Update exceljs fork (#22658) @cherniavskii
151
+
152
+ ### Date and Time Pickers
153
+
154
+ #### `@mui/x-date-pickers@9.4.0`
155
+
156
+ Internal changes.
157
+
158
+ #### `@mui/x-date-pickers-pro@9.4.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
159
+
160
+ Same changes as in `@mui/x-date-pickers@9.4.0`.
161
+
162
+ ### Charts
163
+
164
+ #### `@mui/x-charts@9.4.0`
165
+
166
+ - [charts] Add functionality to hide elements during chart export (#22525) @sai6855
167
+ - [charts] Add option to show marks only on the first/last values (#22645) @alexfauquette
168
+ - [charts] Add text customization section and demo for axis labels (#22597) @sai6855
169
+ - [charts] Allow axes to scale according to the visible series only (#22566) @alexfauquette
170
+ - [charts] Correctly handle different identifiers for each series (#22556) @sai6855
171
+ - [charts] Fix inverted Y axis zoom/pan on ordinal scales (#22654) @JCQuintas
172
+ - [charts] Introduce bubble charts (#22537) @alexfauquette
173
+ - [charts] Let scatter chart tooltip ignore hidden series (#22614) @alexfauquette
174
+ - [charts] Make `'sqrt'` size mapping the default (#22683) @alexfauquette
175
+ - [charts] Remove unused proptypes (#22618) @alexfauquette
176
+ - [charts] Support module augmentation for slots (#22519) @sai6855
177
+ - [charts] Support multiple marker size in `findClosestPoint` (#22622) @alexfauquette
178
+ - [charts] Upgrade bezier-easing to v3 and use it for line chart hit-detection (#22608) @sai6855
179
+ - [charts] Use `useLayoutEffect` with `ResizeObserver` (#22646) @JCQuintas
180
+
181
+ #### `@mui/x-charts-pro@9.4.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
182
+
183
+ Same changes as in `@mui/x-charts@9.4.0`, plus:
184
+
185
+ - [charts-pro] Auto-select range button matching current zoom (#22137) @JCQuintas
186
+ - [charts-pro] Support range values in `initialZoom` (#22563) @JCQuintas
187
+
188
+ #### `@mui/x-charts-premium@9.4.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
189
+
190
+ Same changes as in `@mui/x-charts-pro@9.4.0`, plus:
191
+
192
+ - [charts-premium] Support range-bar series in WebGL bar renderer (#22607) @JCQuintas
193
+ - [charts-premium] Fix `onAxisClick` for radial bar and lines (#22522) @alexfauquette
194
+
195
+ ### Tree View
196
+
197
+ #### `@mui/x-tree-view@9.4.0`
198
+
199
+ Internal changes.
200
+
201
+ #### `@mui/x-tree-view-pro@9.4.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
202
+
203
+ Same changes as in `@mui/x-tree-view@9.4.0`.
204
+
205
+ ### Scheduler
206
+
207
+ #### Breaking changes
208
+
209
+ The theme `styleOverrides` slots for the skeleton and the error container were
210
+ renamed and unified. The CSS utility class names (for example
211
+ `.MuiEventCalendar-eventSkeleton`) are **not** affected — only
212
+ `theme.components.*` overrides need updating.
213
+
214
+ **Event skeleton**
215
+
216
+ | Before | After |
217
+ | --------------------------------------- | ------------------------------ |
218
+ | `MuiEventCalendar` slot `EventSkeleton` | `MuiEventSkeleton` slot `Root` |
219
+ | `MuiEventTimeline` slot `EventSkeleton` | `MuiEventSkeleton` slot `Root` |
220
+
221
+ **Error container**
222
+
223
+ | Before | After |
224
+ | ------------------------------------------------------------- | --------------------------------------- |
225
+ | `MuiEventCalendar` / `MuiEventTimeline` slot `ErrorContainer` | `MuiEventErrorContainer` slot `Root` |
226
+ | `MuiEventCalendar` / `MuiEventTimeline` slot `ErrorAlert` | `MuiEventErrorContainer` slot `Alert` |
227
+ | `MuiEventCalendar` / `MuiEventTimeline` slot `ErrorMessage` | `MuiEventErrorContainer` slot `Message` |
228
+
229
+ If you customized these through the theme, update the component name and slot
230
+ names accordingly:
231
+
232
+ ```diff
233
+ components: {
234
+ - MuiEventCalendar: {
235
+ + MuiEventSkeleton: {
236
+ styleOverrides: {
237
+ - EventSkeleton: { /* ... */ },
238
+ + Root: { /* ... */ },
239
+ },
240
+ },
241
+ },
242
+ }
243
+ ```
244
+
245
+ #### `@mui/x-scheduler@9.0.0-beta.0`
246
+
247
+ - [scheduler] Add a prop to control whether the resource of an event can be cleared (#22464) @rita-codes
248
+ - [scheduler] Add week number labels to agenda, day and week views (#22594) @mustafajw07
249
+ - [scheduler] Add `weekStartsOn` preference and update date functions to support custom week start (#22426) @mustafajw07
250
+ - [scheduler] Export premium version of the standalone views (#22621) @flaviendelangle
251
+ - [scheduler] Implement timeline virtualization (#22339) @romgrk
252
+ - [scheduler] Split scheduler overview (#22453) @joserodolfofreitas
253
+ - [scheduler] Unify `EventSkeleton` and `ErrorContainer` between `EventCalendar` and `EventTimeline` (#22676) @noraleonte
254
+
255
+ #### `@mui/x-scheduler-premium@9.0.0-beta.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
256
+
257
+ Same changes as in `@mui/x-scheduler@9.0.0-beta.0`.
258
+
259
+ ### Docs
260
+
261
+ - [docs] Add a performance docs page for charts (#22656) @alexfauquette
262
+ - [docs] Add real dataset for maps documentation (#22599) @alexfauquette
263
+ - [docs] Add spacing between selects on charts overview demo (#22589) @bernardobelchior
264
+ - [docs] Reorganize existing chat docs navigation (#22478) @hasdfa
265
+ - [docs] Switch to visionscarto's world atlas dataset (#22669) @cherniavskii
266
+ - [docs] Update TreeView `domstructure` docs and add demo (#22420) @mj12albert
267
+ - [docs] Fix indexation of Scheduler (#22567) @oliviertassinari
268
+ - [docs] Fix wide layout on event timeline lazy loading and Import title (#22604) @rita-codes
269
+ - [docs] Derive class name owners for shared charts classes (#22674) @JCQuintas
270
+
271
+ ### Core
272
+
273
+ - [code-infra] Drop unused and now-transitive deps from docs/package.json (#22549) @LukasTy
274
+ - [code-infra] Refresh CI Node pins to 22.22.3 (#22598) @LukasTy
275
+ - [code-infra] Skip empty product sections in changelog (#22541) @rita-codes
276
+ - [code-infra] Stabilize DataGridScrollRestoration visual regression test (#22553) @Janpot
277
+ - [internal] Add license to the `x-data-grid-generator` (#22240) @arminmeh
278
+ - [internal] Express default value for resource_class (#22569) @oliviertassinari
279
+ - [internal] Fix use of ellipsis (#21852) @oliviertassinari
280
+ - [internal] `useLayoutEffect` with `ResizeObserver` (#22428) @romgrk
281
+
282
+ ### Miscellaneous
283
+
284
+ - [chat-headless] Add built-in chat adapters (#22479) @hasdfa
285
+ - [chat-headless] Harden runtime model and message errors (#22480) @hasdfa
286
+ - [core] Prepare for TypeScript 6 bump (#22551) @LukasTy
287
+ - [core] Use CircleCI Gen2 resource classes (#22610) @LukasTy
288
+ - [infra] Fix broken tag retrieval on `master` during release (#22174) @michelengelen
289
+ - [infra] Group Base UI renovate updates (#22590) @LukasTy
290
+ - [pnpm] Add security settings to pnpm-workspace.yaml (#22611) @Janpot
291
+ - [release] Fix release PR scripts (#22680) @JCQuintas
292
+ - [test] Add a Tree View regression test for lazy loading with getChildrenCount returning -1 (#22605) @mixelburg
293
+ - [test] Disable LCD subpixel antialiasing in regression screenshots (#22602) @Janpot
294
+ - [test] Fix flaky Data Grid Pro data source tree data tests (#22659) @LukasTy
295
+ - [test] Remove stale form-submit TODO from e2e suite (#22564) @LukasTy
296
+ - [x-license] Exclude test keys from the published npm package (#22647) @aemartos
297
+ - [test] Fix flaky WebGL benchmark by polling for canvas content (#22535) @JCQuintas
298
+
3
299
  ## 9.3.0
4
300
 
5
301
  _May 21, 2026_
@@ -37,8 +37,8 @@ var _jsxRuntime = require("react/jsx-runtime");
37
37
  const _excluded = ["value", "defaultValue", "referenceDate", "onChange", "className", "classes", "disableFuture", "disablePast", "minDate", "maxDate", "shouldDisableDate", "reduceAnimations", "onMonthChange", "rangePosition", "defaultRangePosition", "onRangePositionChange", "calendars", "currentMonthCalendarPosition", "slots", "slotProps", "loading", "renderLoading", "disableHighlightToday", "focusedView", "onFocusedViewChange", "readOnly", "disabled", "showDaysOutsideCurrentMonth", "dayOfWeekFormatter", "disableAutoMonthSwitching", "autoFocus", "fixedWeekNumber", "disableDragEditing", "displayWeekNumber", "timezone", "availableRangePositions", "views", "view", "openTo", "onViewChange"],
38
38
  _excluded2 = ["isDragging", "rangeDragDay", "draggingDatePosition"];
39
39
  const packageInfo = {
40
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
41
- version: "9.3.0",
40
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
41
+ version: "9.5.0",
42
42
  name: 'x-date-pickers-pro'
43
43
  };
44
44
  const DateRangeCalendarRoot = (0, _styles.styled)('div', {
@@ -81,7 +81,7 @@ function useDateRangeCalendarDefaultizedProps(props, name) {
81
81
  const validationProps = (0, _internals2.useApplyDefaultValuesToDateValidationProps)(themeProps);
82
82
  return (0, _extends2.default)({}, themeProps, validationProps, {
83
83
  renderLoading: themeProps.renderLoading ?? (() => /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
84
- children: "..."
84
+ children: "\u2026"
85
85
  })),
86
86
  reduceAnimations,
87
87
  loading: props.loading ?? false,
@@ -684,7 +684,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
684
684
  /**
685
685
  * Component rendered on the "day" view when `props.loading` is true.
686
686
  * @returns {React.ReactNode} The node to render when loading.
687
- * @default () => "..."
687
+ * @default () => ""
688
688
  */
689
689
  renderLoading: _propTypes.default.func,
690
690
  /**
@@ -30,8 +30,8 @@ import { PickersRangeCalendarHeader } from "../PickersRangeCalendarHeader/index.
30
30
  import { useNullablePickerRangePositionContext } from "../internals/hooks/useNullablePickerRangePositionContext.mjs";
31
31
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
32
32
  const packageInfo = {
33
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
34
- version: "9.3.0",
33
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
34
+ version: "9.5.0",
35
35
  name: 'x-date-pickers-pro'
36
36
  };
37
37
  const DateRangeCalendarRoot = styled('div', {
@@ -74,7 +74,7 @@ function useDateRangeCalendarDefaultizedProps(props, name) {
74
74
  const validationProps = useApplyDefaultValuesToDateValidationProps(themeProps);
75
75
  return _extends({}, themeProps, validationProps, {
76
76
  renderLoading: themeProps.renderLoading ?? (() => /*#__PURE__*/_jsx("span", {
77
- children: "..."
77
+ children: "\u2026"
78
78
  })),
79
79
  reduceAnimations,
80
80
  loading: props.loading ?? false,
@@ -677,7 +677,7 @@ process.env.NODE_ENV !== "production" ? DateRangeCalendar.propTypes = {
677
677
  /**
678
678
  * Component rendered on the "day" view when `props.loading` is true.
679
679
  * @returns {React.ReactNode} The node to render when loading.
680
- * @default () => "..."
680
+ * @default () => ""
681
681
  */
682
682
  renderLoading: PropTypes.func,
683
683
  /**
@@ -288,7 +288,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
288
288
  /**
289
289
  * Component rendered on the "day" view when `props.loading` is true.
290
290
  * @returns {React.ReactNode} The node to render when loading.
291
- * @default () => "..."
291
+ * @default () => ""
292
292
  */
293
293
  renderLoading: _propTypes.default.func,
294
294
  /**
@@ -281,7 +281,7 @@ process.env.NODE_ENV !== "production" ? DateRangePicker.propTypes = {
281
281
  /**
282
282
  * Component rendered on the "day" view when `props.loading` is true.
283
283
  * @returns {React.ReactNode} The node to render when loading.
284
- * @default () => "..."
284
+ * @default () => ""
285
285
  */
286
286
  renderLoading: PropTypes.func,
287
287
  /**
@@ -328,8 +328,8 @@ const DateRangePickerDayRaw = /*#__PURE__*/React.forwardRef(function DateRangePi
328
328
  name: 'MuiDateRangePickerDay'
329
329
  });
330
330
  (0, _internals.useLicenseVerifier)({
331
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
332
- version: "9.3.0",
331
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
332
+ version: "9.5.0",
333
333
  name: 'x-date-pickers-pro'
334
334
  });
335
335
  const adapter = (0, _hooks.usePickerAdapter)();
@@ -321,8 +321,8 @@ const DateRangePickerDayRaw = /*#__PURE__*/React.forwardRef(function DateRangePi
321
321
  name: 'MuiDateRangePickerDay'
322
322
  });
323
323
  useLicenseVerifier({
324
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
325
- version: "9.3.0",
324
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
325
+ version: "9.5.0",
326
326
  name: 'x-date-pickers-pro'
327
327
  });
328
328
  const adapter = usePickerAdapter();
@@ -333,7 +333,7 @@ process.env.NODE_ENV !== "production" ? DateTimeRangePicker.propTypes = {
333
333
  /**
334
334
  * Component rendered on the "day" view when `props.loading` is true.
335
335
  * @returns {React.ReactNode} The node to render when loading.
336
- * @default () => "..."
336
+ * @default () => ""
337
337
  */
338
338
  renderLoading: _propTypes.default.func,
339
339
  /**
@@ -326,7 +326,7 @@ process.env.NODE_ENV !== "production" ? DateTimeRangePicker.propTypes = {
326
326
  /**
327
327
  * Component rendered on the "day" view when `props.loading` is true.
328
328
  * @returns {React.ReactNode} The node to render when loading.
329
- * @default () => "..."
329
+ * @default () => ""
330
330
  */
331
331
  renderLoading: PropTypes.func,
332
332
  /**
@@ -298,7 +298,7 @@ DesktopDateRangePicker.propTypes = {
298
298
  /**
299
299
  * Component rendered on the "day" view when `props.loading` is true.
300
300
  * @returns {React.ReactNode} The node to render when loading.
301
- * @default () => "..."
301
+ * @default () => ""
302
302
  */
303
303
  renderLoading: _propTypes.default.func,
304
304
  /**
@@ -291,7 +291,7 @@ DesktopDateRangePicker.propTypes = {
291
291
  /**
292
292
  * Component rendered on the "day" view when `props.loading` is true.
293
293
  * @returns {React.ReactNode} The node to render when loading.
294
- * @default () => "..."
294
+ * @default () => ""
295
295
  */
296
296
  renderLoading: PropTypes.func,
297
297
  /**
@@ -430,7 +430,7 @@ DesktopDateTimeRangePicker.propTypes = {
430
430
  /**
431
431
  * Component rendered on the "day" view when `props.loading` is true.
432
432
  * @returns {React.ReactNode} The node to render when loading.
433
- * @default () => "..."
433
+ * @default () => ""
434
434
  */
435
435
  renderLoading: _propTypes.default.func,
436
436
  /**
@@ -423,7 +423,7 @@ DesktopDateTimeRangePicker.propTypes = {
423
423
  /**
424
424
  * Component rendered on the "day" view when `props.loading` is true.
425
425
  * @returns {React.ReactNode} The node to render when loading.
426
- * @default () => "..."
426
+ * @default () => ""
427
427
  */
428
428
  renderLoading: PropTypes.func,
429
429
  /**
@@ -295,7 +295,7 @@ MobileDateRangePicker.propTypes = {
295
295
  /**
296
296
  * Component rendered on the "day" view when `props.loading` is true.
297
297
  * @returns {React.ReactNode} The node to render when loading.
298
- * @default () => "..."
298
+ * @default () => ""
299
299
  */
300
300
  renderLoading: _propTypes.default.func,
301
301
  /**
@@ -288,7 +288,7 @@ MobileDateRangePicker.propTypes = {
288
288
  /**
289
289
  * Component rendered on the "day" view when `props.loading` is true.
290
290
  * @returns {React.ReactNode} The node to render when loading.
291
- * @default () => "..."
291
+ * @default () => ""
292
292
  */
293
293
  renderLoading: PropTypes.func,
294
294
  /**
@@ -430,7 +430,7 @@ MobileDateTimeRangePicker.propTypes = {
430
430
  /**
431
431
  * Component rendered on the "day" view when `props.loading` is true.
432
432
  * @returns {React.ReactNode} The node to render when loading.
433
- * @default () => "..."
433
+ * @default () => ""
434
434
  */
435
435
  renderLoading: _propTypes.default.func,
436
436
  /**
@@ -423,7 +423,7 @@ MobileDateTimeRangePicker.propTypes = {
423
423
  /**
424
424
  * Component rendered on the "day" view when `props.loading` is true.
425
425
  * @returns {React.ReactNode} The node to render when loading.
426
- * @default () => "..."
426
+ * @default () => ""
427
427
  */
428
428
  renderLoading: PropTypes.func,
429
429
  /**
@@ -237,7 +237,7 @@ StaticDateRangePicker.propTypes = {
237
237
  /**
238
238
  * Component rendered on the "day" view when `props.loading` is true.
239
239
  * @returns {React.ReactNode} The node to render when loading.
240
- * @default () => "..."
240
+ * @default () => ""
241
241
  */
242
242
  renderLoading: _propTypes.default.func,
243
243
  /**
@@ -230,7 +230,7 @@ StaticDateRangePicker.propTypes = {
230
230
  /**
231
231
  * Component rendered on the "day" view when `props.loading` is true.
232
232
  * @returns {React.ReactNode} The node to render when loading.
233
- * @default () => "..."
233
+ * @default () => ""
234
234
  */
235
235
  renderLoading: PropTypes.func,
236
236
  /**
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v9.3.0
2
+ * @mui/x-date-pickers-pro v9.5.0
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers-pro v9.3.0
2
+ * @mui/x-date-pickers-pro v9.5.0
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
@@ -26,8 +26,8 @@ const useDesktopRangePicker = _ref => {
26
26
  } = _ref,
27
27
  pickerParams = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded);
28
28
  (0, _internals.useLicenseVerifier)({
29
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
30
- version: "9.3.0",
29
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
30
+ version: "9.5.0",
31
31
  name: 'x-date-pickers-pro'
32
32
  });
33
33
  const {
@@ -19,8 +19,8 @@ export const useDesktopRangePicker = _ref => {
19
19
  } = _ref,
20
20
  pickerParams = _objectWithoutPropertiesLoose(_ref, _excluded);
21
21
  useLicenseVerifier({
22
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
23
- version: "9.3.0",
22
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
23
+ version: "9.5.0",
24
24
  name: 'x-date-pickers-pro'
25
25
  });
26
26
  const {
@@ -28,8 +28,8 @@ const useMobileRangePicker = _ref => {
28
28
  } = _ref,
29
29
  pickerParams = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded);
30
30
  (0, _internals.useLicenseVerifier)({
31
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
32
- version: "9.3.0",
31
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
32
+ version: "9.5.0",
33
33
  name: 'x-date-pickers-pro'
34
34
  });
35
35
  const {
@@ -21,8 +21,8 @@ export const useMobileRangePicker = _ref => {
21
21
  } = _ref,
22
22
  pickerParams = _objectWithoutPropertiesLoose(_ref, _excluded);
23
23
  useLicenseVerifier({
24
- releaseDate: "MTc3OTMyMTYwMDAwMA==",
25
- version: "9.3.0",
24
+ releaseDate: "MTc4MTEzNjAwMDAwMA==",
25
+ version: "9.5.0",
26
26
  name: 'x-date-pickers-pro'
27
27
  });
28
28
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-date-pickers-pro",
3
- "version": "9.3.0",
3
+ "version": "9.5.0",
4
4
  "author": "MUI Team",
5
5
  "description": "The Pro plan edition of the MUI X Date and Time Picker components.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -30,14 +30,14 @@
30
30
  "directory": "packages/x-date-pickers-pro"
31
31
  },
32
32
  "dependencies": {
33
- "@babel/runtime": "^7.29.2",
33
+ "@babel/runtime": "^7.29.7",
34
34
  "@mui/utils": "9.0.1",
35
35
  "clsx": "^2.1.1",
36
36
  "prop-types": "^15.8.1",
37
37
  "react-transition-group": "^4.4.5",
38
- "@mui/x-date-pickers": "^9.3.0",
39
- "@mui/x-license": "^9.2.0",
40
- "@mui/x-internals": "^9.1.0"
38
+ "@mui/x-date-pickers": "^9.5.0",
39
+ "@mui/x-internals": "^9.1.0",
40
+ "@mui/x-license": "^9.4.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@emotion/react": "^11.9.0",