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-angular

v1.0.0

Published

Enterprise Design Systems — Angular component library with design tokens, Storybook, and unit tests.

Readme

Enterprise Design Systems for Angular

Enterprise Design Systems for Angular is a token-driven component library for building modern, accessible, and visually consistent enterprise web applications with Angular. It combines reusable UI primitives, shared design tokens, theming support, and Storybook-powered documentation in one package.

This library is designed to align with the web-component version of the design system while providing a native Angular experience with standalone components and TypeScript-first APIs.

Why this library?

  • Build consistent enterprise UIs faster with reusable components
  • Keep styling and behavior aligned through shared design tokens
  • Support light and dark themes without duplicating component logic
  • Deliver accessible components with Storybook-driven examples and testing
  • Use a package structure that fits Angular library and application workflows

Features

  • Angular 19+ standalone components with eds-* style integration
  • Shared design tokens for color, typography, spacing, radius, elevation, and motion
  • Theme support with light/dark modes via EdsThemeService
  • Storybook 8 documentation with controls, docs, accessibility, themes, and interactions
  • Jest-based unit testing for component behavior
  • Clean public API exported from the library entry point

Installation

For consumers of the published package:

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

For local development in this repository:

cd enterprise-design-system-angular
npm install

Quick start

Start Storybook locally to explore components and examples:

npm run storybook

Open the local Storybook instance at:

  • http://localhost:6008

Example usage in an Angular application:

import { Component } from '@angular/core';
import {
  EdsButtonComponent,
  EdsThemeService,
  ToastService,
} from '@poluru-labs/enterprise-design-system-angular';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [EdsButtonComponent],
  template: `
    <eds-button (click)="notify()">Save</eds-button>
  `,
})
export class AppComponent {
  constructor(private theme: EdsThemeService, private toast: ToastService) {}

  toggleTheme() {
    this.theme.toggleTheme();
  }

  notify() {
    this.toast.show({ title: 'Saved', variant: 'success' });
  }
}

Include the library styles in your Angular app (for example in angular.json):

"styles": [
  "@poluru-labs/enterprise-design-system-angular/tokens.css",
  "@poluru-labs/enterprise-design-system-angular/styles.css",
  "src/styles.css"
]

Optional dark theme on the document root:

<html class="eds-theme-dark">
  <!-- or use EdsThemeService.setTheme('dark') -->
</html>

Theming

The library includes theme-aware design tokens and a lightweight service for switching between themes:

import { EdsThemeService } from '@poluru-labs/enterprise-design-system-angular';

constructor(private theme: EdsThemeService) {}

switchTheme() {
  this.theme.toggleTheme();
}

Development

Available scripts

| Command | Description | | --- | --- | | npm run storybook | Start Storybook on port 6008 | | npm run build | Build the library with ng-packagr into dist/ | | npm test | Run Jest unit tests | | npm run test:coverage | Generate a coverage report | | npm run test:watch | Run Jest in watch mode | | npm run typecheck | Type-check the project | | npm run clean | Remove build, coverage, and Storybook artifacts | | npm run pack:lib | Build and create an npm tarball from dist/ | | npm run publish:lib | Build and publish the package from dist/ |

Project structure

enterprise-design-system-angular/
├── .storybook/              # Storybook configuration and branding
├── src/
│   ├── lib/
│   │   ├── components/      # Angular components
│   │   ├── tokens/          # CSS and token definitions
│   │   ├── icons/           # Icon assets and metadata
│   │   ├── theme/           # Theme service and related logic
│   │   ├── utils/           # Shared utility helpers
│   │   └── styles/          # Global styles
│   ├── docs/                # Documentation content
│   └── public-api.ts        # Library entry point
├── package.json
├── ng-package.json
└── RELEASE_NOTES.md

Publishing

This library must be published from the built dist/ folder (not the repo root):

npm run pack:lib      # verify tarball contents
npm run publish:lib   # requires npm login with @poluru-labs publish rights

After publishing, tag the release in git (for example v1.0.0) and update RELEASE_NOTES.md.

Documentation and release notes

  • See RELEASE_NOTES.md for version history and notable updates.
  • Use Storybook for interactive examples and component documentation.
  • See CONTRIBUTING.md for local development and PR guidelines.
  • See SECURITY.md for private vulnerability reporting.

License

This project is licensed under the MIT License. See LICENSE and CODE_OF_CONDUCT.md.

Maintainer

  • Author: Subrahmanyam Poluru
  • Package: @poluru-labs/enterprise-design-system-angular
  • Brand: Enterprise Design Systems / Poluru Labs