react-autocomplete
react-autocomplete copied to clipboard
WAI-ARIA compliant React autocomplete (combobox) component
Maybe need to remove react-hmre preset.
The internal callback is always called even if I define an external callback in **_inputProps_** I would like to only call the external callback. https://github.com/reactjs/react-autocomplete/blob/41388f7d7760bf6cf38e7946e43d4fddd9c7c176/lib/Autocomplete.js#L555
Currently one cannot arrow through and hit return on an item when the input is an input type `email` because of [this line](https://github.com/reactjs/react-autocomplete/blob/41388f7d7760bf6cf38e7946e43d4fddd9c7c176/lib/Autocomplete.js#L350). `setSelectionRange` is only supported for [text, search,...
This PR uses a span as the wrapping element instead of a div. This makes it possible to use the component inside of elements which prohibit the usage of block-elements...
Can I make it possible to update, conditionally "event.target.value" when I select an item by arrows? For example when i typing word "hello" and press down or up, I see...
Basically a 1:1 port of the existing PR #186 but based on the more recent ES6-ish codebase, with the `selectOnTab` prop optional and defaulted to `false`, and without the extra...
The latest React discourages using `componentWillMount` and `componentWillReceiveProps`. https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html