tango-app-ui-shared 3.3.1-beta.3 → 3.3.1-beta.30

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.
Files changed (24) hide show
  1. package/esm2022/lib/interceptors/http-auth-interceptor.mjs +9 -3
  2. package/esm2022/lib/modules/errors/error404/error404.component.mjs +10 -11
  3. package/esm2022/lib/modules/errors/errors-routing.module.mjs +6 -1
  4. package/esm2022/lib/modules/errors/errors.module.mjs +6 -3
  5. package/esm2022/lib/modules/errors/invalid-ip/invalid-ip.component.mjs +44 -0
  6. package/esm2022/lib/modules/layout/header/page-title/page-title.component.mjs +13 -8
  7. package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +23 -14
  8. package/esm2022/lib/modules/layout/toolbar/date-single-select/date-single-select.component.mjs +12 -8
  9. package/esm2022/lib/modules/layout/toolbar/datepicker/datepicker.component.mjs +11 -6
  10. package/esm2022/lib/modules/layout/toolbar/single-store/single-store.component.mjs +9 -6
  11. package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +4 -4
  12. package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +108 -49
  13. package/esm2022/lib/routes/routing.mjs +6 -1
  14. package/fesm2022/{tango-app-ui-shared-intro.module-CAPPEqzI.mjs → tango-app-ui-shared-intro.module-CZdX0CkN.mjs} +3 -3
  15. package/fesm2022/{tango-app-ui-shared-intro.module-CAPPEqzI.mjs.map → tango-app-ui-shared-intro.module-CZdX0CkN.mjs.map} +1 -1
  16. package/fesm2022/{tango-app-ui-shared-notification.module-Bj0oBem1.mjs → tango-app-ui-shared-notification.module-CbWXIyly.mjs} +3 -3
  17. package/fesm2022/{tango-app-ui-shared-notification.module-Bj0oBem1.mjs.map → tango-app-ui-shared-notification.module-CbWXIyly.mjs.map} +1 -1
  18. package/fesm2022/tango-app-ui-shared.mjs +274 -134
  19. package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
  20. package/lib/modules/errors/errors.module.d.ts +4 -3
  21. package/lib/modules/errors/invalid-ip/invalid-ip.component.d.ts +17 -0
  22. package/lib/modules/layout/header/page-title/page-title.component.d.ts +4 -1
  23. package/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.d.ts +1 -0
  24. 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 "@angular/common";
7
- import * as i6 from "./errors-routing.module";
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 i5.CommonModule, typeof i6.ErrorsRoutingModule], never>;
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
+ }
@@ -1,10 +1,12 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
2
3
  import { Observable } from 'rxjs';
3
4
  import { PageInfoService, PageLink } from 'tango-app-ui-global';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class PageTitleComponent implements OnInit, OnDestroy {
6
7
  private pageInfo;
7
8
  private cd;
9
+ private router;
8
10
  private unsubscribe;
9
11
  appPageTitleDirection: string;
10
12
  appPageTitleBreadcrumb: boolean;
@@ -12,9 +14,10 @@ export declare class PageTitleComponent implements OnInit, OnDestroy {
12
14
  title$: Observable<string>;
13
15
  description$: Observable<string>;
14
16
  bc$: Observable<Array<PageLink>>;
15
- constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef);
17
+ constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef, router: Router);
16
18
  ngOnInit(): void;
17
19
  ngOnDestroy(): void;
20
+ redirectFunction(path: any): void;
18
21
  static ɵfac: i0.ɵɵFactoryDeclaration<PageTitleComponent, never>;
19
22
  static ɵcmp: i0.ɵɵComponentDeclaration<PageTitleComponent, "lib-page-title", never, { "appPageTitleDirection": { "alias": "appPageTitleDirection"; "required": false; }; "appPageTitleBreadcrumb": { "alias": "appPageTitleBreadcrumb"; "required": false; }; "appPageTitleDescription": { "alias": "appPageTitleDescription"; "required": false; }; }, {}, never, never, false, never>;
20
23
  }
@@ -11,6 +11,7 @@ export declare class SidebarMenuComponent implements OnInit {
11
11
  authlocalStorageToken: string;
12
12
  oldDashboardRoutingUrl: any;
13
13
  clientData: any;
14
+ headerFilters: any;
14
15
  constructor(authService: AuthService, gs: GlobalStateService, router: Router);
15
16
  private readonly destroy$;
16
17
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-shared",
3
- "version": "3.3.1-beta.3",
3
+ "version": "3.3.1-beta.30",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"