Exclusivebeta
Toast Physics — <mv-toast-physics>
Notifications that are real rigid bodies: they drop into a corner tray and pile up under gravity, and priority becomes mass (an error is heavier and wider, lands with a thud that jostles the others, then sinks below lighter cards). Grab a card and fling it to dismiss it; when it expires it fades out and the pile settles into the gap. Same API spirit as toast().
| Category | Overlays |
|---|---|
| Type | Web Component (<mv-toast-physics>) |
| Status | beta |
| Keywords | exclusive, toast, notification, physics, gravity, fling, rigid-body, priority, live-region, tactile |
When to use
- Notifications are part of a playful product identity and a tactile, physics-driven pile adds delight
- Error notifications should visibly outweigh info messages and stay in view longer
Avoid when
- Notifications need promise-based loading states or in-place updates by id → use Toast instead
- A sober business app sends frequent notifications, where the motion becomes noise → use Toast instead
Install
node scripts/add.mjs toast-physics --out ./src/marvelousAI agent with the Marvelous UI MCP server: install_components({ slugs: ["toast-physics"], target_dir: "<absolute path>/src/marvelous", framework: "react" }).
Files copied (dependencies included): tokens/tokens.css, core/base.css, core/dom.js, core/element.js, core/motion.js, core/physics.js, components/toast-physics/toast-physics.js, components/toast-physics/toast-physics.css.
Usage
Canonical markup — start from it and customize with attributes, data-* and CSS variables:
<div id="tp-demo" style="display:grid;gap:1rem;justify-items:center;text-align:center">
<div style="display:grid;gap:.25rem">
<strong style="font-size:var(--mv-text-base)">Stone & Linen Studio — back office</strong>
<span style="font-size:var(--mv-text-sm);color:var(--mv-fg-muted)">Notifications drop into the tray at the bottom right. Errors weigh more.</span>
</div>
<div style="display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;max-width:36rem">
<button class="mv-button" data-variant="outline" type="button" data-t="success">Order shipped</button>
<button class="mv-button" data-variant="outline" type="button" data-t="info">New customer review</button>
<button class="mv-button" data-variant="outline" type="button" data-t="warning">Low stock</button>
<button class="mv-button" data-variant="destructive" type="button" data-t="error">Payment declined</button>
<button class="mv-button" data-variant="secondary" type="button" data-t="burst">Burst ×4</button>
</div>
<p style="margin:0;font-size:.8125rem;color:var(--mv-fg-muted)">Grab a card and <strong style="color:var(--mv-fg);font-weight:500">fling it</strong> to dismiss · <strong style="color:var(--mv-fg);font-weight:500">Alt + T</strong> then <strong style="color:var(--mv-fg);font-weight:500">Delete</strong> from the keyboard</p>
<mv-toast-physics position="bottom-right"></mv-toast-physics>
</div>
<script type="module">
// In an app: import { toast } from "./components/toast-physics/toast-physics.js";
const { toast } = await customElements.whenDefined("mv-toast-physics");
const n = () => 4800 + Math.floor(Math.random() * 400);
const demos = {
success: () => toast.success(`Order #${n()} shipped`, { description: "UPS · arriving Thursday, Sep 24" }),
info: () => toast.info("New customer review ★★★★★", { description: "“Gorgeous mugs, beautifully packed.” — Hannah K." }),
warning: () => toast.warning("Low stock: Stoneware Mug 12 oz", { description: "Only 3 left — time to restock.", action: { label: "Reorder", onClick: () => toast.success("Purchase order sent to the studio") } }),
error: () => toast.error("Payment declined", { description: "Order #4827 · card expired, the customer has been notified.", action: { label: "Retry", onClick: () => {} } }),
burst: () => ["info", "success", "warning", "success"].forEach((k, i) => setTimeout(demos[k], i * 170)),
};
document.getElementById("tp-demo").addEventListener("click", (e) => {
const k = e.target.closest("[data-t]")?.dataset.t;
if (k) demos[k]();
});
// Arrival: two light cards, then an error that sinks beneath them.
setTimeout(() => toast.info("New customer review ★★★★★", { description: "“Gorgeous mugs, beautifully packed.” — Hannah K.", duration: 16000 }), 150);
setTimeout(() => toast.success("Order #4821 shipped", { description: "UPS · arriving Thursday, Sep 24", duration: 16000 }), 450);
setTimeout(() => toast.error("Payment declined", { description: "Order #4827 · card expired, the customer has been notified.", duration: 20000 }), 1000);
</script>API
Attributes
| Name | Type | Default | Description |
|---|---|---|---|
position | bottom-right | bottom-left | bottom-center | top-right | top-left | top-center | bottom-right | Tray corner. At the top, gravity flips: cards rise and stack against the top edge. |
max | number | 5 | Number of cards in the tray; beyond that, the oldest of the lightest cards is removed. |
duration | number | 6000 | Default duration (ms); errors stay 1.6× longer. |
gravity | number | 1 | Gravity multiplier (1 ≈ 2200 px/s²). |
label | string | Notifications | Accessible name of the region. |
Properties
| Name | Type | Description |
|---|---|---|
toasts | object[] | Read-only: notifications in the tray, top to bottom. |
Methods
| Name | Description |
|---|---|
toast(message, options) → id | Exported from toast-physics.js (also MvToastPhysics.toast). options: type (default | success | info | warning | error), description, duration (ms or Infinity), id (same id = updated in place, with a little hop), action { label, onClick(e, { id, dismiss }) }, important (assertive announcement), closeLabel, toaster (selector), onDismiss, onAutoClose. Creates a <mv-toast-physics> if needed. |
toast.success / .info / .warning / .error(message, options) | Typed shortcuts. |
toast.dismiss(id?) | Dismisses one notification, or all of them. |
element.add(options) / element.dismiss(id?) | Same operations on a specific tray. |
Events
| Name | Description |
|---|---|
mv-toast | New notification. detail: { id, type }. |
mv-dismiss | detail: { id, reason } — timeout, fling, close, keyboard, action, overflow, dismiss. |
mv-settle | The pile is at rest. detail: { order } (ids top to bottom). |
CSS classes
| Name | Description |
|---|---|
mv-toast-physics-item / -icon / -content / -title / -description / -action / -close | Generated parts; data-type on the card, data-dragging while grabbed, data-sinking while a heavy card sinks. |
CSS variables
| Name | Default | Description |
|---|---|---|
--mv-toast-physics-width | 22rem | Tray width (an error takes 100%, a warning 95%, the rest 90%). |
--mv-toast-physics-height | min(68vh, 34rem) | Tray height (drop height). |
--mv-toast-physics-offset | 1.25rem | Distance from the screen edges. |
--mv-toast-physics-bg | var(--mv-surface-raised) | Card background. |
Accessibility
A region named “Notifications (Alt+T)” in the top layer; each new card is announced in a polite live region (assertive for errors and important:true), separate from the list so reordering is never re-announced. Cards form a focusable list whose DOM order follows the visual order: Alt+T moves focus there, ↑/↓/Home/End navigate, Delete, Backspace or Escape dismiss the card and focus moves to its neighbor, then back to the original element. The close button shows on hover, on focus and always on touch. Timers pause on hover, on keyboard focus, while grabbed and when the tab is hidden (the duration fuse too). Reduced motion: a classic stacked list, heaviest at the bottom, with no physics or fling.