Directory

wired-listbox - Vaadin Add-on Directory

A listbox control with Wired hand-drawn styling. The selected item is highlighted. Can be vertical (default) or horizontal. wired-listbox - Vaadin Add-on Directory
**[ This description is mirrored from README.md at [github.com/wiredjs/wired-listbox](https://github.com//wiredjs/wired-listbox/blob/v0.5.0/README.md) on 2019-05-22 ]** ![wired listbox](https://wiredjs.github.io/wired-elements/images/listbox.png) # wired-listbox A listbox control with Wired hand-drawn styling. The selected item is highlighted. Can be vertical (default) or horizontal. 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-listbox to your project: ``` npm i wired-listbox ``` Import wired-listbox definition into your HTML page: ```html ``` Or into your module script: ```javascript import { WiredListbox } from "wired-listbox" ``` Use it in your web page: ```html ``` ### Properties **horizontal** - Boolean indicated if the items are layed out horizontally. Default is false. **selected** - Name of the selected item. ### Custom CSS Variables **--wired-combo-item-selected-bg** Background color of the selected item. **--wired-combo-item-hover-bg** Color of item in the dropdown on hover. ### Events **selected** event fired when an item is selected by the user.