@rosoftlab/rdict 1.0.4-alpha-9 → 1.0.4-alpha-10
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.
|
@@ -2,8 +2,9 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { DrawerItemExpandedFn, DrawerSelectEvent } from '@progress/kendo-angular-layout';
|
|
5
|
-
import * as allIcons from
|
|
6
|
-
import { SVGIcon } from
|
|
5
|
+
import * as allIcons from '@progress/kendo-svg-icons';
|
|
6
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
|
+
import { AuthService } from '@rosoftlab/core';
|
|
7
8
|
import { Observable } from 'rxjs';
|
|
8
9
|
import { Menu } from '../../../models';
|
|
9
10
|
import { ReactiveDictionary } from '../../../reactive-dictionary';
|
|
@@ -14,8 +15,10 @@ export declare class FullComponent implements OnInit {
|
|
|
14
15
|
private router;
|
|
15
16
|
translate: TranslateService;
|
|
16
17
|
private rdict;
|
|
18
|
+
auth_service: AuthService;
|
|
17
19
|
selected: string;
|
|
18
20
|
menuSvg: SVGIcon;
|
|
21
|
+
userSvg: SVGIcon;
|
|
19
22
|
expandedIndices: number[];
|
|
20
23
|
menu$: Observable<Menu[]>;
|
|
21
24
|
hasItems: boolean;
|
|
@@ -24,7 +27,12 @@ export declare class FullComponent implements OnInit {
|
|
|
24
27
|
}>;
|
|
25
28
|
icons: typeof allIcons;
|
|
26
29
|
apptitle: string;
|
|
27
|
-
|
|
30
|
+
user_menu: {
|
|
31
|
+
text: string;
|
|
32
|
+
svgIcon: allIcons.SVGIcon;
|
|
33
|
+
click: () => void;
|
|
34
|
+
}[];
|
|
35
|
+
constructor(userService: UserService, router: Router, translate: TranslateService, rdict: ReactiveDictionary, auth_service: AuthService);
|
|
28
36
|
ngOnInit(): Promise<void>;
|
|
29
37
|
isItemExpanded: DrawerItemExpandedFn;
|
|
30
38
|
getMenu(): void;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KendoToolbarSpanComponent extends ToolBarToolComponent {
|
|
5
|
+
tabindex: number;
|
|
6
|
+
text: string;
|
|
7
|
+
cssClass: string | string[] | {
|
|
8
|
+
[klass: string]: boolean;
|
|
9
|
+
};
|
|
10
|
+
toolbarTemplate: TemplateRef<any>;
|
|
11
|
+
constructor();
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KendoToolbarSpanComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KendoToolbarSpanComponent, "kendo-toolbar-span", never, { "text": { "alias": "text"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rosoftlab/rdict",
|
|
3
|
-
"version": "1.0.4-alpha-
|
|
3
|
+
"version": "1.0.4-alpha-10",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.2.8",
|
|
6
6
|
"@angular/core": "^19.2.8",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"socket.io-client": "^4.8.1",
|
|
38
38
|
"socket.io-msgpack-parser": "^3.0.2",
|
|
39
39
|
"socket.io-parser": "^3.3.4",
|
|
40
|
-
"@rosoftlab/core": "1.0.4-alpha-
|
|
40
|
+
"@rosoftlab/core": "1.0.4-alpha-10"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"author": "rosoftlab",
|