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

@catalyst-cli/catalyst-stepper

v1.0.0

Published

A powerful Angular library for creating step-by-step navigation components

Readme

@catalyst-cli/catalyst-stepper

A flexible and customizable stepper component for Angular applications. Built with modern Angular features (Signals, Standalone Components). This library was generated with Angular CLI version 21.0.0.

Installation

npm i @catalyst-cli/catalyst-stepper

Demo

Click here for live demo

Features

  • Standalone Component: Easy to import and use.
  • Orientation Support: Supports both horizontal and vertical layouts.
  • Header Customization: Flexible header alignment (row or column).
  • Signals Support: Built with modern Angular Signals.
  • Custom Content: Transcluded content for each step body.

Usage

1. Import the Component

Import CatalystStepperComponent and related models in your component:

import { Component } from '@angular/core';
import {
  CatalystStepperComponent,
  CatalystStepBodyComponent,
} from '@catalyst-cli/catalyst-stepper';
import {
  StepperMenu,
  IStepperOptions,
  OrientationType,
  HeaderType,
} from '@catalyst-cli/catalyst-stepper';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [CatalystStepperComponent, CatalystStepBodyComponent],
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
})
export class AppComponent {
  // Define menu items for the stepper
  menu: StepperMenu[] = [
    { label: 'Step 1', description: 'Personal Info' },
    { label: 'Step 2', description: 'Address' },
    { label: 'Step 3', description: 'Confirmation' },
  ];

  // Configure stepper options
  options: IStepperOptions = {
    orientation: 'horizontal', // or 'vertical'
    header: 'column', // or 'row'
  };

  currentStep = 0;

  onStepChange(index: number) {
    console.log('Step changed to:', index);
    this.currentStep = index;
  }
}

2. Use in Template

<app-catalyst-stepper
  [itemMenu]="menu"
  [options]="options"
  [(activeStep)]="currentStep"
  (onStepChange)="onStepChange($event)"
>
  <!-- Content for Step 1 (Index 0) -->
  <app-catalyst-step-body [value]="0">
    <h3>Personal Information</h3>
    <p>Please enter your details...</p>
  </app-catalyst-step-body>

  <!-- Content for Step 2 (Index 1) -->
  <app-catalyst-step-body [value]="1">
    <h3>Address Details</h3>
    <p>Shipping address...</p>
  </app-catalyst-step-body>

  <!-- Content for Step 3 (Index 2) -->
  <app-catalyst-step-body [value]="2">
    <h3>Confirm Order</h3>
    <p>Review your order...</p>
  </app-catalyst-step-body>
</app-catalyst-stepper>

API

CatalystStepperComponent (<app-catalyst-stepper>)

| Input | Type | Required | Default | Description | | ------------ | ----------------- | -------- | ----------------------------------------------- | ----------------------------------------------------- | | itemMenu | StepperMenu[] | Yes | - | Array of step definitions (label, description, etc.). | | options | IStepperOptions | No | { orientation: 'vertical', header: 'column' } | Configuration for layout and header style. | | activeStep | number | No | 0 | Two-way binding for the current active step index. | | height | string | No | '' | Custom height for the stepper container. |

| Output | Type | Description | | -------------- | ---------------------- | ------------------------------------------- | | onStepChange | EventEmitter<number> | Emits the index of the newly selected step. |

CatalystStepBodyComponent (<app-catalyst-step-body>)

| Input | Type | Required | Description | | -------- | -------- | -------- | -------------------------------------------- | | value | number | Yes | The step index this body content belongs to. | | height | string | No | Custom height for the body content. |

Models

StepperMenu

interface StepperMenu {
  label: string;
  description?: string;
  disabled?: boolean;
  icon?: string;
}

IStepperOptions

interface IStepperOptions {
  orientation: 'horizontal' | 'vertical'; // OrientationType
  header: 'row' | 'column'; // HeaderType
}