Skip to content

Commit 0a373ee

Browse files
authored
v4.0.0-alpha.28 (#1616)
1 parent aac8f42 commit 0a373ee

File tree

10 files changed

+68
-14
lines changed

10 files changed

+68
-14
lines changed

Diff for: CHANGELOG.md

+54
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,60 @@
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+
## [4.0.0-alpha.28](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.27...v4.0.0-alpha.28)
7+
8+
_May 10, 2021_
9+
10+
Big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
11+
12+
- 🇹🇷 Add trTR locale (#1446) @simsek97
13+
- 🎁 Add support for checkbox component slot (#1528) @ZeeshanTamboli
14+
- ⚡️ Add `onColumnVisibilityChange` prop (#1578) @DanailH
15+
- 🐞 Bugfixes
16+
17+
### @material-ui/x-grid@v4.0.0-alpha.28 / @material-ui/data-grid@v4.0.0-alpha.28
18+
19+
#### Breaking changes
20+
21+
- [XGrid] Rename apiRef `toggleColumn` method for consistency (#1578) @DanailH
22+
23+
```diff
24+
-apiRef.current.toggleColumn: (field: string, forceHide?: boolean) => void;
25+
+apiRef.current.setColumnVisibility: (field: string, isVisible: boolean) => void;
26+
```
27+
28+
- [XGrid] Fix event typo (#1574) @DanailH
29+
30+
```diff
31+
-import { GRID_COLUMN_RESIZE_COMMITED } from '@material-ui/x-grid';
32+
+import { GRID_COLUMN_RESIZE_COMMITTED } from '@material-ui/x-grid';
33+
```
34+
35+
#### Changes
36+
37+
- [DataGrid] Add Turkish (trTR) locale (#1526) @simsek97
38+
- [DataGrid] Add `onColumnVisibilityChange` prop (#1578) @DanailH
39+
- [DataGrid] Fix date input crash (#1570) @dtassone
40+
- [DataGrid] Fix resulted filter data shows blank screen during pagination (#1571) @ZeeshanTamboli
41+
- [DataGrid] Support Checkbox component slot (#1528) @ZeeshanTamboli
42+
- [DataGrid] Fix column cell and row cell focus style (#1575) @DanailH
43+
44+
### Docs
45+
46+
- [docs] Fix Feature comparison 404 links (#1525) @ZeeshanTamboli
47+
- [docs] Fix focus isn't set on the text box in `Edit using external button` demo (#1515) @ZeeshanTamboli
48+
- [docs] Fix typo of `onColumnResizeCommitted` prop (#1563) @ZeeshanTamboli
49+
- [docs] Header convention for controllable prop (#1531) @oliviertassinari
50+
- [docs] Fix errors in the docs (#1585) @oliviertassinari
51+
52+
### Core
53+
54+
- [core] Add security policy (#1588) @oliviertassinari
55+
- [core] Improve `GridApi` type structure (#1566) @oliviertassinari
56+
- [core] Simplify component type (#1552) @oliviertassinari
57+
- [core] Update monorepo (#1530) @oliviertassinari
58+
- [core] Increase timeout on jsdom (#1532) @oliviertassinari
59+
660
## [4.0.0-alpha.27](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.26...v4.0.0-alpha.27)
761

862
_Apr 30, 2021_

Diff for: docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "4.0.0-alpha.27",
3+
"version": "4.0.0-alpha.28",
44
"private": true,
55
"author": "Material-UI Team",
66
"license": "MIT",

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.0.0-alpha.27",
2+
"version": "4.0.0-alpha.28",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.0.0-alpha.27",
2+
"version": "4.0.0-alpha.28",
33
"private": true,
44
"scripts": {
55
"start": "yarn docs:dev",

Diff for: packages/eslint-plugin-material-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-material-ui",
3-
"version": "4.0.0-alpha.20",
3+
"version": "4.0.0-alpha.28",
44
"private": true,
55
"description": "Custom eslint rules for Material-UI.",
66
"main": "src/index.js",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material-ui/data-grid",
3-
"version": "4.0.0-alpha.27",
3+
"version": "4.0.0-alpha.28",
44
"description": "The Material-UI community edition of the data grid component.",
55
"author": "Material-UI Team",
66
"main": "dist/index-cjs.js",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material-ui/x-grid-data-generator",
3-
"version": "4.0.0-alpha.27",
3+
"version": "4.0.0-alpha.28",
44
"description": "Generate fake data for demo purposes only.",
55
"author": "Material-UI Team",
66
"main": "dist/cjs/index.js",

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material-ui/x-grid",
3-
"version": "4.0.0-alpha.27",
3+
"version": "4.0.0-alpha.28",
44
"description": "The Material-UI X edition of the data grid component.",
55
"author": "Material-UI Team",
66
"main": "dist/index-cjs.js",
@@ -31,7 +31,7 @@
3131
},
3232
"dependencies": {
3333
"@material-ui/utils": "^5.0.0-alpha.14",
34-
"@material-ui/x-license": "^4.0.0-alpha.25",
34+
"@material-ui/x-license": "4.0.0-alpha.28",
3535
"prop-types": "^15.7.2",
3636
"reselect": "^4.0.0"
3737
},

Diff for: packages/storybook/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "storybook",
3-
"version": "4.0.0-alpha.27",
3+
"version": "4.0.0-alpha.28",
44
"description": "Storybook components",
55
"author": "Material-UI Team",
66
"private": true,
@@ -12,12 +12,12 @@
1212
},
1313
"dependencies": {
1414
"@material-ui/core": "^4.9.12",
15-
"@material-ui/data-grid": "4.0.0-alpha.27",
15+
"@material-ui/data-grid": "4.0.0-alpha.28",
1616
"@material-ui/icons": "^4.9.1",
1717
"@material-ui/lab": "^4.0.0-alpha.54",
18-
"@material-ui/x-grid": "4.0.0-alpha.27",
19-
"@material-ui/x-grid-data-generator": "4.0.0-alpha.27",
20-
"@material-ui/x-license": "^4.0.0-alpha.25",
18+
"@material-ui/x-grid": "4.0.0-alpha.28",
19+
"@material-ui/x-grid-data-generator": "4.0.0-alpha.28",
20+
"@material-ui/x-license": "4.0.0-alpha.28",
2121
"react": "^17.0.2",
2222
"react-is": "^17.0.2",
2323
"rxjs": "^7.0.0",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material-ui/x-license",
3-
"version": "4.0.0-alpha.25",
3+
"version": "4.0.0-alpha.28",
44
"description": "Material-UI X License verification",
55
"author": "Material-UI Team",
66
"main": "dist/cjs/index.js",

0 commit comments

Comments
 (0)