tango-app-ui-analyse-zone 3.7.1-beta.43 → 3.7.1-beta.44
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 +26 -27
- package/esm2022/lib/components/services/zone.service.mjs +7 -1
- package/esm2022/lib/components/top-performing-zones/top-performing-zones.component.mjs +111 -76
- package/esm2022/lib/components/zone-concentration/zone-concentration.component.mjs +70 -7
- package/esm2022/lib/components/zone-summary-table/zone-summary-table.component.mjs +6 -3
- package/fesm2022/tango-app-ui-analyse-zone.mjs +230 -125
- package/fesm2022/tango-app-ui-analyse-zone.mjs.map +1 -1
- package/lib/components/overallcards/overallcards.component.d.ts +0 -1
- package/lib/components/services/zone.service.d.ts +2 -0
- package/lib/components/top-performing-zones/top-performing-zones.component.d.ts +9 -7
- package/lib/components/zone-concentration/zone-concentration.component.d.ts +11 -2
- package/lib/components/zone-summary-table/zone-summary-table.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -64,6 +64,8 @@ export declare class ZoneService implements OnDestroy {
|
|
|
64
64
|
getBouncedCardList(params: any): Observable<any>;
|
|
65
65
|
getEngagersCardList(params: any): Observable<any>;
|
|
66
66
|
getDemoGraphicsChart(params: any): Observable<any>;
|
|
67
|
+
getZoneGroupAnalysisData(data: any): Observable<any>;
|
|
68
|
+
getViewInsightsApi(data: any): Observable<any>;
|
|
67
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoneService, never>;
|
|
68
70
|
static ɵprov: i0.ɵɵInjectableDeclaration<ZoneService>;
|
|
69
71
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { NgbModal } from
|
|
3
|
-
import { ZoneService } from
|
|
4
|
-
import { ToastService } from
|
|
5
|
-
import { GlobalStateService } from
|
|
6
|
-
import { Router } from
|
|
7
|
-
import { FormBuilder } from
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { ZoneService } from "../services/zone.service";
|
|
4
|
+
import { ToastService } from "tango-app-ui-shared";
|
|
5
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
7
|
+
import { FormBuilder } from "@angular/forms";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class TopPerformingZonesComponent implements OnInit, OnDestroy, OnChanges {
|
|
10
10
|
private zone;
|
|
@@ -37,12 +37,14 @@ export declare class TopPerformingZonesComponent implements OnInit, OnDestroy, O
|
|
|
37
37
|
ngOnChanges(changes: SimpleChanges): void;
|
|
38
38
|
ngOnDestroy(): void;
|
|
39
39
|
getTopPerformingZones(): void;
|
|
40
|
-
|
|
40
|
+
private renderZoneFootfallChart;
|
|
41
41
|
getTopPerformingStores(): void;
|
|
42
42
|
onExport(): void;
|
|
43
43
|
searchField(e: any): void;
|
|
44
44
|
sortData(column: string): void;
|
|
45
45
|
storeView(data: any): void;
|
|
46
|
+
selectedTab: any;
|
|
47
|
+
selectedTabs(type: any): void;
|
|
46
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopPerformingZonesComponent, never>;
|
|
47
49
|
static ɵcmp: i0.ɵɵComponentDeclaration<TopPerformingZonesComponent, "lib-top-performing-zones", never, { "clientData": { "alias": "clientData"; "required": false; }; }, {}, never, never, false, never>;
|
|
48
50
|
}
|
|
@@ -5,8 +5,9 @@ import { ZoneService } from '../services/zone.service';
|
|
|
5
5
|
import { ToastService } from 'tango-app-ui-shared';
|
|
6
6
|
import { GlobalStateService } from 'tango-app-ui-global';
|
|
7
7
|
import dayjs from 'dayjs';
|
|
8
|
+
import { Router } from '@angular/router';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class ZoneConcentrationComponent implements
|
|
10
|
+
export declare class ZoneConcentrationComponent implements OnDestroy, OnInit {
|
|
10
11
|
private zone;
|
|
11
12
|
modalService: NgbModal;
|
|
12
13
|
private fb;
|
|
@@ -15,6 +16,7 @@ export declare class ZoneConcentrationComponent implements OnInit, OnDestroy {
|
|
|
15
16
|
private toast;
|
|
16
17
|
gs: GlobalStateService;
|
|
17
18
|
private elementRef;
|
|
19
|
+
private router;
|
|
18
20
|
dayjs: typeof dayjs;
|
|
19
21
|
searchInput: any;
|
|
20
22
|
searchDisabled: any;
|
|
@@ -46,7 +48,7 @@ export declare class ZoneConcentrationComponent implements OnInit, OnDestroy {
|
|
|
46
48
|
dateList: ElementRef;
|
|
47
49
|
ngOnDestroy(): void;
|
|
48
50
|
storeIdarray: any;
|
|
49
|
-
constructor(zone: NgZone, modalService: NgbModal, fb: FormBuilder, ZoneService: ZoneService, changeDetector: ChangeDetectorRef, toast: ToastService, gs: GlobalStateService, elementRef: ElementRef);
|
|
51
|
+
constructor(zone: NgZone, modalService: NgbModal, fb: FormBuilder, ZoneService: ZoneService, changeDetector: ChangeDetectorRef, toast: ToastService, gs: GlobalStateService, elementRef: ElementRef, router: Router);
|
|
50
52
|
ngOnInit(): void;
|
|
51
53
|
getZoneConcentrationData(): void;
|
|
52
54
|
onExport(): void;
|
|
@@ -61,6 +63,13 @@ export declare class ZoneConcentrationComponent implements OnInit, OnDestroy {
|
|
|
61
63
|
scrollLeft(): void;
|
|
62
64
|
scrollRight(): void;
|
|
63
65
|
onSlideChange(slideEvent: NgbSlideEvent): void;
|
|
66
|
+
expandedZones: Set<string>;
|
|
67
|
+
toggleZone(zoneName: string, event: Event): void;
|
|
68
|
+
isExpanded(zoneName: string): boolean;
|
|
69
|
+
zoomPopup: ElementRef;
|
|
70
|
+
viewImage: any;
|
|
71
|
+
openModel(): void;
|
|
72
|
+
flagsView(): void;
|
|
64
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoneConcentrationComponent, never>;
|
|
65
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZoneConcentrationComponent, "lib-zone-concentration", never, {}, {}, never, never, false, never>;
|
|
66
75
|
}
|