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

ngx-stepper-wizard

v2.0.4

Published

A lightweight, reusable and highly customizable Angular stepper wizard component with dynamic components, conditional navigation, shared state management and full workflow control.

Readme

🚀 ngx-stepper-wizard

A modern, lightweight and highly customizable Angular Stepper Wizard built with Standalone Components.

Create beautiful multi-step workflows with dynamic navigation, shared state management, conditional step rendering and a fully customizable UI.


✨ Features

  • ✅ Standalone Angular Component
  • ✅ Dynamic Multi-Step Wizard
  • ✅ Single-Step Wizard Support
  • ✅ Dynamic Step Rendering
  • ✅ Shared Wizard State
  • ✅ Previous / Next Navigation
  • ✅ Skip Optional Steps
  • ✅ Jump to Any Step
  • ✅ Review & Submit Flow
  • ✅ Full Screen Mode
  • ✅ Dynamic Modal Width & Height
  • ✅ Minimum Modal Size Protection
  • ✅ Bootstrap Compatible
  • ✅ Responsive Design
  • ✅ Angular 20+

📦 Installation

Install the library.

npm install ngx-stepper-wizard

Install the required peer dependencies.

npm install bootstrap angular-feather feather-icons

🎨 Configure Styles

Add Bootstrap and the Wizard theme inside angular.json.

{
  "styles": [
    "src/styles.scss",
    "node_modules/bootstrap/dist/css/bootstrap.min.css",
    "node_modules/ngx-stepper-wizard/styles/wizard-theme.scss"
  ]
}

Note

wizard-theme.scss contains the default styles required for the wizard component.
You can customize or override these styles in your own application if needed.


🚀 Import

import { NgxStepperWizardComponent, WizardInterface } from 'ngx-stepper-wizard';

Basic Example

<ng-template #wizardModal>
  <ngx-stepper-wizard
    wizardTitle="Student Registration"
    [dynamicSteps]="steps"
    [width]="1200"
    [maxWidth]="'90vw'"
    [height]="'80vh'"
    (onComplete)="submit()"
    (closeWizardEmitter)="closeWizard()"
  >
  </ngx-stepper-wizard>
</ng-template>


📐 Modal Size

The wizard allows you to customize the modal dimensions.

<ngx-stepper-wizard [width]="1200" [maxWidth]="'90vw'" [height]="'80vh'"> </ngx-stepper-wizard>

Supported Values

[width]="1200" [width]="'70%'" [width]="'80vw'" [maxWidth]="'1100px'" [height]="700"
[height]="'75vh'"

Note

The wizard enforces a minimum supported modal size of:

  • Width: 500px
  • Height: 350px

Values smaller than these limits are automatically adjusted to ensure the wizard layout remains fully functional.


Create Steps

steps: WizardInterface[] = [
  {
    title: 'Basic Details',
    component: BasicDetailsComponent
  },
  {
    title: 'Department',
    component: DepartmentComponent
  },
  {
    title: 'Review',
    component: ReviewComponent
  }
];

Wizard Controller

Every step automatically receives a Wizard Controller.

@Input()
wizard!: any;

Available APIs

wizard.next();

wizard.prev();

wizard.skip();

wizard.goToStep(stepNumber);

wizard.finish();

wizard.reset();

wizard.setData(key, value);

wizard.getData(key);

wizard.getAllData();

wizard.currentStep();

wizard.totalSteps();

Store Shared Data

this.wizard.setData('role', 'Student');

Retrieve data

const role = this.wizard.getData('role');

Retrieve everything

const data = this.wizard.getAllData();

Conditional Navigation

if (role === 'Student') {
  this.wizard.goToStep(3);
} else {
  this.wizard.next();
}

Skip Current Step

this.wizard.skip();

Jump to Any Step

this.wizard.goToStep(5);

Finish Wizard

this.wizard.finish();

Reset Wizard

this.wizard.reset();

Inputs

| Input | Type | Description | | ------------ | ----------------- | -------------------------- | | wizardTitle | string | Wizard Title | | wizardId | string | Unique Wizard Identifier | | dynamicSteps | WizardInterface[] | Wizard Steps Configuration |


Outputs

| Output | Description | | ------------------ | --------------------------------------- | | onComplete | Fires when the wizard is completed | | onStepChange | Fires whenever the current step changes | | closeWizardEmitter | Closes the wizard |


Example Use Cases

  • 🎓 Student Registration
  • 👨‍🏫 Teacher Onboarding
  • 👨‍💼 Employee Onboarding
  • 🛒 Product Configuration
  • 💳 Checkout Flow
  • 📋 Survey Wizard
  • 📝 Multi-page Forms
  • 🏦 Loan Application
  • 🩺 Healthcare Registration
  • 📦 Order Configuration

Compatibility

| Angular Version | Support | | --------------- | ------------ | | Angular 20 | ✅ Supported | | Angular 21 | Planned |


Roadmap

  • [ ] Lazy Loaded Steps
  • [ ] Route-based Wizard
  • [ ] Step Validation API
  • [ ] Async Validation
  • [ ] Theme Builder
  • [ ] Dark Theme
  • [ ] RTL Support
  • [ ] Internationalization (i18n)
  • [ ] Custom Animations

Contributing

Contributions, issues and feature requests are welcome.

If you'd like to contribute:

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Open a Pull Request

License

MIT License © 2026 Sunmeet Kaur


⭐ If you find this project useful, please consider giving it a star on GitHub!

Made with ❤️ by Sunmeet Kaur.