File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ const FormsyAutoComplete = createClass({
15
15
onChange : PropTypes . func ,
16
16
onFocus : PropTypes . func ,
17
17
onKeyDown : PropTypes . func ,
18
+ validationError : PropTypes . string ,
19
+ validationErrors : PropTypes . object ,
20
+ validations : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . object ] ) ,
18
21
value : PropTypes . any ,
19
22
} ,
20
23
@@ -61,6 +64,9 @@ const FormsyAutoComplete = createClass({
61
64
defaultValue, // eslint-disable-line no-unused-vars
62
65
onFocus,
63
66
value, // eslint-disable-line no-unused-vars
67
+ validations, // eslint-disable-line no-unused-vars
68
+ validationError, // eslint-disable-line no-unused-vars
69
+ validationErrors, // eslint-disable-line no-unused-vars
64
70
...rest } = this . props ;
65
71
return (
66
72
< AutoComplete
You can’t perform that action at this time.
0 commit comments