tango-app-ui-manage-tickets 3.7.0-beta.44 → 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 +64 -8
- package/esm2022/lib/services/ticket.service.mjs +7 -1
- package/fesm2022/tango-app-ui-manage-tickets.mjs +69 -7
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +7 -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;
|
|
@@ -255,6 +257,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
255
257
|
selectedComment: any | null;
|
|
256
258
|
openImagesPopup(comment: any): void;
|
|
257
259
|
closeImagesPopup(): void;
|
|
260
|
+
getIconTypeList: any;
|
|
261
|
+
tagIconMap: Record<string, string>;
|
|
262
|
+
getIconType(): void;
|
|
258
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
259
264
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
260
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;
|