npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@selvklart/toast

v1.1.1

Published

A lightweight, accessible toast notification library for React with Framer Motion animations, auto-dismiss timers, and full slot-based customisation.

Readme

@selvklart/toast

A lightweight, accessible toast notification library for React with Framer Motion animations, auto-dismiss timers, and full slot-based customisation.

[!NOTE] This package is developed for internal use at Selvklart. It is published publicly for convenience, but we make no guarantees about update cadence or backwards compatibility. If you depend on it externally, pin your version.

Features

  • Variant shortcuts: success, error, info, warning
  • Auto-dismiss with pause-on-hover and pause-on-focus
  • Persistent toasts (timeout: false)
  • Action button per toast
  • Icon support via consumer-provided ReactNode (no icon library bundled)
  • Slot-based customisation (slotProps) with merged className and style
  • Framer Motion enter/exit animations
  • Accessible: role="region", role="alertdialog", role="alert", aria-atomic
  • Fully typed with TypeScript

Installation

npm install @selvklart/toast

Install peer dependencies if you haven't already:

npm install react react-dom motion

Setup

1. Import the stylesheet

import '@selvklart/toast/styles.css';

2. Mount <ToastRegion /> once at the app root

import {ToastRegion} from '@selvklart/toast';

export function App() {
  return (
    <>
      <YourApp />
      <ToastRegion />
    </>
  );
}

Usage

Variant shortcuts

import {toast} from '@selvklart/toast';

toast.success('File saved');
toast.error('Upload failed');
toast.info('New version available');
toast.warning('Unsaved changes');

With options

// Custom timeout (ms)
toast.success('Done', {timeout: 3000});

// Persistent — requires manual close
toast.error('Payment failed', {timeout: false});

// With a description
toast.info('Deployment started', {
  description: 'This usually takes about 2 minutes.',
});

// With an action button
toast.info('New update available', {
  action: {
    label: 'Refresh',
    onClick: () => window.location.reload(),
  },
});

Low-level call

toast({
  title: 'Custom toast',
  variant: 'success',
  timeout: 4000,
  description: 'Something happened.',
});

Dismiss programmatically

const id = toast.success('Saving…');

// later
toast.dismiss(id);

Icons

No icons are bundled. Pass a ReactNode per variant to <ToastRegion icons={…} />:

import {CheckCircleIcon, XCircleIcon, InfoIcon, AlertTriangleIcon} from 'lucide-react';

<ToastRegion
  icons={{
    success: <CheckCircleIcon size={20} />,
    error: <XCircleIcon size={20} />,
    info: <InfoIcon size={20} />,
    warning: <AlertTriangleIcon size={20} />,
  }}
/>

You can also override the icon for a single toast:

toast.success('Uploaded', {icon: <MyCustomIcon />});

Per-toast icon takes priority over the region-level icons config.

To hide the icon for a specific toast even when one is configured globally:

toast.success('No icon here', {showIcon: false});

ToastRegion props

| Prop | Type | Default | Description | |---|---|---|---| | icons | ToastIcons | — | Icon per variant. No icon shown unless provided. | | maxVisibleToasts | number | 10 | Cap on simultaneously visible toasts. Oldest are hidden first. | | placement | Placement | 'bottom-right' | Where the toast stack appears on screen. | | ariaLabel | string | "Notifications" | Accessible label for the role="region" wrapper. | | className | string | — | Applied to the root div. Useful for setting CSS custom properties that cascade into toasts. | | slotProps | ToastSlotProps | — | Forwarded to every ToastItem in the region. Per-variant and per-toast slot props are merged on top. | | variantSlotProps | Partial<Record<ToastVariant, ToastSlotProps>> | — | Per-variant slot props, merged on top of slotProps. Lets you style each variant differently without touching CSS. |


Slot customisation (slotProps)

Slot props let you override HTML attributes on any internal element of a toast. className is merged (not replaced), style is shallow-merged, and event handlers are composed alongside internal ones.

Region-level (applies to all toasts)

<ToastRegion
  slotProps={{
    root: {className: 'border border-slate-200'},
    closeButton: {'aria-label': 'Lukk varsel'},
  }}
/>

Per-variant (applies only to toasts of that variant)

<ToastRegion
  variantSlotProps={{
    success: {root: {className: 'bg-green-50 border border-green-300'}},
    error:   {root: {className: 'bg-red-50 border border-red-300'}},
    warning: {closeButton: {className: 'text-amber-700'}},
  }}
/>

Merge order: slotProps (global) → variantSlotProps[variant]. Both className and style are merged at each level.

Per-item (when rendering ToastItem directly)

import {ToastItem} from '@selvklart/toast';

<ToastItem
  item={item}
  slotProps={{
    root: {className: 'border border-blue-300'},
    closeButton: {'aria-label': 'Lukk varsel'},
    title: {className: 'text-lg'},
    actionButton: {
      onClick: () => console.log('action clicked'),
    },
  }}
/>

Available slots

| Slot | Element | Notes | |---|---|---| | root | div | The outermost toast card | | icon | span | Wrapper around the variant icon | | title | span | Toast title text | | description | p | Description text (only rendered when description is set) | | actionButton | button | Action button (only rendered when action is set) | | closeButton | button | The X close button, always rendered |


useToastQueue

Subscribe directly to the toast queue in your own component:

import {useToastQueue} from '@selvklart/toast';

function MyCustomToastList() {
  const toasts = useToastQueue();

  return (
    <ul>
      {toasts.map((item) => (
        <li key={item.id}>{item.title}</li>
      ))}
    </ul>
  );
}

You can also subscribe to a custom queue:

import {ToastQueue, useToastQueue} from '@selvklart/toast';

const myQueue = new ToastQueue();
const toasts = useToastQueue(myQueue);

TypeScript

All types are exported:

import type {
  Placement,
  ToastVariant,
  ToastOptions,
  ToastInput,
  ToastItem,
  ToastAction,
  ToastIcons,
  ToastSlotProps,
  ToastRegionProps,
} from '@selvklart/toast';

Theming

Changing toast position

Use the placement prop on ToastRegion:

<ToastRegion placement="top-center" />

Available values: 'top-left', 'top-center', 'top-right', 'bottom-left', 'bottom-center', 'bottom-right'. Default is 'bottom-right'.

For fine-grained control (custom inset, etc.) you can still override the CSS directly:

.toast-region {
  bottom: 2rem;
  right: 2rem;
}

Colors

Colors are CSS custom properties set on .toast-item via data-variant.

Via CSS (global override)

.toast-item[data-variant='success'] {
  --toast-bg: #your-color;
  --toast-icon-color: #your-color;
  --toast-text-color: #your-color;
  --toast-button-hover: #your-color;
}

Via className on ToastRegion (cascading override)

<ToastRegion className="[--toast-bg:theme(colors.slate.100)]" />

Via variantSlotProps (prop-based, per-variant)

Use className to apply Tailwind utilities or your own CSS classes:

<ToastRegion
  variantSlotProps={{
    error: {root: {className: 'bg-red-100 border border-red-400'}},
    success: {icon: {className: 'text-emerald-600'}},
  }}
/>

Or use style to override the CSS custom properties directly:

<ToastRegion
  variantSlotProps={{
    success: {root: {style: {'--toast-bg': '#f0fdf4', '--toast-icon-color': '#16a34a'} as React.CSSProperties}},
  }}
/>

Contributing

See CONTRIBUTING.md.