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

@tylertech/forge-extended-angular

v2.0.1

Published

Forge components adapter library for Angular

Readme

Tyler Forge™ Extended Angular Adapter

Angular wrapper components for Tyler Forge™ Extended Web Components with full TypeScript support, Angular Forms integration, and tree-shakable modules.

Why This Library?

Angular doesn't natively recognize custom elements without CUSTOM_ELEMENTS_SCHEMA, which removes type safety and IDE support. This library provides:

  • Type-safe Angular components that wrap each Forge extended Web Component
  • Full TypeScript support with IntelliSense for properties and events
  • Angular Forms integration with ControlValueAccessor for formControl, formControlName, and ngModel
  • Tree-shakable modules - import only what you need
  • No CUSTOM_ELEMENTS_SCHEMA required

Version Compatibility

| @tylertech/forge-extended-angular | Angular | @tylertech/forge-extended | | ----------------------------------- | -------------------- | --------------------------- | | ^2.0.0 | >=20.0.0 < 22.0.0 | ^1.2.1 | | ^1.0.0 | >=19.0.0 < 21.0.0 | ^1.0.0 |

Installation

Install both the core Forge extended components and the Angular adapter:

npm install @tylertech/forge-extended @tylertech/forge-extended-angular

Note: @tylertech/forge-extended is a peer dependency and must be installed alongside this package.

Quick Start

import { Component } from '@angular/core';
import { ForgeQuantityFieldModule } from '@tylertech/forge-extended-angular';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [ForgeQuantityFieldModule],
  template: `<forge-quantity-field [value]="5"></forge-quantity-field>`
})
export class AppComponent {}

Usage

Standalone Components (Recommended)

Import component modules directly in your standalone components:

import { Component } from '@angular/core';
import { ForgeQuantityFieldModule } from '@tylertech/forge-extended-angular';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [ForgeQuantityFieldModule],
  template: `
    <forge-quantity-field
      [value]="quantity"
      (valueChange)="onQuantityChange($event)">
    </forge-quantity-field>
  `
})
export class ExampleComponent {
  quantity = 5;

  onQuantityChange(value: number): void {
    this.quantity = value;
  }
}

NgModule-based Applications

For traditional NgModule-based applications, import the component modules in your Angular module:

import { NgModule } from '@angular/core';
import { ForgeQuantityFieldModule } from '@tylertech/forge-extended-angular';

@NgModule({
  imports: [
    ForgeQuantityFieldModule,
    // ... other modules
  ]
})
export class AppModule { }

Then use the component in your templates:

<forge-quantity-field
  [value]="quantity"
  (valueChange)="onQuantityChange($event)">
</forge-quantity-field>

Using with Angular Forms

The adapter library provides ControlValueAccessor support for form-enabled components.

Standalone example:

import { Component } from '@angular/core';
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { ForgeQuantityFieldModule } from '@tylertech/forge-extended-angular';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [ReactiveFormsModule, ForgeQuantityFieldModule],
  template: `
    <forge-quantity-field [formControl]="quantityControl"></forge-quantity-field>
  `
})
export class ExampleComponent {
  quantityControl = new FormControl(5);
}

NgModule example:

import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { ForgeQuantityFieldModule } from '@tylertech/forge-extended-angular';

@NgModule({
  imports: [
    ReactiveFormsModule,
    ForgeQuantityFieldModule
  ]
})
export class FeatureModule { }
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';

@Component({
  selector: 'app-example',
  template: `
    <forge-quantity-field [formControl]="quantityControl"></forge-quantity-field>
  `
})
export class ExampleComponent {
  quantityControl = new FormControl(5);
}

Available Components

This library provides Angular wrappers for all Forge extended components:

| Component | Module | Description | |-----------|--------|-------------| | <forge-app-launcher> | ForgeAppLauncherModule | Application launcher with navigation | | <forge-app-launcher-link> | ForgeAppLauncherLinkModule | Link items for app launcher | | <forge-busy-indicator> | ForgeBusyIndicatorModule | Loading indicator overlay | | <forge-confirmation-dialog> | ForgeConfirmationDialogModule | Confirmation dialog component | | <forge-multi-select-header> | ForgeMultiSelectHeaderModule | Multi-select table header | | <forge-profile-link> | ForgeProfileLinkModule | User profile link component | | <forge-quantity-field> | ForgeQuantityFieldModule | Numeric input with increment/decrement | | <forge-responsive-toolbar> | ForgeResponsiveToolbarModule | Responsive toolbar container | | <forge-theme-toggle> | ForgeThemeToggleModule | Light/dark theme toggle | | <forge-user-profile> | ForgeUserProfileModule | User profile dropdown |

Each component is exported as a standalone Angular module that you can import individually for tree-shaking.

Additional Resources

License

Apache 2.0 - See LICENSE for details.