diff --git a/README.md b/README.md index 1d5ffc8a9..b19ca6ac4 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ When you're ready to use the Material Web Components in your web application: 1. Import the element definition into your HTML page: - `````` + `````` Or into your module script: diff --git a/demos/chips.html b/demos/chips.html index 5adb7eb24..b7c829548 100644 --- a/demos/chips.html +++ b/demos/chips.html @@ -42,7 +42,7 @@ limitations under the License. - +

choice

diff --git a/packages/base/README.md b/packages/base/README.md index ac310e96c..b7801df0a 100644 --- a/packages/base/README.md +++ b/packages/base/README.md @@ -2,4 +2,4 @@ > :warning: These components are a work in progress. They are pre-release and should be considered experimental, as they may undergo major changes before release. We are experimenting with alternate architectures and approaches with the goal of allowing us to bring the most correct and optimal implementation of Material components to the widest possible audiences. Visible progress may be slow, as this research is across teams and repositories so is not consistently reflected in commits to this codebase. :warning: -A suite of shared libraries and utility functions for [Material Components](https://material.io/components/)[Web Components](https://www.webcomponents.org/introduction) \ No newline at end of file +A suite of shared libraries and utility functions for [Material Components](https://material.io/components/) [Web Components](https://www.webcomponents.org/introduction) diff --git a/packages/button/README.md b/packages/button/README.md index 7c99f4d03..d874118b1 100644 --- a/packages/button/README.md +++ b/packages/button/README.md @@ -2,7 +2,7 @@ > :warning: These components are a work in progress. They are pre-release and should be considered experimental, as they may undergo major changes before release. We are experimenting with alternate architectures and approaches with the goal of allowing us to bring the most correct and optimal implementation of Material components to the widest possible audiences. Visible progress may be slow, as this research is across teams and repositories so is not consistently reflected in commits to this codebase. :warning: -A [Material Components](https://material.io/components/) icon implementation using [Web Components](https://www.webcomponents.org/introduction) +A [Material Components](https://material.io/components/) button implementation using [Web Components](https://www.webcomponents.org/introduction) ## Getting started @@ -61,4 +61,4 @@ A [Material Components](https://material.io/components/) icon implementation usi ## Supported Browsers The last 2 versions of all modern browsers are supported, including -Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also supported. \ No newline at end of file +Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also supported. diff --git a/packages/button/src/mwc-button.scss b/packages/button/src/mwc-button.scss index a805db945..42583bd80 100644 --- a/packages/button/src/mwc-button.scss +++ b/packages/button/src/mwc-button.scss @@ -15,8 +15,8 @@ See the License for the specific language governing permissions and limitations under the License. */ -@import "@material/button/mdc-button.scss"; -@import "@material/mwc-icon/src/_mwc-icon.scss"; +@import '@material/button/mdc-button.scss'; +@import '@material/mwc-icon/src/_mwc-icon.scss'; .material-icons { @extend %material-icons; diff --git a/packages/fab/src/mwc-fab.scss b/packages/fab/src/mwc-fab.scss index d45fcecb1..088aa14b7 100644 --- a/packages/fab/src/mwc-fab.scss +++ b/packages/fab/src/mwc-fab.scss @@ -14,8 +14,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -@import "@material/mwc-icon/src/_mwc-icon.scss"; -@import "@material/fab/mdc-fab.scss"; +@import '@material/mwc-icon/src/_mwc-icon.scss'; +@import '@material/fab/mdc-fab.scss'; .material-icons { @extend %material-icons; @@ -23,4 +23,4 @@ limitations under the License. :host { outline: none; -} \ No newline at end of file +} diff --git a/packages/icon/src/mwc-icon-host.scss b/packages/icon/src/mwc-icon-host.scss index 352c939e5..95f16e825 100644 --- a/packages/icon/src/mwc-icon-host.scss +++ b/packages/icon/src/mwc-icon-host.scss @@ -14,8 +14,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -@import "./_mwc-icon.scss"; +@import './_mwc-icon.scss'; :host { @extend %material-icons; -} \ No newline at end of file +} diff --git a/packages/ripple/src/ripple-directive.ts b/packages/ripple/src/ripple-directive.ts index 67d4f5ce4..6d360d47c 100644 --- a/packages/ripple/src/ripple-directive.ts +++ b/packages/ripple/src/ripple-directive.ts @@ -48,7 +48,7 @@ const applyRippleStyle = () => { part.appendInto(document.head!); part.setValue(style); part.commit(); -} +}; /** * Applied a ripple to the node specified by {surfaceNode}. diff --git a/packages/tab-indicator/src/mwc-tab-indicator.scss b/packages/tab-indicator/src/mwc-tab-indicator.scss index 97c596be6..527b1fd4e 100644 --- a/packages/tab-indicator/src/mwc-tab-indicator.scss +++ b/packages/tab-indicator/src/mwc-tab-indicator.scss @@ -16,8 +16,8 @@ limitations under the License. */ @import '@material/tab-indicator/mdc-tab-indicator.scss'; -@import "@material/mwc-icon/src/_mwc-icon.scss"; +@import '@material/mwc-icon/src/_mwc-icon.scss'; .material-icons { @extend %material-icons; -} \ No newline at end of file +} diff --git a/packages/tab/src/mwc-tab.scss b/packages/tab/src/mwc-tab.scss index 73695d22d..b525a9901 100644 --- a/packages/tab/src/mwc-tab.scss +++ b/packages/tab/src/mwc-tab.scss @@ -16,7 +16,7 @@ limitations under the License. */ @import '@material/tab/mdc-tab.scss'; -@import "@material/mwc-icon/src/_mwc-icon.scss"; +@import '@material/mwc-icon/src/_mwc-icon.scss'; .material-icons { @extend %material-icons; @@ -57,4 +57,4 @@ limitations under the License. /* Declare rule from mdc-tab again to pick up mixin override. */ .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label { @include mdc-rtl-reflexive-box(padding, left, 8px); -} \ No newline at end of file +}