tango-app-ui-manage-tickets 3.7.0-beta.43 → 3.7.0-beta.45
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/ticket-footfall-new/ticket-footfall-new.component.mjs +130 -101
- package/esm2022/lib/services/ticket.service.mjs +7 -1
- package/fesm2022/tango-app-ui-manage-tickets.mjs +135 -100
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +9 -2
- package/lib/services/ticket.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -68,7 +68,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
68
68
|
hiddenColumns: string[];
|
|
69
69
|
generateColumns(firstRow: any): void;
|
|
70
70
|
formatColumnName(key: string): string;
|
|
71
|
-
detectColumnType(key: string): "
|
|
71
|
+
detectColumnType(key: string): "text" | "status" | "store" | "date";
|
|
72
72
|
currentPage: any;
|
|
73
73
|
pageSize: any;
|
|
74
74
|
onPageChange(pageOffset: number): void;
|
|
@@ -122,7 +122,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
122
122
|
onToggleSelectAllDuplicates(original: any, event: Event): void;
|
|
123
123
|
commentModal(obj: any): void;
|
|
124
124
|
commentsAccordionOpen: boolean;
|
|
125
|
-
|
|
125
|
+
selectedCommentCategory: string | null;
|
|
126
|
+
getCategoryCommentCountForSource(source: any, category: string): number;
|
|
127
|
+
toggleCommentsAccordion(type: string): void;
|
|
126
128
|
ngOnDestroy(): void;
|
|
127
129
|
activityData: any;
|
|
128
130
|
activityData1: any;
|
|
@@ -147,6 +149,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
147
149
|
private updateCloseStateFromMapping;
|
|
148
150
|
private getActionCompletion;
|
|
149
151
|
hasRevopsType(type: any): boolean;
|
|
152
|
+
private isFinalStatus;
|
|
150
153
|
overallSelectedIds: any;
|
|
151
154
|
overallSelect(event: any): void;
|
|
152
155
|
getAllParentItems(): any[];
|
|
@@ -211,6 +214,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
211
214
|
getPreviewImageUrl(): any;
|
|
212
215
|
overallMapping: any;
|
|
213
216
|
openImagePreview(list: any, target: any, startIndex: number, title: string): void;
|
|
217
|
+
private setPreviewIndex;
|
|
214
218
|
overallApproveClosed(): boolean;
|
|
215
219
|
getApproveActionForItem(item: any): any | null;
|
|
216
220
|
canShowPreviewActions(item: any): boolean;
|
|
@@ -253,6 +257,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
253
257
|
selectedComment: any | null;
|
|
254
258
|
openImagesPopup(comment: any): void;
|
|
255
259
|
closeImagesPopup(): void;
|
|
260
|
+
getIconTypeList: any;
|
|
261
|
+
tagIconMap: Record<string, string>;
|
|
262
|
+
getIconType(): void;
|
|
256
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
257
264
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
258
265
|
}
|
|
@@ -14,6 +14,7 @@ export declare class TicketService {
|
|
|
14
14
|
footfallCDN: any;
|
|
15
15
|
trafficApiUrl: any;
|
|
16
16
|
revopApiUrl: any;
|
|
17
|
+
clientApiUrl: any;
|
|
17
18
|
dropDownTrigger: BehaviorSubject<any>;
|
|
18
19
|
constructor(http: HttpClient, gs: GlobalStateService);
|
|
19
20
|
getUserList(params: any): Observable<any>;
|
|
@@ -59,6 +60,7 @@ export declare class TicketService {
|
|
|
59
60
|
getReviewerApi(clientId: any, type: any): Observable<any>;
|
|
60
61
|
getTicketAssignApi(data: any): Observable<any>;
|
|
61
62
|
getMultiCloseTicketApi(data: any): Observable<any>;
|
|
63
|
+
getTypeFunction(clientId: any): Observable<any>;
|
|
62
64
|
private footfallData;
|
|
63
65
|
setFootfallData(data: any): void;
|
|
64
66
|
getFootfallData(): any;
|