@mui/x-data-grid-pro 5.2.0 → 5.2.1
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/index-cjs.js +2 -2
- package/index-esm.js +1 -1
- package/package.json +5 -5
- package/x-data-grid-pro.d.ts +45 -38
- package/x-data-grid/src/DataGrid.d.ts +0 -4
- package/x-data-grid/src/DataGridColumnHeaders.d.ts +0 -6
- package/x-data-grid/src/DataGridProps.d.ts +0 -8
- package/x-data-grid/src/DataGridVirtualScroller.d.ts +0 -8
- package/x-data-grid/src/index.d.ts +0 -4
- package/x-data-grid/src/tests/DataGrid.spec.d.ts +0 -1
- package/x-data-grid/src/tests/columns.spec.d.ts +0 -1
- package/x-data-grid/src/tests/themeAugmentation.spec.d.ts +0 -1
- package/x-data-grid/src/themeAugmentation/index.d.ts +0 -2
- package/x-data-grid/src/themeAugmentation/overrides.d.ts +0 -8
- package/x-data-grid/src/themeAugmentation/props.d.ts +0 -19
- package/x-data-grid/src/useDataGridComponent.d.ts +0 -2
- package/x-data-grid/src/useDataGridProps.d.ts +0 -3
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
|
+
## 5.2.1
|
|
7
|
+
|
|
8
|
+
_Dec 17, 2021_
|
|
9
|
+
|
|
10
|
+
A big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🖨️ Improve the print export to break the pages correctly (#3302) @flaviendelangle
|
|
13
|
+
- 🎁 Add `pinnable` option to `GridColDef` (#3425) @m4theushw
|
|
14
|
+
- 📚 Documentation improvements
|
|
15
|
+
- 🐞 Bugfixes
|
|
16
|
+
|
|
17
|
+
### `@mui/x-data-grid@v5.2.1` / `@mui/x-data-grid-pro@v5.2.1`
|
|
18
|
+
|
|
19
|
+
#### Changes
|
|
20
|
+
|
|
21
|
+
- [DataGridPro] Add `pinnable` option (#3425) @m4theushw
|
|
22
|
+
- [DataGridPro] Avoid filtering columns if no column is pinned (#3438) @m4theushw
|
|
23
|
+
- [DataGrid] Avoid page break inside a row in the Print Export (#3302) @flaviendelangle
|
|
24
|
+
- [DataGrid] Fix `GridEditDateCell` to handle `editRowsModel` correctly (#3267) @alexfauquette
|
|
25
|
+
- [DataGrid] Refactor keyboard/click event management (#3275) @alexfauquette
|
|
26
|
+
- [DataGrid] Fire change event when the state changes, instead of when the prop changes (#3388) @flaviendelangle
|
|
27
|
+
- [DataGrid] Unsubscribe event listeners registered in uncommitted renders (#3310) @m4theushw
|
|
28
|
+
- [l10n] Improve German (deDE) locale (#3430) @sebastianfrey
|
|
29
|
+
- [l10n] Improve Hebrew (heIL) locale (#3445) @ColdAtNight
|
|
30
|
+
- [l10n] Improve Dutch (nlNL) locale (#3429) @jaapjr
|
|
31
|
+
|
|
32
|
+
### Core
|
|
33
|
+
|
|
34
|
+
- [core] Rework state update methods and deprecate `useGridApi` and `useGridState` (#3325) @flaviendelangle
|
|
35
|
+
- [core] Add sections to some of the feature hooks (#3391) @flaviendelangle
|
|
36
|
+
- [core] Generate exports snapshot for both `x-data-grid` and `x-data-grid-pro` packages (#3427) @flaviendelangle
|
|
37
|
+
- [core] Remove 'x-data-grid' folder from DataGridPro bundle (#3394) @m4theushw
|
|
38
|
+
- [core] Add link to OpenCollective (#3392) @oliviertassinari
|
|
39
|
+
|
|
40
|
+
### Docs
|
|
41
|
+
|
|
42
|
+
- [docs] Improve pagination documentation page (#3424) @flaviendelangle
|
|
43
|
+
- [docs] Include @mui/x-data-grid as dependency in the CodeSandbox (#3396) @m4theushw
|
|
44
|
+
- [docs] Stop using TypeDoc to generate the API documentation (#3320) @flaviendelangle
|
|
45
|
+
- [docs] Remove column pinning from "Upcoming features" (#3443) @alexfauquette
|
|
46
|
+
|
|
6
47
|
## 5.2.0
|
|
7
48
|
|
|
8
49
|
_Dec 9, 2021_
|