Directory

wired-toggle - Vaadin Add-on Directory

A toggle button with a sketchy hand drawn look wired-toggle - Vaadin Add-on Directory
**[ This description is mirrored from README.md at [github.com/wiredjs/wired-toggle](https://github.com//wiredjs/wired-toggle/blob/v0.5.0/README.md) on 2019-05-10 ]** ![wired radio](https://wiredjs.github.io/wired-elements/images/toggle.png) # wired-toggle Hand-drawn sketchy toggle button web component. For demo and view the complete set of wired-elememts: [wiredjs.com](http://wiredjs.com/) Learn about web components [here](https://www.webcomponents.org/introduction). ## Usage Add wired-toggle to your project: ``` npm i wired-toggle ``` Import wired-toggle definition into your HTML page: ```html ``` Or into your module script: ```javascript import { WiredToggle } from "wired-toggle" ``` Use it in your web page: ```html ``` ### Properties **checked** - Checked state (boolean). **disabled** - disables the toggle button. Default value is false. ### Custom CSS Variables **--wired-toggle-off-color** Color of the knob when in off (false) position. **--wired-toggle-on-color** Color of the knob when in on (true) position. ### Events **change** event fired when state of the toggle is changed by the user.