@mui/x-data-grid 5.2.1 → 5.2.2
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 +50 -0
- package/index-cjs.js +2 -2
- package/index-esm.js +2 -2
- package/package.json +4 -4
- package/themeAugmentation/props.d.ts +1 -1
- package/x-data-grid.d.ts +504 -426
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,56 @@
|
|
|
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
|
+
## 5.2.2
|
|
7
|
+
|
|
8
|
+
_Jan 6, 2022_
|
|
9
|
+
|
|
10
|
+
A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🎁 Add `hideable` option to `GridColDef` (#3433) @m4theushw
|
|
13
|
+
- ⚡ Add support for column-based `sortingOrder` with the new `sortingOrder` option in `GridColDef` (#3449) @Quppa
|
|
14
|
+
- ✨ Allow to initialize the `page` and `pageSize` without controlling them with the `initialState` prop (#3495) @flaviendelangle
|
|
15
|
+
- 🙈 Allow to precisely control which children rows to expand with the new `isGroupExpandedByDefault` prop (#3444) @flaviendelangle
|
|
16
|
+
- 🌍 Add Finnish (fiFI) locale (#3485) @kurkle
|
|
17
|
+
- 📚 Documentation improvements
|
|
18
|
+
- 🐞 Bugfixes
|
|
19
|
+
|
|
20
|
+
### `@mui/x-data-grid@v5.2.2` / `@mui/x-data-grid-pro@v5.2.2`
|
|
21
|
+
|
|
22
|
+
#### Changes
|
|
23
|
+
|
|
24
|
+
- [DataGrid] Add `hideable` option to GridColDef (#3433) @alexfauquette
|
|
25
|
+
- [DataGrid] Add `sortingOrder` to GridColDef (#3449) @Quppa
|
|
26
|
+
- [DataGrid] Add the page and pageSize to the initialState prop (#3495) @flaviendelangle
|
|
27
|
+
- [DataGrid] Avoid re-render when pressing key inside already focused cell (#3484) @m4theushw
|
|
28
|
+
- [DataGrid] Close other actions menus when opening a new one (#3492) @m4theushw
|
|
29
|
+
- [DataGrid] Deprecate `getValue` param from the cell and row params (#3369) @flaviendelangle
|
|
30
|
+
- [DataGrid] Fix value parsing in date input (#3307) @alexfauquette
|
|
31
|
+
- [DataGrid] Fix can't enter 0 on numeric column (#3491) @m4theushw
|
|
32
|
+
- [DataGrid] Fix scrolling bug when an action is focused (#3483) @alexfauquette
|
|
33
|
+
- [DataGrid] Remove `line-height` from `GridCell` (#3446) @DanailH
|
|
34
|
+
- [DataGridPro] Block edition for auto-generated rows (#3547) @flaviendelangle
|
|
35
|
+
- [DataGridPro] Expose the field of the tree data grouping column as a constant (#3549) @flaviendelangle
|
|
36
|
+
- [DataGridPro] Fix resizing of right pinned columns (#3502) @m4theushw
|
|
37
|
+
- [DataGridPro] Add new prop `isGroupExpandedByDefault` (#3444) @flaviendelangle
|
|
38
|
+
- [l10n] Add Finnish (fiFI) locale (#3485) @kurkle
|
|
39
|
+
- [l10n] Improve French (frFR) locale (#3494) @Zenoo
|
|
40
|
+
- [l10n] Improve Italian (itIT) locale (#3452) @destegabry
|
|
41
|
+
- [l10n] Improve Vietnamese (viVN) locale (#3493) @hckhanh
|
|
42
|
+
|
|
43
|
+
### Docs
|
|
44
|
+
|
|
45
|
+
- [docs] Generate imports dynamically from the packages export list (#3488) @flaviendelangle
|
|
46
|
+
- [docs] Make demos compatible with `preProcessEditCellProps` (#3453) @m4theushw
|
|
47
|
+
|
|
48
|
+
### Core
|
|
49
|
+
|
|
50
|
+
- [test] Add test for row checkbox toggling using the Space key (#3262) @alexfauquette
|
|
51
|
+
- [core] Increase CI efficiency (#3441) @oliviertassinari
|
|
52
|
+
- [core] Refactor sorting comparator (#3390) @flaviendelangle
|
|
53
|
+
- [core] Update dependency on the core (#3526) @oliviertassinari
|
|
54
|
+
- [core] Update tweet example in release readme (#3481) @DanailH
|
|
55
|
+
|
|
6
56
|
## 5.2.1
|
|
7
57
|
|
|
8
58
|
_Dec 17, 2021_
|