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

@gawtech/angular-components

v2.0.6

Published

Componentes Angular desenvolvidos pela GawTech

Readme

GawTech - Angular Components

npm version Angular PrimeNG npm downloads License: Proprietary

A modern, type-safe collection of Angular components built with PrimeNG and Tailwind CSS. Designed to accelerate enterprise development with production-ready, fully customizable components.

Features:

  • 🎯 Type-Safe - Full TypeScript support with strict typing
  • 🧩 Modular Architecture - Import only what you need
  • 🎨 Theme-Ready - Native PrimeNG theme integration
  • Standalone Components - Compatible with Angular's latest architecture
  • 📱 Responsive - Mobile-first design with Tailwind CSS
  • Accessible - WCAG compliant components

⚙️ System Requirements

| Dependency | Version | Required | Notes | |------------|---------|----------|-------| | Angular | ^19.2.0 | ✅ | Core framework | | Angular Forms | ^19.2.0 | ✅ | Reactive forms support | | Angular Router | ^19.2.0 | ✅ | For breadcrumb navigation | | PrimeNG | ^19.1.3 | ✅ | UI component library | | PrimeNG Themes | ^19.1.3 | ✅ | Theme system | | Tailwind CSS | ^3.4.0 | ✅ | Utility-first CSS | | Tailwindcss-PrimeUI | ^0.6.1 | ✅ | With Tailwindcss-primeui | | RxJS | ~7.8.0 | ✅ | Reactive programming | | TypeScript | ~5.7.0 | ✅ | Type safety |

📦 Quick Start

Installation

npm install @gawtech/angular-components

🛠️ Setup

  1. Install required peer dependencies:
# Angular core packages
npm install @angular/core@^19 @angular/common@^19 @angular/forms@^19 @angular/router@^19 @angular/platform-browser@^19 rxjs@~7

# PrimeNG UI components and themes
npm install primeng@^19 @primeng/themes@^19

# Tailwind CSS integration
npm install tailwindcss@^3 tailwindcss-primeui@^0.6
  1. Configure your Angular application:
// app.config.ts
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';

import { providePrimeNG } from 'primeng/config';
import Aura from '@primeng/themes/aura';

export const appConfig: ApplicationConfig = {
  providers: [
    // ... other providers
    provideAnimationsAsync(),
    providePrimeNG({
      theme: {
        preset: Aura
      }
    })
  ]
};
  1. Import Tailwind CSS and PrimeNG styles:
/* styles.scss */
@tailwind base;
@tailwind components;
@tailwind utilities;
  1. Create and configure tailwind.config.js:

If you don’t have a Tailwind configuration yet, create it:

npx tailwindcss init

Then edit tailwind.config.js:

import PrimeUI from 'tailwindcss-primeui';
import { GawtechUI } from '@gawtech/angular-components/tailwind';

export default {
  darkMode: ['selector', '[class*="app-dark"]'],
  content: [
    './index.html',
    './src/**/*.{html,ts}',
    "./node_modules/@gawtech/angular-components/**/*.{js,mjs,html,ts}",
  ],
  plugins: [PrimeUI, GawtechUI],
  theme: {
    extend: {},
    screens: {
      sm: '576px',
      md: '768px',
      lg: '992px',
      xl: '1200px',
      '2xl': '1920px',
    },
  },
};

💡 Important:
Including ./node_modules/@gawtech/angular-components/**/*.{js,mjs,html,ts} in content ensures all Tailwind classes used by the components are generated correctly in your build.
Without this configuration, styles may not appear or may break in production.

🎉 Setup Complete!

Your Angular application is now fully configured and ready to use GawTech Angular Components!

You can now:

  • ✅ Import and use any of the available components
  • ✅ Customize themes and styling as needed
  • ✅ Build production-ready applications

Check out the component documentation below to get started with implementation.

🧩 Available Components

| Component | Description | Documentation | | --------------------- | ------------------------------------- | ------------------------------------------------------------- | | Breadcrumb | Breadcrumb navigation component | 📄 Breadcrumb README | | Control Errors | Standardized validation error display | 📄 Control Errors README | | Dynamic Form (Beta) | Fully dynamic form generator | 📄 Dynamic Form README |

🗺️ Roadmap

This library is under active development. New components and features will be added in future releases.

📬 Support & Feedback

This library is distributed as a private package via npm. If you encounter any issues, have feature requests, or would like to provide feedback, please contact us directly:

Email: [email protected]

We value your feedback and aim to continuously improve our component suite.

🔑 License

This library is proprietary software developed by GawTech.

  • Free to use in your Angular projects
  • Commercial use permitted
  • Source code is not distributed
  • Redistribution not permitted

For full terms, see the LICENSE file.


Built with ❤️ by GawTech