tango-app-ui-manage-tickets 3.7.0-beta.22 → 3.7.0-beta.23
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/footfall-dic/footfall-dic.component.mjs +135 -78
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +55 -4
- package/fesm2022/tango-app-ui-manage-tickets.mjs +189 -81
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -1
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +2 -0
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -107,6 +107,8 @@ export declare class FootfallDicComponent implements OnInit, OnDestroy {
|
|
|
107
107
|
selectedDuplicateImagesList: any[];
|
|
108
108
|
selectedHousekeepingImagesList: any[];
|
|
109
109
|
selectedEmployeeImagesList: any[];
|
|
110
|
+
selectedJunkImagesList: any[];
|
|
111
|
+
junkACCount: any;
|
|
110
112
|
houseKeepingACCount: any;
|
|
111
113
|
employeeACCount: any;
|
|
112
114
|
duplicateACCount: any;
|
|
@@ -37,6 +37,7 @@ export declare class FootfallDicviewComponent implements OnInit {
|
|
|
37
37
|
private readonly destroy$;
|
|
38
38
|
ticketDataList: any;
|
|
39
39
|
setPageData(): void;
|
|
40
|
+
users: any;
|
|
40
41
|
ngOnInit(): void;
|
|
41
42
|
headDate: any;
|
|
42
43
|
headDateEnd: any;
|
|
@@ -70,6 +71,8 @@ export declare class FootfallDicviewComponent implements OnInit {
|
|
|
70
71
|
houseKeepingACCount: any;
|
|
71
72
|
employeeACCount: any;
|
|
72
73
|
duplicateACCount: any;
|
|
74
|
+
junkACCount: any;
|
|
75
|
+
selectedJunkImagesList: any[];
|
|
73
76
|
cloneWithoutSelected(obj: any): any;
|
|
74
77
|
allSelectValue: boolean;
|
|
75
78
|
cloneWithoutSelected1(data: any): any;
|