tango-app-ui-analyse-zone 3.3.1-beta.2 → 3.3.1-beta.4
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/top-performing-zones/top-performing-zones.component.mjs +6 -4
- package/esm2022/lib/components/zone-concentration/zone-concentration.component.mjs +3 -3
- package/esm2022/lib/components/zone-summary-table/zone-summary-table.component.mjs +3 -3
- package/esm2022/lib/components/zone-v2/customer-journey/customer-journey.component.mjs +178 -20
- package/esm2022/lib/components/zone-v2/summary-table/summary-table.component.mjs +3 -3
- package/esm2022/lib/components/zone-v2/top-performing/top-performing.component.mjs +3 -3
- package/esm2022/lib/tango-analyse-zone.module.mjs +2 -2
- package/fesm2022/tango-app-ui-analyse-zone.mjs +183 -30
- package/fesm2022/tango-app-ui-analyse-zone.mjs.map +1 -1
- package/lib/components/top-performing-zones/top-performing-zones.component.d.ts +1 -1
- package/lib/components/zone-v2/customer-journey/customer-journey.component.d.ts +40 -3
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@ export declare class TopPerformingZonesComponent {
|
|
|
38
38
|
zonefootfall(): void;
|
|
39
39
|
getTopPerformingStores(): void;
|
|
40
40
|
onExport(): void;
|
|
41
|
-
searchField(): void;
|
|
41
|
+
searchField(e: any): void;
|
|
42
42
|
sortData(column: string): void;
|
|
43
43
|
storeView(data: any): void;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopPerformingZonesComponent, never>;
|
|
@@ -1,23 +1,60 @@
|
|
|
1
|
-
import { ElementRef, NgZone } from '@angular/core';
|
|
1
|
+
import { ElementRef, NgZone, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { Zonev2Service } from '../../services/zonev2.service';
|
|
4
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
6
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
7
|
+
import { ToastService } from 'tango-app-ui-shared';
|
|
3
8
|
import * as i0 from "@angular/core";
|
|
4
9
|
export declare class CustomerJourneyComponent {
|
|
5
10
|
private zone;
|
|
6
11
|
private elRef;
|
|
7
12
|
private fb;
|
|
13
|
+
private Zonev2Service;
|
|
14
|
+
private changeDetector;
|
|
15
|
+
gs: GlobalStateService;
|
|
16
|
+
modalService: NgbModal;
|
|
17
|
+
private router;
|
|
18
|
+
private route;
|
|
19
|
+
private toast;
|
|
8
20
|
private root;
|
|
21
|
+
private destroy$;
|
|
9
22
|
form: FormGroup;
|
|
10
23
|
selectControl: FormControl;
|
|
11
24
|
datasets: Array<{
|
|
12
25
|
value: string;
|
|
13
26
|
label: string;
|
|
14
27
|
}>;
|
|
15
|
-
|
|
28
|
+
isExport: boolean;
|
|
29
|
+
itemsPerPage: number;
|
|
30
|
+
currentPage: number;
|
|
31
|
+
totalItems: number;
|
|
32
|
+
paginationSizes: number[];
|
|
33
|
+
pageSize: number;
|
|
34
|
+
sortColumName: string;
|
|
35
|
+
sortBy: number;
|
|
36
|
+
searchInput: any;
|
|
37
|
+
topPerformingStores: any[];
|
|
38
|
+
searchDisabled: boolean;
|
|
39
|
+
invoiceList: any[];
|
|
40
|
+
zonesummaryLoading: boolean;
|
|
41
|
+
zonesummaryNoData: boolean;
|
|
42
|
+
headerData: any;
|
|
43
|
+
sortDirection: number;
|
|
44
|
+
showAverage: boolean;
|
|
45
|
+
constructor(zone: NgZone, elRef: ElementRef, fb: FormBuilder, Zonev2Service: Zonev2Service, changeDetector: ChangeDetectorRef, gs: GlobalStateService, modalService: NgbModal, router: Router, route: ActivatedRoute, toast: ToastService);
|
|
46
|
+
ngOnDestroy(): void;
|
|
16
47
|
ngOnInit(): void;
|
|
17
48
|
initializeChart(): void;
|
|
18
49
|
setColorStep(series: any, stepValue: number): void;
|
|
19
50
|
onValueChange(event: any): void;
|
|
20
|
-
|
|
51
|
+
getSummayTable(): void;
|
|
52
|
+
onExport(): void;
|
|
53
|
+
searchField(): void;
|
|
54
|
+
sortData(column: string): void;
|
|
55
|
+
onPageSizeChange(pageSize: any): void;
|
|
56
|
+
onPageChange(pageOffset: any): void;
|
|
57
|
+
toggleView(): void;
|
|
21
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomerJourneyComponent, never>;
|
|
22
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<CustomerJourneyComponent, "lib-customer-journey", never, {}, {}, never, never, false, never>;
|
|
23
60
|
}
|