Skip to content

Commit

Permalink
4.0.0-alpha.31 (#1860)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanailH authored Jun 9, 2021
1 parent 46a31d1 commit 4509391
Show file tree
Hide file tree
Showing 10 changed files with 66 additions and 14 deletions.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,58 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.0-alpha.31](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.30...v4.0.0-alpha.31)

_June 9, 2021_

Big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

- 💅 Allow to customize GridToolbarExport's CSV export (#1695) @michallukowski
- 🐛 Allow to deselect rows with <kbd>CTRL</kbd> + click (#1813) @ZeeshanTamboli
- ⚡️ Refactor scroll size detector (#1703) @dtassone
- 📖 Add [documentation](https://material-ui.com/api/data-grid/) for interfaces and events (#1529) @m4theushw
- 🐞 Bugfixes

### @material-ui/x-grid@v4.0.0-alpha.31 / @material-ui/data-grid@v4.0.0-alpha.31

#### Breaking changes

- [DataGrid] Improve `headerClassName` type (#1778) @DanailH

`cellClassName` and `headerClassName` no longer accept array of strings.

```diff
-cellClassName?: string | string[] | (params: GridCellParams) => string;
+cellClassName?: string | (params: GridCellParams) => string;
```
```diff
-headerClassName?: string | string[];
+headerClassName?: string | (params: GridColumnHeaderParams) => string;
```

#### Changes

- [DataGrid] Add `valueParser` to parse values entered by the user (#1785) @m4theushw
- [DataGrid] Allow to customize GridToolbarExport's CSV export (#1695) @michallukowski
- [DataGrid] Allow to deselect rows with <kbd>CTRL</kbd> + click (#1813) @ZeeshanTamboli
- [DataGrid] Improve general architecture to better isolate hooks (#1720) @dtassone
- [DataGrid] Fix cell height after changing grid density (#1819) @DanailH
- [DataGrid] Fix fluid columns width when available `viewportWidth` < 0 (#1816) @DanailH
- [DataGrid] Fix force reflow on scroll start and end (#1829) @dtassone
- [DataGrid] Refactor scroll size detector (#1703) @dtassone
- [XGrid] Display the number of filtered rows in the footer (#1830) @m4theushw

### Docs

- [docs] Add docs for `disableDensitySelector` option (#1856) @DanailH
- [docs] Automatically generate API docs (#1529) @m4theushw

### Core

- [core] Batch small changes (#1848) @oliviertassinari
- [core] Add `yarn docs:api` @oliviertassinari
- [test] Improve pagination tests (#1827) @m4theushw

## [4.0.0-alpha.30](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.29...v4.0.0-alpha.30)

_May 31, 2021_
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"private": true,
"author": "Material-UI Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"private": true,
"scripts": {
"start": "yarn docs:dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-material-ui",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"private": true,
"description": "Custom eslint rules for Material-UI.",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/data-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@material-ui/data-grid",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"description": "The community edition of the data grid component (Material-UI X).",
"author": "Material-UI Team",
"main": "dist/index-cjs.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/x-grid-data-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@material-ui/x-grid-data-generator",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"description": "Generate fake data for demo purposes only.",
"author": "Material-UI Team",
"main": "dist/cjs/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/x-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@material-ui/x-grid",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"description": "The commercial edition of the data grid component (Material-UI X).",
"author": "Material-UI Team",
"main": "dist/index-cjs.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"dependencies": {
"@material-ui/utils": "^5.0.0-alpha.14",
"@material-ui/x-license": "4.0.0-alpha.30",
"@material-ui/x-license": "4.0.0-alpha.31",
"clsx": "^1.0.4",
"prop-types": "^15.7.2",
"reselect": "^4.0.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"description": "Storybook components",
"author": "Material-UI Team",
"private": true,
Expand All @@ -12,12 +12,12 @@
},
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/data-grid": "4.0.0-alpha.30",
"@material-ui/data-grid": "4.0.0-alpha.31",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.54",
"@material-ui/x-grid": "4.0.0-alpha.30",
"@material-ui/x-grid-data-generator": "4.0.0-alpha.30",
"@material-ui/x-license": "4.0.0-alpha.30",
"@material-ui/x-grid": "4.0.0-alpha.31",
"@material-ui/x-grid-data-generator": "4.0.0-alpha.31",
"@material-ui/x-license": "4.0.0-alpha.31",
"react": "^17.0.2",
"react-is": "^17.0.2",
"rxjs": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/x-license/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@material-ui/x-license",
"version": "4.0.0-alpha.30",
"version": "4.0.0-alpha.31",
"description": "Material-UI X License verification",
"author": "Material-UI Team",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit 4509391

Please sign in to comment.