paper-toggle-button
A Material Design toggle button
<paper-toggle-button>
<paper-toggle-button>
provides a ON/OFF switch that user can toggle the state
by tapping or by dragging the switch.
See: Documentation, Demo.
Usage
Installation
npm install --save @polymer/paper-toggle-button
In an HTML file
<html>
<head>
<script type="module">
import '@polymer/paper-toggle-button/paper-toggle-button.js';
</script>
</head>
<body>
<paper-toggle-button checked></paper-toggle-button>
<paper-toggle-button disabled></paper-toggle-button>
</body>
</html>
In a Polymer 3 element
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import '@polymer/paper-toggle-button/paper-toggle-button.js';
class ExampleElement extends PolymerElement {
static get template() {
return html`
<paper-toggle-button checked></paper-toggle-button>
<paper-toggle-button disabled></paper-toggle-button>
`;
}
}
customElements.define('example-element', ExampleElement);
Contributing
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
Installation
git clone https://github.com/PolymerElements/paper-toggle-button
cd paper-toggle-button
npm install
npm install -g polymer-cli
Running the demo locally
polymer serve --npm
open http://127.0.0.1:<port>/demo/
Running the tests
polymer test --npm
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Dependencies
- @polymer/polymer#^3.0.0
- @polymer/iron-checked-element-behavior#^3.0.0-pre.26
- @polymer/paper-behaviors#^3.0.0-pre.27
- @polymer/paper-styles#^3.0.0-pre.26
- Released
- 2018-09-14
- Maturity
- IMPORTED
- License
- BSD 3-clause "New" or "Revised" License
Compatibility
- Framework
- Polymer 1.0+
- Polymer 3.0+
- Polymer 2.0+ in 2.1.1
- Browser
- Browser Independent