packages/base/src/lib/eui-models/eui-growl-message.model.ts
Is used to define the structure of objects used for handling messages or notifications in a user interface. It allows for flexibility by allowing additional custom properties while also providing a set of predefined properties like severity, summary, detail, life, and sticky for common message attributes.
Properties |
| detail |
detail:
|
Type : string
|
| Optional |
| filled |
filled:
|
Type : boolean
|
| Optional |
| life |
life:
|
Type : number
|
| Optional |
| severity |
severity:
|
Type : "success" | "warning" | "info" | "danger" | string
|
| Optional |
| sticky |
sticky:
|
Type : boolean
|
| Optional |
| summary |
summary:
|
Type : string
|
| Optional |
| timeout |
timeout:
|
Type : number
|
| Optional |
|
The timeout property is used to define the time in milliseconds before the message is automatically removed from the user interface. This property is only used when the sticky property is set to false. |