@rosoftlab/ionic 1.0.5-alpha-3 → 1.0.5-alpha-5
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.
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { AuthService, UserService } from '@rosoftlab/core';
|
|
5
|
+
import { ReactiveDictionary } from '@rosoftlab/rdict';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class RslIonicLayoutComponent implements OnInit {
|
|
8
|
+
private userService;
|
|
9
|
+
private router;
|
|
10
|
+
translate: TranslateService;
|
|
11
|
+
private rdict;
|
|
12
|
+
auth_service: AuthService;
|
|
13
|
+
items: any[];
|
|
14
|
+
apptitle: string;
|
|
15
|
+
expandedParents: Set<string>;
|
|
16
|
+
expandedParentIds: string[];
|
|
17
|
+
constructor(userService: UserService, router: Router, translate: TranslateService, rdict: ReactiveDictionary, auth_service: AuthService);
|
|
18
|
+
ngOnInit(): Promise<void>;
|
|
19
|
+
getMenu(): void;
|
|
20
|
+
private autoExpandCurrentRoute;
|
|
21
|
+
toggleParent(id: string): void;
|
|
22
|
+
logout(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RslIonicLayoutComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RslIonicLayoutComponent, "app-ionic-full-layout", never, {}, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { Menu, UserService } from '@rosoftlab/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class UserMenuComponent {
|
|
6
|
+
private userService;
|
|
7
|
+
private translate;
|
|
8
|
+
hasItems: boolean;
|
|
9
|
+
menu$: Observable<Menu[]>;
|
|
10
|
+
constructor(userService: UserService, translate: TranslateService);
|
|
11
|
+
getMenu(): void;
|
|
12
|
+
getMenuTranslation(menu: Menu): any;
|
|
13
|
+
onMenuItemSelected(menuItem: Menu): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuComponent, "app-user-menu", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rosoftlab/ionic",
|
|
3
|
-
"version": "1.0.5-alpha-
|
|
3
|
+
"version": "1.0.5-alpha-5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.2.8",
|
|
6
6
|
"@angular/core": "^19.2.8",
|
|
7
|
-
"@ngx-formly/core": "^
|
|
8
|
-
"@ionic/angular": "8.
|
|
7
|
+
"@ngx-formly/core": "^7.0.1",
|
|
8
|
+
"@ionic/angular": "~8.7.17",
|
|
9
9
|
"@swimlane/ngx-datatable": "^20.1.0",
|
|
10
|
-
"@rosoftlab/core": "1.0.5-alpha-
|
|
11
|
-
"@rosoftlab/
|
|
12
|
-
"@rosoftlab/
|
|
10
|
+
"@rosoftlab/core": "1.0.5-alpha-5",
|
|
11
|
+
"@rosoftlab/rdict": "1.0.5-alpha-5",
|
|
12
|
+
"@rosoftlab/formly": "1.0.5-alpha-5",
|
|
13
|
+
"@rosoftlab/statemachine": "1.0.5-alpha-5"
|
|
13
14
|
},
|
|
14
15
|
"dependencies": {
|
|
15
16
|
"tslib": "^2.6.2"
|