@mui/x-data-grid-pro 6.20.1 → 6.20.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 +41 -0
- package/DataGridPro/DataGridPro.js +5 -0
- package/index.js +1 -1
- package/legacy/DataGridPro/DataGridPro.js +5 -0
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/DataGridPro/DataGridPro.js +5 -0
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/node/DataGridPro/DataGridPro.js +5 -0
- package/node/index.js +1 -1
- package/node/utils/releaseInfo.js +1 -1
- package/package.json +2 -2
- package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
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
|
+
## v6.20.3
|
|
7
|
+
|
|
8
|
+
_Jun 28, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 2 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.3`
|
|
17
|
+
|
|
18
|
+
- [DataGrid] Make `rowCount` part of the state (#12406) @MBilalShafi
|
|
19
|
+
|
|
20
|
+
#### `@mui/x-data-grid-pro@6.20.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
21
|
+
|
|
22
|
+
Same changes as in `@mui/x-data-grid@6.20.3`.
|
|
23
|
+
|
|
24
|
+
#### `@mui/x-data-grid-premium@6.20.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
25
|
+
|
|
26
|
+
Same changes as in `@mui/x-data-grid-pro@6.20.3`.
|
|
27
|
+
|
|
28
|
+
### Core
|
|
29
|
+
|
|
30
|
+
- [core] Update release readme with `pnpm` notice (#13577) @LukasTy
|
|
31
|
+
|
|
32
|
+
## 6.20.2
|
|
33
|
+
|
|
34
|
+
_Jun 20, 2024_
|
|
35
|
+
|
|
36
|
+
We'd like to offer a big thanks to the 2 contributors who made this release possible. Here are some highlights ✨:
|
|
37
|
+
|
|
38
|
+
- 🐞 Bugfixes
|
|
39
|
+
|
|
40
|
+
### Date Pickers
|
|
41
|
+
|
|
42
|
+
#### `@mui/x-date-pickers@6.20.2`
|
|
43
|
+
|
|
44
|
+
- [fields] Do not apply digit editing when pressing `Space` (#13516) @flaviendelangle
|
|
45
|
+
- [pickers] Fix controlled `view` behavior (#13559) @LukasTy
|
|
46
|
+
|
|
6
47
|
## 6.20.1
|
|
7
48
|
|
|
8
49
|
_Jun 6, 2024_
|
|
@@ -637,6 +637,11 @@ DataGridProRaw.propTypes = {
|
|
|
637
637
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
638
638
|
*/
|
|
639
639
|
onRowClick: PropTypes.func,
|
|
640
|
+
/**
|
|
641
|
+
* Callback fired when the row count has changed.
|
|
642
|
+
* @param {number} count Updated row count.
|
|
643
|
+
*/
|
|
644
|
+
onRowCountChange: PropTypes.func,
|
|
640
645
|
/**
|
|
641
646
|
* Callback fired when a double click event comes from a row container element.
|
|
642
647
|
* @param {GridRowParams} params With all properties from [[RowParams]].
|
package/index.js
CHANGED
|
@@ -637,6 +637,11 @@ DataGridProRaw.propTypes = {
|
|
|
637
637
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
638
638
|
*/
|
|
639
639
|
onRowClick: PropTypes.func,
|
|
640
|
+
/**
|
|
641
|
+
* Callback fired when the row count has changed.
|
|
642
|
+
* @param {number} count Updated row count.
|
|
643
|
+
*/
|
|
644
|
+
onRowCountChange: PropTypes.func,
|
|
640
645
|
/**
|
|
641
646
|
* Callback fired when a double click event comes from a row container element.
|
|
642
647
|
* @param {GridRowParams} params With all properties from [[RowParams]].
|
package/legacy/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export var getReleaseInfo = function getReleaseInfo() {
|
|
3
|
-
var releaseInfo = "
|
|
3
|
+
var releaseInfo = "MTcxOTUyOTIwMDAwMA==";
|
|
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
|
|
@@ -637,6 +637,11 @@ DataGridProRaw.propTypes = {
|
|
|
637
637
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
638
638
|
*/
|
|
639
639
|
onRowClick: PropTypes.func,
|
|
640
|
+
/**
|
|
641
|
+
* Callback fired when the row count has changed.
|
|
642
|
+
* @param {number} count Updated row count.
|
|
643
|
+
*/
|
|
644
|
+
onRowCountChange: PropTypes.func,
|
|
640
645
|
/**
|
|
641
646
|
* Callback fired when a double click event comes from a row container element.
|
|
642
647
|
* @param {GridRowParams} params With all properties from [[RowParams]].
|
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 = "MTcxOTUyOTIwMDAwMA==";
|
|
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
|
|
@@ -645,6 +645,11 @@ DataGridProRaw.propTypes = {
|
|
|
645
645
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
646
646
|
*/
|
|
647
647
|
onRowClick: _propTypes.default.func,
|
|
648
|
+
/**
|
|
649
|
+
* Callback fired when the row count has changed.
|
|
650
|
+
* @param {number} count Updated row count.
|
|
651
|
+
*/
|
|
652
|
+
onRowCountChange: _propTypes.default.func,
|
|
648
653
|
/**
|
|
649
654
|
* Callback fired when a double click event comes from a row container element.
|
|
650
655
|
* @param {GridRowParams} params With all properties from [[RowParams]].
|
package/node/index.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 = "MTcxOTUyOTIwMDAwMA==";
|
|
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-data-grid-pro",
|
|
3
|
-
"version": "6.20.
|
|
3
|
+
"version": "6.20.3",
|
|
4
4
|
"description": "The Pro plan edition of the data grid component (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.23.2",
|
|
35
35
|
"@mui/utils": "^5.14.16",
|
|
36
|
-
"@mui/x-data-grid": "6.20.
|
|
36
|
+
"@mui/x-data-grid": "6.20.3",
|
|
37
37
|
"@mui/x-license-pro": "6.10.2",
|
|
38
38
|
"@types/format-util": "^1.0.3",
|
|
39
39
|
"clsx": "^2.0.0",
|
package/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 = "MTcxOTUyOTIwMDAwMA==";
|
|
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
|