react-autocomplete icon indicating copy to clipboard operation
react-autocomplete copied to clipboard

WAI-ARIA compliant React autocomplete (combobox) component

Results 91 react-autocomplete issues
Sort by recently updated
recently updated
newest added

Hello all! I would like to propose new default behavior when user moves mouse out of the dropdown box: remove highlighting from last selected item. People are asking why the...

tl;dr: We want to make `Autocomplete`'s public API better, and we need your input! Current API, for reference: ``` js value: any, onChange: func, onSelect: func, shouldItemRender: func, sortItems: func,...

help wanted
api
proposal

When an async function is loading the data: The itemNode is sometime null in this function : https://github.com/reactjs/react-autocomplete/blob/master/lib/Autocomplete.js#L245. In the ref function of the renderMenu member function (https://github.com/reactjs/react-autocomplete/blob/master/lib/Autocomplete.js#L437), the `ref`...

It makes sense to lock down the depenencies by checking in the `package-lock.json` and maybe even `yarn.lock` files. This could prevent non-repeatable builds further down the line. I suspect there...

hover on the last item of the menu, then type something that will shrink the menu. ![ignoreblurbug](https://user-images.githubusercontent.com/17611508/27674201-2f3573ba-5cd7-11e7-8050-2e1bba743a96.gif) i think when mouse leaves the menu without triggering the onMouseLeave callback it...

When highlighting autocomplete-option with mouse and selecting it with Enter. The input refuses to let go of focus.

Right now I can't do this in CSS: `input:focus + label { color: red; }` Because the output for the react-autocomplete contains the `input` element inside a `div`. Instead, I'd...

Some users may want to use the isOpen override selectively depending on the app state. Right now even if you set it as undefined or null the code treats that...