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

@flexzap/buttons

v1.0.2

Published

All the buttons components that makes part of the flexzap library

Readme

@flexzap/buttons

Flexible and reusable button components for Angular applications. Part of the FlexZap Library ecosystem.

Installation

npm install @flexzap/buttons

Peer Dependencies

This library requires the following peer dependencies:

npm install @angular/common@^21.0.0 @angular/core@^21.0.0

Usage

Basic Implementation

import { Component } from '@angular/core';
import { ZapButton } from '@flexzap/buttons';

@Component({
  imports: [ZapButton],
  template: `
    <zap-button (clicked)="handleClick()"> Click Me </zap-button>

    <zap-button [type]="'submit'" (clicked)="handleSubmit()"> Submit Form </zap-button>

    <zap-button [disabled]="isDisabled" (clicked)="handleClick()"> Disabled Button </zap-button>
  `
})
export class MyComponent {
  isDisabled = true;

  handleClick() {
    console.log('Button clicked!');
  }

  handleSubmit() {
    console.log('Form submitted!');
  }
}

API Reference

ZapButton Component

A flexible button component with customizable behavior and styling.

Inputs

| Property | Type | Default | Description | | ---------- | --------------------------------- | ---------- | ------------------------------ | | type | 'button' \| 'submit' \| 'reset' | 'button' | Sets the button type attribute | | disabled | boolean | false | Disables the button when true |

Outputs

| Event | Type | Description | | --------- | ------ | ---------------------------------- | | clicked | void | Emitted when the button is clicked |

Features

  • OnPush Change Detection: Optimized performance with OnPush strategy
  • SCSS Styling: Customizable styles with SCSS support
  • Accessibility: Built-in accessibility features
  • Standalone Component: No module imports required

Styling

The component uses SCSS for styling. You can customize the appearance by overriding the default styles:

zap-button {
  // Custom button styles
  --zap-button-color: #007bff;
  --zap-button-hover-color: #0056b3;
}

Testing

This library uses Jest for unit testing with zoneless Angular configuration.

Running Tests

# From the monorepo root
npm run buttons:test            # Run all unit tests with coverage
npm run buttons:test:watch      # Run tests in watch mode (no coverage)

Test Configuration

  • Framework: Jest with jest-preset-angular
  • Environment: jsdom
  • Configuration: Zoneless Angular (mandatory)
  • Coverage: Reports generated at coverage/flexzap/buttons/

Development

Building the Library

# From the monorepo root
npm run buttons:build       # Build with version bump
ng build @flexzap/buttons   # Build directly

Code Scaffolding

To generate new components within this library:

ng generate component [component-name] --project @flexzap/buttons

Publishing

Build for Publication

# From the monorepo root
npm run buttons:build

Publish to NPM

cd dist/flexzap/buttons
npm publish --access public

Contributing

This library is part of the FlexZap Library monorepo. Please refer to the main repository for contribution guidelines.

Development Guidelines

  • Use standalone components (default behavior)
  • Use input() and output() functions instead of decorators
  • Set changeDetection: ChangeDetectionStrategy.OnPush
  • Write comprehensive tests with Jest (zoneless configuration)
  • Follow semantic versioning for releases

License

MIT License - see the LICENSE file for details.

Links