Skip to content

Commit f7e3760

Browse files
asynclizcopybara-github
authored andcommitted
feat: add custom property support for select, textfield, and notched outline
BREAKING_CHANGE: select's `shape-radius()` mixin has been renamed to `filled-shape-radius()` PiperOrigin-RevId: 319101869
1 parent 3b47995 commit f7e3760

File tree

44 files changed

+112
-165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+112
-165
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ 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+
### Changed
10+
11+
- `notched-outline`
12+
- **BREAKING** removed border-radius and leading-width custom properties in favor of `--mdc-shape-small`
13+
- `textarea`
14+
- **BREAKING** shape is now customized with `--mdc-shape-small`
15+
- `textfield`
16+
- **BREAKING** shape is now customized with `--mdc-shape-small`
817

918
## [v0.16.0] - 2020-06-29
1019

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.16.1",
3+
"version": "0.15.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.16.1",
3+
"version": "0.15.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.16.1",
20-
"@material/mwc-ripple": "^0.16.1",
19+
"@material/mwc-icon": "^0.15.0",
20+
"@material/mwc-ripple": "^0.15.0",
2121
"lit-element": "^2.3.0",
2222
"lit-html": "^1.1.2",
2323
"tslib": "^1.10.0"

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.16.1",
3+
"version": "0.15.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.16.1",
20-
"@material/mwc-ripple": "^0.16.1",
19+
"@material/mwc-base": "^0.15.0",
20+
"@material/mwc-ripple": "^0.15.0",
2121
"lit-element": "^2.3.0",
2222
"lit-html": "^1.1.2",
2323
"tslib": "^1.10.0"

packages/dialog/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-dialog",
3-
"version": "0.16.1",
3+
"version": "0.15.0",
44
"description": "Material Design dialog web component",
55
"keywords": [
66
"material design",
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@material/dialog": "=8.0.0-canary.c678a9d34.0",
2020
"@material/dom": "=8.0.0-canary.c678a9d34.0",
21-
"@material/mwc-base": "^0.16.1",
21+
"@material/mwc-base": "^0.15.0",
2222
"blocking-elements": "^0.1.0",
2323
"lit-element": "^2.3.0",
2424
"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.16.1",
3+
"version": "0.15.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": "=8.0.0-canary.c678a9d34.0",
20-
"@material/mwc-base": "^0.16.1",
20+
"@material/mwc-base": "^0.15.0",
2121
"blocking-elements": "^0.1.0",
2222
"lit-element": "^2.3.0",
2323
"lit-html": "^1.1.2",

packages/fab/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-fab",
3-
"version": "0.16.1",
3+
"version": "0.15.0",
44
"description": "Material design floating action button component",
55
"keywords": [
66
"material design",
@@ -16,16 +16,16 @@
1616
},
1717
"license": "Apache-2.0",
1818
"dependencies": {
19-
"@material/mwc-ripple": "^0.16.1",
19+
"@material/mwc-ripple": "^0.15.0",
2020
"lit-element": "^2.3.0",
2121
"lit-html": "^1.1.2",
2222
"tslib": "^1.10.0"
2323
},
2424
"devDependencies": {
2525
"@material/animation": "=8.0.0-canary.c678a9d34.0",
2626
"@material/fab": "=8.0.0-canary.c678a9d34.0",
27-
"@material/mwc-base": "^0.16.1",
28-
"@material/mwc-icon": "^0.16.1",
27+
"@material/mwc-base": "^0.15.0",
28+
"@material/mwc-icon": "^0.15.0",
2929
"@material/ripple": "=8.0.0-canary.c678a9d34.0",
3030
"@material/rtl": "=8.0.0-canary.c678a9d34.0"
3131
},

packages/floating-label/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-floating-label",
3-
"version": "0.16.1",
3+
"version": "0.15.0",
44
"description": "Material Design floating label web component",
55
"keywords": [
66
"material design",

packages/formfield/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-formfield",
3-
"version": "0.16.1",
3+
"version": "0.15.0",
44
"description": "Material Design formfield web component",
55
"keywords": [
66
"material design",
@@ -17,7 +17,7 @@
1717
"license": "Apache-2.0",
1818
"dependencies": {
1919
"@material/form-field": "=8.0.0-canary.c678a9d34.0",
20-
"@material/mwc-base": "^0.16.1",
20+
"@material/mwc-base": "^0.15.0",
2121
"lit-element": "^2.3.0",
2222
"lit-html": "^1.1.2",
2323
"tslib": "^1.10.0"

packages/icon-button-toggle/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@material/mwc-icon-button-toggle",
3-
"version": "0.16.1",
3+
"version": "0.15.0",
44
"description": "Material Design icon button toggle",
55
"keywords": [
66
"material design",
@@ -17,9 +17,9 @@
1717
"license": "Apache-2.0",
1818
"dependencies": {
1919
"@material/icon-button": "=7.0.0-canary.b9776b1d0.0",
20-
"@material/mwc-base": "^0.16.1",
21-
"@material/mwc-icon-button": "^0.16.1",
22-
"@material/mwc-ripple": "^0.16.1",
20+
"@material/mwc-base": "^0.15.0",
21+
"@material/mwc-icon-button": "^0.15.0",
22+
"@material/mwc-ripple": "^0.15.0",
2323
"lit-element": "^2.3.0",
2424
"tslib": "^1.10.0"
2525
},

0 commit comments

Comments
 (0)