material-components-web-components

Material Design Web Components

Github星跟踪图

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*

主要指标

概览
名称与所有者material-components/material-web
主编程语言TypeScript
编程语言TypeScript (语言数: 5)
平台
许可证Apache License 2.0
所有者活动
创建于2018-03-27 21:46:51
推送于2025-08-13 19:55:45
最后一次提交
发布数78
最新版本名称v2.3.0 (发布于 )
第一版名称v0.1.0 (发布于 )
用户参与
星数10.3k
关注者数203
派生数1k
提交数5k
已启用问题?
问题数1366
打开的问题数117
拉请求数2185
打开的拉请求数38
关闭的拉请求数2013
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?