@ngneat/input-mask is an angular library that creates an input mask. Behind the scene, it uses inputmask.
- 🔡 Support for form validation
- 🎭 Wrapper function to easily create input-masks
- 🔁 Helps you to convert final values to desired format
- ☝️ Single directive to handle everything
- 🛠 All the configurations of inputmask provided
You can install it through Angular CLI
ng add @ngneat/input-mask
or with npm
npm install @ngneat/input-mask inputmask@5
npm install -D @types/inputmask@5
When you install using npm or yarn, you will also need to import InputMaskModule
in your app.module
:
import { InputMaskModule } from '@ngneat/input-mask';
@NgModule({
imports: [InputMaskModule],
})
class AppModule {}
import { Component } from '@angular/core';
import { FormControl } from '@angular/forms';
import { createMask } from '@ngneat/input-mask';
@Component({
selector: 'app-root',
template: `
<input [inputMask]="dateInputMask" [formControl]="dateFC" placeholder="dd/mm/yyyy">
`,
})
export class AppComponent {
dateInputMask = createMask<Date>({
alias: 'datetime',
inputFormat: 'dd/mm/yyyy',
parser: (value: string) => {
const values = value.split('/');
const year = +values[2];
const month = +values[1] - 1;
const date = +values[0];
return new Date(year, month, date);
},
});
dateFC = new FormControl('');
}
@Component({
template: `
<input [inputMask]="ipAddressMask" [formControl]="ipFC" placeholder="_._._._">
`,
})
export class AppComponent {
ipAddressMask = createMask({ alias: 'ip' });
ipFC = new FormControl('');
}
@Component({
template: `
<input [inputMask]="currencyInputMask" [formControl]="currencyFC" placeholder="$ 0.00">
`,
})
export class AppComponent {
currencyInputMask = createMask({
alias: 'numeric',
groupSeparator: ',',
digits: 2,
digitsOptional: false,
prefix: '$ ',
placeholder: '0',
});
currencyFC = new FormControl('');
}
@Component({
template: `
<input [inputMask]="licenseInputMask" [formControl]="licenseFC" placeholder="___-___">
`,
})
export class AppComponent {
licenseInputMask = createMask('[9-]AAA-999');
licenseFC = new FormControl('');
}
@Component({
template: `
<input [inputMask]="emailInputMask" [formControl]="emailFC" placeholder="_@_._">
`,
})
export class AppComponent {
emailInputMask = createMask({ alias: 'email'});
emailFC = new FormControl('');
}
All examples are available on stackblitz.
You can create any type of input-mask which is supported by InputMask plugin.
When [inputMask]
is used with [formControl]
, it adds validation out-of-the box. The validation works based on isValid
function.
If the validation fails, the form-control will have below error:
{ inputMask: false }
This library uses inputmask plugin to handle mask related tasks. So, you can use all the options available there.
The recommended way to create an inputmask is to use the createMask
function provided with this library.
Apart from inputmask options, we have added one more option called parser
. This basically helps you to keep the value of form-control in pre-defined format, without updating UI.
For example, you want your users to enter date in input[type=text]
with dd/mm/yyyy
format and you want to store a Date
value in the form-control:
@Component({
template: `
<input [inputMask]="dateInputMask" [formControl]="dateFC" placeholder="dd/mm/yyyy">
`,
})
export class AppComponent {
dateInputMask = createMask<Date>({
alias: 'datetime',
inputFormat: 'dd/mm/yyyy',
parser: (value: string) => {
const values = value.split('/');
const year = +values[2];
const month = +values[1] - 1;
const date = +values[0];
return new Date(year, month, date);
},
});
dateFC = new FormControl('');
}
In above example, whenver you try to access dateFC.value
, it won't be the string which user entered, but rather a Date
created based on the parser
function.
Thanks goes to these wonderful people (emoji key):
Dharmen Shah 💻 🖋 📖 💡 🚧 📦 |
Netanel Basal 🐛 💼 🤔 🧑🏫 📆 👀 |
Robin Herbots 🤔 |
This project follows the all-contributors specification. Contributions of any kind welcome!