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

@atic/csd-ui

v1.0.4

Published

CSD UI Design System Component Library for Angular

Readme

🎨 @atic/csd-ui

npm version license angular version

CSD UI is a state-of-the-art, premium Enterprise Design System & UI Component Library built specifically for Angular with Standalone Components. Designed with modern aesthetics, vibrant HSL color tokens, rich micro-animations, light/dark mode readiness, and accessible controls.


✨ Features

  • 🚀 100% Standalone Components: Compatible with Angular 17, 18, 19+. No legacy NgModule required.
  • 🎨 Modern & Premium Aesthetics: Tailored typography, smooth CSS variables, HSL color system, and subtle hover interactions.
  • 🌙 Dark Mode Support: Seamless toggle with predefined color tokens.
  • 📦 Zero-Config Tree-Shakable: Import only the components you need to keep your bundle size ultra-lightweight.
  • 📱 Fully Responsive: Crafted with modern flexbox and grid layouts.

⚡ Quick Start

1. Installation

Install @atic/csd-ui via npm:

npm install @atic/csd-ui@latest

2. Configure Global Styles

Add the CSD UI global design tokens and styles in your project's angular.json under the styles array:

"styles": [
  "src/styles.css",
  "node_modules/@atic/csd-ui/src/styles/styles.scss"
]

(Optional) If you want Bootstrap Icons for prefix/suffix icons:

<!-- Include in index.html -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">

💡 Component Usage Examples

Accordion Component

import { Component } from '@angular/core';
import { CsdAccordionGroupComponent, CsdAccordionPanelComponent } from '@atic/csd-ui';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [CsdAccordionGroupComponent, CsdAccordionPanelComponent],
  template: `
    <csd-accordion-group>
      <csd-accordion-panel title="Accordion Item 1" [expanded]="true">
        Welcome to CSD UI Design System!
      </csd-accordion-panel>
      <csd-accordion-panel title="Accordion Item 2">
        Flexible, lightweight, and customizable Angular components.
      </csd-accordion-panel>
    </csd-accordion-group>
  `
})
export class AppComponent {}

Button & Alert Component

import { Component } from '@angular/core';
import { CsdButtonComponent, CsdAlertComponent } from '@atic/csd-ui';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [CsdButtonComponent, CsdAlertComponent],
  template: `
    <csd-alert variant="success">Operation completed successfully!</csd-alert>
    <csd-button variant="primary">Submit Form</csd-button>
    <csd-button variant="light-primary">Soft Primary</csd-button>
    <csd-button variant="outline">Outline</csd-button>
  `
})
export class ExampleComponent {}

Form Input & Floating Labels

import { Component } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { CsdFormFieldComponent } from '@atic/csd-ui';

@Component({
  selector: 'app-login',
  standalone: true,
  imports: [FormsModule, CsdFormFieldComponent],
  template: `
    <csd-form-field label="Username" hint="Enter your registered username">
      <i prefix class="bi bi-person"></i>
      <input class="csd-input" type="text" [(ngModel)]="username" placeholder="john.doe" />
    </csd-form-field>
  `
})
export class LoginComponent {
  username = '';
}

📦 Available Components

| Category | Components / Directives | |---|---| | Buttons & Actions | CsdButtonComponent, CsdFabComponent, CsdButtonToggleComponent | | Forms & Controls | CsdFormFieldComponent, CsdRadioComponent, CsdSlideToggleComponent, CsdDatepickerComponent, CsdSliderComponent, CsdStepperComponent | | Navigation & Layout | CsdTabsComponent, CsdTabComponent, CsdDropdownComponent, CsdAccordionGroupComponent, CsdAccordionPanelComponent, CsdBreadcrumbComponent, CsdPaginatorComponent | | Feedback & Overlays | CsdAlertComponent, CsdToastComponent, CsdDialogComponent, CsdModalComponent, CsdOffcanvasComponent, CsdSpinnerComponent, CsdProgressComponent | | Data Display | CsdBadgeComponent, CsdChipComponent, CsdAvatarComponent, CsdCardComponent, CsdTreeviewComponent, CsdTimelineComponent, CsdKanbanBoardComponent | | Directives | CsdTooltipDirective, CsdPopoverDirective, CsdBlockUiDirective, CsdRippleDirective, CsdDraggableDirective |


📄 License

MIT © ATIC Design System Team