Added transitions and severity classes

This commit is contained in:
Henry
2015-10-14 11:45:39 -07:00
parent 34ea3ad9bb
commit ee382be38d
8 changed files with 56 additions and 53 deletions

View File

@ -174,21 +174,6 @@ define(
}
};
/**
* dialogModel: {
* severity: string "error" | "info" | "alert",
* title: string,
* hint: string,
* actionText: string,
* progress: int,
* progressText: string,
* unknownProgress: boolean,
* actions: [{
* label: String,
* action: function
* }]
*/
/**
* A user action that can be performed from a blocking dialog. These
* actions will be rendered as buttons within a blocking dialog.
@ -207,9 +192,9 @@ define(
* @see NotificationService
*
* @typedef DialogModel
* @property {string} title the title to use for the dialog
* @property {string} severity the severity level of this message.
* These are defined in a bundle constant with key 'dialogSeverity'
* @property {string} title the title to use for the dialog
* @property {string} hint the 'hint' message to show below the title
* @property {string} actionText text that indicates a current action,
* shown above a progress bar to indicate what's happening.