Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit b73ee49

Browse files
committed
v8.0.0
1 parent 4bf1f59 commit b73ee49

File tree

8 files changed

+97
-7
lines changed

8 files changed

+97
-7
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
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+
# [8.0.0](https://github.com/smooth-code/smooth-ui/compare/v7.1.1...v8.0.0) (2019-01-16)
7+
8+
9+
### Bug Fixes
10+
11+
* update TS definitions ([#92](https://github.com/smooth-code/smooth-ui/issues/92)) ([5dad4e2](https://github.com/smooth-code/smooth-ui/commit/5dad4e2))
12+
* **types:** Textarea types typos ([#94](https://github.com/smooth-code/smooth-ui/issues/94)) ([f85b52d](https://github.com/smooth-code/smooth-ui/commit/f85b52d))
13+
14+
15+
### Features
16+
17+
* support emotion 10 & remove hacks ([#93](https://github.com/smooth-code/smooth-ui/issues/93)) ([d311640](https://github.com/smooth-code/smooth-ui/commit/d311640))
18+
* **system:** add textTransform ([753eecd](https://github.com/smooth-code/smooth-ui/commit/753eecd))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* `OriginalComponent.withComponent(NewComponent)` is replaced by `uiAs(OriginalComponent, NewComponent)`
24+
25+
`as={NewComponent}` is replaced by `uiAs={NewComponent}`
26+
27+
`globalStyle()` is now replaced by `Normalize` component
28+
29+
30+
31+
32+
633
## [7.1.1](https://github.com/smooth-code/smooth-ui/compare/v7.1.0...v7.1.1) (2019-01-11)
734

835

lerna.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"lerna": "3.3.0",
3-
"packages": ["packages/*"],
4-
"version": "7.1.1",
3+
"packages": [
4+
"packages/*"
5+
],
6+
"version": "8.0.0",
57
"npmClient": "yarn",
68
"useWorkspaces": true
79
}

packages/core-em/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
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+
# [8.0.0](https://github.com/smooth-code/smooth-ui/compare/v7.1.1...v8.0.0) (2019-01-16)
7+
8+
9+
### Features
10+
11+
* support emotion 10 & remove hacks ([#93](https://github.com/smooth-code/smooth-ui/issues/93)) ([d311640](https://github.com/smooth-code/smooth-ui/commit/d311640))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* `OriginalComponent.withComponent(NewComponent)` is replaced by `uiAs(OriginalComponent, NewComponent)`
17+
18+
`as={NewComponent}` is replaced by `uiAs={NewComponent}`
19+
20+
`globalStyle()` is now replaced by `Normalize` component
21+
22+
23+
24+
25+
626
## [7.1.1](https://github.com/smooth-code/smooth-ui/compare/v7.1.0...v7.1.1) (2019-01-11)
727

828
**Note:** Version bump only for package @smooth-ui/core-em

packages/core-em/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@smooth-ui/core-em",
33
"description": "Modern React UI Library",
4-
"version": "7.1.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"emotion",
77
"ui",
@@ -26,7 +26,7 @@
2626
"access": "public"
2727
},
2828
"dependencies": {
29-
"@smooth-ui/system": "^7.1.1",
29+
"@smooth-ui/system": "^8.0.0",
3030
"polished": "^2.3.3",
3131
"prop-types": "^15.6.2",
3232
"react-focus-lock": "^1.17.6",

packages/core-sc/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
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+
# [8.0.0](https://github.com/smooth-code/smooth-ui/compare/v7.1.1...v8.0.0) (2019-01-16)
7+
8+
9+
### Features
10+
11+
* support emotion 10 & remove hacks ([#93](https://github.com/smooth-code/smooth-ui/issues/93)) ([d311640](https://github.com/smooth-code/smooth-ui/commit/d311640))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* `OriginalComponent.withComponent(NewComponent)` is replaced by `uiAs(OriginalComponent, NewComponent)`
17+
18+
`as={NewComponent}` is replaced by `uiAs={NewComponent}`
19+
20+
`globalStyle()` is now replaced by `Normalize` component
21+
22+
23+
24+
25+
626
## [7.1.1](https://github.com/smooth-code/smooth-ui/compare/v7.1.0...v7.1.1) (2019-01-11)
727

828
**Note:** Version bump only for package @smooth-ui/core-sc

packages/core-sc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@smooth-ui/core-sc",
33
"description": "Modern React UI Library",
4-
"version": "7.1.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"styled-components",
77
"ui",
@@ -26,7 +26,7 @@
2626
"access": "public"
2727
},
2828
"dependencies": {
29-
"@smooth-ui/system": "^7.1.1",
29+
"@smooth-ui/system": "^8.0.0",
3030
"polished": "^2.3.3",
3131
"prop-types": "^15.6.2",
3232
"react-focus-lock": "^1.17.6",

packages/system/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [8.0.0](https://github.com/smooth-code/smooth-ui/compare/v7.1.1...v8.0.0) (2019-01-16)
7+
8+
9+
### Features
10+
11+
* support emotion 10 & remove hacks ([#93](https://github.com/smooth-code/smooth-ui/issues/93)) ([d311640](https://github.com/smooth-code/smooth-ui/commit/d311640))
12+
* **system:** add textTransform ([753eecd](https://github.com/smooth-code/smooth-ui/commit/753eecd))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* `OriginalComponent.withComponent(NewComponent)` is replaced by `uiAs(OriginalComponent, NewComponent)`
18+
19+
`as={NewComponent}` is replaced by `uiAs={NewComponent}`
20+
21+
`globalStyle()` is now replaced by `Normalize` component

packages/system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@smooth-ui/system",
33
"description": "Modern style system for styled-components & emotion.",
4-
"version": "7.1.1",
4+
"version": "8.0.0",
55
"keywords": [
66
"emotion",
77
"styled-components",

0 commit comments

Comments
 (0)