tango-app-ui-manage-tickets 3.7.0-beta.53 → 3.7.0-beta.54
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-filter-panel/ticket-filter-panel.component.mjs +45 -32
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +6 -3
- package/fesm2022/tango-app-ui-manage-tickets.mjs +49 -34
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +5 -3
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
23
23
|
}[];
|
|
24
24
|
filterForm: FormGroup;
|
|
25
25
|
constructor(fb: FormBuilder, eRef: ElementRef, service: TicketService);
|
|
26
|
+
limitValue(event: any, controlName: string): void;
|
|
26
27
|
get isTango(): boolean;
|
|
27
28
|
get showReviewerAccuracy(): boolean;
|
|
28
29
|
get showReviewedBy(): boolean;
|
|
@@ -39,10 +40,11 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
39
40
|
isBetween(controlName: string): boolean;
|
|
40
41
|
ngOnChanges(changes: SimpleChanges): void;
|
|
41
42
|
userList: any[];
|
|
42
|
-
filteredReviewerList: any[];
|
|
43
43
|
reviewerSearchTerm: string;
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
get filteredReviewerList(): {
|
|
45
|
+
email: string;
|
|
46
|
+
name?: string;
|
|
47
|
+
}[];
|
|
46
48
|
approverSearchTerm: any;
|
|
47
49
|
get filteredApproverList(): any[];
|
|
48
50
|
onApproverSearch(value: string): void;
|
|
@@ -40,6 +40,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
40
40
|
footfallcount: any;
|
|
41
41
|
disableAudit: boolean;
|
|
42
42
|
internalticket: any;
|
|
43
|
+
clientData: any;
|
|
43
44
|
ngOnInit(): void;
|
|
44
45
|
viewTicket(type: any): void;
|
|
45
46
|
private areAllItemsReviewed;
|
|
@@ -74,7 +75,7 @@ export declare class TicketFootfallNewComponent implements OnInit, OnDestroy {
|
|
|
74
75
|
sortableColumns: string[];
|
|
75
76
|
generateColumns(firstRow: any): void;
|
|
76
77
|
formatColumnName(key: string): string;
|
|
77
|
-
detectColumnType(key: string): "
|
|
78
|
+
detectColumnType(key: string): "store" | "date" | "status" | "text";
|
|
78
79
|
currentPage: any;
|
|
79
80
|
pageSize: any;
|
|
80
81
|
onPageChange(pageOffset: number): void;
|