tango-app-ui-analyse-zone 3.7.1-beta.41 → 3.7.1-beta.43
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/esm2022/lib/components/overallcards/overallcards.component.mjs +153 -12
- package/esm2022/lib/components/services/zone.service.mjs +4 -1
- package/fesm2022/tango-app-ui-analyse-zone.mjs +153 -11
- package/fesm2022/tango-app-ui-analyse-zone.mjs.map +1 -1
- package/lib/components/overallcards/overallcards.component.d.ts +15 -1
- package/lib/components/services/zone.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { ChangeDetectorRef, NgZone, OnDestroy, OnInit, ElementRef } from "@angular/core";
|
|
2
|
+
import * as am5xy from "@amcharts/amcharts5/xy";
|
|
2
3
|
import { ZoneService } from "../services/zone.service";
|
|
3
4
|
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
5
|
import { ToastService } from "tango-app-ui-shared";
|
|
5
6
|
import { Zonev2Service } from "../services/zonev2.service";
|
|
6
7
|
import { Router } from '@angular/router';
|
|
8
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
export declare class OverallcardsComponent implements OnDestroy, OnInit {
|
|
9
11
|
private zone;
|
|
10
12
|
private ZoneService;
|
|
11
13
|
private zoneV2Service;
|
|
12
14
|
private cd;
|
|
15
|
+
private modalService;
|
|
13
16
|
gs: GlobalStateService;
|
|
14
17
|
private router;
|
|
15
18
|
private toast;
|
|
@@ -36,7 +39,7 @@ export declare class OverallcardsComponent implements OnDestroy, OnInit {
|
|
|
36
39
|
cardDataTraffic: any;
|
|
37
40
|
cardNoTrafficData: boolean;
|
|
38
41
|
cardDataTrafficLoading: boolean;
|
|
39
|
-
constructor(zone: NgZone, ZoneService: ZoneService, zoneV2Service: Zonev2Service, cd: ChangeDetectorRef, gs: GlobalStateService, router: Router, toast: ToastService);
|
|
42
|
+
constructor(zone: NgZone, ZoneService: ZoneService, zoneV2Service: Zonev2Service, cd: ChangeDetectorRef, modalService: NgbModal, gs: GlobalStateService, router: Router, toast: ToastService);
|
|
40
43
|
ngOnInit(): void;
|
|
41
44
|
getOverallStoreCards(): void;
|
|
42
45
|
ngOnDestroy(): void;
|
|
@@ -80,7 +83,18 @@ export declare class OverallcardsComponent implements OnDestroy, OnInit {
|
|
|
80
83
|
popupShow(event: MouseEvent): void;
|
|
81
84
|
closePopup(event?: MouseEvent): void;
|
|
82
85
|
onDocumentClick(event: MouseEvent): void;
|
|
86
|
+
zoomPopup: ElementRef;
|
|
83
87
|
goToDemographicPage(event: Event): void;
|
|
88
|
+
objDataTraffic: any;
|
|
89
|
+
demoNoData: boolean;
|
|
90
|
+
demoloading: boolean;
|
|
91
|
+
valueType: string;
|
|
92
|
+
demoGraphicsData: any;
|
|
93
|
+
demoGraphicsroot: any;
|
|
94
|
+
demoGraphicsChartInstance: any;
|
|
95
|
+
getDemoGraphics(): void;
|
|
96
|
+
demoGraphicsChart(): void;
|
|
97
|
+
makeSeries(name: any, fieldName: any, xAxis: am5xy.CategoryAxis<am5xy.AxisRenderer>, yAxis: am5xy.ValueAxis<am5xy.AxisRenderer>): any;
|
|
84
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<OverallcardsComponent, never>;
|
|
85
99
|
static ɵcmp: i0.ɵɵComponentDeclaration<OverallcardsComponent, "lib-overallcards", never, {}, {}, never, never, false, never>;
|
|
86
100
|
}
|
|
@@ -63,6 +63,7 @@ export declare class ZoneService implements OnDestroy {
|
|
|
63
63
|
getOverallStoreCardsData(data: any): Observable<any>;
|
|
64
64
|
getBouncedCardList(params: any): Observable<any>;
|
|
65
65
|
getEngagersCardList(params: any): Observable<any>;
|
|
66
|
+
getDemoGraphicsChart(params: any): Observable<any>;
|
|
66
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoneService, never>;
|
|
67
68
|
static ɵprov: i0.ɵɵInjectableDeclaration<ZoneService>;
|
|
68
69
|
}
|