@rxap/layout 16.0.0-dev.9 → 16.0.1-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 (44) hide show
  1. package/CHANGELOG.md +261 -0
  2. package/LICENSE +621 -0
  3. package/LICENSE.md +621 -0
  4. package/README.md +1 -1
  5. package/esm2022/index.mjs +1 -4
  6. package/esm2022/lib/app-url.service.mjs +38 -25
  7. package/esm2022/lib/footer/footer.component.mjs +3 -3
  8. package/esm2022/lib/header/apps-button/apps-button.component.mjs +3 -5
  9. package/esm2022/lib/header/header.component.mjs +30 -47
  10. package/esm2022/lib/header/language-selector/language-selector.component.mjs +6 -6
  11. package/esm2022/lib/header/reset-button/reset-button.component.mjs +3 -3
  12. package/esm2022/lib/header/settings-button/settings-button.component.mjs +87 -0
  13. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +15 -18
  14. package/esm2022/lib/header/sign-out/sign-out.component.mjs +3 -3
  15. package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +24 -21
  16. package/esm2022/lib/layout/layout.component.mjs +50 -29
  17. package/esm2022/lib/layout/layout.component.service.mjs +53 -19
  18. package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +3 -8
  19. package/esm2022/lib/navigation/navigation.component.mjs +6 -10
  20. package/esm2022/lib/sidenav/sidenav.component.mjs +6 -12
  21. package/esm2022/lib/sidenav/version/version.component.mjs +6 -14
  22. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +3 -3
  23. package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +6 -8
  24. package/fesm2022/rxap-layout.mjs +364 -343
  25. package/fesm2022/rxap-layout.mjs.map +1 -1
  26. package/index.d.ts +0 -3
  27. package/lib/app-url.service.d.ts +7 -4
  28. package/lib/header/header.component.d.ts +10 -17
  29. package/lib/header/language-selector/language-selector.component.d.ts +1 -1
  30. package/lib/header/settings-button/settings-button.component.d.ts +39 -0
  31. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.d.ts +6 -3
  32. package/lib/header/user-profile-icon/user-profile-icon.component.d.ts +10 -10
  33. package/lib/layout/layout.component.d.ts +17 -5
  34. package/lib/layout/layout.component.service.d.ts +15 -9
  35. package/lib/navigation/navigation-item/navigation-item.component.d.ts +1 -1
  36. package/lib/navigation/navigation.component.d.ts +1 -1
  37. package/package.json +83 -47
  38. package/theme.css +1 -1
  39. package/esm2022/lib/i18n-check.guard.mjs +0 -34
  40. package/esm2022/lib/i18n.service.mjs +0 -36
  41. package/esm2022/lib/language-selector.service.mjs +0 -34
  42. package/lib/i18n-check.guard.d.ts +0 -14
  43. package/lib/i18n.service.d.ts +0 -12
  44. package/lib/language-selector.service.d.ts +0 -15
@@ -1,14 +0,0 @@
1
- import { ConfigService } from '@rxap/config';
2
- import { I18nService } from './i18n.service';
3
- import { RxapUserProfileService } from '@rxap/authentication';
4
- import * as i0 from "@angular/core";
5
- export declare class I18nCheckGuard {
6
- private readonly config;
7
- private readonly localId;
8
- private readonly i18nService;
9
- private readonly userProfileService;
10
- constructor(config: ConfigService, localId: string, i18nService: I18nService, userProfileService: RxapUserProfileService);
11
- canActivate(): Promise<boolean>;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<I18nCheckGuard, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<I18nCheckGuard>;
14
- }
@@ -1,12 +0,0 @@
1
- import { RxapUserProfileService } from '@rxap/authentication';
2
- import * as i0 from "@angular/core";
3
- export declare class I18nService {
4
- private readonly localId;
5
- private readonly userProfileService;
6
- readonly currentLanguage: string;
7
- constructor(localId: string, userProfileService: RxapUserProfileService);
8
- setLanguage(language: string): Promise<void>;
9
- redirect(next: string, current?: string): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<I18nService, never>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<I18nService>;
12
- }
@@ -1,15 +0,0 @@
1
- import { ConfigService } from '@rxap/config';
2
- import { I18nService } from './i18n.service';
3
- import * as i0 from "@angular/core";
4
- export declare class LanguageSelectorService {
5
- private readonly config;
6
- private readonly localId;
7
- private readonly i18nService;
8
- readonly languages: any;
9
- readonly defaultLanguage: string;
10
- selectedLanguage: string;
11
- constructor(config: ConfigService, localId: string, i18nService: I18nService);
12
- setLanguage(language: string): Promise<void>;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSelectorService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<LanguageSelectorService>;
15
- }