feat(alert): add support for textarea (#16851)

resolves #14153
This commit is contained in:
Tawfiek Khalaf
2019-11-11 21:27:45 +02:00
committed by Liam DeBeasi
parent bef0f53d0d
commit b28cf02ef3
10 changed files with 83 additions and 22 deletions

View File

@ -20,7 +20,7 @@ export interface AlertOptions {
}
export interface AlertInput {
type?: TextFieldTypes | 'checkbox' | 'radio';
type?: TextFieldTypes | 'checkbox' | 'radio' | 'textarea';
name?: string;
placeholder?: string;
value?: any;