material-components-web-components

Material Design Web Components

Github stars Tracking Chart

Material Web Components Test Status

IMPORTANT: The Material Web Components are a work in progress and subject to major changes until 1.0 release.

The Material Web Components (MWC) are a collection of Web Components maintained by Google that implement Material Design.

API demos

Sandbox demo on Glitch

Contributing Guide

Components, Component, Status, Issues, ----------, ------, ------, <mwc-button>, Published on npm, Issues, <mwc-bottom-app-bar>, Start in Q3-2020, Issues, <mwc-card>, Start in Q3-2020, Issues, <mwc-checkbox>, Published on npm, Issues, <mwc-chip>, Start in Q3-2020, Issues, <mwc-circular-progress>, Start in Q3-2020, Issues, <mwc-data-table>, Start in Q3-2020, Issues, <mwc-dialog>, Published on npm, Issues, <mwc-drawer>, Published on npm, Issues, <mwc-fab>, Published on npm, Issues, <mwc-formfield>, Published on npm, Issues, <mwc-icon-button-toggle>, Published on npm, Issues, <mwc-icon-button>, Published on npm, Issues, <mwc-icon>, Published on npm, Issues, <mwc-linear-progress>, Published on npm, Issues, <mwc-list>, Published on npm, Issues, <mwc-menu>, Published on npm, Issues, <mwc-radio>, Published on npm, Issues, <mwc-select>, Published on npm, Issues, <mwc-slider>, Published on npm, Issues, <mwc-snackbar>, Published on npm, Issues, <mwc-switch>, Published on npm, Issues, <mwc-tab-bar>, Published on npm, Issues, <mwc-tab>, Published on npm, Issues, <mwc-textarea>, Published on npm, Issues, <mwc-textfield>, Published on npm, Issues, <mwc-top-app-bar-fixed>, Published on npm, Issues, <mwc-top-app-bar>, Published on npm, Issues

Quick start

1) Install

Install a component from NPM:

npm install @material/mwc-button @webcomponents/webcomponentsjs

2) Write HTML and JavaScript

Import the component's JavaScript module, use the component in your HTML, and control it with JavaScript, just like you would with a built-in element such as <button>:

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My Example App</title>

    <!-- Add support for Web Components to older browsers. -->
    <script src="./node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>

    <!-- Your application must load the Roboto and Material Icons fonts. -->
    <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet">
  </head>
  <body>
    <!-- Use Web Components in your HTML like regular built-in elements. -->
    <mwc-button id="myButton" label="Click Me!" raised></mwc-button>

    <!-- The Material Web Components use standard JavaScript modules. -->
    <script type="module">

      // Importing this module registers <mwc-button> as an element that you
      // can use in this page.
      //
      // Note this import is a bare module specifier, so it must be converted
      // to a path using a server such as es-dev-server.
      import '@material/mwc-button';

      // Standard DOM APIs work with Web Components just like they do for
      // built-in elements.
      const button = document.querySelector('#myButton');
      button.addEventListener('click', () => {
        alert('You clicked!');
      });
    </script>
  </body>
</html>

3) Serve

Serve your HTML with any server or build process that supports bare module specifier resolution (see next section):

npm install -g es-dev-server
es-dev-server --node-resolve

Bare module specifiers

The Material Web Components are published as standard JavaScript modules that use bare module specifiers. Bare module specifiers are not yet supported by browsers, so it is necessary to use a tool that transforms
them to a path (for example from @material/mwc-button to ./node_modules/@material/mwc-button/mwc-button.js).

Two great choices for tools that do this are:

Fonts

Most applications should include the following tags in their main HTML file to ensure that text and icons
render correctly:

<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet">

The Material Web Components default to using the Roboto font for text, and the Material Icons font for icons. These fonts
are not automatically loaded, so it is the application's responsiblity to ensure that they are loaded.

Note that if you load the Material Icons font in a different way to the recommendation shown above, be sure to include font-display: block in your @font-face CSS rule. This prevents icons from initially displaying their raw ligature text before the font has loaded. The <link> tag recommended above automaticaly handles this setting.

Supporting older browsers

The Material Web Components use modern browser features that are natively supported in the latest versions of Chrome, Safari, Firefox, and Edge. IE11 and some older versions of other browsers are also supported, but they require additional build steps and polyfills.

Web Components

To support Web Components in IE11 and other older browsers, install the Web Components Polyfills:

npm install @webcomponents/webcomponentsjs

And include the webcomponents-loader.js script in your HTML, which detects when polyfills are needed and loads them automatically:

<!-- Add support for Web Components to IE11. -->
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>

Modules

To support IE11 or other older browsers that do not support JavaScript modules, you must transform JavaScript modules to classic JavaScript scripts. Rollup is a popular tool that can consume JavaScript modules and produce a number of other formats, such as AMD. Be sure to use the rollup-plugin-node-resolve plugin to resolve bare module specifiers, as mentioned above.

ES2015

If you support IE11 or other older browsers that do not support the latest version of JavaScript, you must transpile your application to ES5. Babel is a popular tool that does this. You can integrate Babel transpilation into a Rollup configuration using rollup-plugin-babel.

Contributing

Clone and setup the repo:

git clone git@github.com:material-components/material-components-web-components.git mwc
cd mwc
npm install
npm run build

View the demos:

npm run dev
http://127.0.0.1:8001/demos

Run all tests:

npm run test

Run tests for a specific component:

npm run test -- --packages=mwc-button

Run benchmarks for a specific component:

npm run test:bench -- --package list

Advanced developer workflow:

npm install

# (persistent) build source files on change
npm run watch

# another terminal (persistent) - viewing auto-reload demos
npm run dev -- --watch -p <optional port>

# for testing:
# another terminal (persistent) - build tests (must run after normal watch)
npm run watch:tests

# another terminal (persistent) - debug tests
npm run test:debug -- --autoWatch --packages <comma sepaarated package names> # e.g. mwc-switch,mwc-text*

Overview

Name With Ownermaterial-components/material-web
Primary LanguageTypeScript
Program languageTypeScript (Language Count: 5)
Platform
License:Apache License 2.0
Release Count72
Last Release Namev1.4.1 (Posted on )
First Release Namev0.1.0 (Posted on )
Created At2018-03-27 21:46:51
Pushed At2024-05-03 23:43:26
Last Commit At
Stargazers Count8.7k
Watchers Count198
Fork Count812
Commits Count4.8k
Has Issues Enabled
Issues Count1309
Issue Open Count105
Pull Requests Count2094
Pull Requests Open Count26
Pull Requests Close Count1986
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top