tango-app-ui-shared 3.3.1-beta.38 → 3.3.1-beta.39
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/sidebar/sidebar-menu/sidebar-menu.component.mjs +4 -4
- package/esm2022/lib/modules/layout/toolbar/client-settings/client-settings.component.mjs +3 -2
- package/esm2022/lib/modules/layout/toolbar/date-single-select/date-single-select.component.mjs +3 -2
- package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +27 -14
- package/fesm2022/{tango-app-ui-shared-intro.module-CZdX0CkN.mjs → tango-app-ui-shared-intro.module-0F5I6zgS.mjs} +3 -3
- package/fesm2022/{tango-app-ui-shared-intro.module-CZdX0CkN.mjs.map → tango-app-ui-shared-intro.module-0F5I6zgS.mjs.map} +1 -1
- package/fesm2022/{tango-app-ui-shared-notification.module-D-guSga_.mjs → tango-app-ui-shared-notification.module-B0moW4JN.mjs} +3 -3
- package/fesm2022/{tango-app-ui-shared-notification.module-D-guSga_.mjs.map → tango-app-ui-shared-notification.module-B0moW4JN.mjs.map} +1 -1
- package/fesm2022/tango-app-ui-shared.mjs +58 -44
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +4 -1
- package/package.json +1 -1
package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts
CHANGED
|
@@ -3,9 +3,11 @@ import dayjs from "dayjs";
|
|
|
3
3
|
import "dayjs/locale/en";
|
|
4
4
|
import { AuthService } from "../../../../../services/auth.service";
|
|
5
5
|
import { GlobalStateService } from "tango-app-ui-global";
|
|
6
|
+
import { Router } from "@angular/router";
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TrafficHeaderComponent implements OnInit {
|
|
8
9
|
private auth;
|
|
10
|
+
private router;
|
|
9
11
|
gs: GlobalStateService;
|
|
10
12
|
private cd;
|
|
11
13
|
dayjs: typeof dayjs;
|
|
@@ -28,7 +30,8 @@ export declare class TrafficHeaderComponent implements OnInit {
|
|
|
28
30
|
locationLabel: any[];
|
|
29
31
|
groupLabel: any[];
|
|
30
32
|
users: any;
|
|
31
|
-
|
|
33
|
+
url: any;
|
|
34
|
+
constructor(auth: AuthService, router: Router, gs: GlobalStateService, cd: ChangeDetectorRef);
|
|
32
35
|
onClick(event: MouseEvent): void;
|
|
33
36
|
closeDropdown1(): void;
|
|
34
37
|
ngOnInit(): void;
|