@rxap/layout 16.0.0-dev.1 → 16.0.0-dev.11
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 +384 -0
- package/LICENSE +621 -21
- package/LICENSE.md +621 -0
- package/README.md +7 -22
- package/esm2022/index.mjs +5 -20
- package/esm2022/lib/app-url.service.mjs +64 -0
- package/esm2022/lib/footer/footer.component.mjs +13 -42
- package/esm2022/lib/footer.directive.mjs +21 -35
- package/esm2022/lib/header/apps-button/apps-button.component.mjs +42 -101
- package/esm2022/lib/header/header.component.mjs +66 -108
- package/esm2022/lib/header/language-selector/language-selector.component.mjs +30 -108
- package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +22 -26
- package/esm2022/lib/header/reset-button/reset-button.component.mjs +16 -21
- package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +21 -42
- package/esm2022/lib/header/sign-out/sign-out.component.mjs +19 -28
- package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +39 -109
- package/esm2022/lib/i18n-check.guard.mjs +34 -0
- package/esm2022/lib/i18n.service.mjs +36 -0
- package/esm2022/lib/language-selector.service.mjs +34 -0
- package/esm2022/lib/layout/layout.component.mjs +58 -72
- package/esm2022/lib/layout/layout.component.service.mjs +21 -22
- package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +120 -239
- package/esm2022/lib/navigation/navigation-item.mjs +4 -4
- package/esm2022/lib/navigation/navigation.component.mjs +48 -96
- package/esm2022/lib/navigation/navigation.service.mjs +28 -27
- package/esm2022/lib/navigation/replace-router-paths.service.mjs +9 -10
- package/esm2022/lib/sidenav/sidenav-footer.directive.mjs +15 -15
- package/esm2022/lib/sidenav/sidenav-header.directive.mjs +15 -15
- package/esm2022/lib/sidenav/sidenav.component.mjs +40 -112
- package/esm2022/lib/sidenav/sidenav.component.service.mjs +8 -9
- package/esm2022/lib/sidenav/version/version.component.mjs +16 -49
- package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +19 -40
- package/esm2022/lib/tokens.mjs +1 -1
- package/esm2022/lib/types.mjs +1 -1
- package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +18 -36
- package/esm2022/rxap-layout.mjs +1 -1
- package/fesm2022/rxap-layout.mjs +753 -1851
- package/fesm2022/rxap-layout.mjs.map +1 -1
- package/index.d.ts +4 -17
- package/lib/app-url.service.d.ts +26 -0
- package/lib/footer/footer.component.d.ts +1 -1
- package/lib/footer.directive.d.ts +2 -7
- package/lib/header/apps-button/apps-button.component.d.ts +13 -21
- package/lib/header/header.component.d.ts +8 -11
- package/lib/header/language-selector/language-selector.component.d.ts +2 -17
- package/lib/header/navigation-progress-bar/navigation-progress-bar.component.d.ts +1 -1
- package/lib/header/reset-button/reset-button.component.d.ts +1 -1
- package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.d.ts +1 -1
- package/lib/header/sign-out/sign-out.component.d.ts +5 -5
- package/lib/header/user-profile-icon/user-profile-icon.component.d.ts +12 -8
- package/lib/i18n-check.guard.d.ts +14 -0
- package/lib/i18n.service.d.ts +12 -0
- package/lib/language-selector.service.d.ts +15 -0
- package/lib/layout/layout.component.d.ts +8 -4
- package/lib/navigation/navigation-item/navigation-item.component.d.ts +11 -18
- package/lib/navigation/navigation-item.d.ts +1 -1
- package/lib/navigation/navigation.component.d.ts +6 -6
- package/lib/navigation/navigation.service.d.ts +1 -1
- package/lib/sidenav/sidenav-footer.directive.d.ts +1 -1
- package/lib/sidenav/sidenav-header.directive.d.ts +1 -1
- package/lib/sidenav/sidenav.component.d.ts +1 -1
- package/lib/sidenav/version/version.component.d.ts +3 -3
- package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.d.ts +3 -5
- package/lib/types.d.ts +3 -2
- package/lib/window-container-sidenav/window-container-sidenav.component.d.ts +2 -2
- package/package.json +90 -67
- package/theme.css +1 -0
- package/collection.json +0 -10
- package/esm2022/lib/footer/footer.component.module.mjs +0 -30
- package/esm2022/lib/header/apps-button/apps-button.component.module.mjs +0 -46
- package/esm2022/lib/header/header.component.module.mjs +0 -70
- package/esm2022/lib/header/language-selector/language-selector.component.module.mjs +0 -30
- package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.mjs +0 -26
- package/esm2022/lib/header/reset-button/reset-button.component.module.mjs +0 -26
- package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.mjs +0 -30
- package/esm2022/lib/header/sign-out/sign-out.component.module.mjs +0 -30
- package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.module.mjs +0 -38
- package/esm2022/lib/layout/layout.component.module.mjs +0 -70
- package/esm2022/lib/navigation/navigation.component.module.mjs +0 -71
- package/esm2022/lib/navigation/replace-router-paths.pipe.mjs +0 -36
- package/esm2022/lib/sidenav/sidenav.component.module.mjs +0 -44
- package/esm2022/lib/sidenav/version/version.component.module.mjs +0 -26
- package/esm2022/lib/sidenav-content/sidenav-content.component.mjs +0 -46
- package/esm2022/lib/sidenav-content/sidenav-content.component.module.mjs +0 -26
- package/esm2022/lib/sidenav-content/sidenav-content.component.service.mjs +0 -37
- package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.mjs +0 -30
- package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.module.mjs +0 -30
- package/lib/footer/footer.component.module.d.ts +0 -10
- package/lib/header/apps-button/apps-button.component.module.d.ts +0 -14
- package/lib/header/header.component.module.d.ts +0 -20
- package/lib/header/language-selector/language-selector.component.module.d.ts +0 -10
- package/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.d.ts +0 -9
- package/lib/header/reset-button/reset-button.component.module.d.ts +0 -9
- package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.d.ts +0 -10
- package/lib/header/sign-out/sign-out.component.module.d.ts +0 -10
- package/lib/header/user-profile-icon/user-profile-icon.component.module.d.ts +0 -12
- package/lib/layout/layout.component.module.d.ts +0 -20
- package/lib/navigation/navigation.component.module.d.ts +0 -19
- package/lib/navigation/replace-router-paths.pipe.d.ts +0 -16
- package/lib/sidenav/sidenav.component.module.d.ts +0 -15
- package/lib/sidenav/version/version.component.module.d.ts +0 -9
- package/lib/sidenav-content/sidenav-content.component.d.ts +0 -12
- package/lib/sidenav-content/sidenav-content.component.module.d.ts +0 -9
- package/lib/sidenav-content/sidenav-content.component.service.d.ts +0 -15
- package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.d.ts +0 -10
- package/lib/window-container-sidenav/window-container-sidenav.component.module.d.ts +0 -10
- package/migration.json +0 -4
- package/src/schematics/ng-add/index.d.ts +0 -2
- package/src/schematics/ng-add/index.js +0 -8
- package/src/schematics/ng-add/index.js.map +0 -1
- package/src/schematics/ng-add/schema.json +0 -7
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./navigation.component";
|
|
3
|
-
import * as i2 from "./navigation-item/navigation-item.component";
|
|
4
|
-
import * as i3 from "@angular/material/icon";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-button";
|
|
6
|
-
import * as i5 from "@angular/flex-layout";
|
|
7
|
-
import * as i6 from "@angular/router";
|
|
8
|
-
import * as i7 from "@angular/common";
|
|
9
|
-
import * as i8 from "@rxap/material-directives/icon";
|
|
10
|
-
import * as i9 from "@angular/material/core";
|
|
11
|
-
import * as i10 from "@angular/material/divider";
|
|
12
|
-
import * as i11 from "@rxap/directives";
|
|
13
|
-
import * as i12 from "@angular/material/legacy-tooltip";
|
|
14
|
-
import * as i13 from "./replace-router-paths.pipe";
|
|
15
|
-
export declare class NavigationComponentModule {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponentModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationComponentModule, [typeof i1.NavigationComponent, typeof i2.NavigationItemComponent], [typeof i3.MatIconModule, typeof i4.MatLegacyButtonModule, typeof i5.FlexLayoutModule, typeof i6.RouterModule, typeof i7.CommonModule, typeof i8.IconDirectiveModule, typeof i9.MatRippleModule, typeof i10.MatDividerModule, typeof i11.StopPropagationDirectiveModule, typeof i12.MatLegacyTooltipModule, typeof i13.ReplaceRouterPathsPipeModule], [typeof i1.NavigationComponent]>;
|
|
18
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationComponentModule>;
|
|
19
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { ReplaceRouterPathsService } from './replace-router-paths.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ReplaceRouterPathsPipe implements PipeTransform {
|
|
6
|
-
rrp: ReplaceRouterPathsService;
|
|
7
|
-
constructor(rrp: ReplaceRouterPathsService);
|
|
8
|
-
transform(routerLink: string[]): Observable<string[]>;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceRouterPathsPipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ReplaceRouterPathsPipe, "replaceRouterPaths", false>;
|
|
11
|
-
}
|
|
12
|
-
export declare class ReplaceRouterPathsPipeModule {
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceRouterPathsPipeModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ReplaceRouterPathsPipeModule, [typeof ReplaceRouterPathsPipe], never, [typeof ReplaceRouterPathsPipe]>;
|
|
15
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ReplaceRouterPathsPipeModule>;
|
|
16
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sidenav.component";
|
|
3
|
-
import * as i2 from "./sidenav-header.directive";
|
|
4
|
-
import * as i3 from "./sidenav-footer.directive";
|
|
5
|
-
import * as i4 from "@angular/flex-layout";
|
|
6
|
-
import * as i5 from "../navigation/navigation.component.module";
|
|
7
|
-
import * as i6 from "@angular/common";
|
|
8
|
-
import * as i7 from "@angular/material/divider";
|
|
9
|
-
import * as i8 from "@angular/material/icon";
|
|
10
|
-
import * as i9 from "@angular/material/legacy-button";
|
|
11
|
-
export declare class SidenavModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SidenavModule, [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective], [typeof i4.FlexLayoutModule, typeof i5.NavigationComponentModule, typeof i6.CommonModule, typeof i7.MatDividerModule, typeof i8.MatIconModule, typeof i9.MatLegacyButtonModule], [typeof i1.SidenavComponent, typeof i2.SidenavHeaderDirective, typeof i3.SidenavFooterDirective]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SidenavModule>;
|
|
15
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./version.component";
|
|
3
|
-
import * as i2 from "@angular/flex-layout";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
export declare class VersionComponentModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<VersionComponentModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VersionComponentModule, [typeof i1.VersionComponent], [typeof i2.FlexLayoutModule, typeof i3.CommonModule], [typeof i1.VersionComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<VersionComponentModule>;
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatSidenav } from '@angular/material/sidenav';
|
|
3
|
-
import { SidenavContentComponentService } from './sidenav-content.component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SidenavContentComponent implements OnInit {
|
|
6
|
-
readonly sccs: SidenavContentComponentService;
|
|
7
|
-
sidenav: MatSidenav;
|
|
8
|
-
constructor(sccs: SidenavContentComponentService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavContentComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavContentComponent, "rxap-sidenav-content", never, { "sidenav": { "alias": "sidenav"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sidenav-content.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/router";
|
|
5
|
-
export declare class SidenavContentModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavContentModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SidenavContentModule, [typeof i1.SidenavContentComponent], [typeof i2.CommonModule, typeof i3.RouterModule], [typeof i1.SidenavContentComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SidenavContentModule>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { HeaderService, FooterService } from '@rxap/services';
|
|
2
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SidenavContentComponentService {
|
|
5
|
-
readonly footerComponentService: FooterService;
|
|
6
|
-
readonly headerComponentService: HeaderService;
|
|
7
|
-
headerRows$: BehaviorSubject<number>;
|
|
8
|
-
footerRows$: Observable<number>;
|
|
9
|
-
innerHeight$: Observable<string>;
|
|
10
|
-
marginTop$: Observable<string>;
|
|
11
|
-
marginBottom$: Observable<string>;
|
|
12
|
-
constructor(footerComponentService: FooterService, headerComponentService: HeaderService);
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavContentComponentService, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SidenavContentComponentService>;
|
|
15
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./toggle-window-sidenav-button.component";
|
|
3
|
-
import * as i2 from "@angular/material/legacy-button";
|
|
4
|
-
import * as i3 from "@angular/material/icon";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
export declare class ToggleWindowSidenavButtonModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleWindowSidenavButtonModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleWindowSidenavButtonModule, [typeof i1.ToggleWindowSidenavButtonComponent], [typeof i2.MatLegacyButtonModule, typeof i3.MatIconModule, typeof i4.CommonModule], [typeof i1.ToggleWindowSidenavButtonComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ToggleWindowSidenavButtonModule>;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./window-container-sidenav.component";
|
|
3
|
-
import * as i2 from "@angular/flex-layout";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@angular/cdk/portal";
|
|
6
|
-
export declare class WindowContainerSidenavModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WindowContainerSidenavModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<WindowContainerSidenavModule, [typeof i1.WindowContainerSidenavComponent], [typeof i2.FlexLayoutModule, typeof i3.CommonModule, typeof i4.PortalModule], [typeof i1.WindowContainerSidenavComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<WindowContainerSidenavModule>;
|
|
10
|
-
}
|
package/migration.json
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const schematics_utilities_1 = require("@rxap/schematics-utilities");
|
|
4
|
-
function default_1() {
|
|
5
|
-
return (0, schematics_utilities_1.InstallPeerDependencies)();
|
|
6
|
-
}
|
|
7
|
-
exports.default = default_1;
|
|
8
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../libs/layout/src/schematics/ng-add/index.ts"],"names":[],"mappings":";;AACA,qEAAqE;AAErE;IACE,OAAO,IAAA,8CAAuB,GAAE,CAAC;AACnC,CAAC;AAFD,4BAEC"}
|