tango-app-ui-analyse-trax 3.6.2-bulktask-6 → 3.6.2-bulktask-8
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 +15 -4
- package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +59 -11
- package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +2 -2
- package/esm2022/lib/components/gallery/gallery.component.mjs +120 -107
- package/esm2022/lib/services/trax.service.mjs +4 -1
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-BV8rh2Dt.mjs → tango-app-ui-analyse-trax-eye-test-audit.module-BpJbNOps.mjs} +2 -2
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-BV8rh2Dt.mjs.map → tango-app-ui-analyse-trax-eye-test-audit.module-BpJbNOps.mjs.map} +1 -1
- package/fesm2022/{tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-Dky7G8Ks.mjs → tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-CeNuiihn.mjs} +299 -225
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-CeNuiihn.mjs.map +1 -0
- package/fesm2022/tango-app-ui-analyse-trax.mjs +1 -1
- package/lib/components/add-multitask/add-multitask.component.d.ts +4 -1
- package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +4 -2
- package/lib/components/gallery/gallery.component.d.ts +4 -1
- 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-Dky7G8Ks.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-CeNuiihn.mjs';
|
|
2
2
|
import '@angular/core';
|
|
3
3
|
import '@angular/common';
|
|
4
4
|
import '@angular/router';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { FormArray, FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
4
|
import { TraxService } from '../../services/trax.service';
|
|
5
5
|
import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
@@ -30,6 +30,7 @@ export declare class AddMultitaskComponent implements OnDestroy {
|
|
|
30
30
|
restrictAttendance: boolean;
|
|
31
31
|
submitted: boolean;
|
|
32
32
|
headerData: HeaderFilter | null | undefined;
|
|
33
|
+
selectedlistselectControl: FormControl;
|
|
33
34
|
answerTypes: {
|
|
34
35
|
label: string;
|
|
35
36
|
value: AnswerType;
|
|
@@ -44,6 +45,7 @@ export declare class AddMultitaskComponent implements OnDestroy {
|
|
|
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;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
3
|
import { TraxService } from '../../../services/trax.service';
|
|
4
4
|
import { ToastService } from 'tango-app-ui-shared';
|
|
5
5
|
import { HeaderFilter } from '../../task-configure/task-configure.interface';
|
|
6
6
|
import { Subject } from "rxjs";
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class BulkcreationmodelComponent {
|
|
8
|
+
export declare class BulkcreationmodelComponent implements OnInit {
|
|
9
9
|
private modalService;
|
|
10
10
|
private activeModal;
|
|
11
11
|
private traxService;
|
|
@@ -24,9 +24,11 @@ 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);
|
|
31
|
+
ngOnInit(): void;
|
|
30
32
|
setOption(option: string): void;
|
|
31
33
|
proceed(): void;
|
|
32
34
|
taskcreationPopup(showcomment: boolean): void;
|
|
@@ -96,6 +96,8 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
96
96
|
inputDataTask: any;
|
|
97
97
|
otherTaskData: any;
|
|
98
98
|
selectAllTask: boolean;
|
|
99
|
+
totalrecordcount: number;
|
|
100
|
+
selectedRecordCount: number;
|
|
99
101
|
refImage: any[];
|
|
100
102
|
constructor(fb: FormBuilder, gs: GlobalStateService, traxService: TraxService, cd: ChangeDetectorRef, modalService: NgbModal, route: ActivatedRoute, router: Router, toastService: ToastService, location: Location, pageInfo: PageInfoService);
|
|
101
103
|
ngAfterViewInit(): void;
|
|
@@ -143,6 +145,7 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
143
145
|
storeOpencloselist(type: any): void;
|
|
144
146
|
queuealertview(): void;
|
|
145
147
|
storeOpencloseview(): void;
|
|
148
|
+
coverageData(coverage: any): void;
|
|
146
149
|
checklistNamechange(event: any, type: any): void;
|
|
147
150
|
customerunattendedlist(type: any): void;
|
|
148
151
|
selectedExport: boolean;
|
|
@@ -156,7 +159,7 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
156
159
|
getfilterCount(): void;
|
|
157
160
|
createMultipleTask(type: any): void;
|
|
158
161
|
selectedAllTask(event: any, checklist: any, data: any, checklistInfo: any, sectionInfo: any): void;
|
|
159
|
-
|
|
162
|
+
selectmultiTask(event: any, checklist: any, data: any, checklistInfo: any, sectionInfo: any): void;
|
|
160
163
|
selectsinglequestion(): void;
|
|
161
164
|
appoveChecklist(): void;
|
|
162
165
|
checklistApprove(): void;
|
|
@@ -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>;
|