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

@synerity/ui

v3.0.28

Published

Synerity UI Component Library

Readme

@synerity/ui

A comprehensive Angular UI component library with 90+ components including forms, data display, navigation, and utility components.

🚀 Features

  • 90+ Components: Complete set of UI components for Angular applications
  • Angular 17+ Support: Compatible with Angular 17, 18, 19, and 20
  • Tailwind CSS: Built with Tailwind CSS for modern styling
  • TypeScript: Fully typed components with excellent IDE support
  • Standalone Components: Modern Angular standalone component architecture
  • Accessibility: WCAG compliant components with proper ARIA support
  • Responsive: Mobile-first responsive design
  • Customizable: Easy theming and customization options

📦 Installation

npm install @synerity/ui

🎯 Quick Start

1. Import the component you need

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

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [Button],
  template: `
    <sui-button label="Click me" severity="primary"></sui-button>
  `
})
export class ExampleComponent {}

2. Add Tailwind CSS to your project

npm install -D tailwindcss
npx tailwindcss init

Update your tailwind.config.js:

module.exports = {
  content: [
    "./src/**/*.{html,ts}",
    "./node_modules/@synerity/ui/**/*.{html,ts}"
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

🧩 Component Categories

Foundation Components

  • Button - Various button styles and states
  • InputText - Text input with validation
  • InputTextarea - Multi-line text input
  • Card - Content container with header and footer

Form Components

  • Checkbox - Checkbox input with labels
  • RadioButton - Radio button groups
  • Select - Dropdown selection
  • DatePicker - Date selection component
  • ColorPicker - Color selection
  • Slider - Range input slider
  • Rating - Star rating component
  • ToggleSwitch - On/off toggle switch

Data Display

  • Table - Feature-rich data table
  • DataView - Flexible data display
  • Tree - Hierarchical data display
  • TreeTable - Tree structure in table format
  • Paginator - Data pagination
  • Timeline - Chronological data display

Navigation

  • Menu - Application navigation menu
  • Menubar - Horizontal menu bar
  • Breadcrumb - Navigation breadcrumbs
  • Tabs - Tabbed content interface
  • Accordion - Collapsible content sections

Overlay Components

  • Dialog - Modal dialogs
  • Tooltip - Contextual information
  • Popover - Floating content
  • Sidebar - Slide-out panel
  • OverlayPanel - Floating panel

Utility Components

  • ProgressBar - Progress indication
  • ProgressSpinner - Loading spinner
  • Badge - Status indicators
  • Avatar - User profile images
  • Tag - Label components
  • Chip - Compact information chips

🎨 Theming

All components support Tailwind CSS classes and can be customized using CSS custom properties:

:root {
  --sui-primary-color: #3b82f6;
  --sui-secondary-color: #6b7280;
  --sui-success-color: #10b981;
  --sui-warning-color: #f59e0b;
  --sui-danger-color: #ef4444;
}

📚 Documentation

🤝 Contributing

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

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🆘 Support

🔗 Related Packages


Made with ❤️ by Synerity AI