tango-app-ui-shared 3.7.3-dev6-copilot3 → 3.7.3-dev6-copilot5
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/modules/layout/header/header.component.mjs +4 -4
- package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +201 -47
- package/esm2022/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.mjs +8 -3
- package/esm2022/lib/modules/layout/toolbar/trax-header/trax-header.component.mjs +8 -3
- package/esm2022/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.mjs +8 -3
- package/esm2022/lib/services/auth.service.mjs +2 -2
- package/fesm2022/tango-app-ui-shared.mjs +225 -56
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +13 -1
- package/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.d.ts +1 -0
- package/lib/modules/layout/toolbar/trax-header/trax-header.component.d.ts +1 -0
- package/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.d.ts +1 -0
- package/package.json +1 -1
package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
58
58
|
selectedLocationsLabel1(): string;
|
|
59
59
|
removeLocation(): void;
|
|
60
60
|
getGroups(): void;
|
|
61
|
-
toggleDropdown(type: 'country' | 'location' | 'group' | 'store'): void;
|
|
61
|
+
toggleDropdown(type: 'country' | 'location' | 'group' | 'store' | 'status'): void;
|
|
62
62
|
handleGroupDropdownClick(): void;
|
|
63
63
|
resetSelectedGroups(): void;
|
|
64
64
|
selectedGroupsLabel(): string;
|
|
@@ -95,6 +95,7 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
95
95
|
getSelectedCount(type: string): string;
|
|
96
96
|
activeDropdown: string;
|
|
97
97
|
showDropdown(type: string): void;
|
|
98
|
+
showClick(type: any, e: MouseEvent): void;
|
|
98
99
|
downtimeOptions: {
|
|
99
100
|
label: string;
|
|
100
101
|
value: string;
|
|
@@ -106,6 +107,17 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
106
107
|
updateSelectedDowntime(): void;
|
|
107
108
|
downtimeData: any[];
|
|
108
109
|
downtimeApi(): void;
|
|
110
|
+
restoreDowntimeFromStorage(): void;
|
|
111
|
+
statusVal: any;
|
|
112
|
+
searchStatusText: any;
|
|
113
|
+
filteredStatus: any;
|
|
114
|
+
getStatus(): void;
|
|
115
|
+
selectedStatusLabel(): string;
|
|
116
|
+
selectedStatusLabel1(): string;
|
|
117
|
+
filterStatus(): void;
|
|
118
|
+
isAllStatusSelected(): boolean;
|
|
119
|
+
toggleSelectAllStatus(event: any): void;
|
|
120
|
+
updateSelectedStatus(): void;
|
|
109
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficHeaderComponent, never>;
|
|
110
122
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficHeaderComponent, "lib-traffic-header", never, {}, {}, never, never, false, never>;
|
|
111
123
|
}
|
|
@@ -81,6 +81,7 @@ export declare class TrafficNobComponent implements OnInit {
|
|
|
81
81
|
getSelectedCount(type: string): string;
|
|
82
82
|
activeDropdown: string;
|
|
83
83
|
showDropdown(type: string): void;
|
|
84
|
+
showClick(type: any, e: MouseEvent): void;
|
|
84
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficNobComponent, never>;
|
|
85
86
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficNobComponent, "lib-traffic-nob", never, {}, {}, never, never, false, never>;
|
|
86
87
|
}
|
|
@@ -79,6 +79,7 @@ export declare class TraxHeaderComponent implements OnInit {
|
|
|
79
79
|
filterLocations(): void;
|
|
80
80
|
filterGroups(): void;
|
|
81
81
|
filterStores(): void;
|
|
82
|
+
showClick(type: any, e: MouseEvent): void;
|
|
82
83
|
closeDropdown(): void;
|
|
83
84
|
clickOutside(event: MouseEvent): void;
|
|
84
85
|
getSelectedCount(type: string): string;
|
|
@@ -75,6 +75,7 @@ export declare class TraxWithoutdateComponent implements OnInit {
|
|
|
75
75
|
getSelectedCount(type: string): string;
|
|
76
76
|
activeDropdown: string;
|
|
77
77
|
showDropdown(type: string): void;
|
|
78
|
+
showClick(type: any, e: MouseEvent): void;
|
|
78
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<TraxWithoutdateComponent, never>;
|
|
79
80
|
static ɵcmp: i0.ɵɵComponentDeclaration<TraxWithoutdateComponent, "lib-trax-withoutdate", never, {}, {}, never, never, false, never>;
|
|
80
81
|
}
|