tango-app-ui-manage-tickets 3.7.0-beta.55 → 3.7.0-beta.57
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/custom-select/custom-select.component.mjs +16 -3
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +5 -5
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +179 -15
- package/esm2022/lib/services/ticket.service.mjs +11 -3
- package/fesm2022/tango-app-ui-manage-tickets.mjs +207 -22
- 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/custom-select/custom-select.component.d.ts +1 -0
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +6 -1
- package/lib/services/ticket.service.d.ts +1 -1
- 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-success" | "badge-light-warning" | "badge-light-primary";
|
|
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>;
|
|
@@ -29,6 +29,7 @@ export declare class CustomSelectComponent implements OnChanges, OnInit {
|
|
|
29
29
|
emitSelectedValues(values: any[]): void;
|
|
30
30
|
checkIfAllSelected(): any;
|
|
31
31
|
onItemClick(item: any, event: MouseEvent): void;
|
|
32
|
+
getInitialsFromEmail(email?: string): string;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomSelectComponent, never>;
|
|
33
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<CustomSelectComponent, "team-select", never, { "items": { "alias": "items"; "required": false; }; "searchField": { "alias": "searchField"; "required": false; }; "multi": { "alias": "multi"; "required": false; }; "idField": { "alias": "idField"; "required": false; }; "selectedValues": { "alias": "selectedValues"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "selected": "selected"; }, never, never, false, never>;
|
|
34
35
|
}
|
|
@@ -79,7 +79,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
79
79
|
sortableColumns: string[];
|
|
80
80
|
generateColumns(firstRow: any): void;
|
|
81
81
|
formatColumnName(key: string): string;
|
|
82
|
-
detectColumnType(key: string): "text" | "status" | "
|
|
82
|
+
detectColumnType(key: string): "text" | "status" | "date" | "store";
|
|
83
83
|
currentPage: any;
|
|
84
84
|
pageSize: any;
|
|
85
85
|
onPageChange(pageOffset: number): void;
|
|
@@ -245,6 +245,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
245
245
|
showTangoDetails: boolean;
|
|
246
246
|
toggleRevisedDetails(mapping: any): void;
|
|
247
247
|
reviwerList: any;
|
|
248
|
+
reviewrReassignApi(): void;
|
|
248
249
|
reviewrApi(): void;
|
|
249
250
|
reviewerChange(event: any): void;
|
|
250
251
|
assignTicketView(): void;
|
|
@@ -276,6 +277,10 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
276
277
|
getIconType(): void;
|
|
277
278
|
onFilterPanelClosed(): void;
|
|
278
279
|
onFilterApply(filters: any): void;
|
|
280
|
+
revFilter: 'all' | 'accept' | 'reject' | 'pending';
|
|
281
|
+
onFilterChange(): any;
|
|
282
|
+
private getItemStatus;
|
|
283
|
+
matchesStatusFilter(item: any): boolean;
|
|
279
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketFootfallNewComponent, never>;
|
|
280
285
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketFootfallNewComponent, "lib-ticket-footfall-new", never, {}, { "filterChange": "filterChange"; }, never, never, false, never>;
|
|
281
286
|
}
|
|
@@ -43,7 +43,7 @@ export declare class TicketService {
|
|
|
43
43
|
exportDataMismatchList(data: any): Observable<ArrayBuffer>;
|
|
44
44
|
getAuditImages(data: any): Observable<Object>;
|
|
45
45
|
ExportAuditImagesasxlsx(data: any): Observable<ArrayBuffer>;
|
|
46
|
-
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any): Observable<any>;
|
|
46
|
+
getTicketSummaryApi(client: any, fromDate: any, toDate: any, tangoType: any, permissionType?: string | null): Observable<any>;
|
|
47
47
|
accuracyReasons(client: any): Observable<any>;
|
|
48
48
|
getTicketListOldApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any): Observable<any>;
|
|
49
49
|
getTicketListApi(client: any, fromDate: any, toDate: any, searchvalue: any, limit: any, offset: any, isExport: any, sortBy: any, sortOrder: any, tangoType: any, permissionType?: string | null, filters?: {
|