@mui/x-data-grid-premium 5.17.22 → 5.17.24
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 +58 -0
- package/hooks/features/rowGrouping/createGroupingColDef.js +4 -2
- package/index.js +1 -1
- package/legacy/hooks/features/rowGrouping/createGroupingColDef.js +4 -2
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/hooks/features/rowGrouping/createGroupingColDef.js +4 -2
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/node/hooks/features/rowGrouping/createGroupingColDef.js +4 -2
- 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,64 @@
|
|
|
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
|
+
## 5.17.24
|
|
7
|
+
|
|
8
|
+
_Feb 16, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🌍 Add Hungarian (hu-HU) locale
|
|
13
|
+
- 🐞 Bugfixes
|
|
14
|
+
|
|
15
|
+
### `@mui/x-data-grid@v5.17.24` / `@mui/x-data-grid-pro@v5.17.24` / `@mui/x-data-grid-premium@v5.17.24`
|
|
16
|
+
|
|
17
|
+
#### Changes
|
|
18
|
+
|
|
19
|
+
- [DataGrid] Allow to pass props to the `TrapFocus` inside the panel wrapper (#7897) @Vivek-Prajapatii
|
|
20
|
+
- [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7945) @cherniavskii
|
|
21
|
+
- [DataGridPro] Change cursor when dragging a column (#7878) @sai6855
|
|
22
|
+
- [DataGridPremium] Fix `leafField` to have correct focus value (#7959) @MBilalShafi
|
|
23
|
+
|
|
24
|
+
### `@mui/x-date-pickers@v5.0.19` / `@mui/x-date-pickers-pro@v5.0.19`
|
|
25
|
+
|
|
26
|
+
#### Changes
|
|
27
|
+
|
|
28
|
+
- [l10n] Add Hungarian (hu-HU) locale (#7796) @noherczeg
|
|
29
|
+
|
|
30
|
+
## 5.17.23
|
|
31
|
+
|
|
32
|
+
_Feb 9, 2023_
|
|
33
|
+
|
|
34
|
+
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
35
|
+
|
|
36
|
+
- 🌍 Improve Brazilian Portuguese (pt-BR) locale
|
|
37
|
+
- 🎉 Add banner and callouts to inform about MUI X v6 beta
|
|
38
|
+
- 🐞 Bugfixes
|
|
39
|
+
|
|
40
|
+
### `@mui/x-data-grid@v5.17.23` / `@mui/x-data-grid-pro@v5.17.23` / `@mui/x-data-grid-premium@v5.17.23`
|
|
41
|
+
|
|
42
|
+
#### Changes
|
|
43
|
+
|
|
44
|
+
- [DataGrid] Allow to customize the value displayed in the filter button tooltip (#7816) @ithrforu
|
|
45
|
+
- [DataGrid] Fix `getCellElement` method not working with pinned columns (#7844) @yaredtsy
|
|
46
|
+
- [DataGrid] Fix stale rows issue in `unstable_replaceRows` (#7694) @MBilalShafi
|
|
47
|
+
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#7850) @ed-ateixeira
|
|
48
|
+
|
|
49
|
+
### `@mui/x-date-pickers@v_5.0.18` / `@mui/x-date-pickers-pro@v_5.0.18`
|
|
50
|
+
|
|
51
|
+
#### Changes
|
|
52
|
+
|
|
53
|
+
- [pickers] Update pickers when new value has a distinct timezone (#7853) @alexfauquette
|
|
54
|
+
|
|
55
|
+
### Docs
|
|
56
|
+
|
|
57
|
+
- [docs] Add messages in v5 doc to inform people about v6 (#7838) @flaviendelangle
|
|
58
|
+
- [docs] Fix 301 link @oliviertassinari
|
|
59
|
+
|
|
60
|
+
### Core
|
|
61
|
+
|
|
62
|
+
- [core] Upgrade monorepo (#7849) @cherniavskii
|
|
63
|
+
|
|
6
64
|
## v5.17.22
|
|
7
65
|
|
|
8
66
|
_Feb 2, 2023_
|
|
@@ -154,7 +154,8 @@ export const createGroupingColDefForOneGroupingCriteria = ({
|
|
|
154
154
|
if (params.rowNode.groupingField == null) {
|
|
155
155
|
if (leafColDef) {
|
|
156
156
|
const leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
157
|
-
api: params.api
|
|
157
|
+
api: params.api,
|
|
158
|
+
hasFocus: params.hasFocus
|
|
158
159
|
});
|
|
159
160
|
|
|
160
161
|
if (leafColDef.renderCell) {
|
|
@@ -260,7 +261,8 @@ export const createGroupingColDefForAllGroupingCriteria = ({
|
|
|
260
261
|
if (params.rowNode.groupingField == null) {
|
|
261
262
|
if (leafColDef) {
|
|
262
263
|
const leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
263
|
-
api: params.api
|
|
264
|
+
api: params.api,
|
|
265
|
+
hasFocus: params.hasFocus
|
|
264
266
|
});
|
|
265
267
|
|
|
266
268
|
if (leafColDef.renderCell) {
|
package/index.js
CHANGED
|
@@ -157,7 +157,8 @@ export var createGroupingColDefForOneGroupingCriteria = function createGroupingC
|
|
|
157
157
|
if (params.rowNode.groupingField == null) {
|
|
158
158
|
if (leafColDef) {
|
|
159
159
|
var leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
160
|
-
api: params.api
|
|
160
|
+
api: params.api,
|
|
161
|
+
hasFocus: params.hasFocus
|
|
161
162
|
});
|
|
162
163
|
|
|
163
164
|
if (leafColDef.renderCell) {
|
|
@@ -261,7 +262,8 @@ export var createGroupingColDefForAllGroupingCriteria = function createGroupingC
|
|
|
261
262
|
if (params.rowNode.groupingField == null) {
|
|
262
263
|
if (leafColDef) {
|
|
263
264
|
var leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
264
|
-
api: params.api
|
|
265
|
+
api: params.api,
|
|
266
|
+
hasFocus: params.hasFocus
|
|
265
267
|
});
|
|
266
268
|
|
|
267
269
|
if (leafColDef.renderCell) {
|
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 = "MTY3NjQ5ODQwMDAwMA==";
|
|
4
4
|
|
|
5
5
|
if (process.env.NODE_ENV !== 'production') {
|
|
6
6
|
// A simple hack to set the value in the test environment (has no build step).
|
|
@@ -144,7 +144,8 @@ export const createGroupingColDefForOneGroupingCriteria = ({
|
|
|
144
144
|
if (params.rowNode.groupingField == null) {
|
|
145
145
|
if (leafColDef) {
|
|
146
146
|
const leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
147
|
-
api: params.api
|
|
147
|
+
api: params.api,
|
|
148
|
+
hasFocus: params.hasFocus
|
|
148
149
|
});
|
|
149
150
|
|
|
150
151
|
if (leafColDef.renderCell) {
|
|
@@ -244,7 +245,8 @@ export const createGroupingColDefForAllGroupingCriteria = ({
|
|
|
244
245
|
if (params.rowNode.groupingField == null) {
|
|
245
246
|
if (leafColDef) {
|
|
246
247
|
const leafParams = _extends({}, params.api.getCellParams(params.id, leafField), {
|
|
247
|
-
api: params.api
|
|
248
|
+
api: params.api,
|
|
249
|
+
hasFocus: params.hasFocus
|
|
248
250
|
});
|
|
249
251
|
|
|
250
252
|
if (leafColDef.renderCell) {
|
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 = "MTY3NjQ5ODQwMDAwMA==";
|
|
4
4
|
|
|
5
5
|
if (process.env.NODE_ENV !== 'production') {
|
|
6
6
|
// A simple hack to set the value in the test environment (has no build step).
|
|
@@ -176,7 +176,8 @@ const createGroupingColDefForOneGroupingCriteria = ({
|
|
|
176
176
|
if (params.rowNode.groupingField == null) {
|
|
177
177
|
if (leafColDef) {
|
|
178
178
|
const leafParams = (0, _extends2.default)({}, params.api.getCellParams(params.id, leafField), {
|
|
179
|
-
api: params.api
|
|
179
|
+
api: params.api,
|
|
180
|
+
hasFocus: params.hasFocus
|
|
180
181
|
});
|
|
181
182
|
|
|
182
183
|
if (leafColDef.renderCell) {
|
|
@@ -283,7 +284,8 @@ const createGroupingColDefForAllGroupingCriteria = ({
|
|
|
283
284
|
if (params.rowNode.groupingField == null) {
|
|
284
285
|
if (leafColDef) {
|
|
285
286
|
const leafParams = (0, _extends2.default)({}, params.api.getCellParams(params.id, leafField), {
|
|
286
|
-
api: params.api
|
|
287
|
+
api: params.api,
|
|
288
|
+
hasFocus: params.hasFocus
|
|
287
289
|
});
|
|
288
290
|
|
|
289
291
|
if (leafColDef.renderCell) {
|
package/node/index.js
CHANGED
|
@@ -8,7 +8,7 @@ exports.getReleaseInfo = void 0;
|
|
|
8
8
|
var _utils = require("@mui/utils");
|
|
9
9
|
|
|
10
10
|
const getReleaseInfo = () => {
|
|
11
|
-
const releaseInfo = "
|
|
11
|
+
const releaseInfo = "MTY3NjQ5ODQwMDAwMA==";
|
|
12
12
|
|
|
13
13
|
if (process.env.NODE_ENV !== 'production') {
|
|
14
14
|
// A simple hack to set the value in the test environment (has no build step).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid-premium",
|
|
3
|
-
"version": "5.17.
|
|
3
|
+
"version": "5.17.24",
|
|
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",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.18.9",
|
|
35
35
|
"@mui/utils": "^5.10.3",
|
|
36
|
-
"@mui/x-data-grid": "5.17.
|
|
37
|
-
"@mui/x-data-grid-pro": "5.17.
|
|
36
|
+
"@mui/x-data-grid": "5.17.24",
|
|
37
|
+
"@mui/x-data-grid-pro": "5.17.24",
|
|
38
38
|
"@mui/x-license-pro": "5.17.12",
|
|
39
39
|
"@types/format-util": "^1.0.2",
|
|
40
40
|
"clsx": "^1.2.1",
|
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 = "MTY3NjQ5ODQwMDAwMA==";
|
|
4
4
|
|
|
5
5
|
if (process.env.NODE_ENV !== 'production') {
|
|
6
6
|
// A simple hack to set the value in the test environment (has no build step).
|