fix(select): support any kind of value

fixes #15200
This commit is contained in:
Manu Mtz.-Almeida
2018-08-24 04:09:16 +02:00
parent bd75bf46eb
commit 151c58e12f
13 changed files with 72 additions and 105 deletions

View File

@@ -11,7 +11,7 @@ export interface InputChangeEvent {
}
export interface SelectInputChangeEvent {
value: string | string[] | undefined;
value: any | any[] | undefined;
text: string;
}