@mui/x-data-grid-pro 7.23.2 → 7.23.3

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
@@ -3,6 +3,54 @@
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.23.3
7
+
8
+ _Dec 19, 2024_
9
+
10
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
13
+ - 🐞 Bugfixes
14
+
15
+ Special thanks go out to the community contributors who have helped make this release possible:
16
+ @k-rajat19, @good-jinu.
17
+ Following are all team members who have contributed to this release:
18
+ @KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle.
19
+
20
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
21
+
22
+ ### Data Grid
23
+
24
+ #### `@mui/x-data-grid@7.23.3`
25
+
26
+ - [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi
27
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19
28
+ - [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi
29
+ - [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi
30
+ - [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19
31
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf
32
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15871) @k-rajat19
33
+ - [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi
34
+ - [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu
35
+
36
+ #### `@mui/x-data-grid-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
37
+
38
+ Same changes as in `@mui/x-data-grid@7.23.3`.
39
+
40
+ #### `@mui/x-data-grid-premium@7.23.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
41
+
42
+ Same changes as in `@mui/x-data-grid-pro@7.23.3`.
43
+
44
+ ### Date and Time Pickers
45
+
46
+ #### `@mui/x-date-pickers@7.23.3`
47
+
48
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle
49
+
50
+ #### `@mui/x-date-pickers-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
51
+
52
+ Same changes as in `@mui/x-date-pickers@7.23.3`.
53
+
6
54
  ## 7.23.2
7
55
 
8
56
  _Dec 12, 2024_
@@ -43,7 +43,7 @@ const DataGridProRaw = /*#__PURE__*/React.forwardRef(function DataGridPro(inProp
43
43
  style: props.style,
44
44
  sx: props.sx,
45
45
  ref: ref
46
- }, props.forwardedProps, {
46
+ }, props.forwardedProps, props.slotProps?.root, {
47
47
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_xDataGrid.GridHeader, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_xDataGrid.GridBody, {
48
48
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_xLicense.Watermark, {
49
49
  packageName: "x-data-grid-pro",
@@ -105,6 +105,7 @@ DataGridProRaw.propTypes = {
105
105
  */
106
106
  autosizeOptions: _propTypes.default.shape({
107
107
  columns: _propTypes.default.arrayOf(_propTypes.default.string),
108
+ disableColumnVirtualization: _propTypes.default.bool,
108
109
  expand: _propTypes.default.bool,
109
110
  includeHeaders: _propTypes.default.bool,
110
111
  includeOutliers: _propTypes.default.bool,
@@ -422,6 +423,7 @@ DataGridProRaw.propTypes = {
422
423
  * If `deselect`, it will deselect all the rows under it.
423
424
  * Works only if `checkboxSelection` is enabled.
424
425
  * @default "deselect"
426
+ * @deprecated `select` will be the default behavior from v8 onwards
425
427
  */
426
428
  indeterminateCheckboxAction: _propTypes.default.oneOf(['deselect', 'select']),
427
429
  /**
@@ -36,7 +36,7 @@ const DataGridProRaw = /*#__PURE__*/React.forwardRef(function DataGridPro(inProp
36
36
  style: props.style,
37
37
  sx: props.sx,
38
38
  ref: ref
39
- }, props.forwardedProps, {
39
+ }, props.forwardedProps, props.slotProps?.root, {
40
40
  children: [/*#__PURE__*/_jsx(GridHeader, {}), /*#__PURE__*/_jsx(GridBody, {
41
41
  children: /*#__PURE__*/_jsx(Watermark, {
42
42
  packageName: "x-data-grid-pro",
@@ -98,6 +98,7 @@ DataGridProRaw.propTypes = {
98
98
  */
99
99
  autosizeOptions: PropTypes.shape({
100
100
  columns: PropTypes.arrayOf(PropTypes.string),
101
+ disableColumnVirtualization: PropTypes.bool,
101
102
  expand: PropTypes.bool,
102
103
  includeHeaders: PropTypes.bool,
103
104
  includeOutliers: PropTypes.bool,
@@ -415,6 +416,7 @@ DataGridProRaw.propTypes = {
415
416
  * If `deselect`, it will deselect all the rows under it.
416
417
  * Works only if `checkboxSelection` is enabled.
417
418
  * @default "deselect"
419
+ * @deprecated `select` will be the default behavior from v8 onwards
418
420
  */
419
421
  indeterminateCheckboxAction: PropTypes.oneOf(['deselect', 'select']),
420
422
  /**
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTczMzk1NDQwMDAwMA==";
3
+ const releaseInfo = "MTczNDU2NjQwMDAwMA==";
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/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v7.23.2
2
+ * @mui/x-data-grid-pro v7.23.3
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -36,7 +36,7 @@ const DataGridProRaw = /*#__PURE__*/React.forwardRef(function DataGridPro(inProp
36
36
  style: props.style,
37
37
  sx: props.sx,
38
38
  ref: ref
39
- }, props.forwardedProps, {
39
+ }, props.forwardedProps, props.slotProps?.root, {
40
40
  children: [/*#__PURE__*/_jsx(GridHeader, {}), /*#__PURE__*/_jsx(GridBody, {
41
41
  children: /*#__PURE__*/_jsx(Watermark, {
42
42
  packageName: "x-data-grid-pro",
@@ -98,6 +98,7 @@ DataGridProRaw.propTypes = {
98
98
  */
99
99
  autosizeOptions: PropTypes.shape({
100
100
  columns: PropTypes.arrayOf(PropTypes.string),
101
+ disableColumnVirtualization: PropTypes.bool,
101
102
  expand: PropTypes.bool,
102
103
  includeHeaders: PropTypes.bool,
103
104
  includeOutliers: PropTypes.bool,
@@ -415,6 +416,7 @@ DataGridProRaw.propTypes = {
415
416
  * If `deselect`, it will deselect all the rows under it.
416
417
  * Works only if `checkboxSelection` is enabled.
417
418
  * @default "deselect"
419
+ * @deprecated `select` will be the default behavior from v8 onwards
418
420
  */
419
421
  indeterminateCheckboxAction: PropTypes.oneOf(['deselect', 'select']),
420
422
  /**
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v7.23.2
2
+ * @mui/x-data-grid-pro v7.23.3
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTczMzk1NDQwMDAwMA==";
3
+ const releaseInfo = "MTczNDU2NjQwMDAwMA==";
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.23.2",
3
+ "version": "7.23.3",
4
4
  "description": "The Pro plan edition of the Data Grid components (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./index.js",
@@ -40,7 +40,7 @@
40
40
  "prop-types": "^15.8.1",
41
41
  "reselect": "^5.1.1",
42
42
  "@mui/x-internals": "7.23.0",
43
- "@mui/x-data-grid": "7.23.2",
43
+ "@mui/x-data-grid": "7.23.3",
44
44
  "@mui/x-license": "7.23.2"
45
45
  },
46
46
  "peerDependencies": {
@@ -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 = "MTczMzk1NDQwMDAwMA==";
9
+ const releaseInfo = "MTczNDU2NjQwMDAwMA==";
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