monkey-front-core 0.0.284 → 0.0.286

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.
@@ -0,0 +1,17 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { MonkeyModalConfig, MonkeyStyleGuideModalService } from 'monkey-style-guide';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CurrencyConfigComponent implements OnInit {
5
+ private modalService;
6
+ config: MonkeyModalConfig | null;
7
+ modalRef: any;
8
+ _currency: string;
9
+ _currencies: string[];
10
+ private callback;
11
+ constructor(modalService: MonkeyStyleGuideModalService);
12
+ ngOnInit(): void;
13
+ onClose(): void;
14
+ onHandleChangeCurrency(currency: string): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyConfigComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyConfigComponent, "monkeyecx-currency-config", never, { "config": "config"; "modalRef": "modalRef"; }, {}, never, never>;
17
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./currency-config.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "monkey-style-guide";
5
+ import * as i4 from "@ngx-translate/core";
6
+ export declare class CurrencyConfigModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyConfigModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CurrencyConfigModule, [typeof i1.CurrencyConfigComponent], [typeof i2.CommonModule, typeof i3.MonkeyButtonModule, typeof i3.MonkeyRadioButtonModule, typeof i3.MonkeyOptionModule, typeof i3.MonkeyModalModule, typeof i4.TranslateModule], [typeof i1.CurrencyConfigComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CurrencyConfigModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './currency-config.component';
2
+ export * from './currency-config.module';
@@ -2,3 +2,4 @@ export * from './alerts';
2
2
  export * from './closed-to-maintenance';
3
3
  export * from './progress-bar';
4
4
  export * from './version-changed';
5
+ export * from './currency-config';
@@ -78,6 +78,7 @@ export interface MonkeyEcxConfigSupport {
78
78
  export interface MonkeyEcxConfigi18n {
79
79
  lang?: string;
80
80
  currency?: string;
81
+ currencies?: string[];
81
82
  'google-chart-language'?: string;
82
83
  paths: string[];
83
84
  }
@@ -10,8 +10,9 @@ import * as i8 from "@angular/service-worker";
10
10
  import * as i9 from "./components/closed-to-maintenance/closed-to-maintenance.module";
11
11
  import * as i10 from "./components/version-changed/version-changed.module";
12
12
  import * as i11 from "./components/alerts/alerts.module";
13
+ import * as i12 from "./components/currency-config/currency-config.module";
13
14
  export declare class MonkeyFrontCoreModule {
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFrontCoreModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyFrontCoreModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule, typeof i3.TranslateModule, typeof i4.MonkeyEcxConfigModule, typeof i5.MonkeyEcxHttpConfigInterceptorModule, typeof i6.MonkeyEcxErrorHandlingModule, typeof i7.MonkeyStyleGuideModule, typeof i8.ServiceWorkerModule, typeof i9.ClosedToMaintenanceModule, typeof i10.VersionChangedModule, typeof i11.AlertsModule], never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyFrontCoreModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule, typeof i3.TranslateModule, typeof i4.MonkeyEcxConfigModule, typeof i5.MonkeyEcxHttpConfigInterceptorModule, typeof i6.MonkeyEcxErrorHandlingModule, typeof i7.MonkeyStyleGuideModule, typeof i8.ServiceWorkerModule, typeof i9.ClosedToMaintenanceModule, typeof i10.VersionChangedModule, typeof i11.AlertsModule, typeof i12.CurrencyConfigModule], never>;
16
17
  static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyFrontCoreModule>;
17
18
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.284",
3
+ "version": "0.0.286",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.1.1",
6
6
  "@angular/common": "^13.1.1",
Binary file