File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ export interface FormControlProps extends React.Props<FormControlClass> {
8
8
type : string ;
9
9
id ?: string ;
10
10
name ?: string ;
11
+ value ?: string | number ;
11
12
placeholder ?: string ;
13
+ onChange : Function ;
14
+ onKeyPress : Function ;
12
15
}
13
16
export interface FormControl extends React . ReactElement < FormControlProps > { }
14
17
export interface FormControlClass extends React . ComponentClass < FormControlProps > {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import React = require("react");
5
5
// ----------------------------------------
6
6
export interface FormGroupProps extends React . Props < FormGroupClass > {
7
7
controlId : string ;
8
+ validationState : string ;
8
9
}
9
10
export interface FormGroup extends React . ReactElement < FormGroupProps > { }
10
11
export interface FormGroupClass extends React . ComponentClass < FormGroupProps > { }
You can’t perform that action at this time.
0 commit comments