1.1.2 • Published 5 years ago

otp-verification v1.1.2

Weekly downloads
12
License
ISC
Repository
github
Last release
5 years ago

Angular Otp Verification

OTP verification input login implementation.

Description

Highly configurable Angular otp verification. Compatible Angular 7+.

Online demo is here.

Installation and usage

To install this component to an external project, follow the procedure:

  1. npm install otp-verification --save
  2. Add OtpVerificationModule import to your @NgModule like example below

      import { BrowserModule } from '@angular/platform-browser';
      import { NgModule } from '@angular/core';
      import { AppComponent } from './app.component';
      import { OtpVerificationModule } from 'otp-verification';
    
      @NgModule({
        declarations: [
          AppComponent
        ],
        imports: [
          BrowserModule,
          OtpVerificationModule
        ],
        providers: [],
        bootstrap: [AppComponent]
      })
      export class AppModule { }
  3. Add angular-otp-verification selector to template

    <angular-otp-verification [isAlphanumeric]="true" (otpOut)="setOtp($event)"></angular-otp-verification>

Attributes

options attribute

OptionDefaultTypeDescription
isAlphanumerictruebooleanset to false if you need only numeric input

Callbacks

otpOut

  • Called when the all the 4 digits are added,
  • Output format is in string
    setOtp(otp: string) {
      console.log('the opt is ', otp);
    }
1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago