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

@poluru-labs/enterprise-design-system-react

v1.0.0

Published

Enterprise Design System — React components, design tokens, ThemeProvider, ToastProvider, and Storybook.

Downloads

25

Readme

@poluru-labs/enterprise-design-system-react

Token-driven enterprise UI library built with React, TypeScript, Jest, and Storybook. Feature parity with @poluru-labs/enterprise-design-system-wc, plus React APIs (ThemeProvider, ToastProvider / useToast).

npm version npm downloads License: MIT CI Demo

Demo

Live Demo: enterprise-design-system-react

Playground

Try it here: enterprise-design-system-react

Install

npm install @poluru-labs/enterprise-design-system-react

Peer dependencies: React 18.3+ or 19.
Runtime: Node.js 20+ for tooling.

yarn add @poluru-labs/enterprise-design-system-react
pnpm add @poluru-labs/enterprise-design-system-react

Usage

import {
  Button,
  ThemeProvider,
  ToastProvider,
  showToast,
} from '@poluru-labs/enterprise-design-system-react';
// Required — component styles + tokens (Vite does not inject CSS from the JS entry)
import '@poluru-labs/enterprise-design-system-react/styles.css';

export function App() {
  return (
    <ThemeProvider defaultTheme="light">
      <ToastProvider>
        <Button
          onClick={() => showToast({ title: 'Saved', variant: 'success' })}
        >
          Save
        </Button>
      </ToastProvider>
    </ThemeProvider>
  );
}

Package exports

| Import | What you get | | --- | --- | | @poluru-labs/enterprise-design-system-react | Components, theme, toast APIs, typed tokens | | @poluru-labs/enterprise-design-system-react/styles.css | Bundled tokens + component styles (import this in apps) | | @poluru-labs/enterprise-design-system-react/tokens.css | Tokens only (light + dark), if you need tokens without the full style bundle |

Dark theme

<ThemeProvider defaultTheme="dark">{/* … */}</ThemeProvider>

Or add class eds-theme-dark on html / body.

Design tokens

import { tokens, color, spacing } from '@poluru-labs/enterprise-design-system-react';

Features

  • React 18+ / 19 components with TypeScript
  • Shared design tokens with the WC package (color, typography, spacing, radius, elevation, motion)
  • Light + dark themes via ThemeProvider / useTheme
  • Toasts via ToastProvider / useToast / showToast
  • Accessible defaults: labels, ARIA, keyboard support, focus-visible styles
  • Storybook 8 with Controls, Docs, a11y, themes, and interactions
  • Jest + Testing Library (coverage thresholds enforced)

Accessibility

  • Semantic controls and labelled form fields
  • Icon-only buttons support accessibleLabel / aria-label
  • Keyboard support for overlays, menus, tabs, tree view, calendars, and file upload
  • VisuallyHidden helper for screen-reader-only content
  • Storybook Accessibility addon (@storybook/addon-a11y) on every story
  • ESLint jsx-a11y rules in the package toolchain

Components

50+ components including Button, Input, Select, Checkbox, Switch, Tabs, Modal, Drawer, Toast, DataTable, DatePicker, Accordion, Alert, Avatar, Badge, Card, Combobox, DropdownMenu, Pagination, Slider, Tooltip, TreeView, and more.

Eds* aliases are exported alongside React names (e.g. EdsButton = Button).

See RELEASE_NOTES.md for the full list.

Documentation

| Resource | Link | | --- | --- | | Demo (Storybook) | https://polurus.com/enterprise-design-system-react/ | | GitHub | https://github.com/poluru-labs/enterprise-design-system-react | | Changelog | https://github.com/poluru-labs/enterprise-design-system-react/blob/main/CHANGELOG.md | | Contributing | https://github.com/poluru-labs/enterprise-design-system-react/blob/main/CONTRIBUTING.md | | Support | https://github.com/poluru-labs/enterprise-design-system-react/blob/main/SUPPORT.md | | Security | https://github.com/poluru-labs/enterprise-design-system-react/blob/main/SECURITY.md | | Sibling (WC) | https://www.npmjs.com/package/@poluru-labs/enterprise-design-system-wc |

Local Storybook

git clone https://github.com/poluru-labs/enterprise-design-system-react.git
cd enterprise-design-system-react
npm install
npm run storybook

Open http://localhost:6007

Author

Subrahmanyam Poluru

Design systems architect and product engineer. Builds token-driven component libraries and documentation platforms for enterprise teams.

License

MIT © Subrahmanyam Poluru /

See NOTICE and AUTHORS.

Issues

Bugs and feature requests: GitHub Issues
Security reports: SECURITY.md (private disclosure)