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 🙏

© 2025 – Pkg Stats / Ryan Hefner

zurto-ui

v2.0.0

Published

Official UI component library for Zurto - 153 Modern React components with dark theme and glassmorphism

Downloads

180

Readme

zurto-ui

The official UI component library for Zurto

Modern React components with dark theme and glassmorphism effects

npm version License: MIT TypeScript

DocumentationGitHubDiscord


✨ Features

  • 🎨 153 Components - Comprehensive library covering all UI needs across 11 categories
  • 🌙 Dark Theme First - Beautiful dark theme with glassmorphism effects
  • 📦 Tree-Shakable - Import only what you need (212KB ESM, 52KB gzipped)
  • 🎯 TypeScript - Full type safety out of the box
  • Accessible - WCAG 2.1 AA compliant with keyboard navigation
  • 🎭 Customizable - Design tokens for easy theming
  • Fast - Optimized for performance with excellent bundle size
  • 📱 Responsive - Mobile-first design approach
  • 🧪 Auto-Preview System - Automatic documentation generation
  • 📚 Documented - Full documentation with live examples at ui.zurto.app

📦 Installation

npm install zurto-ui
# or
yarn add zurto-ui
# or
pnpm add zurto-ui

🚀 Quick Start

1. Import the styles

// In your app entry point (e.g., main.tsx or App.tsx)
import "zurto-ui/dist/styles.css";

2. Use components

import { ZButton, ZCard, ZInput } from "zurto-ui";

function App() {
  return (
    <ZCard>
      <ZInput placeholder="Enter your email" />
      <ZButton variant="primary">Subscribe</ZButton>
    </ZCard>
  );
}

🎨 Components

Core UI (14 components)

| Component | Description | | ----------- | ----------------------------------------- | | ZButton | Buttons with multiple variants and states | | ZInput | Text inputs with icons and validation | | ZSelect | Single/multi select with search | | ZCheckbox | Checkbox with indeterminate state | | ZRadio | Radio buttons and groups | | ZSwitch | Toggle switches | | ZCard | Card containers with glass effect | | ZModal | Modal dialogs with focus trap | | ZTooltip | Tooltips with 12 placements | | ZBadge | Status badges and counters | | ZAvatar | User avatars with fallback | | ZSpinner | Loading spinners | | ZProgress | Linear progress bars | | ZProvider | Theme and context provider |

Layout (6 components)

| Component | Description | | ------------ | -------------------------- | | ZContainer | Max-width container | | ZBox | Polymorphic box component | | ZStack | Flex stack (VStack/HStack) | | ZGrid | CSS Grid wrapper | | ZDivider | Dividers with labels | | ZSplitPane | Resizable split panels |

Navigation (4 components)

| Component | Description | | ----------------- | --------------------- | | ZBreadcrumbs | Breadcrumb navigation | | ZTabs | Tabbed navigation | | ZPagination | Page navigation | | ZCommandPalette | Keyboard command menu |

Data Display (3 components)

| Component | Description | | ----------- | --------------------------- | | ZTable | Sortable, filterable tables | | ZList | Basic list component | | ZStatCard | Metric display cards |

Feedback (4 components)

| Component | Description | | ------------- | ------------------------ | | ZToast | Toast notifications | | ZAlert | Alert banners | | ZSkeleton | Loading skeletons | | ZEmptyState | Empty state placeholders |

Forms (6 components)

| Component | Description | | -------------- | --------------------- | | ZForm | Form with validation | | ZFieldGroup | Form field wrapper | | ZInlineEdit | Click-to-edit fields | | ZFileUpload | Drag & drop upload | | ZDatePicker | Date/time selection | | ZColorPicker | Color selection (HSB) |

Advanced (5 components)

| Component | Description | | -------------- | ----------------------- | | ZCodeEditor | Code editor with syntax | | ZTerminal | Terminal emulator | | ZCanvas | Drawing canvas | | ZChart | Charts (line, bar, pie) | | ZVirtualList | 10k+ item lists |


🎭 Theming

Design Tokens

All components use CSS custom properties (variables) for theming:

:root {
  /* Colors */
  --z-primary: #df3e53;
  --z-bg-primary: #0a0a0a;
  --z-text-primary: #ffffff;

  /* Spacing */
  --z-space-4: 16px;

  /* Border Radius */
  --z-radius-md: 8px;

  /* Shadows */
  --z-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
}

Custom Theme

Override tokens in your CSS:

:root {
  --z-primary: #your-color;
  --z-bg-primary: #your-bg;
}

📚 Documentation

Full documentation available at ui.zurto.app


🤝 Contributing

We welcome contributions! Please see our Contributing Guide.


📄 License

MIT © Zurto Team