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

@kern-ux-annex/kern-angular-kit

v1.0.2

Published

Angular-Umsetzung der KERN UX-Standard Komponenten

Readme

@kern-ux-annex/kern-angular-kit

Version License: EUPL-1.2 TypeScript Angular

Angular component library implementing the KERN Design System. This library provides a comprehensive set of accessible, reusable UI components following the KERN UX standards.

🚀 Features

  • 🎨 KERN Design System - Complete implementation of KERN UX components
  • 📱 Modern Angular - Built with Angular 20.2+ using signal APIs
  • ♿ Accessibility First - WCAG 2.1 AA compliant components
  • 📝 Form Integration - Full Angular Forms support (Template-driven & Reactive)
  • 🔧 TypeScript Ready - Full TypeScript support with comprehensive type definitions
  • 📦 Tree Shakable - Optimized bundle size with standalone components
  • 🎯 Production Ready - Thoroughly tested and CI/CD integrated
  • 🔄 Signal-based - Modern Angular patterns with InputSignal and OutputEmitterRef

⚡ Quick Start

npm install @kern-ux-annex/kern-angular-kit

🛠️ Usage

Import Components

// Option 1: Import entire module
import { KernAngularKitModule } from '@kern-ux-annex/kern-angular-kit';

@NgModule({
  imports: [KernAngularKitModule]
})
export class AppModule {}

// Option 2: Import individual components (Recommended)
import { KernInputText, KernAlert } from '@kern-ux-annex/kern-angular-kit';

@Component({
  imports: [KernInputText, KernAlert],
  template: `...`
})
export class MyComponent {}

Basic Example

<kern-input-text
  labelText="Full Name"
  hintText="Enter your first and last name"
>
</kern-input-text>

<kern-alert title="Success!" variant="success">
  Form submitted successfully!
</kern-alert>

🎨 CSS Dependencies

You'll need the KERN UX CSS framework:

npm install @kern-ux/native

Add to your angular.json or main CSS file:

@import '@kern-ux/native/dist/kern.min.css';
@import '@kern-ux/native/dist/fonts/fira-sans.css';

🔧 Peer Dependencies

The library requires these Angular packages:

  • @angular/core: ^20.2.3
  • @angular/common: ^20.2.3
  • @angular/forms: ^20.2.3
  • @angular/localize: ^20.2.3

📄 Storybook Documentation

Explore all components interactively with our Storybook documentation

🔗 View Component Storybook

The Storybook includes:

  • 🎯 Interactive Examples - Live component demonstrations with controls
  • 📋 API Documentation - Complete property and event documentation
  • 🔧 Usage Examples - Copy-paste ready code snippets

📄 License

EUPL-1.2

🤝 Contributing

This package is part of the KERN-UX community project. For more information, visit: https://gitlab.opencode.de/kern-ux/community/angular-kit