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

It appears this component cannot be used in uncontrolled fashion, and requires that you specify `value=` and control it from outside state. I'm curious if this has to be the...

this build's on @jordanlapointe 's changes and updates to send the correct autocomplete value

`getItemValue()` and `renderItem()` seem redundant. Both are used to return what is displayed for each item. Why are they both necessary?

if you pass an id to the inputProps, when you click on an option in the menu, firefox has a habit of keeping the menu open instead of closing it....

I added a new optional prop isItemAutoHighlightMatch that allows injecting a function to determine whether an item should be autohighlighted. The default prop implementation checks whether the value of the...

If I set the "renderItem" prop to be a component that has been imported, then clicking on the items in the menu does not trigger the onSelect method. The items...

When the dropdown is open and the input has focus, on clicking outside the input doesn't trigger blur() event on the input field. Found this issue in mobile browsers.

Currently, react-autocomplete inputs are set to have an HTML autocomplete attribute value of "off". This is smart for preventing a stacking of autocomplete UIs, but can cause problems in some...

When the dropdown is open, pressing tab just closes it without doing anything. With most other autocompletion components I've used, tab selects the currently active option, then moves to the...

Adds the ability to press Tab to select the currently highlighted option. This is consistent with most other autocompletion components (see https://jedwatson.github.io/react-select/, http://react-autosuggest.js.org/, https://harvesthq.github.io/chosen/, https://jqueryui.com/autocomplete/, http://easyautocomplete.com/, etc). I've added a...