@miden-npm/angular 0.0.28 → 0.0.29

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.
package/index.d.ts CHANGED
@@ -66,6 +66,7 @@ declare class InputComponent {
66
66
  disabled: boolean;
67
67
  loading: boolean;
68
68
  showCopyIcon: boolean;
69
+ preventPaste: boolean;
69
70
  onInputChange: EventEmitter<string>;
70
71
  onInputBlur: EventEmitter<string>;
71
72
  constructor();
@@ -77,10 +78,11 @@ declare class InputComponent {
77
78
  onBlur(): void;
78
79
  writeValue(val: any): void;
79
80
  onKeyDown(event: KeyboardEvent): void;
81
+ onPaste(event: ClipboardEvent): void;
80
82
  registerOnChange(fn: any): void;
81
83
  registerOnTouched(fn: any): void;
82
84
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
83
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "base-input", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "isAmountInput": { "alias": "isAmountInput"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showCopyIcon": { "alias": "showCopyIcon"; "required": false; }; }, { "onInputChange": "onInputChange"; "onInputBlur": "onInputBlur"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "base-input", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "isAmountInput": { "alias": "isAmountInput"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showCopyIcon": { "alias": "showCopyIcon"; "required": false; }; "preventPaste": { "alias": "preventPaste"; "required": false; }; }, { "onInputChange": "onInputChange"; "onInputBlur": "onInputBlur"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
84
86
  }
85
87
 
86
88
  declare class HintComponent {
@@ -503,6 +505,7 @@ declare class ResourceService {
503
505
  name: string;
504
506
  }[]>>;
505
507
  getStableCoinNetworks(environment: string, stableCoin: string): Observable<IApiResponse<string[]>>;
508
+ getMerchantById(merchantId: string, environment: string, secretKey: string): Observable<IApiResponse<any>>;
506
509
  static ɵfac: i0.ɵɵFactoryDeclaration<ResourceService, never>;
507
510
  static ɵprov: i0.ɵɵInjectableDeclaration<ResourceService>;
508
511
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "registry": "https://registry.npmjs.org",
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.28",
7
+ "version": "0.0.29",
8
8
  "main": "./fesm2022/miden-npm-angular.mjs",
9
9
  "module": "fesm2022/miden-npm-angular.mjs",
10
10
  "types": "./index.d.ts",