A ARIA compliant React combobox component
npm install react-combobox   

react-autocomplete (combobox)
=============================
[WAI-ARIA][wai-aria] accessible [React][react] autocomplete component (combobox).
This implementation is almost entirely derived from rpflorence/react-autocomplete, but has
changed enough to earn its own repo. But it's totally a WIP and shouldn't be used for production yet.
Installation
------------
npm install react-combobox
WIP
---
This is not production ready, but I welcome use-cases opened in the
issues :)
Demo
----
http://rackt.github.io/react-autocomplete/example/
Usage
-----
``js
var Autocomplete = require('react-autocomplete');
// its actually called a combobox, but noboby searches for that
var Combobox = Autocomplete.Combobox;
var Option = Autocomplete.Option;
var comboboxinItUp = (
// Just like , this component is a
// composite component. This gives you complete control over
// What is displayed inside the
// Start with the
onSelect={handleSelect}
autocomplete="both"
>
// onInput is called when the user is typing, it gets passed theonSelect
// value from the input. This is your chance to filter the Options
// and redraw. More realistically, you'd make a request to get data
// and then redraw when it lands.
//
// is called when the user makes a selection, you probablyautocomplete
// want to reset the Options to your full dataset again, or maybe
// deal with the value and then clear it out if this is used to
// populate a list.
//
// defaults to 'both'. 'inline' will autocomplete the
// first matched Option into the input value, 'list' will display a
// list of choices, and of course, both does both.
// When this option is selected, onSelect will be called with the"foo"
// value .
// label is the text to display in the input when the Option is``
// selected. It defaults to the content of the Option just like a
// real
);
This is not realistic code, check out the examples directory for a real
implementation.
[wai-aria]:http://www.w3.org/TR/wai-aria/roles#combobox
[react]:http://facebook.github.io/react/