Merge pull request #7860 from aluanhaddad/patch-2

Changed ITemplateOptions.{onChange, onBlue, etc.} to string | ITemplateOptions
This commit is contained in:
Masahiro Wakame 2016-01-29 15:01:21 +09:00
commit 5ea7d92bb3

View File

@ -101,13 +101,13 @@ declare module AngularFormly {
type?: string;
//expression types
onBlur?: string;
onChange?: string;
onClick?: string;
onFocus?: string;
onKeydown?: string;
onKeypress?: string;
onKeyup?: string;
onBlur?: string | IExpressionFunction;
onChange?: string | IExpressionFunction;
onClick?: string | IExpressionFunction;
onFocus?: string | IExpressionFunction;
onKeydown?: string | IExpressionFunction;
onKeypress?: string | IExpressionFunction;
onKeyup?: string | IExpressionFunction;
//Bootstrap types
label?: string;