You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ROADMAP.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
This document defines a manifesto and the main Roadmap 🚵 ideas for [React Toolbox](www.react-toolbox.com). It's not a fixed document and of course it's open to change. You can leave your feedback in [this gist](https://gist.github.com/javivelasco/259d2087c2a8c3e8f2c5c720d1fd3f2e) or you can also do it [through an issue](https://github.com/react-toolbox/react-toolbox/issues/new).
1
+
This document defines a manifesto and the main Roadmap 🚵 ideas for [React Toolbox](www.react-toolbox.io). It's not a fixed document and of course it's open to change. You can leave your feedback in [this gist](https://gist.github.com/javivelasco/259d2087c2a8c3e8f2c5c720d1fd3f2e) or you can also do it [through an issue](https://github.com/react-toolbox/react-toolbox/issues/new).
Copy file name to clipboardExpand all lines: components/autocomplete/readme.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,10 @@ If you want to provide a theme via context, the component key is `RTAutocomplete
53
53
|`multiple`|`Bool`|`true`| If true, component can hold multiple values. |
54
54
|`onBlur`|`Function`|| Callback function that is fired when component is blurred. |
55
55
|`onChange`|`Function`|| Callback function that is fired when the components's value changes. |
56
-
|`onQueryChange`|`Function`|| Callback function that is fired when the components's query input value changes. |
57
56
|`onFocus`|`Function`|| Callback function that is fired when component is focused. |
57
+
|`onKeyDown`|`Function`|| Callback function that is fired when a key is pressed down. |
58
+
|`onKeyUp`|`Function`|| Callback function that is fired when a key is lifted up. |
59
+
|`onQueryChange`|`Function`|| Callback function that is fired when the components's query input value changes. |
58
60
|`query`|`String`|| This property has to be used in case the `source` is not static and will be changing during search for `multiple={false}` autocomplete, content of the `query` has to be managed by the `onQueryChange` callback. |
59
61
|`source`|`Object` or `Array`|| Object of key/values or array representing all items suggested. |
60
62
|`selectedPosition`|`String`|`above`| Determines if the selected list is shown above or below input. It can be `above`, `below` or `none`. |
0 commit comments