Skip to content

Commit 92d6e98

Browse files
v4.0.0-alpha.8
1 parent 7d7ae0d commit 92d6e98

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Here are some highlights ✨:
1616
We hope the next release can be 4.0.0-beta.0.
1717
Here are the last breaking changes we want to introduce:
1818

19-
- Remove the `dangerouslyUseGlobalCSS` option, make it the default behavior (#15140)
19+
- Remove the `dangerouslyUseGlobalCSS` option (make it the default behavior) (#15140)
2020
- Require the Slide and Modal child element to be able to hold a ref (#15344, #15347)
2121
- Hide the EventListener dependency of ClickAwayListener (#15126)
2222

@@ -72,7 +72,6 @@ We hope 2-3 weeks of beta will be enough. We plan on releasing v4 stable in May.
7272
- [Tooltip] Convert to function component (#15291) @joshwooding
7373
- [Ripple] Convert to function component (#15345) @joshwooding
7474
- [Textarea] Refactor the implementation (#15331) @oliviertassinari
75-
- [system] Add types (#15357) @eps1lon
7675
- [Modal] Add reason parameter to onClose function signature (#15373) @JarkEMones
7776
- [Box] Test props to attributes forwarding (#15365) @eps1lon
7877
- [Container] Add component prop for TypeScript (#15369) @Amere
@@ -83,9 +82,9 @@ We hope 2-3 weeks of beta will be enough. We plan on releasing v4 stable in May.
8382
- Fix dependency duplication issue @oliviertassinari
8483
- [styles] Improve typings for makeStyles (#15366) @geirsagberg
8584

86-
### `@material-ui/utils@v4.0.0-alpha.8`
85+
### `@material-ui/system@v4.0.0-alpha.8`
8786

88-
- [utils] Fix lazy and memo components issuing forward ref warnings (#15322) @eps1lon
87+
- [system] Add types (#15357) @eps1lon
8988

9089
### `@material-ui/[email protected]`
9190

@@ -147,6 +146,7 @@ We hope 2-3 weeks of beta will be enough. We plan on releasing v4 stable in May.
147146
- [core] Upgrade react-transition-group (#15375) @eps1lon
148147
- [test] Add missing styles tests (#15376) @ellisio
149148
- [test] Add hoc + overrideable component workaround (#15381) @ellisio
149+
- [utils] Fix lazy and memo components issuing forward ref warnings (#15322) @eps1lon
150150

151151
## 4.0.0-alpha.7
152152
###### *Apr 8, 2019*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/workspace",
3+
"version": "4.0.0-alpha.8",
34
"private": true,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.7",
66
"description": "Material-UI's workspace package",
77
"keywords": [
88
"react",

packages/material-ui-benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@material-ui/benchmark",
3-
"private": true,
43
"version": "4.0.0",
4+
"private": true,
55
"description": "Material-UI Benchmark.",
66
"repository": {
77
"type": "git",

packages/material-ui-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/codemod",
3+
"version": "4.0.0-alpha.0",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.0",
66
"description": "Codemod scripts for Material-UI.",
77
"keywords": [
88
"react",

packages/material-ui-docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/docs",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.0",
66
"description": "Material-UI Docs - Documentation building blocks.",
77
"main": "./src/index.js",
88
"keywords": [
@@ -31,13 +31,13 @@
3131
"test": "exit 0"
3232
},
3333
"peerDependencies": {
34-
"@material-ui/core": "^3.0.0 || ^4.0.0-alpha",
34+
"@material-ui/core": "^4.0.0-alpha.8",
3535
"react": "^16.8.0",
3636
"react-dom": "^16.8.0"
3737
},
3838
"dependencies": {
3939
"@babel/runtime": "^7.2.0",
40-
"@material-ui/utils": "^4.0.0-alpha.0",
40+
"@material-ui/utils": "^4.0.0-alpha.8",
4141
"clsx": "^1.0.2",
4242
"marked": "^0.6.0",
4343
"nprogress": "^0.2.0",

packages/material-ui-icons/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/icons",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.1",
66
"description": "Material Design Svg Icons converted to Material-UI React components.",
77
"main": "./src/index.js",
88
"keywords": [
@@ -36,7 +36,7 @@
3636
"typescript": "tslint -p tsconfig.json \"src/**/*.{ts,tsx}\""
3737
},
3838
"peerDependencies": {
39-
"@material-ui/core": "^4.0.0-alpha.0",
39+
"@material-ui/core": "^4.0.0-alpha.8",
4040
"react": "^16.8.0",
4141
"react-dom": "^16.8.0"
4242
},

packages/material-ui-lab/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/lab",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.6",
66
"description": "Material-UI Lab - Incubator for Material-UI React components.",
77
"main": "./src/index.js",
88
"keywords": [
@@ -33,13 +33,13 @@
3333
"typescript": "tslint -p tsconfig.json \"src/**/*.{ts,tsx}\""
3434
},
3535
"peerDependencies": {
36-
"@material-ui/core": "^4.0.0-alpha.6",
36+
"@material-ui/core": "^4.0.0-alpha.8",
3737
"react": "^16.8.0",
3838
"react-dom": "^16.8.0"
3939
},
4040
"dependencies": {
4141
"@babel/runtime": "^7.2.0",
42-
"@material-ui/utils": "^4.0.0-alpha.4",
42+
"@material-ui/utils": "^4.0.0-alpha.8",
4343
"clsx": "^1.0.2",
4444
"keycode": "^2.1.9",
4545
"prop-types": "^15.7.2"

packages/material-ui-styles/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/styles",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.7",
66
"description": "Material-UI Styles - The styling solution of Material-UI.",
77
"main": "./src/index.js",
88
"keywords": [
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@babel/runtime": "^7.2.0",
4141
"@emotion/hash": "^0.7.1",
42-
"@material-ui/utils": "^4.0.0-alpha.4",
42+
"@material-ui/utils": "^4.0.0-alpha.8",
4343
"clsx": "^1.0.2",
4444
"deepmerge": "^3.0.0",
4545
"hoist-non-react-statics": "^3.2.1",

packages/material-ui-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/system",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.0",
66
"description": "Material-UI System - Design system for Material-UI.",
77
"main": "./src/index.js",
88
"keywords": [

packages/material-ui-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/utils",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.4",
66
"description": "Material-UI Utils - Utility functions for Material-UI.",
77
"main": "./src/index.js",
88
"keywords": [

packages/material-ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@material-ui/core",
3+
"version": "4.0.0-alpha.8",
34
"private": false,
45
"author": "Material-UI Team",
5-
"version": "4.0.0-alpha.7",
66
"description": "React components that implement Google's Material Design.",
77
"keywords": [
88
"react",
@@ -37,9 +37,9 @@
3737
},
3838
"dependencies": {
3939
"@babel/runtime": "^7.2.0",
40-
"@material-ui/styles": "^4.0.0-alpha.6",
41-
"@material-ui/system": "^4.0.0-alpha.0",
42-
"@material-ui/utils": "^4.0.0-alpha.4",
40+
"@material-ui/styles": "^4.0.0-alpha.8",
41+
"@material-ui/system": "^4.0.0-alpha.8",
42+
"@material-ui/utils": "^4.0.0-alpha.8",
4343
"@types/react-transition-group": "^2.0.16",
4444
"clsx": "^1.0.2",
4545
"csstype": "^2.5.2",

0 commit comments

Comments
 (0)