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

angular-awesome

v3.8.0

Published

Angular 20+ wrappers for the Web Awesome 3.8.x web components framework

Readme

Angular Awesome

CI npm version License Angular TypeScript

Angular 20+ wrapper directives for the Web Awesome web-components framework.

Overview

Angular Awesome provides first-class Angular directives that wrap every Web Awesome web component, giving you:

  • Native Angular binding@Input() properties, @Output() events, and two-way binding via ngModel / Reactive Forms where applicable.
  • Template form error-state management — wrappers participate in Angular validation so template-driven errors and state flags are available without extra plumbing.
  • No custom schema required — importing standalone wrappers avoids needing CUSTOM_ELEMENTS_SCHEMA just to use Web Awesome tags.
  • Lazy loading where it matters — selected components support lazy-loading patterns to reduce initial bundle and render cost.
  • Full component coverage — 72+ directives including layout primitives, form controls, navigation, overlays, charts, media, toasts, and more.
  • Type safety — full TypeScript declarations with strict mode support.
  • Lightweight — thin wrappers with zero extra runtime dependencies beyond Angular and Web Awesome.

Prerequisites

| Dependency | Version | |--------------|----------| | Angular | >=20.0 | | Node.js | 20+ | | Web Awesome* | 3.3.x |

Installation

npm install angular-awesome

Make sure the Web Awesome stylesheet and scripts are loaded in your application (see the Web Awesome docs for details).

Quick Start

Import the directives you need directly — every directive is standalone:

import { WaButtonDirective } from 'angular-awesome';

@Component({
  standalone: true,
  imports: [WaButtonDirective],
  template: `<wa-button variant="brand" (click)="save()">Save</wa-button>`,
})
export class MyComponent {
  save() {
    console.log('Saved!');
  }
}

Available Components

| Category | Components | |-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Layout | wa-layout-align, wa-layout-cluster, wa-layout-flank, wa-layout-frame, wa-layout-gap, wa-layout-grid, wa-layout-split, wa-layout-stack | | Navigation | wa-breadcrumbs, wa-tab-group, wa-tree | | Buttons | wa-button, wa-button-group, wa-copy-button | | Form Controls | wa-checkbox, wa-color-picker, wa-combobox, wa-file-input, wa-input, wa-number-input, wa-radio, wa-rating, wa-select, wa-slider, wa-switch, wa-text-area | | Data Display | wa-avatar, wa-badge, wa-card, wa-carousel, wa-comparison, wa-icon, wa-skeleton, wa-sparkline, wa-tag, wa-text, wa-qr-code | | Charts | wa-chart, wa-bar-chart, wa-bubble-chart, wa-doughnut-chart, wa-line-chart, wa-pie-chart, wa-polar-area-chart, wa-radar-chart, wa-scatter-chart | | Feedback | wa-callout, wa-dialog, wa-drawer, wa-popover, wa-popup, wa-toast, wa-toast-item, wa-tooltip | | Progress | wa-progress-bar, wa-progress-ring, wa-spinner | | Formatting | wa-format-bytes, wa-format-date, wa-format-number, wa-relative-time | | Media | wa-animated-image, wa-animation, wa-video, wa-video-playlist, wa-zoomable-frame | | Utilities | wa-divider, wa-dropdown, wa-include, wa-intersection-observer, wa-markdown, wa-mutation-observer, wa-resize-observer, wa-scroller, wa-split-panel |

Development

Build

npm install
npm run build

Test

# Headless (recommended — no browser window)
npm run test:headless

# Interactive (opens Chrome for debugging)
npm test

Documentation

npm run docs:build

Generated docs are deployed to https://gedmarc.github.io/angular-awesome.

Project Structure

src/
├── directives/       # One folder per Web Awesome component
│   ├── button/
│   ├── checkbox/
│   ├── dialog/
│   └── ...           # 72+ component directories
├── services/         # Shared Angular services (e.g. toast service)
├── types/            # Shared TypeScript types
├── public-api.ts     # Library public API surface
└── test-main.ts      # Karma test bootstrap

Contributing

Contributions are welcome! Please:

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/my-change).
  3. Run npm run build and npm run test:headless to verify your changes.
  4. Open a pull request against master.

All pull requests are validated by the CI workflow.

License

This project is licensed under the Apache License 2.0.

Links