Skip to content

Commit 3553def

Browse files
JCQuintasKenanYusufMBilalShafiflaviendelangleLukasTy
authored
v7.22.2 (#15314)
Signed-off-by: Jose C Quintas Jr <[email protected]> Co-authored-by: Kenan Yusuf <[email protected]> Co-authored-by: Bilal Shafi <[email protected]> Co-authored-by: Flavien DELANGLE <[email protected]> Co-authored-by: Lukas Tyla <[email protected]>
1 parent 0beb2df commit 3553def

File tree

10 files changed

+73
-9
lines changed

10 files changed

+73
-9
lines changed

Diff for: CHANGELOG.md

+64
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,70 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 7.22.2
7+
8+
_Nov 8, 2024_
9+
10+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
11+
12+
- 👨🏽‍💻 API enhancements
13+
- 🐞 Bugfixes
14+
15+
Special thanks go out to the community contributors who have helped make this release possible:
16+
@clins1994, @GuillaumeMeheut, @k-rajat19.
17+
Following are all team members who have contributed to this release:
18+
@LukasTy, @MBilalShafi, @KenanYusuf, @arminmeh.
19+
20+
### Upcoming alpha
21+
22+
Keep an eye out for the MUI⠀X `v8.0.0-aplha.0` release soon. It will follow a weekly release schedule as always until it is stable.
23+
24+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
25+
26+
### Data Grid
27+
28+
#### `@mui/[email protected]`
29+
30+
- [DataGrid] Fix `null` reference error in `GridVirtualScrollbar` (#15289) @MBilalShafi
31+
- [DataGrid] Fix filtering with `boolean` column type (#15257) @k-rajat19
32+
- [DataGrid] Improve row selection propagation trigger (#15274) @MBilalShafi
33+
- [DataGrid] Preprocess edit cell props on backspace/delete (#15223) @KenanYusuf
34+
- [DataGrid] Add a recipe to persist column width and order (#15309) @MBilalShafi
35+
36+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
37+
38+
Same changes as in `@mui/[email protected]`, plus:
39+
40+
- [DataGridPro] Apply default properties if they are not passed in a reorder column (#15320) @k-rajat19
41+
- [DataGridPro] Toggle row expansion with `Enter` key in Tree data (#15313) @k-rajat19
42+
43+
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
44+
45+
Same changes as in `@mui/[email protected]`, plus:
46+
47+
- [DataGridPremium] Fix incorrect rows selection count when selection propagation is enabled with row grouping (#15222) @arminmeh
48+
49+
### Date and Time Pickers
50+
51+
#### `@mui/[email protected]`
52+
53+
- [pickers] Add support for `[email protected]` (#15248) @LukasTy
54+
55+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
56+
57+
Same changes as in `@mui/[email protected]`.
58+
59+
### Charts
60+
61+
#### `@mui/[email protected]`
62+
63+
- [charts] Allow `SeriesValueFormatter` to return `null` value (#15295) @clins1994
64+
- [charts] Allow configuring the `domainLimit` for each axis. (#15325) @GuillaumeMeheut
65+
66+
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
67+
68+
Same changes as in `@mui/[email protected]`.
69+
670
## 7.22.1
771

872
_Nov 1, 2024_

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.22.1",
2+
"version": "7.22.2",
33
"private": true,
44
"scripts": {
55
"preinstall": "npx only-allow pnpm",

Diff for: packages/x-charts-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts-pro",
3-
"version": "7.0.0-beta.6",
3+
"version": "7.0.0-beta.7",
44
"description": "The Pro plan edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-charts",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The community edition of the Charts components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.js",

Diff for: packages/x-data-grid-generator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-generator",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "Generate fake data for demo purposes only.",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-premium/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-premium",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The Premium plan edition of the Data Grid Components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid-pro",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The Pro plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-data-grid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-data-grid",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The Community plan edition of the Data Grid components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers-pro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers-pro",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The Pro plan edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

Diff for: packages/x-date-pickers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/x-date-pickers",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "The community edition of the Date and Time Picker components (MUI X).",
55
"author": "MUI Team",
66
"main": "src/index.ts",

0 commit comments

Comments
 (0)