1.0.7 • Published 8 years ago
ngcpf v1.0.7
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 ngcpfThen, 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:
- You can use the validator with
<input>,<md-input>,<ion-input>; - The mask directive will only works with input of type
textandtel; - To use the mask directive you don't need to pass any pattern, just use
cpfMask;
Issues are wellcome!