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> {
88 type : string ;
99 id ?: string ;
1010 name ?: string ;
11+ value ?: string | number ;
1112 placeholder ?: string ;
13+ onChange : Function ;
14+ onKeyPress : Function ;
1215}
1316export interface FormControl extends React . ReactElement < FormControlProps > { }
1417export interface FormControlClass extends React . ComponentClass < FormControlProps > {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import React = require("react");
55// ----------------------------------------
66export interface FormGroupProps extends React . Props < FormGroupClass > {
77 controlId : string ;
8+ validationState : string ;
89}
910export interface FormGroup extends React . ReactElement < FormGroupProps > { }
1011export interface FormGroupClass extends React . ComponentClass < FormGroupProps > { }
You can’t perform that action at this time.
0 commit comments