react-autocomplete
react-autocomplete copied to clipboard
WAI-ARIA compliant React autocomplete (combobox) component
Component lags when user holds down the down or up key under very large datasets. Easiest fix is to implement a throttle with 0 wait time, no visible difference in...
"react-autocomplete": "^1.8.1" "react": "^16.4.1" There is a small bug regarding the closing of an opened dropdown, when clicking outside the input. Steps to reproduce: 1. Focus the input 2. Fast...
The main code example is not working because is missing the `key` prop inside `renderItem` function. I've updated based on jsbin example. Hope this help Regards
See this video on why this is important: https://classroom.udacity.com/courses/ud891/lessons/8311490720/concepts/83106568490923# (Screen readers are currently not reading out the items in the combobox) To do: - [ ] Add id's to all...
I understand (I think) that blur is ignored when the mouse is over the menu, is there a way to close the menu with a custom button that is inside...
I'd like to be able to define the value of the `autoComplete` prop added to the input to improve the autofill feature, and in some cases disable it. Should adding...
I noticed that the ARIA-label is missing for the input field nor is there any way to set it even when using inputProps.
Tiny DX tweak - each time I've used this library I've been scrabbling around for a way to access the actual item returned rather than the value from `getItemValue`. Hopefully...