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

@sinequa/atomic-angular

v0.3.25

Published

[![npm version](https://img.shields.io/npm/v/@sinequa/atomic-angular.svg)](https://npm.sinequa.com/@sinequa/atomic-angular) [![Angular](https://img.shields.io/badge/Angular-v20-red.svg)](https://angular.dev) [![TypeScript](https://img.shields.io/badge/T

Readme

@sinequa/atomic-angular

npm version Angular TypeScript

A comprehensive Angular component library and design system for building modern Sinequa search applications.

Overview

@sinequa/atomic-angular provides a complete set of UI components, features, and utilities for building enterprise-grade search applications powered by Sinequa. Built with Angular 20+ and modern web standards, it offers a consistent, accessible, and themeable framework with TypeScript-first development experience.

Installation

npm install @sinequa/atomic-angular

Peer Dependencies

{
  "@angular/common": "^20.0.0",
  "@angular/core": "^20.0.0",
  "rxjs": "^7.8.0"
}

Features

🔐 Authentication & Authorization

  • Complete authentication flows with SSO support
  • Password management (expiry, forgotten, change)
  • Route guards and access control
  • Multi-language support (EN, FR, DE)

🔍 Advanced Search

  • Powerful filter system with aggregations
  • "Did You Mean" suggestions and autocomplete
  • Recent and saved searches
  • Bookmark and collection management
  • Document preview and navigation
  • Export functionality

🛠️ Developer Experience

  • TypeScript-first with full type safety
  • Standalone components (no NgModules required)
  • Signal-based reactivity for better performance
  • Modern syntax: @if, @for, @switch control flow
  • Tree-shakeable for optimal bundle size

Package Structure

@sinequa/atomic-angular

components/       # Reusable UI components
  ├── backdrop/
  ├── document-locator/
  ├── navbar-tabs/
  ├── pagination/
  └── ...
  
features/         # Feature modules
  ├── auth/       # Authentication flows
  ├── filters/    # Filter system
  ├── bookmarks/  # Bookmark management
  ├── collections/
  └── ...
  
services/         # Business logic services
stores/           # State management
guards/           # Route guards
pipes/            # Custom pipes
utils/            # Utility functions

Available Components

Core Components

  • SearchInputComponent - Advanced search input with autocomplete
  • FiltersComponent - Dynamic filter system
  • PaginationComponent - Result pagination
  • DocumentLocatorComponent - Document navigation
  • PreviewComponent - Document preview
  • BackdropComponent - Backdrop overlay
  • NavbarTabsComponent - Navigation tabs
  • NoResultComponent - No results display
  • SortSelectorComponent - Sort options selector

Authentication

  • SignInFormComponent - User sign-in
  • ChangePasswordFormComponent - Password change
  • ForgotPasswordFormComponent - Password recovery
  • AuthGuard - Route protection
  • PasswordExpiryGuard - Password expiry detection

Features

  • Alerts management
  • Bookmarks system
  • Collections management
  • Advanced search drawer
  • Export functionality
  • Feedback system
  • Labels management
  • Recent searches
  • Saved searches

API Documentation

Services

// ApplicationService - Core application logic
import { ApplicationService } from '@sinequa/atomic-angular';

// AggregationsService - Filter management
import { AggregationsService } from '@sinequa/atomic-angular';

// AuthService - Authentication
import { AuthService } from '@sinequa/atomic-angular';

Guards

import { AuthGuard, PasswordExpiryGuard } from '@sinequa/atomic-angular';

const routes: Routes = [
  {
    path: 'search',
    canActivate: [AuthGuard],
    component: SearchComponent
  },
  {
    path: 'profile',
    canActivate: [AuthGuard, PasswordExpiryGuard],
    component: ProfileComponent
  }
];

Changelog

Recent Releases

v0.3.8 (2025-12-18)

  • Added chevron icon in document locator menu
  • Improved component structure

v0.3.7 (2025-12-17)

  • Fixed parent selection in filters with linkChildren
  • Enhanced selection state management

v0.3.6 (2025-12-17)

  • Enhanced "Did You Mean" component styling
  • Added text truncation for long filter names

v0.3.4 (2025-12-15)

  • Complete password management flows
  • Added PasswordExpiryGuard

v0.3.0 (2025-12-09) - Major Release

  • New Chapsvision theme system
  • Standardized icon components
  • New InputGroup architecture
  • Badge API changes

See full changelog for details.

Migration Guide

Migrating from 0.2.x to 0.3.0+

Authentication

// Before
import { SignInComponent } from '@sinequa/atomic-angular';
// After
import { SignInFormComponent } from '@sinequa/atomic-angular';

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

Requirements

  • Angular 20+
  • TypeScript 5.7+
  • Node.js 18+

License

Proprietary - Copyright © 2025 Sinequa. All rights reserved.

Support

Built by the Sinequa Team