@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 +42 -0
- package/DataGrid/DataGrid.js +0 -6
- package/index.js +1 -1
- package/legacy/DataGrid/DataGrid.js +0 -6
- package/legacy/index.js +1 -1
- package/models/events/gridEventLookup.d.ts +1 -8
- package/models/props/DataGridProps.d.ts +0 -6
- package/modern/DataGrid/DataGrid.js +0 -6
- package/modern/index.js +1 -1
- package/node/DataGrid/DataGrid.js +0 -6
- package/node/index.js +1 -1
- package/package.json +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_
|
package/DataGrid/DataGrid.js
CHANGED
|
@@ -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
|
@@ -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
|
@@ -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
|
|
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
|
@@ -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