[fix] TextInput 'keyboardType' propType

This commit is contained in:
Nathan Tran
2016-08-18 02:23:59 +10:00
committed by Nicolas Gallagher
parent fdf4a88251
commit 2f94295739
+1 -1
View File
@@ -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,