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

@sigmoid-hq/design-system-v1

v1.2.2

Published

Sigmoid Design System V1 - A comprehensive React component library

Readme

@sigmoid-hq/design-system-v1

Sigmoid Design System V1 - A comprehensive React component library built with TypeScript and vanilla-extract.

Installation

npm install @sigmoid-hq/design-system-v1
# or
yarn add @sigmoid-hq/design-system-v1
# or
pnpm add @sigmoid-hq/design-system-v1

Peer Dependencies

This package requires React 19+:

npm install react@^19.0.0 react-dom@^19.0.0

Usage

Basic Example

import { Button, Card, Input } from '@sigmoid-hq/design-system-v1';

function App() {
  return (
    <Card headline="Welcome" description="Get started with Sigmoid DS">
      <Input label="Email" placeholder="Enter your email" />
      <Button variant="primary">Submit</Button>
    </Card>
  );
}

Import Styles

The design system uses vanilla-extract for styling. Import the global styles in your app entry point:

import '@sigmoid-hq/design-system-v1/styles';

Using Design Tokens

import { vars } from '@sigmoid-hq/design-system-v1';

const customStyle = {
  color: vars.colors.primary,
  fontSize: vars.fontSizes.base,
  padding: vars.spacing["4"],
};

Components

Foundation

  • Button - Primary action buttons with variants
  • Accordion - Collapsible content sections
  • Stepper - Step-by-step progress indicator
  • DateTimePicker - Date and time selection
  • FadeInSection - Animated fade-in sections

Layout

  • Card - Content container with header and actions
  • Container - Responsive container wrapper
  • Divider - Visual separator
  • Grid - Flexible grid layout system
  • Stack - Vertical/horizontal stacking

Form

  • Input - Text input with label and validation
  • SearchInput - Search input with clear button
  • Textarea - Multi-line text input
  • Checkbox - Checkbox input
  • Radio - Radio button group
  • Switch - Toggle switch
  • Dropdown - Select dropdown
  • ComboBox - Autocomplete combobox
  • ColorPicker - Color selection with presets and palette
  • Checklist - Multi-select checklist

DataDisplay

  • Avatar - User avatar display
  • Tag - Label/tag component
  • Table - Data table with columns
  • List - List component
  • EmptyState - Empty state placeholder
  • Skeleton - Loading skeleton
  • ProgressBar - Progress indicator
  • BarChart - Bar chart visualization
  • LineChart - Line chart visualization
  • CodeBox - Code display with syntax highlighting

Feedback

  • Alert - Alert messages
  • Badge - Status badges
  • Loading - Loading indicators
  • Modal - Modal dialogs
  • Popover - Popover tooltips
  • Toast - Toast notifications
  • Tooltip - Tooltip component

Navigation

  • Breadcrumb - Breadcrumb navigation
  • Menu - Navigation menu
  • Pagination - Page pagination
  • Tabs - Tab navigation
  • PageIndicator - Page indicator dots

Storybook

View all components and their documentation in Storybook:

yarn dev

Then open http://localhost:6006

Or visit the hosted Storybook: https://design.sigmoid.us

Development

Setup

# Install dependencies
yarn install

# Start Storybook development server
yarn dev

# Build library
yarn build:lib

# Build Storybook
yarn build:storybook

Project Structure

src/
├── components/        # All React components
│   ├── Foundation/   # Core foundation components
│   ├── Layout/       # Layout components
│   ├── Form/         # Form input components
│   ├── DataDisplay/  # Data visualization components
│   ├── Feedback/     # User feedback components
│   └── Navigation/   # Navigation components
├── styles/            # Design tokens and global styles
│   ├── theme.css.ts  # Design system tokens
│   └── global.css.ts # Global styles and keyframes
└── index.ts          # Main export file

Design Tokens

The design system provides comprehensive design tokens:

  • Colors: Primary, accent colors, text colors, borders, backgrounds
  • Typography: Font families (Geist, Inter, JetBrains Mono), sizes, weights, line heights
  • Spacing: Consistent spacing scale
  • Border Radius: Rounded corner values
  • Shadows: Elevation shadows
  • Transitions: Animation timing

Access tokens via vars:

import { vars } from '@sigmoid-hq/design-system-v1';

// Colors
vars.colors.primary
vars.colors.accent.orange
vars.colors.text.primary

// Typography
vars.fonts.geist
vars.fontSizes.base
vars.fontWeights.medium

// Spacing
vars.spacing["4"]
vars.spacing["8"]

// Border Radius
vars.radii.md
vars.radii["2xl"]

// Shadows
vars.shadows.subtle
vars.shadows.card

// Transitions
vars.transitions.fast
vars.transitions.normal

TypeScript

This package is written in TypeScript and includes type definitions. All components are fully typed.

License

MIT

Repository

https://github.com/sigmoid-hq/design-system-v1

Author

Juan Lee


Built with ❤️ by Sigmoid