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

@birhaus/patterns

v3.0.1

Published

BIRHAUS v3.0 Radical Minimalist Pattern Components - Glass morphism ApprovalWorkflow, RoleManager, SmartSearch, FinancialDashboard, AuditTimeline

Readme

@birhaus/patterns

Advanced UI patterns for the BIRHAUS design system, implementing complex workflows with cognitive load optimization.

Installation

npm install @birhaus/patterns

Components

BirhausApprovalWorkflow

Complete approval workflow with Spanish-first labeling and undo patterns.

import { BirhausApprovalWorkflow } from '@birhaus/patterns'

const approvalSteps = [
  { 
    id: 'review',
    labelEs: 'Revisión',
    labelEn: 'Review',
    status: 'completed' 
  },
  { 
    id: 'approve', 
    labelEs: 'Aprobación',
    labelEn: 'Approval',
    status: 'pending' 
  }
]

function DocumentApproval() {
  return (
    <BirhausApprovalWorkflow
      titleEs="Aprobación de Transferencia"
      titleEn="Transfer Approval"
      steps={approvalSteps}
      onApprove={handleApprove}
      onReject={handleReject}
    />
  )
}

BirhausSmartSearch

Intelligent search with cognitive load management and Spanish-first results.

import { BirhausSmartSearch } from '@birhaus/patterns'

function DonorSearch() {
  return (
    <BirhausSmartSearch
      placeholderEs="Buscar donante..."
      placeholderEn="Search donor..."
      onSearch={searchDonors}
      maxResults={7} // Miller's Law compliance
      categories={[
        { id: 'donors', labelEs: 'Donantes', labelEn: 'Donors' },
        { id: 'transactions', labelEs: 'Transacciones', labelEn: 'Transactions' }
      ]}
    />
  )
}

AuditTimeline

Complete audit trail with chronological display and accessibility.

import { AuditTimeline } from '@birhaus/patterns'

const auditEvents = [
  {
    id: '1',
    timestamp: new Date(),
    actionEs: 'Donación registrada',
    actionEn: 'Donation recorded',
    user: 'María González',
    details: { amount: 'Gs. 150.000' }
  }
]

function TransactionAudit() {
  return (
    <AuditTimeline
      events={auditEvents}
      titleEs="Historial de Transacción"
      titleEn="Transaction History"
    />
  )
}

BIRHAUS Principles

All patterns implement:

  • Spanish-first Design: Primary Spanish labels with English fallbacks
  • Cognitive Load Management: Miller's Law (7±2) applied to all lists
  • Undo over Confirm: Workflow actions support undo patterns
  • Progressive Disclosure: Complex information shown on demand
  • Accessibility: Full WCAG AA+ compliance

Use Cases

Perfect for:

  • Document approval workflows
  • Financial transaction management
  • Audit trail visualization
  • Search interfaces with complex results
  • Administrative dashboards

Integration

Works with:

  • @birhaus/primitives - Base components for building patterns
  • @birhaus/core - UndoSystem integration for workflow actions
  • @birhaus/themes - Consistent visual styling

License

MIT - see LICENSE for details.