@rxap/layout 16.0.0-dev.11 → 16.0.0-dev.13
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 +16 -16
- package/esm2022/lib/i18n-check.guard.mjs +12 -16
- package/fesm2022/rxap-layout.mjs +147 -149
- package/fesm2022/rxap-layout.mjs.map +1 -1
- package/lib/header/header.component.d.ts +3 -3
- package/lib/i18n-check.guard.d.ts +2 -5
- package/package.json +10 -10
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
2
|
+
import { ThemePalette } from '@angular/material/core';
|
|
4
3
|
import { MatSidenav } from '@angular/material/sidenav';
|
|
5
4
|
import { HeaderService, ThemeService } from '@rxap/services';
|
|
6
|
-
import {
|
|
5
|
+
import { Constructor } from '@rxap/utilities';
|
|
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;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import { ConfigService } from '@rxap/config';
|
|
2
|
-
import { I18nService } from './i18n.service';
|
|
3
1
|
import { RxapUserProfileService } from '@rxap/authentication';
|
|
2
|
+
import { I18nService } from './i18n.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class I18nCheckGuard {
|
|
6
|
-
private readonly config;
|
|
7
|
-
private readonly localId;
|
|
8
5
|
private readonly i18nService;
|
|
9
6
|
private readonly userProfileService;
|
|
10
|
-
constructor(
|
|
7
|
+
constructor(i18nService: I18nService, userProfileService: RxapUserProfileService);
|
|
11
8
|
canActivate(): Promise<boolean>;
|
|
12
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<I18nCheckGuard, never>;
|
|
13
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<I18nCheckGuard>;
|
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.13",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^16.1.4",
|
|
6
6
|
"@angular/cdk": "^16.1.4",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"@rxap/authentication": "^16.0.0-dev.8",
|
|
14
14
|
"@rxap/browser-utilities": "^0.0.2-dev.1",
|
|
15
15
|
"@rxap/config": "^16.0.0-dev.9",
|
|
16
|
-
"@rxap/data-source": "^16.0.0-dev.
|
|
17
|
-
"@rxap/directives": "^16.0.0-dev.
|
|
16
|
+
"@rxap/data-source": "^16.0.0-dev.10",
|
|
17
|
+
"@rxap/directives": "^16.0.0-dev.9",
|
|
18
18
|
"@rxap/environment": "^16.0.0-dev.8",
|
|
19
|
-
"@rxap/material-directives": "^16.0.0-dev.
|
|
19
|
+
"@rxap/material-directives": "^16.0.0-dev.11",
|
|
20
20
|
"@rxap/services": "^16.0.0-dev.8",
|
|
21
|
-
"@rxap/utilities": "^16.0.0-dev.
|
|
21
|
+
"@rxap/utilities": "^16.0.0-dev.7",
|
|
22
22
|
"rxjs": "^7.8.0"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"package": "@rxap/data-source",
|
|
70
|
-
"version": "16.0.0-dev.
|
|
70
|
+
"version": "16.0.0-dev.10"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"package": "@rxap/directives",
|
|
74
|
-
"version": "16.0.0-dev.
|
|
74
|
+
"version": "16.0.0-dev.9"
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
"package": "@rxap/environment",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"package": "@rxap/material-directives",
|
|
82
|
-
"version": "16.0.0-dev.
|
|
82
|
+
"version": "16.0.0-dev.11"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"package": "@rxap/services",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
"package": "@rxap/utilities",
|
|
90
|
-
"version": "16.0.0-dev.
|
|
90
|
+
"version": "16.0.0-dev.7"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
"package": "@rxap/rxjs",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
}
|
|
96
96
|
]
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "6581a2e776d20dc9d2eb9f71d9f0ad704492089b",
|
|
99
99
|
"module": "fesm2022/rxap-layout.mjs",
|
|
100
100
|
"typings": "index.d.ts",
|
|
101
101
|
"exports": {
|