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

@tirbeo/ui

v1.0.6

Published

Tirbeo shared design system components

Readme

@tirbeo/ui

Tirbeo's shared design system component library.

Installation

pnpm add @tirbeo/ui

Setup

Import components from @tirbeo/ui:

import { Button, Card, DataTable } from "@tirbeo/ui";

Theme

All components use CSS custom properties from @tirbeo/theme. Wrap your app with TirbeoThemeProvider:

import { TirbeoThemeProvider } from "@tirbeo/theme";

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        <TirbeoThemeProvider>{children}</TirbeoThemeProvider>
      </body>
    </html>
  );
}

Components

| Component | Description | |-----------|-------------| | Button | Primary, secondary, tertiary, danger variants | | IconButton | Icon-only button with accessible label | | Input | Text input with validation states | | Textarea | Multi-line text input | | SearchInput | Search field with icon | | Card | Container with thin border and minimal shadow | | Badge | Status and count badges | | Avatar | User avatar with group support | | DataTable | Enterprise data table with sorting, filtering, pagination | | Dialog | Modal dialog with confirm/danger variants | | Drawer | Slide-in panel from left | | Tabs | Tab list with thin active indicator | | DropdownMenu | Context menu with keyboard navigation | | Sidebar | Navigation sidebar with expanded/collapsed states | | Topbar | Application header with search, notifications, user menu | | Toast | Toast notifications with provider | | Pagination | Pagination controls | | Skeleton | Loading skeleton screens | | EmptyState | Empty state illustration | | ErrorState | Error state with retry |

Props

All components accept standard HTML props plus Tirbeo-specific props:

  • variant — visual variant (primary, secondary, tertiary, danger)
  • size — compact, default, large
  • disabled — disabled state
  • loading — loading state with spinner
  • className — additional CSS classes

Accessibility

All components support:

  • Keyboard navigation
  • Focus management
  • Screen reader semantics
  • ARIA attributes
  • Color contrast (WCAG AA)
  • prefers-reduced-motion

Responsive Behavior

Components adapt to mobile, tablet, and desktop breakpoints using CSS custom properties from @tirbeo/theme.