tango-app-ui-manage-tickets 3.7.0-beta.36 → 3.7.0-beta.38
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 +330 -7
- package/fesm2022/tango-app-ui-manage-tickets.mjs +329 -6
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +8 -1
- 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): "store" | "date" | "status" | "text";
|
|
72
72
|
currentPage: any;
|
|
73
73
|
pageSize: any;
|
|
74
74
|
onPageChange(pageOffset: number): void;
|
|
@@ -123,6 +123,8 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
123
123
|
commentsAccordionOpen: boolean;
|
|
124
124
|
toggleCommentsAccordion(): void;
|
|
125
125
|
ngOnDestroy(): void;
|
|
126
|
+
activityData: any;
|
|
127
|
+
activityData1: any;
|
|
126
128
|
comments: any;
|
|
127
129
|
showRevisedDetails: boolean;
|
|
128
130
|
footfallNoData: boolean;
|
|
@@ -239,6 +241,11 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
239
241
|
private updateCloseDisabled;
|
|
240
242
|
toggleRowSelection(row: any, event: Event): void;
|
|
241
243
|
toggleSelectAllRows(event: Event): void;
|
|
244
|
+
showImagesModal: boolean;
|
|
245
|
+
selectedImagesForPopup: any[];
|
|
246
|
+
selectedComment: any | null;
|
|
247
|
+
openImagesPopup(comment: any): void;
|
|
248
|
+
closeImagesPopup(): void;
|
|
242
249
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
243
250
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
244
251
|
}
|