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

@sinequa/ui

v0.1.50

Published

![npm](https://img.shields.io/npm/v/@sinequa/ui?style=flat-square) ![Angular](https://img.shields.io/badge/angular-%5E20.0.0-red?style=flat-square)

Readme

@sinequa/ui

npm Angular

✨ Elegant, customizable Angular UI components for building modern web applications. This library provides a comprehensive set of components such as buttons, dropdowns, cards, sidebar, tabs, and more, designed for flexibility and ease of use.


🗂️ Table of Contents

  • Overview
  • Installation
  • Features
  • Components
    • Button
    • Card
    • Sidebar
    • Tabs
    • Dropdown
    • Avatar
    • Badge
    • Divider
    • Popover
    • Input
    • List Item
    • Menu
    • Page Header
    • Search

📖 Overview

This library facilitates template management by providing a rich set of UI components such as buttons, dropdowns, cards, sidebar, and more. Each component is designed to be easily integrated and customized within your Angular application.

📦 Installation

Install via npm:

npm i @sinequa/ui

⭐ Features

  • ✨ Modern, accessible Angular UI components
  • 🎨 Highly customizable with variants and sizes
  • ⚡ Easy integration and usage
  • 🧱 Consistent design system

🧩 Components

🔘 Button

Stylized Angular button with multiple variants and sizes.

<button variant="outline" (click)="onClick()">Label</button>

🃏 Card

Container with header, content, and footer sections.

<Card>
  <CardHeader>Header</CardHeader>
  <CardContent>Content</CardContent>
  <CardFooter>Footer</CardFooter>
</Card>

📚 Sidebar

Sidebar menu with items and separators.

<sidebar>
  <sidebar-item>Item 1</sidebar-item>
  <sidebar-separator />
  <sidebar-item>Item 2</sidebar-item>
</sidebar>

📑 Tabs

Tab navigation with customizable tabs.

<tabs>
  <tab variant="selected2" [active]="true">Tab 1</tab>
  <tab>Tab 2</tab>
</tabs>

⬇️ Dropdown

Reusable dropdown menu component.

<Dropdown>
  <button>Toggle Dropdown</button>
  <div dropdown-content>Dropdown Content</div>
</Dropdown>

👤 Avatar

Display avatar images with fallback support.

<Avatar>
  <AvatarImage src="somesource" width="44" height="44" alt="avatar" />
  <AvatarFallback>
    <UserRound class="size-7 p-1" />
  </AvatarFallback>
</Avatar>

🏷️ Badge

Stylized badge for text or status.

<Badge variant="secondary">Badge Text</Badge>

➖ Divider

Horizontal and vertical dividers for content separation.

<HorizontalDivider />
<VerticalDivider />

💬 Popover

Display rich content in a portal, triggered by a button.

<Popover>
  <button>Popover trigger</button>
  <PopoverContent>Popover Content</PopoverContent>
</Popover>

⌨️ Input

Custom styled input and search input components.

<input type="text" />
<InputSearch placeholder="Search..." />

📋 List Item

Styled list items for lists and options.

<ul>
  <li role="listitem">Element 1</li>
  <li role="listitem" variant="destructive">Destructive element</li>
</ul>

📜 Menu

Dropdown menu with support for nested menus.

<Menu>
  <MenuContent>
    <MenuItem>Menu Item 1</MenuItem>
    <MenuSeparator />
    <MenuItem>Menu Item 2</MenuItem>
  </MenuContent>
</Menu>

📰 Page Header

Stylized header for pages.

<PageHeader class="fixed top-0 z-1 ml-8 w-full bg-white">
  <!-- Header content -->
</PageHeader>

🔍 Search

Container with search icon, input, and clear button.

<Search>
  <button>Additional button</button>
</Search>

📝 License

MIT