@rxap/layout 14.0.3 → 16.0.0-dev.0

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 (121) hide show
  1. package/{esm2020 → esm2022}/lib/footer/footer.component.mjs +10 -9
  2. package/esm2022/lib/footer/footer.component.module.mjs +30 -0
  3. package/esm2022/lib/footer.directive.mjs +54 -0
  4. package/{esm2020 → esm2022}/lib/header/apps-button/apps-button.component.mjs +16 -15
  5. package/esm2022/lib/header/apps-button/apps-button.component.module.mjs +46 -0
  6. package/esm2022/lib/header/header.component.mjs +131 -0
  7. package/esm2022/lib/header/header.component.module.mjs +70 -0
  8. package/esm2022/lib/header/language-selector/language-selector.component.mjs +113 -0
  9. package/esm2022/lib/header/language-selector/language-selector.component.module.mjs +30 -0
  10. package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +34 -0
  11. package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.mjs +26 -0
  12. package/esm2022/lib/header/reset-button/reset-button.component.mjs +28 -0
  13. package/esm2022/lib/header/reset-button/reset-button.component.module.mjs +26 -0
  14. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +45 -0
  15. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.mjs +30 -0
  16. package/esm2022/lib/header/sign-out/sign-out.component.mjs +32 -0
  17. package/esm2022/lib/header/sign-out/sign-out.component.module.mjs +30 -0
  18. package/{esm2020 → esm2022}/lib/header/user-profile-icon/user-profile-icon.component.mjs +22 -21
  19. package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.module.mjs +38 -0
  20. package/esm2022/lib/layout/layout.component.mjs +79 -0
  21. package/esm2022/lib/layout/layout.component.module.mjs +70 -0
  22. package/esm2022/lib/layout/layout.component.service.mjs +44 -0
  23. package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +287 -0
  24. package/esm2022/lib/navigation/navigation.component.mjs +131 -0
  25. package/esm2022/lib/navigation/navigation.component.module.mjs +71 -0
  26. package/esm2022/lib/navigation/navigation.service.mjs +144 -0
  27. package/esm2022/lib/navigation/replace-router-paths.pipe.mjs +36 -0
  28. package/esm2022/lib/navigation/replace-router-paths.service.mjs +16 -0
  29. package/esm2022/lib/sidenav/sidenav-footer.directive.mjs +20 -0
  30. package/esm2022/lib/sidenav/sidenav-header.directive.mjs +20 -0
  31. package/esm2022/lib/sidenav/sidenav.component.mjs +121 -0
  32. package/esm2022/lib/sidenav/sidenav.component.module.mjs +44 -0
  33. package/esm2022/lib/sidenav/sidenav.component.service.mjs +23 -0
  34. package/esm2022/lib/sidenav/version/version.component.mjs +63 -0
  35. package/{esm2020 → esm2022}/lib/sidenav/version/version.component.module.mjs +7 -6
  36. package/esm2022/lib/sidenav-content/sidenav-content.component.mjs +46 -0
  37. package/{esm2020 → esm2022}/lib/sidenav-content/sidenav-content.component.module.mjs +7 -6
  38. package/esm2022/lib/sidenav-content/sidenav-content.component.service.mjs +37 -0
  39. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +51 -0
  40. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.mjs +30 -0
  41. package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +74 -0
  42. package/{esm2020 → esm2022}/lib/window-container-sidenav/window-container-sidenav.component.module.mjs +8 -7
  43. package/{fesm2020 → fesm2022}/rxap-layout.mjs +477 -480
  44. package/fesm2022/rxap-layout.mjs.map +1 -0
  45. package/lib/footer/footer.component.d.ts +1 -1
  46. package/lib/footer.directive.d.ts +1 -1
  47. package/lib/header/apps-button/apps-button.component.d.ts +1 -1
  48. package/lib/header/apps-button/apps-button.component.module.d.ts +2 -2
  49. package/lib/header/header.component.d.ts +2 -2
  50. package/lib/header/header.component.module.d.ts +3 -3
  51. package/lib/header/language-selector/language-selector.component.d.ts +1 -1
  52. package/lib/header/language-selector/language-selector.component.module.d.ts +2 -2
  53. package/lib/header/navigation-progress-bar/navigation-progress-bar.component.d.ts +1 -1
  54. package/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.d.ts +2 -2
  55. package/lib/header/reset-button/reset-button.component.d.ts +1 -1
  56. package/lib/header/reset-button/reset-button.component.module.d.ts +2 -2
  57. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.d.ts +1 -1
  58. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.d.ts +2 -2
  59. package/lib/header/sign-out/sign-out.component.d.ts +1 -1
  60. package/lib/header/sign-out/sign-out.component.module.d.ts +2 -2
  61. package/lib/header/user-profile-icon/user-profile-icon.component.d.ts +1 -1
  62. package/lib/header/user-profile-icon/user-profile-icon.component.module.d.ts +2 -2
  63. package/lib/layout/layout.component.d.ts +1 -1
  64. package/lib/navigation/navigation-item/navigation-item.component.d.ts +1 -1
  65. package/lib/navigation/navigation-item.d.ts +2 -2
  66. package/lib/navigation/navigation.component.d.ts +1 -1
  67. package/lib/navigation/navigation.component.module.d.ts +7 -8
  68. package/lib/sidenav/sidenav-footer.directive.d.ts +1 -1
  69. package/lib/sidenav/sidenav-header.directive.d.ts +1 -1
  70. package/lib/sidenav/sidenav.component.d.ts +1 -1
  71. package/lib/sidenav/sidenav.component.module.d.ts +2 -2
  72. package/lib/sidenav/version/version.component.d.ts +1 -1
  73. package/lib/sidenav-content/sidenav-content.component.d.ts +1 -1
  74. package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.d.ts +1 -1
  75. package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.d.ts +2 -2
  76. package/lib/window-container-sidenav/window-container-sidenav.component.d.ts +1 -1
  77. package/package.json +30 -35
  78. package/esm2020/lib/footer/footer.component.module.mjs +0 -29
  79. package/esm2020/lib/footer.directive.mjs +0 -52
  80. package/esm2020/lib/header/apps-button/apps-button.component.module.mjs +0 -45
  81. package/esm2020/lib/header/header.component.mjs +0 -130
  82. package/esm2020/lib/header/header.component.module.mjs +0 -69
  83. package/esm2020/lib/header/language-selector/language-selector.component.mjs +0 -111
  84. package/esm2020/lib/header/language-selector/language-selector.component.module.mjs +0 -29
  85. package/esm2020/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +0 -33
  86. package/esm2020/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.mjs +0 -25
  87. package/esm2020/lib/header/reset-button/reset-button.component.mjs +0 -27
  88. package/esm2020/lib/header/reset-button/reset-button.component.module.mjs +0 -25
  89. package/esm2020/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +0 -44
  90. package/esm2020/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.mjs +0 -29
  91. package/esm2020/lib/header/sign-out/sign-out.component.mjs +0 -31
  92. package/esm2020/lib/header/sign-out/sign-out.component.module.mjs +0 -29
  93. package/esm2020/lib/header/user-profile-icon/user-profile-icon.component.module.mjs +0 -37
  94. package/esm2020/lib/layout/layout.component.mjs +0 -78
  95. package/esm2020/lib/layout/layout.component.module.mjs +0 -69
  96. package/esm2020/lib/layout/layout.component.service.mjs +0 -43
  97. package/esm2020/lib/navigation/navigation-item/navigation-item.component.mjs +0 -286
  98. package/esm2020/lib/navigation/navigation.component.mjs +0 -130
  99. package/esm2020/lib/navigation/navigation.component.module.mjs +0 -74
  100. package/esm2020/lib/navigation/navigation.service.mjs +0 -143
  101. package/esm2020/lib/navigation/replace-router-paths.pipe.mjs +0 -34
  102. package/esm2020/lib/navigation/replace-router-paths.service.mjs +0 -15
  103. package/esm2020/lib/sidenav/sidenav-footer.directive.mjs +0 -19
  104. package/esm2020/lib/sidenav/sidenav-header.directive.mjs +0 -19
  105. package/esm2020/lib/sidenav/sidenav.component.mjs +0 -120
  106. package/esm2020/lib/sidenav/sidenav.component.module.mjs +0 -43
  107. package/esm2020/lib/sidenav/sidenav.component.service.mjs +0 -22
  108. package/esm2020/lib/sidenav/version/version.component.mjs +0 -62
  109. package/esm2020/lib/sidenav-content/sidenav-content.component.mjs +0 -45
  110. package/esm2020/lib/sidenav-content/sidenav-content.component.service.mjs +0 -36
  111. package/esm2020/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +0 -50
  112. package/esm2020/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.mjs +0 -29
  113. package/esm2020/lib/window-container-sidenav/window-container-sidenav.component.mjs +0 -73
  114. package/fesm2015/rxap-layout.mjs +0 -2545
  115. package/fesm2015/rxap-layout.mjs.map +0 -1
  116. package/fesm2020/rxap-layout.mjs.map +0 -1
  117. /package/{esm2020 → esm2022}/index.mjs +0 -0
  118. /package/{esm2020 → esm2022}/lib/navigation/navigation-item.mjs +0 -0
  119. /package/{esm2020 → esm2022}/lib/tokens.mjs +0 -0
  120. /package/{esm2020 → esm2022}/lib/types.mjs +0 -0
  121. /package/{esm2020 → esm2022}/rxap-layout.mjs +0 -0
@@ -35,5 +35,5 @@ export declare class NavigationItemComponent implements OnChanges, AfterViewInit
35
35
  isNavigationItem(item: NavigationItem | NavigationDividerItem): item is NavigationItem;
36
36
  asNavigationItem(item: NavigationItem | NavigationDividerItem): NavigationItem;
37
37
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationItemComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationItemComponent, "li[rxap-navigation-item]", never, { "item": "item"; "level": "level"; }, {}, never, never, false>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigationItemComponent, "li[rxap-navigation-item]", never, { "item": { "alias": "item"; "required": false; }; "level": { "alias": "level"; "required": false; }; }, {}, never, never, false, never>;
39
39
  }
@@ -1,8 +1,8 @@
1
1
  import { IconConfig } from '@rxap/utilities';
2
2
  import { InjectionToken, Type, AbstractType } from '@angular/core';
3
3
  import { Observable } from 'rxjs';
4
- export declare type Navigation = Array<NavigationItem | NavigationDividerItem>;
5
- export declare type NavigationWithInserts = Array<NavigationItem<NavigationWithInserts> | NavigationDividerItem | NavigationInsertItem>;
4
+ export type Navigation = Array<NavigationItem | NavigationDividerItem>;
5
+ export type NavigationWithInserts = Array<NavigationItem<NavigationWithInserts> | NavigationDividerItem | NavigationInsertItem>;
6
6
  export interface NavigationDividerItem {
7
7
  divider: boolean;
8
8
  title?: string;
@@ -20,5 +20,5 @@ export declare class NavigationComponent implements OnInit, OnDestroy {
20
20
  isNavigationItem(item: NavigationItem | NavigationDividerItem): item is NavigationItem;
21
21
  asNavigationItem(item: NavigationItem | NavigationDividerItem): NavigationItem;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ul[rxap-navigation]", never, { "root": "root"; "items": "items"; "level": "level"; }, {}, never, never, false>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ul[rxap-navigation]", never, { "root": { "alias": "root"; "required": false; }; "items": { "alias": "items"; "required": false; }; "level": { "alias": "level"; "required": false; }; }, {}, never, never, false, never>;
24
24
  }
@@ -2,19 +2,18 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./navigation.component";
3
3
  import * as i2 from "./navigation-item/navigation-item.component";
4
4
  import * as i3 from "@angular/material/icon";
5
- import * as i4 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/legacy-button";
6
6
  import * as i5 from "@angular/flex-layout";
7
7
  import * as i6 from "@angular/router";
8
8
  import * as i7 from "@angular/common";
9
9
  import * as i8 from "@rxap/material-directives/icon";
10
- import * as i9 from "@rxap/components";
11
- import * as i10 from "@angular/material/core";
12
- import * as i11 from "@angular/material/divider";
13
- import * as i12 from "@rxap/directives";
14
- import * as i13 from "@angular/material/tooltip";
15
- import * as i14 from "./replace-router-paths.pipe";
10
+ import * as i9 from "@angular/material/core";
11
+ import * as i10 from "@angular/material/divider";
12
+ import * as i11 from "@rxap/directives";
13
+ import * as i12 from "@angular/material/legacy-tooltip";
14
+ import * as i13 from "./replace-router-paths.pipe";
16
15
  export declare class NavigationComponentModule {
17
16
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponentModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationComponentModule, [typeof i1.NavigationComponent, typeof i2.NavigationItemComponent], [typeof i3.MatIconModule, typeof i4.MatButtonModule, typeof i5.FlexLayoutModule, typeof i6.RouterModule, typeof i7.CommonModule, typeof i8.IconDirectiveModule, typeof i9.ButtonComponentModule, typeof i10.MatRippleModule, typeof i11.MatDividerModule, typeof i12.StopPropagationDirectiveModule, typeof i13.MatTooltipModule, typeof i14.ReplaceRouterPathsPipeModule], [typeof i1.NavigationComponent]>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationComponentModule, [typeof i1.NavigationComponent, typeof i2.NavigationItemComponent], [typeof i3.MatIconModule, typeof i4.MatLegacyButtonModule, typeof i5.FlexLayoutModule, typeof i6.RouterModule, typeof i7.CommonModule, typeof i8.IconDirectiveModule, typeof i9.MatRippleModule, typeof i10.MatDividerModule, typeof i11.StopPropagationDirectiveModule, typeof i12.MatLegacyTooltipModule, typeof i13.ReplaceRouterPathsPipeModule], [typeof i1.NavigationComponent]>;
19
18
  static ɵinj: i0.ɵɵInjectorDeclaration<NavigationComponentModule>;
20
19
  }
@@ -4,5 +4,5 @@ export declare class SidenavFooterDirective {
4
4
  readonly template: TemplateRef<void>;
5
5
  constructor(template: TemplateRef<void>);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavFooterDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavFooterDirective, "[rxapSidenavFooter]", never, {}, {}, never, never, false>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavFooterDirective, "[rxapSidenavFooter]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ export declare class SidenavHeaderDirective {
4
4
  readonly template: TemplateRef<void>;
5
5
  constructor(template: TemplateRef<void>);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavHeaderDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavHeaderDirective, "[rxapSidenavHeader]", never, {}, {}, never, never, false>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavHeaderDirective, "[rxapSidenavHeader]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -8,5 +8,5 @@ export declare class SidenavComponent {
8
8
  sidenavHeaderDirective?: SidenavHeaderDirective;
9
9
  constructor(sidenav: SidenavComponentService);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "rxap-sidenav", never, {}, {}, ["sidenavFooterDirective", "sidenavHeaderDirective"], never, false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "rxap-sidenav", never, {}, {}, ["sidenavFooterDirective", "sidenavHeaderDirective"], never, false, never>;
12
12
  }
@@ -7,9 +7,9 @@ import * as i5 from "../navigation/navigation.component.module";
7
7
  import * as i6 from "@angular/common";
8
8
  import * as i7 from "@angular/material/divider";
9
9
  import * as i8 from "@angular/material/icon";
10
- import * as i9 from "@angular/material/button";
10
+ import * as i9 from "@angular/material/legacy-button";
11
11
  export declare class SidenavModule {
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<SidenavModule, [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective], [typeof i4.FlexLayoutModule, typeof i5.NavigationComponentModule, typeof i6.CommonModule, typeof i7.MatDividerModule, typeof i8.MatIconModule, typeof i9.MatButtonModule], [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective]>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SidenavModule, [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective], [typeof i4.FlexLayoutModule, typeof i5.NavigationComponentModule, typeof i6.CommonModule, typeof i7.MatDividerModule, typeof i8.MatIconModule, typeof i9.MatLegacyButtonModule], [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective]>;
14
14
  static ɵinj: i0.ɵɵInjectorDeclaration<SidenavModule>;
15
15
  }
@@ -10,5 +10,5 @@ export declare class VersionComponent implements OnInit, OnDestroy {
10
10
  ngOnInit(): void;
11
11
  ngOnDestroy(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<VersionComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<VersionComponent, "rxap-version", never, {}, {}, never, never, false>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<VersionComponent, "rxap-version", never, {}, {}, never, never, false, never>;
14
14
  }
@@ -8,5 +8,5 @@ export declare class SidenavContentComponent implements OnInit {
8
8
  constructor(sccs: SidenavContentComponentService);
9
9
  ngOnInit(): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SidenavContentComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SidenavContentComponent, "rxap-sidenav-content", never, { "sidenav": "sidenav"; }, {}, never, ["*"], false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidenavContentComponent, "rxap-sidenav-content", never, { "sidenav": { "alias": "sidenav"; "required": false; }; }, {}, never, ["*"], false, never>;
12
12
  }
@@ -7,5 +7,5 @@ export declare class ToggleWindowSidenavButtonComponent implements OnInit {
7
7
  ngOnInit(): void;
8
8
  toggle(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleWindowSidenavButtonComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleWindowSidenavButtonComponent, "rxap-toggle-window-sidenav-button", never, { "openWindowSidenav": "openWindowSidenav"; }, { "openWindowSidenavChange": "openWindowSidenavChange"; }, never, never, false>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleWindowSidenavButtonComponent, "rxap-toggle-window-sidenav-button", never, { "openWindowSidenav": { "alias": "openWindowSidenav"; "required": false; }; }, { "openWindowSidenavChange": "openWindowSidenavChange"; }, never, never, false, never>;
11
11
  }
@@ -1,10 +1,10 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./toggle-window-sidenav-button.component";
3
- import * as i2 from "@angular/material/button";
3
+ import * as i2 from "@angular/material/legacy-button";
4
4
  import * as i3 from "@angular/material/icon";
5
5
  import * as i4 from "@angular/common";
6
6
  export declare class ToggleWindowSidenavButtonModule {
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleWindowSidenavButtonModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleWindowSidenavButtonModule, [typeof i1.ToggleWindowSidenavButtonComponent], [typeof i2.MatButtonModule, typeof i3.MatIconModule, typeof i4.CommonModule], [typeof i1.ToggleWindowSidenavButtonComponent]>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleWindowSidenavButtonModule, [typeof i1.ToggleWindowSidenavButtonComponent], [typeof i2.MatLegacyButtonModule, typeof i3.MatIconModule, typeof i4.CommonModule], [typeof i1.ToggleWindowSidenavButtonComponent]>;
9
9
  static ɵinj: i0.ɵɵInjectorDeclaration<ToggleWindowSidenavButtonModule>;
10
10
  }
@@ -13,5 +13,5 @@ export declare class WindowContainerSidenavComponent implements OnInit, OnDestro
13
13
  private add;
14
14
  private remove;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<WindowContainerSidenavComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<WindowContainerSidenavComponent, "rxap-window-container-sidenav", never, {}, {}, never, never, false>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowContainerSidenavComponent, "rxap-window-container-sidenav", never, {}, {}, never, never, false, never>;
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxap/layout",
3
- "version": "14.0.3",
3
+ "version": "16.0.0-dev.0",
4
4
  "bugs": {
5
5
  "url": "https://gitlab.com/rxap/packages/-/issues",
6
6
  "email": "incoming+rxap-packages-14898188-issue-@incoming.gitlab.com"
@@ -17,27 +17,27 @@
17
17
  "license": "MIT",
18
18
  "description": "A collection of components and services that provides standard layouts for angular applications.",
19
19
  "peerDependencies": {
20
- "@angular-devkit/schematics": "^14.2.3",
21
- "@angular/animations": "^14.2.2",
22
- "@angular/cdk": "^14.2.2",
23
- "@angular/common": "^14.2.2",
24
- "@angular/core": "^14.2.2",
25
- "@angular/flex-layout": "^14.0.0-beta.40",
26
- "@angular/forms": "^14.2.2",
27
- "@angular/localize": "^14.2.2",
28
- "@angular/material": "^14.2.2",
29
- "@angular/platform-browser": "^14.2.2",
30
- "@angular/platform-browser-dynamic": "^14.2.2",
31
- "@angular/router": "^14.2.2",
32
- "@rxap/authentication": "^14.0.5",
33
- "@rxap/components": "^14.0.2",
34
- "@rxap/config": "^14.1.3",
35
- "@rxap/definition": "^14.0.3",
36
- "@rxap/directives": "^14.0.3",
37
- "@rxap/forms": "^14.0.2",
38
- "@rxap/material-directives": "^14.0.2",
39
- "@rxap/services": "^14.0.5",
40
- "@rxap/utilities": "^14.0.3",
20
+ "@angular-devkit/schematics": "^15.0.3",
21
+ "@angular/animations": "^16.0.2",
22
+ "@angular/cdk": "^16.0.1",
23
+ "@angular/common": "^16.0.2",
24
+ "@angular/core": "^16.0.2",
25
+ "@angular/flex-layout": "^15.0.0-beta.42",
26
+ "@angular/forms": "^16.0.2",
27
+ "@angular/localize": "^16.0.2",
28
+ "@angular/material": "^16.0.1",
29
+ "@angular/platform-browser": "^16.0.2",
30
+ "@angular/platform-browser-dynamic": "^16.0.2",
31
+ "@angular/router": "^16.0.2",
32
+ "@rxap/authentication": "^16.0.0-dev.0",
33
+ "@rxap/components": "^16.0.0-dev.0",
34
+ "@rxap/config": "^16.0.0-dev.0",
35
+ "@rxap/definition": "^16.0.0-dev.0",
36
+ "@rxap/directives": "^16.0.0-dev.0",
37
+ "@rxap/forms": "^16.0.0-dev.0",
38
+ "@rxap/material-directives": "^16.0.0-dev.0",
39
+ "@rxap/services": "^16.0.0-dev.0",
40
+ "@rxap/utilities": "^16.0.0-dev.0",
41
41
  "joi": "^17.6.3",
42
42
  "reflect-metadata": "^0.1.13",
43
43
  "rxjs": "^6.6.0"
@@ -66,14 +66,11 @@
66
66
  "save": "dependencies"
67
67
  },
68
68
  "dependencies": {
69
- "@rxap/schematics-utilities": "^14.0.0",
70
- "tslib": "^2.3.1"
69
+ "@rxap/schematics-utilities": "^16.0.0-dev.0",
70
+ "tslib": "^2.3.1",
71
+ "tsconfig-paths-webpack-plugin": "3.5.2"
71
72
  },
72
- "module": "fesm2015/rxap-layout.mjs",
73
- "es2020": "fesm2020/rxap-layout.mjs",
74
- "esm2020": "esm2020/rxap-layout.mjs",
75
- "fesm2020": "fesm2020/rxap-layout.mjs",
76
- "fesm2015": "fesm2015/rxap-layout.mjs",
73
+ "module": "fesm2022/rxap-layout.mjs",
77
74
  "typings": "index.d.ts",
78
75
  "exports": {
79
76
  "./package.json": {
@@ -81,15 +78,13 @@
81
78
  },
82
79
  ".": {
83
80
  "types": "./index.d.ts",
84
- "esm2020": "./esm2020/rxap-layout.mjs",
85
- "es2020": "./fesm2020/rxap-layout.mjs",
86
- "es2015": "./fesm2015/rxap-layout.mjs",
87
- "node": "./fesm2015/rxap-layout.mjs",
88
- "default": "./fesm2020/rxap-layout.mjs"
81
+ "esm2022": "./esm2022/rxap-layout.mjs",
82
+ "esm": "./esm2022/rxap-layout.mjs",
83
+ "default": "./fesm2022/rxap-layout.mjs"
89
84
  }
90
85
  },
91
86
  "sideEffects": false,
92
87
  "scripts": {
93
88
  "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
94
89
  }
95
- }
90
+ }
@@ -1,29 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { FooterComponent } from './footer.component';
3
- import { MatToolbarModule } from '@angular/material/toolbar';
4
- import { CommonModule } from '@angular/common';
5
- import { PortalModule } from '@angular/cdk/portal';
6
- import * as i0 from "@angular/core";
7
- export class FooterModule {
8
- }
9
- FooterModule.ɵfac = function FooterModule_Factory(t) { return new (t || FooterModule)(); };
10
- FooterModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FooterModule });
11
- FooterModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatToolbarModule,
12
- CommonModule,
13
- PortalModule] });
14
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterModule, [{
15
- type: NgModule,
16
- args: [{
17
- declarations: [FooterComponent],
18
- imports: [
19
- MatToolbarModule,
20
- CommonModule,
21
- PortalModule
22
- ],
23
- exports: [FooterComponent]
24
- }]
25
- }], null, null); })();
26
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FooterModule, { declarations: [FooterComponent], imports: [MatToolbarModule,
27
- CommonModule,
28
- PortalModule], exports: [FooterComponent] }); })();
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2xheW91dC9zcmMvbGliL2Zvb3Rlci9mb290ZXIuY29tcG9uZW50Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQVluRCxNQUFNLE9BQU8sWUFBWTs7d0VBQVosWUFBWTs4REFBWixZQUFZO2tFQU5yQixnQkFBZ0I7UUFDaEIsWUFBWTtRQUNaLFlBQVk7dUZBSUgsWUFBWTtjQVR4QixRQUFRO2VBQUM7Z0JBQ1IsWUFBWSxFQUFFLENBQUUsZUFBZSxDQUFFO2dCQUNqQyxPQUFPLEVBQU87b0JBQ1osZ0JBQWdCO29CQUNoQixZQUFZO29CQUNaLFlBQVk7aUJBQ2I7Z0JBQ0QsT0FBTyxFQUFPLENBQUUsZUFBZSxDQUFFO2FBQ2xDOzt3RkFDWSxZQUFZLG1CQVJQLGVBQWUsYUFFN0IsZ0JBQWdCO1FBQ2hCLFlBQVk7UUFDWixZQUFZLGFBRUUsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb290ZXJDb21wb25lbnQgfSBmcm9tICcuL2Zvb3Rlci5jb21wb25lbnQnO1xuaW1wb3J0IHsgTWF0VG9vbGJhck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3Rvb2xiYXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFBvcnRhbE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogWyBGb290ZXJDb21wb25lbnQgXSxcbiAgaW1wb3J0czogICAgICBbXG4gICAgTWF0VG9vbGJhck1vZHVsZSxcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgUG9ydGFsTW9kdWxlXG4gIF0sXG4gIGV4cG9ydHM6ICAgICAgWyBGb290ZXJDb21wb25lbnQgXVxufSlcbmV4cG9ydCBjbGFzcyBGb290ZXJNb2R1bGUge31cbiJdfQ==
@@ -1,52 +0,0 @@
1
- import { Directive, TemplateRef, ViewContainerRef, NgModule, Inject, } from '@angular/core';
2
- import { FooterService } from '@rxap/services';
3
- import { TemplatePortal } from '@angular/cdk/portal';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@rxap/services";
6
- export class FooterDirective {
7
- constructor(footerService, template, viewContainerRef) {
8
- this.footerService = footerService;
9
- this.template = template;
10
- this.viewContainerRef = viewContainerRef;
11
- }
12
- ngOnInit() {
13
- this._portal = new TemplatePortal(this.template, this.viewContainerRef);
14
- this.footerService.pushPortal(this._portal);
15
- }
16
- ngOnDestroy() {
17
- if (this._portal) {
18
- this.footerService.removePortal(this._portal);
19
- }
20
- }
21
- }
22
- FooterDirective.ɵfac = function FooterDirective_Factory(t) { return new (t || FooterDirective)(i0.ɵɵdirectiveInject(FooterService), i0.ɵɵdirectiveInject(TemplateRef), i0.ɵɵdirectiveInject(ViewContainerRef)); };
23
- FooterDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: FooterDirective, selectors: [["", "rxapFooter", ""]] });
24
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterDirective, [{
25
- type: Directive,
26
- args: [{
27
- selector: '[rxapFooter]',
28
- }]
29
- }], function () { return [{ type: i1.FooterService, decorators: [{
30
- type: Inject,
31
- args: [FooterService]
32
- }] }, { type: i0.TemplateRef, decorators: [{
33
- type: Inject,
34
- args: [TemplateRef]
35
- }] }, { type: i0.ViewContainerRef, decorators: [{
36
- type: Inject,
37
- args: [ViewContainerRef]
38
- }] }]; }, null); })();
39
- export class FooterDirectiveModule {
40
- }
41
- FooterDirectiveModule.ɵfac = function FooterDirectiveModule_Factory(t) { return new (t || FooterDirectiveModule)(); };
42
- FooterDirectiveModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FooterDirectiveModule });
43
- FooterDirectiveModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
44
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterDirectiveModule, [{
45
- type: NgModule,
46
- args: [{
47
- declarations: [FooterDirective],
48
- exports: [FooterDirective],
49
- }]
50
- }], null, null); })();
51
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FooterDirectiveModule, { declarations: [FooterDirective], exports: [FooterDirective] }); })();
52
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvbGF5b3V0L3NyYy9saWIvZm9vdGVyLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUdULFdBQVcsRUFDWCxnQkFBZ0IsRUFDaEIsUUFBUSxFQUNSLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7QUFLckQsTUFBTSxPQUFPLGVBQWU7SUFHMUIsWUFFbUIsYUFBNEIsRUFFNUIsUUFBMkIsRUFFM0IsZ0JBQWtDO1FBSmxDLGtCQUFhLEdBQWIsYUFBYSxDQUFlO1FBRTVCLGFBQVEsR0FBUixRQUFRLENBQW1CO1FBRTNCLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7SUFDbEQsQ0FBQztJQUVHLFFBQVE7UUFDYixJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksY0FBYyxDQUMvQixJQUFJLENBQUMsUUFBUSxFQUNiLElBQUksQ0FBQyxnQkFBZ0IsQ0FDdEIsQ0FBQztRQUNGLElBQUksQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUM5QyxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUU7WUFDaEIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1NBQy9DO0lBQ0gsQ0FBQzs7OEVBeEJVLGVBQWUsdUJBSWhCLGFBQWEsd0JBRWIsV0FBVyx3QkFFWCxnQkFBZ0I7a0VBUmYsZUFBZTt1RkFBZixlQUFlO2NBSDNCLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUsY0FBYzthQUN6Qjs7c0JBS0ksTUFBTTt1QkFBQyxhQUFhOztzQkFFcEIsTUFBTTt1QkFBQyxXQUFXOztzQkFFbEIsTUFBTTt1QkFBQyxnQkFBZ0I7O0FBdUI1QixNQUFNLE9BQU8scUJBQXFCOzswRkFBckIscUJBQXFCO3VFQUFyQixxQkFBcUI7O3VGQUFyQixxQkFBcUI7Y0FKakMsUUFBUTtlQUFDO2dCQUNSLFlBQVksRUFBRSxDQUFDLGVBQWUsQ0FBQztnQkFDL0IsT0FBTyxFQUFFLENBQUMsZUFBZSxDQUFDO2FBQzNCOzt3RkFDWSxxQkFBcUIsbUJBL0JyQixlQUFlLGFBQWYsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIERpcmVjdGl2ZSxcbiAgT25Jbml0LFxuICBPbkRlc3Ryb3ksXG4gIFRlbXBsYXRlUmVmLFxuICBWaWV3Q29udGFpbmVyUmVmLFxuICBOZ01vZHVsZSxcbiAgSW5qZWN0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvb3RlclNlcnZpY2UgfSBmcm9tICdAcnhhcC9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBUZW1wbGF0ZVBvcnRhbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbcnhhcEZvb3Rlcl0nLFxufSlcbmV4cG9ydCBjbGFzcyBGb290ZXJEaXJlY3RpdmUgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIHByaXZhdGUgX3BvcnRhbD86IFRlbXBsYXRlUG9ydGFsPHZvaWQ+O1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBJbmplY3QoRm9vdGVyU2VydmljZSlcbiAgICBwcml2YXRlIHJlYWRvbmx5IGZvb3RlclNlcnZpY2U6IEZvb3RlclNlcnZpY2UsXG4gICAgQEluamVjdChUZW1wbGF0ZVJlZilcbiAgICBwcml2YXRlIHJlYWRvbmx5IHRlbXBsYXRlOiBUZW1wbGF0ZVJlZjx2b2lkPixcbiAgICBASW5qZWN0KFZpZXdDb250YWluZXJSZWYpXG4gICAgcHJpdmF0ZSByZWFkb25seSB2aWV3Q29udGFpbmVyUmVmOiBWaWV3Q29udGFpbmVyUmVmXG4gICkge31cblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5fcG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsPHZvaWQ+KFxuICAgICAgdGhpcy50ZW1wbGF0ZSxcbiAgICAgIHRoaXMudmlld0NvbnRhaW5lclJlZlxuICAgICk7XG4gICAgdGhpcy5mb290ZXJTZXJ2aWNlLnB1c2hQb3J0YWwodGhpcy5fcG9ydGFsKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpIHtcbiAgICBpZiAodGhpcy5fcG9ydGFsKSB7XG4gICAgICB0aGlzLmZvb3RlclNlcnZpY2UucmVtb3ZlUG9ydGFsKHRoaXMuX3BvcnRhbCk7XG4gICAgfVxuICB9XG59XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0Zvb3RlckRpcmVjdGl2ZV0sXG4gIGV4cG9ydHM6IFtGb290ZXJEaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBGb290ZXJEaXJlY3RpdmVNb2R1bGUge31cbiJdfQ==
@@ -1,45 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { AppsButtonComponent } from './apps-button.component';
3
- import { MatButtonModule } from '@angular/material/button';
4
- import { MatIconModule } from '@angular/material/icon';
5
- import { MatGridListModule } from '@angular/material/grid-list';
6
- import { OverlayModule } from '@angular/cdk/overlay';
7
- import { FlexLayoutModule } from '@angular/flex-layout';
8
- import { CommonModule } from '@angular/common';
9
- import { RouterModule } from '@angular/router';
10
- import * as i0 from "@angular/core";
11
- export class AppsButtonComponentModule {
12
- }
13
- AppsButtonComponentModule.ɵfac = function AppsButtonComponentModule_Factory(t) { return new (t || AppsButtonComponentModule)(); };
14
- AppsButtonComponentModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AppsButtonComponentModule });
15
- AppsButtonComponentModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatButtonModule,
16
- MatIconModule,
17
- MatGridListModule,
18
- OverlayModule,
19
- FlexLayoutModule,
20
- CommonModule,
21
- RouterModule] });
22
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AppsButtonComponentModule, [{
23
- type: NgModule,
24
- args: [{
25
- declarations: [AppsButtonComponent],
26
- imports: [
27
- MatButtonModule,
28
- MatIconModule,
29
- MatGridListModule,
30
- OverlayModule,
31
- FlexLayoutModule,
32
- CommonModule,
33
- RouterModule
34
- ],
35
- exports: [AppsButtonComponent]
36
- }]
37
- }], null, null); })();
38
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AppsButtonComponentModule, { declarations: [AppsButtonComponent], imports: [MatButtonModule,
39
- MatIconModule,
40
- MatGridListModule,
41
- OverlayModule,
42
- FlexLayoutModule,
43
- CommonModule,
44
- RouterModule], exports: [AppsButtonComponent] }); })();
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwcy1idXR0b24uY29tcG9uZW50Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbGF5b3V0L3NyYy9saWIvaGVhZGVyL2FwcHMtYnV0dG9uL2FwcHMtYnV0dG9uLmNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDOztBQWdCL0MsTUFBTSxPQUFPLHlCQUF5Qjs7a0dBQXpCLHlCQUF5QjsyRUFBekIseUJBQXlCOytFQVZsQyxlQUFlO1FBQ2YsYUFBYTtRQUNiLGlCQUFpQjtRQUNqQixhQUFhO1FBQ2IsZ0JBQWdCO1FBQ2hCLFlBQVk7UUFDWixZQUFZO3VGQUlILHlCQUF5QjtjQWJyQyxRQUFRO2VBQUM7Z0JBQ1IsWUFBWSxFQUFFLENBQUUsbUJBQW1CLENBQUU7Z0JBQ3JDLE9BQU8sRUFBTztvQkFDWixlQUFlO29CQUNmLGFBQWE7b0JBQ2IsaUJBQWlCO29CQUNqQixhQUFhO29CQUNiLGdCQUFnQjtvQkFDaEIsWUFBWTtvQkFDWixZQUFZO2lCQUNiO2dCQUNELE9BQU8sRUFBTyxDQUFFLG1CQUFtQixDQUFFO2FBQ3RDOzt3RkFDWSx5QkFBeUIsbUJBWnBCLG1CQUFtQixhQUVqQyxlQUFlO1FBQ2YsYUFBYTtRQUNiLGlCQUFpQjtRQUNqQixhQUFhO1FBQ2IsZ0JBQWdCO1FBQ2hCLFlBQVk7UUFDWixZQUFZLGFBRUUsbUJBQW1CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFwcHNCdXR0b25Db21wb25lbnQgfSBmcm9tICcuL2FwcHMtYnV0dG9uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBNYXRCdXR0b25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgTWF0R3JpZExpc3RNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9ncmlkLWxpc3QnO1xuaW1wb3J0IHsgT3ZlcmxheU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcbmltcG9ydCB7IEZsZXhMYXlvdXRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mbGV4LWxheW91dCc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFsgQXBwc0J1dHRvbkNvbXBvbmVudCBdLFxuICBpbXBvcnRzOiAgICAgIFtcbiAgICBNYXRCdXR0b25Nb2R1bGUsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgICBNYXRHcmlkTGlzdE1vZHVsZSxcbiAgICBPdmVybGF5TW9kdWxlLFxuICAgIEZsZXhMYXlvdXRNb2R1bGUsXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFJvdXRlck1vZHVsZVxuICBdLFxuICBleHBvcnRzOiAgICAgIFsgQXBwc0J1dHRvbkNvbXBvbmVudCBdXG59KVxuZXhwb3J0IGNsYXNzIEFwcHNCdXR0b25Db21wb25lbnRNb2R1bGUge31cbiJdfQ==
@@ -1,130 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, Input, Optional, Inject, } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { tap, map } from 'rxjs/operators';
4
- import { MatSidenav } from '@angular/material/sidenav';
5
- import { UserService } from '@rxap/authentication';
6
- import { RXAP_HEADER_COMPONENT } from '../tokens';
7
- import { HeaderService } from '@rxap/services';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "@angular/material/toolbar";
10
- import * as i2 from "./sign-out/sign-out.component";
11
- import * as i3 from "./user-profile-icon/user-profile-icon.component";
12
- import * as i4 from "./navigation-progress-bar/navigation-progress-bar.component";
13
- import * as i5 from "./sidenav-toggle-button/sidenav-toggle-button.component";
14
- import * as i6 from "@angular/flex-layout/flex";
15
- import * as i7 from "@angular/flex-layout/extended";
16
- import * as i8 from "@angular/common";
17
- import * as i9 from "@angular/material/button";
18
- import * as i10 from "@angular/material/icon";
19
- import * as i11 from "@angular/material/menu";
20
- import * as i12 from "./apps-button/apps-button.component";
21
- import * as i13 from "./language-selector/language-selector.component";
22
- import * as i14 from "@rxap/services";
23
- import * as i15 from "@rxap/authentication";
24
- function HeaderComponent_mat_toolbar_row_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
25
- i0.ɵɵelementContainer(0);
26
- } }
27
- function HeaderComponent_mat_toolbar_row_1_Template(rf, ctx) { if (rf & 1) {
28
- i0.ɵɵelementStart(0, "mat-toolbar-row");
29
- i0.ɵɵtemplate(1, HeaderComponent_mat_toolbar_row_1_ng_container_1_Template, 1, 0, "ng-container", 7);
30
- i0.ɵɵelementEnd();
31
- } if (rf & 2) {
32
- const headerComponent_r4 = ctx.$implicit;
33
- i0.ɵɵadvance(1);
34
- i0.ɵɵproperty("ngComponentOutlet", headerComponent_r4);
35
- } }
36
- function HeaderComponent_rxap_sidenav_toggle_button_4_Template(rf, ctx) { if (rf & 1) {
37
- i0.ɵɵelement(0, "rxap-sidenav-toggle-button", 8);
38
- } if (rf & 2) {
39
- const ctx_r1 = i0.ɵɵnextContext();
40
- i0.ɵɵproperty("sidenav", ctx_r1.sidenav);
41
- } }
42
- function HeaderComponent_rxap_user_profile_icon_9_Template(rf, ctx) { if (rf & 1) {
43
- i0.ɵɵelement(0, "rxap-user-profile-icon", 5);
44
- } }
45
- function HeaderComponent_div_11_Template(rf, ctx) { if (rf & 1) {
46
- i0.ɵɵelementStart(0, "div", 5)(1, "button", 9)(2, "mat-icon");
47
- i0.ɵɵtext(3, "settings");
48
- i0.ɵɵelementEnd()()();
49
- } if (rf & 2) {
50
- const ctx_r3 = i0.ɵɵnextContext();
51
- i0.ɵɵadvance(1);
52
- i0.ɵɵproperty("matMenuTriggerFor", ctx_r3.settingsMenuPanel);
53
- } }
54
- const _c0 = function (a0) { return { open: a0 }; };
55
- const _c1 = ["*"];
56
- export class HeaderComponent {
57
- constructor(headerComponentService, userService, headerComponent) {
58
- this.headerComponentService = headerComponentService;
59
- this.userService = userService;
60
- this.headerComponent = headerComponent;
61
- this.components = [];
62
- this.subscriptions = new Subscription();
63
- this.color = 'primary';
64
- this.hasUser$ = this.userService.user$.pipe(map(Boolean));
65
- }
66
- ngOnInit() {
67
- this.updateComponents();
68
- this.subscriptions.add(this.headerComponentService.update$
69
- .pipe(tap(() => this.updateComponents()))
70
- .subscribe());
71
- }
72
- updateComponents() {
73
- this.components = this.headerComponentService.getComponents();
74
- }
75
- ngOnDestroy() {
76
- this.subscriptions.unsubscribe();
77
- }
78
- }
79
- HeaderComponent.ɵfac = function HeaderComponent_Factory(t) { return new (t || HeaderComponent)(i0.ɵɵdirectiveInject(HeaderService), i0.ɵɵdirectiveInject(UserService), i0.ɵɵdirectiveInject(RXAP_HEADER_COMPONENT, 8)); };
80
- HeaderComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HeaderComponent, selectors: [["rxap-header"]], hostAttrs: [1, "rxap-layout-header"], inputs: { sidenav: "sidenav", color: "color", settingsMenuPanel: "settingsMenuPanel" }, ngContentSelectors: _c1, decls: 14, vars: 10, consts: [[1, "mat-elevation-z3", 3, "ngClass", "color"], [4, "ngFor", "ngForOf"], ["fxLayout", "row", "fxLayoutAlign", "space-between center", "fxLayoutGap", "16px", 1, "content"], ["fxFlex", "nogrow", 3, "sidenav", 4, "ngIf"], ["fxFlex", "grow"], ["fxFlex", "nogrow"], ["fxFlex", "nogrow", 4, "ngIf"], [4, "ngComponentOutlet"], ["fxFlex", "nogrow", 3, "sidenav"], ["mat-icon-button", "", 3, "matMenuTriggerFor"]], template: function HeaderComponent_Template(rf, ctx) { if (rf & 1) {
81
- i0.ɵɵprojectionDef();
82
- i0.ɵɵelementStart(0, "mat-toolbar", 0);
83
- i0.ɵɵtemplate(1, HeaderComponent_mat_toolbar_row_1_Template, 2, 1, "mat-toolbar-row", 1);
84
- i0.ɵɵelementStart(2, "mat-toolbar-row")(3, "div", 2);
85
- i0.ɵɵtemplate(4, HeaderComponent_rxap_sidenav_toggle_button_4_Template, 1, 1, "rxap-sidenav-toggle-button", 3);
86
- i0.ɵɵelementStart(5, "div", 4);
87
- i0.ɵɵprojection(6);
88
- i0.ɵɵelementEnd();
89
- i0.ɵɵelement(7, "rxap-language-selector", 5)(8, "rxap-apps-button", 5);
90
- i0.ɵɵtemplate(9, HeaderComponent_rxap_user_profile_icon_9_Template, 1, 0, "rxap-user-profile-icon", 6);
91
- i0.ɵɵpipe(10, "async");
92
- i0.ɵɵtemplate(11, HeaderComponent_div_11_Template, 4, 1, "div", 6);
93
- i0.ɵɵelement(12, "rxap-sign-out", 5);
94
- i0.ɵɵelementEnd()()();
95
- i0.ɵɵelement(13, "rxap-navigation-progress-bar");
96
- } if (rf & 2) {
97
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0, ctx.sidenav == null ? null : ctx.sidenav.opened))("color", ctx.color);
98
- i0.ɵɵadvance(1);
99
- i0.ɵɵproperty("ngForOf", ctx.components);
100
- i0.ɵɵadvance(3);
101
- i0.ɵɵproperty("ngIf", ctx.sidenav);
102
- i0.ɵɵadvance(5);
103
- i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(10, 6, ctx.hasUser$));
104
- i0.ɵɵadvance(2);
105
- i0.ɵɵproperty("ngIf", ctx.settingsMenuPanel);
106
- } }, dependencies: [i1.MatToolbar, i1.MatToolbarRow, i2.SignOutComponent, i3.UserProfileIconComponent, i4.NavigationProgressBarComponent, i5.SidenavToggleButtonComponent, i6.DefaultLayoutDirective, i6.DefaultLayoutGapDirective, i6.DefaultLayoutAlignDirective, i6.DefaultFlexDirective, i7.DefaultClassDirective, i8.NgClass, i8.NgComponentOutlet, i8.NgForOf, i8.NgIf, i9.MatButton, i10.MatIcon, i11.MatMenuTrigger, i12.AppsButtonComponent, i13.LanguageSelectorComponent, i8.AsyncPipe], styles: [".content[_ngcontent-%COMP%]{width:100%;height:64px}"], changeDetection: 0 });
107
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HeaderComponent, [{
108
- type: Component,
109
- args: [{ selector: 'rxap-header', changeDetection: ChangeDetectionStrategy.OnPush, host: {
110
- class: 'rxap-layout-header',
111
- }, template: "<mat-toolbar [ngClass]=\"{ open: sidenav?.opened }\" [color]=\"color\" class=\"mat-elevation-z3\">\n <mat-toolbar-row *ngFor=\"let headerComponent of components\">\n <ng-container *ngComponentOutlet=\"headerComponent\"></ng-container>\n </mat-toolbar-row>\n <mat-toolbar-row>\n <div\n fxLayout=\"row\"\n fxLayoutAlign=\"space-between center\"\n fxLayoutGap=\"16px\"\n class=\"content\"\n >\n <rxap-sidenav-toggle-button *ngIf=\"sidenav\" fxFlex=\"nogrow\" [sidenav]=\"sidenav\"></rxap-sidenav-toggle-button>\n <div fxFlex=\"grow\">\n <ng-content></ng-content>\n </div>\n <rxap-language-selector fxFlex=\"nogrow\"></rxap-language-selector>\n <rxap-apps-button fxFlex=\"nogrow\"></rxap-apps-button>\n <rxap-user-profile-icon *ngIf=\"hasUser$ | async\" fxFlex=\"nogrow\"></rxap-user-profile-icon>\n <div fxFlex=\"nogrow\" *ngIf=\"settingsMenuPanel\">\n <button mat-icon-button [matMenuTriggerFor]=\"settingsMenuPanel\">\n <mat-icon>settings</mat-icon>\n </button>\n </div>\n <rxap-sign-out fxFlex=\"nogrow\"></rxap-sign-out>\n </div>\n </mat-toolbar-row>\n</mat-toolbar>\n<rxap-navigation-progress-bar></rxap-navigation-progress-bar>\n", styles: [".content{width:100%;height:64px}\n"] }]
112
- }], function () { return [{ type: i14.HeaderService, decorators: [{
113
- type: Inject,
114
- args: [HeaderService]
115
- }] }, { type: i15.UserService, decorators: [{
116
- type: Inject,
117
- args: [UserService]
118
- }] }, { type: undefined, decorators: [{
119
- type: Optional
120
- }, {
121
- type: Inject,
122
- args: [RXAP_HEADER_COMPONENT]
123
- }] }]; }, { sidenav: [{
124
- type: Input
125
- }], color: [{
126
- type: Input
127
- }], settingsMenuPanel: [{
128
- type: Input
129
- }] }); })();
130
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbGF5b3V0L3NyYy9saWIvaGVhZGVyL2hlYWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2xheW91dC9zcmMvbGliL2hlYWRlci9oZWFkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFFVCx1QkFBdUIsRUFFdkIsS0FBSyxFQUNMLFFBQVEsRUFDUixNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLFlBQVksRUFBYyxNQUFNLE1BQU0sQ0FBQztBQUNoRCxPQUFPLEVBQUUsR0FBRyxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzFDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDbkQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sV0FBVyxDQUFDO0FBQ2xELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0lDYjNDLHdCQUFrRTs7O0lBRHBFLHVDQUE0RDtJQUMxRCxvR0FBa0U7SUFDcEUsaUJBQWtCOzs7SUFERCxlQUFrQztJQUFsQyxzREFBa0M7OztJQVMvQyxnREFBNkc7OztJQUFqRCx3Q0FBbUI7OztJQU0vRSw0Q0FBMEY7OztJQUMxRiw4QkFBK0MsZ0JBQUEsZUFBQTtJQUVqQyx3QkFBUTtJQUFBLGlCQUFXLEVBQUEsRUFBQTs7O0lBRFAsZUFBdUM7SUFBdkMsNERBQXVDOzs7O0FEU3ZFLE1BQU0sT0FBTyxlQUFlO0lBZ0IxQixZQUVrQixzQkFBcUMsRUFFcEMsV0FBNkIsRUFDSSxlQUFvQjtRQUh0RCwyQkFBc0IsR0FBdEIsc0JBQXNCLENBQWU7UUFFcEMsZ0JBQVcsR0FBWCxXQUFXLENBQWtCO1FBQ0ksb0JBQWUsR0FBZixlQUFlLENBQUs7UUFqQmpFLGVBQVUsR0FBNEIsRUFBRSxDQUFDO1FBRXpDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUtuQyxVQUFLLEdBQWlCLFNBQVMsQ0FBQztRQVlyQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztJQUM1RCxDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1FBQ3hCLElBQUksQ0FBQyxhQUFhLENBQUMsR0FBRyxDQUNwQixJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTzthQUNoQyxJQUFJLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDLENBQUM7YUFDeEMsU0FBUyxFQUFFLENBQ2YsQ0FBQztJQUNKLENBQUM7SUFFTSxnQkFBZ0I7UUFDckIsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDaEUsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUNuQyxDQUFDOzs4RUF6Q1UsZUFBZSx1QkFpQmhCLGFBQWEsd0JBRWIsV0FBVyx3QkFFQyxxQkFBcUI7a0VBckJoQyxlQUFlOztRQzVCNUIsc0NBQTRGO1FBQzFGLHdGQUVrQjtRQUNsQix1Q0FBaUIsYUFBQTtRQU9iLDhHQUE2RztRQUM3Ryw4QkFBbUI7UUFDakIsa0JBQXlCO1FBQzNCLGlCQUFNO1FBQ04sNENBQWlFLDBCQUFBO1FBRWpFLHNHQUEwRjs7UUFDMUYsa0VBSU07UUFDTixvQ0FBK0M7UUFDakQsaUJBQU0sRUFBQSxFQUFBO1FBR1YsZ0RBQTZEOztRQTNCaEQscUdBQXFDLG9CQUFBO1FBQ0gsZUFBYTtRQUFiLHdDQUFhO1FBVXpCLGVBQWE7UUFBYixrQ0FBYTtRQU1qQixlQUFzQjtRQUF0QiwwREFBc0I7UUFDekIsZUFBdUI7UUFBdkIsNENBQXVCOzt1RkRVdEMsZUFBZTtjQVQzQixTQUFTOzJCQUNFLGFBQWEsbUJBR04sdUJBQXVCLENBQUMsTUFBTSxRQUN6QztvQkFDSixLQUFLLEVBQUUsb0JBQW9CO2lCQUM1Qjs7c0JBbUJFLE1BQU07dUJBQUMsYUFBYTs7c0JBRXBCLE1BQU07dUJBQUMsV0FBVzs7c0JBRWxCLFFBQVE7O3NCQUFJLE1BQU07dUJBQUMscUJBQXFCO3dCQW5CcEMsT0FBTztrQkFEYixLQUFLO1lBVUMsS0FBSztrQkFEWCxLQUFLO1lBSUMsaUJBQWlCO2tCQUR2QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ29tcG9uZW50LFxuICBPbkluaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBPbkRlc3Ryb3ksXG4gIElucHV0LFxuICBPcHRpb25hbCxcbiAgSW5qZWN0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbnN0cnVjdG9yIH0gZnJvbSAnQHJ4YXAvdXRpbGl0aWVzJztcbmltcG9ydCB7IFN1YnNjcmlwdGlvbiwgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgdGFwLCBtYXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQgeyBNYXRTaWRlbmF2IH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc2lkZW5hdic7XG5pbXBvcnQgeyBVc2VyU2VydmljZSB9IGZyb20gJ0ByeGFwL2F1dGhlbnRpY2F0aW9uJztcbmltcG9ydCB7IFJYQVBfSEVBREVSX0NPTVBPTkVOVCB9IGZyb20gJy4uL3Rva2Vucyc7XG5pbXBvcnQgeyBIZWFkZXJTZXJ2aWNlIH0gZnJvbSAnQHJ4YXAvc2VydmljZXMnO1xuaW1wb3J0IHsgTWF0TWVudVBhbmVsIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvbWVudSc7XG5pbXBvcnQgeyBUaGVtZVBhbGV0dGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAncnhhcC1oZWFkZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vaGVhZGVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vaGVhZGVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdyeGFwLWxheW91dC1oZWFkZXInLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBIZWFkZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBzaWRlbmF2PzogTWF0U2lkZW5hdjtcblxuICBwdWJsaWMgY29tcG9uZW50czogQXJyYXk8Q29uc3RydWN0b3I8YW55Pj4gPSBbXTtcblxuICBwdWJsaWMgc3Vic2NyaXB0aW9ucyA9IG5ldyBTdWJzY3JpcHRpb24oKTtcblxuICBwdWJsaWMgaGFzVXNlciQ6IE9ic2VydmFibGU8Ym9vbGVhbj47XG5cbiAgQElucHV0KClcbiAgcHVibGljIGNvbG9yOiBUaGVtZVBhbGV0dGUgPSAncHJpbWFyeSc7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHNldHRpbmdzTWVudVBhbmVsPzogTWF0TWVudVBhbmVsO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBJbmplY3QoSGVhZGVyU2VydmljZSlcbiAgICBwdWJsaWMgcmVhZG9ubHkgaGVhZGVyQ29tcG9uZW50U2VydmljZTogSGVhZGVyU2VydmljZSxcbiAgICBASW5qZWN0KFVzZXJTZXJ2aWNlKVxuICAgIHByaXZhdGUgcmVhZG9ubHkgdXNlclNlcnZpY2U6IFVzZXJTZXJ2aWNlPGFueT4sXG4gICAgQE9wdGlvbmFsKCkgQEluamVjdChSWEFQX0hFQURFUl9DT01QT05FTlQpIHB1YmxpYyBoZWFkZXJDb21wb25lbnQ6IGFueVxuICApIHtcbiAgICB0aGlzLmhhc1VzZXIkID0gdGhpcy51c2VyU2VydmljZS51c2VyJC5waXBlKG1hcChCb29sZWFuKSk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgdGhpcy51cGRhdGVDb21wb25lbnRzKCk7XG4gICAgdGhpcy5zdWJzY3JpcHRpb25zLmFkZChcbiAgICAgIHRoaXMuaGVhZGVyQ29tcG9uZW50U2VydmljZS51cGRhdGUkXG4gICAgICAgIC5waXBlKHRhcCgoKSA9PiB0aGlzLnVwZGF0ZUNvbXBvbmVudHMoKSkpXG4gICAgICAgIC5zdWJzY3JpYmUoKVxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgdXBkYXRlQ29tcG9uZW50cygpOiB2b2lkIHtcbiAgICB0aGlzLmNvbXBvbmVudHMgPSB0aGlzLmhlYWRlckNvbXBvbmVudFNlcnZpY2UuZ2V0Q29tcG9uZW50cygpO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuc3Vic2NyaXB0aW9ucy51bnN1YnNjcmliZSgpO1xuICB9XG59XG4iLCI8bWF0LXRvb2xiYXIgW25nQ2xhc3NdPVwieyBvcGVuOiBzaWRlbmF2Py5vcGVuZWQgfVwiIFtjb2xvcl09XCJjb2xvclwiIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16M1wiPlxuICA8bWF0LXRvb2xiYXItcm93ICpuZ0Zvcj1cImxldCBoZWFkZXJDb21wb25lbnQgb2YgY29tcG9uZW50c1wiPlxuICAgIDxuZy1jb250YWluZXIgKm5nQ29tcG9uZW50T3V0bGV0PVwiaGVhZGVyQ29tcG9uZW50XCI+PC9uZy1jb250YWluZXI+XG4gIDwvbWF0LXRvb2xiYXItcm93PlxuICA8bWF0LXRvb2xiYXItcm93PlxuICAgIDxkaXZcbiAgICAgIGZ4TGF5b3V0PVwicm93XCJcbiAgICAgIGZ4TGF5b3V0QWxpZ249XCJzcGFjZS1iZXR3ZWVuIGNlbnRlclwiXG4gICAgICBmeExheW91dEdhcD1cIjE2cHhcIlxuICAgICAgY2xhc3M9XCJjb250ZW50XCJcbiAgICA+XG4gICAgICA8cnhhcC1zaWRlbmF2LXRvZ2dsZS1idXR0b24gKm5nSWY9XCJzaWRlbmF2XCIgZnhGbGV4PVwibm9ncm93XCIgW3NpZGVuYXZdPVwic2lkZW5hdlwiPjwvcnhhcC1zaWRlbmF2LXRvZ2dsZS1idXR0b24+XG4gICAgICA8ZGl2IGZ4RmxleD1cImdyb3dcIj5cbiAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICAgICAgPC9kaXY+XG4gICAgICA8cnhhcC1sYW5ndWFnZS1zZWxlY3RvciBmeEZsZXg9XCJub2dyb3dcIj48L3J4YXAtbGFuZ3VhZ2Utc2VsZWN0b3I+XG4gICAgICA8cnhhcC1hcHBzLWJ1dHRvbiBmeEZsZXg9XCJub2dyb3dcIj48L3J4YXAtYXBwcy1idXR0b24+XG4gICAgICA8cnhhcC11c2VyLXByb2ZpbGUtaWNvbiAqbmdJZj1cImhhc1VzZXIkIHwgYXN5bmNcIiBmeEZsZXg9XCJub2dyb3dcIj48L3J4YXAtdXNlci1wcm9maWxlLWljb24+XG4gICAgICA8ZGl2IGZ4RmxleD1cIm5vZ3Jvd1wiICpuZ0lmPVwic2V0dGluZ3NNZW51UGFuZWxcIj5cbiAgICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gW21hdE1lbnVUcmlnZ2VyRm9yXT1cInNldHRpbmdzTWVudVBhbmVsXCI+XG4gICAgICAgICAgPG1hdC1pY29uPnNldHRpbmdzPC9tYXQtaWNvbj5cbiAgICAgICAgPC9idXR0b24+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxyeGFwLXNpZ24tb3V0IGZ4RmxleD1cIm5vZ3Jvd1wiPjwvcnhhcC1zaWduLW91dD5cbiAgICA8L2Rpdj5cbiAgPC9tYXQtdG9vbGJhci1yb3c+XG48L21hdC10b29sYmFyPlxuPHJ4YXAtbmF2aWdhdGlvbi1wcm9ncmVzcy1iYXI+PC9yeGFwLW5hdmlnYXRpb24tcHJvZ3Jlc3MtYmFyPlxuIl19
@@ -1,69 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { HeaderComponent } from './header.component';
3
- import { MatToolbarModule } from '@angular/material/toolbar';
4
- import { SignOutComponentModule } from './sign-out/sign-out.component.module';
5
- import { UserProfileIconComponentModule } from './user-profile-icon/user-profile-icon.component.module';
6
- import { NavigationProgressBarComponentModule } from './navigation-progress-bar/navigation-progress-bar.component.module';
7
- import { SidenavToggleButtonComponentModule } from './sidenav-toggle-button/sidenav-toggle-button.component.module';
8
- import { ResetButtonComponentModule } from './reset-button/reset-button.component.module';
9
- import { FlexLayoutModule } from '@angular/flex-layout';
10
- import { CommonModule } from '@angular/common';
11
- import { MatButtonModule } from '@angular/material/button';
12
- import { MatIconModule } from '@angular/material/icon';
13
- import { MatMenuModule } from '@angular/material/menu';
14
- import { AppsButtonComponentModule } from './apps-button/apps-button.component.module';
15
- import { LanguageSelectorComponentModule } from './language-selector/language-selector.component.module';
16
- import * as i0 from "@angular/core";
17
- export class HeaderModule {
18
- }
19
- HeaderModule.ɵfac = function HeaderModule_Factory(t) { return new (t || HeaderModule)(); };
20
- HeaderModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: HeaderModule });
21
- HeaderModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [MatToolbarModule,
22
- SignOutComponentModule,
23
- UserProfileIconComponentModule,
24
- NavigationProgressBarComponentModule,
25
- SidenavToggleButtonComponentModule,
26
- ResetButtonComponentModule,
27
- FlexLayoutModule,
28
- CommonModule,
29
- MatButtonModule,
30
- MatIconModule,
31
- MatMenuModule,
32
- AppsButtonComponentModule,
33
- LanguageSelectorComponentModule] });
34
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HeaderModule, [{
35
- type: NgModule,
36
- args: [{
37
- declarations: [HeaderComponent],
38
- imports: [
39
- MatToolbarModule,
40
- SignOutComponentModule,
41
- UserProfileIconComponentModule,
42
- NavigationProgressBarComponentModule,
43
- SidenavToggleButtonComponentModule,
44
- ResetButtonComponentModule,
45
- FlexLayoutModule,
46
- CommonModule,
47
- MatButtonModule,
48
- MatIconModule,
49
- MatMenuModule,
50
- AppsButtonComponentModule,
51
- LanguageSelectorComponentModule
52
- ],
53
- exports: [HeaderComponent]
54
- }]
55
- }], null, null); })();
56
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(HeaderModule, { declarations: [HeaderComponent], imports: [MatToolbarModule,
57
- SignOutComponentModule,
58
- UserProfileIconComponentModule,
59
- NavigationProgressBarComponentModule,
60
- SidenavToggleButtonComponentModule,
61
- ResetButtonComponentModule,
62
- FlexLayoutModule,
63
- CommonModule,
64
- MatButtonModule,
65
- MatIconModule,
66
- MatMenuModule,
67
- AppsButtonComponentModule,
68
- LanguageSelectorComponentModule], exports: [HeaderComponent] }); })();
69
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2xheW91dC9zcmMvbGliL2hlYWRlci9oZWFkZXIuY29tcG9uZW50Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUM5RSxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSx3REFBd0QsQ0FBQztBQUN4RyxPQUFPLEVBQUUsb0NBQW9DLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUMxSCxPQUFPLEVBQUUsa0NBQWtDLEVBQUUsTUFBTSxnRUFBZ0UsQ0FBQztBQUNwSCxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQztBQUMxRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdkQsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDdkYsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sd0RBQXdELENBQUM7O0FBc0J6RyxNQUFNLE9BQU8sWUFBWTs7d0VBQVosWUFBWTs4REFBWixZQUFZO2tFQWhCckIsZ0JBQWdCO1FBQ2hCLHNCQUFzQjtRQUN0Qiw4QkFBOEI7UUFDOUIsb0NBQW9DO1FBQ3BDLGtDQUFrQztRQUNsQywwQkFBMEI7UUFDMUIsZ0JBQWdCO1FBQ2hCLFlBQVk7UUFDWixlQUFlO1FBQ2YsYUFBYTtRQUNiLGFBQWE7UUFDYix5QkFBeUI7UUFDekIsK0JBQStCO3VGQUl0QixZQUFZO2NBbkJ4QixRQUFRO2VBQUM7Z0JBQ1IsWUFBWSxFQUFFLENBQUUsZUFBZSxDQUFFO2dCQUNqQyxPQUFPLEVBQUU7b0JBQ1AsZ0JBQWdCO29CQUNoQixzQkFBc0I7b0JBQ3RCLDhCQUE4QjtvQkFDOUIsb0NBQW9DO29CQUNwQyxrQ0FBa0M7b0JBQ2xDLDBCQUEwQjtvQkFDMUIsZ0JBQWdCO29CQUNoQixZQUFZO29CQUNaLGVBQWU7b0JBQ2YsYUFBYTtvQkFDYixhQUFhO29CQUNiLHlCQUF5QjtvQkFDekIsK0JBQStCO2lCQUNoQztnQkFDRCxPQUFPLEVBQU8sQ0FBRSxlQUFlLENBQUU7YUFDbEM7O3dGQUNZLFlBQVksbUJBbEJQLGVBQWUsYUFFN0IsZ0JBQWdCO1FBQ2hCLHNCQUFzQjtRQUN0Qiw4QkFBOEI7UUFDOUIsb0NBQW9DO1FBQ3BDLGtDQUFrQztRQUNsQywwQkFBMEI7UUFDMUIsZ0JBQWdCO1FBQ2hCLFlBQVk7UUFDWixlQUFlO1FBQ2YsYUFBYTtRQUNiLGFBQWE7UUFDYix5QkFBeUI7UUFDekIsK0JBQStCLGFBRWpCLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSGVhZGVyQ29tcG9uZW50IH0gZnJvbSAnLi9oZWFkZXIuY29tcG9uZW50JztcbmltcG9ydCB7IE1hdFRvb2xiYXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sYmFyJztcbmltcG9ydCB7IFNpZ25PdXRDb21wb25lbnRNb2R1bGUgfSBmcm9tICcuL3NpZ24tb3V0L3NpZ24tb3V0LmNvbXBvbmVudC5tb2R1bGUnO1xuaW1wb3J0IHsgVXNlclByb2ZpbGVJY29uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi91c2VyLXByb2ZpbGUtaWNvbi91c2VyLXByb2ZpbGUtaWNvbi5jb21wb25lbnQubW9kdWxlJztcbmltcG9ydCB7IE5hdmlnYXRpb25Qcm9ncmVzc0JhckNvbXBvbmVudE1vZHVsZSB9IGZyb20gJy4vbmF2aWdhdGlvbi1wcm9ncmVzcy1iYXIvbmF2aWdhdGlvbi1wcm9ncmVzcy1iYXIuY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBTaWRlbmF2VG9nZ2xlQnV0dG9uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi9zaWRlbmF2LXRvZ2dsZS1idXR0b24vc2lkZW5hdi10b2dnbGUtYnV0dG9uLmNvbXBvbmVudC5tb2R1bGUnO1xuaW1wb3J0IHsgUmVzZXRCdXR0b25Db21wb25lbnRNb2R1bGUgfSBmcm9tICcuL3Jlc2V0LWJ1dHRvbi9yZXNldC1idXR0b24uY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBGbGV4TGF5b3V0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBNYXRNZW51TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvbWVudSc7XG5pbXBvcnQgeyBBcHBzQnV0dG9uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi9hcHBzLWJ1dHRvbi9hcHBzLWJ1dHRvbi5jb21wb25lbnQubW9kdWxlJztcbmltcG9ydCB7IExhbmd1YWdlU2VsZWN0b3JDb21wb25lbnRNb2R1bGUgfSBmcm9tICcuL2xhbmd1YWdlLXNlbGVjdG9yL2xhbmd1YWdlLXNlbGVjdG9yLmNvbXBvbmVudC5tb2R1bGUnO1xuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogWyBIZWFkZXJDb21wb25lbnQgXSxcbiAgaW1wb3J0czogW1xuICAgIE1hdFRvb2xiYXJNb2R1bGUsXG4gICAgU2lnbk91dENvbXBvbmVudE1vZHVsZSxcbiAgICBVc2VyUHJvZmlsZUljb25Db21wb25lbnRNb2R1bGUsXG4gICAgTmF2aWdhdGlvblByb2dyZXNzQmFyQ29tcG9uZW50TW9kdWxlLFxuICAgIFNpZGVuYXZUb2dnbGVCdXR0b25Db21wb25lbnRNb2R1bGUsXG4gICAgUmVzZXRCdXR0b25Db21wb25lbnRNb2R1bGUsXG4gICAgRmxleExheW91dE1vZHVsZSxcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTWF0QnV0dG9uTW9kdWxlLFxuICAgIE1hdEljb25Nb2R1bGUsXG4gICAgTWF0TWVudU1vZHVsZSxcbiAgICBBcHBzQnV0dG9uQ29tcG9uZW50TW9kdWxlLFxuICAgIExhbmd1YWdlU2VsZWN0b3JDb21wb25lbnRNb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogICAgICBbIEhlYWRlckNvbXBvbmVudCBdXG59KVxuZXhwb3J0IGNsYXNzIEhlYWRlck1vZHVsZSB7fVxuIl19