Socket
Socket
Sign inDemoInstall

@anglify/stepper

Package Overview
Dependencies
5
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @anglify/stepper

> An Angular stepper based on RxJS, which provides various events to make development easier. > This library has no dependencies.


Version published
Maintainers
1
Created

Readme

Source

Anglify Stepper

An Angular stepper based on RxJS, which provides various events to make development easier. This library has no dependencies.

It includes a ready to use stepper implementation as well as the possibility to create your own stepper using the available services (similar to the Angular Material Stepper).

Table of contents

  • Installation
  • Usage
  • API

Installation

npm install @anglify/stepper

app.module.ts (or any other module)

import { StepperModule } from '@anglify/stepper';

@NgModule({
  // ...
  imports: [
    // ...
    BrowserAnimationsModule, // Required for stepper animations
    StepperModule, // Module that contains the stepper
  ],
})
export class AppModule {
}

Usage

app.component.html


<anglify-stepper #stepper>
  <ng-template anglifyStep label="First step">
    First step content
    <button (click)="stepper.next()">Continue</button>
  </ng-template>
  <ng-template anglifyStep label="Second step" [valid]="stepValid">
    Valid:<input type="checkbox" [(ngModel)]="stepValid" /><br />
    <button (click)="stepper.previous()">Back</button>
    <button anglifyStepperNext>Continue</button>
  </ng-template>
  <ng-template anglifyStep label="Third step">
    Third step content
    <button anglifyStepperPrevious>Back</button>
    <button anglifyStepperNext>Continue</button>
  </ng-template>
</anglify-stepper>

app.component.ts

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss'],
})
export class AppComponent {
  public stepValid = false;
}

API

anglify-stepper

Props
NameTypeDefaultDescription
stepConnectionLinebooleantrueActivates or deactivates the connection line of the stepper, which is visible at the left edge
headerNavigationbooleantrueActivates or deactivates the navigation via the step headers
orientationvertical or horizontalverticalSets the orientation of the stepper
Events
NameDescriptionEmits
onPreviousEmitted when the previous step is opened
onNextEmitted when the next step is opened"horizontal" or "vertical"
orientationChangeEmitted when the orientation changes
resetEmitted when the stepper is reset
stepChangeEmitted when the step selected step changesStep

anglifyStep

Props
NameTypeDefaultDescription
labelstring-Label of the step, that is displayed in the stepper header
validbooleantrueWith this field you can validate the current step. If the step is valid, you can navigate to the following steps. Otherwise it is not possible.
Events
NameDescriptionEmits
selectedChangeEmitted when the step gets selected or unselectedboolean
validChangeEmitted when the valid state of the step changesboolean
visitedChangeEmitted when the visited state of the step changesboolean

anglifyStepperPrevious

This directive can be placed on a button, for example. After a click the stepper automatically goes to the previous step


<anglify-stepper>
  ...
  <ng-template anglifyStep label="Step 2">
    Content 2
    <button anglifyStepperPrevious>Back</button>
  </ng-template>
</anglify-stepper>

Alternatively you can call the previous method of a stepper reference:


<anglify-stepper #stepper>
  ...
  <ng-template anglifyStep label="Step label">
    Content x
    <button (click)="stepper.previous()">Back</button>
  </ng-template>
</anglify-stepper>

In this case you can place the button also outside the stepper.

anglifyStepperNext

This directive can be placed on a button, for example. After a click the stepper automatically goes to the next step


<anglify-stepper>
  <ng-template anglifyStep label="Step label">
    Content x
    <button anglifyStepperNext>Continue</button>
  </ng-template>
  ...
</anglify-stepper>

Alternatively you can call the next method of a stepper reference:


<anglify-stepper #stepper>
  <ng-template anglifyStep label="Step label">
    Content x
    <button (click)="stepper.next()">Continue</button>
  </ng-template>
  ...
</anglify-stepper>

In this case you can place the button also outside the stepper.

FAQs

Last updated on 16 Dec 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc