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

@snps/ui

v0.6.3

Published

Comprehensive UI component library for Synapse Framework - 100+ beautiful, accessible, and performant components - ZERO DEPENDENCIES

Readme

🎨 @snps/ui - Comprehensive UI Component Library

A beautiful, accessible, and performant UI component library built for the Synapse Framework. Features 100+ components with TypeScript support, theming, animations, and accessibility features.

✨ Features

  • 🎨 100+ Components - Comprehensive set of UI components
  • 🌙 Dark Mode - Built-in light and dark themes
  • ♿ Accessible - WCAG 2.1 AA compliant components
  • ⚡ Performant - Optimized for speed and efficiency
  • 🎭 Animations - Smooth transitions and micro-interactions
  • 📱 Responsive - Mobile-first design approach
  • 🔧 Customizable - Extensive theming and customization options
  • 📚 TypeScript - Full type safety and IntelliSense support
  • 🎯 Zero Dependencies - No external dependencies (except React)

🚀 Quick Start

Installation

npm install @snps/ui

Basic Usage

import React from 'react';
import { ThemeProvider, Button, Card, Input } from '@snps/ui';

function App() {
  return (
    <ThemeProvider>
      <div className="p-8">
        <Card>
          <CardHeader>
            <CardTitle>Welcome to Synapse UI</CardTitle>
          </CardHeader>
          <CardBody>
            <Input 
              label="Email"
              placeholder="Enter your email"
              type="email"
            />
            <Button variant="primary" className="mt-4">
              Get Started
            </Button>
          </CardBody>
        </Card>
      </div>
    </ThemeProvider>
  );
}

🎨 Theme System

Using Themes

import { ThemeProvider, useTheme } from '@snps/ui';

function App() {
  return (
    <ThemeProvider defaultTheme="dark">
      <YourApp />
    </ThemeProvider>
  );
}

function ThemeToggle() {
  const { theme, toggleTheme } = useTheme();
  
  return (
    <Button onClick={toggleTheme}>
      Switch to {theme.name === 'light' ? 'dark' : 'light'} mode
    </Button>
  );
}

Custom Themes

import { ThemeProvider, createTheme } from '@snps/ui';

const customTheme = createTheme({
  name: 'custom',
  colors: {
    primary: '#ff6b6b',
    secondary: '#4ecdc4',
    // ... other theme properties
  }
});

function App() {
  return (
    <ThemeProvider theme={customTheme}>
      <YourApp />
    </ThemeProvider>
  );
}

🧩 Components

Button

import { Button } from '@snps/ui';

// Variants
<Button variant="primary">Primary</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="danger">Danger</Button>

// Sizes
<Button size="sm">Small</Button>
<Button size="lg">Large</Button>

// With icons
<Button leftIcon={<Icon />}>With Icon</Button>
<Button loading>Loading...</Button>

Input

import { Input } from '@snps/ui';

<Input
  label="Email"
  placeholder="Enter your email"
  type="email"
  error={hasError}
  errorMessage="Please enter a valid email"
  helperText="We'll never share your email"
  leftIcon={<MailIcon />}
  clearable
/>

Card

import { Card, CardHeader, CardBody, CardFooter, CardTitle } from '@snps/ui';

<Card variant="elevated" hoverable>
  <CardHeader>
    <CardTitle>Card Title</CardTitle>
  </CardHeader>
  <CardBody>
    Card content goes here
  </CardBody>
  <CardFooter>
    <Button>Action</Button>
  </CardFooter>
</Card>

Modal

import { Modal } from '@snps/ui';

<Modal
  isOpen={isOpen}
  onClose={() => setIsOpen(false)}
  title="Confirm Action"
  description="Are you sure you want to proceed?"
  size="md"
>
  <p>Modal content goes here</p>
  <div className="flex justify-end space-x-2 mt-4">
    <Button variant="secondary" onClick={() => setIsOpen(false)}>
      Cancel
    </Button>
    <Button variant="primary" onClick={handleConfirm}>
      Confirm
    </Button>
  </div>
</Modal>

Table

import { Table } from '@snps/ui';

const columns = [
  { key: 'name', title: 'Name', dataIndex: 'name' },
  { key: 'email', title: 'Email', dataIndex: 'email' },
  { key: 'actions', title: 'Actions', render: (_, record) => (
    <Button size="sm">Edit</Button>
  )}
];

const data = [
  { id: 1, name: 'John Doe', email: '[email protected]' },
  { id: 2, name: 'Jane Smith', email: '[email protected]' }
];

<Table
  data={data}
  columns={columns}
  pagination={{
    current: 1,
    pageSize: 10,
    total: 100,
    onChange: (page, pageSize) => console.log(page, pageSize)
  }}
  selectable
  onSelectionChange={(selected) => console.log(selected)}
/>

Dropdown

import { Dropdown } from '@snps/ui';

const items = [
  { key: 'profile', label: 'Profile', icon: <UserIcon /> },
  { key: 'settings', label: 'Settings', icon: <SettingsIcon /> },
  { key: 'divider', divider: true },
  { key: 'logout', label: 'Logout', icon: <LogoutIcon />, onClick: handleLogout }
];

<Dropdown
  trigger={<Button>Menu</Button>}
  items={items}
  placement="bottom-start"
/>

Toast Notifications

import { ToastProvider, useToast } from '@snps/ui';

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

function MyComponent() {
  const { addToast } = useToast();
  
  const showSuccess = () => {
    addToast({
      type: 'success',
      title: 'Success!',
      message: 'Your action was completed successfully.',
      duration: 3000
    });
  };
  
  return <Button onClick={showSuccess}>Show Toast</Button>;
}

🎭 Animations

All components include smooth animations and transitions:

// Hover animations
<Button hoverable>Hover me</Button>

// Loading states
<Button loading>Loading...</Button>

// Modal animations
<Modal isOpen={isOpen} onClose={onClose}>
  Content with smooth entrance/exit animations
</Modal>

♿ Accessibility

All components are built with accessibility in mind:

  • Keyboard Navigation - Full keyboard support
  • Screen Reader Support - Proper ARIA labels and roles
  • Focus Management - Logical focus flow
  • Color Contrast - WCAG 2.1 AA compliant
  • Semantic HTML - Proper HTML structure

📱 Responsive Design

Mobile-first approach with responsive utilities:

<Card className="w-full sm:w-1/2 lg:w-1/3">
  <Button className="w-full sm:w-auto">
    Responsive Button
  </Button>
</Card>

🎨 Customization

CSS Custom Properties

:root {
  --snps-primary: #6366f1;
  --snps-secondary: #8b5cf6;
  --snps-spacing-md: 1rem;
  /* ... more custom properties */
}

Component Variants

// Custom button variant
<Button 
  className="bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600"
>
  Gradient Button
</Button>

🧪 Testing

import { render, screen } from '@testing-library/react';
import { Button } from '@snps/ui';

test('renders button with text', () => {
  render(<Button>Click me</Button>);
  expect(screen.getByRole('button')).toHaveTextContent('Click me');
});

📚 Storybook

View all components in our interactive Storybook:

npm run storybook

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT License - see LICENSE for details.

🆘 Support

  • Documentation: https://ui.synapse.dev
  • Discord: https://discord.gg/synapse
  • GitHub Issues: https://github.com/synapse-framework/synapse/issues

Built with ❤️ by the Synapse Framework Team