npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angular-forms-input-masks

v1.0.3

Published

Mask your @angular/forms formControl inputs with these directives!

Downloads

913

Readme

angular-forms-input-mask

angular-forms-input-mask

Mask your @angular/forms formControl inputs with these directives!

Features :mag_right:

  • add to existitng inputs or wrappers to have it masked without further needs;
  • enable custom validation over the mask format for the existing formControls without trouble;
  • keep a good user experience by automatically placing the cursor positions while typing or backspacing naturally;
  • add any number of masks formats to a single input.

Check out all the possibilities at the demo landpage.

Usage :electric_plug:

  1. Install: npm install angular-forms-input-masks or yarn add angular-forms-input-masks;
  2. import AngularFormsInputMasksModule module to your appModules or to the module to be used at;
  3. declare at any input or input wrapper the directives to supply your needs.

e.g.

  import { BrowserModule } from '@angular/platform-browser';
  import { NgModule } from '@angular/core';
  import { ReactiveFormsModule } from '@angular/forms';
  import { AngularFormsInputMasksModule } from 'angular-forms-input-masks';
  import { AppComponent } from './app.component';

  @NgModule({
    declarations: [
      AppComponent,
    ],
    imports: [
      BrowserModule,
      AngularFormsInputMasksModule,
      ReactiveFormsModule,
    ],
    providers: [],
    bootstrap: [AppComponent]
  })
  export class AppModule { }

  [...]

  <input formControlName="sampleInput" angularFormsCurrency/>
  <input [ngControl]="sampleGroup.get('sampleInput')" angularFormsMask="DDD-DDD-DDDD/>

Options :green_book:

Mask Directive Parameters:

  • ngControl: required to work, either through formControlName or ngControl declaration. Always requires ngControl if the directive is used at an input wrapper.
  • angularFormsMask: the mask or masks that are to be displayed. Format: D: numbers; C: letters; W: both; All other characters are treated as part of the mask and are just displayed. e.g. 'DDD.DDD.WW', ['DDD.DD', '(CC) WW - D'].
  • validateMaskInput: add validation to formControl, so that the input should match the mask length, else it returns invalidLength validation error at the ngControl.
  • unmasked: set the unmasked value to the formControl instead of the masked one, defaults to false.

Currency Directive Parameters:

  • ngControl: required to work, either through formControlName or ngControl declaration. Always requires ngControl if the directive is used at an input wrapper.
  • prefix: defaults to $, allows any value or empty.
  • thousandsSeparator: defaults to white_space.
  • decimalSeparator: defaults to ..
  • digitsAfterSeparator: defaults to 2.
  • maxIntegerDigits: how big the value allowed is, defaults to 8. (e.g 1 000 000,00)
  • allowNegatives: defaults to false.
  • validateOnInit: if marked, it will validate the initial value and mask it. In case it is null, will fill the masked value for 0. Defaults to true.

Develop :construction_worker:

For running locally:

  1. npm run build-lib
  2. npm start
  3. open at: localhost:4200

Composition :hammer:

Anything else :question:

Feel free to contribute, report bugs, or contact me for anything.