tango-app-ui-analyse-trax 3.6.2-bulktask-7 → 3.6.2-bulktask-9
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 +7 -6
- package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +21 -41
- package/esm2022/lib/components/gallery/gallery.component.mjs +79 -51
- package/esm2022/lib/services/trax.service.mjs +4 -1
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-DYtk5gHI.mjs → tango-app-ui-analyse-trax-eye-test-audit.module-DjDVouY5.mjs} +2 -2
- package/fesm2022/{tango-app-ui-analyse-trax-eye-test-audit.module-DYtk5gHI.mjs.map → tango-app-ui-analyse-trax-eye-test-audit.module-DjDVouY5.mjs.map} +1 -1
- package/fesm2022/{tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-GDb7SVZD.mjs → tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-fgU4Z8FP.mjs} +109 -97
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-fgU4Z8FP.mjs.map +1 -0
- package/fesm2022/tango-app-ui-analyse-trax.mjs +1 -1
- package/lib/components/add-multitask/add-multitask.component.d.ts +2 -2
- package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +4 -2
- package/lib/components/gallery/gallery.component.d.ts +3 -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-GDb7SVZD.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-fgU4Z8FP.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;
|
|
@@ -40,7 +41,6 @@ export declare class AddMultitaskComponent implements OnDestroy {
|
|
|
40
41
|
}[];
|
|
41
42
|
environment: any;
|
|
42
43
|
taskContainer: HTMLElement | null;
|
|
43
|
-
priorityType: any;
|
|
44
44
|
private destroy$;
|
|
45
45
|
payload: any;
|
|
46
46
|
taskDetails: any;
|
|
@@ -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;
|
|
@@ -28,8 +28,10 @@ export declare class BulkcreationmodelComponent {
|
|
|
28
28
|
excelError: any;
|
|
29
29
|
destroy$: Subject<unknown>;
|
|
30
30
|
constructor(modalService: NgbModal, activeModal: NgbActiveModal, traxService: TraxService, toastService: ToastService, cd: ChangeDetectorRef);
|
|
31
|
+
ngOnInit(): void;
|
|
31
32
|
setOption(option: string): void;
|
|
32
33
|
proceed(): void;
|
|
34
|
+
preventEnter(event: any): void;
|
|
33
35
|
taskcreationPopup(showcomment: boolean): void;
|
|
34
36
|
closeactivepopup(): void;
|
|
35
37
|
validateDetails(): 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;
|
|
@@ -157,7 +159,7 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
157
159
|
getfilterCount(): void;
|
|
158
160
|
createMultipleTask(type: any): void;
|
|
159
161
|
selectedAllTask(event: any, checklist: any, data: any, checklistInfo: any, sectionInfo: any): void;
|
|
160
|
-
|
|
162
|
+
selectmultiTask(event: any, checklist: any, data: any, checklistInfo: any, sectionInfo: any): void;
|
|
161
163
|
selectsinglequestion(): void;
|
|
162
164
|
appoveChecklist(): void;
|
|
163
165
|
checklistApprove(): void;
|
|
@@ -154,6 +154,7 @@ export declare class TraxService implements OnDestroy {
|
|
|
154
154
|
gettaskUserDetailsV1(obj: any): Observable<Object>;
|
|
155
155
|
checklistCountByType(body: any): Observable<any>;
|
|
156
156
|
activityLogList(data: any): Observable<any>;
|
|
157
|
+
downloadtemplate(data: any): Observable<any>;
|
|
157
158
|
static ɵfac: i0.ɵɵFactoryDeclaration<TraxService, never>;
|
|
158
159
|
static ɵprov: i0.ɵɵInjectableDeclaration<TraxService>;
|
|
159
160
|
}
|