3.0.0 • Published 2 years ago

@aipeel/mat-currency-field v3.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
2 years ago

@aipeel/mat-currency-field

Angular Material based currency field. Works with material form field.

Demo

Installation

npm install @aiplee/mat-currency-field --save

Import the module

import { MatCurrencyFieldModule } from '@aipeel/mat-currency-field';
....

@NgModule({
  declarations: [...],
  imports: [
    ...
    MatCurrencyFieldModule
    ...
  ],
  providers: [...],
})
export class AppModule { }

Usage

Logs

VersionChange Logs
1.0.1Initial Draft with Angular 10 support
2.0.0Upgraded to Angular 12, Accept Negative value, Decimal digits format configuration, Currency code as space to show no Currency code
2.0.1Remove the 2 decimal places validation from within library. Validation can be applied from Parent form itself. Updated example project to showcase new feature
3.0.0Upgrade to Angular 15