fix(alert): accepts any value (#16476)

fixes #16170
This commit is contained in:
Manu MA
2018-11-27 16:29:12 +01:00
committed by GitHub
parent 69f63b3849
commit 50b0c6f15d
4 changed files with 86 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export interface AlertInput {
type?: TextFieldTypes | 'checkbox' | 'radio';
name?: string;
placeholder?: string;
value?: string;
value?: any;
label?: string;
checked?: boolean;
disabled?: boolean;