0.20.5 • Published 7 years ago

ionic3-input-mask v0.20.5

Weekly downloads
15
License
CC0-1.0
Repository
github
Last release
7 years ago

Ionic 3 Input Mask

Getting started

First, install it.

npm i inoic3-input-mask --save

Then, require it and use it:

import {Component} from '@angular/core';
import {Directive} from 'inoic3-text-mask'

@Component({
  selector: 'app',
  template: `
    <ion-input [textMask]="{mask: mask}" [(ngModel)]="myModel"/>
  `,
  directives: [Directive]
})
export class SomeComponent {
  public myModel = ''
  public mask = ['(', /[1-9]/, /\d/, /\d/, ')', ' ', /\d/, /\d/, /\d/, '-', /\d/, /\d/, /\d/, /\d/]
}