tango-app-ui-analyse-traffic 3.0.1-dev → 3.3.0-alpha.0
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/chart-detail-modal/chart-detail-modal.component.mjs +55 -0
- package/esm2022/lib/components/image-doc/image-doc.component.mjs +105 -0
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +80 -0
- package/esm2022/lib/components/tango-analyse-traffic/tango-analyse-traffic.component.mjs +22 -6
- package/esm2022/lib/components/traffic-analysis/traffic-analysis.component.mjs +579 -130
- package/esm2022/lib/components/traffic-card-charts/traffic-card-charts.component.mjs +937 -0
- package/esm2022/lib/components/traffic-charts/traffic-charts.component.mjs +422 -0
- package/esm2022/lib/services/traffic.service.mjs +69 -0
- package/esm2022/lib/tango-analyse-traffic-routing.module.mjs +4 -4
- package/esm2022/lib/tango-analyse-traffic.module.mjs +27 -9
- package/fesm2022/tango-app-ui-analyse-traffic.mjs +2234 -136
- package/fesm2022/tango-app-ui-analyse-traffic.mjs.map +1 -1
- package/lib/components/chart-detail-modal/chart-detail-modal.component.d.ts +16 -0
- package/lib/components/image-doc/image-doc.component.d.ts +31 -0
- package/lib/components/reactive-select/reactive-select.component.d.ts +23 -0
- package/lib/components/tango-analyse-traffic/tango-analyse-traffic.component.d.ts +7 -1
- package/lib/components/traffic-analysis/traffic-analysis.component.d.ts +62 -3
- package/lib/components/traffic-card-charts/traffic-card-charts.component.d.ts +81 -0
- package/lib/components/traffic-charts/traffic-charts.component.d.ts +55 -0
- package/lib/services/traffic.service.d.ts +26 -0
- package/lib/tango-analyse-traffic.module.d.ts +10 -3
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ChartDetailModalComponent implements AfterViewInit {
|
|
5
|
+
activeModal: NgbActiveModal;
|
|
6
|
+
private el;
|
|
7
|
+
private renderer;
|
|
8
|
+
data: any;
|
|
9
|
+
clientX: number;
|
|
10
|
+
clientY: number;
|
|
11
|
+
constructor(activeModal: NgbActiveModal, el: ElementRef, renderer: Renderer2);
|
|
12
|
+
ngAfterViewInit(): void;
|
|
13
|
+
private adjustPosition;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartDetailModalComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartDetailModalComponent, "lib-chart-detail-modal", never, { "data": { "alias": "data"; "required": false; }; "clientX": { "alias": "clientX"; "required": false; }; "clientY": { "alias": "clientY"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { TrafficService } from '../../services/traffic.service';
|
|
3
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ImageDocComponent implements OnInit, OnDestroy {
|
|
6
|
+
private service;
|
|
7
|
+
gs: GlobalStateService;
|
|
8
|
+
private cd;
|
|
9
|
+
imageArray: {
|
|
10
|
+
id: number;
|
|
11
|
+
time: string;
|
|
12
|
+
value: string;
|
|
13
|
+
}[];
|
|
14
|
+
selectIndex: any;
|
|
15
|
+
selectedTime: any;
|
|
16
|
+
objData: any;
|
|
17
|
+
objectsArray: any;
|
|
18
|
+
imagesArrayData: any;
|
|
19
|
+
processType: string;
|
|
20
|
+
headerData: any;
|
|
21
|
+
constructor(service: TrafficService, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
private readonly destroy$;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
getImageFolder(): void;
|
|
26
|
+
getImageView(): void;
|
|
27
|
+
getimages(index: any): void;
|
|
28
|
+
selectedTimes(val: any): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageDocComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageDocComponent, "lib-image-doc", never, {}, {}, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ReactiveSelectComponent implements ControlValueAccessor {
|
|
4
|
+
private onTouched;
|
|
5
|
+
private onChanged;
|
|
6
|
+
protected isDisabled: boolean;
|
|
7
|
+
idField: string;
|
|
8
|
+
nameField: string;
|
|
9
|
+
label: string;
|
|
10
|
+
data: any;
|
|
11
|
+
protected isOpened: boolean;
|
|
12
|
+
protected selected: Record<string, any> | null;
|
|
13
|
+
protected selectedId: string | number;
|
|
14
|
+
writeValue(val: string | number): void;
|
|
15
|
+
registerOnChange(fn: any): void;
|
|
16
|
+
registerOnTouched(fn: any): void;
|
|
17
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
18
|
+
onSelect(item: Record<string, any>): void;
|
|
19
|
+
onClick(event: MouseEvent): void;
|
|
20
|
+
isComponentClicked(targetElement: HTMLElement): boolean;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReactiveSelectComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReactiveSelectComponent, "lib-reactive-select", never, { "idField": { "alias": "idField"; "required": false; }; "nameField": { "alias": "nameField"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { PageInfoService } from 'tango-app-ui-global';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class TangoAnalyseTrafficComponent {
|
|
4
|
+
export declare class TangoAnalyseTrafficComponent implements OnInit {
|
|
5
|
+
private pageInfo;
|
|
6
|
+
constructor(pageInfo: PageInfoService);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
setPageData(): void;
|
|
3
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoAnalyseTrafficComponent, never>;
|
|
4
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<TangoAnalyseTrafficComponent, "lib-tango-analyse-traffic", never, {}, {}, never, never, false, never>;
|
|
5
11
|
}
|
|
@@ -1,13 +1,72 @@
|
|
|
1
|
-
import { OnInit, OnDestroy, NgZone } from
|
|
1
|
+
import { OnInit, OnDestroy, NgZone, ElementRef, Renderer2, ChangeDetectorRef } from "@angular/core";
|
|
2
|
+
import * as am5 from "@amcharts/amcharts5";
|
|
3
|
+
import { TrafficService } from "../../services/traffic.service";
|
|
4
|
+
import { NgbTooltip } from "@ng-bootstrap/ng-bootstrap";
|
|
5
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
2
6
|
import * as i0 from "@angular/core";
|
|
3
7
|
export declare class TrafficAnalysisComponent implements OnInit, OnDestroy {
|
|
4
8
|
private zone;
|
|
9
|
+
private el;
|
|
10
|
+
private renderer;
|
|
11
|
+
private service;
|
|
12
|
+
gs: GlobalStateService;
|
|
13
|
+
private cd;
|
|
5
14
|
private lineroot;
|
|
6
|
-
|
|
15
|
+
private bouncedlineroot;
|
|
16
|
+
private potentialBuyerslineroot;
|
|
17
|
+
private engagerslineroot;
|
|
18
|
+
sortedColumn: any;
|
|
19
|
+
sortDirection: any;
|
|
20
|
+
private chart;
|
|
21
|
+
private tooltipElement;
|
|
22
|
+
private readonly destroy$;
|
|
23
|
+
getCardData: any;
|
|
24
|
+
heatMapData: any;
|
|
25
|
+
getCardGraphData: any;
|
|
26
|
+
getSummaryTableData: any;
|
|
27
|
+
itemsPerPage: number;
|
|
28
|
+
currentPage: number;
|
|
29
|
+
totalItems: number;
|
|
30
|
+
paginationSizes: number[];
|
|
31
|
+
pageSize: number;
|
|
32
|
+
offset: number;
|
|
33
|
+
limit: number;
|
|
34
|
+
getRecapVideoData: any;
|
|
35
|
+
tableobj: any;
|
|
36
|
+
heatMaproot: am5.Root;
|
|
37
|
+
valueType: string;
|
|
38
|
+
dateType: string;
|
|
39
|
+
points: {
|
|
40
|
+
name: string;
|
|
41
|
+
top: string;
|
|
42
|
+
left: string;
|
|
43
|
+
avgFootfall: number;
|
|
44
|
+
openTime: string;
|
|
45
|
+
closeTime: string;
|
|
46
|
+
}[];
|
|
47
|
+
headerData: any;
|
|
48
|
+
handleClickOutside(event: MouseEvent): void;
|
|
49
|
+
activeTooltip: string | null;
|
|
50
|
+
constructor(zone: NgZone, el: ElementRef, renderer: Renderer2, service: TrafficService, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
51
|
+
tooltip: NgbTooltip;
|
|
52
|
+
tooltipValue: string;
|
|
7
53
|
ngOnInit(): void;
|
|
54
|
+
toggleTooltip(pointName: string): void;
|
|
55
|
+
getTooltipText(): string;
|
|
56
|
+
getCard(): void;
|
|
57
|
+
getRecap(): void;
|
|
58
|
+
getCardGraph(): void;
|
|
59
|
+
getTable(): void;
|
|
60
|
+
onPageChange(pageOffset: number): void;
|
|
61
|
+
onPageSizeChange(pageSize: number): void;
|
|
8
62
|
ngOnDestroy(): void;
|
|
9
|
-
|
|
63
|
+
footfalllineCharts(): void;
|
|
64
|
+
bouncedlineCharts(): void;
|
|
65
|
+
potentiallineCharts(): void;
|
|
66
|
+
engagerslineCharts(): void;
|
|
10
67
|
heatMap(): void;
|
|
68
|
+
type: any;
|
|
69
|
+
selectPlan(type: any): void;
|
|
11
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficAnalysisComponent, never>;
|
|
12
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficAnalysisComponent, "lib-traffic-analysis", never, {}, {}, never, never, false, never>;
|
|
13
72
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, NgZone, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import * as am5 from "@amcharts/amcharts5";
|
|
3
|
+
import * as am5xy from "@amcharts/amcharts5/xy";
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import { TrafficService } from '../../services/traffic.service';
|
|
6
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TrafficCardChartsComponent implements OnInit, OnDestroy {
|
|
9
|
+
private zone;
|
|
10
|
+
private router;
|
|
11
|
+
private service;
|
|
12
|
+
gs: GlobalStateService;
|
|
13
|
+
private cd;
|
|
14
|
+
private root;
|
|
15
|
+
private chart;
|
|
16
|
+
private series;
|
|
17
|
+
private root2;
|
|
18
|
+
private chart2;
|
|
19
|
+
private series2;
|
|
20
|
+
detailedRoot: am5.Root;
|
|
21
|
+
detailedChart: am5xy.XYChart;
|
|
22
|
+
detailedSeries: am5xy.ColumnSeries;
|
|
23
|
+
heatMapRoot: am5.Root;
|
|
24
|
+
heatMapChart: am5xy.XYChart;
|
|
25
|
+
heatMapSeries: am5xy.ColumnSeries;
|
|
26
|
+
dwellRoot: am5.Root;
|
|
27
|
+
dwellChart: am5xy.XYChart;
|
|
28
|
+
dwellSeries: am5xy.ColumnSeries;
|
|
29
|
+
demoGraphicsData: any;
|
|
30
|
+
demoGraphicsroot: any;
|
|
31
|
+
buyersroot: any;
|
|
32
|
+
datasets: any;
|
|
33
|
+
data: any;
|
|
34
|
+
currentData: any;
|
|
35
|
+
currentData2: any;
|
|
36
|
+
detailedCharts: boolean;
|
|
37
|
+
date: any;
|
|
38
|
+
value: any;
|
|
39
|
+
footfallValue: string;
|
|
40
|
+
demoGraphicsChartInstance: any;
|
|
41
|
+
buyersChartInstance: any;
|
|
42
|
+
selectedTab: any;
|
|
43
|
+
getOverallCardData: any;
|
|
44
|
+
objData: any;
|
|
45
|
+
getOverallHourlyData: any;
|
|
46
|
+
getOverallChartData: any;
|
|
47
|
+
getSingleChartData: any;
|
|
48
|
+
buyersData: any;
|
|
49
|
+
getDensityDwellData: any;
|
|
50
|
+
trafficData: any;
|
|
51
|
+
footfallDate: string;
|
|
52
|
+
headerData: any;
|
|
53
|
+
constructor(zone: NgZone, router: Router, service: TrafficService, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
54
|
+
ngOnInit(): void;
|
|
55
|
+
selectedTabs(type: any): void;
|
|
56
|
+
overallCard(): void;
|
|
57
|
+
overallHourlyChart(): void;
|
|
58
|
+
offset: number;
|
|
59
|
+
limit: number;
|
|
60
|
+
overallChart(): void;
|
|
61
|
+
getDwell(): void;
|
|
62
|
+
initChart(): void;
|
|
63
|
+
initHeatChart(): void;
|
|
64
|
+
onDatasetChange(event: Event): void;
|
|
65
|
+
backToFootfall(): void;
|
|
66
|
+
getDemoGraphics(): void;
|
|
67
|
+
demoGraphicsChart(): void;
|
|
68
|
+
makeSeries(name: any, fieldName: any, xAxis: am5xy.CategoryAxis<am5xy.AxisRenderer>, yAxis: am5xy.ValueAxis<am5xy.AxisRenderer>): void;
|
|
69
|
+
getBuyers(): void;
|
|
70
|
+
getBuyersChart(): void;
|
|
71
|
+
getBuyerSeries(name: any, fieldName: any, xAxis: am5xy.CategoryAxis<am5xy.AxisRenderer>, yAxis: am5xy.ValueAxis<am5xy.AxisRenderer>): void;
|
|
72
|
+
handleBarClick(dataItem: any): void;
|
|
73
|
+
getSingleStore(): void;
|
|
74
|
+
trafficHeatChart(): void;
|
|
75
|
+
getDwellChart(): void;
|
|
76
|
+
private readonly destroy$;
|
|
77
|
+
ngOnDestroy(): void;
|
|
78
|
+
onDateChange(event: any): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficCardChartsComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficCardChartsComponent, "lib-traffic-card-charts", never, {}, {}, never, never, false, never>;
|
|
81
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as am5 from '@amcharts/amcharts5';
|
|
3
|
+
import * as am5xy from '@amcharts/amcharts5/xy';
|
|
4
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
5
|
+
import { FormControl } from '@angular/forms';
|
|
6
|
+
import { TrafficService } from '../../services/traffic.service';
|
|
7
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TrafficChartsComponent implements OnInit, OnDestroy {
|
|
10
|
+
private zone;
|
|
11
|
+
private modalService;
|
|
12
|
+
private service;
|
|
13
|
+
gs: GlobalStateService;
|
|
14
|
+
private cd;
|
|
15
|
+
chart: any;
|
|
16
|
+
root: any;
|
|
17
|
+
yAxis: any;
|
|
18
|
+
xAxis: any;
|
|
19
|
+
legend: any;
|
|
20
|
+
tooltipContainer: ElementRef<HTMLDivElement>;
|
|
21
|
+
tooltipData: any;
|
|
22
|
+
datasets: {
|
|
23
|
+
value: string;
|
|
24
|
+
label: string;
|
|
25
|
+
}[];
|
|
26
|
+
type: any;
|
|
27
|
+
private sharedTooltip;
|
|
28
|
+
selectValue: FormControl<string | null>;
|
|
29
|
+
private clickListener;
|
|
30
|
+
objData: any;
|
|
31
|
+
private readonly destroy$;
|
|
32
|
+
getFootfallTrendData: any;
|
|
33
|
+
processType: string;
|
|
34
|
+
typeValue: any;
|
|
35
|
+
headerData: any;
|
|
36
|
+
constructor(zone: NgZone, modalService: NgbModal, service: TrafficService, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
37
|
+
offset: number;
|
|
38
|
+
limit: number;
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
footfallTrend(): void;
|
|
42
|
+
selectPlan(type: any): void;
|
|
43
|
+
createChart(): void;
|
|
44
|
+
tooltipVisible: boolean;
|
|
45
|
+
showTooltip(data: any, x: number, y: number): void;
|
|
46
|
+
hideTooltip(): void;
|
|
47
|
+
onClick(event: MouseEvent): void;
|
|
48
|
+
onDatasetChange(selectedValue: string): void;
|
|
49
|
+
updateChartData(): void;
|
|
50
|
+
createColumnSeries(name: string, fieldName: string, xAxis: am5xy.CategoryAxis<am5xy.AxisRenderer>, yAxis: am5xy.ValueAxis<am5xy.AxisRenderer>, stacked: boolean, color: am5.Color): void;
|
|
51
|
+
createLineSeries(name: string, fieldName: string, xAxis: am5xy.CategoryAxis<am5xy.AxisRenderer>, yAxis: am5xy.ValueAxis<am5xy.AxisRenderer>, color: am5.Color): void;
|
|
52
|
+
changeStatus(type: any): void;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficChartsComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficChartsComponent, "lib-traffic-charts", never, {}, {}, never, never, false, never>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
3
|
+
import { Observable } from "rxjs";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TrafficService {
|
|
6
|
+
private http;
|
|
7
|
+
private gs;
|
|
8
|
+
trafficApiUrl: any;
|
|
9
|
+
constructor(http: HttpClient, gs: GlobalStateService);
|
|
10
|
+
getCardList(params: any): Observable<any>;
|
|
11
|
+
getCardGraphList(params: any): Observable<any>;
|
|
12
|
+
getSummaryTableList(params: any): Observable<any>;
|
|
13
|
+
getOverallCards(params: any): Observable<any>;
|
|
14
|
+
getOverallHourlyChart(params: any): Observable<any>;
|
|
15
|
+
getOverallChart(params: any): Observable<any>;
|
|
16
|
+
getSingleStoreChart(params: any): Observable<any>;
|
|
17
|
+
getDemoGraphicsChart(params: any): Observable<any>;
|
|
18
|
+
getBuyersChart(params: any): Observable<any>;
|
|
19
|
+
getFootfallDirectoryFolders(params: any): Observable<any>;
|
|
20
|
+
getFootfallDirectory(params: any): Observable<any>;
|
|
21
|
+
getfootfallTrend(params: any): Observable<any>;
|
|
22
|
+
getRecapVideo(params: any): Observable<any>;
|
|
23
|
+
getDensityDwell(params: any): Observable<any>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TrafficService>;
|
|
26
|
+
}
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./components/traffic-analysis/traffic-analysis.component";
|
|
3
3
|
import * as i2 from "./components/tango-analyse-traffic/tango-analyse-traffic.component";
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "./
|
|
4
|
+
import * as i3 from "./components/traffic-charts/traffic-charts.component";
|
|
5
|
+
import * as i4 from "./components/traffic-card-charts/traffic-card-charts.component";
|
|
6
|
+
import * as i5 from "./components/image-doc/image-doc.component";
|
|
7
|
+
import * as i6 from "./components/chart-detail-modal/chart-detail-modal.component";
|
|
8
|
+
import * as i7 from "./components/reactive-select/reactive-select.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "./tango-analyse-traffic-routing.module";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "tango-app-ui-shared";
|
|
6
13
|
export declare class TangoAnalyseTrafficModule {
|
|
7
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoAnalyseTrafficModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTrafficModule, [typeof i1.TrafficAnalysisComponent, typeof i2.TangoAnalyseTrafficComponent], [typeof
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTrafficModule, [typeof i1.TrafficAnalysisComponent, typeof i2.TangoAnalyseTrafficComponent, typeof i3.TrafficChartsComponent, typeof i4.TrafficCardChartsComponent, typeof i5.ImageDocComponent, typeof i6.ChartDetailModalComponent, typeof i7.ReactiveSelectComponent], [typeof i8.CommonModule, typeof i9.TangoAnalyseTrafficRoutingModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.CommonSharedModule], never>;
|
|
9
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoAnalyseTrafficModule>;
|
|
10
17
|
}
|