For now it contains only matInputCommified directive to be used with standard material matInput.
npm i ngx-material-tools
...
import {NgxMaterialToolsModule} from 'ngx-material-tools';
@NgModule({
...
imports: [
...
NgxMaterialToolsModule
],
...
})
export class AppModule { }
<form [formGroup]="myForm" style="margin-top: 20px">
<mat-form-field appearance="outline">
<mat-label>Deposit Amount</mat-label>
<input matInput
matInputCommified
formControlName="deposit"
type="text"/>
</mat-form-field>
</form>
>
Clone this repo and do install
npm install
ng serve
Did you Like this lib? Follow me on Twitter for more Angular and RxJS staff!
Need a mentorship for Angular and RxJS? Find me on codementor.io
Take a look at my video-course on Udemy/PacktPub:
Check my Youtube video-blog "Angular can waste your time!"
*This project was generated with Angular CLI version 8.3.14.