@rxap/layout 16.0.0-dev.13 → 16.0.0-dev.15
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/esm2022/lib/header/header.component.mjs +13 -16
- package/esm2022/lib/header/settings-button/settings-button.component.mjs +46 -0
- package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +8 -11
- package/fesm2022/rxap-layout.mjs +59 -32
- package/fesm2022/rxap-layout.mjs.map +1 -1
- package/lib/header/header.component.d.ts +3 -5
- package/lib/header/settings-button/settings-button.component.d.ts +19 -0
- package/package.json +22 -21
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ThemePalette } from '@angular/material/core';
|
|
3
3
|
import { MatSidenav } from '@angular/material/sidenav';
|
|
4
|
-
import { HeaderService
|
|
4
|
+
import { HeaderService } from '@rxap/services';
|
|
5
5
|
import { Constructor } from '@rxap/utilities';
|
|
6
6
|
import { Subscription } from 'rxjs';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class HeaderComponent implements OnInit, OnDestroy {
|
|
9
9
|
readonly headerComponentService: HeaderService;
|
|
10
10
|
headerComponent: any;
|
|
11
|
-
readonly theme: ThemeService;
|
|
12
11
|
sidenav?: MatSidenav;
|
|
13
12
|
components: Array<Constructor<any>>;
|
|
14
13
|
subscriptions: Subscription;
|
|
15
14
|
color: ThemePalette;
|
|
16
|
-
|
|
17
|
-
constructor(headerComponentService: HeaderService, headerComponent: any, theme: ThemeService);
|
|
15
|
+
constructor(headerComponentService: HeaderService, headerComponent: any);
|
|
18
16
|
ngOnInit(): void;
|
|
19
17
|
updateComponents(): void;
|
|
20
18
|
ngOnDestroy(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, [null, { optional: true; }
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, [null, { optional: true; }]>;
|
|
22
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "rxap-header", never, { "sidenav": { "alias": "sidenav"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
23
21
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ComponentPortal } from '@angular/cdk/portal';
|
|
2
|
+
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { ThemeService } from '@rxap/services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SettingsButtonComponent implements OnInit, OnDestroy {
|
|
7
|
+
readonly theme: ThemeService;
|
|
8
|
+
private readonly route;
|
|
9
|
+
private readonly injector;
|
|
10
|
+
isDevMode: boolean;
|
|
11
|
+
items: import("@angular/core").WritableSignal<ComponentPortal<unknown>[]>;
|
|
12
|
+
private _subscription?;
|
|
13
|
+
constructor(theme: ThemeService, route: ActivatedRoute, injector: Injector);
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
private getCustomMenuItems;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsButtonComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsButtonComponent, "rxap-settings-button", never, {}, {}, never, never, true, never>;
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxap/layout",
|
|
3
|
-
"version": "16.0.0-dev.
|
|
3
|
+
"version": "16.0.0-dev.15",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^16.1.4",
|
|
6
6
|
"@angular/cdk": "^16.1.4",
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"@angular/forms": "^16.1.4",
|
|
11
11
|
"@angular/material": "^16.1.4",
|
|
12
12
|
"@angular/router": "^16.1.4",
|
|
13
|
-
"@rxap/authentication": "^16.0.0-dev.
|
|
14
|
-
"@rxap/browser-utilities": "^0.0.2-dev.
|
|
15
|
-
"@rxap/config": "^16.0.0-dev.
|
|
16
|
-
"@rxap/data-source": "^16.0.0-dev.
|
|
17
|
-
"@rxap/directives": "^16.0.0-dev.
|
|
18
|
-
"@rxap/environment": "^16.0.0-dev.
|
|
19
|
-
"@rxap/material-directives": "^16.0.0-dev.
|
|
20
|
-
"@rxap/services": "^16.0.0-dev.
|
|
21
|
-
"@rxap/utilities": "^16.0.0-dev.
|
|
13
|
+
"@rxap/authentication": "^16.0.0-dev.9",
|
|
14
|
+
"@rxap/browser-utilities": "^0.0.2-dev.4",
|
|
15
|
+
"@rxap/config": "^16.0.0-dev.10",
|
|
16
|
+
"@rxap/data-source": "^16.0.0-dev.11",
|
|
17
|
+
"@rxap/directives": "^16.0.0-dev.10",
|
|
18
|
+
"@rxap/environment": "^16.0.0-dev.9",
|
|
19
|
+
"@rxap/material-directives": "^16.0.0-dev.12",
|
|
20
|
+
"@rxap/services": "^16.0.0-dev.9",
|
|
21
|
+
"@rxap/utilities": "^16.0.0-dev.13",
|
|
22
22
|
"rxjs": "^7.8.0"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"angular",
|
|
35
35
|
"ngx",
|
|
36
36
|
"packages",
|
|
37
|
-
"layout"
|
|
37
|
+
"layout",
|
|
38
|
+
"angular-layout"
|
|
38
39
|
],
|
|
39
40
|
"homepage": "https:/gitlab.com/rxap/packages/packages/angular/layout",
|
|
40
41
|
"bugs": {
|
|
@@ -55,39 +56,39 @@
|
|
|
55
56
|
"packageGroup": [
|
|
56
57
|
{
|
|
57
58
|
"package": "@rxap/authentication",
|
|
58
|
-
"version": "16.0.0-dev.
|
|
59
|
+
"version": "16.0.0-dev.9"
|
|
59
60
|
},
|
|
60
61
|
{
|
|
61
62
|
"package": "@rxap/browser-utilities",
|
|
62
|
-
"version": "0.0.2-dev.
|
|
63
|
+
"version": "0.0.2-dev.4"
|
|
63
64
|
},
|
|
64
65
|
{
|
|
65
66
|
"package": "@rxap/config",
|
|
66
|
-
"version": "16.0.0-dev.
|
|
67
|
+
"version": "16.0.0-dev.10"
|
|
67
68
|
},
|
|
68
69
|
{
|
|
69
70
|
"package": "@rxap/data-source",
|
|
70
|
-
"version": "16.0.0-dev.
|
|
71
|
+
"version": "16.0.0-dev.11"
|
|
71
72
|
},
|
|
72
73
|
{
|
|
73
74
|
"package": "@rxap/directives",
|
|
74
|
-
"version": "16.0.0-dev.
|
|
75
|
+
"version": "16.0.0-dev.10"
|
|
75
76
|
},
|
|
76
77
|
{
|
|
77
78
|
"package": "@rxap/environment",
|
|
78
|
-
"version": "16.0.0-dev.
|
|
79
|
+
"version": "16.0.0-dev.9"
|
|
79
80
|
},
|
|
80
81
|
{
|
|
81
82
|
"package": "@rxap/material-directives",
|
|
82
|
-
"version": "16.0.0-dev.
|
|
83
|
+
"version": "16.0.0-dev.12"
|
|
83
84
|
},
|
|
84
85
|
{
|
|
85
86
|
"package": "@rxap/services",
|
|
86
|
-
"version": "16.0.0-dev.
|
|
87
|
+
"version": "16.0.0-dev.9"
|
|
87
88
|
},
|
|
88
89
|
{
|
|
89
90
|
"package": "@rxap/utilities",
|
|
90
|
-
"version": "16.0.0-dev.
|
|
91
|
+
"version": "16.0.0-dev.13"
|
|
91
92
|
},
|
|
92
93
|
{
|
|
93
94
|
"package": "@rxap/rxjs",
|
|
@@ -95,7 +96,7 @@
|
|
|
95
96
|
}
|
|
96
97
|
]
|
|
97
98
|
},
|
|
98
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "3d49d0a2548a0c403ad55c564108b54ba734a677",
|
|
99
100
|
"module": "fesm2022/rxap-layout.mjs",
|
|
100
101
|
"typings": "index.d.ts",
|
|
101
102
|
"exports": {
|