tango-app-ui-ticket-user 3.0.14-dev → 3.0.16-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/edge-cameraview/edge-cameraview.component.mjs +7 -5
- package/esm2022/lib/components/edgeapp-log/edgeapp-log.component.mjs +19 -5
- package/esm2022/lib/components/infratickets/infratickets.component.mjs +5 -5
- package/esm2022/lib/components/installation/installation.component.mjs +4 -4
- package/esm2022/lib/components/store-activity/store-activity.component.mjs +3 -3
- package/esm2022/lib/components/store-info/store-info.component.mjs +21 -5
- package/esm2022/lib/components/tickets/tickets.component.mjs +20 -16
- package/fesm2022/tango-app-ui-ticket-user.mjs +71 -36
- package/fesm2022/tango-app-ui-ticket-user.mjs.map +1 -1
- package/lib/components/edge-cameraview/edge-cameraview.component.d.ts +1 -0
- package/lib/components/edgeapp-log/edgeapp-log.component.d.ts +2 -0
- package/lib/components/infratickets/infratickets.component.d.ts +1 -1
- package/lib/components/store-info/store-info.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export declare class EdgeCameraviewComponent implements OnInit {
|
|
|
10
10
|
currentDate: Date;
|
|
11
11
|
value: any;
|
|
12
12
|
CameraDetails: any;
|
|
13
|
+
private readonly destroy$;
|
|
13
14
|
constructor(infraService: TicketsService, cd: ChangeDetectorRef);
|
|
14
15
|
ngOnInit(): void;
|
|
15
16
|
getViewEdgeAppLog(): void;
|
|
@@ -24,6 +24,7 @@ export declare class EdgeappLogComponent implements OnInit {
|
|
|
24
24
|
selectedDate: any;
|
|
25
25
|
ticketId: any;
|
|
26
26
|
ticketInfo: any;
|
|
27
|
+
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
27
28
|
constructor(modalService: NgbModal, infraService: TicketsService, cd: ChangeDetectorRef, dataservice: DataService, gs: GlobalStateService, route: ActivatedRoute);
|
|
28
29
|
ngOnInit(): void;
|
|
29
30
|
viewTicket(): void;
|
|
@@ -31,6 +32,7 @@ export declare class EdgeappLogComponent implements OnInit {
|
|
|
31
32
|
datechange(event: any): void;
|
|
32
33
|
edgeAppExportasXlsx(): void;
|
|
33
34
|
openCameraView(data: any): void;
|
|
35
|
+
onStartDateChange(event: any): void;
|
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<EdgeappLogComponent, never>;
|
|
35
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<EdgeappLogComponent, "lib-edgeapp-log", never, { "storeId": { "alias": "storeId"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
38
|
}
|
|
@@ -73,7 +73,7 @@ export declare class InfraticketsComponent implements OnInit, OnDestroy {
|
|
|
73
73
|
workHistory(): void;
|
|
74
74
|
selectItem(value: any): void;
|
|
75
75
|
openDropdown(event: MouseEvent): void;
|
|
76
|
-
userValue(
|
|
76
|
+
userValue(data: any): void;
|
|
77
77
|
searchTickets(): void;
|
|
78
78
|
searchHistoryTable(): void;
|
|
79
79
|
receiveData(data: any[]): void;
|
|
@@ -31,6 +31,7 @@ export declare class StoreInfoComponent implements OnInit, OnDestroy {
|
|
|
31
31
|
cameraImages: any;
|
|
32
32
|
selectedDate: string;
|
|
33
33
|
totalDownTime: any;
|
|
34
|
+
isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
|
|
34
35
|
constructor(service: TicketsService, cd: ChangeDetectorRef);
|
|
35
36
|
ngOnInit(): void;
|
|
36
37
|
ngOnDestroy(): void;
|
|
@@ -47,6 +48,7 @@ export declare class StoreInfoComponent implements OnInit, OnDestroy {
|
|
|
47
48
|
nextImages(): void;
|
|
48
49
|
datechange(event: any): void;
|
|
49
50
|
showHours(time: any): any;
|
|
51
|
+
onStartDateChange(event: any): void;
|
|
50
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<StoreInfoComponent, never>;
|
|
51
53
|
static ɵcmp: i0.ɵɵComponentDeclaration<StoreInfoComponent, "lib-store-info", never, { "storeId": { "alias": "storeId"; "required": false; }; }, {}, never, never, false, never>;
|
|
52
54
|
}
|