@mui/x-date-pickers 7.28.2 → 7.28.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/LocalizationProvider/LocalizationProvider.d.ts +1 -1
- package/LocalizationProvider/LocalizationProvider.js +1 -1
- package/index.js +1 -1
- package/modern/LocalizationProvider/LocalizationProvider.js +1 -1
- package/modern/index.js +1 -1
- package/node/LocalizationProvider/LocalizationProvider.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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.28.3
|
|
7
|
+
|
|
8
|
+
_Apr 3, 2025_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🐞 Bugfixes
|
|
13
|
+
|
|
14
|
+
Team members who have contributed to this release:
|
|
15
|
+
@cherniavskii, @LukasTy, @MBilalShafi.
|
|
16
|
+
|
|
17
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
18
|
+
|
|
19
|
+
### Data Grid
|
|
20
|
+
|
|
21
|
+
#### `@mui/x-data-grid@7.28.3`
|
|
22
|
+
|
|
23
|
+
Internal changes.
|
|
24
|
+
|
|
25
|
+
#### `@mui/x-data-grid-pro@7.28.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
26
|
+
|
|
27
|
+
Same changes as in `@mui/x-data-grid@7.28.3`, plus:
|
|
28
|
+
|
|
29
|
+
- [DataGridPro] Data source: Allow expanding groups with unknown children count (#17149) @MBilalShafi
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid-premium@7.28.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
32
|
+
|
|
33
|
+
Same changes as in `@mui/x-data-grid-pro@7.28.3`.
|
|
34
|
+
|
|
35
|
+
### Date and Time Pickers
|
|
36
|
+
|
|
37
|
+
#### `@mui/x-date-pickers@7.28.3`
|
|
38
|
+
|
|
39
|
+
Internal changes.
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-date-pickers-pro@7.28.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
42
|
+
|
|
43
|
+
Same changes as in `@mui/x-date-pickers@7.28.3`.
|
|
44
|
+
|
|
45
|
+
### Docs
|
|
46
|
+
|
|
47
|
+
- [docs] Update Localization Provider JSDoc link (#17208) @LukasTy
|
|
48
|
+
- [docs] Use v6 core packages in MUI X v7 docs (#17171) @cherniavskii
|
|
49
|
+
|
|
6
50
|
## 7.28.2
|
|
7
51
|
|
|
8
52
|
_Mar 28, 2025_
|
|
@@ -17,7 +17,7 @@ export interface LocalizationProviderProps<TDate extends PickerValidDate, TLocal
|
|
|
17
17
|
children?: React.ReactNode;
|
|
18
18
|
/**
|
|
19
19
|
* Date library adapter class function.
|
|
20
|
-
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#
|
|
20
|
+
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#date-library-adapter-setup date adapter setup section} for more details.
|
|
21
21
|
*/
|
|
22
22
|
dateAdapter?: new (...args: any) => MuiPickersAdapter<TDate, TLocale>;
|
|
23
23
|
/** Formats that are used for any child pickers */
|
|
@@ -100,7 +100,7 @@ process.env.NODE_ENV !== "production" ? LocalizationProvider.propTypes = {
|
|
|
100
100
|
children: PropTypes.node,
|
|
101
101
|
/**
|
|
102
102
|
* Date library adapter class function.
|
|
103
|
-
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#
|
|
103
|
+
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#date-library-adapter-setup date adapter setup section} for more details.
|
|
104
104
|
*/
|
|
105
105
|
dateAdapter: PropTypes.func,
|
|
106
106
|
/**
|
package/index.js
CHANGED
|
@@ -100,7 +100,7 @@ process.env.NODE_ENV !== "production" ? LocalizationProvider.propTypes = {
|
|
|
100
100
|
children: PropTypes.node,
|
|
101
101
|
/**
|
|
102
102
|
* Date library adapter class function.
|
|
103
|
-
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#
|
|
103
|
+
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#date-library-adapter-setup date adapter setup section} for more details.
|
|
104
104
|
*/
|
|
105
105
|
dateAdapter: PropTypes.func,
|
|
106
106
|
/**
|
package/modern/index.js
CHANGED
|
@@ -107,7 +107,7 @@ process.env.NODE_ENV !== "production" ? LocalizationProvider.propTypes = {
|
|
|
107
107
|
children: _propTypes.default.node,
|
|
108
108
|
/**
|
|
109
109
|
* Date library adapter class function.
|
|
110
|
-
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#
|
|
110
|
+
* @see See the localization provider {@link https://mui.com/x/react-date-pickers/getting-started/#date-library-adapter-setup date adapter setup section} for more details.
|
|
111
111
|
*/
|
|
112
112
|
dateAdapter: _propTypes.default.func,
|
|
113
113
|
/**
|
package/node/index.js
CHANGED