@open-rlb/ng-app 3.1.55 → 3.1.57
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/package.json
CHANGED
|
@@ -8,7 +8,7 @@ import { Store } from '@ngrx/store';
|
|
|
8
8
|
import * as rxjs from 'rxjs';
|
|
9
9
|
import { Observable, OperatorFunction } from 'rxjs';
|
|
10
10
|
import * as _open_rlb_ng_bootstrap from '@open-rlb/ng-bootstrap';
|
|
11
|
-
import { SidebarNavigableItem, BreadcrumbItem, UniqueIdService, ModalService, ToastService, ModalType, IModal, ModalData, NavigableItem, IToast, ToastData
|
|
11
|
+
import { SidebarNavigableItem, BreadcrumbItem, UniqueIdService, ModalService, ToastService, ModalType, IModal, ModalData, VisibilityEventBase, NavigableItem, OffcanvasComponent, VisibilityEvent, IToast, ToastData } from '@open-rlb/ng-bootstrap';
|
|
12
12
|
import * as i23 from '@ngx-translate/core';
|
|
13
13
|
import { TranslateService, TranslateLoader } from '@ngx-translate/core';
|
|
14
14
|
import { SwUpdate } from '@angular/service-worker';
|
|
@@ -1113,11 +1113,47 @@ declare class AppContainerComponent implements OnInit, OnDestroy {
|
|
|
1113
1113
|
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>;
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
|
+
declare class SettingsDropdownSelectorComponent implements OnDestroy {
|
|
1117
|
+
mode: i0.InputSignal<"desktop" | "mobile">;
|
|
1118
|
+
apps: i0.InputSignal<AppInfo<any>[]>;
|
|
1119
|
+
navbarHasSettings: i0.InputSignal<unknown>;
|
|
1120
|
+
navbarHasLogin: i0.InputSignal<unknown>;
|
|
1121
|
+
isAuth: i0.InputSignal<unknown>;
|
|
1122
|
+
appSelected: i0.OutputEmitterRef<AppInfo<any>>;
|
|
1123
|
+
activeSlide: number;
|
|
1124
|
+
private readonly pageOptions;
|
|
1125
|
+
private readonly store;
|
|
1126
|
+
private readonly languageService;
|
|
1127
|
+
private readonly toastService;
|
|
1128
|
+
private readonly router;
|
|
1129
|
+
private readonly menu;
|
|
1130
|
+
constructor();
|
|
1131
|
+
get pages(): PagesConfiguration | null;
|
|
1132
|
+
selectApp(app: AppInfo): void;
|
|
1133
|
+
goToFirstSlide(): void;
|
|
1134
|
+
goToInlineSettings(): void;
|
|
1135
|
+
logout(): void;
|
|
1136
|
+
ngOnDestroy(): void;
|
|
1137
|
+
change(event: VisibilityEventBase): void;
|
|
1138
|
+
get languages(): {
|
|
1139
|
+
value: string;
|
|
1140
|
+
label: string;
|
|
1141
|
+
}[];
|
|
1142
|
+
get currentLanguage(): string;
|
|
1143
|
+
set currentLanguage(value: string);
|
|
1144
|
+
get darkMode(): boolean;
|
|
1145
|
+
set darkMode(value: boolean);
|
|
1146
|
+
private close;
|
|
1147
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsDropdownSelectorComponent, never>;
|
|
1148
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsDropdownSelectorComponent, "rlb-settings-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "navbarHasSettings": { "alias": "navbarHasSettings"; "required": true; "isSignal": true; }; "navbarHasLogin": { "alias": "navbarHasLogin"; "required": true; "isSignal": true; }; "isAuth": { "alias": "isAuth"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1116
1151
|
declare class AppTemplateComponent implements OnDestroy {
|
|
1117
1152
|
env: EnvironmentConfiguration;
|
|
1118
1153
|
store: Store<BaseState>;
|
|
1119
1154
|
appsService: AppsService;
|
|
1120
1155
|
private readonly authService;
|
|
1156
|
+
private readonly router;
|
|
1121
1157
|
private navbarItemsSubscription;
|
|
1122
1158
|
private sidebarItemsSubscription;
|
|
1123
1159
|
private sidebarFooterItemsSubscription;
|
|
@@ -1127,7 +1163,9 @@ declare class AppTemplateComponent implements OnDestroy {
|
|
|
1127
1163
|
sidebarFooterItems: NavigableItem[];
|
|
1128
1164
|
modalContainerId: string;
|
|
1129
1165
|
toastContainerIds: string | string[];
|
|
1130
|
-
|
|
1166
|
+
readonly mobileOffcanvas: i0.Signal<OffcanvasComponent | undefined>;
|
|
1167
|
+
readonly mobileSettingsMenu: i0.Signal<SettingsDropdownSelectorComponent | undefined>;
|
|
1168
|
+
constructor(env: EnvironmentConfiguration, store: Store<BaseState>, appsService: AppsService, authService: AuthenticationService, router: Router);
|
|
1131
1169
|
ngOnDestroy(): void;
|
|
1132
1170
|
get sidebarVisible$(): rxjs.Observable<boolean>;
|
|
1133
1171
|
get sidearHasLogin$(): rxjs.Observable<boolean>;
|
|
@@ -1154,6 +1192,8 @@ declare class AppTemplateComponent implements OnDestroy {
|
|
|
1154
1192
|
loginNav(event: MouseEvent): void;
|
|
1155
1193
|
onSideBarItemClick(item: SidebarNavigableItem): void;
|
|
1156
1194
|
selectApp(app: AppInfo, viewMode: 'app' | 'settings'): void;
|
|
1195
|
+
onMobileMenuStatusChange(event: VisibilityEvent): void;
|
|
1196
|
+
private closeMobileMenu;
|
|
1157
1197
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppTemplateComponent, never>;
|
|
1158
1198
|
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>;
|
|
1159
1199
|
}
|
|
@@ -1248,46 +1288,14 @@ declare class TermsAndConditionsComponent {
|
|
|
1248
1288
|
static ɵcmp: i0.ɵɵComponentDeclaration<TermsAndConditionsComponent, "rlb-terms-and-conditions", never, {}, {}, never, never, false, never>;
|
|
1249
1289
|
}
|
|
1250
1290
|
|
|
1251
|
-
declare class SettingsDropdownSelectorComponent implements OnDestroy {
|
|
1252
|
-
apps: i0.InputSignal<AppInfo<any>[]>;
|
|
1253
|
-
navbarHasSettings: i0.InputSignal<unknown>;
|
|
1254
|
-
navbarHasLogin: i0.InputSignal<unknown>;
|
|
1255
|
-
isAuth: i0.InputSignal<unknown>;
|
|
1256
|
-
appSelected: i0.OutputEmitterRef<AppInfo<any>>;
|
|
1257
|
-
activeSlide: number;
|
|
1258
|
-
private readonly pageOptions;
|
|
1259
|
-
private readonly store;
|
|
1260
|
-
private readonly languageService;
|
|
1261
|
-
private readonly toastService;
|
|
1262
|
-
private readonly router;
|
|
1263
|
-
private readonly menu;
|
|
1264
|
-
constructor();
|
|
1265
|
-
get pages(): PagesConfiguration | null;
|
|
1266
|
-
selectApp(app: AppInfo): void;
|
|
1267
|
-
goToFirst(): void;
|
|
1268
|
-
goToInlineSettings(): void;
|
|
1269
|
-
ngOnDestroy(): void;
|
|
1270
|
-
change(event: VisibilityEventBase): void;
|
|
1271
|
-
get languages(): {
|
|
1272
|
-
value: string;
|
|
1273
|
-
label: string;
|
|
1274
|
-
}[];
|
|
1275
|
-
get currentLanguage(): string;
|
|
1276
|
-
set currentLanguage(value: string);
|
|
1277
|
-
get darkMode(): boolean;
|
|
1278
|
-
set darkMode(value: boolean);
|
|
1279
|
-
private close;
|
|
1280
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsDropdownSelectorComponent, never>;
|
|
1281
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsDropdownSelectorComponent, "rlb-settings-dropdown-selector", never, { "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "navbarHasSettings": { "alias": "navbarHasSettings"; "required": true; "isSignal": true; }; "navbarHasLogin": { "alias": "navbarHasLogin"; "required": true; "isSignal": true; }; "isAuth": { "alias": "isAuth"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
1291
|
declare class AppDropdownSelectorComponent {
|
|
1292
|
+
mode: i0.InputSignal<"desktop" | "mobile">;
|
|
1285
1293
|
apps: i0.InputSignal<AppInfo<any>[]>;
|
|
1286
1294
|
isAuth: i0.InputSignal<boolean | null>;
|
|
1287
1295
|
appSelected: i0.OutputEmitterRef<AppInfo<any>>;
|
|
1288
1296
|
selectApp(app: any): void;
|
|
1289
1297
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppDropdownSelectorComponent, never>;
|
|
1290
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppDropdownSelectorComponent, "rlb-app-dropdown-selector", never, { "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuth": { "alias": "isAuth"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
|
|
1298
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppDropdownSelectorComponent, "rlb-app-dropdown-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "apps": { "alias": "apps"; "required": true; "isSignal": true; }; "isAuth": { "alias": "isAuth"; "required": true; "isSignal": true; }; }, { "appSelected": "appSelected"; }, never, never, false, never>;
|
|
1291
1299
|
}
|
|
1292
1300
|
|
|
1293
1301
|
declare class RlbAppModule {
|