@mui/x-data-grid-pro 7.27.1 → 7.27.2
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 +36 -0
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.js +1 -1
- package/esm/utils/releaseInfo.js +1 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +1 -1
- package/index.js +1 -1
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +1 -1
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/package.json +2 -2
- package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,42 @@
|
|
|
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.27.2
|
|
7
|
+
|
|
8
|
+
<!-- generated comparing v7.27.1..v7.x -->
|
|
9
|
+
|
|
10
|
+
_Feb 27, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- 🐞 Bugfixes
|
|
15
|
+
- 🌍 Improve Hungarian (hu-HU) and Russian (ru-RU) locales on the Data Grid
|
|
16
|
+
|
|
17
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
18
|
+
@pcorpet, @noherczeg, @denpiligrim.
|
|
19
|
+
Following are all team members who have contributed to this release:
|
|
20
|
+
@MBilalShafi, @KenanYusuf.
|
|
21
|
+
|
|
22
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
23
|
+
|
|
24
|
+
### Data Grid
|
|
25
|
+
|
|
26
|
+
#### `@mui/x-data-grid@v7.27.2`
|
|
27
|
+
|
|
28
|
+
- [DataGrid] Fix `showColumnVerticalBorder` prop (#16726) @KenanYusuf
|
|
29
|
+
- [DataGrid] Make server-side data navigation consistent (#16735) @MBilalShafi
|
|
30
|
+
- [DataGrid] Use readonly array for `GridSortModel` (#16731) @pcorpet
|
|
31
|
+
- [l10n] Improve Hungarian (hu-HU) locale (#16746) @noherczeg
|
|
32
|
+
- [l10n] Improve Russian (ru-RU) locale (#16725) @denpiligrim
|
|
33
|
+
|
|
34
|
+
#### `@mui/x-data-grid-pro@v7.27.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
35
|
+
|
|
36
|
+
Same changes as in `@mui/x-data-grid@v7.27.2`.
|
|
37
|
+
|
|
38
|
+
#### `@mui/x-data-grid-premium@v7.27.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
39
|
+
|
|
40
|
+
Same changes as in `@mui/x-data-grid-pro@v7.27.2`.
|
|
41
|
+
|
|
6
42
|
## 7.27.1
|
|
7
43
|
|
|
8
44
|
_Feb 25, 2025_
|
|
@@ -93,7 +93,7 @@ export const useGridColumnHeaders = props => {
|
|
|
93
93
|
const indexInSection = i;
|
|
94
94
|
const sectionLength = renderedColumns.length;
|
|
95
95
|
const showLeftBorder = shouldCellShowLeftBorder(pinnedPosition, indexInSection);
|
|
96
|
-
const showRightBorder = shouldCellShowRightBorder(pinnedPosition, indexInSection, sectionLength, rootProps.
|
|
96
|
+
const showRightBorder = shouldCellShowRightBorder(pinnedPosition, indexInSection, sectionLength, rootProps.showColumnVerticalBorder, gridHasFiller);
|
|
97
97
|
filters.push(/*#__PURE__*/_jsx(rootProps.slots.headerFilterCell, _extends({
|
|
98
98
|
colIndex: columnIndex,
|
|
99
99
|
height: headerFilterHeight,
|
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 = "MTc0MDYwNzIwMDAwMA==";
|
|
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
|
|
@@ -101,7 +101,7 @@ const useGridColumnHeaders = props => {
|
|
|
101
101
|
const indexInSection = i;
|
|
102
102
|
const sectionLength = renderedColumns.length;
|
|
103
103
|
const showLeftBorder = (0, _internals.shouldCellShowLeftBorder)(pinnedPosition, indexInSection);
|
|
104
|
-
const showRightBorder = (0, _internals.shouldCellShowRightBorder)(pinnedPosition, indexInSection, sectionLength, rootProps.
|
|
104
|
+
const showRightBorder = (0, _internals.shouldCellShowRightBorder)(pinnedPosition, indexInSection, sectionLength, rootProps.showColumnVerticalBorder, gridHasFiller);
|
|
105
105
|
filters.push(/*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.headerFilterCell, (0, _extends2.default)({
|
|
106
106
|
colIndex: columnIndex,
|
|
107
107
|
height: headerFilterHeight,
|
package/index.js
CHANGED
|
@@ -93,7 +93,7 @@ export const useGridColumnHeaders = props => {
|
|
|
93
93
|
const indexInSection = i;
|
|
94
94
|
const sectionLength = renderedColumns.length;
|
|
95
95
|
const showLeftBorder = shouldCellShowLeftBorder(pinnedPosition, indexInSection);
|
|
96
|
-
const showRightBorder = shouldCellShowRightBorder(pinnedPosition, indexInSection, sectionLength, rootProps.
|
|
96
|
+
const showRightBorder = shouldCellShowRightBorder(pinnedPosition, indexInSection, sectionLength, rootProps.showColumnVerticalBorder, gridHasFiller);
|
|
97
97
|
filters.push(/*#__PURE__*/_jsx(rootProps.slots.headerFilterCell, _extends({
|
|
98
98
|
colIndex: columnIndex,
|
|
99
99
|
height: headerFilterHeight,
|
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 = "MTc0MDYwNzIwMDAwMA==";
|
|
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-pro",
|
|
3
|
-
"version": "7.27.
|
|
3
|
+
"version": "7.27.2",
|
|
4
4
|
"description": "The Pro plan edition of the Data Grid components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"clsx": "^2.1.1",
|
|
40
40
|
"prop-types": "^15.8.1",
|
|
41
41
|
"reselect": "^5.1.1",
|
|
42
|
-
"@mui/x-data-grid": "7.27.
|
|
42
|
+
"@mui/x-data-grid": "7.27.2",
|
|
43
43
|
"@mui/x-internals": "7.26.0",
|
|
44
44
|
"@mui/x-license": "7.26.0"
|
|
45
45
|
},
|
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 = "MTc0MDYwNzIwMDAwMA==";
|
|
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
|