material-web/packages/checkbox
Daniel Freedman b98661d064 v0.3.4
2018-12-13 12:39:06 -08:00
..
src make all event handlers private 2018-10-16 15:31:28 -07:00
package.json v0.3.4 2018-12-13 12:39:06 -08:00
README.md Updated links to examples for mwc-checkbox documentation 2018-10-10 09:37:29 +02:00
tsconfig.json Convert mwc-checkbox to typescript 2018-09-21 17:44:10 -07:00

mwc-checkbox

A Material Components icon implementation using Web Components

Getting started

  • The easiest way to try out mwc-checkbox is to use one of these online tools:

  • You can also copy this HTML file into a local file and run it in any browser that supports JavaScript Modules.

  • When you're ready to use mwc-checkbox in a project, install it via npm. To run the project in the browser, a module-compatible toolctain is required. We recommend installing the Polymer CLI and using its development server as follows.

    1. Ensure the webcomponents polyfills are included in your HTML page

      • Install webcomponents polyfills

        npm i @webcomponents/webcomponentsjs

      • Add webcomponents polyfills to your HTML page

        <script src="@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>

    2. Add mwc-checkbox to your project:

      npm i @material/mwc-checkbox

    3. Import the mwc-checkbox definition into your HTML page:

      <script type="module" src="@material/mwc-checkbox/index.js"></script>

      Or into your module script:

      import {Checkbox} from "@material/mwc-checkbox"

    4. Create an instance of mwc-checkbox in your HTML page, or via any framework that supports rendering Custom Elements:

      <mwc-checkbox></mwc-checkbox>

    5. Install the Polymer CLI:

      npm i -g polymer-cli

    6. Run the development server and open a browser pointing to its URL:

      polymer serve

    mwc-checkbox is published on npm using JavaScript Modules. This means it can take advantage of the standard native JavaScript module loader available in all current major browsers.

    However, since mwc-checkbox uses npm convention to reference dependencies by name, a light transform to rewrite specifiers to URLs is required to get it to run in the browser. The polymer-cli's development server polymer serve automatically handles this transform.

    Tools like WebPack and Rollup can also be used to serve and/or bundle mwc-checkbox.

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.