@open-rlb/ng-app 3.1.68 → 3.1.70
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
|
@@ -405,6 +405,7 @@ declare class AppsService {
|
|
|
405
405
|
resId: any;
|
|
406
406
|
} | null;
|
|
407
407
|
get currentApp(): AppInfo<any> | null;
|
|
408
|
+
isAppSelected(appId: string): boolean;
|
|
408
409
|
checkPermissionInCurrentApp(action?: string): boolean;
|
|
409
410
|
selectApp(app?: AppInfo, viewMode?: 'app' | 'settings', url?: string): void;
|
|
410
411
|
private initAuthProviders;
|
|
@@ -1113,6 +1114,7 @@ declare class SettingsDropdownSelectorComponent implements OnDestroy {
|
|
|
1113
1114
|
private readonly toastService;
|
|
1114
1115
|
private readonly router;
|
|
1115
1116
|
private readonly menu;
|
|
1117
|
+
private appsService;
|
|
1116
1118
|
constructor();
|
|
1117
1119
|
get pages(): PagesConfiguration | null;
|
|
1118
1120
|
selectApp(app: AppInfo): void;
|
|
@@ -1121,6 +1123,7 @@ declare class SettingsDropdownSelectorComponent implements OnDestroy {
|
|
|
1121
1123
|
logout(): void;
|
|
1122
1124
|
ngOnDestroy(): void;
|
|
1123
1125
|
change(event: VisibilityEventBase): void;
|
|
1126
|
+
isAppSelected(appId: string | undefined): boolean;
|
|
1124
1127
|
get languages(): {
|
|
1125
1128
|
value: string;
|
|
1126
1129
|
label: string;
|
|
@@ -1279,7 +1282,9 @@ declare class AppDropdownSelectorComponent {
|
|
|
1279
1282
|
apps: i0.InputSignal<AppInfo<any>[]>;
|
|
1280
1283
|
isAuthenticated: i0.InputSignal<boolean | null>;
|
|
1281
1284
|
appSelected: i0.OutputEmitterRef<AppInfo<any>>;
|
|
1285
|
+
private appsService;
|
|
1282
1286
|
selectApp(app: any): void;
|
|
1287
|
+
isAppSelected(appId: string | undefined): boolean;
|
|
1283
1288
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppDropdownSelectorComponent, never>;
|
|
1284
1289
|
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>;
|
|
1285
1290
|
}
|