
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
chronos-angular-wizard-form
Advanced tools
https://github.com/hsierra00/chronos-angular-wizard-form this is a forked from https://github.com/maiyaporn/angular2-wizard
https://github.com/hsierra00/chronos-angular-wizard-form this is a forked from https://github.com/maiyaporn/angular2-wizard
This is an Angular2 Form Wizard component. Just like any form wizard. You can define steps and control how each step works. You can enable/disable navigation button based on validity of the current step. Currently, the component only support basic functionality. More features will come later.
You can checkout the demo below and see how to use it in the next section.
https://maiyaporn.github.io/angular2-wizard-demo/
After installing the above dependencies, install angular2-wizard via:
$ npm install angular2-wizard --save
Once you have installed the library, you can import it in AppModule of your application:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { FormWizardModule } from 'angular2-wizard';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify the library as an import
FormWizardModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use form-wizard and wizard-step components in your Angular application:
<form-wizard>
<wizard-step [title]="'Step1'" [isValid]="emailForm.form.valid" (onNext)="onStep1Next($event)">
<h1>Step1</h1>
<form #emailForm="ngForm">
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" name="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"
[(ngModel)]="data.email" required>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
</form>
</wizard-step>
<wizard-step [title]="'Step2'" (onNext)="onStep2Next($event)">
<h1>Step2</h1>
</wizard-step>
<wizard-step [title]="'Step3'" (onNext)="onStep3Next($event)">
<h1>Step3</h1>
</wizard-step>
<wizard-step [title]="'Step4'" (onComplete)="onComplete($event)">
<div [ngSwitch]="isCompleted">
<div *ngSwitchDefault>
<h1>Step4</h1>
</div>
<div *ngSwitchCase="true">
<h4>Thank you! You have completed all the steps.</h4>
</div>
</div>
</wizard-step>
</form-wizard>
https://github.com/maiyaporn/angular2-wizard/wiki
To generate all *.js, *.js.map and *.d.ts files:
$ npm run tsc
To lint all *.ts files:
$ npm run lint
MIT © Maiyaporn Phanich
FAQs
https://github.com/hsierra00/chronos-angular-wizard-form this is a forked from https://github.com/maiyaporn/angular2-wizard
We found that chronos-angular-wizard-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.