@open-rlb/ng-app 3.0.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.
- package/README.md +24 -0
- package/fesm2022/open-rlb-ng-app.mjs +3034 -0
- package/fesm2022/open-rlb-ng-app.mjs.map +1 -0
- package/index.d.ts +1156 -0
- package/package.json +34 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,1156 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Type, InjectionToken, Provider, EnvironmentProviders, EventEmitter, TransferState, OnInit, TemplateRef, ViewContainerRef, PipeTransform, OnDestroy } from '@angular/core';
|
|
3
|
+
import { OpenIdConfiguration, AbstractLoggerService, OidcSecurityService, LoginResponse } from 'angular-auth-oidc-client';
|
|
4
|
+
import * as i22 from '@angular/router';
|
|
5
|
+
import { Routes, ActivatedRoute, Router, CanActivateFn, CanDeactivateFn } from '@angular/router';
|
|
6
|
+
import * as _open_rlb_ng_app from '@open-rlb/ng-app';
|
|
7
|
+
import * as _ngrx_store from '@ngrx/store';
|
|
8
|
+
import { Store } from '@ngrx/store';
|
|
9
|
+
import * as rxjs from 'rxjs';
|
|
10
|
+
import { Observable, OperatorFunction } from 'rxjs';
|
|
11
|
+
import * as _open_rlb_ng_bootstrap from '@open-rlb/ng-bootstrap';
|
|
12
|
+
import { SidebarNavigableItem, BreadcrumbItem, ModalService, ToastService, ModalType, IModal, ModalData, NavigableItem, IToast, ToastData } from '@open-rlb/ng-bootstrap';
|
|
13
|
+
import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
|
|
14
|
+
import * as i20 from '@ngx-translate/core';
|
|
15
|
+
import { TranslateService, TranslateLoader } from '@ngx-translate/core';
|
|
16
|
+
import { SwUpdate } from '@angular/service-worker';
|
|
17
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
18
|
+
import * as i19 from '@angular/forms';
|
|
19
|
+
import { FormGroup } from '@angular/forms';
|
|
20
|
+
import * as i18 from '@angular/common';
|
|
21
|
+
import { Location } from '@angular/common';
|
|
22
|
+
|
|
23
|
+
declare const RLB_CFG = "rlb.options";
|
|
24
|
+
declare const RLB_CFG_CMS: InjectionToken<CmsConfiguration>;
|
|
25
|
+
declare const RLB_CFG_I18N: InjectionToken<InternationalizationConfiguration>;
|
|
26
|
+
declare const RLB_CFG_PAGES: InjectionToken<PagesConfiguration>;
|
|
27
|
+
declare const RLB_CFG_ENV: InjectionToken<EnvironmentConfiguration>;
|
|
28
|
+
declare const RLB_CFG_AUTH: InjectionToken<AuthConfiguration>;
|
|
29
|
+
declare const RLB_APP_NAVCOMP: InjectionToken<NavbarComponents>;
|
|
30
|
+
interface ProviderConfiguration extends OpenIdConfiguration {
|
|
31
|
+
configId: string;
|
|
32
|
+
domains?: string[];
|
|
33
|
+
roleClaim?: (data: any) => string | string[];
|
|
34
|
+
}
|
|
35
|
+
interface NavbarComponents {
|
|
36
|
+
left: {
|
|
37
|
+
component: Type<any>;
|
|
38
|
+
name: string;
|
|
39
|
+
}[];
|
|
40
|
+
right: {
|
|
41
|
+
component: Type<any>;
|
|
42
|
+
name: string;
|
|
43
|
+
}[];
|
|
44
|
+
}
|
|
45
|
+
interface CmsConfiguration {
|
|
46
|
+
endpoint: string;
|
|
47
|
+
chacheDuration: number;
|
|
48
|
+
useAppLanguage: boolean;
|
|
49
|
+
contentLanguages: string[];
|
|
50
|
+
markdown: 'ignore' | 'html' | 'text';
|
|
51
|
+
}
|
|
52
|
+
interface AuthConfiguration {
|
|
53
|
+
protocol: 'oauth';
|
|
54
|
+
storage: 'cookies' | 'localStorage' | 'sessionStorage';
|
|
55
|
+
interceptor?: 'oauth-code-all' | 'oauth-code-ep' | 'none';
|
|
56
|
+
allowedUrls: string[];
|
|
57
|
+
providers: ProviderConfiguration[];
|
|
58
|
+
}
|
|
59
|
+
interface InternationalizationConfiguration {
|
|
60
|
+
availableLangs: string[];
|
|
61
|
+
defaultLanguage: string;
|
|
62
|
+
useLanguageBrowser: boolean;
|
|
63
|
+
storeSelectedLanguage: boolean;
|
|
64
|
+
cookieStoreName: string;
|
|
65
|
+
}
|
|
66
|
+
interface PagesConfiguration {
|
|
67
|
+
[key: string]: {
|
|
68
|
+
path: string;
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
interface EnvironmentConfiguration {
|
|
72
|
+
appLogo: string;
|
|
73
|
+
appTitle: string;
|
|
74
|
+
navbarDisabled?: boolean;
|
|
75
|
+
baseUrl: string;
|
|
76
|
+
ssr: boolean;
|
|
77
|
+
phone: boolean;
|
|
78
|
+
errorDialogName?: string;
|
|
79
|
+
errorDialogSize?: 'sm' | 'lg' | 'xl' | 'md';
|
|
80
|
+
errorToastName?: string;
|
|
81
|
+
errorToastContainer?: string;
|
|
82
|
+
pwaUpdateEnabled?: boolean;
|
|
83
|
+
}
|
|
84
|
+
interface Endpoint {
|
|
85
|
+
baseUrl: string;
|
|
86
|
+
healthPath: string;
|
|
87
|
+
auth?: boolean;
|
|
88
|
+
wss?: boolean;
|
|
89
|
+
}
|
|
90
|
+
interface IConfiguration {
|
|
91
|
+
environment?: EnvironmentConfiguration;
|
|
92
|
+
cms?: CmsConfiguration;
|
|
93
|
+
auth?: AuthConfiguration;
|
|
94
|
+
i18n?: InternationalizationConfiguration;
|
|
95
|
+
pages?: PagesConfiguration;
|
|
96
|
+
endpoints?: {
|
|
97
|
+
[key: string]: Endpoint;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
type ProjectConfiguration<T = {
|
|
101
|
+
[k: string]: any;
|
|
102
|
+
}> = IConfiguration & {
|
|
103
|
+
production: boolean;
|
|
104
|
+
} & T;
|
|
105
|
+
|
|
106
|
+
type AppViewMode = 'app' | 'settings';
|
|
107
|
+
interface AppInfoData {
|
|
108
|
+
appName?: string;
|
|
109
|
+
}
|
|
110
|
+
interface AppInfo<T extends AppInfoData = any> {
|
|
111
|
+
id?: string;
|
|
112
|
+
type: string;
|
|
113
|
+
enabled: boolean;
|
|
114
|
+
core?: AppDetails;
|
|
115
|
+
settings?: AppDetails;
|
|
116
|
+
viewMode?: AppViewMode;
|
|
117
|
+
routes?: string[];
|
|
118
|
+
domains?: string[];
|
|
119
|
+
navigationUrl?: string;
|
|
120
|
+
data?: T;
|
|
121
|
+
}
|
|
122
|
+
interface AppDetails {
|
|
123
|
+
title: string;
|
|
124
|
+
description: string;
|
|
125
|
+
url: string;
|
|
126
|
+
icon: string;
|
|
127
|
+
auth: boolean;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
interface AppDescriber<T = any> {
|
|
131
|
+
info: AppInfo;
|
|
132
|
+
routes?: Routes;
|
|
133
|
+
providers?: (Provider | EnvironmentProviders)[];
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
declare abstract class AbstractSupportService {
|
|
137
|
+
abstract sendSupport(data: any): void;
|
|
138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractSupportService, never>;
|
|
139
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractSupportService>;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
declare const appContextFeatureKey = "app";
|
|
143
|
+
type AppTheme = 'light' | 'dark';
|
|
144
|
+
type PageTemplate = 'app' | 'basic' | 'cms' | 'content';
|
|
145
|
+
declare const RLB_APPS: InjectionToken<AppDescriber<any>>;
|
|
146
|
+
interface AppContext {
|
|
147
|
+
apps: AppInfo[];
|
|
148
|
+
currentApp: AppInfo | null;
|
|
149
|
+
language: string | null;
|
|
150
|
+
theme: AppTheme;
|
|
151
|
+
supportedLanguages: string[];
|
|
152
|
+
}
|
|
153
|
+
declare const initialAppContextState: AppContext;
|
|
154
|
+
interface AppState {
|
|
155
|
+
[appContextFeatureKey]: AppContext;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare const authsFeatureKey = "auth";
|
|
159
|
+
interface Auth {
|
|
160
|
+
currentProvider: string | null;
|
|
161
|
+
loading: boolean;
|
|
162
|
+
}
|
|
163
|
+
declare const initialAuthState: Auth;
|
|
164
|
+
interface AuthState {
|
|
165
|
+
[authsFeatureKey]: Auth;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
declare const navbarsFeatureKey = "navbar";
|
|
169
|
+
interface Navbar {
|
|
170
|
+
visible: boolean;
|
|
171
|
+
header: string | null;
|
|
172
|
+
searchVisible: boolean;
|
|
173
|
+
searchText: string | null;
|
|
174
|
+
leftItems: string[];
|
|
175
|
+
rightItems: string[];
|
|
176
|
+
loginVisible: boolean;
|
|
177
|
+
settingsVisible: boolean;
|
|
178
|
+
appsVisible: boolean;
|
|
179
|
+
separatorVisible: boolean;
|
|
180
|
+
}
|
|
181
|
+
declare const initialNavbarState: Navbar;
|
|
182
|
+
interface NavbarState {
|
|
183
|
+
[navbarsFeatureKey]: Navbar;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
declare const sidebarsFeatureKey = "sidebar";
|
|
187
|
+
interface Sidebar {
|
|
188
|
+
items: SidebarNavigableItem[];
|
|
189
|
+
visible: boolean;
|
|
190
|
+
loginVisible: boolean;
|
|
191
|
+
searchVisible: boolean;
|
|
192
|
+
appsVisible: boolean;
|
|
193
|
+
settingsVisible: boolean;
|
|
194
|
+
searchText: string | null;
|
|
195
|
+
}
|
|
196
|
+
declare const initialSidebarState: Sidebar;
|
|
197
|
+
interface SidebarState {
|
|
198
|
+
[sidebarsFeatureKey]: Sidebar;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
declare const AppContextActionsInternal: {
|
|
202
|
+
setLanguage: _ngrx_store.ActionCreator<"[AppContext/Internal] setLanguage", (props: {
|
|
203
|
+
language: string;
|
|
204
|
+
}) => {
|
|
205
|
+
language: string;
|
|
206
|
+
} & _ngrx_store.Action<"[AppContext/Internal] setLanguage">>;
|
|
207
|
+
setCurrentApp: _ngrx_store.ActionCreator<"[AppContext/Internal] setCurrentApp", (props: {
|
|
208
|
+
app: AppInfo | null;
|
|
209
|
+
mode?: AppViewMode;
|
|
210
|
+
url?: string;
|
|
211
|
+
}) => {
|
|
212
|
+
app: AppInfo | null;
|
|
213
|
+
mode?: AppViewMode;
|
|
214
|
+
url?: string;
|
|
215
|
+
} & _ngrx_store.Action<"[AppContext/Internal] setCurrentApp">>;
|
|
216
|
+
setSupportedLanguages: _ngrx_store.ActionCreator<"[AppContext/Internal] setSupportedLanguages", (props: {
|
|
217
|
+
supportedLanguages: string[];
|
|
218
|
+
}) => {
|
|
219
|
+
supportedLanguages: string[];
|
|
220
|
+
} & _ngrx_store.Action<"[AppContext/Internal] setSupportedLanguages">>;
|
|
221
|
+
setTheme: _ngrx_store.ActionCreator<"[AppContext/Internal] setTheme", (props: {
|
|
222
|
+
theme: AppTheme;
|
|
223
|
+
}) => {
|
|
224
|
+
theme: AppTheme;
|
|
225
|
+
} & _ngrx_store.Action<"[AppContext/Internal] setTheme">>;
|
|
226
|
+
addApp: _ngrx_store.ActionCreator<"[AppContext/Internal] addApp", (props: {
|
|
227
|
+
app: AppInfo;
|
|
228
|
+
}) => {
|
|
229
|
+
app: AppInfo;
|
|
230
|
+
} & _ngrx_store.Action<"[AppContext/Internal] addApp">>;
|
|
231
|
+
setViewMode: _ngrx_store.ActionCreator<"[AppContext/Internal] setViewMode", (props: {
|
|
232
|
+
viewMode?: AppViewMode;
|
|
233
|
+
}) => {
|
|
234
|
+
viewMode?: AppViewMode;
|
|
235
|
+
} & _ngrx_store.Action<"[AppContext/Internal] setViewMode">>;
|
|
236
|
+
};
|
|
237
|
+
declare const AppContextActions: {
|
|
238
|
+
setLanguage: _ngrx_store.ActionCreator<"[AppContext/API] setLanguage", (props: {
|
|
239
|
+
language: string;
|
|
240
|
+
}) => {
|
|
241
|
+
language: string;
|
|
242
|
+
} & _ngrx_store.Action<"[AppContext/API] setLanguage">>;
|
|
243
|
+
setSupportedLanguages: _ngrx_store.ActionCreator<"[AppContext/API] setSupportedLanguages", (props: {
|
|
244
|
+
supportedLanguages: string[];
|
|
245
|
+
}) => {
|
|
246
|
+
supportedLanguages: string[];
|
|
247
|
+
} & _ngrx_store.Action<"[AppContext/API] setSupportedLanguages">>;
|
|
248
|
+
setCurrentApp: _ngrx_store.ActionCreator<"[AppContext/API] setCurrentApp", (props: {
|
|
249
|
+
app: AppInfo | null;
|
|
250
|
+
mode?: AppViewMode;
|
|
251
|
+
url?: string;
|
|
252
|
+
}) => {
|
|
253
|
+
app: AppInfo | null;
|
|
254
|
+
mode?: AppViewMode;
|
|
255
|
+
url?: string;
|
|
256
|
+
} & _ngrx_store.Action<"[AppContext/API] setCurrentApp">>;
|
|
257
|
+
removeApp: _ngrx_store.ActionCreator<"[AppContext/API] removeApp", (props: {
|
|
258
|
+
appType: string;
|
|
259
|
+
}) => {
|
|
260
|
+
appType: string;
|
|
261
|
+
} & _ngrx_store.Action<"[AppContext/API] removeApp">>;
|
|
262
|
+
setTheme: _ngrx_store.ActionCreator<"[AppContext/API] setTheme", (props: {
|
|
263
|
+
theme: AppTheme;
|
|
264
|
+
}) => {
|
|
265
|
+
theme: AppTheme;
|
|
266
|
+
} & _ngrx_store.Action<"[AppContext/API] setTheme">>;
|
|
267
|
+
finalizeApp: _ngrx_store.ActionCreator<"[AppContext/API] finalizeApp", (props: {
|
|
268
|
+
appType: string;
|
|
269
|
+
appId: string;
|
|
270
|
+
data?: any;
|
|
271
|
+
}) => {
|
|
272
|
+
appType: string;
|
|
273
|
+
appId: string;
|
|
274
|
+
data?: any;
|
|
275
|
+
} & _ngrx_store.Action<"[AppContext/API] finalizeApp">>;
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
declare class AuthFeatureService {
|
|
279
|
+
private store;
|
|
280
|
+
constructor(store: Store);
|
|
281
|
+
login(): void;
|
|
282
|
+
logout(): void;
|
|
283
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthFeatureService, never>;
|
|
284
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthFeatureService>;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
declare const AuthActionsInternal: {
|
|
288
|
+
setCurrentProvider: _ngrx_store.ActionCreator<"[Auth/Internal] SetCurrentProvider", (props: {
|
|
289
|
+
currentProvider: string;
|
|
290
|
+
}) => {
|
|
291
|
+
currentProvider: string;
|
|
292
|
+
} & _ngrx_store.Action<"[Auth/Internal] SetCurrentProvider">>;
|
|
293
|
+
setLoading: _ngrx_store.ActionCreator<"[Auth/Internal] SetLoading", (props: {
|
|
294
|
+
loading: boolean;
|
|
295
|
+
}) => {
|
|
296
|
+
loading: boolean;
|
|
297
|
+
} & _ngrx_store.Action<"[Auth/Internal] SetLoading">>;
|
|
298
|
+
reset: _ngrx_store.ActionCreator<"[Auth/Internal] Reset", () => _ngrx_store.Action<"[Auth/Internal] Reset">>;
|
|
299
|
+
};
|
|
300
|
+
declare const AuthActions: {
|
|
301
|
+
login: _ngrx_store.ActionCreator<"[Auth/API] Login", () => _ngrx_store.Action<"[Auth/API] Login">>;
|
|
302
|
+
logout: _ngrx_store.ActionCreator<"[Auth/API] Logout", () => _ngrx_store.Action<"[Auth/API] Logout">>;
|
|
303
|
+
setCurrentProvider: _ngrx_store.ActionCreator<"[Auth/API] SetCurrentProvider", (props: {
|
|
304
|
+
currentProvider: string;
|
|
305
|
+
}) => {
|
|
306
|
+
currentProvider: string;
|
|
307
|
+
} & _ngrx_store.Action<"[Auth/API] SetCurrentProvider">>;
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
declare const NavbarActionsInternal: {};
|
|
311
|
+
declare const NavbarActions: {
|
|
312
|
+
setVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetVisible", (props: {
|
|
313
|
+
visible: boolean;
|
|
314
|
+
}) => {
|
|
315
|
+
visible: boolean;
|
|
316
|
+
} & _ngrx_store.Action<"[Navbar/API] SetVisible">>;
|
|
317
|
+
setSearchVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetSearchVisible", (props: {
|
|
318
|
+
visible: boolean;
|
|
319
|
+
}) => {
|
|
320
|
+
visible: boolean;
|
|
321
|
+
} & _ngrx_store.Action<"[Navbar/API] SetSearchVisible">>;
|
|
322
|
+
setHeader: _ngrx_store.ActionCreator<"[Navbar/API] SetHeader", (props: {
|
|
323
|
+
header: string | null;
|
|
324
|
+
}) => {
|
|
325
|
+
header: string | null;
|
|
326
|
+
} & _ngrx_store.Action<"[Navbar/API] SetHeader">>;
|
|
327
|
+
setSearchText: _ngrx_store.ActionCreator<"[Navbar/API] SetSearchText", (props: {
|
|
328
|
+
text: string | null;
|
|
329
|
+
}) => {
|
|
330
|
+
text: string | null;
|
|
331
|
+
} & _ngrx_store.Action<"[Navbar/API] SetSearchText">>;
|
|
332
|
+
setLeftItems: _ngrx_store.ActionCreator<"[Navbar/API] SetLeftItems", (props: {
|
|
333
|
+
items: string[];
|
|
334
|
+
}) => {
|
|
335
|
+
items: string[];
|
|
336
|
+
} & _ngrx_store.Action<"[Navbar/API] SetLeftItems">>;
|
|
337
|
+
setRightItems: _ngrx_store.ActionCreator<"[Navbar/API] SetRightItems", (props: {
|
|
338
|
+
items: string[];
|
|
339
|
+
}) => {
|
|
340
|
+
items: string[];
|
|
341
|
+
} & _ngrx_store.Action<"[Navbar/API] SetRightItems">>;
|
|
342
|
+
setLoginVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetLoginVisible", (props: {
|
|
343
|
+
visible: boolean;
|
|
344
|
+
}) => {
|
|
345
|
+
visible: boolean;
|
|
346
|
+
} & _ngrx_store.Action<"[Navbar/API] SetLoginVisible">>;
|
|
347
|
+
setSettingsVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetSettingsVisible", (props: {
|
|
348
|
+
visible: boolean;
|
|
349
|
+
}) => {
|
|
350
|
+
visible: boolean;
|
|
351
|
+
} & _ngrx_store.Action<"[Navbar/API] SetSettingsVisible">>;
|
|
352
|
+
setAppsVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetAppsVisible", (props: {
|
|
353
|
+
visible: boolean;
|
|
354
|
+
}) => {
|
|
355
|
+
visible: boolean;
|
|
356
|
+
} & _ngrx_store.Action<"[Navbar/API] SetAppsVisible">>;
|
|
357
|
+
setSeparatorVisible: _ngrx_store.ActionCreator<"[Navbar/API] SetSeparatorVisible", (props: {
|
|
358
|
+
visible: boolean;
|
|
359
|
+
}) => {
|
|
360
|
+
visible: boolean;
|
|
361
|
+
} & _ngrx_store.Action<"[Navbar/API] SetSeparatorVisible">>;
|
|
362
|
+
};
|
|
363
|
+
|
|
364
|
+
declare const SidebarActionsInternal: {};
|
|
365
|
+
declare const SidebarActions: {
|
|
366
|
+
setItems: _ngrx_store.ActionCreator<"[Sidebar/API] SetItems", (props: {
|
|
367
|
+
items: SidebarNavigableItem[];
|
|
368
|
+
}) => {
|
|
369
|
+
items: SidebarNavigableItem[];
|
|
370
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetItems">>;
|
|
371
|
+
setVisible: _ngrx_store.ActionCreator<"[Sidebar/API] SetVisible", (props: {
|
|
372
|
+
visible: boolean;
|
|
373
|
+
}) => {
|
|
374
|
+
visible: boolean;
|
|
375
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetVisible">>;
|
|
376
|
+
setLoginVisible: _ngrx_store.ActionCreator<"[Sidebar/API] SetLoginVisible", (props: {
|
|
377
|
+
visible: boolean;
|
|
378
|
+
}) => {
|
|
379
|
+
visible: boolean;
|
|
380
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetLoginVisible">>;
|
|
381
|
+
setAppsVisible: _ngrx_store.ActionCreator<"[Sidebar/API] SetAppsVisible", (props: {
|
|
382
|
+
visible: boolean;
|
|
383
|
+
}) => {
|
|
384
|
+
visible: boolean;
|
|
385
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetAppsVisible">>;
|
|
386
|
+
setSearchVisible: _ngrx_store.ActionCreator<"[Sidebar/API] SetSearchVisible", (props: {
|
|
387
|
+
visible: boolean;
|
|
388
|
+
}) => {
|
|
389
|
+
visible: boolean;
|
|
390
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetSearchVisible">>;
|
|
391
|
+
setSettingsVisible: _ngrx_store.ActionCreator<"[Sidebar/API] SetSettingsVisible", (props: {
|
|
392
|
+
visible: boolean;
|
|
393
|
+
}) => {
|
|
394
|
+
visible: boolean;
|
|
395
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetSettingsVisible">>;
|
|
396
|
+
setSearchText: _ngrx_store.ActionCreator<"[Sidebar/API] SetSearchText", (props: {
|
|
397
|
+
text: string | null;
|
|
398
|
+
}) => {
|
|
399
|
+
text: string | null;
|
|
400
|
+
} & _ngrx_store.Action<"[Sidebar/API] SetSearchText">>;
|
|
401
|
+
};
|
|
402
|
+
|
|
403
|
+
interface BaseState extends AuthState, SidebarState, NavbarState, AppState {
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
type LogLevel = 'off' | 'error' | 'warn' | 'info' | 'debug' | 'log';
|
|
407
|
+
type LoggerContext = {
|
|
408
|
+
error: (...args: any[]) => void;
|
|
409
|
+
warn: (...args: any[]) => void;
|
|
410
|
+
info: (...args: any[]) => void;
|
|
411
|
+
debug: (...args: any[]) => void;
|
|
412
|
+
log: (...args: any[]) => void;
|
|
413
|
+
};
|
|
414
|
+
declare class AppLoggerService extends AbstractLoggerService {
|
|
415
|
+
private currentLevel;
|
|
416
|
+
private timestamps;
|
|
417
|
+
constructor();
|
|
418
|
+
setLogLevel(level: LogLevel): void;
|
|
419
|
+
getLogLevel(): LogLevel;
|
|
420
|
+
enableTimestamps(enabled: boolean): void;
|
|
421
|
+
/**
|
|
422
|
+
* returns logger with context / class name
|
|
423
|
+
*/
|
|
424
|
+
for(context: string): LoggerContext;
|
|
425
|
+
logError(contextOrMessage: any, ...args: any[]): void;
|
|
426
|
+
logWarning(contextOrMessage: any, ...args: any[]): void;
|
|
427
|
+
logDebug(contextOrMessage: any, ...args: any[]): void;
|
|
428
|
+
logInfo(contextOrMessage: any, ...args: any[]): void;
|
|
429
|
+
log(contextOrMessage: any, ...args: any[]): void;
|
|
430
|
+
private print;
|
|
431
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppLoggerService, never>;
|
|
432
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppLoggerService>;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
declare class AppsService {
|
|
436
|
+
private store;
|
|
437
|
+
private activatedRoute;
|
|
438
|
+
private router;
|
|
439
|
+
private loggerService;
|
|
440
|
+
private logger;
|
|
441
|
+
constructor(store: Store<BaseState>, activatedRoute: ActivatedRoute, router: Router, loggerService: AppLoggerService, confAuth: AuthConfiguration | undefined);
|
|
442
|
+
get currentDomain(): string;
|
|
443
|
+
get apps(): AppInfo<any>[];
|
|
444
|
+
get currentApp(): AppInfo<any> | null;
|
|
445
|
+
selectApp(app?: AppInfo, viewMode?: 'app' | 'settings', url?: string): void;
|
|
446
|
+
private initAuthProviders;
|
|
447
|
+
private initRouterListener;
|
|
448
|
+
private resolveRouteAndApps;
|
|
449
|
+
private handleResolvedApps;
|
|
450
|
+
private findDeepestChild;
|
|
451
|
+
private getStoredAppId;
|
|
452
|
+
private isSettingsRoute;
|
|
453
|
+
private isDefaultRoute;
|
|
454
|
+
private getFullPath;
|
|
455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppsService, [null, null, null, null, { optional: true; }]>;
|
|
456
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppsService>;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
declare class LanguageService {
|
|
460
|
+
private translateService;
|
|
461
|
+
private cookiesService;
|
|
462
|
+
private i18nOptions;
|
|
463
|
+
private _contentLanguage;
|
|
464
|
+
contentLanguageChanged$: EventEmitter<string>;
|
|
465
|
+
constructor(translateService: TranslateService, cookiesService: CookiesService, i18nOptions: InternationalizationConfiguration);
|
|
466
|
+
get language(): string | undefined;
|
|
467
|
+
set language(value: string | undefined);
|
|
468
|
+
get contentLanguage(): string | undefined;
|
|
469
|
+
set contentLanguage(value: string | undefined);
|
|
470
|
+
get languages(): readonly string[];
|
|
471
|
+
set languages(value: string[]);
|
|
472
|
+
get defaultLanguage(): string;
|
|
473
|
+
get browserLanguage(): string;
|
|
474
|
+
translate(key: string | Array<string>, interpolateParams?: Object): any;
|
|
475
|
+
translateAsync(key: string | Array<string>, interpolateParams?: Object): rxjs.Observable<any>;
|
|
476
|
+
get languageChanged$(): rxjs.Observable<i20.LangChangeEvent>;
|
|
477
|
+
getLanguageName(l: string): string;
|
|
478
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LanguageService, [null, null, { optional: true; }]>;
|
|
479
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LanguageService>;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
declare class AppBreadcrumbService {
|
|
483
|
+
private router;
|
|
484
|
+
private route;
|
|
485
|
+
private loggerService;
|
|
486
|
+
private languageService;
|
|
487
|
+
private readonly _breadcrumbs$;
|
|
488
|
+
readonly breadcrumbs$: rxjs.Observable<BreadcrumbItem[]>;
|
|
489
|
+
private logger;
|
|
490
|
+
constructor(router: Router, route: ActivatedRoute, loggerService: AppLoggerService, languageService: LanguageService);
|
|
491
|
+
private updateBreadcrumbs;
|
|
492
|
+
private buildBreadcrumbFromRoot;
|
|
493
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBreadcrumbService, never>;
|
|
494
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppBreadcrumbService>;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
interface CacheItem<T> {
|
|
498
|
+
data: T;
|
|
499
|
+
expire: number;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
declare class LocalCacheService {
|
|
503
|
+
private options;
|
|
504
|
+
constructor(options: ProjectConfiguration);
|
|
505
|
+
private clear;
|
|
506
|
+
private readData;
|
|
507
|
+
private storeData;
|
|
508
|
+
getData<T>(ob: Observable<T>, cacheKey: string, expirationSec: number): Observable<T>;
|
|
509
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalCacheService, [{ optional: true; }]>;
|
|
510
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LocalCacheService>;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
declare abstract class AbstractMdService {
|
|
514
|
+
constructor();
|
|
515
|
+
abstract md2html(md: string): string;
|
|
516
|
+
abstract md2text(md: string): string;
|
|
517
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractMdService, never>;
|
|
518
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractMdService>;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
declare class StrapiService {
|
|
522
|
+
private http;
|
|
523
|
+
private cache;
|
|
524
|
+
private cmsOptions;
|
|
525
|
+
constructor(http: HttpClient, cache: LocalCacheService, cmsOptions: CmsConfiguration);
|
|
526
|
+
fetchHome(lang: string, cid: string): Observable<Home>;
|
|
527
|
+
fetchTopic(id: string): Observable<Topic>;
|
|
528
|
+
fetchTab(id: string): Observable<Tab>;
|
|
529
|
+
fetchFaqGroup(lang: string, cid: string): Observable<FaqGroup>;
|
|
530
|
+
private _getGuideMenuPromise;
|
|
531
|
+
getGuideMenu(lang: string, cid: string): Observable<MenuItem>;
|
|
532
|
+
fetchPage(lang: string, cid: string): Observable<Page>;
|
|
533
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StrapiService, [null, null, { optional: true; }]>;
|
|
534
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StrapiService>;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
interface MenuItem {
|
|
538
|
+
ContentId: string;
|
|
539
|
+
Order: number;
|
|
540
|
+
Title: string;
|
|
541
|
+
page: Page;
|
|
542
|
+
home: Home;
|
|
543
|
+
menu_items: MenuItem[];
|
|
544
|
+
}
|
|
545
|
+
interface Home {
|
|
546
|
+
ContentId: string;
|
|
547
|
+
MenuName: string;
|
|
548
|
+
Abstract: string;
|
|
549
|
+
Content: string;
|
|
550
|
+
Picture: any;
|
|
551
|
+
Head: any;
|
|
552
|
+
topics: Topic[];
|
|
553
|
+
}
|
|
554
|
+
interface Page {
|
|
555
|
+
ContentId: string;
|
|
556
|
+
Title: string;
|
|
557
|
+
Content: string;
|
|
558
|
+
page_tabs: Tab[];
|
|
559
|
+
topics: Topic[];
|
|
560
|
+
Cover: any;
|
|
561
|
+
}
|
|
562
|
+
interface Topic {
|
|
563
|
+
id: string;
|
|
564
|
+
ContentId: string;
|
|
565
|
+
Title: string;
|
|
566
|
+
Content: string;
|
|
567
|
+
Picture: any;
|
|
568
|
+
page: Page;
|
|
569
|
+
}
|
|
570
|
+
interface Tab {
|
|
571
|
+
id: string;
|
|
572
|
+
ContentId: string;
|
|
573
|
+
Title: string;
|
|
574
|
+
Icon: string;
|
|
575
|
+
Content: string;
|
|
576
|
+
FaqTitle: string;
|
|
577
|
+
FaqContent: string;
|
|
578
|
+
steps: Step[];
|
|
579
|
+
faqs: Faq[];
|
|
580
|
+
}
|
|
581
|
+
interface Step {
|
|
582
|
+
ContentId: string;
|
|
583
|
+
Title: string;
|
|
584
|
+
Content: string;
|
|
585
|
+
Picture: any;
|
|
586
|
+
}
|
|
587
|
+
interface FaqGroup {
|
|
588
|
+
ContentId: string;
|
|
589
|
+
Title: string;
|
|
590
|
+
Content: string;
|
|
591
|
+
faqs: Faq[];
|
|
592
|
+
}
|
|
593
|
+
interface Faq {
|
|
594
|
+
ContentId: string;
|
|
595
|
+
Title: string;
|
|
596
|
+
Content: string;
|
|
597
|
+
Question: string;
|
|
598
|
+
Answer: string;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
type ErrorOutput = 'dialog' | 'toast' | 'console';
|
|
602
|
+
|
|
603
|
+
declare class ErrorManagementService {
|
|
604
|
+
private dialogService;
|
|
605
|
+
private toastService;
|
|
606
|
+
private languageService;
|
|
607
|
+
private options;
|
|
608
|
+
constructor(dialogService: ModalService, toastService: ToastService, languageService: LanguageService, options: ProjectConfiguration);
|
|
609
|
+
showError(type?: ModalType, out?: ErrorOutput, error?: any): Observable<_open_rlb_ng_bootstrap.ToastResult<any> | null> | Observable<{
|
|
610
|
+
reason: string;
|
|
611
|
+
}>;
|
|
612
|
+
showDialog(type: ModalType, error?: Error): Observable<_open_rlb_ng_bootstrap.ModalResult<void>>;
|
|
613
|
+
showToast(type: ModalType, error?: any): Observable<_open_rlb_ng_bootstrap.ToastResult<any> | null>;
|
|
614
|
+
manageUI<T>(type?: ModalType, out?: ErrorOutput): OperatorFunction<T, T>;
|
|
615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorManagementService, [null, null, null, { optional: true; }]>;
|
|
616
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorManagementService>;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
declare function provideRlbI18n(i18n?: InternationalizationConfiguration): (EnvironmentProviders | Provider)[];
|
|
620
|
+
|
|
621
|
+
declare class TranslateBrowserLoader implements TranslateLoader {
|
|
622
|
+
private http;
|
|
623
|
+
private transferState;
|
|
624
|
+
private prefix;
|
|
625
|
+
private suffix;
|
|
626
|
+
constructor(http: HttpClient, transferState: TransferState, prefix?: string, suffix?: string);
|
|
627
|
+
getTranslation(lang: string): Observable<any>;
|
|
628
|
+
}
|
|
629
|
+
declare function translateBrowserLoaderFactory(httpClient: HttpClient, transferState: TransferState): TranslateBrowserLoader;
|
|
630
|
+
|
|
631
|
+
declare class AppStorageService {
|
|
632
|
+
readLocal(key: string): string | null;
|
|
633
|
+
writeLocal(key: string, value: any): void;
|
|
634
|
+
removeLocal(key: string): void;
|
|
635
|
+
clearLocal(): void;
|
|
636
|
+
readSession(key: string): string | null;
|
|
637
|
+
writeSession(key: string, value: any): void;
|
|
638
|
+
removeSession(key: string): void;
|
|
639
|
+
clearSession(): void;
|
|
640
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppStorageService, never>;
|
|
641
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppStorageService>;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
declare class CookiesService {
|
|
645
|
+
getCookie(name: string): string | undefined;
|
|
646
|
+
deleteCookie(name: string): void;
|
|
647
|
+
setCookie(name: string, value: string, expireDays?: number, path?: string): void;
|
|
648
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CookiesService, never>;
|
|
649
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CookiesService>;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
declare class PwaUpdaterService {
|
|
653
|
+
private readonly updates;
|
|
654
|
+
private readonly modalService;
|
|
655
|
+
private readonly languageService;
|
|
656
|
+
private _newVersionAvailable$;
|
|
657
|
+
get newVersionAvailable$(): rxjs.Observable<void>;
|
|
658
|
+
constructor(updates: SwUpdate, modalService: ModalService, languageService: LanguageService);
|
|
659
|
+
update(): void;
|
|
660
|
+
checkForUpdates(): Promise<boolean>;
|
|
661
|
+
checkWithDialog(): rxjs.Observable<Promise<void>>;
|
|
662
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PwaUpdaterService, never>;
|
|
663
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PwaUpdaterService>;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
declare class UtilsService {
|
|
667
|
+
isNumber(evt: any): boolean;
|
|
668
|
+
toPlainDataObject(o: ({
|
|
669
|
+
[k: string]: any;
|
|
670
|
+
} | {
|
|
671
|
+
[k: string]: any;
|
|
672
|
+
}[])): any;
|
|
673
|
+
groupBy<T>(xs: T[], predicate: (o: T) => string): {
|
|
674
|
+
[i: string]: T[];
|
|
675
|
+
};
|
|
676
|
+
private s;
|
|
677
|
+
compareArrayUnsort(a1: any, a2: any): boolean;
|
|
678
|
+
removeMD(md: string, options?: {
|
|
679
|
+
listUnicodeChar?: string;
|
|
680
|
+
stripListLeaders?: boolean;
|
|
681
|
+
useImgAltText?: boolean;
|
|
682
|
+
gfm?: boolean;
|
|
683
|
+
}): string;
|
|
684
|
+
floatStr(input: string | number): string;
|
|
685
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
686
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
declare class ParseJwtService {
|
|
690
|
+
private _atob;
|
|
691
|
+
parseJwt(token?: string): any;
|
|
692
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ParseJwtService, never>;
|
|
693
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ParseJwtService>;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
declare class AuthenticationService {
|
|
697
|
+
private oidcSecurityService;
|
|
698
|
+
private cookiesService;
|
|
699
|
+
private router;
|
|
700
|
+
private readonly parseJwtService;
|
|
701
|
+
private readonly store;
|
|
702
|
+
private envConfig;
|
|
703
|
+
private authConfig;
|
|
704
|
+
modal: Window | null;
|
|
705
|
+
constructor(oidcSecurityService: OidcSecurityService, cookiesService: CookiesService, router: Router, parseJwtService: ParseJwtService, store: Store<BaseState>, envConfig: EnvironmentConfiguration, authConfig: AuthConfiguration);
|
|
706
|
+
get oidc(): OidcSecurityService;
|
|
707
|
+
get config(): AuthConfiguration;
|
|
708
|
+
get currentProvider(): _open_rlb_ng_app.ProviderConfiguration | undefined;
|
|
709
|
+
checkAuthMultiple(url?: string | undefined): Observable<LoginResponse[]>;
|
|
710
|
+
login(): void;
|
|
711
|
+
logout(): Promise<void>;
|
|
712
|
+
logout$(): Observable<unknown>;
|
|
713
|
+
get userInfo$(): Observable<any>;
|
|
714
|
+
get isAuthenticated$(): Observable<boolean>;
|
|
715
|
+
get accessToken$(): Observable<string | undefined>;
|
|
716
|
+
get idToken$(): Observable<string | undefined>;
|
|
717
|
+
get refreshToken$(): Observable<string | undefined>;
|
|
718
|
+
get roles$(): Observable<string[]>;
|
|
719
|
+
matchRoles(roles: string[]): Observable<boolean>;
|
|
720
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
721
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationService>;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
declare class RlbRole implements OnInit {
|
|
725
|
+
private readonly templateRef;
|
|
726
|
+
private readonly viewContainer;
|
|
727
|
+
private readonly authenticationService;
|
|
728
|
+
private readonly parseJwtService;
|
|
729
|
+
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, authenticationService: AuthenticationService, parseJwtService: ParseJwtService);
|
|
730
|
+
set roles(roles: string[] | string);
|
|
731
|
+
private updateView;
|
|
732
|
+
ngOnInit(): void;
|
|
733
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RlbRole, never>;
|
|
734
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RlbRole, "[roles]", never, { "roles": { "alias": "roles"; "required": false; }; }, {}, never, never, false, never>;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
declare const oauthGuard: CanActivateFn;
|
|
738
|
+
|
|
739
|
+
declare const oauthPasswordGuard: CanActivateFn;
|
|
740
|
+
|
|
741
|
+
interface Token {
|
|
742
|
+
access_token: string | null;
|
|
743
|
+
expires_in: number;
|
|
744
|
+
token_type: string;
|
|
745
|
+
scope: string;
|
|
746
|
+
id_token: string | null;
|
|
747
|
+
refresh_token: string | null;
|
|
748
|
+
}
|
|
749
|
+
declare class OauthPasswordService implements HttpInterceptor {
|
|
750
|
+
private readonly httpClient;
|
|
751
|
+
private readonly authenticationService;
|
|
752
|
+
private timer;
|
|
753
|
+
private _onUpdateToken;
|
|
754
|
+
constructor(httpClient: HttpClient, authenticationService: AuthenticationService);
|
|
755
|
+
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
756
|
+
private get access_token();
|
|
757
|
+
private set access_token(value);
|
|
758
|
+
private get refresh_token();
|
|
759
|
+
private set refresh_token(value);
|
|
760
|
+
get accessToken(): string | null;
|
|
761
|
+
set onUpdateToken(v: ((token: string | null) => void) | null);
|
|
762
|
+
login(username: string, password: string): Promise<Token>;
|
|
763
|
+
loggedIn(): boolean;
|
|
764
|
+
logout(): void;
|
|
765
|
+
private _login;
|
|
766
|
+
private _refreshToken;
|
|
767
|
+
private initRefreshToken;
|
|
768
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OauthPasswordService, never>;
|
|
769
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OauthPasswordService>;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
declare class TokenOauthInterceptor implements HttpInterceptor {
|
|
773
|
+
private authenticationService;
|
|
774
|
+
private appconfig;
|
|
775
|
+
constructor(authenticationService: AuthenticationService, appconfig: IConfiguration);
|
|
776
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
777
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TokenOauthInterceptor, never>;
|
|
778
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TokenOauthInterceptor>;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
interface UserClaims {
|
|
782
|
+
exp?: number;
|
|
783
|
+
iat?: number;
|
|
784
|
+
auth_time?: number;
|
|
785
|
+
jti?: string;
|
|
786
|
+
iss?: string;
|
|
787
|
+
aud?: string;
|
|
788
|
+
sub?: string;
|
|
789
|
+
typ?: string;
|
|
790
|
+
azp?: string;
|
|
791
|
+
nonce?: string;
|
|
792
|
+
session_state?: string;
|
|
793
|
+
at_hash?: string;
|
|
794
|
+
acr?: string;
|
|
795
|
+
email_verified?: boolean;
|
|
796
|
+
name?: string;
|
|
797
|
+
preferred_username?: string;
|
|
798
|
+
locale?: string;
|
|
799
|
+
given_name?: string;
|
|
800
|
+
family_name?: string;
|
|
801
|
+
email?: string;
|
|
802
|
+
picture?: string;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
interface JwtUser {
|
|
806
|
+
email: string;
|
|
807
|
+
email_verified: boolean;
|
|
808
|
+
family_name: string;
|
|
809
|
+
given_name: string;
|
|
810
|
+
name: string;
|
|
811
|
+
preferred_username: string;
|
|
812
|
+
sub: string;
|
|
813
|
+
[key: string]: string | number | boolean;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
declare function provideRlbCodeBrowserOAuth(auth: AuthConfiguration | undefined): EnvironmentProviders;
|
|
817
|
+
|
|
818
|
+
interface KeycloakUser {
|
|
819
|
+
attributes: {};
|
|
820
|
+
email: string;
|
|
821
|
+
emailVerified: boolean;
|
|
822
|
+
firstName: string;
|
|
823
|
+
id: string;
|
|
824
|
+
lastName: string;
|
|
825
|
+
userProfileMetadata: {
|
|
826
|
+
attributes: {
|
|
827
|
+
name: string;
|
|
828
|
+
displayName: string;
|
|
829
|
+
multivalued: boolean;
|
|
830
|
+
required: boolean;
|
|
831
|
+
readOnly: boolean;
|
|
832
|
+
validators: {
|
|
833
|
+
[key: string]: any;
|
|
834
|
+
}[];
|
|
835
|
+
}[];
|
|
836
|
+
groups: {
|
|
837
|
+
name: string;
|
|
838
|
+
displayHeader: string;
|
|
839
|
+
displayDescription: string;
|
|
840
|
+
}[];
|
|
841
|
+
};
|
|
842
|
+
username: string;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
interface KeycloakDevice {
|
|
846
|
+
os: string;
|
|
847
|
+
osVersion: string;
|
|
848
|
+
device: string;
|
|
849
|
+
lastAccess: number;
|
|
850
|
+
current: boolean;
|
|
851
|
+
sessions: KeycloakSession[];
|
|
852
|
+
mobile: boolean;
|
|
853
|
+
}
|
|
854
|
+
interface KeycloakSession {
|
|
855
|
+
id: string;
|
|
856
|
+
ipAddress: string;
|
|
857
|
+
started: number;
|
|
858
|
+
expires: number;
|
|
859
|
+
clients: KeycloakClient[];
|
|
860
|
+
browser: string;
|
|
861
|
+
os: string;
|
|
862
|
+
osVersion: string;
|
|
863
|
+
device: string;
|
|
864
|
+
lastAccess: number;
|
|
865
|
+
current: boolean;
|
|
866
|
+
mobile: boolean;
|
|
867
|
+
clientslist: string;
|
|
868
|
+
}
|
|
869
|
+
interface KeycloakClient {
|
|
870
|
+
clientId: string;
|
|
871
|
+
clientName: string;
|
|
872
|
+
userConsentRequired: boolean;
|
|
873
|
+
inUse: boolean;
|
|
874
|
+
offlineAccess: boolean;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
interface KeycloakCredential {
|
|
878
|
+
type: string;
|
|
879
|
+
category: string;
|
|
880
|
+
displayName: string;
|
|
881
|
+
helptext: string;
|
|
882
|
+
iconCssClass: string;
|
|
883
|
+
updateAction?: string;
|
|
884
|
+
removeable: boolean;
|
|
885
|
+
userCredentialMetadatas: KeycloakUserCredentialMetadata[];
|
|
886
|
+
createAction?: string;
|
|
887
|
+
}
|
|
888
|
+
interface KeycloakUserCredentialMetadata {
|
|
889
|
+
credential: _KeycloakCredential;
|
|
890
|
+
}
|
|
891
|
+
interface _KeycloakCredential {
|
|
892
|
+
id: string;
|
|
893
|
+
type: string;
|
|
894
|
+
userLabel: string;
|
|
895
|
+
createdDate: number;
|
|
896
|
+
credentialData: string;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
declare class KeycloakProfileService {
|
|
900
|
+
private http;
|
|
901
|
+
private readonly authService;
|
|
902
|
+
private readonly errorManagementService;
|
|
903
|
+
private readonly oidcSecurityService;
|
|
904
|
+
constructor(http: HttpClient, authService: AuthenticationService, errorManagementService: ErrorManagementService, oidcSecurityService: OidcSecurityService);
|
|
905
|
+
private get baseUrl();
|
|
906
|
+
getUserProfile(): Observable<KeycloakUser>;
|
|
907
|
+
updateUserProfile(data: KeycloakUser): Observable<void>;
|
|
908
|
+
getDevices(): Observable<KeycloakSession[]>;
|
|
909
|
+
getCredentials(): Observable<KeycloakCredential[]>;
|
|
910
|
+
removeCredential(id: string): Observable<void>;
|
|
911
|
+
configureOTP(): void;
|
|
912
|
+
updatePassword(): void;
|
|
913
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeycloakProfileService, never>;
|
|
914
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KeycloakProfileService>;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
interface VerifyDeactivate {
|
|
918
|
+
verifyDeactivate: () => boolean | Observable<boolean>;
|
|
919
|
+
}
|
|
920
|
+
declare const verifyDeactivate: CanDeactivateFn<VerifyDeactivate>;
|
|
921
|
+
|
|
922
|
+
declare class ErrorModalComponent implements IModal<string, void>, OnInit {
|
|
923
|
+
data: ModalData<string>;
|
|
924
|
+
onEnter(): void;
|
|
925
|
+
ngOnInit(): void;
|
|
926
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorModalComponent, never>;
|
|
927
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorModalComponent, "ng-component", never, {}, {}, never, never, true, [{ directive: typeof _open_rlb_ng_bootstrap.ModalDirective; inputs: { "id": "id"; "data-instance": "data-instance"; "data-options": "data-options"; }; outputs: {}; }]>;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
declare class ModalAppsComponent implements IModal<AppInfo[], AppInfo> {
|
|
931
|
+
data: ModalData<any>;
|
|
932
|
+
valid?: boolean;
|
|
933
|
+
result?: any;
|
|
934
|
+
apps: AppInfo[];
|
|
935
|
+
appSelected(app: AppInfo): void;
|
|
936
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalAppsComponent, never>;
|
|
937
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalAppsComponent, "ng-component", never, {}, {}, never, never, true, [{ directive: typeof _open_rlb_ng_bootstrap.ModalDirective; inputs: { "id": "id"; "data-instance": "data-instance"; "data-options": "data-options"; }; outputs: {}; }]>;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
declare function getDefaultRoutes(config?: PagesConfiguration): Routes;
|
|
941
|
+
|
|
942
|
+
declare class AsMultiPipe implements PipeTransform {
|
|
943
|
+
transform<T>(value: T | T[]): T[];
|
|
944
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AsMultiPipe, never>;
|
|
945
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AsMultiPipe, "asMulti", false>;
|
|
946
|
+
}
|
|
947
|
+
declare class AsSinglePipe implements PipeTransform {
|
|
948
|
+
transform<T>(value: T | T[]): T;
|
|
949
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AsSinglePipe, never>;
|
|
950
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AsSinglePipe, "asSingle", false>;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
declare class CmsPipe implements PipeTransform {
|
|
954
|
+
private cmsOptions;
|
|
955
|
+
constructor(cmsOptions: CmsConfiguration);
|
|
956
|
+
transform(value: string, ...args: unknown[]): string;
|
|
957
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmsPipe, [{ optional: true; }]>;
|
|
958
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CmsPipe, "cms", false>;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
declare class LeftComponentPipe implements PipeTransform {
|
|
962
|
+
private config;
|
|
963
|
+
constructor(config: NavbarComponents);
|
|
964
|
+
transform(value: string): Type<any>;
|
|
965
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LeftComponentPipe, never>;
|
|
966
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LeftComponentPipe, "leftComponent", false>;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
declare class RightComponentPipe implements PipeTransform {
|
|
970
|
+
private config;
|
|
971
|
+
constructor(config: NavbarComponents);
|
|
972
|
+
transform(value: string): Type<any>;
|
|
973
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RightComponentPipe, never>;
|
|
974
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RightComponentPipe, "rightComponent", false>;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
declare class TruncatePipe implements PipeTransform {
|
|
978
|
+
transform(value?: string, limit?: number, completeWords?: boolean, ellipsis?: string): string | undefined;
|
|
979
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
|
|
980
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
declare class AutolinkPipe implements PipeTransform {
|
|
984
|
+
transform(value?: string, target?: string, rel?: string, id?: string): string;
|
|
985
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutolinkPipe, never>;
|
|
986
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AutolinkPipe, "autolink", false>;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
declare class AppContainerComponent implements OnInit, OnDestroy {
|
|
990
|
+
env: EnvironmentConfiguration;
|
|
991
|
+
store: Store<BaseState>;
|
|
992
|
+
private readonly router;
|
|
993
|
+
private storage;
|
|
994
|
+
private readonly pwaUpdaterService;
|
|
995
|
+
private readonly appsService;
|
|
996
|
+
private readonly loggerService;
|
|
997
|
+
private swUpdateSubscription;
|
|
998
|
+
private readonly templateSubject;
|
|
999
|
+
modalContainerId: string;
|
|
1000
|
+
toastContainerIds: string | string[];
|
|
1001
|
+
private logger;
|
|
1002
|
+
constructor(env: EnvironmentConfiguration, store: Store<BaseState>, router: Router, storage: AppStorageService, pwaUpdaterService: PwaUpdaterService, appsService: AppsService, loggerService: AppLoggerService);
|
|
1003
|
+
get template$(): rxjs.Observable<PageTemplate>;
|
|
1004
|
+
ngOnDestroy(): void;
|
|
1005
|
+
ngOnInit(): void;
|
|
1006
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppContainerComponent, never>;
|
|
1007
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppContainerComponent, "rlb-app", never, { "modalContainerId": { "alias": "modal-container-id"; "required": false; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": false; }; }, {}, never, never, false, never>;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
declare class AppTemplateComponent implements OnDestroy {
|
|
1011
|
+
env: EnvironmentConfiguration;
|
|
1012
|
+
store: Store<BaseState>;
|
|
1013
|
+
appsService: AppsService;
|
|
1014
|
+
private readonly authService;
|
|
1015
|
+
private navbarItemsSubscription;
|
|
1016
|
+
private sidebarItemsSubscription;
|
|
1017
|
+
private sidebarFooterItemsSubscription;
|
|
1018
|
+
navSearchText: string | null;
|
|
1019
|
+
navbarItems: NavigableItem[];
|
|
1020
|
+
sidebarItems: NavigableItem[];
|
|
1021
|
+
sidebarFooterItems: NavigableItem[];
|
|
1022
|
+
modalContainerId: string;
|
|
1023
|
+
toastContainerIds: string | string[];
|
|
1024
|
+
constructor(env: EnvironmentConfiguration, store: Store<BaseState>, appsService: AppsService, authService: AuthenticationService);
|
|
1025
|
+
ngOnDestroy(): void;
|
|
1026
|
+
get sidebarVisible$(): rxjs.Observable<boolean>;
|
|
1027
|
+
get sidearHasLogin$(): rxjs.Observable<boolean>;
|
|
1028
|
+
get sidearHasSearch$(): rxjs.Observable<boolean>;
|
|
1029
|
+
get sidebarItems$(): rxjs.Observable<SidebarNavigableItem[]>;
|
|
1030
|
+
setSidearSearchText(text: string | null): void;
|
|
1031
|
+
setNavbarSearchText(text: string | null): void;
|
|
1032
|
+
get sidearHasSettings$(): rxjs.Observable<boolean>;
|
|
1033
|
+
get sidearAppsVisible$(): rxjs.Observable<boolean>;
|
|
1034
|
+
get navVisible$(): rxjs.Observable<boolean>;
|
|
1035
|
+
get navSearchVisible$(): rxjs.Observable<boolean>;
|
|
1036
|
+
get navHeader$(): rxjs.Observable<string | null>;
|
|
1037
|
+
get isAuth$(): rxjs.Observable<boolean>;
|
|
1038
|
+
get user$(): rxjs.Observable<any>;
|
|
1039
|
+
get navLeftItems$(): rxjs.Observable<string[]>;
|
|
1040
|
+
get navRightItems$(): rxjs.Observable<string[]>;
|
|
1041
|
+
get theme(): _open_rlb_ng_app.AppTheme;
|
|
1042
|
+
get navbarHasLogin$(): rxjs.Observable<boolean>;
|
|
1043
|
+
get navbarHasSettings$(): rxjs.Observable<boolean>;
|
|
1044
|
+
get navbarHasApps$(): rxjs.Observable<boolean>;
|
|
1045
|
+
get apps(): _open_rlb_ng_app.AppInfo<any>[];
|
|
1046
|
+
get separatorVisible$(): rxjs.Observable<boolean>;
|
|
1047
|
+
loginNav(event: MouseEvent): void;
|
|
1048
|
+
login(): void;
|
|
1049
|
+
onSideBarItemClick(item: SidebarNavigableItem): void;
|
|
1050
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppTemplateComponent, never>;
|
|
1051
|
+
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>;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
declare class BaseComponent implements OnInit {
|
|
1055
|
+
private breakpointObserver;
|
|
1056
|
+
private platformId;
|
|
1057
|
+
constructor(breakpointObserver: BreakpointObserver, platformId: Object);
|
|
1058
|
+
breadcrumb: BreadcrumbItem[] | undefined;
|
|
1059
|
+
title: string;
|
|
1060
|
+
subtitle: string;
|
|
1061
|
+
get isHandset$(): Observable<boolean>;
|
|
1062
|
+
ngOnInit(): void;
|
|
1063
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
|
|
1064
|
+
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>;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
declare class CmsComponent {
|
|
1068
|
+
private strapiService;
|
|
1069
|
+
private languageService;
|
|
1070
|
+
private cmsOptions;
|
|
1071
|
+
private mdService?;
|
|
1072
|
+
constructor(strapiService: StrapiService, languageService: LanguageService, cmsOptions: CmsConfiguration, mdService?: AbstractMdService | undefined);
|
|
1073
|
+
contentId: string | undefined;
|
|
1074
|
+
breadcrumb: BreadcrumbItem[] | undefined;
|
|
1075
|
+
page: Page | undefined;
|
|
1076
|
+
private subscriptionLang;
|
|
1077
|
+
private subscriptionPage;
|
|
1078
|
+
ngOnDestroy(): void;
|
|
1079
|
+
ngOnInit(): void;
|
|
1080
|
+
md(md: string): string;
|
|
1081
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmsComponent, [null, null, { optional: true; }, { optional: true; }]>;
|
|
1082
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CmsComponent, "rlb-cms-template", never, { "contentId": { "alias": "contentId"; "required": false; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; }; }, {}, never, never, false, never>;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
declare class ContentComponent {
|
|
1086
|
+
private breakpointObserver;
|
|
1087
|
+
private platformId;
|
|
1088
|
+
constructor(breakpointObserver: BreakpointObserver, platformId: Object);
|
|
1089
|
+
get isHandset$(): Observable<boolean>;
|
|
1090
|
+
ngOnInit(): void;
|
|
1091
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentComponent, never>;
|
|
1092
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentComponent, "rlb-content-template", never, {}, {}, never, ["[all]", "[default]", "[mobile]"], false, never>;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
declare class ToastComponent implements IToast<string, void> {
|
|
1096
|
+
data: ToastData<string>;
|
|
1097
|
+
valid?: boolean;
|
|
1098
|
+
result?: any;
|
|
1099
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
1100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "ng-component", never, {}, {}, never, never, true, [{ directive: typeof _open_rlb_ng_bootstrap.ToastDirective; inputs: { "id": "id"; "data-instance": "data-instance"; "data-options": "data-options"; }; outputs: {}; }]>;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
declare class CmsContentComponent {
|
|
1104
|
+
private route;
|
|
1105
|
+
constructor(route: ActivatedRoute);
|
|
1106
|
+
get contentId(): any;
|
|
1107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmsContentComponent, never>;
|
|
1108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CmsContentComponent, "rlb-cms-content", never, {}, {}, never, never, false, never>;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
declare class CookiesComponent {
|
|
1112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CookiesComponent, never>;
|
|
1113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CookiesComponent, "rlb-cookies", never, {}, {}, never, never, false, never>;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
declare class NotFoundComponent {
|
|
1117
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
|
|
1118
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "rlb-not-found", never, {}, {}, never, never, false, never>;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
declare class PrivacyComponent {
|
|
1122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrivacyComponent, never>;
|
|
1123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrivacyComponent, "rlb-privacy", never, {}, {}, never, never, false, never>;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
declare class SupportComponent {
|
|
1127
|
+
private supportService;
|
|
1128
|
+
private _location;
|
|
1129
|
+
supportForm: FormGroup;
|
|
1130
|
+
constructor(supportService: AbstractSupportService, _location: Location);
|
|
1131
|
+
hasError(form: string, controlName: string, errorName: string): boolean;
|
|
1132
|
+
sendSupport(data: any): void;
|
|
1133
|
+
backClicked(): void;
|
|
1134
|
+
ngOnInit(): void;
|
|
1135
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupportComponent, never>;
|
|
1136
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupportComponent, "rlb-support", never, {}, {}, never, never, false, never>;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
declare class TermsAndConditionsComponent {
|
|
1140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TermsAndConditionsComponent, never>;
|
|
1141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TermsAndConditionsComponent, "rlb-terms-and-conditions", never, {}, {}, never, never, false, never>;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
declare class RlbAppModule {
|
|
1145
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RlbAppModule, never>;
|
|
1146
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RlbAppModule, [typeof CmsContentComponent, typeof CookiesComponent, typeof NotFoundComponent, typeof PrivacyComponent, typeof SupportComponent, typeof TermsAndConditionsComponent, 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 i18.CommonModule, typeof i19.FormsModule, typeof i19.ReactiveFormsModule, typeof i20.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i22.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 i20.TranslateModule, typeof _open_rlb_ng_bootstrap.RlbBootstrapModule, typeof i22.RouterModule, typeof i19.FormsModule]>;
|
|
1147
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RlbAppModule>;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
declare function provideRlbConfig<T = {
|
|
1151
|
+
[k: string]: any;
|
|
1152
|
+
}>(env: ProjectConfiguration<T>): (EnvironmentProviders | Provider)[];
|
|
1153
|
+
declare function provideApp(app: AppDescriber): (EnvironmentProviders | Provider)[];
|
|
1154
|
+
|
|
1155
|
+
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_CFG, RLB_CFG_AUTH, RLB_CFG_CMS, RLB_CFG_ENV, RLB_CFG_I18N, RLB_CFG_PAGES, RightComponentPipe, RlbAppModule, RlbRole, SidebarActions, SidebarActionsInternal, StrapiService, ToastComponent, TokenOauthInterceptor, TranslateBrowserLoader, TruncatePipe, UtilsService, appContextFeatureKey, authsFeatureKey, getDefaultRoutes, initialAppContextState, initialAuthState, initialNavbarState, initialSidebarState, navbarsFeatureKey, oauthGuard, oauthPasswordGuard, provideApp, provideRlbCodeBrowserOAuth, provideRlbConfig, provideRlbI18n, sidebarsFeatureKey, translateBrowserLoaderFactory, verifyDeactivate };
|
|
1156
|
+
export type { AppContext, AppDescriber, AppDetails, AppInfo, AppInfoData, AppState, AppTheme, AppViewMode, Auth, AuthConfiguration, AuthState, BaseState, CacheItem, CmsConfiguration, Endpoint, EnvironmentConfiguration, ErrorOutput, Faq, FaqGroup, Home, IConfiguration, InternationalizationConfiguration, JwtUser, KeycloakClient, KeycloakCredential, KeycloakDevice, KeycloakSession, KeycloakUser, KeycloakUserCredentialMetadata, LogLevel, LoggerContext, MenuItem, Navbar, NavbarComponents, NavbarState, Page, PageTemplate, PagesConfiguration, ProjectConfiguration, ProviderConfiguration, Sidebar, SidebarState, Step, Tab, Token, Topic, UserClaims, VerifyDeactivate, _KeycloakCredential };
|