tango-app-ui-analyse-trax 3.6.2-bulktask-5 → 3.6.2-bulktask-7
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/add-multitask/add-multitask.component.mjs +14 -4
- package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +57 -11
- package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +2 -2
- package/esm2022/lib/components/gallery/gallery.component.mjs +90 -96
- package/esm2022/lib/services/trax.service.mjs +4 -1
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-CbPBGiAI.mjs → tango-app-ui-analyse-trax-eye-test-audit.module-DYtk5gHI.mjs} +2 -2
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-CbPBGiAI.mjs.map → tango-app-ui-analyse-trax-eye-test-audit.module-DYtk5gHI.mjs.map} +1 -1
- package/fesm2022/{tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-bWZT0X9J.mjs → tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-GDb7SVZD.mjs} +266 -214
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-GDb7SVZD.mjs.map +1 -0
- package/fesm2022/tango-app-ui-analyse-trax.mjs +1 -1
- package/lib/components/add-multitask/add-multitask.component.d.ts +3 -0
- package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +1 -0
- package/lib/components/gallery/gallery.component.d.ts +1 -0
- package/lib/services/trax.service.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-bWZT0X9J.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { b as TangoAnalyseTraxComponent, a as TangoAnalyseTraxModule } from './tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-
|
|
1
|
+
export { b as TangoAnalyseTraxComponent, a as TangoAnalyseTraxModule } from './tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-GDb7SVZD.mjs';
|
|
2
2
|
import '@angular/core';
|
|
3
3
|
import '@angular/common';
|
|
4
4
|
import '@angular/router';
|
|
@@ -40,10 +40,12 @@ export declare class AddMultitaskComponent implements OnDestroy {
|
|
|
40
40
|
}[];
|
|
41
41
|
environment: any;
|
|
42
42
|
taskContainer: HTMLElement | null;
|
|
43
|
+
priorityType: any;
|
|
43
44
|
private destroy$;
|
|
44
45
|
payload: any;
|
|
45
46
|
taskDetails: any;
|
|
46
47
|
checklistInfo: any;
|
|
48
|
+
priorityTypeList: any;
|
|
47
49
|
clientId: any;
|
|
48
50
|
timeDetails: any;
|
|
49
51
|
constructor(fb: FormBuilder, activeModal: NgbActiveModal, gs: GlobalStateService, traxService: TraxService, cd: ChangeDetectorRef, modalService: NgbModal, router: Router, toastService: ToastService);
|
|
@@ -51,6 +53,7 @@ export declare class AddMultitaskComponent implements OnDestroy {
|
|
|
51
53
|
tasks: number[];
|
|
52
54
|
taskCounter: number;
|
|
53
55
|
updateForm(): void;
|
|
56
|
+
filterChange(event: any): void;
|
|
54
57
|
prevSlide(): void;
|
|
55
58
|
nextSlide(): void;
|
|
56
59
|
goToSlide(index: number): void;
|
|
@@ -24,6 +24,7 @@ export declare class BulkcreationmodelComponent {
|
|
|
24
24
|
fileInput: ElementRef;
|
|
25
25
|
fileInput1: ElementRef;
|
|
26
26
|
afterValidation: any;
|
|
27
|
+
modalRef: any;
|
|
27
28
|
excelError: any;
|
|
28
29
|
destroy$: Subject<unknown>;
|
|
29
30
|
constructor(modalService: NgbModal, activeModal: NgbActiveModal, traxService: TraxService, toastService: ToastService, cd: ChangeDetectorRef);
|
|
@@ -143,6 +143,7 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
143
143
|
storeOpencloselist(type: any): void;
|
|
144
144
|
queuealertview(): void;
|
|
145
145
|
storeOpencloseview(): void;
|
|
146
|
+
coverageData(coverage: any): void;
|
|
146
147
|
checklistNamechange(event: any, type: any): void;
|
|
147
148
|
customerunattendedlist(type: any): void;
|
|
148
149
|
selectedExport: boolean;
|
|
@@ -43,6 +43,7 @@ export declare class TraxService implements OnDestroy {
|
|
|
43
43
|
taskImageupload(users: any): Observable<Object>;
|
|
44
44
|
validateUser(users: any): Observable<Object>;
|
|
45
45
|
taskvalidateUserData(users: any): Observable<Object>;
|
|
46
|
+
getallchecklist(users: any): Observable<Object>;
|
|
46
47
|
assignUpload(users: any): Observable<Object>;
|
|
47
48
|
validateUserv1(users: any): Observable<Object>;
|
|
48
49
|
taskvalidateUserv1(users: any): Observable<Object>;
|