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

pada-ds

v1.1.0

Published

Singular design system for React applications, built with TypeScript and Vite.

Readme

Pada Design System

Pada Design System Demo

This is a React design system built with Vite. It includes a set of reusable components and a demo application to showcase them.

Visit Pada.design to learn more

Figma design file

Avail the Figma file of the design system in the community for free

Figma file

Installation

To install the design system, run:

npm install pada-ds

Usage

import 'pada-ds/tokens.css';
import 'pada-ds/styles.css';
import { Button } from 'pada-ds';

Components

This design system includes the following components:

  • Accordion: Collapsible sections to show/hide content.
  • Banner: Notices and important messages display.
  • Button: Clickable control for primary actions.
  • Card: Container for grouped related content.
  • Carousel: Scrollable content carousel with controls.
  • Checkbox: Binary selection with label support.
  • CodeSnippet: Display formatted, copyable code blocks.
  • ComboBox: Filterable list dropdown with options.
  • DatePicker: Select dates via calendar UI.
  • FormLabel: Accessible labels for form fields.
  • Icon: Reusable SVG icons for UI.
  • Indexer: Alphabetical index navigation component.
  • InputDate: Single-line date input field.
  • InputText: Single-line text input field.
  • InputTextArea: Multi-line text input area.
  • KeyValue: Render key/value metadata pairs.
  • List: Generic list rendering component.
  • Loader: Indicate loading state visually.
  • Logo: Project or brand logo component.
  • Modal: Overlay dialog for focused tasks.
  • Notification: Transient alert messages and toasts.
  • PageHeader: Page title and actions area.
  • Pills: Compact, selectable pill-style buttons.
  • Popover: Floating container for contextual content.
  • Progress: Visual progress indicators for tasks.
  • RadioGroup: Grouped single-choice radio buttons.
  • SearchField: Text search input with clear.
  • SegmentControl: Segmented button toggle control.
  • Select: Dropdown selection with ComboBox.
  • SideDrawer: Slide-in side panel for navigation.
  • Sidebar: Fixed side navigation area.
  • Slider: Range selection slider control.
  • Steps: Multi-step progress indicator component.
  • Switch: Toggle between on/off states.
  • Table: Responsive tabular data display component.
  • Tabs: Tabbed navigation interface component.
  • Tags: Compact label tags for metadata.
  • Text: Typography primitives and helpers.
  • Toolbar: Action toolbar with controls.
  • Tooltip: Hover tooltip for extra info.
  • UploadField: File upload field with progress.

Examples

Here are some examples of how to use the components:

import React from 'react';
import 'pada-ds/tokens.css';
import 'pada-ds/styles.css';
import { Button } from 'pada-ds';

const App = () => (
  <div>
    <Button variant="primary">Click me</Button>
  </div>
);