@mui/x-data-grid-premium 7.0.0-beta.2 → 7.0.0-beta.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 +73 -9
- package/DataGridPremium/DataGridPremium.js +0 -6
- package/esm/DataGridPremium/DataGridPremium.js +0 -6
- package/esm/utils/releaseInfo.js +1 -1
- package/index.js +1 -1
- package/legacy/DataGridPremium/DataGridPremium.js +0 -6
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/DataGridPremium/DataGridPremium.js +0 -6
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/package.json +5 -5
- package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,70 @@
|
|
|
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.3
|
|
7
|
+
|
|
8
|
+
_Feb 16, 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
|
+
- 🎁 Charts get a [built in grid](https://next.mui.com/x/react-charts/axis/#grid)
|
|
13
|
+
|
|
14
|
+
<img src="https://github.com/mui/mui-x/assets/45398769/74299f54-f020-4135-b38c-dc88a230db30" width="510" alt="Charts Grid" />
|
|
15
|
+
|
|
16
|
+
- 🎛️ Charts get a [Gauge component](https://next.mui.com/x/react-charts/gauge/).
|
|
17
|
+
|
|
18
|
+
<img src="https://github.com/mui/mui-x/assets/45398769/fb7a94b5-bef6-4fc2-a0cd-d6ff5b60fa8b" width="510" alt="Guage Chart" />
|
|
19
|
+
|
|
20
|
+
- 🐞 Bugfixes
|
|
21
|
+
|
|
22
|
+
- 📚 Documentation improvements
|
|
23
|
+
|
|
24
|
+
### Data Grid
|
|
25
|
+
|
|
26
|
+
#### Breaking changes
|
|
27
|
+
|
|
28
|
+
- 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.
|
|
29
|
+
|
|
30
|
+
#### `@mui/x-data-grid@7.0.0-beta.3`
|
|
31
|
+
|
|
32
|
+
- [DataGrid] Performance: avoid style invalidation (#12019) @romgrk
|
|
33
|
+
- [DataGrid] Remove legacy editing API event: `rowEditCommit` (#12073) @MBilalShafi
|
|
34
|
+
- [DataGrid] Fix styling grid filter input single select (#11520) @FreakDroid
|
|
35
|
+
|
|
36
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
37
|
+
|
|
38
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.3`.
|
|
39
|
+
|
|
40
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
41
|
+
|
|
42
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.3`.
|
|
43
|
+
|
|
44
|
+
### Charts / `@mui/x-charts@7.0.0-beta.3`
|
|
45
|
+
|
|
46
|
+
- [charts] Add Gauge component (#11996) @alexfauquette
|
|
47
|
+
- [charts] Add a `ChartsGrid` component (#11034) @alexfauquette
|
|
48
|
+
|
|
49
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.3`
|
|
50
|
+
|
|
51
|
+
- [TreeView] Remove instance existence checks (#12066) @flaviendelangle
|
|
52
|
+
|
|
53
|
+
### Docs
|
|
54
|
+
|
|
55
|
+
- [docs] Complete charts API pages (#12038) @alexfauquette
|
|
56
|
+
- [docs] Add more illustrations to the charts overview page (#12041) @danilo-leal
|
|
57
|
+
- [docs] Fix 301 redirection to StackBlitz @oliviertassinari
|
|
58
|
+
- [docs] Fix Tree space to match the reset of the docs @oliviertassinari
|
|
59
|
+
- [docs] Fix `dayOfWeekFormatter` typo in the pickers v6 to v7 migration document (#12043) @StylesTrip
|
|
60
|
+
- [docs] Fix redirection @oliviertassinari
|
|
61
|
+
- [docs] Fix typo for `AdapterDateFnsV3` (#12036) @flaviendelangle
|
|
62
|
+
- [docs] Removed `focused` prop from demo (#12092) @michelengelen
|
|
63
|
+
|
|
64
|
+
### Core
|
|
65
|
+
|
|
66
|
+
- [core] Fix CodeSandbox CI template @oliviertassinari
|
|
67
|
+
- [core] Sort prop asc (#12033) @oliviertassinari
|
|
68
|
+
- [core] Bump monorepo (#12055) @alexfauquette
|
|
69
|
+
|
|
6
70
|
## v7.0.0-beta.2
|
|
7
71
|
|
|
8
72
|
_Feb 9, 2024_
|
|
@@ -17,7 +81,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
17
81
|
|
|
18
82
|
### Data Grid
|
|
19
83
|
|
|
20
|
-
#### `@mui/x-data-grid@
|
|
84
|
+
#### `@mui/x-data-grid@7.0.0-beta.2`
|
|
21
85
|
|
|
22
86
|
- [DataGrid] Add `removeAllFilterItems` as a reason of `onFilterModelChange` callback (#11911) @shaharyar-shamshi
|
|
23
87
|
- [DataGrid] Add slot typings (#11795) @romgrk
|
|
@@ -27,35 +91,35 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
27
91
|
- [DataGrid] Improve vertical scrolling performance (#11924) @romgrk
|
|
28
92
|
- [l10n] Improve Danish (da-DK) locale (#11877) @ShahrazH
|
|
29
93
|
|
|
30
|
-
#### `@mui/x-data-grid-pro@
|
|
94
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
31
95
|
|
|
32
96
|
Same changes as in `@mui/x-data-grid@v7.0.0-beta.2`.
|
|
33
97
|
|
|
34
98
|
#### `@mui/x-data-grid-premium@v7.0.0-beta.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
35
99
|
|
|
36
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
100
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.2`, plus:
|
|
37
101
|
|
|
38
102
|
- [DataGridPremium] Fix autosize grouping cell (#11870) @romgrk
|
|
39
103
|
- [DataGridPremium] Fix clipboard paste not working with Caps Lock enabled (#11965) @shaharyar-shamshi
|
|
40
104
|
|
|
41
105
|
### Date Pickers
|
|
42
106
|
|
|
43
|
-
#### `@mui/x-date-pickers@
|
|
107
|
+
#### `@mui/x-date-pickers@7.0.0-beta.2`
|
|
44
108
|
|
|
45
109
|
- [pickers] Avoid relying on locale in Luxon `isWithinRange` method (#11936) @LukasTy
|
|
46
110
|
- [pickers] Limit the valid values of `TDate` (#11791) @flaviendelangle
|
|
47
111
|
|
|
48
|
-
#### `@mui/x-date-pickers-pro@
|
|
112
|
+
#### `@mui/x-date-pickers-pro@7.0.0-beta.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
113
|
|
|
50
|
-
Same changes as in `@mui/x-date-pickers@
|
|
114
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-beta.2`.
|
|
51
115
|
|
|
52
|
-
### Charts / `@mui/x-charts@
|
|
116
|
+
### Charts / `@mui/x-charts@7.0.0-beta.2`
|
|
53
117
|
|
|
54
118
|
- [charts] Add `reverse` property to axes (#11899) @alexfauquette
|
|
55
119
|
- [charts] Allow series ids to be numbers (#11941) @alexfauquette
|
|
56
120
|
- [charts] Support UTC date formatting in tooltip (#11943) @shaharyar-shamshi
|
|
57
121
|
|
|
58
|
-
### Tree View / `@mui/x-tree-view@
|
|
122
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.2`
|
|
59
123
|
|
|
60
124
|
- [TreeView] Correctly detect if an item is expandable (#11963) @swalker326
|
|
61
125
|
- [TreeView] Polish the default design & revise the simple version pages (#11529) @danilo-leal
|
|
@@ -71,7 +135,7 @@ Same changes as in `@mui/x-date-pickers@v7.0.0-beta.2`.
|
|
|
71
135
|
+import { LicenseInfo } from '@mui/x-license';
|
|
72
136
|
```
|
|
73
137
|
|
|
74
|
-
`@mui/x-license@
|
|
138
|
+
`@mui/x-license@7.0.0-beta.2`
|
|
75
139
|
|
|
76
140
|
- [license] Rename `@mui/x-license-pro` to `@mui/x-license` (#11938) @cherniavskii
|
|
77
141
|
|
|
@@ -728,12 +728,6 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
728
728
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
729
729
|
*/
|
|
730
730
|
onRowDoubleClick: _propTypes.default.func,
|
|
731
|
-
/**
|
|
732
|
-
* Callback fired when the row changes are committed.
|
|
733
|
-
* @param {GridRowId} id The row id.
|
|
734
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
735
|
-
*/
|
|
736
|
-
onRowEditCommit: _propTypes.default.func,
|
|
737
731
|
/**
|
|
738
732
|
* Callback fired when the row turns to edit mode.
|
|
739
733
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
|
@@ -720,12 +720,6 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
720
720
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
721
721
|
*/
|
|
722
722
|
onRowDoubleClick: PropTypes.func,
|
|
723
|
-
/**
|
|
724
|
-
* Callback fired when the row changes are committed.
|
|
725
|
-
* @param {GridRowId} id The row id.
|
|
726
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
727
|
-
*/
|
|
728
|
-
onRowEditCommit: PropTypes.func,
|
|
729
723
|
/**
|
|
730
724
|
* Callback fired when the row turns to edit mode.
|
|
731
725
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
package/esm/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 = "MTcwODAyMzYwMDAwMA==";
|
|
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/index.js
CHANGED
|
@@ -721,12 +721,6 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
721
721
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
722
722
|
*/
|
|
723
723
|
onRowDoubleClick: PropTypes.func,
|
|
724
|
-
/**
|
|
725
|
-
* Callback fired when the row changes are committed.
|
|
726
|
-
* @param {GridRowId} id The row id.
|
|
727
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
728
|
-
*/
|
|
729
|
-
onRowEditCommit: PropTypes.func,
|
|
730
724
|
/**
|
|
731
725
|
* Callback fired when the row turns to edit mode.
|
|
732
726
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
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 = "MTcwODAyMzYwMDAwMA==";
|
|
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
|
|
@@ -720,12 +720,6 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
720
720
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
721
721
|
*/
|
|
722
722
|
onRowDoubleClick: PropTypes.func,
|
|
723
|
-
/**
|
|
724
|
-
* Callback fired when the row changes are committed.
|
|
725
|
-
* @param {GridRowId} id The row id.
|
|
726
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
727
|
-
*/
|
|
728
|
-
onRowEditCommit: PropTypes.func,
|
|
729
723
|
/**
|
|
730
724
|
* Callback fired when the row turns to edit mode.
|
|
731
725
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
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 = "MTcwODAyMzYwMDAwMA==";
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid-premium",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.3",
|
|
4
4
|
"description": "The Premium plan edition of the data grid component (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/runtime": "^7.23.9",
|
|
36
|
-
"@mui/system": "^5.15.
|
|
37
|
-
"@mui/utils": "^5.15.
|
|
38
|
-
"@mui/x-data-grid": "7.0.0-beta.
|
|
39
|
-
"@mui/x-data-grid-pro": "7.0.0-beta.
|
|
36
|
+
"@mui/system": "^5.15.9",
|
|
37
|
+
"@mui/utils": "^5.15.9",
|
|
38
|
+
"@mui/x-data-grid": "7.0.0-beta.3",
|
|
39
|
+
"@mui/x-data-grid-pro": "7.0.0-beta.3",
|
|
40
40
|
"@mui/x-license": "7.0.0-beta.2",
|
|
41
41
|
"@types/format-util": "^1.0.4",
|
|
42
42
|
"clsx": "^2.1.0",
|
package/utils/releaseInfo.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 = "MTcwODAyMzYwMDAwMA==";
|
|
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
|