@open-rlb/ng-app 3.1.84 → 3.1.86

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.
@@ -1,24 +1,22 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Provider, EnvironmentProviders, InjectionToken, EventEmitter, TransferState, Type, OnInit, PipeTransform, OnDestroy } from '@angular/core';
2
+ import { Provider, EnvironmentProviders, InjectionToken, TransferState, Type, OnInit, PipeTransform, OnDestroy } from '@angular/core';
3
3
  import { OpenIdConfiguration, OidcSecurityService, LoginResponse } from 'angular-auth-oidc-client';
4
- import * as i26 from '@angular/router';
5
- import { Routes, ActivatedRoute, Router, CanActivateFn, CanDeactivateFn } from '@angular/router';
4
+ import * as i5 from '@angular/router';
5
+ import { Routes, CanActivateFn, Router, CanDeactivateFn } from '@angular/router';
6
+ import * as _ngrx_signals from '@ngrx/signals';
6
7
  import * as rxjs from 'rxjs';
7
8
  import { Observable, OperatorFunction } from 'rxjs';
9
+ import * as _open_rlb_ng_app from '@open-rlb/ng-app';
8
10
  import * as _open_rlb_ng_bootstrap from '@open-rlb/ng-bootstrap';
9
- import { SidebarNavigableItem, BreadcrumbItem, UniqueIdService, ModalService, ToastService, ModalType, IModal, ModalData, VisibilityEventBase, NavigableItem, OffcanvasComponent, VisibilityEvent, IToast, ToastData } from '@open-rlb/ng-bootstrap';
10
- import * as i24 from '@ngx-translate/core';
11
- import { TranslateService, TranslateLoader } from '@ngx-translate/core';
11
+ import { BreadcrumbItem, SidebarNavigableItem, ModalService, ToastService, ModalType, IModal, ModalData, OffcanvasComponent, VisibilityEvent, IToast, ToastData } from '@open-rlb/ng-bootstrap';
12
12
  import * as _ngrx_store from '@ngrx/store';
13
13
  import { Store } from '@ngrx/store';
14
- import { SwUpdate } from '@angular/service-worker';
15
- import * as _open_rlb_ng_app from '@open-rlb/ng-app';
16
14
  import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
17
- import { BreakpointObserver } from '@angular/cdk/layout';
18
- import * as i23 from '@angular/forms';
19
- import { FormGroup } from '@angular/forms';
20
- import * as i22 from '@angular/common';
21
- import { Location } from '@angular/common';
15
+ import * as i3 from '@ngx-translate/core';
16
+ import { TranslateLoader } from '@ngx-translate/core';
17
+ import * as i1 from '@angular/common';
18
+ import * as i2 from '@angular/forms';
19
+ import { FormGroup, FormControl } from '@angular/forms';
22
20
 
23
21
  declare abstract class AbstractSupportService {
24
22
  abstract sendSupport(data: any): void;
@@ -58,6 +56,91 @@ interface AppDescriber<T = any> {
58
56
  providers?: (Provider | EnvironmentProviders)[];
59
57
  }
60
58
 
59
+ declare class AppsService {
60
+ private readonly store;
61
+ private readonly activatedRoute;
62
+ private readonly router;
63
+ private readonly loggerService;
64
+ private readonly confAuth;
65
+ private readonly confAcl;
66
+ private readonly aclStore;
67
+ private readonly injector;
68
+ private logger;
69
+ constructor();
70
+ readonly currentDomain: string;
71
+ readonly apps: i0.Signal<any>;
72
+ readonly currentApp: i0.Signal<AppInfo<any> | null>;
73
+ readonly currentAppId: i0.Signal<string | undefined>;
74
+ readonly currentAppAclInfo: i0.Signal<{
75
+ busId: any;
76
+ resId: any;
77
+ } | null>;
78
+ isAppSelected(appId: string): boolean;
79
+ checkPermissionInCurrentApp(action?: string): boolean;
80
+ selectApp(app?: AppInfo, viewMode?: 'app' | 'settings', url?: string): void;
81
+ private initAuthProviders;
82
+ private initRouterListener;
83
+ private resolveRouteAndApps;
84
+ private handleResolvedApps;
85
+ private findDeepestChild;
86
+ private getStoredAppId;
87
+ private getAppViewMode;
88
+ private isDefaultRoute;
89
+ private getConfigPath;
90
+ private getActualPath;
91
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppsService, never>;
92
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppsService>;
93
+ }
94
+
95
+ declare class AppBreadcrumbService {
96
+ private readonly router;
97
+ private readonly route;
98
+ private readonly loggerService;
99
+ private readonly languageService;
100
+ private readonly idService;
101
+ private readonly _breadcrumbs;
102
+ readonly breadcrumbs: i0.Signal<BreadcrumbItem[]>;
103
+ /**
104
+ * @deprecated Use `breadcrumbs` (signal-based) instead.
105
+ */
106
+ readonly breadcrumbs$: rxjs.Observable<BreadcrumbItem[]>;
107
+ private logger;
108
+ constructor();
109
+ private updateBreadcrumbs;
110
+ private buildBreadcrumbFromRoot;
111
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBreadcrumbService, never>;
112
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppBreadcrumbService>;
113
+ }
114
+
115
+ type LogLevel = 'off' | 'error' | 'warn' | 'info' | 'debug' | 'log';
116
+ type LoggerContext = {
117
+ error: (...args: any[]) => void;
118
+ warn: (...args: any[]) => void;
119
+ info: (...args: any[]) => void;
120
+ debug: (...args: any[]) => void;
121
+ log: (...args: any[]) => void;
122
+ };
123
+ declare class AppLoggerService {
124
+ private currentLevel;
125
+ private timestamps;
126
+ constructor(environment?: EnvironmentConfiguration);
127
+ setLogLevel(level: LogLevel): void;
128
+ getLogLevel(): LogLevel;
129
+ enableTimestamps(enabled: boolean): void;
130
+ /**
131
+ * returns logger with context / class name
132
+ */
133
+ for(context: string): LoggerContext;
134
+ logError(contextOrMessage: any, ...args: any[]): void;
135
+ logWarning(contextOrMessage: any, ...args: any[]): void;
136
+ logDebug(contextOrMessage: any, ...args: any[]): void;
137
+ logInfo(contextOrMessage: any, ...args: any[]): void;
138
+ log(contextOrMessage: any, ...args: any[]): void;
139
+ private print;
140
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppLoggerService, never>;
141
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppLoggerService>;
142
+ }
143
+
61
144
  declare const appContextFeatureKey = "app";
62
145
  type AppTheme = 'light' | 'dark';
63
146
  type PageTemplate = 'app' | 'basic' | 'cms' | 'content';
@@ -356,109 +439,22 @@ declare const SidebarActions: {
356
439
  } & _ngrx_store.Action<"[Sidebar/API] SetSearchText">>;
357
440
  };
358
441
 
359
- interface BaseState extends AclState, AuthState, SidebarState, NavbarState, AppState {
360
- }
361
-
362
- type LogLevel = 'off' | 'error' | 'warn' | 'info' | 'debug' | 'log';
363
- type LoggerContext = {
364
- error: (...args: any[]) => void;
365
- warn: (...args: any[]) => void;
366
- info: (...args: any[]) => void;
367
- debug: (...args: any[]) => void;
368
- log: (...args: any[]) => void;
369
- };
370
- declare class AppLoggerService {
371
- private currentLevel;
372
- private timestamps;
373
- constructor(environment?: EnvironmentConfiguration);
374
- setLogLevel(level: LogLevel): void;
375
- getLogLevel(): LogLevel;
376
- enableTimestamps(enabled: boolean): void;
377
- /**
378
- * returns logger with context / class name
379
- */
380
- for(context: string): LoggerContext;
381
- logError(contextOrMessage: any, ...args: any[]): void;
382
- logWarning(contextOrMessage: any, ...args: any[]): void;
383
- logDebug(contextOrMessage: any, ...args: any[]): void;
384
- logInfo(contextOrMessage: any, ...args: any[]): void;
385
- log(contextOrMessage: any, ...args: any[]): void;
386
- private print;
387
- static ɵfac: i0.ɵɵFactoryDeclaration<AppLoggerService, never>;
388
- static ɵprov: i0.ɵɵInjectableDeclaration<AppLoggerService>;
389
- }
390
-
391
- declare class AppsService {
392
- private store;
393
- private activatedRoute;
394
- private router;
395
- private loggerService;
396
- readonly confAuth: AuthConfiguration | undefined;
397
- private readonly confAcl;
398
- private logger;
399
- private aclStore;
400
- constructor(store: Store<BaseState>, activatedRoute: ActivatedRoute, router: Router, loggerService: AppLoggerService, confAuth: AuthConfiguration | undefined, confAcl: AclConfiguration | undefined);
401
- get currentDomain(): string;
402
- get apps(): AppInfo<any>[];
403
- get currentAppAclInfo(): {
404
- busId: any;
405
- resId: any;
406
- } | null;
407
- get currentApp(): AppInfo<any> | null;
408
- isAppSelected(appId: string): boolean;
409
- checkPermissionInCurrentApp(action?: string): boolean;
410
- selectApp(app?: AppInfo, viewMode?: 'app' | 'settings', url?: string): void;
411
- private initAuthProviders;
412
- private initRouterListener;
413
- private resolveRouteAndApps;
414
- private handleResolvedApps;
415
- private findDeepestChild;
416
- private getStoredAppId;
417
- private getAppViewMode;
418
- private isDefaultRoute;
419
- private getConfigPath;
420
- private getActualPath;
421
- static ɵfac: i0.ɵɵFactoryDeclaration<AppsService, [null, null, null, null, { optional: true; }, { optional: true; }]>;
422
- static ɵprov: i0.ɵɵInjectableDeclaration<AppsService>;
423
- }
424
-
425
- declare class LanguageService {
426
- private translateService;
427
- private cookiesService;
428
- private i18nOptions;
429
- private _contentLanguage;
430
- contentLanguageChanged$: EventEmitter<string>;
431
- constructor(translateService: TranslateService, cookiesService: CookiesService, i18nOptions: InternationalizationConfiguration);
432
- get language(): string | undefined;
433
- set language(value: string | undefined);
434
- get contentLanguage(): string | undefined;
435
- set contentLanguage(value: string | undefined);
436
- get languages(): readonly string[];
437
- set languages(value: string[]);
438
- get defaultLanguage(): string;
439
- get browserLanguage(): string;
440
- translate(key: string | Array<string>, interpolateParams?: Object): any;
441
- translateAsync(key: string | Array<string>, interpolateParams?: Object): rxjs.Observable<any>;
442
- get languageChanged$(): rxjs.Observable<i24.LangChangeEvent>;
443
- getLanguageName(l: string): string;
444
- static ɵfac: i0.ɵɵFactoryDeclaration<LanguageService, [null, null, { optional: true; }]>;
445
- static ɵprov: i0.ɵɵInjectableDeclaration<LanguageService>;
446
- }
442
+ declare const AclStore: i0.Type<{
443
+ resources: i0.Signal<_open_rlb_ng_app.UserResource[] | null>;
444
+ loading: i0.Signal<boolean>;
445
+ loaded: i0.Signal<boolean>;
446
+ error: i0.Signal<any>;
447
+ hasPermission: (busId: string, resId: string, action?: string) => boolean;
448
+ loadACL: (providerAcl?: ProviderAclConfiguration) => rxjs.Observable<_open_rlb_ng_app.UserResource[]>;
449
+ reset: () => void;
450
+ } & _ngrx_signals.StateSource<{
451
+ resources: _open_rlb_ng_app.UserResource[] | null;
452
+ loading: boolean;
453
+ loaded: boolean;
454
+ error: any;
455
+ }>>;
447
456
 
448
- declare class AppBreadcrumbService {
449
- private router;
450
- private route;
451
- private loggerService;
452
- private languageService;
453
- private idService;
454
- private readonly _breadcrumbs$;
455
- readonly breadcrumbs$: rxjs.Observable<BreadcrumbItem[]>;
456
- private logger;
457
- constructor(router: Router, route: ActivatedRoute, loggerService: AppLoggerService, languageService: LanguageService, idService: UniqueIdService);
458
- private updateBreadcrumbs;
459
- private buildBreadcrumbFromRoot;
460
- static ɵfac: i0.ɵɵFactoryDeclaration<AppBreadcrumbService, never>;
461
- static ɵprov: i0.ɵɵInjectableDeclaration<AppBreadcrumbService>;
457
+ interface BaseState extends AclState, AuthState, SidebarState, NavbarState, AppState {
462
458
  }
463
459
 
464
460
  declare const RLB_INIT_PROVIDER: InjectionToken<RlbInitProvider>;
@@ -590,6 +586,31 @@ declare class ErrorManagementService {
590
586
 
591
587
  declare function provideRlbI18n(i18n?: InternationalizationConfiguration): (EnvironmentProviders | Provider)[];
592
588
 
589
+ declare class LanguageService {
590
+ private readonly translateService;
591
+ private readonly cookiesService;
592
+ private readonly i18nOptions;
593
+ private readonly _language;
594
+ private readonly _contentLanguage;
595
+ readonly language: i0.Signal<string>;
596
+ readonly contentLanguage: i0.Signal<string | undefined>;
597
+ readonly languageChanged$: rxjs.Observable<i3.LangChangeEvent>;
598
+ readonly contentLanguageChanged: i0.Signal<string | undefined>;
599
+ constructor();
600
+ get currentLanguage(): string;
601
+ setLanguage(value: string | undefined): void;
602
+ setContentLanguage(value: string | undefined): void;
603
+ get languages(): readonly string[];
604
+ set languages(value: string[]);
605
+ get defaultLanguage(): string;
606
+ get browserLanguage(): string;
607
+ translate(key: string | Array<string>, interpolateParams?: Object): any;
608
+ translateAsync(key: string | Array<string>, interpolateParams?: Object): rxjs.Observable<any>;
609
+ getLanguageName(l: string): string;
610
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageService, never>;
611
+ static ɵprov: i0.ɵɵInjectableDeclaration<LanguageService>;
612
+ }
613
+
593
614
  declare class TranslateBrowserLoader implements TranslateLoader {
594
615
  private http;
595
616
  private transferState;
@@ -625,9 +646,10 @@ declare class PwaUpdaterService {
625
646
  private readonly updates;
626
647
  private readonly modalService;
627
648
  private readonly languageService;
628
- private _newVersionAvailable$;
629
- get newVersionAvailable$(): rxjs.Observable<void>;
630
- constructor(updates: SwUpdate, modalService: ModalService, languageService: LanguageService);
649
+ private readonly _newVersionAvailable;
650
+ readonly newVersionAvailable: i0.Signal<boolean>;
651
+ get newVersionAvailable$(): rxjs.Observable<boolean>;
652
+ constructor();
631
653
  update(): void;
632
654
  checkForUpdates(): Promise<boolean>;
633
655
  checkWithDialog(): rxjs.Observable<Promise<void>>;
@@ -769,7 +791,7 @@ declare class RlbRole {
769
791
  action: i0.InputSignal<string | undefined>;
770
792
  constructor();
771
793
  static ɵfac: i0.ɵɵFactoryDeclaration<RlbRole, never>;
772
- static ɵdir: i0.ɵɵDirectiveDeclaration<RlbRole, "[roles]", never, { "action": { "alias": "roles"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
794
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RlbRole, "[roles]", never, { "action": { "alias": "roles"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
773
795
  }
774
796
 
775
797
  declare const oauthGuard: CanActivateFn;
@@ -1039,75 +1061,70 @@ declare function getDefaultRoutes(config?: PagesConfiguration): Routes;
1039
1061
  declare class AsMultiPipe implements PipeTransform {
1040
1062
  transform<T>(value: T | T[]): T[];
1041
1063
  static ɵfac: i0.ɵɵFactoryDeclaration<AsMultiPipe, never>;
1042
- static ɵpipe: i0.ɵɵPipeDeclaration<AsMultiPipe, "asMulti", false>;
1064
+ static ɵpipe: i0.ɵɵPipeDeclaration<AsMultiPipe, "asMulti", true>;
1043
1065
  }
1044
1066
  declare class AsSinglePipe implements PipeTransform {
1045
1067
  transform<T>(value: T | T[]): T;
1046
1068
  static ɵfac: i0.ɵɵFactoryDeclaration<AsSinglePipe, never>;
1047
- static ɵpipe: i0.ɵɵPipeDeclaration<AsSinglePipe, "asSingle", false>;
1069
+ static ɵpipe: i0.ɵɵPipeDeclaration<AsSinglePipe, "asSingle", true>;
1048
1070
  }
1049
1071
 
1050
1072
  declare class CmsPipe implements PipeTransform {
1051
1073
  private cmsOptions;
1052
- constructor(cmsOptions: CmsConfiguration);
1053
1074
  transform(value: string, ...args: unknown[]): string;
1054
- static ɵfac: i0.ɵɵFactoryDeclaration<CmsPipe, [{ optional: true; }]>;
1055
- static ɵpipe: i0.ɵɵPipeDeclaration<CmsPipe, "cms", false>;
1075
+ static ɵfac: i0.ɵɵFactoryDeclaration<CmsPipe, never>;
1076
+ static ɵpipe: i0.ɵɵPipeDeclaration<CmsPipe, "cms", true>;
1056
1077
  }
1057
1078
 
1058
1079
  declare class LeftComponentPipe implements PipeTransform {
1059
1080
  private config;
1060
- constructor(config: NavbarComponents);
1061
1081
  transform(value: string): Type<any>;
1062
1082
  static ɵfac: i0.ɵɵFactoryDeclaration<LeftComponentPipe, never>;
1063
- static ɵpipe: i0.ɵɵPipeDeclaration<LeftComponentPipe, "leftComponent", false>;
1083
+ static ɵpipe: i0.ɵɵPipeDeclaration<LeftComponentPipe, "leftComponent", true>;
1064
1084
  }
1065
1085
 
1066
1086
  declare class RightComponentPipe implements PipeTransform {
1067
1087
  private config;
1068
- constructor(config: NavbarComponents);
1069
1088
  transform(value: string): Type<any>;
1070
1089
  static ɵfac: i0.ɵɵFactoryDeclaration<RightComponentPipe, never>;
1071
- static ɵpipe: i0.ɵɵPipeDeclaration<RightComponentPipe, "rightComponent", false>;
1090
+ static ɵpipe: i0.ɵɵPipeDeclaration<RightComponentPipe, "rightComponent", true>;
1072
1091
  }
1073
1092
 
1074
1093
  declare class TruncatePipe implements PipeTransform {
1075
1094
  transform(value?: string, limit?: number, completeWords?: boolean, ellipsis?: string): string | undefined;
1076
1095
  static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
1077
- static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
1096
+ static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", true>;
1078
1097
  }
1079
1098
 
1080
1099
  declare class AutolinkPipe implements PipeTransform {
1081
1100
  transform(value?: string, target?: string, rel?: string, id?: string): string;
1082
1101
  static ɵfac: i0.ɵɵFactoryDeclaration<AutolinkPipe, never>;
1083
- static ɵpipe: i0.ɵɵPipeDeclaration<AutolinkPipe, "autolink", false>;
1102
+ static ɵpipe: i0.ɵɵPipeDeclaration<AutolinkPipe, "autolink", true>;
1084
1103
  }
1085
1104
 
1086
- declare class AppContainerComponent implements OnInit, OnDestroy {
1087
- env: EnvironmentConfiguration;
1088
- store: Store<BaseState>;
1105
+ declare class AppContainerComponent {
1106
+ protected readonly Array: ArrayConstructor;
1107
+ private readonly templateSubject;
1108
+ readonly modalContainerId: i0.InputSignal<string>;
1109
+ readonly toastContainerIds: i0.InputSignal<string | string[]>;
1110
+ private readonly env;
1111
+ private readonly store;
1089
1112
  private readonly router;
1090
- private storage;
1113
+ private readonly storage;
1091
1114
  private readonly pwaUpdaterService;
1092
1115
  private readonly appsService;
1093
1116
  private readonly loggerService;
1094
- private swUpdateSubscription;
1095
- private readonly templateSubject;
1096
- modalContainerId: string;
1097
- toastContainerIds: string | string[];
1098
- private logger;
1099
- constructor(env: EnvironmentConfiguration, store: Store<BaseState>, router: Router, storage: AppStorageService, pwaUpdaterService: PwaUpdaterService, appsService: AppsService, loggerService: AppLoggerService);
1117
+ private readonly logger;
1118
+ constructor();
1100
1119
  get template$(): rxjs.Observable<PageTemplate>;
1101
- ngOnDestroy(): void;
1102
- ngOnInit(): void;
1103
1120
  static ɵfac: i0.ɵɵFactoryDeclaration<AppContainerComponent, never>;
1104
- static ɵcmp: i0.ɵɵComponentDeclaration<AppContainerComponent, "rlb-app-container", never, { "modalContainerId": { "alias": "modal-container-id"; "required": false; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": false; }; }, {}, never, never, false, never>;
1121
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppContainerComponent, "rlb-app-container", never, { "modalContainerId": { "alias": "modal-container-id"; "required": true; "isSignal": true; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
1105
1122
  }
1106
1123
 
1107
1124
  declare class SettingsDropdownSelectorComponent implements OnDestroy {
1108
1125
  mode: i0.InputSignal<"desktop" | "mobile">;
1109
1126
  apps: i0.InputSignal<AppInfo<any>[]>;
1110
- isAuthenticated: i0.InputSignal<unknown>;
1127
+ isAuthenticated: i0.InputSignal<boolean | null>;
1111
1128
  appSelected: i0.OutputEmitterRef<AppInfo<any>>;
1112
1129
  activeSlide: number;
1113
1130
  private readonly pageOptions;
@@ -1117,117 +1134,107 @@ declare class SettingsDropdownSelectorComponent implements OnDestroy {
1117
1134
  private readonly router;
1118
1135
  private readonly menu;
1119
1136
  private appsService;
1137
+ readonly pages: i0.Signal<PagesConfiguration | null>;
1138
+ readonly languages: i0.Signal<{
1139
+ value: string;
1140
+ label: string;
1141
+ }[]>;
1142
+ readonly currentLanguage: i0.Signal<string | null>;
1143
+ readonly darkMode: i0.Signal<boolean>;
1144
+ readonly currentAppId: i0.Signal<string | undefined>;
1120
1145
  constructor();
1121
- get pages(): PagesConfiguration | null;
1146
+ setCurrentLanguage(value: any): void;
1147
+ setDarkMode(value: boolean): void;
1122
1148
  selectApp(app: AppInfo): void;
1123
1149
  goToFirstSlide(): void;
1124
1150
  goToInlineSettings(): void;
1125
1151
  logout(): void;
1126
1152
  ngOnDestroy(): void;
1127
- change(event: VisibilityEventBase): void;
1153
+ change(event: any): void;
1128
1154
  isAppSelected(appId: string | undefined): boolean;
1129
- get languages(): {
1130
- value: string;
1131
- label: string;
1132
- }[];
1133
- get currentLanguage(): string;
1134
- set currentLanguage(value: string);
1135
- get darkMode(): boolean;
1136
- set darkMode(value: boolean);
1137
1155
  private close;
1138
1156
  static ɵfac: i0.ɵɵFactoryDeclaration<SettingsDropdownSelectorComponent, never>;
1139
- static ɵcmp: i0.ɵɵComponentDeclaration<SettingsDropdownSelectorComponent, "rlb-settings-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuthenticated": { "alias": "isAuthenticated"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
1157
+ static ɵcmp: i0.ɵɵComponentDeclaration<SettingsDropdownSelectorComponent, "rlb-settings-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuthenticated": { "alias": "isAuthenticated"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, true, never>;
1140
1158
  }
1141
1159
 
1142
- declare class AppTemplateComponent implements OnDestroy {
1143
- env: EnvironmentConfiguration;
1144
- store: Store<BaseState>;
1145
- appsService: AppsService;
1146
- private readonly authService;
1147
- private readonly router;
1148
- private navbarItemsSubscription;
1149
- private sidebarItemsSubscription;
1150
- private sidebarFooterItemsSubscription;
1160
+ declare class AppTemplateComponent {
1161
+ protected readonly Array: ArrayConstructor;
1151
1162
  navSearchText: string | null;
1152
- navbarItems: NavigableItem[];
1153
- sidebarItems: NavigableItem[];
1154
- sidebarFooterItems: NavigableItem[];
1155
- modalContainerId: string;
1156
- toastContainerIds: string | string[];
1163
+ readonly modalContainerId: i0.InputSignal<string>;
1164
+ readonly breadcrumbInput: i0.InputSignal<BreadcrumbItem[] | undefined>;
1165
+ readonly breadcrumb: i0.Signal<BreadcrumbItem[]>;
1166
+ readonly toastContainerIds: i0.InputSignal<string | string[]>;
1157
1167
  readonly mobileOffcanvas: i0.Signal<OffcanvasComponent | undefined>;
1158
1168
  readonly mobileSettingsMenu: i0.Signal<SettingsDropdownSelectorComponent | undefined>;
1159
- constructor(env: EnvironmentConfiguration, store: Store<BaseState>, appsService: AppsService, authService: AuthenticationService, router: Router);
1160
- ngOnDestroy(): void;
1161
- get sidebarVisible$(): rxjs.Observable<boolean>;
1162
- get sidearHasLogin$(): rxjs.Observable<boolean>;
1163
- get sidearHasSearch$(): rxjs.Observable<boolean>;
1164
- get sidebarItems$(): rxjs.Observable<SidebarNavigableItem[]>;
1165
- setSidearSearchText(text: string | null): void;
1166
- setNavbarSearchText(text: string | null): void;
1167
- get sidearHasSettings$(): rxjs.Observable<boolean>;
1168
- get sidearAppsVisible$(): rxjs.Observable<boolean>;
1169
- get navVisible$(): rxjs.Observable<boolean>;
1170
- get navSearchVisible$(): rxjs.Observable<boolean>;
1171
- get navHeader$(): rxjs.Observable<_open_rlb_ng_app.NavbarHeader | null>;
1172
- get isAuthenticated$(): rxjs.Observable<boolean>;
1173
- get user$(): rxjs.Observable<any>;
1174
- get navLeftItems$(): rxjs.Observable<string[]>;
1175
- get navRightItems$(): rxjs.Observable<string[]>;
1176
- get theme(): _open_rlb_ng_app.AppTheme;
1177
- get navbarHasLogin$(): rxjs.Observable<boolean>;
1178
- get navbarHasSettings$(): rxjs.Observable<boolean>;
1179
- get navbarHasApps$(): rxjs.Observable<boolean>;
1180
- get navbarLayout$(): rxjs.Observable<_open_rlb_ng_app.NavbarActionsLayout>;
1181
- get apps(): AppInfo<any>[];
1182
- get separatorVisible$(): rxjs.Observable<boolean>;
1169
+ readonly env: _open_rlb_ng_app.EnvironmentConfiguration;
1170
+ readonly store: Store<any>;
1171
+ readonly appsService: AppsService;
1172
+ private readonly authService;
1173
+ private readonly router;
1174
+ readonly sidebarVisible: i0.Signal<boolean>;
1175
+ readonly sidearHasLogin: i0.Signal<boolean>;
1176
+ readonly sidearHasSearch: i0.Signal<boolean>;
1177
+ readonly sidebarItems: i0.Signal<SidebarNavigableItem[]>;
1178
+ readonly sidearHasSettings: i0.Signal<boolean>;
1179
+ readonly sidearAppsVisible: i0.Signal<boolean>;
1180
+ readonly navVisible: i0.Signal<boolean>;
1181
+ readonly navSearchVisible: i0.Signal<boolean>;
1182
+ readonly navHeader: i0.Signal<_open_rlb_ng_app.NavbarHeader | null>;
1183
+ readonly navLeftItems: i0.Signal<string[]>;
1184
+ readonly navRightItems: i0.Signal<string[]>;
1185
+ readonly navbarHasLogin: i0.Signal<boolean>;
1186
+ readonly navbarHasSettings: i0.Signal<boolean>;
1187
+ readonly navbarHasApps: i0.Signal<any>;
1188
+ readonly navbarLayout: i0.Signal<any>;
1189
+ readonly separatorVisible: i0.Signal<any>;
1190
+ readonly isAuthenticated: i0.Signal<boolean>;
1191
+ readonly userInfo: i0.Signal<any>;
1192
+ readonly theme: i0.Signal<any>;
1193
+ readonly apps: i0.Signal<any>;
1194
+ constructor();
1183
1195
  loginNav(event: MouseEvent): void;
1184
1196
  onSideBarItemClick(item: SidebarNavigableItem): void;
1185
1197
  selectApp(app: AppInfo, viewMode: 'app' | 'settings'): void;
1186
1198
  onMobileMenuStatusChange(event: VisibilityEvent): void;
1199
+ setSidearSearchText(text: string | null): void;
1200
+ setNavbarSearchText(text: string | null): void;
1187
1201
  private closeMobileMenu;
1188
1202
  static ɵfac: i0.ɵɵFactoryDeclaration<AppTemplateComponent, never>;
1189
- static ɵcmp: i0.ɵɵComponentDeclaration<AppTemplateComponent, "rlb-app-template", never, { "modalContainerId": { "alias": "modal-container-id"; "required": false; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": false; }; }, {}, never, ["*"], false, never>;
1203
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppTemplateComponent, "rlb-app-template", never, { "modalContainerId": { "alias": "modal-container-id"; "required": true; "isSignal": true; }; "breadcrumbInput": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1190
1204
  }
1191
1205
 
1192
- declare class BaseComponent implements OnInit {
1193
- private breakpointObserver;
1194
- private platformId;
1195
- constructor(breakpointObserver: BreakpointObserver, platformId: Object);
1196
- breadcrumb: BreadcrumbItem[] | undefined;
1197
- title: string;
1198
- subtitle: string;
1199
- get isHandset$(): Observable<boolean>;
1200
- ngOnInit(): void;
1206
+ declare class BaseComponent {
1207
+ private readonly breakpointObserver;
1208
+ private readonly platformId;
1209
+ readonly breadcrumbInput: i0.InputSignal<BreadcrumbItem[] | undefined>;
1210
+ readonly breadcrumb: i0.Signal<BreadcrumbItem[]>;
1211
+ readonly title: i0.InputSignal<string>;
1212
+ readonly subtitle: i0.InputSignal<string | undefined>;
1213
+ readonly isHandset: i0.Signal<boolean>;
1201
1214
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
1202
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "rlb-base-template", never, { "breadcrumb": { "alias": "breadcrumb"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, {}, never, ["[all]", "[default]", "[mobile]"], false, never>;
1215
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "rlb-base-template", never, { "breadcrumbInput": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; }, {}, never, ["[all]", "[default]", "[mobile]"], true, never>;
1203
1216
  }
1204
1217
 
1205
1218
  declare class CmsComponent {
1206
- private strapiService;
1207
- private languageService;
1208
- private cmsOptions;
1209
- private mdService?;
1210
- constructor(strapiService: StrapiService, languageService: LanguageService, cmsOptions: CmsConfiguration, mdService?: AbstractMdService | undefined);
1211
- contentId: string | undefined;
1212
- breadcrumb: BreadcrumbItem[] | undefined;
1213
- page: Page | undefined;
1214
- private subscriptionLang;
1215
- private subscriptionPage;
1216
- ngOnDestroy(): void;
1217
- ngOnInit(): void;
1219
+ private readonly strapiService;
1220
+ private readonly languageService;
1221
+ private readonly cmsOptions;
1222
+ private readonly mdService;
1223
+ readonly contentId: i0.InputSignal<string | undefined>;
1224
+ readonly breadcrumbInput: i0.InputSignal<BreadcrumbItem[] | undefined>;
1225
+ readonly breadcrumb: i0.Signal<BreadcrumbItem[]>;
1226
+ readonly page: i0.Signal<_open_rlb_ng_app.Page | undefined>;
1218
1227
  md(md: string): string;
1219
- static ɵfac: i0.ɵɵFactoryDeclaration<CmsComponent, [null, null, { optional: true; }, { optional: true; }]>;
1220
- static ɵcmp: i0.ɵɵComponentDeclaration<CmsComponent, "rlb-cms-template", never, { "contentId": { "alias": "contentId"; "required": false; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; }; }, {}, never, never, false, never>;
1228
+ static ɵfac: i0.ɵɵFactoryDeclaration<CmsComponent, never>;
1229
+ static ɵcmp: i0.ɵɵComponentDeclaration<CmsComponent, "rlb-cms-template", never, { "contentId": { "alias": "contentId"; "required": false; "isSignal": true; }; "breadcrumbInput": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1221
1230
  }
1222
1231
 
1223
1232
  declare class ContentComponent {
1224
- private breakpointObserver;
1225
- private platformId;
1226
- constructor(breakpointObserver: BreakpointObserver, platformId: Object);
1227
- get isHandset$(): Observable<boolean>;
1228
- ngOnInit(): void;
1233
+ private readonly breakpointObserver;
1234
+ private readonly platformId;
1235
+ readonly isHandset: i0.Signal<boolean>;
1229
1236
  static ɵfac: i0.ɵɵFactoryDeclaration<ContentComponent, never>;
1230
- static ɵcmp: i0.ɵɵComponentDeclaration<ContentComponent, "rlb-content-template", never, {}, {}, never, ["[all]", "[default]", "[mobile]"], false, never>;
1237
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentComponent, "rlb-content-template", never, {}, {}, never, ["[all]", "[default]", "[mobile]"], true, never>;
1231
1238
  }
1232
1239
 
1233
1240
  declare class ToastComponent implements IToast<string, void> {
@@ -1239,49 +1246,53 @@ declare class ToastComponent implements IToast<string, void> {
1239
1246
  }
1240
1247
 
1241
1248
  declare class CmsContentComponent {
1242
- private route;
1243
- constructor(route: ActivatedRoute);
1244
- get contentId(): any;
1249
+ private readonly route;
1250
+ readonly contentId: i0.Signal<any>;
1245
1251
  static ɵfac: i0.ɵɵFactoryDeclaration<CmsContentComponent, never>;
1246
- static ɵcmp: i0.ɵɵComponentDeclaration<CmsContentComponent, "rlb-cms-content", never, {}, {}, never, never, false, never>;
1252
+ static ɵcmp: i0.ɵɵComponentDeclaration<CmsContentComponent, "rlb-cms-content", never, {}, {}, never, never, true, never>;
1247
1253
  }
1248
1254
 
1249
1255
  declare class CookiesComponent {
1250
1256
  static ɵfac: i0.ɵɵFactoryDeclaration<CookiesComponent, never>;
1251
- static ɵcmp: i0.ɵɵComponentDeclaration<CookiesComponent, "rlb-cookies", never, {}, {}, never, never, false, never>;
1257
+ static ɵcmp: i0.ɵɵComponentDeclaration<CookiesComponent, "rlb-cookies", never, {}, {}, never, never, true, never>;
1252
1258
  }
1253
1259
 
1254
1260
  declare class NotFoundComponent {
1255
1261
  static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
1256
- static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "rlb-not-found", never, {}, {}, never, never, false, never>;
1262
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "rlb-not-found", never, {}, {}, never, never, true, never>;
1257
1263
  }
1258
1264
 
1259
1265
  declare class PrivacyComponent {
1260
1266
  static ɵfac: i0.ɵɵFactoryDeclaration<PrivacyComponent, never>;
1261
- static ɵcmp: i0.ɵɵComponentDeclaration<PrivacyComponent, "rlb-privacy", never, {}, {}, never, never, false, never>;
1262
- }
1263
-
1264
- declare class SupportComponent {
1265
- private supportService;
1266
- private _location;
1267
- supportForm: FormGroup;
1268
- constructor(supportService: AbstractSupportService, _location: Location);
1269
- hasError(form: string, controlName: string, errorName: string): boolean;
1267
+ static ɵcmp: i0.ɵɵComponentDeclaration<PrivacyComponent, "rlb-privacy", never, {}, {}, never, never, true, never>;
1268
+ }
1269
+
1270
+ declare class SupportComponent implements OnInit {
1271
+ private readonly supportService;
1272
+ private readonly _location;
1273
+ readonly supportForm: FormGroup<{
1274
+ name: FormControl<string | null>;
1275
+ email: FormControl<string | null>;
1276
+ subject: FormControl<string | null>;
1277
+ message: FormControl<string | null>;
1278
+ legal: FormControl<string | null>;
1279
+ }>;
1280
+ hasError(form: string, controlName: string, errorName: string): boolean | undefined;
1270
1281
  sendSupport(data: any): void;
1271
1282
  backClicked(): void;
1272
1283
  ngOnInit(): void;
1273
1284
  static ɵfac: i0.ɵɵFactoryDeclaration<SupportComponent, never>;
1274
- static ɵcmp: i0.ɵɵComponentDeclaration<SupportComponent, "rlb-support", never, {}, {}, never, never, false, never>;
1285
+ static ɵcmp: i0.ɵɵComponentDeclaration<SupportComponent, "rlb-support", never, {}, {}, never, never, true, never>;
1275
1286
  }
1276
1287
 
1277
1288
  declare class TermsAndConditionsComponent {
1278
1289
  static ɵfac: i0.ɵɵFactoryDeclaration<TermsAndConditionsComponent, never>;
1279
- static ɵcmp: i0.ɵɵComponentDeclaration<TermsAndConditionsComponent, "rlb-terms-and-conditions", never, {}, {}, never, never, false, never>;
1290
+ static ɵcmp: i0.ɵɵComponentDeclaration<TermsAndConditionsComponent, "rlb-terms-and-conditions", never, {}, {}, never, never, true, never>;
1280
1291
  }
1281
1292
 
1282
1293
  declare class ForbiddenComponent {
1283
1294
  static ɵfac: i0.ɵɵFactoryDeclaration<ForbiddenComponent, never>;
1284
- static ɵcmp: i0.ɵɵComponentDeclaration<ForbiddenComponent, "rlb-forbidden", never, {}, {}, never, never, false, never>;
1295
+ static ɵcmp: i0.ɵɵComponentDeclaration<ForbiddenComponent, "rlb-forbidden", never, {}, {}, never, never, true, never>;
1285
1296
  }
1286
1297
 
1287
1298
  declare class AppDropdownSelectorComponent {
@@ -1290,15 +1301,16 @@ declare class AppDropdownSelectorComponent {
1290
1301
  isAuthenticated: i0.InputSignal<boolean | null>;
1291
1302
  appSelected: i0.OutputEmitterRef<AppInfo<any>>;
1292
1303
  private appsService;
1293
- selectApp(app: any): void;
1304
+ readonly currentAppId: i0.Signal<string | undefined>;
1305
+ selectApp(app: AppInfo): void;
1294
1306
  isAppSelected(appId: string | undefined): boolean;
1295
1307
  static ɵfac: i0.ɵɵFactoryDeclaration<AppDropdownSelectorComponent, never>;
1296
- static ɵcmp: i0.ɵɵComponentDeclaration<AppDropdownSelectorComponent, "rlb-app-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuthenticated": { "alias": "isAuthenticated"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
1308
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppDropdownSelectorComponent, "rlb-app-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuthenticated": { "alias": "isAuthenticated"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, true, never>;
1297
1309
  }
1298
1310
 
1299
1311
  declare class RlbAppModule {
1300
1312
  static ɵfac: i0.ɵɵFactoryDeclaration<RlbAppModule, never>;
1301
- static ɵmod: i0.ɵɵNgModuleDeclaration<RlbAppModule, [typeof CmsContentComponent, typeof CookiesComponent, typeof NotFoundComponent, typeof PrivacyComponent, typeof SupportComponent, typeof TermsAndConditionsComponent, typeof ForbiddenComponent, typeof CmsPipe, typeof AsMultiPipe, typeof AsSinglePipe, typeof LeftComponentPipe, typeof RightComponentPipe, typeof TruncatePipe, typeof AutolinkPipe, typeof BaseComponent, typeof CmsComponent, typeof ContentComponent, typeof AppTemplateComponent, typeof AppContainerComponent, typeof SettingsDropdownSelectorComponent, typeof AppDropdownSelectorComponent, typeof RlbRole], [typeof i22.CommonModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i26.RouterModule], [typeof CmsPipe, typeof AsMultiPipe, typeof AsSinglePipe, typeof LeftComponentPipe, typeof RightComponentPipe, typeof TruncatePipe, typeof AutolinkPipe, typeof BaseComponent, typeof CmsComponent, typeof ContentComponent, typeof AppTemplateComponent, typeof AppContainerComponent, typeof i24.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i26.RouterModule, typeof i23.FormsModule, typeof RlbRole]>;
1313
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RlbAppModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i5.RouterModule, typeof CmsContentComponent, typeof CookiesComponent, typeof NotFoundComponent, typeof PrivacyComponent, typeof SupportComponent, typeof TermsAndConditionsComponent, typeof ForbiddenComponent, typeof CmsPipe, typeof AsMultiPipe, typeof AsSinglePipe, typeof LeftComponentPipe, typeof RightComponentPipe, typeof TruncatePipe, typeof AutolinkPipe, typeof BaseComponent, typeof CmsComponent, typeof ContentComponent, typeof AppTemplateComponent, typeof AppContainerComponent, typeof SettingsDropdownSelectorComponent, typeof AppDropdownSelectorComponent, typeof RlbRole], [typeof CmsPipe, typeof AsMultiPipe, typeof AsSinglePipe, typeof LeftComponentPipe, typeof RightComponentPipe, typeof TruncatePipe, typeof AutolinkPipe, typeof BaseComponent, typeof CmsComponent, typeof ContentComponent, typeof AppTemplateComponent, typeof AppContainerComponent, typeof i3.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i5.RouterModule, typeof i2.FormsModule, typeof RlbRole]>;
1302
1314
  static ɵinj: i0.ɵɵInjectorDeclaration<RlbAppModule>;
1303
1315
  }
1304
1316
 
@@ -1307,5 +1319,5 @@ declare function provideRlbConfig<T = {
1307
1319
  }>(env: ProjectConfiguration<T>): (EnvironmentProviders | Provider)[];
1308
1320
  declare function provideApp(app: AppDescriber): (EnvironmentProviders | Provider)[];
1309
1321
 
1310
- export { AbstractMdService, AbstractSupportService, AppBreadcrumbService, AppContainerComponent, AppContextActions, AppContextActionsInternal, AppLoggerService, AppStorageService, AppTemplateComponent, AppsService, AsMultiPipe, AsSinglePipe, AuthActions, AuthActionsInternal, AuthFeatureService, AuthenticationService, AutolinkPipe, BaseComponent, CmsComponent, CmsPipe, ContentComponent, CookiesService, ErrorManagementService, ErrorModalComponent, KeycloakProfileService, LanguageService, LeftComponentPipe, LocalCacheService, ModalAppsComponent, NavbarActions, NavbarActionsInternal, OauthPasswordService, ParseJwtService, PwaUpdaterService, RLB_APPS, RLB_APP_NAVCOMP, RLB_AUTH_URL_HANDLER, RLB_CFG, RLB_CFG_ACL, RLB_CFG_AUTH, RLB_CFG_CMS, RLB_CFG_ENV, RLB_CFG_I18N, RLB_CFG_PAGES, RLB_INIT_PROVIDER, RightComponentPipe, RlbAppModule, RlbRole, SidebarActions, SidebarActionsInternal, StrapiService, ToastComponent, TokenOauthInterceptor, TranslateBrowserLoader, TruncatePipe, UtilsService, aclFeatureKey, appContextFeatureKey, authsFeatureKey, getDefaultRoutes, initialAclState, initialAppContextState, initialAuthState, initialNavbarState, initialSidebarState, navbarsFeatureKey, oauthGuard, oauthPasswordGuard, permissionGuard, provideApp, provideRlbCodeBrowserOAuth, provideRlbConfig, provideRlbI18n, sidebarsFeatureKey, translateBrowserLoaderFactory, verifyDeactivate };
1322
+ export { AbstractMdService, AbstractSupportService, AclStore, AppBreadcrumbService, AppContainerComponent, AppContextActions, AppContextActionsInternal, AppLoggerService, AppStorageService, AppTemplateComponent, AppsService, AsMultiPipe, AsSinglePipe, AuthActions, AuthActionsInternal, AuthFeatureService, AuthenticationService, AutolinkPipe, BaseComponent, CmsComponent, CmsPipe, ContentComponent, CookiesService, ErrorManagementService, ErrorModalComponent, KeycloakProfileService, LanguageService, LeftComponentPipe, LocalCacheService, ModalAppsComponent, NavbarActions, NavbarActionsInternal, OauthPasswordService, ParseJwtService, PwaUpdaterService, RLB_APPS, RLB_APP_NAVCOMP, RLB_AUTH_URL_HANDLER, RLB_CFG, RLB_CFG_ACL, RLB_CFG_AUTH, RLB_CFG_CMS, RLB_CFG_ENV, RLB_CFG_I18N, RLB_CFG_PAGES, RLB_INIT_PROVIDER, RightComponentPipe, RlbAppModule, RlbRole, SidebarActions, SidebarActionsInternal, StrapiService, ToastComponent, TokenOauthInterceptor, TranslateBrowserLoader, TruncatePipe, UtilsService, aclFeatureKey, appContextFeatureKey, authsFeatureKey, getDefaultRoutes, initialAclState, initialAppContextState, initialAuthState, initialNavbarState, initialSidebarState, navbarsFeatureKey, oauthGuard, oauthPasswordGuard, permissionGuard, provideApp, provideRlbCodeBrowserOAuth, provideRlbConfig, provideRlbI18n, sidebarsFeatureKey, translateBrowserLoaderFactory, verifyDeactivate };
1311
1323
  export type { Acl, AclConfiguration, AclState, AppContext, AppDescriber, AppDetails, AppInfo, AppInfoData, AppState, AppTheme, AppViewMode, Auth, AuthConfiguration, AuthState, AuthUrlHandler, BaseState, CacheItem, CmsConfiguration, Endpoint, EnvironmentConfiguration, ErrorOutput, Faq, FaqGroup, Home, IConfiguration, InterceptorMapping, InternationalizationConfiguration, JwtUser, KeycloakClient, KeycloakCredential, KeycloakDevice, KeycloakSession, KeycloakUser, KeycloakUserCredentialMetadata, LogLevel, LoggerContext, MenuItem, Navbar, NavbarActionsLayout, NavbarComponents, NavbarHeader, NavbarState, Page, PageTemplate, PagesConfiguration, ProjectConfiguration, ProviderAclConfiguration, ProviderConfiguration, Resource, RlbInitProvider, Sidebar, SidebarState, Step, Tab, Token, Topic, UserClaims, UserResource, VerifyDeactivate, _KeycloakCredential };