react-autocomplete
react-autocomplete copied to clipboard
WAI-ARIA compliant React autocomplete (combobox) component
fixes #239, #266 Allows us to specify a custom comparison function to evaluate matches. In the same way the flexibility is provided to fully control the options list via your...
When using the keyboard to scroll items into view the highlighted item will change unexpectedly. It seems as though the item where the cursor is resting is re-highlighted when the...
I've just read your complain on [twitter](https://twitter.com/ryanflorence/status/631901571777847297), and inspired by [react-radio-group](https://github.com/chenglou/react-radio-group), I've come up with the following API: ``` jsx queryOptions(query).then(next) } children={(state, controls)=> /* `controls` provides callbacks to control...
If we put Autocomplete inside label tag, we will get funny behavior. When we click on item in the list, click event propagates to label tag and input tag gets...
Hi there, currently it isn't possible to render an item, so that the matching part is highlighted (e.g. bold formatted). The function of the "renderItem" param needs an additional parameter...
I added the event as the last prop, which breaks convention (onChange passes the event as the first prop) but keeps the interface backwards compatible. The main reason for this...
Set the position of menu as "absolute" so the menu can scroll and position correctly in dialog/modal. This is also a very common way to style dropdown menu.
This is a copy of the changes from #75 without the conflicts
The 'fixed' approach has a major downside: The 'fixed' referential may not be the document when a parent node has CSS transforms. But getBoundedClientRect() remains relative to the document no...
It seems to be mostly working out of the box, but I ran into one bug--the Enter key down handler pulls the highlighted item out of the list with square...