tango-app-ui-manage-tickets 3.7.0-beta.48 → 3.7.0-beta.49
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/audit-report-popup/audit-report-popup.component.mjs +3 -3
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +3 -2
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +30 -24
- package/fesm2022/tango-app-ui-manage-tickets.mjs +33 -26
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
49
49
|
getHeaderStatus(): any;
|
|
50
50
|
approverClosed: any;
|
|
51
51
|
getCurrentRoleMapping(): any;
|
|
52
|
+
disableToday: (date: any) => boolean;
|
|
52
53
|
datechange(event: any): void;
|
|
53
54
|
getStatusBadgeClass(status: string): string;
|
|
54
55
|
getFootfallSummaryData: any;
|
|
@@ -68,7 +69,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
68
69
|
hiddenColumns: string[];
|
|
69
70
|
generateColumns(firstRow: any): void;
|
|
70
71
|
formatColumnName(key: string): string;
|
|
71
|
-
detectColumnType(key: string): "
|
|
72
|
+
detectColumnType(key: string): "text" | "status" | "store" | "date";
|
|
72
73
|
currentPage: any;
|
|
73
74
|
pageSize: any;
|
|
74
75
|
onPageChange(pageOffset: number): void;
|
|
@@ -244,7 +245,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
244
245
|
onExportClick(): void;
|
|
245
246
|
getMultipleTicketClose(): void;
|
|
246
247
|
isRowSelectable(row: any): boolean;
|
|
247
|
-
selectedTicketRows: any;
|
|
248
|
+
selectedTicketRows: any[];
|
|
248
249
|
isRowSelected(row: any): boolean;
|
|
249
250
|
getSelectableRows(): any[];
|
|
250
251
|
areAllSelectableRowsSelected(): boolean;
|