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

andhera-angular

v0.1.6

Published

Andhera UI Angular component library

Readme

Andhera Angular

A comprehensive Angular 20 UI component library featuring reusable components, directives, services, animations, and utilities for building modern admin dashboards and applications.

npm version license

Features

  • 🎨 Components - Chips (with variants, sizes, icons, removable)
  • 🎬 Animations - Fade, Slide, Zoom, Expand/Collapse, Shake
  • 📋 Directives - Scroll Reset, Custom Scrollbar (Perfect Scrollbar)
  • 🔧 Services - Config, Confirmation Dialog, Loading, Media Watcher, Platform Detection, Splash Screen, Utils
  • Validators - Form validators (mustMatch, etc.)
  • 🧪 Mock API - Built-in mock API interceptor for development

Installation

npm install andhera-angular

Peer Dependencies

This library requires the following peer dependencies:

npm install @angular/animations @angular/cdk @angular/common @angular/core @angular/forms @angular/material @angular/router rxjs

Usage

Import the provider in your app config

import { ApplicationConfig } from '@angular/core';
import { provideBee } from 'andhera-angular';

export const appConfig: ApplicationConfig = {
  providers: [
    provideBee({
      // Your Bee configuration
      layout: 'classy',
      scheme: 'light',
      screens: { sm: '600px', md: '960px', lg: '1280px', xl: '1440px' },
      theme: 'theme-default',
      themes: [{ id: 'theme-default', name: 'Default' }],
    }),
  ],
};

Using Chips Component

import { Component } from '@angular/core';
import { BeeChipsComponent } from 'andhera-angular';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [BeeChipsComponent],
  template: `
    <!-- Single chip -->
    <bee-chips 
      label="Angular" 
      variant="primary" 
      size="md"
      [removable]="true"
      (removed)="onRemoved()"
      (clicked)="onClicked($event)">
    </bee-chips>

    <!-- Chip with icon -->
    <bee-chips 
      label="Settings" 
      icon="pi pi-cog"
      iconPosition="left"
      variant="secondary">
    </bee-chips>

    <!-- Different variants -->
    <bee-chips label="Success" variant="success"></bee-chips>
    <bee-chips label="Warning" variant="warning"></bee-chips>
    <bee-chips label="Error" variant="error"></bee-chips>
    <bee-chips label="Outline" variant="outline"></bee-chips>

    <!-- Different sizes -->
    <bee-chips label="XS" size="xs"></bee-chips>
    <bee-chips label="SM" size="sm"></bee-chips>
    <bee-chips label="MD" size="md"></bee-chips>
    <bee-chips label="LG" size="lg"></bee-chips>
    <bee-chips label="XL" size="xl"></bee-chips>
  `,
})
export class ExampleComponent {
  onRemoved() {
    console.log('Chip removed');
  }

  onClicked(event: MouseEvent) {
    console.log('Chip clicked', event);
  }
}

Using Services

import { Component, inject } from '@angular/core';
import { BeeConfirmationService } from 'andhera-angular';

@Component({
  selector: 'app-example',
  template: `<button (click)="confirm()">Delete</button>`,
})
export class ExampleComponent {
  private confirmationService = inject(BeeConfirmationService);

  confirm() {
    const dialogRef = this.confirmationService.open({
      title: 'Confirm Delete',
      message: 'Are you sure you want to delete this item?',
      actions: {
        confirm: { label: 'Delete', color: 'warn' },
        cancel: { label: 'Cancel' },
      },
    });

    dialogRef.afterClosed().subscribe((result) => {
      if (result === 'confirmed') {
        // Handle deletion
      }
    });
  }
}

Using Animations

import { Component } from '@angular/core';
import { beeAnimations } from 'andhera-angular';

@Component({
  selector: 'app-example',
  animations: beeAnimations,
  template: `
    <div [@fadeIn]>Fading in content</div>
    <div [@slideInLeft]>Sliding in from left</div>
  `,
})
export class ExampleComponent {}

Using Directives

import { Component } from '@angular/core';
import { BeeScrollbarDirective } from 'andhera-angular';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [BeeScrollbarDirective],
  template: `
    <div [beeScrollbar]="true" style="height: 300px; overflow: hidden;">
      <!-- Scrollable content -->
    </div>
  `,
})
export class ExampleComponent {}

Available Exports

Components

| Component | Selector | Description | |-----------|----------|-------------| | BeeChipsComponent | bee-chips | Chips with variants, sizes, icons |

Services

| Service | Description | |---------|-------------| | BeeConfigService | App configuration management | | BeeConfirmationService | Confirmation dialogs | | BeeLoadingService | Loading state management | | BeeMediaWatcherService | Responsive breakpoint observer | | BeePlatformService | Platform/OS detection | | BeeSplashScreenService | Splash screen control | | BeeUtilsService | Utility functions |

Directives

| Directive | Selector | Description | |-----------|----------|-------------| | BeeScrollbarDirective | [beeScrollbar] | Custom scrollbar | | BeeScrollResetDirective | [beeScrollReset] | Reset scroll on navigation |

Configuration

The library can be configured via the provideBee() function:

provideBee({
  layout: 'classy',           // Layout type
  scheme: 'light',            // 'light' | 'dark' | 'auto'
  screens: {                  // Breakpoints
    sm: '600px',
    md: '960px',
    lg: '1280px',
    xl: '1440px',
  },
  theme: 'theme-default',     // Active theme
  themes: [                   // Available themes
    { id: 'theme-default', name: 'Default' },
  ],
})

Development

npm install
npm run build:lib

Publishing

npm run build:lib
cd dist/bee-library
npm publish --access public

Version

Current version: 0.1.0

Compatible with Angular 20.x

License

MIT © Andhera Team

See LICENSE for details.

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting a PR.

Support

For issues and feature requests, please use the GitHub issue tracker.