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/misc

v1.0.1

Published

All the miscellaneous components that makes part of the flexzap library

Readme

@flexzap/misc

Miscellaneous utility components for Angular applications, including spinners, progress bars, and other common UI elements. Part of the FlexZap Library ecosystem.

Installation

npm install @flexzap/misc

Peer Dependencies

This library requires the following peer dependencies:

npm install @angular/common@^21.0.0 @angular/core@^21.0.0 @flexzap/pipes@latest

Usage

Basic Implementation

import { Component } from '@angular/core';
import { ZapSpinner, ZapProgressBar } from '@flexzap/misc';

@Component({
  imports: [ZapSpinner, ZapProgressBar],
  template: `
    <!-- Simple spinner -->
    <zap-spinner />
    
    <!-- Progress bar with percentage -->
    <zap-progress-bar 
      [value]="currentValue" 
      [min]="0" 
      [max]="100"
      [format]="{ symbol: '%' }" />
      
    <!-- Custom range progress bar -->
    <zap-progress-bar 
      [value]="progress" 
      [min]="10" 
      [max]="50" />
  `
})
export class MyComponent {
  currentValue = 75;
  progress = 30;
}

API Reference

ZapSpinner Component

A simple loading spinner component with customizable styling.

Features

  • OnPush Change Detection: Optimized performance with OnPush strategy
  • SCSS Styling: Customizable styles with SCSS support
  • Lightweight: No inputs or outputs, pure visual component
  • Standalone Component: No module imports required

ZapProgressBar Component

An animated progress bar component with customizable range and formatting.

Inputs

| Property | Type | Default | Description | |----------|------|---------|-------------| | value | number | 0 | Current progress value | | min | number | 0 | Minimum value for the progress range | | max | number | 100 | Maximum value for the progress range | | format | Partial<ZapNumericInterface> | {} | Formatting options for the displayed value (uses @flexzap/pipes) |

Features

  • OnPush Change Detection: Optimized performance with OnPush strategy
  • Animated Transitions: Smooth CSS transitions with 100ms delay
  • Flexible Range: Supports custom min/max values
  • Number Formatting: Integration with @flexzap/pipes for value display
  • Percentage Calculation: Automatic percentage calculation based on range
  • Standalone Component: No module imports required

Styling

Both components use SCSS for styling. You can customize the appearance by overriding the default styles:

zap-spinner {
  // Custom spinner styles
  --zap-spinner-color: #007bff;
  --zap-spinner-size: 2rem;
}

zap-progress-bar {
  // Custom progress bar styles
  --zap-progress-bar-height: 8px;
  --zap-progress-bar-bg: #e9ecef;
  --zap-progress-bar-fill: #007bff;
  --zap-progress-bar-border-radius: 4px;
}

Testing

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

Running Tests

# From the monorepo root
npm run misc:test            # Run all unit tests with coverage
npm run misc: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/misc/

Development

Building the Library

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

Code Scaffolding

To generate new components within this library:

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

Publishing

Build for Publication

# From the monorepo root
npm run misc:build

Publish to NPM

cd dist/flexzap/misc
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