A lightweight selectbox replacement. Built entirely with components, no jQuery or other frameworks. Comes with search functionality, keyboard navigation and other cool stuff.
$ component install eivindfjeldstad/combobox
var Combo = require('combobox');
var combo = Combo({ search: true });
combo.group('Group 1')
.add(1, 'Option 1')
.add(2, 'Option 2');
combo.appendTo(document.body);
TODO
Make it easier to replace existing select elements
MIT