Enum representing the severity levels used for alert components.

This is used to determine the styling, icons, and behavior of alerts throughout the application.

import { AlertSeverity } from './Alert.enum';

const severity: AlertSeverity = AlertSeverity.Error;

Enumeration Members

Enumeration Members

Error: "error"

Used for critical or error messages that require user attention.

Info: "info"

Used for informational messages that guide or notify the user.

Success: "success"

Used for success messages indicating completed actions or positive feedback.

Warning: "warning"

Used for warning messages that signal caution or potential issues.