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