tango-app-ui-manage-tickets 3.7.0-beta.1 → 3.7.0-beta.11
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/footfall-dic/footfall-dic.component.mjs +156 -39
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +3 -3
- package/esm2022/lib/services/ticket.service.mjs +5 -2
- package/fesm2022/tango-app-ui-manage-tickets.mjs +161 -41
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +12 -0
- package/lib/services/ticket.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,8 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
19
19
|
noData: boolean;
|
|
20
20
|
sortedColumn: any;
|
|
21
21
|
sortDirection: any;
|
|
22
|
+
sortedColumn1: any;
|
|
23
|
+
sortDirection1: any;
|
|
22
24
|
footfallView: boolean;
|
|
23
25
|
headerFilters: any;
|
|
24
26
|
footfallList_req: any;
|
|
@@ -57,6 +59,8 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
57
59
|
storeCount: any;
|
|
58
60
|
searchStoresData(): void;
|
|
59
61
|
StoresSearchValue: any;
|
|
62
|
+
sortOrderStores: any;
|
|
63
|
+
sortValue(column: string): void;
|
|
60
64
|
getStores(): void;
|
|
61
65
|
getTaggedStoresData: any;
|
|
62
66
|
typeChange(event: any): void;
|
|
@@ -76,6 +80,8 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
76
80
|
private lastSelectedTicket;
|
|
77
81
|
hasInitialStoreSynced: boolean;
|
|
78
82
|
addStoreIfNotExists(store: any): void;
|
|
83
|
+
selecteValues: any;
|
|
84
|
+
selectedStatus: any;
|
|
79
85
|
dataStoreView(data?: any): void;
|
|
80
86
|
isCollapsed: boolean;
|
|
81
87
|
toggleSidebar(): void;
|
|
@@ -88,6 +94,9 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
88
94
|
onFootfallPageSizeChange(pageSize: number): void;
|
|
89
95
|
totalItemsFootfall: any;
|
|
90
96
|
setFootfallpageSize(): any;
|
|
97
|
+
footfallMulticurrentPage: any;
|
|
98
|
+
onFootfallMultiPageChange(pageOffset: number): void;
|
|
99
|
+
onFootfallMultiPageSizeChange(pageSize: number): void;
|
|
91
100
|
toggleStoreSelection(store: any): void;
|
|
92
101
|
toggleSelectAll(): void;
|
|
93
102
|
isSelected(store: any): boolean;
|
|
@@ -118,10 +127,13 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
118
127
|
popupType: any;
|
|
119
128
|
popupOpen(type: any, value: any): void;
|
|
120
129
|
cancel(): void;
|
|
130
|
+
clear(): void;
|
|
121
131
|
ClusterList: any;
|
|
122
132
|
getAllGroups(): void;
|
|
123
133
|
groups: any;
|
|
124
134
|
ongroupSelect(event: any): void;
|
|
135
|
+
getFormattedEntryTime(entryTime: string): string;
|
|
136
|
+
showSelectAllBox(): void;
|
|
125
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallDicComponent, never>;
|
|
126
138
|
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallDicComponent, "lib-footfall-dic", never, {}, {}, never, never, false, never>;
|
|
127
139
|
}
|
|
@@ -41,7 +41,7 @@ export declare class TicketService {
|
|
|
41
41
|
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
42
42
|
getTicketListExportApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
43
43
|
getTicketsApi(store: any, fromDate: any, toDate: any, revopsType: any, status: any, action: any, offset: any, limit: any): Observable<any>;
|
|
44
|
-
getTaggedStoresApi(client: any, fromDate: any, toDate: any, searchValue: any, clusters: any): Observable<any>;
|
|
44
|
+
getTaggedStoresApi(client: any, fromDate: any, toDate: any, searchValue: any, clusters: any, sortOrder: any): Observable<any>;
|
|
45
45
|
getUpdateStatusApi(data: any): Observable<any>;
|
|
46
46
|
getclusters(data: any): Observable<Object>;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketService, never>;
|