@mui/x-tree-view-pro 7.22.0 → 7.22.1
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 +62 -0
- package/index.d.ts +2 -0
- package/index.js +3 -1
- package/internals/utils/releaseInfo.js +1 -1
- package/modern/index.js +3 -1
- package/modern/internals/utils/releaseInfo.js +1 -1
- package/node/index.js +25 -1
- package/node/internals/utils/releaseInfo.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,68 @@
|
|
|
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.22.1
|
|
7
|
+
|
|
8
|
+
_Nov 1, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🐞 Bugfixes
|
|
13
|
+
- 📚 Documentation improvements
|
|
14
|
+
- 🌍 Improve Polish (pl-PL) locale on the Date Pickers
|
|
15
|
+
|
|
16
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
17
|
+
@wojtkolos, @dpak-maurya, @k-rajat19.
|
|
18
|
+
Following are all team members who have contributed to this release:
|
|
19
|
+
@LukasTy, @arminmeh, @MBilalShafi, @KenanYusuf, @flaviendelangle.
|
|
20
|
+
|
|
21
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
22
|
+
|
|
23
|
+
### Data Grid
|
|
24
|
+
|
|
25
|
+
#### `@mui/x-data-grid@7.22.1`
|
|
26
|
+
|
|
27
|
+
- [DataGrid] Fix right column group header border (#15152) @KenanYusuf
|
|
28
|
+
- [DataGrid] Fix scroll jump when holding down arrow keys (#15167) @arminmeh
|
|
29
|
+
- [DataGrid] Move `rowGroupingModelChange` handler to respective hook (#15127) @MBilalShafi
|
|
30
|
+
- [DataGrid] Prevent error when deleting the last row (#15153) @dpak-maurya
|
|
31
|
+
- [DataGrid] Fix overlay height in autoHeight mode (#15205) @cherniavskii
|
|
32
|
+
|
|
33
|
+
#### `@mui/x-data-grid-pro@7.22.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
34
|
+
|
|
35
|
+
Same changes as in `@mui/x-data-grid@7.22.1`, plus:
|
|
36
|
+
|
|
37
|
+
- [DataGridPro] Add list view tests (#15166) @KenanYusuf
|
|
38
|
+
|
|
39
|
+
#### `@mui/x-data-grid-premium@7.22.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
40
|
+
|
|
41
|
+
- [DataGridPremium] Keep focus on the grouping cell on space bar press #15155 @k-rajat19
|
|
42
|
+
|
|
43
|
+
### Date and Time Pickers
|
|
44
|
+
|
|
45
|
+
#### `@mui/x-date-pickers@7.22.1`
|
|
46
|
+
|
|
47
|
+
- [l10n] Improve Polish (pl-PL) locale (#15177) @wojtkolos
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-date-pickers-pro@7.22.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
50
|
+
|
|
51
|
+
Same changes as in `@mui/x-date-pickers@7.22.1`.
|
|
52
|
+
|
|
53
|
+
### Tree View
|
|
54
|
+
|
|
55
|
+
#### `@mui/x-tree-view@7.22.1`
|
|
56
|
+
|
|
57
|
+
- [TreeView] Export `TreeItem2DragAndDropOverlay` and `TreeItem2LabelInput` from the root of each package (#15208) @flaviendelangle
|
|
58
|
+
- [TreeView] Fix drag and drop color usage (#15149) @LukasTy
|
|
59
|
+
|
|
60
|
+
#### `@mui/x-tree-view-pro@7.22.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
61
|
+
|
|
62
|
+
Same changes as in `@mui/x-tree-view@7.22.1`.
|
|
63
|
+
|
|
64
|
+
### Docs
|
|
65
|
+
|
|
66
|
+
- [docs] Add section explaining how to keep the selection while filtering in Data grid docs (#15199) @arminmeh
|
|
67
|
+
|
|
6
68
|
## 7.22.0
|
|
7
69
|
|
|
8
70
|
_Oct 25, 2024_
|
package/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export * from '@mui/x-tree-view/TreeItem2';
|
|
|
6
6
|
export * from '@mui/x-tree-view/useTreeItem2';
|
|
7
7
|
export * from '@mui/x-tree-view/TreeItem2Icon';
|
|
8
8
|
export * from '@mui/x-tree-view/TreeItem2Provider';
|
|
9
|
+
export * from '@mui/x-tree-view/TreeItem2DragAndDropOverlay';
|
|
10
|
+
export * from '@mui/x-tree-view/TreeItem2LabelInput';
|
|
9
11
|
export { unstable_resetCleanupTracking } from '@mui/x-tree-view/internals';
|
|
10
12
|
export * from '@mui/x-tree-view/models';
|
|
11
13
|
export * from '@mui/x-tree-view/icons';
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-tree-view-pro v7.22.
|
|
2
|
+
* @mui/x-tree-view-pro v7.22.1
|
|
3
3
|
*
|
|
4
4
|
* @license MUI X Commercial
|
|
5
5
|
* This source code is licensed under the commercial license found in the
|
|
@@ -16,6 +16,8 @@ export * from '@mui/x-tree-view/TreeItem2';
|
|
|
16
16
|
export * from '@mui/x-tree-view/useTreeItem2';
|
|
17
17
|
export * from '@mui/x-tree-view/TreeItem2Icon';
|
|
18
18
|
export * from '@mui/x-tree-view/TreeItem2Provider';
|
|
19
|
+
export * from '@mui/x-tree-view/TreeItem2DragAndDropOverlay';
|
|
20
|
+
export * from '@mui/x-tree-view/TreeItem2LabelInput';
|
|
19
21
|
export { unstable_resetCleanupTracking } from '@mui/x-tree-view/internals';
|
|
20
22
|
export * from '@mui/x-tree-view/models';
|
|
21
23
|
export * from '@mui/x-tree-view/icons';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTczMDQzMzYwMDAwMA==";
|
|
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,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-tree-view-pro v7.22.
|
|
2
|
+
* @mui/x-tree-view-pro v7.22.1
|
|
3
3
|
*
|
|
4
4
|
* @license MUI X Commercial
|
|
5
5
|
* This source code is licensed under the commercial license found in the
|
|
@@ -16,6 +16,8 @@ export * from '@mui/x-tree-view/TreeItem2';
|
|
|
16
16
|
export * from '@mui/x-tree-view/useTreeItem2';
|
|
17
17
|
export * from '@mui/x-tree-view/TreeItem2Icon';
|
|
18
18
|
export * from '@mui/x-tree-view/TreeItem2Provider';
|
|
19
|
+
export * from '@mui/x-tree-view/TreeItem2DragAndDropOverlay';
|
|
20
|
+
export * from '@mui/x-tree-view/TreeItem2LabelInput';
|
|
19
21
|
export { unstable_resetCleanupTracking } from '@mui/x-tree-view/internals';
|
|
20
22
|
export * from '@mui/x-tree-view/models';
|
|
21
23
|
export * from '@mui/x-tree-view/icons';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTczMDQzMzYwMDAwMA==";
|
|
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-tree-view-pro v7.22.
|
|
2
|
+
* @mui/x-tree-view-pro v7.22.1
|
|
3
3
|
*
|
|
4
4
|
* @license MUI X Commercial
|
|
5
5
|
* This source code is licensed under the commercial license found in the
|
|
@@ -115,6 +115,30 @@ Object.keys(_TreeItem2Provider).forEach(function (key) {
|
|
|
115
115
|
}
|
|
116
116
|
});
|
|
117
117
|
});
|
|
118
|
+
var _TreeItem2DragAndDropOverlay = require("@mui/x-tree-view/TreeItem2DragAndDropOverlay");
|
|
119
|
+
Object.keys(_TreeItem2DragAndDropOverlay).forEach(function (key) {
|
|
120
|
+
if (key === "default" || key === "__esModule") return;
|
|
121
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
122
|
+
if (key in exports && exports[key] === _TreeItem2DragAndDropOverlay[key]) return;
|
|
123
|
+
Object.defineProperty(exports, key, {
|
|
124
|
+
enumerable: true,
|
|
125
|
+
get: function () {
|
|
126
|
+
return _TreeItem2DragAndDropOverlay[key];
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
var _TreeItem2LabelInput = require("@mui/x-tree-view/TreeItem2LabelInput");
|
|
131
|
+
Object.keys(_TreeItem2LabelInput).forEach(function (key) {
|
|
132
|
+
if (key === "default" || key === "__esModule") return;
|
|
133
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
134
|
+
if (key in exports && exports[key] === _TreeItem2LabelInput[key]) return;
|
|
135
|
+
Object.defineProperty(exports, key, {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () {
|
|
138
|
+
return _TreeItem2LabelInput[key];
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
});
|
|
118
142
|
var _internals = require("@mui/x-tree-view/internals");
|
|
119
143
|
var _models = require("@mui/x-tree-view/models");
|
|
120
144
|
Object.keys(_models).forEach(function (key) {
|
|
@@ -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 = "MTczMDQzMzYwMDAwMA==";
|
|
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-tree-view-pro",
|
|
3
|
-
"version": "7.22.
|
|
3
|
+
"version": "7.22.1",
|
|
4
4
|
"description": "The Pro plan edition of the Tree View components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"clsx": "^2.1.1",
|
|
40
40
|
"prop-types": "^15.8.1",
|
|
41
41
|
"react-transition-group": "^4.4.5",
|
|
42
|
-
"@mui/x-internals": "7.21.0",
|
|
43
42
|
"@mui/x-license": "7.21.0",
|
|
44
|
-
"@mui/x-tree-view": "7.22.
|
|
43
|
+
"@mui/x-tree-view": "7.22.1",
|
|
44
|
+
"@mui/x-internals": "7.21.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@emotion/react": "^11.9.0",
|