Hiyve Components - v1.0.0
    Preparing search index...

    Interface AlertItem

    A single alert item to display.

    interface AlertItem {
        acknowledged?: boolean;
        id: string;
        message: string;
        timestamp: Date;
        title: string;
        type: "info" | "warning" | "success" | "error";
    }
    Index

    Properties

    acknowledged?: boolean

    Whether the alert has been acknowledged. Acknowledged alerts render with reduced opacity.

    id: string

    Unique identifier for the alert.

    message: string

    Descriptive body text displayed below the title.

    timestamp: Date

    When the alert was created. Used for relative timestamp display.

    title: string

    Bold heading text displayed at the top of the card.

    type: "info" | "warning" | "success" | "error"

    Severity level that determines the card's color scheme.