@mui/x-data-grid 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 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` [![pro](https://mui.com/r/x-pro-svg)](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` [![premium](https://mui.com/r/x-premium-svg)](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` [![pro](https://mui.com/r/x-pro-svg)](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_
@@ -502,12 +502,6 @@ DataGridRaw.propTypes = {
502
502
  * @param {GridCallbackDetails} details Additional details for this callback.
503
503
  */
504
504
  onRowDoubleClick: PropTypes.func,
505
- /**
506
- * Callback fired when the row changes are committed.
507
- * @param {GridRowId} id The row id.
508
- * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
509
- */
510
- onRowEditCommit: PropTypes.func,
511
505
  /**
512
506
  * Callback fired when the row turns to edit mode.
513
507
  * @param {GridRowParams} params With all properties from [[GridRowParams]].
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.19.8
2
+ * @mui/x-data-grid v6.19.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -504,12 +504,6 @@ DataGridRaw.propTypes = {
504
504
  * @param {GridCallbackDetails} details Additional details for this callback.
505
505
  */
506
506
  onRowDoubleClick: PropTypes.func,
507
- /**
508
- * Callback fired when the row changes are committed.
509
- * @param {GridRowId} id The row id.
510
- * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
511
- */
512
- onRowEditCommit: PropTypes.func,
513
507
  /**
514
508
  * Callback fired when the row turns to edit mode.
515
509
  * @param {GridRowParams} params With all properties from [[GridRowParams]].
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.19.8
2
+ * @mui/x-data-grid v6.19.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -7,7 +7,7 @@ import type { GridSortModel } from '../gridSortModel';
7
7
  import type { GridRowSelectionModel } from '../gridRowSelectionModel';
8
8
  import type { ElementSize } from '../elementSize';
9
9
  import type { MuiBaseEvent } from '../muiEvent';
10
- import type { GridGroupNode, GridRowId } from '../gridRows';
10
+ import type { GridGroupNode } from '../gridRows';
11
11
  import type { GridColumnVisibilityModel } from '../../hooks/features/columns';
12
12
  import type { GridStrategyProcessorName } from '../../hooks/core/strategyProcessing';
13
13
  import { GridRowEditStartParams, GridRowEditStopParams } from '../params/gridRowParams';
@@ -531,13 +531,6 @@ export interface GridEventLookup extends GridRowEventLookup, GridColumnHeaderEve
531
531
  params: GridRowEditStopParams;
532
532
  event: MuiBaseEvent;
533
533
  };
534
- /**
535
- * Fired when the props of the edit input are committed.
536
- */
537
- rowEditCommit: {
538
- params: GridRowId;
539
- event: MuiBaseEvent;
540
- };
541
534
  /**
542
535
  * Fired when a cell gains focus.
543
536
  * @ignore - do not document.
@@ -447,12 +447,6 @@ export interface DataGridPropsWithoutDefaultValue<R extends GridValidRowModel =
447
447
  * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
448
448
  */
449
449
  onCellEditStop?: GridEventListener<'cellEditStop'>;
450
- /**
451
- * Callback fired when the row changes are committed.
452
- * @param {GridRowId} id The row id.
453
- * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
454
- */
455
- onRowEditCommit?: GridEventListener<'rowEditCommit'>;
456
450
  /**
457
451
  * Callback fired when the row turns to edit mode.
458
452
  * @param {GridRowParams} params With all properties from [[GridRowParams]].
@@ -502,12 +502,6 @@ DataGridRaw.propTypes = {
502
502
  * @param {GridCallbackDetails} details Additional details for this callback.
503
503
  */
504
504
  onRowDoubleClick: PropTypes.func,
505
- /**
506
- * Callback fired when the row changes are committed.
507
- * @param {GridRowId} id The row id.
508
- * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
509
- */
510
- onRowEditCommit: PropTypes.func,
511
505
  /**
512
506
  * Callback fired when the row turns to edit mode.
513
507
  * @param {GridRowParams} params With all properties from [[GridRowParams]].
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.19.8
2
+ * @mui/x-data-grid v6.19.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -510,12 +510,6 @@ DataGridRaw.propTypes = {
510
510
  * @param {GridCallbackDetails} details Additional details for this callback.
511
511
  */
512
512
  onRowDoubleClick: _propTypes.default.func,
513
- /**
514
- * Callback fired when the row changes are committed.
515
- * @param {GridRowId} id The row id.
516
- * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
517
- */
518
- onRowEditCommit: _propTypes.default.func,
519
513
  /**
520
514
  * Callback fired when the row turns to edit mode.
521
515
  * @param {GridRowParams} params With all properties from [[GridRowParams]].
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.19.8
2
+ * @mui/x-data-grid v6.19.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid",
3
- "version": "6.19.8",
3
+ "version": "6.19.9",
4
4
  "description": "The community edition of the data grid component (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",