tango-app-ui-manage-tickets 3.7.0-beta.86 → 3.7.0-beta.88
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-report-popup/audit-report-popup.component.mjs +3 -3
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +44 -12
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +33 -19
- package/fesm2022/tango-app-ui-manage-tickets.mjs +77 -31
- 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/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { TicketService } from '../../services/ticket.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TicketFilterPanelComponent implements OnChanges {
|
|
5
|
+
export declare class TicketFilterPanelComponent implements OnChanges, AfterViewInit {
|
|
6
6
|
private fb;
|
|
7
7
|
private eRef;
|
|
8
8
|
private service;
|
|
9
|
+
private cd;
|
|
9
10
|
apply: EventEmitter<any>;
|
|
10
11
|
panelClosed: EventEmitter<void>;
|
|
11
12
|
permissionType: string | null;
|
|
@@ -24,7 +25,8 @@ export declare class TicketFilterPanelComponent implements OnChanges {
|
|
|
24
25
|
label: string;
|
|
25
26
|
}[];
|
|
26
27
|
filterForm: FormGroup;
|
|
27
|
-
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
constructor(fb: FormBuilder, eRef: ElementRef, service: TicketService, cd: ChangeDetectorRef);
|
|
28
30
|
limitValue(event: any, controlName: string): void;
|
|
29
31
|
get isTango(): boolean;
|
|
30
32
|
get showReviewerAccuracy(): boolean;
|