@mui/x-data-grid-pro 8.27.4 → 8.27.5

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 CHANGED
@@ -5,6 +5,71 @@
5
5
  All notable changes to this project will be documented in this file.
6
6
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
7
 
8
+ ## 8.27.5
9
+
10
+ _Mar 11, 2026_
11
+
12
+ We'd like to extend a big thank you to the 7 contributors who made this release possible. Here are some highlights ✨:
13
+
14
+ - 🐞 Bugfixes
15
+
16
+ The following team members contributed to this release:
17
+ @bernardobelchior, @JCQuintas, @MBilalShafi, @michelengelen, @mj12albert, @sai6855, @siriwatknp
18
+
19
+ ### Data Grid
20
+
21
+ #### `@mui/x-data-grid@8.27.5`
22
+
23
+ - [DataGrid] Fix crash when `rows` and `rowModesModel` are updated simultaneously (#21684) @michelengelen
24
+ - [DataGrid] Forward rest props in `GridFilterInputMultipleValue` (#21444) @siriwatknp
25
+ - [DataGrid] Remove double rtl inversion logic for columns pinning (#21443) @siriwatknp
26
+ - [DataGrid] Add missing `resizablePanelHandle` classes to `gridClasses` object (#21632) @sai6855
27
+ - [DataGrid] Refactor `headerAlign` style calls (#21633) @sai6855
28
+ - [DataGrid] Fix keyboard navigation with single-row checkbox selection (#21529) @mj12albert
29
+
30
+ #### `@mui/x-data-grid-pro@8.27.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
31
+
32
+ Same changes as in `@mui/x-data-grid@8.27.5`, plus:
33
+
34
+ - [DataGridPro] Add `role="presentation"` to detail panel toggle header content (#21691) @michelengelen
35
+ - [DataGridPro] Fix sorting not reflected in nested server-side data (#21641) @MBilalShafi
36
+
37
+ #### `@mui/x-data-grid-premium@8.27.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
38
+
39
+ Same changes as in `@mui/x-data-grid-pro@8.27.5`.
40
+
41
+ ### Charts
42
+
43
+ #### `@mui/x-charts@8.27.5`
44
+
45
+ - [charts] Refactor `BarChart` classes structure (#21601) (#21644) @JCQuintas
46
+ - [charts] Refactor `LineChart` classes structure (#21672) @JCQuintas
47
+ - [charts] Refactor `ScatterChart` classes structure (#21706) @JCQuintas
48
+
49
+ #### `@mui/x-charts-pro@8.27.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
50
+
51
+ Same changes as in `@mui/x-charts@8.27.5`, plus:
52
+
53
+ - [charts-pro] Fix image export truncated when page is zoomed out (#21696) @bernardobelchior
54
+
55
+ #### `@mui/x-charts-premium@8.27.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
56
+
57
+ Same changes as in `@mui/x-charts-pro@8.27.5`.
58
+
59
+ ### Docs
60
+
61
+ - [docs] Fix `AssistantWithDataSource` demo crashing (#21631) @sai6855
62
+ - [docs] Move Range Bar Chart to existing charts (#21122) @bernardobelchior
63
+
64
+ ### Core
65
+
66
+ - [code-infra] Fix datagrid test flakyness (#21657) @JCQuintas
67
+ - [code-infra] Removed `getTeamMembers` function and usage from the release script (#21608) @michelengelen
68
+
69
+ ### Miscellaneous
70
+
71
+ - [test] Add missing tests for forwarding props to filter operators in DataGrid (#21700) @siriwatknp
72
+
8
73
  ## 8.27.4
9
74
 
10
75
  _Mar 5, 2026_
@@ -34,7 +34,7 @@ const configuration = {
34
34
  useFilterValueGetter: apiRef => apiRef.current.getRowValue
35
35
  }
36
36
  };
37
- const releaseInfo = "MTc3MjY2ODgwMDAwMA==";
37
+ const releaseInfo = "MTc3MzE4NzIwMDAwMA==";
38
38
  const watermark = /*#__PURE__*/(0, _jsxRuntime.jsx)(_xLicense.Watermark, {
39
39
  packageName: "x-data-grid-pro",
40
40
  releaseInfo: releaseInfo
@@ -68,7 +68,7 @@ const useUtilityClasses = ownerState => {
68
68
  pinnedPosition
69
69
  } = ownerState;
70
70
  const slots = {
71
- root: ['columnHeader', 'columnHeader--filter', colDef.headerAlign === 'left' && 'columnHeader--alignLeft', colDef.headerAlign === 'center' && 'columnHeader--alignCenter', colDef.headerAlign === 'right' && 'columnHeader--alignRight', 'withBorderColor', showRightBorder && 'columnHeader--withRightBorder', showLeftBorder && 'columnHeader--withLeftBorder', pinnedPosition === _internals.PinnedColumnPosition.LEFT && 'columnHeader--pinnedLeft', pinnedPosition === _internals.PinnedColumnPosition.RIGHT && 'columnHeader--pinnedRight'],
71
+ root: ['columnHeader', 'columnHeader--filter', colDef.headerAlign && `columnHeader--align${(0, _capitalize.default)(colDef.headerAlign)}`, 'withBorderColor', showRightBorder && 'columnHeader--withRightBorder', showLeftBorder && 'columnHeader--withLeftBorder', pinnedPosition === _internals.PinnedColumnPosition.LEFT && 'columnHeader--pinnedLeft', pinnedPosition === _internals.PinnedColumnPosition.RIGHT && 'columnHeader--pinnedRight'],
72
72
  input: ['columnHeaderFilterInput'],
73
73
  operatorLabel: ['columnHeaderFilterOperatorLabel']
74
74
  };
@@ -27,7 +27,7 @@ const configuration = {
27
27
  useFilterValueGetter: apiRef => apiRef.current.getRowValue
28
28
  }
29
29
  };
30
- const releaseInfo = "MTc3MjY2ODgwMDAwMA==";
30
+ const releaseInfo = "MTc3MzE4NzIwMDAwMA==";
31
31
  const watermark = /*#__PURE__*/_jsx(Watermark, {
32
32
  packageName: "x-data-grid-pro",
33
33
  releaseInfo: releaseInfo
@@ -61,7 +61,7 @@ const useUtilityClasses = ownerState => {
61
61
  pinnedPosition
62
62
  } = ownerState;
63
63
  const slots = {
64
- root: ['columnHeader', 'columnHeader--filter', colDef.headerAlign === 'left' && 'columnHeader--alignLeft', colDef.headerAlign === 'center' && 'columnHeader--alignCenter', colDef.headerAlign === 'right' && 'columnHeader--alignRight', 'withBorderColor', showRightBorder && 'columnHeader--withRightBorder', showLeftBorder && 'columnHeader--withLeftBorder', pinnedPosition === PinnedColumnPosition.LEFT && 'columnHeader--pinnedLeft', pinnedPosition === PinnedColumnPosition.RIGHT && 'columnHeader--pinnedRight'],
64
+ root: ['columnHeader', 'columnHeader--filter', colDef.headerAlign && `columnHeader--align${capitalize(colDef.headerAlign)}`, 'withBorderColor', showRightBorder && 'columnHeader--withRightBorder', showLeftBorder && 'columnHeader--withLeftBorder', pinnedPosition === PinnedColumnPosition.LEFT && 'columnHeader--pinnedLeft', pinnedPosition === PinnedColumnPosition.RIGHT && 'columnHeader--pinnedRight'],
65
65
  input: ['columnHeaderFilterInput'],
66
66
  operatorLabel: ['columnHeaderFilterOperatorLabel']
67
67
  };
@@ -30,6 +30,7 @@ export const GRID_DETAIL_PANEL_TOGGLE_COL_DEF = _extends({}, GRID_STRING_COL_DEF
30
30
  renderHeader: ({
31
31
  colDef
32
32
  }) => /*#__PURE__*/_jsx("div", {
33
- "aria-label": colDef.headerName
33
+ "aria-label": colDef.headerName,
34
+ role: "presentation"
34
35
  })
35
36
  });
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v8.27.4
2
+ * @mui/x-data-grid-pro v8.27.5
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
@@ -42,6 +42,7 @@ const GRID_DETAIL_PANEL_TOGGLE_COL_DEF = exports.GRID_DETAIL_PANEL_TOGGLE_COL_DE
42
42
  renderHeader: ({
43
43
  colDef
44
44
  }) => /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
45
- "aria-label": colDef.headerName
45
+ "aria-label": colDef.headerName,
46
+ role: "presentation"
46
47
  })
47
48
  });
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v8.27.4
2
+ * @mui/x-data-grid-pro v8.27.5
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-pro",
3
- "version": "8.27.4",
3
+ "version": "8.27.5",
4
4
  "author": "MUI Team",
5
5
  "description": "The Pro plan edition of the MUI X Data Grid components.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -37,9 +37,9 @@
37
37
  "@mui/utils": "^7.3.5",
38
38
  "clsx": "^2.1.1",
39
39
  "prop-types": "^15.8.1",
40
- "@mui/x-internals": "8.26.0",
41
40
  "@mui/x-license": "8.26.0",
42
- "@mui/x-data-grid": "8.27.4"
41
+ "@mui/x-data-grid": "8.27.5",
42
+ "@mui/x-internals": "8.26.0"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@emotion/react": "^11.9.0",