wired-listbox
v1.0.0arrow_drop_downv1.0.0
v0.9.2
STATUS
Passing
DOWNLOADS
22
LICENSE
MIT
VISIBILITY
Public
PUBLISHED
2 years ago
SIZE
13 KB
A listbox control with Wired hand-drawn styling.
1 contributor
Like
Install wired-listbox as a package?
Copied
npm i @bit/wiredjs.wired-elements.wired-listbox
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.dev
Component Example 
modifieddraft
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
and packages in Bit or NPM to the example. any of the 1 million componentstoggle layout

chevron_left
chevron_right
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
Usage
Add wired-listbox to your project:
npm i wired-listbox
Import wired-listbox definition into your HTML page:
<script type="module" src="wired-listbox/lib/wired-listbox.js"></script>
Or into your module script:
import { WiredListbox } from "wired-listbox"
Use it in your web page:
<wired-listbox id="combo" selected="two">
<wired-item value="one">Number One</wired-item>
<wired-item value="two">Number Two</wired-item>
<wired-item value="three">Number Three</wired-item>
</wired-listbox>
<wired-listbox horizontal selected="two"
style="--wired-item-selected-color: darkred; --wired-item-selected-bg: pink;">
<wired-item value="one">Number One</wired-item>
<wired-item value="two">Number Two</wired-item>
<wired-item value="three">Number Three</wired-item>
</wired-listbox>
Properties
horizontal - Boolean indicated if the items are layed out horizontally. Default is false.
selected - Value of the selected item.
Custom CSS Variables
–wired-item-selected-bg Background color of the selected item.
–wired-item-selected-color Text color of the selected item.
Events
selected event fired when an item is selected by the user.