6.0.5 • Published 1 year ago

imask-gfit v6.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Angular IMask Plugin

angular-imask

npm version License: MIT

Install

npm install angular-imask

Setup

import {IMaskModule} from 'angular-imask';

@NgModule({
  imports: [
    IMaskModule,
    ...
  ],
  ...
}) {...}

Usage

<!-- directive -->
<input
  [imask]="{mask: '+{7}(000)000-00-00'}"  <!--see more mask props in a guide-->
  [unmask]="true"  <!--true|false|'typed'-->
  (accept)="onAccept"  <!--depending on prop above first argument is
    `value` if `unmask=false`,
    `unmaskedValue` if `unmask=true`,
    `typedValue` if `unmask='typed'`-->
  (complete)="onComplete"
  <!-- OPTIONAL: provide custom element getter -->
  [imaskElement]="(elementRef, directiveRef) => maskElement" <!-- default = elementRef.nativeElement -->
/>

<!-- pipe -->
<p>{{ value | imask:mask }}</p>

More options see in a guide.

Support Development

Paypal

Development

As to make changes to this package follow the steps:

  1. Build imask
  npm run make
  1. Go to angular-imask directory
  cd packages/angular-imask
  1. Launch dev command
  npm run dev
  1. (Optional) Launch example app
  npm run example
6.0.5

1 year ago