Feature: New Dialog-Prompt-Input-Type for E-Mails (#3905)

* #3118 Feature: New Dialog-Prompt-Input-Type for E-Mails

* Forgot to change a comment

Changed Password to Email in a comment.
This commit is contained in:
Eddy Verbruggen
2017-04-06 11:41:04 +02:00
committed by Hristo Hristov
parent 59e34f0bfc
commit 979c2fe850
4 changed files with 25 additions and 3 deletions

View File

@@ -14,6 +14,11 @@ export module inputType {
* Password input type.
*/
export var password: string;
/**
* Email input type.
*/
export var email: string;
}
/**
@@ -167,7 +172,7 @@ export interface PromptOptions extends ConfirmOptions {
defaultText?: string;
/**
* Gets or sets the prompt input type (plain text or password).
* Gets or sets the prompt input type (plain text, password, or email).
*/
inputType?: string;
}