tango-app-ui-analyse-zone 3.7.1-beta.4-demo1 → 3.7.1-beta.5
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 +28 -9
- package/esm2022/lib/components/segmentation/segmentation.component.mjs +46 -19
- package/esm2022/lib/components/services/zone.service.mjs +11 -1
- package/esm2022/lib/components/zone-concentration/zone-concentration.component.mjs +4 -3
- package/esm2022/lib/components/zone-v2/customer-journey/customer-journey.component.mjs +6 -7
- package/esm2022/lib/components/zone-v2/store-heatmap/store-heatmap.component.mjs +4 -3
- package/fesm2022/tango-app-ui-analyse-zone.mjs +778 -722
- package/fesm2022/tango-app-ui-analyse-zone.mjs.map +1 -1
- package/lib/components/segmentation/segmentation.component.d.ts +2 -0
- package/lib/components/services/zone.service.d.ts +4 -0
- package/lib/components/zone-v2/customer-journey/customer-journey.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -26,6 +26,8 @@ export declare class SegmentationComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
constructor(ZoneService: ZoneService, changeDetector: ChangeDetectorRef, gs: GlobalStateService, toast: ToastService);
|
|
27
27
|
dataEmitter: EventEmitter<string>;
|
|
28
28
|
ngOnInit(): void;
|
|
29
|
+
private loadClient430Data;
|
|
30
|
+
private loadClient463Data;
|
|
29
31
|
private root;
|
|
30
32
|
ngOnDestroy(): void;
|
|
31
33
|
getCardData(): void;
|
|
@@ -45,6 +45,10 @@ export declare class ZoneService implements OnDestroy {
|
|
|
45
45
|
getZonewiseCustomerFunnelExport(data: any): Observable<any>;
|
|
46
46
|
getCheckTodayReportStatus(params: any): Observable<any>;
|
|
47
47
|
private handleError;
|
|
48
|
+
private zoneNameSubject;
|
|
49
|
+
setData(zoneName: string): void;
|
|
50
|
+
getData(): string | null;
|
|
51
|
+
getData$(): Observable<string | null>;
|
|
48
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoneService, never>;
|
|
49
53
|
static ɵprov: i0.ɵɵInjectableDeclaration<ZoneService>;
|
|
50
54
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, NgZone, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { Zonev2Service } from '../../services/zonev2.service';
|
|
4
4
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
@@ -6,7 +6,7 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
|
6
6
|
import { GlobalStateService } from 'tango-app-ui-global';
|
|
7
7
|
import { ToastService } from 'tango-app-ui-shared';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class CustomerJourneyComponent
|
|
9
|
+
export declare class CustomerJourneyComponent {
|
|
10
10
|
private zone;
|
|
11
11
|
private elRef;
|
|
12
12
|
private fb;
|