tango-app-ui-manage-tickets 3.7.0-beta.1 → 3.7.0-beta.10
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 +140 -29
- 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 +145 -31
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +11 -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,7 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
76
80
|
private lastSelectedTicket;
|
|
77
81
|
hasInitialStoreSynced: boolean;
|
|
78
82
|
addStoreIfNotExists(store: any): void;
|
|
83
|
+
selecteValues: any;
|
|
79
84
|
dataStoreView(data?: any): void;
|
|
80
85
|
isCollapsed: boolean;
|
|
81
86
|
toggleSidebar(): void;
|
|
@@ -88,6 +93,9 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
88
93
|
onFootfallPageSizeChange(pageSize: number): void;
|
|
89
94
|
totalItemsFootfall: any;
|
|
90
95
|
setFootfallpageSize(): any;
|
|
96
|
+
footfallMulticurrentPage: any;
|
|
97
|
+
onFootfallMultiPageChange(pageOffset: number): void;
|
|
98
|
+
onFootfallMultiPageSizeChange(pageSize: number): void;
|
|
91
99
|
toggleStoreSelection(store: any): void;
|
|
92
100
|
toggleSelectAll(): void;
|
|
93
101
|
isSelected(store: any): boolean;
|
|
@@ -118,10 +126,13 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
118
126
|
popupType: any;
|
|
119
127
|
popupOpen(type: any, value: any): void;
|
|
120
128
|
cancel(): void;
|
|
129
|
+
clear(): void;
|
|
121
130
|
ClusterList: any;
|
|
122
131
|
getAllGroups(): void;
|
|
123
132
|
groups: any;
|
|
124
133
|
ongroupSelect(event: any): void;
|
|
134
|
+
getFormattedEntryTime(entryTime: string): string;
|
|
135
|
+
showSelectAllBox(): void;
|
|
125
136
|
static ɵfac: i0.ɵɵFactoryDeclaration<FootfallDicComponent, never>;
|
|
126
137
|
static ɵcmp: i0.ɵɵComponentDeclaration<FootfallDicComponent, "lib-footfall-dic", never, {}, {}, never, never, false, never>;
|
|
127
138
|
}
|
|
@@ -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>;
|