bpm-core 0.0.150 → 0.0.152

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,12 +6,15 @@ export declare class MycurrencyDirective implements OnInit {
6
6
  private formatcurrencypipe;
7
7
  private el;
8
8
  decimals: number;
9
+ private readonly decimalPlaces;
9
10
  constructor(elementRef: ElementRef, formatcurrencypipe: MycurrencyPipe);
10
11
  ngOnInit(): void;
11
- onFocus(value: any, event: any): any;
12
- onBlur(value: any): void;
12
+ onFocus(event: FocusEvent): any;
13
+ onBlur(event: FocusEvent): void;
13
14
  onKeyDown(event: any): void;
15
+ onInput(event: Event): void;
14
16
  onPaste(event: ClipboardEvent): void;
17
+ private sanitizeCurrencyInput;
15
18
  static ɵfac: i0.ɵɵFactoryDeclaration<MycurrencyDirective, never>;
16
19
  static ɵdir: i0.ɵɵDirectiveDeclaration<MycurrencyDirective, "[appMycurrency]", never, { "decimals": { "alias": "decimals"; "required": false; }; }, {}, never, never, true, never>;
17
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpm-core",
3
- "version": "0.0.150",
3
+ "version": "0.0.152",
4
4
  "bin": {
5
5
  "bpm-core": "./cli/index.js"
6
6
  },