react-typeahead
react-typeahead copied to clipboard
Pure react-based typeahead and typeahead-tokenizer
Otherwise if you click off the typeahead, the list remains visible
I'm not sure if this is how it was designed to work or not; however, when I provide a defaultValue in props, Typeahead starts up with an open list if...
Since react-typeahead is a react library, this pull request helps the user to specifiy a react class in replacement of the standard input html tag, this pull request is not...
would be better if the typeahead highlights the matched strings in the suggestions list
Hey there... I'm trying to get the onKeyDown event to fire. My component looks like this: ``` javascript export default React.createClass({ getDefaultProps() { return { }; }, keyDown(){ alert('blur!'); },...
I may be overlooking this but with a quick glance: https://github.com/fmoo/react-typeahead/blob/7702336449eba56708ed7ae3d96c09e555a76dd8/src/typeahead/selector.js#L63-L67 It looks like display string determines key. I don't think this should be the only behavior -- I propose...
Currently I'm able to search for an option already added, although I cannot add it twice. Is there a solution to hide an option from the options array, once it...
Hi, I would like to provide the tokenizer options prop with an array consisting of key/value paired objects, like: [{name: "MyName", value: "123"}]. However, I only want to display the...
we should set a custom class on the text entry or typeahead when a selection has been made. This makes it more obvious when a value has been selected vs...