tango-app-ui-shared 3.3.1-beta.5 → 3.3.1-beta.7
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/interceptors/http-auth-interceptor.mjs +9 -3
- package/esm2022/lib/modules/errors/errors-routing.module.mjs +6 -1
- package/esm2022/lib/modules/errors/errors.module.mjs +6 -3
- package/esm2022/lib/modules/errors/invalid-ip/invalid-ip.component.mjs +44 -0
- package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +4 -4
- package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +15 -10
- package/fesm2022/tango-app-ui-shared.mjs +72 -16
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/errors/errors.module.d.ts +4 -3
- package/lib/modules/errors/invalid-ip/invalid-ip.component.d.ts +17 -0
- package/package.json +1 -1
|
@@ -3,10 +3,11 @@ import * as i1 from "./errors.component";
|
|
|
3
3
|
import * as i2 from "./error404/error404.component";
|
|
4
4
|
import * as i3 from "./error500/error500.component";
|
|
5
5
|
import * as i4 from "./error403/error403.component";
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "
|
|
6
|
+
import * as i5 from "./invalid-ip/invalid-ip.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "./errors-routing.module";
|
|
8
9
|
export declare class ErrorsModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorsModule, [typeof i1.ErrorsComponent, typeof i2.Error404Component, typeof i3.Error500Component, typeof i4.Error403Component], [typeof
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorsModule, [typeof i1.ErrorsComponent, typeof i2.Error404Component, typeof i3.Error500Component, typeof i4.Error403Component, typeof i5.InvalidIpComponent], [typeof i6.CommonModule, typeof i7.ErrorsRoutingModule], never>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<ErrorsModule>;
|
|
12
13
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AuthService } from '../../../services/auth.service';
|
|
4
|
+
import { ThemeModeService } from 'tango-app-ui-global';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class InvalidIpComponent implements OnInit, OnDestroy {
|
|
7
|
+
private router;
|
|
8
|
+
private modeService;
|
|
9
|
+
private authService;
|
|
10
|
+
private unsubscribe;
|
|
11
|
+
constructor(router: Router, modeService: ThemeModeService, authService: AuthService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
getProfile(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InvalidIpComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InvalidIpComponent, "lib-invalid-ip", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|