mljr-ui · showcase

Notification Stack

Fixed-position persistent notification feed. Add via window._pushNotification(). Auto-dismisses with duration.

feedback notification-stack

Usage

// Mount once per page
feedback.NotificationStack(feedback.NotificationStackProps{
    Position: "top-right",
    Max:      5,
})

// Push from anywhere (JS)
window._pushNotification({
    title:    "Deploy succeeded",
    body:     "v2.4.1 is live.",
    variant:  "success",  // "info" | "success" | "warning" | "error"
    duration: 5000,       // ms; 0 = manual dismiss only
})