Skip to content

Commit 8f1e7e1

Browse files
Merge pull request #2368 from material-components:release-0.21.0
PiperOrigin-RevId: 371429188
2 parents 0875e89 + b832b7d commit 8f1e7e1

File tree

35 files changed

+104
-99
lines changed

35 files changed

+104
-99
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## Unreleased
7+
<!-- ## Unreleased -->
8+
9+
## [v0.21.0] - 2021-04-30
810

911
### Changed
12+
1013
- all
1114
- Upgrade typescript to 4.1.4
1215
- Change all fields from `private` to `protected`
@@ -30,6 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3033
contexts e.g. dialog.
3134

3235
### Fixed
36+
3337
- all
3438
- Format sass files with prettier
3539
- `circular-progress`
@@ -60,6 +64,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6064
- Clean up fixture typing so that tests work when reordered
6165

6266
### Added
67+
6368
- `base`
6469
- Add `@ariaProperty` decorator
6570
- `checkbox`

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
]
1212
}
1313
},
14-
"version": "0.20.0"
14+
"version": "0.21.0"
1515
}

packages/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-base",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "",
55
"main": "base-element.js",
66
"module": "base-element.js",

packages/button/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-button",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design button web component",
55
"keywords": [
66
"material design",
@@ -16,8 +16,8 @@
1616
},
1717
"license": "Apache-2.0",
1818
"dependencies": {
19-
"@material/mwc-icon": "^0.20.0",
20-
"@material/mwc-ripple": "^0.20.0",
19+
"@material/mwc-icon": "^0.21.0",
20+
"@material/mwc-ripple": "^0.21.0",
2121
"lit-element": "~2.4.0",
2222
"lit-html": "^1.1.2",
2323
"tslib": "^2.0.1"

packages/checkbox/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-checkbox",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design checkbox web component",
55
"keywords": [
66
"material design",
@@ -16,8 +16,8 @@
1616
},
1717
"license": "Apache-2.0",
1818
"dependencies": {
19-
"@material/mwc-base": "^0.20.0",
20-
"@material/mwc-ripple": "^0.20.0",
19+
"@material/mwc-base": "^0.21.0",
20+
"@material/mwc-ripple": "^0.21.0",
2121
"lit-element": "~2.4.0",
2222
"lit-html": "^1.1.2",
2323
"tslib": "^2.0.1"

packages/circular-progress-four-color/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-circular-progress-four-color",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design circular progress web component",
55
"keywords": [
66
"material design",
@@ -17,8 +17,8 @@
1717
"license": "Apache-2.0",
1818
"dependencies": {
1919
"@material/circular-progress": "=12.0.0-canary.197f64fa2.0",
20-
"@material/mwc-base": "^0.20.0",
21-
"@material/mwc-circular-progress": "^0.20.0",
20+
"@material/mwc-base": "^0.21.0",
21+
"@material/mwc-circular-progress": "^0.21.0",
2222
"@material/theme": "=12.0.0-canary.197f64fa2.0",
2323
"lit-element": "~2.4.0",
2424
"tslib": "^2.0.1"

packages/circular-progress/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-circular-progress",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design circular progress web component",
55
"keywords": [
66
"material design",
@@ -17,7 +17,7 @@
1717
"license": "Apache-2.0",
1818
"dependencies": {
1919
"@material/circular-progress": "=12.0.0-canary.197f64fa2.0",
20-
"@material/mwc-base": "^0.20.0",
20+
"@material/mwc-base": "^0.21.0",
2121
"@material/theme": "=12.0.0-canary.197f64fa2.0",
2222
"lit-element": "~2.4.0",
2323
"lit-html": "^1.1.2",

packages/dialog/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-dialog",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design dialog web component",
55
"keywords": [
66
"material design",
@@ -18,8 +18,8 @@
1818
"dependencies": {
1919
"@material/dialog": "=12.0.0-canary.197f64fa2.0",
2020
"@material/dom": "=12.0.0-canary.197f64fa2.0",
21-
"@material/mwc-base": "^0.20.0",
22-
"@material/mwc-button": "^0.20.0",
21+
"@material/mwc-base": "^0.21.0",
22+
"@material/mwc-button": "^0.21.0",
2323
"blocking-elements": "^0.1.0",
2424
"lit-element": "~2.4.0",
2525
"lit-html": "^1.1.2",

packages/drawer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-drawer",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material Design drawer web component",
55
"keywords": [
66
"material design",
@@ -17,7 +17,7 @@
1717
"license": "Apache-2.0",
1818
"dependencies": {
1919
"@material/drawer": "=12.0.0-canary.197f64fa2.0",
20-
"@material/mwc-base": "^0.20.0",
20+
"@material/mwc-base": "^0.21.0",
2121
"blocking-elements": "^0.1.0",
2222
"lit-element": "~2.4.0",
2323
"lit-html": "^1.1.2",

packages/elevation-overlay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-elevation-overlay",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Material design floating action button component",
55
"keywords": [
66
"material design",

0 commit comments

Comments
 (0)