tango-app-ui-shared 3.7.3-dev6-copilot3 → 3.7.3-dev6-copilot4
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 +3 -3
- package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +74 -18
- 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 +97 -26
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +2 -0
- 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
|
@@ -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,7 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
106
107
|
updateSelectedDowntime(): void;
|
|
107
108
|
downtimeData: any[];
|
|
108
109
|
downtimeApi(): void;
|
|
110
|
+
restoreDowntimeFromStorage(): void;
|
|
109
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrafficHeaderComponent, never>;
|
|
110
112
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrafficHeaderComponent, "lib-traffic-header", never, {}, {}, never, never, false, never>;
|
|
111
113
|
}
|
|
@@ -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
|
}
|