tango-app-ui-analyse-trax 3.0.0-dev → 3.3.1-alpha-task.63
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/action-centre/action-centre.component.mjs +303 -0
- package/esm2022/lib/components/activity-log/activity-log.component.mjs +94 -0
- package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +1439 -0
- package/esm2022/lib/components/add-task/add-task.component.mjs +85 -0
- package/esm2022/lib/components/checklist/checklist.component.mjs +252 -0
- package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +1954 -0
- package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +12 -0
- package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +84 -0
- package/esm2022/lib/components/create-task/create-task.component.mjs +367 -0
- package/esm2022/lib/components/create-task/create-task.data.mjs +306 -0
- package/esm2022/lib/components/create-task/create-task.interface.mjs +2 -0
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +236 -0
- package/esm2022/lib/components/dashboard/dashboard.component.mjs +600 -0
- package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +635 -0
- package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +172 -0
- package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +12 -0
- package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +119 -0
- package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +12 -0
- package/esm2022/lib/components/flags/flags.component.mjs +257 -0
- package/esm2022/lib/components/flags/flags.interface.mjs +2 -0
- package/esm2022/lib/components/flags-info/flags-info.component.mjs +388 -0
- package/esm2022/lib/components/flags-info/flags-info.interface.mjs +2 -0
- package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +71 -0
- package/esm2022/lib/components/gallery/gallery.component.mjs +1202 -0
- package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
- package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +172 -0
- package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +117 -0
- package/esm2022/lib/components/orders/orders.component.mjs +171 -0
- package/esm2022/lib/components/pagination/pagination.component.mjs +62 -0
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +105 -0
- package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +60 -0
- package/esm2022/lib/components/reports/reports.component.mjs +299 -0
- package/esm2022/lib/components/reports/reports.interface.mjs +2 -0
- package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +27 -6
- package/esm2022/lib/components/task/task.component.mjs +271 -0
- package/esm2022/lib/components/task-configure/task-configure.component.mjs +504 -0
- package/esm2022/lib/components/task-configure/task-configure.interface.mjs +2 -0
- package/esm2022/lib/components/task-info/task-info.component.mjs +300 -0
- package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +203 -0
- package/esm2022/lib/components/task-layout/task-layout.component.mjs +12 -0
- package/esm2022/lib/components/trax-store/trax-store.component.mjs +153 -0
- package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +67 -0
- package/esm2022/lib/services/trax.service.mjs +334 -0
- package/esm2022/lib/tango-analyse-trax-routing.module.mjs +124 -6
- package/esm2022/lib/tango-analyse-trax.module.mjs +147 -9
- package/fesm2022/tango-app-ui-analyse-trax.mjs +11512 -21
- package/fesm2022/tango-app-ui-analyse-trax.mjs.map +1 -1
- package/lib/components/action-centre/action-centre.component.d.ts +56 -0
- package/lib/components/activity-log/activity-log.component.d.ts +30 -0
- package/lib/components/add-checklist/add-checklist.component.d.ts +99 -0
- package/lib/components/add-task/add-task.component.d.ts +38 -0
- package/lib/components/checklist/checklist.component.d.ts +39 -0
- package/lib/components/checklist-configure/checklist-configure.component.d.ts +160 -0
- package/lib/components/checklistlayout/checklistlayout.component.d.ts +5 -0
- package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +24 -0
- package/lib/components/create-task/create-task.component.d.ts +58 -0
- package/lib/components/create-task/create-task.data.d.ts +244 -0
- package/lib/components/create-task/create-task.interface.d.ts +147 -0
- package/lib/components/custom-select/custom-select.component.d.ts +35 -0
- package/lib/components/dashboard/dashboard.component.d.ts +77 -0
- package/lib/components/dashboard-info/dashboard-info.component.d.ts +102 -0
- package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +40 -0
- package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +5 -0
- package/lib/components/export-gallery/export-gallery.component.d.ts +33 -0
- package/lib/components/flag-layout/flag-layout.component.d.ts +5 -0
- package/lib/components/flags/flags.component.d.ts +51 -0
- package/lib/components/flags/flags.interface.d.ts +64 -0
- package/lib/components/flags-info/flags-info.component.d.ts +62 -0
- package/lib/components/flags-info/flags-info.interface.d.ts +212 -0
- package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +13 -0
- package/lib/components/gallery/gallery.component.d.ts +126 -0
- package/lib/components/group-select/group-select.component.d.ts +33 -0
- package/lib/components/managechecklist/managechecklist.component.d.ts +32 -0
- package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +27 -0
- package/lib/components/orders/orders.component.d.ts +38 -0
- package/lib/components/pagination/pagination.component.d.ts +16 -0
- package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
- package/lib/components/reports/date-picker/date-picker.component.d.ts +23 -0
- package/lib/components/reports/reports.component.d.ts +55 -0
- package/lib/components/reports/reports.interface.d.ts +46 -0
- package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +10 -1
- package/lib/components/task/task.component.d.ts +59 -0
- package/lib/components/task-configure/task-configure.component.d.ts +69 -0
- package/lib/components/task-configure/task-configure.interface.d.ts +124 -0
- package/lib/components/task-info/task-info.component.d.ts +68 -0
- package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +60 -0
- package/lib/components/task-layout/task-layout.component.d.ts +5 -0
- package/lib/components/trax-store/trax-store.component.d.ts +44 -0
- package/lib/components/traxpopup/traxpopup.component.d.ts +23 -0
- package/lib/services/trax.service.d.ts +107 -0
- package/lib/tango-analyse-trax.module.d.ts +43 -3
- package/package.json +1 -1
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { OnDestroy } from '@angular/core';
|
|
3
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TraxService implements OnDestroy {
|
|
7
|
+
private http;
|
|
8
|
+
private gs;
|
|
9
|
+
traxUrl: any;
|
|
10
|
+
storeUrl: any;
|
|
11
|
+
galleryApiUrl: any;
|
|
12
|
+
dropDownTrigger: BehaviorSubject<any>;
|
|
13
|
+
private reloadDataSubject;
|
|
14
|
+
reloadData$: Observable<boolean>;
|
|
15
|
+
dropdownCloseTrigger: BehaviorSubject<string>;
|
|
16
|
+
clientAPiUrl: any;
|
|
17
|
+
trafficApiUrl: any;
|
|
18
|
+
traxTaskUrl: string;
|
|
19
|
+
constructor(http: HttpClient, gs: GlobalStateService);
|
|
20
|
+
triggerReload(): void;
|
|
21
|
+
exportAsExcelFile(json: any[], excelFileName: string): void;
|
|
22
|
+
saveAsExcelFile(buffer: any, fileName: string): void;
|
|
23
|
+
saveAsTemplate(buffer: any, fileName: string): void;
|
|
24
|
+
private readonly destroy$;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
getSummaryTableData(data: any): Observable<any>;
|
|
27
|
+
getchecklist(data: any): Observable<any>;
|
|
28
|
+
getMobUsagelist(data: any): Observable<any>;
|
|
29
|
+
getcustomerunattendedlist(data: any): Observable<any>;
|
|
30
|
+
storeOpencloselist(data: any): Observable<any>;
|
|
31
|
+
getSummaryTableExport(data: any): Observable<any>;
|
|
32
|
+
checklist(obj: any): Observable<Object>;
|
|
33
|
+
imageupload(users: any): Observable<Object>;
|
|
34
|
+
validateUser(users: any): Observable<Object>;
|
|
35
|
+
getupdatechecklist(id: any, data: any): Observable<Object>;
|
|
36
|
+
createchecklist(data: any): Observable<Object>;
|
|
37
|
+
configUpdate(obj: any): Observable<Object>;
|
|
38
|
+
getconfig(obj: any): Observable<Object>;
|
|
39
|
+
runAIInsert(data: any): Observable<Object>;
|
|
40
|
+
duplicatechecklist(data: any): Observable<Object>;
|
|
41
|
+
getUserDetails(obj: any): Observable<Object>;
|
|
42
|
+
getStoreList(data: any): Observable<Object>;
|
|
43
|
+
deleteChecklist(data: any): Observable<Object>;
|
|
44
|
+
publish(data: any): Observable<Object>;
|
|
45
|
+
getStores(data: any): Observable<any>;
|
|
46
|
+
getChecklists(data: any): Observable<any>;
|
|
47
|
+
viewChecklists(data: any): Observable<any>;
|
|
48
|
+
overallFlagMetrics(body: any): Observable<any>;
|
|
49
|
+
overallFlagMetricsComparison(body: any): Observable<any>;
|
|
50
|
+
flagsTable(body: any): Observable<any>;
|
|
51
|
+
exportFlagsTable(body: any): Observable<any>;
|
|
52
|
+
getOverallCardsData(data: any): Observable<any>;
|
|
53
|
+
getChecklistPerformanceData(data: any): Observable<any>;
|
|
54
|
+
getChecklistPerformanceDataExport(data: any): Observable<any>;
|
|
55
|
+
getStorePerformanceData(data: any): Observable<any>;
|
|
56
|
+
getStorePerformanceDataExport(data: any): Observable<any>;
|
|
57
|
+
getUserPerformanceData(data: any): Observable<any>;
|
|
58
|
+
getUserPerformanceDataExport(data: any): Observable<any>;
|
|
59
|
+
getChecklistDropdownData(data: any): Observable<any>;
|
|
60
|
+
getChecklistDropdownDashboardData(data: any): Observable<any>;
|
|
61
|
+
getInfoCardsData(data: any): Observable<any>;
|
|
62
|
+
checklistFlagTable(body: any): Observable<any>;
|
|
63
|
+
exportChecklistFlagTable(body: any): Observable<any>;
|
|
64
|
+
reportTable(body: any): Observable<any>;
|
|
65
|
+
flagCardValues(body: any): Observable<any>;
|
|
66
|
+
flagCardTerend(body: any): Observable<any>;
|
|
67
|
+
getChecklistInfoData(data: any): Observable<any>;
|
|
68
|
+
getUserlistDropdownData(data: any): Observable<any>;
|
|
69
|
+
getMonthlyPeformanceData(data: any): Observable<any>;
|
|
70
|
+
getClientUser(clientId: any): Observable<any>;
|
|
71
|
+
getZoneList(clientId: any): Observable<any>;
|
|
72
|
+
getInfoComparisonCardsData(data: any): Observable<any>;
|
|
73
|
+
getOverallComparisonCardsData(data: any): Observable<any>;
|
|
74
|
+
getaichecklist(data: any): Observable<Object>;
|
|
75
|
+
reportTableExport(body: any): Observable<any>;
|
|
76
|
+
getpredefinedchecklist(data: any): Observable<Object>;
|
|
77
|
+
getclient(data: any): Observable<Object>;
|
|
78
|
+
getGroups(data: any): Observable<Object>;
|
|
79
|
+
getclusters(data: any): Observable<Object>;
|
|
80
|
+
getStoreslist(data: any): Observable<Object>;
|
|
81
|
+
getOrdersByDate(data: any): Observable<Object>;
|
|
82
|
+
orderUpdate(data: any): Observable<Object>;
|
|
83
|
+
orderDelete(data: any): Observable<Object>;
|
|
84
|
+
isLocusAuthorized(): Observable<Object>;
|
|
85
|
+
reinitiateChecklist(data: any): Observable<Object>;
|
|
86
|
+
exportAsCSVFile(json: any[], excelFileName: string, identifier?: any[]): void;
|
|
87
|
+
private saveAsCSVFile;
|
|
88
|
+
reInitiate(body: any): Observable<any>;
|
|
89
|
+
createTask(data: any): Observable<Object>;
|
|
90
|
+
getTaskconfig(id: string, clientId: string): Observable<Object>;
|
|
91
|
+
configTask(data: any): Observable<Object>;
|
|
92
|
+
getTaskUserDetails(data: any): Observable<Object>;
|
|
93
|
+
uploadTaskAssignees(data: any): Observable<Object>;
|
|
94
|
+
getOverallTasksData(data: any): Observable<any>;
|
|
95
|
+
getTaskTableData(data: any): Observable<any>;
|
|
96
|
+
getTaskTableDataExport(data: any): Observable<any>;
|
|
97
|
+
getTaskInfoTableData(data: any): Observable<any>;
|
|
98
|
+
getTaskInfoTableDataExport(data: any): Observable<any>;
|
|
99
|
+
getOverallActionCenterData(data: any): Observable<any>;
|
|
100
|
+
getApprovalData(data: any): Observable<any>;
|
|
101
|
+
getActivityLog(data: any): Observable<any>;
|
|
102
|
+
getTaskDropdownList(data: any): Observable<any>;
|
|
103
|
+
getTaskDelete(data: any): Observable<any>;
|
|
104
|
+
getTaskUpdate(data: any): Observable<any>;
|
|
105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TraxService, never>;
|
|
106
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TraxService>;
|
|
107
|
+
}
|
|
@@ -1,9 +1,49 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./components/tango-analyse-trax/tango-analyse-trax.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "./
|
|
3
|
+
import * as i2 from "./components/checklist/checklist.component";
|
|
4
|
+
import * as i3 from "./components/add-checklist/add-checklist.component";
|
|
5
|
+
import * as i4 from "./components/traxpopup/traxpopup.component";
|
|
6
|
+
import * as i5 from "./components/checklist-configure/checklist-configure.component";
|
|
7
|
+
import * as i6 from "./components/gallery/gallery.component";
|
|
8
|
+
import * as i7 from "./components/reactive-select/reactive-select.component";
|
|
9
|
+
import * as i8 from "./components/dashboard/dashboard.component";
|
|
10
|
+
import * as i9 from "./components/dashboard-info/dashboard-info.component";
|
|
11
|
+
import * as i10 from "./components/flags/flags.component";
|
|
12
|
+
import * as i11 from "./components/flags-info/flags-info.component";
|
|
13
|
+
import * as i12 from "./components/flags-info/unattended-pie-chart/unattended-pie-chart.component";
|
|
14
|
+
import * as i13 from "./components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component";
|
|
15
|
+
import * as i14 from "./components/trax-store/trax-store.component";
|
|
16
|
+
import * as i15 from "./components/multi-date-datepicker/multi-date-datepicker.component";
|
|
17
|
+
import * as i16 from "./components/pagination/pagination.component";
|
|
18
|
+
import * as i17 from "./components/chip-dropdown/chip-dropdown.component";
|
|
19
|
+
import * as i18 from "./components/reports/reports.component";
|
|
20
|
+
import * as i19 from "./components/managechecklist/managechecklist.component";
|
|
21
|
+
import * as i20 from "./components/checklistlayout/checklistlayout.component";
|
|
22
|
+
import * as i21 from "./components/flag-layout/flag-layout.component";
|
|
23
|
+
import * as i22 from "./components/dashboard-layout/dashboard-layout.component";
|
|
24
|
+
import * as i23 from "./components/custom-select/custom-select.component";
|
|
25
|
+
import * as i24 from "./components/orders/orders.component";
|
|
26
|
+
import * as i25 from "./components/export-gallery/export-gallery.component";
|
|
27
|
+
import * as i26 from "./components/reports/date-picker/date-picker.component";
|
|
28
|
+
import * as i27 from "./components/create-task/create-task.component";
|
|
29
|
+
import * as i28 from "./components/task-configure/task-configure.component";
|
|
30
|
+
import * as i29 from "./components/activity-log/activity-log.component";
|
|
31
|
+
import * as i30 from "./components/task/task.component";
|
|
32
|
+
import * as i31 from "./components/task-info/task-info.component";
|
|
33
|
+
import * as i32 from "./components/task-layout/task-layout.component";
|
|
34
|
+
import * as i33 from "./components/task-info/taskinfo-edit/taskinfo-edit.component";
|
|
35
|
+
import * as i34 from "./components/action-centre/action-centre.component";
|
|
36
|
+
import * as i35 from "./components/group-select/group-select.component";
|
|
37
|
+
import * as i36 from "./components/add-task/add-task.component";
|
|
38
|
+
import * as i37 from "@angular/common";
|
|
39
|
+
import * as i38 from "./tango-analyse-trax-routing.module";
|
|
40
|
+
import * as i39 from "tango-app-ui-shared";
|
|
41
|
+
import * as i40 from "@angular/forms";
|
|
42
|
+
import * as i41 from "@angular/cdk/drag-drop";
|
|
43
|
+
import * as i42 from "ngx-daterangepicker-material";
|
|
44
|
+
import * as i43 from "@ng-bootstrap/ng-bootstrap";
|
|
5
45
|
export declare class TangoAnalyseTraxModule {
|
|
6
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoAnalyseTraxModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTraxModule, [typeof i1.TangoAnalyseTraxComponent], [typeof
|
|
47
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTraxModule, [typeof i1.TangoAnalyseTraxComponent, typeof i2.ChecklistComponent, typeof i3.AddChecklistComponent, typeof i4.TraxpopupComponent, typeof i5.ChecklistConfigureComponent, typeof i6.GalleryComponent, typeof i7.ReactiveSelectComponent, typeof i8.DashboardComponent, typeof i9.DashboardInfoComponent, typeof i7.ReactiveSelectComponent, typeof i10.FlagsComponent, typeof i11.FlagsInfoComponent, typeof i12.UnattendedPieChartComponent, typeof i13.MonthlyperformanceDatepickerComponent, typeof i14.TraxStoreComponent, typeof i15.MultiDateDatepickerComponent, typeof i16.PaginationComponent, typeof i17.ChipDropdownComponent, typeof i18.ReportsComponent, typeof i19.ManagechecklistComponent, typeof i20.ChecklistlayoutComponent, typeof i21.FlagLayoutComponent, typeof i22.DashboardLayoutComponent, typeof i23.CustomSelectComponent, typeof i24.OrdersComponent, typeof i25.ExportGalleryComponent, typeof i26.DatePickerComponent, typeof i27.CreateTaskComponent, typeof i28.TaskConfigureComponent, typeof i29.ActivityLogComponent, typeof i30.TaskComponent, typeof i31.TaskInfoComponent, typeof i32.TaskLayoutComponent, typeof i33.TaskinfoEditComponent, typeof i34.ActionCentreComponent, typeof i35.GroupSelectComponent, typeof i36.AddTaskComponent], [typeof i37.CommonModule, typeof i38.TangoAnalyseTraxRoutingModule, typeof i39.CommonSharedModule, typeof i40.FormsModule, typeof i41.DragDropModule, typeof i40.ReactiveFormsModule, typeof i42.NgxDaterangepickerMd, typeof i43.NgbTooltipModule, typeof i43.NgbModule, typeof i43.NgbAccordionModule], never>;
|
|
8
48
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoAnalyseTraxModule>;
|
|
9
49
|
}
|