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.
Files changed (92) hide show
  1. package/esm2022/lib/components/action-centre/action-centre.component.mjs +303 -0
  2. package/esm2022/lib/components/activity-log/activity-log.component.mjs +94 -0
  3. package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +1439 -0
  4. package/esm2022/lib/components/add-task/add-task.component.mjs +85 -0
  5. package/esm2022/lib/components/checklist/checklist.component.mjs +252 -0
  6. package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +1954 -0
  7. package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +12 -0
  8. package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +84 -0
  9. package/esm2022/lib/components/create-task/create-task.component.mjs +367 -0
  10. package/esm2022/lib/components/create-task/create-task.data.mjs +306 -0
  11. package/esm2022/lib/components/create-task/create-task.interface.mjs +2 -0
  12. package/esm2022/lib/components/custom-select/custom-select.component.mjs +236 -0
  13. package/esm2022/lib/components/dashboard/dashboard.component.mjs +600 -0
  14. package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +635 -0
  15. package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +172 -0
  16. package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +12 -0
  17. package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +119 -0
  18. package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +12 -0
  19. package/esm2022/lib/components/flags/flags.component.mjs +257 -0
  20. package/esm2022/lib/components/flags/flags.interface.mjs +2 -0
  21. package/esm2022/lib/components/flags-info/flags-info.component.mjs +388 -0
  22. package/esm2022/lib/components/flags-info/flags-info.interface.mjs +2 -0
  23. package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +71 -0
  24. package/esm2022/lib/components/gallery/gallery.component.mjs +1202 -0
  25. package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
  26. package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +172 -0
  27. package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +117 -0
  28. package/esm2022/lib/components/orders/orders.component.mjs +171 -0
  29. package/esm2022/lib/components/pagination/pagination.component.mjs +62 -0
  30. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +105 -0
  31. package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +60 -0
  32. package/esm2022/lib/components/reports/reports.component.mjs +299 -0
  33. package/esm2022/lib/components/reports/reports.interface.mjs +2 -0
  34. package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +27 -6
  35. package/esm2022/lib/components/task/task.component.mjs +271 -0
  36. package/esm2022/lib/components/task-configure/task-configure.component.mjs +504 -0
  37. package/esm2022/lib/components/task-configure/task-configure.interface.mjs +2 -0
  38. package/esm2022/lib/components/task-info/task-info.component.mjs +300 -0
  39. package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +203 -0
  40. package/esm2022/lib/components/task-layout/task-layout.component.mjs +12 -0
  41. package/esm2022/lib/components/trax-store/trax-store.component.mjs +153 -0
  42. package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +67 -0
  43. package/esm2022/lib/services/trax.service.mjs +334 -0
  44. package/esm2022/lib/tango-analyse-trax-routing.module.mjs +124 -6
  45. package/esm2022/lib/tango-analyse-trax.module.mjs +147 -9
  46. package/fesm2022/tango-app-ui-analyse-trax.mjs +11512 -21
  47. package/fesm2022/tango-app-ui-analyse-trax.mjs.map +1 -1
  48. package/lib/components/action-centre/action-centre.component.d.ts +56 -0
  49. package/lib/components/activity-log/activity-log.component.d.ts +30 -0
  50. package/lib/components/add-checklist/add-checklist.component.d.ts +99 -0
  51. package/lib/components/add-task/add-task.component.d.ts +38 -0
  52. package/lib/components/checklist/checklist.component.d.ts +39 -0
  53. package/lib/components/checklist-configure/checklist-configure.component.d.ts +160 -0
  54. package/lib/components/checklistlayout/checklistlayout.component.d.ts +5 -0
  55. package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +24 -0
  56. package/lib/components/create-task/create-task.component.d.ts +58 -0
  57. package/lib/components/create-task/create-task.data.d.ts +244 -0
  58. package/lib/components/create-task/create-task.interface.d.ts +147 -0
  59. package/lib/components/custom-select/custom-select.component.d.ts +35 -0
  60. package/lib/components/dashboard/dashboard.component.d.ts +77 -0
  61. package/lib/components/dashboard-info/dashboard-info.component.d.ts +102 -0
  62. package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +40 -0
  63. package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +5 -0
  64. package/lib/components/export-gallery/export-gallery.component.d.ts +33 -0
  65. package/lib/components/flag-layout/flag-layout.component.d.ts +5 -0
  66. package/lib/components/flags/flags.component.d.ts +51 -0
  67. package/lib/components/flags/flags.interface.d.ts +64 -0
  68. package/lib/components/flags-info/flags-info.component.d.ts +62 -0
  69. package/lib/components/flags-info/flags-info.interface.d.ts +212 -0
  70. package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +13 -0
  71. package/lib/components/gallery/gallery.component.d.ts +126 -0
  72. package/lib/components/group-select/group-select.component.d.ts +33 -0
  73. package/lib/components/managechecklist/managechecklist.component.d.ts +32 -0
  74. package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +27 -0
  75. package/lib/components/orders/orders.component.d.ts +38 -0
  76. package/lib/components/pagination/pagination.component.d.ts +16 -0
  77. package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
  78. package/lib/components/reports/date-picker/date-picker.component.d.ts +23 -0
  79. package/lib/components/reports/reports.component.d.ts +55 -0
  80. package/lib/components/reports/reports.interface.d.ts +46 -0
  81. package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +10 -1
  82. package/lib/components/task/task.component.d.ts +59 -0
  83. package/lib/components/task-configure/task-configure.component.d.ts +69 -0
  84. package/lib/components/task-configure/task-configure.interface.d.ts +124 -0
  85. package/lib/components/task-info/task-info.component.d.ts +68 -0
  86. package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +60 -0
  87. package/lib/components/task-layout/task-layout.component.d.ts +5 -0
  88. package/lib/components/trax-store/trax-store.component.d.ts +44 -0
  89. package/lib/components/traxpopup/traxpopup.component.d.ts +23 -0
  90. package/lib/services/trax.service.d.ts +107 -0
  91. package/lib/tango-analyse-trax.module.d.ts +43 -3
  92. 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 "@angular/common";
4
- import * as i3 from "./tango-analyse-trax-routing.module";
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 i2.CommonModule, typeof i3.TangoAnalyseTraxRoutingModule], never>;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-analyse-trax",
3
- "version": "3.0.0-dev",
3
+ "version": "3.3.1-alpha-task.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"