GitHunt
FR

๐Ÿ‡ง๐Ÿ‡ท Angular module to validate and format brazilian CPF.

NgCpf Validator & Mask

With NgCpf you'll be able to validate and format inputs that receives the Brazilian CPF.

This Angular module support angular versions >= 2 and also compatible with Ionic ion-input.

Setup

First, install the module:

npm i --save ngcpf

Then, import to your @NgModule:

import { NgModule } from '@angular/core';
import { NgCpfModule } from 'ngcpf';

@NgModule({
  imports: [
    NgCpfModule
  ],
  declarations: []
})
export class MyModule {}

Usage

Now, you will be able to use in your components:

@Component({
  selector: 'app',
  template: `
    <input validateCpf="myModel" cpfMask [(ngModel)]="myModel" type="text"/>
  `
})
export class AppComponent {
  public myModel = '';
}

Notes

Some useful information:

  1. You can use the validator with <input>,<md-input>, <ion-input>;
  2. The mask directive will only works with input of type text and tel;
  3. To use the mask directive you don't need to pass any pattern, just use cpfMask;

Issues are wellcome!

Languages

TypeScript100.0%

Contributors

Latest Release

v1.0.5May 25, 2017
MIT License
Created March 21, 2017
Updated June 13, 2017