tango-app-ui-manage-tickets 3.7.0-beta.40 → 3.7.0-beta.41
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 +124 -83
- package/fesm2022/tango-app-ui-manage-tickets.mjs +124 -83
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +12 -7
- package/package.json +1 -1
|
@@ -141,7 +141,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
141
141
|
pageSizeFootfall: number;
|
|
142
142
|
paginationSizesFootfall: number[];
|
|
143
143
|
addStoreIfNotExists(store: any): void;
|
|
144
|
-
|
|
144
|
+
revopsTypes: string[];
|
|
145
|
+
buildRevopsTypes(tickets: any[]): void;
|
|
146
|
+
hasRevopsType(type: any): boolean;
|
|
145
147
|
overallSelectedIds: any;
|
|
146
148
|
overallSelect(event: any): void;
|
|
147
149
|
getAllParentItems(): any[];
|
|
@@ -156,14 +158,17 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
156
158
|
footfallTicketsData: any[];
|
|
157
159
|
selectedByType?: any;
|
|
158
160
|
selectAllByType: any;
|
|
159
|
-
getListByType(type:
|
|
161
|
+
getListByType(type: any): any[];
|
|
160
162
|
private updateOverallSelectedIds;
|
|
161
|
-
selectedCategories:
|
|
163
|
+
selectedCategories: any;
|
|
164
|
+
labelMap: Record<string, string>;
|
|
165
|
+
toTitleCase(str: string): string;
|
|
166
|
+
buildLabelMap(tickets: any[]): void;
|
|
162
167
|
get selectedCategoriesLabel(): string;
|
|
163
168
|
type: any;
|
|
164
|
-
popupvalue:
|
|
165
|
-
onSelectAll(type:
|
|
166
|
-
onImageCheckboxChange(type:
|
|
169
|
+
popupvalue: any;
|
|
170
|
+
onSelectAll(type: any, event: any): void;
|
|
171
|
+
onImageCheckboxChange(type: any, id: any): void;
|
|
167
172
|
remarks: any;
|
|
168
173
|
zoomPopup: ElementRef;
|
|
169
174
|
popupType: any;
|
|
@@ -187,7 +192,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
187
192
|
isRejected1(original: any): boolean;
|
|
188
193
|
isApproved(original: any): boolean;
|
|
189
194
|
isRejected(original: any): boolean;
|
|
190
|
-
resetCheckbox(type:
|
|
195
|
+
resetCheckbox(type: any, original: any): void;
|
|
191
196
|
viewMode: "tangoreview" | "approve" | "review" | "tagging";
|
|
192
197
|
getAction(original: any, type: "tagging" | "review" | "tangoreview" | "approve"): any;
|
|
193
198
|
updateCloseButtonFromStore(): void;
|