angular7-pincode
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

Angular Custom OTP Input-Template

Custom otp-input template for Angular, it look likes otp-input template as mobile.

Table of Contents

Installation

NPM

npm i -S angular7-pincode

Usage

Import Angular7PincodeModule in your module

import { Angular7PincodeModule } from 'angular7-pincode';

@NgModule({
  imports: [
    // ...
    Angular7PincodeModule
  ]
})

In your template

<angular7-pincode >
</angular7-pincode>

Options

directive inputs

  • [size]: number length of otp input, default 4

  • [class]: string your custom class on otp input

  • [isOnlyNumeric]: boolean take only as numeric value if true, default false

Callback functions

  • (onFullFill): function return a otp string after all otp enter and return null on every backspace

examples

default settings

<angular7-pincode (onFullFill)="onFullFill($event)">
</angular7-pincode>
onFullFill(data:any){
  console.log(data)
}

with size and custom class option

<angular7-pincode [size]="6" [class]="your-class" (onFullFill)="onFullFill($event)">
</angular7-pincode>
onFullFill(data:any){
  console.log(data)
}

with option isOnlyNumeric

<angular7-pincode [isOnlyNumeric]="true" (onFullFill)="onFullFill($event)">
</angular7-pincode>
onFullFill(data:any){
  console.log(data)
}

Issues

If you identify any errors in the library, or have an idea for an improvement, please open an issue.

Author

Package Sidebar

Install

npm i angular7-pincode

Weekly Downloads

16

Version

2.0.0

License

MIT

Unpacked Size

42.3 kB

Total Files

16

Last publish

Collaborators

  • skmahala