@mui/x-data-grid-pro 6.19.8 → 6.19.9
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 +42 -0
- package/DataGridPro/DataGridPro.js +0 -6
- package/index.js +1 -1
- package/legacy/DataGridPro/DataGridPro.js +0 -6
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/DataGridPro/DataGridPro.js +0 -6
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/node/DataGridPro/DataGridPro.js +0 -6
- 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,48 @@
|
|
|
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.19.9
|
|
7
|
+
|
|
8
|
+
_Apr 5, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🐞 Bugfixes
|
|
13
|
+
- 📚 Documentation improvements
|
|
14
|
+
|
|
15
|
+
### Data Grid
|
|
16
|
+
|
|
17
|
+
#### `@mui/x-data-grid@6.19.9`
|
|
18
|
+
|
|
19
|
+
- [DataGrid] Remove legacy editing API event: `rowEditCommit` (#12087) @MBilalShafi
|
|
20
|
+
|
|
21
|
+
#### `@mui/x-data-grid-pro@6.19.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
22
|
+
|
|
23
|
+
Same changes as in `@mui/x-data-grid@6.19.9`.
|
|
24
|
+
|
|
25
|
+
#### `@mui/x-data-grid-premium@6.19.9` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
26
|
+
|
|
27
|
+
Same changes as in `@mui/x-data-grid-pro@6.19.9`.
|
|
28
|
+
|
|
29
|
+
### Date Pickers
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-date-pickers@6.19.9`
|
|
32
|
+
|
|
33
|
+
No changes.
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-date-pickers-pro@6.19.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
36
|
+
|
|
37
|
+
- [DateRangePicker] Fix selection behavior with single input field when `readOnly` (#12605) @LukasTy
|
|
38
|
+
|
|
39
|
+
### Docs
|
|
40
|
+
|
|
41
|
+
- [docs] Adds a recipe for the `checkboxSelectionVisibleOnly` prop (#12667) @michelengelen
|
|
42
|
+
- [docs] Explain the use of `_action: 'delete'` in `processRowUpdate` (#12673) @michelengelen
|
|
43
|
+
|
|
44
|
+
### Core
|
|
45
|
+
|
|
46
|
+
- [core] Use Circle CI context (#12607) @cherniavskii
|
|
47
|
+
|
|
6
48
|
## 6.19.8
|
|
7
49
|
|
|
8
50
|
_Mar 20, 2024_
|
|
@@ -644,12 +644,6 @@ DataGridProRaw.propTypes = {
|
|
|
644
644
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
645
645
|
*/
|
|
646
646
|
onRowDoubleClick: PropTypes.func,
|
|
647
|
-
/**
|
|
648
|
-
* Callback fired when the row changes are committed.
|
|
649
|
-
* @param {GridRowId} id The row id.
|
|
650
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
651
|
-
*/
|
|
652
|
-
onRowEditCommit: PropTypes.func,
|
|
653
647
|
/**
|
|
654
648
|
* Callback fired when the row turns to edit mode.
|
|
655
649
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
package/index.js
CHANGED
|
@@ -644,12 +644,6 @@ DataGridProRaw.propTypes = {
|
|
|
644
644
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
645
645
|
*/
|
|
646
646
|
onRowDoubleClick: PropTypes.func,
|
|
647
|
-
/**
|
|
648
|
-
* Callback fired when the row changes are committed.
|
|
649
|
-
* @param {GridRowId} id The row id.
|
|
650
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
651
|
-
*/
|
|
652
|
-
onRowEditCommit: PropTypes.func,
|
|
653
647
|
/**
|
|
654
648
|
* Callback fired when the row turns to edit mode.
|
|
655
649
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
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 = "MTcxMjI2NDQwMDAwMA==";
|
|
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
|
|
@@ -644,12 +644,6 @@ DataGridProRaw.propTypes = {
|
|
|
644
644
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
645
645
|
*/
|
|
646
646
|
onRowDoubleClick: PropTypes.func,
|
|
647
|
-
/**
|
|
648
|
-
* Callback fired when the row changes are committed.
|
|
649
|
-
* @param {GridRowId} id The row id.
|
|
650
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
651
|
-
*/
|
|
652
|
-
onRowEditCommit: PropTypes.func,
|
|
653
647
|
/**
|
|
654
648
|
* Callback fired when the row turns to edit mode.
|
|
655
649
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
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 = "MTcxMjI2NDQwMDAwMA==";
|
|
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
|
|
@@ -652,12 +652,6 @@ DataGridProRaw.propTypes = {
|
|
|
652
652
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
653
653
|
*/
|
|
654
654
|
onRowDoubleClick: _propTypes.default.func,
|
|
655
|
-
/**
|
|
656
|
-
* Callback fired when the row changes are committed.
|
|
657
|
-
* @param {GridRowId} id The row id.
|
|
658
|
-
* @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
|
|
659
|
-
*/
|
|
660
|
-
onRowEditCommit: _propTypes.default.func,
|
|
661
655
|
/**
|
|
662
656
|
* Callback fired when the row turns to edit mode.
|
|
663
657
|
* @param {GridRowParams} params With all properties from [[GridRowParams]].
|
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 = "MTcxMjI2NDQwMDAwMA==";
|
|
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.19.
|
|
3
|
+
"version": "6.19.9",
|
|
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.19.
|
|
36
|
+
"@mui/x-data-grid": "6.19.9",
|
|
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 = "MTcxMjI2NDQwMDAwMA==";
|
|
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
|