From 10cd5b25d786fadc6320e02b9156926d7c883a25 Mon Sep 17 00:00:00 2001 From: Thomas Rich Date: Wed, 7 Dec 2016 19:06:55 -0800 Subject: [PATCH] updating readme readme now reflect fact that noResultsText can be a string or a react component --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34c096ca2b..14b341065d 100644 --- a/README.md +++ b/README.md @@ -369,7 +369,7 @@ function onInputKeyDown(event) { menuRenderer | func | undefined | Renders a custom menu with options; accepts the following named parameters: `menuRenderer({ focusedOption, focusOption, options, selectValue, valueArray })` multi | bool | undefined | multi-value input name | string | undefined | field name, for hidden `` tag - noResultsText | string | 'No results found' | placeholder displayed when there are no matching search results or a falsy value to hide it + noResultsText | string | 'No results found' | placeholder displayed when there are no matching search results or a falsy value to hide it (can also be a react component) onBlur | func | undefined | onBlur handler: `function(event) {}` onBlurResetsInput | bool | true | whether to clear input on blur or not onChange | func | undefined | onChange handler: `function(newValue) {}`