@mui/x-data-grid-premium 7.0.0-alpha.4 → 7.0.0-alpha.5
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 +122 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/node/index.js +1 -1
- package/node/utils/releaseInfo.js +1 -1
- package/package.json +3 -3
- package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,86 @@
|
|
|
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.5
|
|
7
|
+
|
|
8
|
+
_Dec 14, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 💫 New recipe added for the Data Grid
|
|
13
|
+
- 🌍 Improve Swedish (sv-SE) and Urdu (ur-PK) locales on the Data Grid
|
|
14
|
+
- 🐞 Bugfixes
|
|
15
|
+
|
|
16
|
+
### Data Grid
|
|
17
|
+
|
|
18
|
+
#### Breaking changes
|
|
19
|
+
|
|
20
|
+
- The `instanceId` prop is now required for state selectors.
|
|
21
|
+
This prop is used to distinguish between multiple Data Grid instances on the same page.
|
|
22
|
+
See [migration docs](https://next.mui.com/x/migration/migration-data-grid-v6/#instanceid-prop-is-required-for-state-selectors) for more details.
|
|
23
|
+
|
|
24
|
+
#### `@mui/x-data-grid@7.0.0-alpha.5`
|
|
25
|
+
|
|
26
|
+
- [DataGrid] Make `instanceId` required for state selectors (#11395) @cherniavskii
|
|
27
|
+
- [DataGrid] Recipe for grouped rows autosizing (#11401) @michelengelen
|
|
28
|
+
- [l10n] Improve Swedish (sv-SE) locale (#11373) @fredrikcarlbom
|
|
29
|
+
- [l10n] Improve Urdu (ur-PK) locale (#11400) @MBilalShafi
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid-pro@7.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
32
|
+
|
|
33
|
+
Same changes as in `@mui/x-data-grid@7.0.0-alpha.5`.
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-premium@7.0.0-alpha.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
|
|
38
|
+
|
|
39
|
+
### Date Pickers
|
|
40
|
+
|
|
41
|
+
#### Breaking changes
|
|
42
|
+
|
|
43
|
+
- The slot interfaces got renamed to match with `@mui/base` naming.
|
|
44
|
+
The `SlotsComponent` suffix has been replaced with `Slots` and `SlotsComponentsProps` with `SlotProps`.
|
|
45
|
+
|
|
46
|
+
```diff
|
|
47
|
+
- DateCalendarSlotsComponent
|
|
48
|
+
+ DateCalendarSlots
|
|
49
|
+
- DateCalendarSlotsComponentsProps
|
|
50
|
+
+ DateCalendarSlotProps
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
#### `@mui/x-date-pickers@7.0.0-alpha.5`
|
|
54
|
+
|
|
55
|
+
- [fields] Support empty sections (#10307) @flaviendelangle
|
|
56
|
+
- [pickers] Fix field types to avoid error on latest `@types/react` version (#11397) @LukasTy
|
|
57
|
+
- [pickers] Remove all relative imports to the internals index file (#11375) @flaviendelangle
|
|
58
|
+
- [pickers] Rename slots interfaces (#11339) @alexfauquette
|
|
59
|
+
- [pickers] Simplify the API of the field hooks (#11371) @flaviendelangle
|
|
60
|
+
- [pickers] Support name prop (#11025) @gitstart
|
|
61
|
+
|
|
62
|
+
#### `@mui/x-date-pickers-pro@7.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
63
|
+
|
|
64
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-alpha.5`, plus:
|
|
65
|
+
|
|
66
|
+
- [DateRangePicker] Fix `autoFocus` behavior (#11273) @kealjones-wk
|
|
67
|
+
|
|
68
|
+
### Charts / `@mui/x-charts@7.0.0-alpha.5`
|
|
69
|
+
|
|
70
|
+
- [charts] Fix size overflow (#11385) @alexfauquette
|
|
71
|
+
|
|
72
|
+
### `@mui/x-codemod@7.0.0-alpha.5`
|
|
73
|
+
|
|
74
|
+
- [codemod] Add `cellSelection` codemod and update migration guide (#11353) @MBilalShafi
|
|
75
|
+
|
|
76
|
+
### Docs
|
|
77
|
+
|
|
78
|
+
- [docs] Respect GoT books (@janoma) (#11387) @alexfauquette
|
|
79
|
+
|
|
80
|
+
### Core
|
|
81
|
+
|
|
82
|
+
- [core] Automate cherry-pick of PRs from `next` -> `master` (#11382) @MBilalShafi
|
|
83
|
+
- [github] Update `no-response` workflow (#11369) @MBilalShafi
|
|
84
|
+
- [test] Fix flaky screenshots (#11388) @cherniavskii
|
|
85
|
+
|
|
6
86
|
## 7.0.0-alpha.4
|
|
7
87
|
|
|
8
88
|
_Dec 8, 2023_
|
|
@@ -949,6 +1029,48 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
|
|
|
949
1029
|
- [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi
|
|
950
1030
|
- [license] Correctly throw errors (#10924) @oliviertassinari
|
|
951
1031
|
|
|
1032
|
+
## 6.18.5
|
|
1033
|
+
|
|
1034
|
+
_Dec 14, 2023_
|
|
1035
|
+
|
|
1036
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
1037
|
+
|
|
1038
|
+
- 🌍 Improve Swedish (sv-SE) and Urdu (ur-PK) locales on the Data Grid
|
|
1039
|
+
- 🐞 Bugfixes
|
|
1040
|
+
|
|
1041
|
+
### Data Grid
|
|
1042
|
+
|
|
1043
|
+
#### `@mui/x-data-grid@6.18.5`
|
|
1044
|
+
|
|
1045
|
+
- [l10n] Improve Swedish (sv-SE) locale (#11379) @fredrikcarlbom
|
|
1046
|
+
- [l10n] Improve Urdu (ur-PK) locale for data grid (#11409) @MBilalShafi
|
|
1047
|
+
|
|
1048
|
+
#### `@mui/x-data-grid-pro@6.18.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1049
|
+
|
|
1050
|
+
Same changes as in `@mui/x-data-grid@6.18.5`.
|
|
1051
|
+
|
|
1052
|
+
#### `@mui/x-data-grid-premium@6.18.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1053
|
+
|
|
1054
|
+
Same changes as in `@mui/x-data-grid-pro@6.18.5`.
|
|
1055
|
+
|
|
1056
|
+
### Date Pickers
|
|
1057
|
+
|
|
1058
|
+
#### `@mui/x-date-pickers@6.18.5`
|
|
1059
|
+
|
|
1060
|
+
- [pickers] Fix field types to avoid error on latest `@types/react` version (#11398) @LukasTy
|
|
1061
|
+
- [pickers] Support name prop (#11380) @gitstart
|
|
1062
|
+
|
|
1063
|
+
#### `@mui/x-date-pickers-pro@6.18.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1064
|
+
|
|
1065
|
+
Same changes as in `@mui/x-date-pickers@6.18.5`, plus:
|
|
1066
|
+
|
|
1067
|
+
- [DateRangePicker] Fix `autoFocus` behavior (#11376) @kealjones-wk
|
|
1068
|
+
|
|
1069
|
+
### Docs
|
|
1070
|
+
|
|
1071
|
+
- [docs] Respect GoT books (#11294) @janoma
|
|
1072
|
+
- [test] Fix flaky screenshots (#11391) @cherniavskii
|
|
1073
|
+
|
|
952
1074
|
## 6.18.4
|
|
953
1075
|
|
|
954
1076
|
_Dec 8, 2023_
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export var getReleaseInfo = function getReleaseInfo() {
|
|
3
|
-
var releaseInfo = "
|
|
3
|
+
var releaseInfo = "MTcwMjQ5NDAwMDAwMA==";
|
|
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
|
package/modern/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTcwMjQ5NDAwMDAwMA==";
|
|
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
|
package/node/index.js
CHANGED
|
@@ -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 = "
|
|
9
|
+
const releaseInfo = "MTcwMjQ5NDAwMDAwMA==";
|
|
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-data-grid-premium",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.5",
|
|
4
4
|
"description": "The Premium plan edition of the data grid component (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@babel/runtime": "^7.23.5",
|
|
36
36
|
"@mui/system": "^5.14.20",
|
|
37
37
|
"@mui/utils": "^5.14.20",
|
|
38
|
-
"@mui/x-data-grid": "7.0.0-alpha.
|
|
39
|
-
"@mui/x-data-grid-pro": "7.0.0-alpha.
|
|
38
|
+
"@mui/x-data-grid": "7.0.0-alpha.5",
|
|
39
|
+
"@mui/x-data-grid-pro": "7.0.0-alpha.5",
|
|
40
40
|
"@mui/x-license-pro": "7.0.0-alpha.1",
|
|
41
41
|
"@types/format-util": "^1.0.4",
|
|
42
42
|
"clsx": "^2.0.0",
|
package/utils/releaseInfo.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTcwMjQ5NDAwMDAwMA==";
|
|
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
|