tango-app-ui-analyse-trax 3.4.0-eyeTest.2 → 3.4.0-eyeTest.21
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/checklist/checklist.component.mjs +3 -2
- package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +3 -2
- package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +3 -3
- package/esm2022/lib/components/eye-test-audit/eye-test/eye-test.component.mjs +43 -33
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.mjs +107 -40
- package/esm2022/lib/components/eye-test-audit/services/eye-test-audit.service.mjs +2 -1
- package/esm2022/lib/components/gallery/gallery.component.mjs +42 -13
- package/esm2022/lib/services/trax.service.mjs +1 -2
- package/fesm2022/tango-app-ui-analyse-trax-eye-test-audit.module-Cl_dBzWo.mjs +1479 -0
- package/fesm2022/tango-app-ui-analyse-trax-eye-test-audit.module-Cl_dBzWo.mjs.map +1 -0
- package/fesm2022/{tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-CcBuiczt.mjs → tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-U4RSS003.mjs} +91 -61
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-U4RSS003.mjs.map +1 -0
- package/fesm2022/tango-app-ui-analyse-trax.mjs +1 -1
- package/lib/components/eye-test-audit/eye-test/eye-test.component.d.ts +2 -1
- package/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.d.ts +14 -4
- package/lib/components/eye-test-audit/services/eye-test-audit.service.d.ts +1 -0
- package/lib/components/gallery/gallery.component.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/tango-app-ui-analyse-trax-eye-test-audit.module-Dy5v59Wb.mjs +0 -1402
- package/fesm2022/tango-app-ui-analyse-trax-eye-test-audit.module-Dy5v59Wb.mjs.map +0 -1
- package/fesm2022/tango-app-ui-analyse-trax-tango-app-ui-analyse-trax-CcBuiczt.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-U4RSS003.mjs';
|
|
2
2
|
import '@angular/core';
|
|
3
3
|
import '@angular/common';
|
|
4
4
|
import '@angular/router';
|
|
@@ -32,12 +32,13 @@ export declare class EyeTestComponent implements OnInit {
|
|
|
32
32
|
noData: boolean;
|
|
33
33
|
loading: boolean;
|
|
34
34
|
eyeTestData: any;
|
|
35
|
+
typeValue: any;
|
|
35
36
|
type: any;
|
|
36
37
|
auditType: any;
|
|
37
38
|
constructor(pageInfo: PageInfoService, fb: FormBuilder, traxService: TraxService, eyeService: EyeTestAuditService, router: Router, cd: ChangeDetectorRef, gs: GlobalStateService, ts: ToastService);
|
|
39
|
+
headDate: any;
|
|
38
40
|
ngOnInit(): void;
|
|
39
41
|
getAllGroups(): void;
|
|
40
|
-
clientDetails(): void;
|
|
41
42
|
getAllStores(): void;
|
|
42
43
|
typeChange(event: any): void;
|
|
43
44
|
auditTypeChange(event: any): void;
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import { OnInit, ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { NgbModal, NgbTooltip } from '@ng-bootstrap/ng-bootstrap';
|
|
5
5
|
import { EyeTestAuditService } from '../../services/eye-test-audit.service';
|
|
6
6
|
import { ToastService } from 'tango-app-ui-shared';
|
|
7
|
+
import { PageInfoService } from 'tango-app-ui-global';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class StartAuditComponent implements OnInit {
|
|
9
|
+
export declare class StartAuditComponent implements OnInit, OnDestroy {
|
|
9
10
|
private cd;
|
|
11
|
+
private pageInfo;
|
|
10
12
|
private toastService;
|
|
11
13
|
private route;
|
|
12
14
|
private $api;
|
|
13
15
|
private modalService;
|
|
16
|
+
private router;
|
|
14
17
|
stepWiseProcess: any;
|
|
15
18
|
dropdownList: any;
|
|
16
19
|
loading: boolean;
|
|
@@ -27,14 +30,18 @@ export declare class StartAuditComponent implements OnInit {
|
|
|
27
30
|
storeId: any;
|
|
28
31
|
tooltipContent: NgbTooltip;
|
|
29
32
|
viewHistory: any;
|
|
33
|
+
viewCancel: any;
|
|
30
34
|
private readonly destroy$;
|
|
31
35
|
historyData: any;
|
|
32
36
|
AuditId: any;
|
|
33
37
|
viewHistoryData: any;
|
|
34
38
|
spokenLanguage: any;
|
|
35
|
-
|
|
39
|
+
modalRef: any;
|
|
40
|
+
disablecancel: boolean;
|
|
41
|
+
constructor(cd: ChangeDetectorRef, pageInfo: PageInfoService, toastService: ToastService, route: ActivatedRoute, $api: EyeTestAuditService, modalService: NgbModal, router: Router);
|
|
36
42
|
viewHistoryModel(item: any): void;
|
|
37
43
|
ngOnInit(): void;
|
|
44
|
+
setPageData(): void;
|
|
38
45
|
getAuditHistory(): void;
|
|
39
46
|
getAuditdetails(): void;
|
|
40
47
|
generateTimeOptions(): void;
|
|
@@ -56,8 +63,11 @@ export declare class StartAuditComponent implements OnInit {
|
|
|
56
63
|
getValidaForm(): number;
|
|
57
64
|
onsubmit(): void;
|
|
58
65
|
startAudit(value: any): void;
|
|
66
|
+
onYes(): void;
|
|
59
67
|
cancel(): void;
|
|
68
|
+
OnCancel(): void;
|
|
60
69
|
ngOnDestroy(): void;
|
|
70
|
+
backNavigation(): void;
|
|
61
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<StartAuditComponent, never>;
|
|
62
72
|
static ɵcmp: i0.ɵɵComponentDeclaration<StartAuditComponent, "lib-start-audit", never, {}, {}, never, never, false, never>;
|
|
63
73
|
}
|
|
@@ -9,6 +9,7 @@ export declare class EyeTestAuditService implements OnDestroy {
|
|
|
9
9
|
dropDownTrigger: BehaviorSubject<any>;
|
|
10
10
|
eyeTestauditApiUrl: any;
|
|
11
11
|
constructor(http: HttpClient, gs: GlobalStateService);
|
|
12
|
+
auditFilterData: any;
|
|
12
13
|
private readonly destroy$;
|
|
13
14
|
ngOnDestroy(): void;
|
|
14
15
|
getEyeTestlist(data: any): Observable<any>;
|