tango-app-ui-manage-tickets 3.7.0-beta.62 → 3.7.0-beta.64
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-mapping-list/audit-mapping-list.component.mjs +14 -2
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +11 -3
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +20 -23
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +4 -4
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +73 -408
- package/esm2022/lib/services/audit.service.mjs +2 -2
- package/fesm2022/tango-app-ui-manage-tickets.mjs +118 -436
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +1 -1
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +7 -3
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ export declare class AuditMetricsComponent implements OnInit, OnDestroy {
|
|
|
52
52
|
openAftercount(value: any): void;
|
|
53
53
|
openView(): void;
|
|
54
54
|
openreTrigger(value: any): void;
|
|
55
|
-
statusBadge(value: any): "badge-light-
|
|
55
|
+
statusBadge(value: any): "badge-light-warning" | "badge-light-primary" | "badge-light-success";
|
|
56
56
|
sortData(value: any): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuditMetricsComponent, never>;
|
|
58
58
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuditMetricsComponent, "lib-audit-metrics", never, {}, {}, never, never, false, never>;
|
|
@@ -51,6 +51,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
51
51
|
selectedRole: 'approver' | 'reviewer' | '';
|
|
52
52
|
statusVal: any;
|
|
53
53
|
dueDate: any;
|
|
54
|
+
reviewStatus: boolean;
|
|
54
55
|
getHeaderStatus(): any;
|
|
55
56
|
approverClosed: any;
|
|
56
57
|
getCurrentRoleMapping(): any;
|
|
@@ -79,7 +80,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
79
80
|
sortableColumns: string[];
|
|
80
81
|
generateColumns(firstRow: any): void;
|
|
81
82
|
formatColumnName(key: string): string;
|
|
82
|
-
detectColumnType(key: string): "
|
|
83
|
+
detectColumnType(key: string): "store" | "date" | "status" | "text";
|
|
83
84
|
currentPage: any;
|
|
84
85
|
pageSize: any;
|
|
85
86
|
onPageChange(pageOffset: number): void;
|
|
@@ -135,8 +136,6 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
135
136
|
getCategoryCommentCountForSource(source: any, category: string): number;
|
|
136
137
|
toggleCommentsAccordion(type: string): void;
|
|
137
138
|
ngOnDestroy(): void;
|
|
138
|
-
activityData: any;
|
|
139
|
-
activityData1: any;
|
|
140
139
|
comments: any;
|
|
141
140
|
showRevisedDetails: boolean;
|
|
142
141
|
footfallNoData: boolean;
|
|
@@ -154,6 +153,8 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
154
153
|
paginationSizesFootfall: number[];
|
|
155
154
|
addStoreIfNotExists(store: any): void;
|
|
156
155
|
revopsTypes: string[];
|
|
156
|
+
countData: any;
|
|
157
|
+
filterList: any;
|
|
157
158
|
buildRevopsTypes(tickets: any[]): void;
|
|
158
159
|
ticketStatus: any;
|
|
159
160
|
private updateCloseStateFromMapping;
|
|
@@ -282,6 +283,9 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
282
283
|
onFilterChange(): any;
|
|
283
284
|
private getItemStatus;
|
|
284
285
|
matchesStatusFilter(item: any): boolean;
|
|
286
|
+
selectPlanTrends(type: string): void;
|
|
287
|
+
filteredList: any[];
|
|
288
|
+
applyFilter1(mapping: any): void;
|
|
285
289
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
286
290
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
287
291
|
}
|