From 2f94295739e2325c3927954de92f3000777134c0 Mon Sep 17 00:00:00 2001 From: Nathan Tran Date: Thu, 18 Aug 2016 02:23:59 +1000 Subject: [PATCH] [fix] TextInput 'keyboardType' propType --- src/components/TextInput/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TextInput/index.js b/src/components/TextInput/index.js index 2a84b79f..78e550ab 100644 --- a/src/components/TextInput/index.js +++ b/src/components/TextInput/index.js @@ -22,7 +22,7 @@ class TextInput extends Component { clearTextOnFocus: PropTypes.bool, defaultValue: PropTypes.string, editable: PropTypes.bool, - keyboardType: PropTypes.oneOf(['default', 'email-address', 'numeric', 'phone-pad', 'url']), + keyboardType: PropTypes.oneOf(['default', 'email-address', 'numeric', 'phone-pad', 'search', 'url', 'web-search']), maxLength: PropTypes.number, maxNumberOfLines: PropTypes.number, multiline: PropTypes.bool,