@mui/x-data-grid 6.20.3 → 6.20.4
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 +22 -0
- package/components/panel/GridPanel.js +4 -1
- package/index.js +1 -1
- package/legacy/components/panel/GridPanel.js +4 -1
- package/legacy/index.js +1 -1
- package/modern/components/panel/GridPanel.js +4 -1
- package/modern/index.js +1 -1
- package/node/components/panel/GridPanel.js +4 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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
|
+
## 6.20.4
|
|
7
|
+
|
|
8
|
+
_Jul 18, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 1 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🐞 Bugfixes
|
|
13
|
+
|
|
14
|
+
### Data Grid
|
|
15
|
+
|
|
16
|
+
#### `@mui/x-data-grid@6.20.4`
|
|
17
|
+
|
|
18
|
+
- [DataGrid] Enable flip on preferences panel (#13812) @romgrk
|
|
19
|
+
|
|
20
|
+
#### `@mui/x-data-grid-pro@6.20.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
21
|
+
|
|
22
|
+
Same changes as in `@mui/x-data-grid@6.20.4`.
|
|
23
|
+
|
|
24
|
+
#### `@mui/x-data-grid-premium@6.20.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
25
|
+
|
|
26
|
+
Same changes as in `@mui/x-data-grid-pro@6.20.4`.
|
|
27
|
+
|
|
6
28
|
## v6.20.3
|
|
7
29
|
|
|
8
30
|
_Jun 28, 2024_
|
|
@@ -56,7 +56,10 @@ const GridPanel = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
56
56
|
}, [apiRef]);
|
|
57
57
|
const modifiers = React.useMemo(() => [{
|
|
58
58
|
name: 'flip',
|
|
59
|
-
enabled:
|
|
59
|
+
enabled: true,
|
|
60
|
+
options: {
|
|
61
|
+
rootBoundary: 'document'
|
|
62
|
+
}
|
|
60
63
|
}, {
|
|
61
64
|
name: 'isPlaced',
|
|
62
65
|
enabled: true,
|
package/index.js
CHANGED
|
@@ -66,7 +66,10 @@ var GridPanel = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
66
66
|
var modifiers = React.useMemo(function () {
|
|
67
67
|
return [{
|
|
68
68
|
name: 'flip',
|
|
69
|
-
enabled:
|
|
69
|
+
enabled: true,
|
|
70
|
+
options: {
|
|
71
|
+
rootBoundary: 'document'
|
|
72
|
+
}
|
|
70
73
|
}, {
|
|
71
74
|
name: 'isPlaced',
|
|
72
75
|
enabled: true,
|
package/legacy/index.js
CHANGED
|
@@ -56,7 +56,10 @@ const GridPanel = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
56
56
|
}, [apiRef]);
|
|
57
57
|
const modifiers = React.useMemo(() => [{
|
|
58
58
|
name: 'flip',
|
|
59
|
-
enabled:
|
|
59
|
+
enabled: true,
|
|
60
|
+
options: {
|
|
61
|
+
rootBoundary: 'document'
|
|
62
|
+
}
|
|
60
63
|
}, {
|
|
61
64
|
name: 'isPlaced',
|
|
62
65
|
enabled: true,
|
package/modern/index.js
CHANGED
|
@@ -65,7 +65,10 @@ const GridPanel = exports.GridPanel = /*#__PURE__*/React.forwardRef((props, ref)
|
|
|
65
65
|
}, [apiRef]);
|
|
66
66
|
const modifiers = React.useMemo(() => [{
|
|
67
67
|
name: 'flip',
|
|
68
|
-
enabled:
|
|
68
|
+
enabled: true,
|
|
69
|
+
options: {
|
|
70
|
+
rootBoundary: 'document'
|
|
71
|
+
}
|
|
69
72
|
}, {
|
|
70
73
|
name: 'isPlaced',
|
|
71
74
|
enabled: true,
|
package/node/index.js
CHANGED