tango-app-ui-ticket-user 3.0.2-dev → 3.0.3-dev
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/contact-details/contact-details.component.mjs +6 -5
- package/esm2022/lib/components/edge-cameraview/edge-cameraview.component.mjs +11 -8
- package/esm2022/lib/components/edgeapp-log/edgeapp-log.component.mjs +33 -7
- package/esm2022/lib/components/store-activity/store-activity.component.mjs +41 -55
- package/esm2022/lib/components/store-info/store-info.component.mjs +6 -4
- package/esm2022/lib/components/takeremote/takeremote.component.mjs +4 -4
- package/esm2022/lib/components/tickets/tickets.component.mjs +20 -12
- package/fesm2022/tango-app-ui-ticket-user.mjs +107 -82
- package/fesm2022/tango-app-ui-ticket-user.mjs.map +1 -1
- package/lib/components/contact-details/contact-details.component.d.ts +2 -2
- package/lib/components/edge-cameraview/edge-cameraview.component.d.ts +5 -4
- package/lib/components/edgeapp-log/edgeapp-log.component.d.ts +5 -0
- package/lib/components/store-activity/store-activity.component.d.ts +3 -7
- package/lib/components/tickets/tickets.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
14
14
|
spocDetials: any;
|
|
15
15
|
limit: number;
|
|
16
16
|
offset: number;
|
|
17
|
-
|
|
17
|
+
value: any;
|
|
18
18
|
constructor(modalService: NgbModal, activeModal: NgbActiveModal, service: TicketsService, cd: ChangeDetectorRef, toast: ToastService);
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
getSpocLog(): void;
|
|
@@ -24,5 +24,5 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
24
24
|
deleteContact(data: any): void;
|
|
25
25
|
closeModal(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "lib-contact-details", never, { "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "lib-contact-details", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
28
|
}
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { TicketsService } from '../../services/ticket-infra.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EdgeCameraviewComponent {
|
|
4
|
+
export declare class EdgeCameraviewComponent implements OnInit {
|
|
5
5
|
private infraService;
|
|
6
6
|
private cd;
|
|
7
7
|
loading: boolean;
|
|
8
8
|
noData: boolean;
|
|
9
9
|
viewEdgeAppLogList: any;
|
|
10
10
|
currentDate: Date;
|
|
11
|
-
|
|
11
|
+
value: any;
|
|
12
12
|
constructor(infraService: TicketsService, cd: ChangeDetectorRef);
|
|
13
|
+
ngOnInit(): void;
|
|
13
14
|
getViewEdgeAppLog(): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<EdgeCameraviewComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EdgeCameraviewComponent, "lib-edge-cameraview", never, { "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EdgeCameraviewComponent, "lib-edge-cameraview", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
17
|
}
|
|
@@ -2,6 +2,8 @@ import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
|
2
2
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
3
|
import { TicketsService } from '../../services/ticket-infra.service';
|
|
4
4
|
import { DataService } from '../../services/data.service';
|
|
5
|
+
import dayjs from 'dayjs';
|
|
6
|
+
import 'dayjs/locale/en';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class EdgeappLogComponent implements OnInit {
|
|
7
9
|
private modalService;
|
|
@@ -12,9 +14,12 @@ export declare class EdgeappLogComponent implements OnInit {
|
|
|
12
14
|
loading: boolean;
|
|
13
15
|
getEdgeAppLoveValue: any;
|
|
14
16
|
storeId: any;
|
|
17
|
+
selectedDateRange: any;
|
|
18
|
+
dayjs: typeof dayjs;
|
|
15
19
|
constructor(modalService: NgbModal, infraService: TicketsService, cd: ChangeDetectorRef, dataservice: DataService);
|
|
16
20
|
ngOnInit(): void;
|
|
17
21
|
getEdgeAppLogTable(): void;
|
|
22
|
+
datechange(event: any): void;
|
|
18
23
|
edgeAppExportasXlsx(): void;
|
|
19
24
|
openCameraView(data: any): void;
|
|
20
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<EdgeappLogComponent, never>;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ChangeDetectorRef } from '@angular/core';
|
|
3
|
-
import dayjs from 'dayjs';
|
|
4
|
-
import 'dayjs/locale/en';
|
|
5
3
|
import { DataService } from '../../services/data.service';
|
|
6
4
|
import { TicketsService } from '../../services/ticket-infra.service';
|
|
7
5
|
import { GlobalStateService } from 'tango-app-ui-shared';
|
|
@@ -19,7 +17,7 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
|
|
|
19
17
|
noData: boolean;
|
|
20
18
|
loading: boolean;
|
|
21
19
|
storeTicket: any;
|
|
22
|
-
|
|
20
|
+
ticketInfo: any;
|
|
23
21
|
resolvedIssue: boolean;
|
|
24
22
|
issueObject: any[];
|
|
25
23
|
dropDown: boolean;
|
|
@@ -28,12 +26,11 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
|
|
|
28
26
|
ticketId: any;
|
|
29
27
|
dateRangeFilter: any;
|
|
30
28
|
ticketCard: any;
|
|
31
|
-
|
|
29
|
+
viewTicketData: any;
|
|
32
30
|
headerFilter: any;
|
|
33
31
|
user: any;
|
|
34
32
|
private readonly destroy$;
|
|
35
33
|
storeId: any;
|
|
36
|
-
dayjs: typeof dayjs;
|
|
37
34
|
constructor(service: TicketsService, dataservice: DataService, cd: ChangeDetectorRef, gs: GlobalStateService);
|
|
38
35
|
onClick(event: MouseEvent): void;
|
|
39
36
|
ngOnInit(): void;
|
|
@@ -41,13 +38,12 @@ export declare class StoreActivityComponent implements OnInit, OnDestroy {
|
|
|
41
38
|
storeTicketcard(): void;
|
|
42
39
|
storeTicketList(): void;
|
|
43
40
|
viewTicket(): void;
|
|
41
|
+
getRelativeTime(timestamp: string): string;
|
|
44
42
|
exportStoreListasXlsx(): void;
|
|
45
43
|
ShowTicket(index: any, value: any): void;
|
|
46
44
|
FilterIssue(value: any): void;
|
|
47
45
|
selectItem(value: any): void;
|
|
48
46
|
openDropdown(event: MouseEvent): void;
|
|
49
|
-
ranges: any;
|
|
50
|
-
datechange(event: any): void;
|
|
51
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<StoreActivityComponent, never>;
|
|
52
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<StoreActivityComponent, "lib-store-activity", never, { "storeId": { "alias": "storeId"; "required": false; }; }, {}, never, never, false, never>;
|
|
53
49
|
}
|
|
@@ -57,6 +57,7 @@ export declare class TicketsComponent implements OnInit, OnDestroy {
|
|
|
57
57
|
storeDropDown: boolean;
|
|
58
58
|
selectedOption: any;
|
|
59
59
|
Hibernation: any;
|
|
60
|
+
clientId: any;
|
|
60
61
|
constructor(modalService: NgbModal, router: Router, service: TicketsService, cd: ChangeDetectorRef, route: ActivatedRoute, toastService: ToastService, gs: GlobalStateService);
|
|
61
62
|
onClick(event: MouseEvent): void;
|
|
62
63
|
ngOnInit(): void;
|
|
@@ -77,6 +78,7 @@ export declare class TicketsComponent implements OnInit, OnDestroy {
|
|
|
77
78
|
proceddImage(value: any): void;
|
|
78
79
|
SelectedTabs(value: any): void;
|
|
79
80
|
toggleCheckbox(index: number): void;
|
|
81
|
+
toggleRadiobox(others: any): void;
|
|
80
82
|
decreseCount(): any;
|
|
81
83
|
increaseCount(): any;
|
|
82
84
|
openContact(): void;
|