@fundamental-ngx/core 0.44.0-rc.4 → 0.44.0-rc.6
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/action-bar/action-bar.component.d.ts +2 -0
- package/alert/alert-utils/alert-config.d.ts +2 -0
- package/alert/alert-utils/alert-container.component.d.ts +2 -0
- package/alert/alert-utils/alert-ref.d.ts +4 -2
- package/alert/alert.module.d.ts +2 -0
- package/esm2022/action-bar/action-bar.component.mjs +8 -11
- package/esm2022/alert/alert-service/alert.service.mjs +4 -12
- package/esm2022/alert/alert-utils/alert-config.mjs +5 -11
- package/esm2022/alert/alert-utils/alert-container.component.mjs +6 -12
- package/esm2022/alert/alert-utils/alert-ref.mjs +5 -12
- package/esm2022/alert/alert.component.mjs +4 -17
- package/esm2022/alert/alert.module.mjs +8 -12
- package/esm2022/side-navigation/side-navigation.component.mjs +9 -15
- package/esm2022/splitter/splitter-pagination/splitter-pagination.component.mjs +2 -9
- package/fesm2022/fundamental-ngx-core-action-bar.mjs +7 -10
- package/fesm2022/fundamental-ngx-core-action-bar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-alert.mjs +27 -61
- package/fesm2022/fundamental-ngx-core-alert.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-side-navigation.mjs +7 -11
- package/fesm2022/fundamental-ngx-core-side-navigation.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-splitter.mjs +1 -8
- package/fesm2022/fundamental-ngx-core-splitter.mjs.map +1 -1
- package/fundamental-ngx-core-v0.44.0-rc.6.tgz +0 -0
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/schematics/add-dependencies/index.ts +3 -3
- package/side-navigation/side-navigation.component.d.ts +1 -3
- package/fundamental-ngx-core-v0.44.0-rc.4.tgz +0 -0
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
1
|
import { Component, ContentChild, HostBinding, HostListener, Input, QueryList, ViewChildren, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import { NestedListKeyboardService } from '@fundamental-ngx/core/nested-list';
|
|
2
|
+
import { NestedListKeyboardService, NestedListStateService, PreparedNestedListComponent } from '@fundamental-ngx/core/nested-list';
|
|
4
3
|
import { SideNavigationUtilityDirective } from './side-navigation-utility.directive';
|
|
5
4
|
import { SideNavigationMainDirective } from './side-navigation-main.directive';
|
|
6
|
-
import { PreparedNestedListComponent } from '@fundamental-ngx/core/nested-list';
|
|
7
|
-
import { NestedListStateService } from '@fundamental-ngx/core/nested-list';
|
|
8
|
-
import deprecated from 'deprecated-decorator';
|
|
9
5
|
import * as i0 from "@angular/core";
|
|
10
6
|
import * as i1 from "@fundamental-ngx/core/nested-list";
|
|
11
7
|
import * as i2 from "@angular/common";
|
|
@@ -16,7 +12,7 @@ import * as i4 from "./side-navigation-utility.directive";
|
|
|
16
12
|
* The side-navigation is a wrapping component representing
|
|
17
13
|
* a left navigation that can always display or expand/collapse using the menu icon within the global navigation.
|
|
18
14
|
*/
|
|
19
|
-
export
|
|
15
|
+
export class SideNavigationComponent {
|
|
20
16
|
/** Whether clicking on elements should change selected state of items */
|
|
21
17
|
set selectable(selectable) {
|
|
22
18
|
this.nestedListState.selectable = selectable;
|
|
@@ -33,6 +29,11 @@ export let SideNavigationComponent = class SideNavigationComponent {
|
|
|
33
29
|
/** Refresh list of elements, that are being supported by keyboard */
|
|
34
30
|
this.keyboardService.refreshItems(this.getLists());
|
|
35
31
|
});
|
|
32
|
+
console.warn(`
|
|
33
|
+
SideNavigationComponent is deprecated since version 0.40.0 and will be removed in future release.
|
|
34
|
+
Use the vertical navigation component instead.
|
|
35
|
+
For more information check the documentation.
|
|
36
|
+
`);
|
|
36
37
|
}
|
|
37
38
|
/** @hidden */
|
|
38
39
|
ngOnInit() {
|
|
@@ -80,14 +81,7 @@ export let SideNavigationComponent = class SideNavigationComponent {
|
|
|
80
81
|
}
|
|
81
82
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: SideNavigationComponent, deps: [{ token: i1.NestedListKeyboardService }, { token: i1.NestedListStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
82
83
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.0", type: SideNavigationComponent, selector: "fd-side-nav", inputs: { sideNavigationConfiguration: "sideNavigationConfiguration", condensed: "condensed", collapseWidth: "collapseWidth", selectable: "selectable" }, host: { listeners: { "window:resize": "onResize()" }, properties: { "class.fd-side-nav--condensed": "this.condensed" } }, providers: [NestedListKeyboardService, NestedListStateService], queries: [{ propertyName: "sideNavUtility", first: true, predicate: SideNavigationUtilityDirective, descendants: true }, { propertyName: "sideNavMain", first: true, predicate: SideNavigationMainDirective, descendants: true }], viewQueries: [{ propertyName: "preparedNestedList", predicate: PreparedNestedListComponent, descendants: true }], ngImport: i0, template: "<nav class=\"fd-side-nav\" [class.fd-side-nav--condensed]=\"condensed || sideNavigationConfiguration?.condensed\">\n <ng-container *ngIf=\"!sideNavigationConfiguration\">\n <ng-content></ng-content>\n </ng-container>\n <ng-container *ngIf=\"sideNavigationConfiguration\">\n <div fd-side-nav-main *ngIf=\"sideNavigationConfiguration.mainNavigation\">\n <fd-prepared-nested-list\n [condensed]=\"condensed || !!sideNavigationConfiguration.condensed\"\n [first]=\"true\"\n [list]=\"sideNavigationConfiguration.mainNavigation\"\n >\n </fd-prepared-nested-list>\n </div>\n <div fd-side-nav-utility *ngIf=\"sideNavigationConfiguration.utilityNavigation\">\n <fd-prepared-nested-list\n [condensed]=\"condensed || !!sideNavigationConfiguration.condensed\"\n [first]=\"true\"\n [list]=\"sideNavigationConfiguration.utilityNavigation\"\n >\n </fd-prepared-nested-list>\n </div>\n </ng-container>\n</nav>\n", styles: ["/*!\n * Fundamental Library Styles v0.28.3\n * Copyright (c) 2023 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n */.fd-nested-list{--fdNestedList_Link_Height:2.75rem;--fdNestedList_Title_Font_Size:var(--sapFontLargeSize);--fdNestedList_Icon_Font_Size:var(--sapFontHeader4Size);--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:0;-webkit-box-sizing:border-box;border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor);box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);list-style:none;margin:0;padding:0;width:100%}.fd-nested-list:after,.fd-nested-list:before{box-sizing:inherit;font-size:inherit}.fd-nested-list [class*=level]{border-bottom:none}.fd-nested-list [class*=level] .fd-nested-list__content,.fd-nested-list [class*=level] .fd-nested-list__link{border-top:none}.fd-nested-list .fd-nested-list__content,.fd-nested-list .fd-nested-list__link{border-bottom:none;padding-left:var(--fdNestedList_Item_Padding_Left);padding-right:var(--fdNestedList_Item_Padding_Right)}.fd-nested-list .fd-nested-list__content.is-selected,.fd-nested-list .fd-nested-list__content[aria-selected=true],.fd-nested-list .fd-nested-list__link.is-selected,.fd-nested-list .fd-nested-list__link[aria-selected=true]{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_SelectionBorderColor)}.fd-nested-list .fd-nested-list__content.has-child,.fd-nested-list .fd-nested-list__link.has-child{padding-left:0;padding-right:0}.fd-nested-list .fd-nested-list__content.has-child>.fd-nested-list__title{padding-left:var(--fdNestedList_Item_Padding_Left);padding-right:var(--fdNestedList_Item_Padding_Right)}.fd-nested-list .level-2{--fdNestedList_Item_Padding_Left:2.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-3{--fdNestedList_Item_Padding_Left:3.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-4{--fdNestedList_Item_Padding_Left:4.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-5{--fdNestedList_Item_Padding_Left:5.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-6{--fdNestedList_Item_Padding_Left:6.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-7{--fdNestedList_Item_Padding_Left:7.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-8{--fdNestedList_Item_Padding_Left:8.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-9{--fdNestedList_Item_Padding_Left:9.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-10{--fdNestedList_Item_Padding_Left:10.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list[dir=rtl] .level-2,[dir=rtl] .fd-nested-list .level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2.75rem}.fd-nested-list[dir=rtl] .level-3,[dir=rtl] .fd-nested-list .level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3.75rem}.fd-nested-list[dir=rtl] .level-4,[dir=rtl] .fd-nested-list .level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4.75rem}.fd-nested-list[dir=rtl] .level-5,[dir=rtl] .fd-nested-list .level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5.75rem}.fd-nested-list[dir=rtl] .level-6,[dir=rtl] .fd-nested-list .level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6.75rem}.fd-nested-list[dir=rtl] .level-7,[dir=rtl] .fd-nested-list .level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7.75rem}.fd-nested-list[dir=rtl] .level-8,[dir=rtl] .fd-nested-list .level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8.75rem}.fd-nested-list[dir=rtl] .level-9,[dir=rtl] .fd-nested-list .level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9.75rem}.fd-nested-list[dir=rtl] .level-10,[dir=rtl] .fd-nested-list .level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10.75rem}.fd-nested-list[aria-hidden=true]{display:none}.fd-nested-list--popover{border-bottom:none}.fd-nested-list--popover .fd-nested-list__group-header{border-bottom:none;border-top-left-radius:var(--fdNested_List_Border_Corner_Radius);border-top-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list--popover .fd-nested-list__item:first-child,.fd-nested-list--popover .fd-nested-list__item:first-child .fd-nested-list__content,.fd-nested-list--popover .fd-nested-list__item:first-child .fd-nested-list__link{border-top-left-radius:var(--fdNested_List_Border_Corner_Radius);border-top-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list--popover .fd-nested-list__item:last-child,.fd-nested-list--popover .fd-nested-list__item:last-child .fd-nested-list__content,.fd-nested-list--popover .fd-nested-list__item:last-child .fd-nested-list__link{border-bottom-left-radius:var(--fdNested_List_Border_Corner_Radius);border-bottom-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list__item{-webkit-box-sizing:border-box;background:var(--sapList_Background);border:0;box-sizing:border-box;color:var(--sapTextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-shadow:var(--fdVerticalNav_Text_Shadow)}.fd-nested-list__item:after,.fd-nested-list__item:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__item:first-child .fd-nested-list__content,.fd-nested-list__item:first-child .fd-nested-list__link{border-top:none}.fd-nested-list__content,.fd-nested-list__link{-webkit-box-sizing:border-box;align-items:center;border:0;border-top:var(--sapList_BorderWidth) solid var(--sapList_BorderColor);box-sizing:border-box;color:var(--sapTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--fdNestedList_Link_Height);line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-decoration:none;width:100%}.fd-nested-list__content:after,.fd-nested-list__content:before,.fd-nested-list__link:after,.fd-nested-list__link:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__content.is-hover,.fd-nested-list__content.is-hover .fd-nested-list__button,.fd-nested-list__content:hover,.fd-nested-list__content:hover .fd-nested-list__button,.fd-nested-list__link.is-hover,.fd-nested-list__link.is-hover .fd-nested-list__button,.fd-nested-list__link:hover,.fd-nested-list__link:hover .fd-nested-list__button{background:var(--sapList_Hover_Background)}.fd-nested-list__content.is-focus,.fd-nested-list__content:focus,.fd-nested-list__link.is-focus,.fd-nested-list__link:focus{outline-color:var(--sapContent_FocusColor);outline-offset:-.1875rem;outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}.fd-nested-list__content.is-selected,.fd-nested-list__content[aria-selected=true],.fd-nested-list__link.is-selected,.fd-nested-list__link[aria-selected=true]{background:var(--sapList_SelectionBackgroundColor);border-bottom:var(--sapList_BorderWidth) solid;border-bottom-color:var(--sapList_SelectionBorderColor)}.fd-nested-list__content.is-selected .fd-nested-list__button,.fd-nested-list__content[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link.is-selected .fd-nested-list__button,.fd-nested-list__link[aria-selected=true] .fd-nested-list__button{background:var(--sapList_SelectionBackgroundColor)}.fd-nested-list__content.is-selected.is-hover,.fd-nested-list__content.is-selected.is-hover .fd-nested-list__button,.fd-nested-list__content.is-selected:hover,.fd-nested-list__content.is-selected:hover .fd-nested-list__button,.fd-nested-list__content[aria-selected=true].is-hover,.fd-nested-list__content[aria-selected=true].is-hover .fd-nested-list__button,.fd-nested-list__content[aria-selected=true]:hover,.fd-nested-list__content[aria-selected=true]:hover .fd-nested-list__button,.fd-nested-list__link.is-selected.is-hover,.fd-nested-list__link.is-selected.is-hover .fd-nested-list__button,.fd-nested-list__link.is-selected:hover,.fd-nested-list__link.is-selected:hover .fd-nested-list__button,.fd-nested-list__link[aria-selected=true].is-hover,.fd-nested-list__link[aria-selected=true].is-hover .fd-nested-list__button,.fd-nested-list__link[aria-selected=true]:hover,.fd-nested-list__link[aria-selected=true]:hover .fd-nested-list__button{background:var(--sapList_Hover_SelectionBackground)}.fd-nested-list__content.is-active,.fd-nested-list__content.is-active .fd-nested-list__button,.fd-nested-list__content.is-active.is-selected,.fd-nested-list__content.is-active.is-selected .fd-nested-list__button,.fd-nested-list__content.is-active[aria-selected=true],.fd-nested-list__content.is-active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__content:active,.fd-nested-list__content:active .fd-nested-list__button,.fd-nested-list__content:active.is-selected,.fd-nested-list__content:active.is-selected .fd-nested-list__button,.fd-nested-list__content:active[aria-selected=true],.fd-nested-list__content:active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link.is-active,.fd-nested-list__link.is-active .fd-nested-list__button,.fd-nested-list__link.is-active.is-selected,.fd-nested-list__link.is-active.is-selected .fd-nested-list__button,.fd-nested-list__link.is-active[aria-selected=true],.fd-nested-list__link.is-active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link:active,.fd-nested-list__link:active .fd-nested-list__button,.fd-nested-list__link:active.is-selected,.fd-nested-list__link:active.is-selected .fd-nested-list__button,.fd-nested-list__link:active[aria-selected=true],.fd-nested-list__link:active[aria-selected=true] .fd-nested-list__button{background:var(--sapList_Active_Background)}.fd-nested-list__content.is-active .fd-nested-list__button,.fd-nested-list__content.is-active .fd-nested-list__icon,.fd-nested-list__content.is-active .fd-nested-list__title,.fd-nested-list__content:active .fd-nested-list__button,.fd-nested-list__content:active .fd-nested-list__icon,.fd-nested-list__content:active .fd-nested-list__title,.fd-nested-list__link.is-active .fd-nested-list__button,.fd-nested-list__link.is-active .fd-nested-list__icon,.fd-nested-list__link.is-active .fd-nested-list__title,.fd-nested-list__link:active .fd-nested-list__button,.fd-nested-list__link:active .fd-nested-list__icon,.fd-nested-list__link:active .fd-nested-list__title{color:var(--sapList_Active_TextColor)}.fd-nested-list__content.has-child,.fd-nested-list__link.has-child{justify-content:space-between;padding:0}.fd-nested-list__content.has-child>.fd-nested-list__item,.fd-nested-list__content.has-child>.fd-nested-list__link,.fd-nested-list__link.has-child>.fd-nested-list__item,.fd-nested-list__link.has-child>.fd-nested-list__link{border:none}.fd-nested-list__content.has-child>.fd-nested-list__link,.fd-nested-list__link.has-child>.fd-nested-list__link{background:transparent;border:none;height:100%}.fd-nested-list__content.has-child>.fd-nested-list__link.is-focus,.fd-nested-list__content.has-child>.fd-nested-list__link:focus,.fd-nested-list__link.has-child>.fd-nested-list__link.is-focus,.fd-nested-list__link.has-child>.fd-nested-list__link:focus{outline-color:var(--sapContent_FocusColor);outline-offset:-.1875rem;outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}.fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title,.fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title{padding-right:0}.fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title[dir=rtl],.fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title[dir=rtl],[dir=rtl] .fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title,[dir=rtl] .fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title{padding-left:0}.fd-nested-list__link{cursor:pointer}.fd-nested-list__button.fd-button{background:none;border:none;color:var(--sapContent_IconColor);height:100%;max-height:100%;min-height:100%;min-width:2.5rem;outline:none;text-decoration:none}.fd-nested-list__button.fd-button [class*=sap-icon],.fd-nested-list__button.fd-button[class*=sap-icon]{font-size:var(--sapFontLargeSize)}.fd-nested-list__icon [class*=sap-icon],.fd-nested-list__icon[class*=sap-icon]{-webkit-box-pack:center;-ms-flex-pack:center;background:inherit;border-radius:inherit;color:inherit;color:var(--sapList_TextColor);font-size:inherit;font-size:var(--fdNestedList_Icon_Font_Size);justify-content:center;line-height:1;min-width:2.75rem}.fd-nested-list__icon [class*=sap-icon],.fd-nested-list__icon[class*=sap-icon],.fd-nested-list__title{align-items:center;display:flex;height:100%}.fd-nested-list__title{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_TextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:var(--fdNestedList_Title_Font_Size);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0 1rem 0 0;text-overflow:ellipsis;white-space:nowrap;width:100%}.fd-nested-list__title:after,.fd-nested-list__title:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__title:first-child{padding-left:2.75rem}.fd-nested-list__title[dir=rtl],[dir=rtl] .fd-nested-list__title{padding-left:1rem;padding-right:0;text-align:right}.fd-nested-list__title[dir=rtl]:first-child,[dir=rtl] .fd-nested-list__title:first-child{padding-left:0;padding-right:2.75rem}.fd-nested-list__group-header{-webkit-box-sizing:border-box;align-items:flex-end;background:var(--sapList_GroupHeaderBackground);border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_GroupHeaderBorderColor);box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_GroupHeaderTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;font-weight:700;forced-color-adjust:none;height:2.75rem;line-height:var(--sapContent_LineHeight);line-height:2rem;margin:0;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;white-space:nowrap}.fd-nested-list__group-header:after,.fd-nested-list__group-header:before{box-sizing:inherit;font-size:inherit}.fd-nested-list--no-border .fd-nested-list__group-header,.fd-nested-list--no-border .fd-nested-list__item,.fd-nested-list--no-border .fd-nested-list__link{border-top:none}.fd-nested-list--text-only{--fdNestedList_Item_Padding_Left:1rem}.fd-nested-list--text-only .fd-nested-list__content.has-child,.fd-nested-list--text-only .fd-nested-list__link.has-child{padding:0}.fd-nested-list--text-only .fd-nested-list__title:first-child{padding-left:0}.fd-nested-list--text-only .level-2{--fdNestedList_Item_Padding_Left:2rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-2{--fdNestedList_Item_Padding_Left:2.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-3{--fdNestedList_Item_Padding_Left:3rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-3{--fdNestedList_Item_Padding_Left:3.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-4{--fdNestedList_Item_Padding_Left:4rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-4{--fdNestedList_Item_Padding_Left:4.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-5{--fdNestedList_Item_Padding_Left:5rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-5{--fdNestedList_Item_Padding_Left:5.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-6{--fdNestedList_Item_Padding_Left:6rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-6{--fdNestedList_Item_Padding_Left:6.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-7{--fdNestedList_Item_Padding_Left:7rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-7{--fdNestedList_Item_Padding_Left:7.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-8{--fdNestedList_Item_Padding_Left:8rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-8{--fdNestedList_Item_Padding_Left:8.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-9{--fdNestedList_Item_Padding_Left:9rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-9{--fdNestedList_Item_Padding_Left:9.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-10{--fdNestedList_Item_Padding_Left:10rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-10{--fdNestedList_Item_Padding_Left:10.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only[dir=rtl],[dir=rtl] .fd-nested-list--text-only{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:1rem}.fd-nested-list--text-only[dir=rtl] .fd-nested-list__content.has-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__content:not(.has-child) .fd-nested-list__title:first-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__link.has-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__link:not(.has-child) .fd-nested-list__title:first-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__content.has-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__content:not(.has-child) .fd-nested-list__title:first-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__link.has-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__link:not(.has-child) .fd-nested-list__title:first-child{padding-right:0}.fd-nested-list--text-only[dir=rtl] .level-2,[dir=rtl] .fd-nested-list--text-only .level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2rem}.fd-nested-list--text-only[dir=rtl].level-2,[dir=rtl] .fd-nested-list--text-only.level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2.75rem}.fd-nested-list--text-only[dir=rtl] .level-3,[dir=rtl] .fd-nested-list--text-only .level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3rem}.fd-nested-list--text-only[dir=rtl].level-3,[dir=rtl] .fd-nested-list--text-only.level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3.75rem}.fd-nested-list--text-only[dir=rtl] .level-4,[dir=rtl] .fd-nested-list--text-only .level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4rem}.fd-nested-list--text-only[dir=rtl].level-4,[dir=rtl] .fd-nested-list--text-only.level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4.75rem}.fd-nested-list--text-only[dir=rtl] .level-5,[dir=rtl] .fd-nested-list--text-only .level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5rem}.fd-nested-list--text-only[dir=rtl].level-5,[dir=rtl] .fd-nested-list--text-only.level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5.75rem}.fd-nested-list--text-only[dir=rtl] .level-6,[dir=rtl] .fd-nested-list--text-only .level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6rem}.fd-nested-list--text-only[dir=rtl].level-6,[dir=rtl] .fd-nested-list--text-only.level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6.75rem}.fd-nested-list--text-only[dir=rtl] .level-7,[dir=rtl] .fd-nested-list--text-only .level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7rem}.fd-nested-list--text-only[dir=rtl].level-7,[dir=rtl] .fd-nested-list--text-only.level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7.75rem}.fd-nested-list--text-only[dir=rtl] .level-8,[dir=rtl] .fd-nested-list--text-only .level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8rem}.fd-nested-list--text-only[dir=rtl].level-8,[dir=rtl] .fd-nested-list--text-only.level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8.75rem}.fd-nested-list--text-only[dir=rtl] .level-9,[dir=rtl] .fd-nested-list--text-only .level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9rem}.fd-nested-list--text-only[dir=rtl].level-9,[dir=rtl] .fd-nested-list--text-only.level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9.75rem}.fd-nested-list--text-only[dir=rtl] .level-10,[dir=rtl] .fd-nested-list--text-only .level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10rem}.fd-nested-list--text-only[dir=rtl].level-10,[dir=rtl] .fd-nested-list--text-only.level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10.75rem}.fd-nested-list[class*=-compact],[class*=-compact] .fd-nested-list:not([class*=-cozy]){--fdNestedList_Link_Height:2rem;--fdNestedList_Title_Font_Size:var(--sapFontSize);--fdNestedList_Icon_Font_Size:var(--sapFontLargeSize)}.fd-side-nav{-webkit-box-sizing:border-box;-webkit-box-pack:justify;-ms-flex-pack:justify;background-color:var(--sapList_Background);border:0;border-right:var(--sapList_BorderWidth) solid;border-right-color:var(--sapGroup_ContentBorderColor);box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:100%;justify-content:space-between;line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-shadow:var(--fdSideNav_Text_Shadow);width:15rem}.fd-side-nav:after,.fd-side-nav:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__skip-link{-webkit-box-sizing:border-box;clip:rect(0 0 0 0);border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:1px;line-height:var(--sapContent_LineHeight);margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fd-side-nav__skip-link:after,.fd-side-nav__skip-link:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__skip-link:focus{-webkit-box-align:center;-ms-flex-align:center;-webkit-transition:all .125s ease-in;-webkit-text-decoration:var(--fdLink_Text_Decoration, none);align-items:center;color:var(--sapLinkColor);cursor:pointer;display:var(--fdLink_Display, inline-block);height:auto;line-height:inherit;padding:0 .0625rem;position:static;text-decoration:var(--fdLink_Text_Decoration, none);text-shadow:var(--sapContent_TextShadow);transition:all .125s ease-in;width:auto}.fd-side-nav__skip-link:focus__content{-webkit-text-decoration:var(--fdLink_Text_Content_Decoration, none);text-decoration:var(--fdLink_Text_Content_Decoration, none)}.fd-side-nav__skip-link:focus.is-hover,.fd-side-nav__skip-link:focus:hover{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Hover,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Hover,none)}.fd-side-nav__skip-link:focus.is-focus,.fd-side-nav__skip-link:focus:focus{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Focus,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Focus,none)}.fd-side-nav__skip-link:focus.is-active,.fd-side-nav__skip-link:focus:active{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Active,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Active,none)}.fd-side-nav__skip-link:focus.is-disabled,.fd-side-nav__skip-link:focus:disabled,.fd-side-nav__skip-link:focus[aria-disabled=true]{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Disabled,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Disabled,none)}.fd-side-nav__skip-link:focus--subtle{--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Subtle,none);--fdLink_Text_Content_Decoration_Hover:var(--fdLink_Text_Content_Decoration_Subtle_Hover,none);--fdLink_Text_Content_Decoration_Active:var(--fdLink_Text_Content_Decoration_Subtle_Active,none);--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Subtle,none);--fdLink_Text_Decoration_Hover:var(--fdLink_Text_Decoration_Subtle_Hover,none);--fdLink_Text_Decoration_Active:var(--fdLink_Text_Decoration_Subtle_Active,none)}.fd-side-nav__skip-link:focus--undecorated{--fdLink_Text_Decoration:none;--fdLink_Text_Decoration_Subtle:none;--fdLink_Text_Decoration_Subtle_Hover:none;--fdLink_Text_Decoration_Subtle_Active:none;--fdLink_Text_Decoration_Hover:none;--fdLink_Text_Decoration_Focus:none;--fdLink_Text_Decoration_Active:none;--fdLink_Text_Decoration_Visited:none;--fdLink_Text_Decoration_Disabled:none;--fdLink_Text_Content_Decoration:none;--fdLink_Text_Content_Decoration_Subtle:none;--fdLink_Text_Content_Decoration_Subtle_Hover:none;--fdLink_Text_Content_Decoration_Subtle_Active:none;--fdLink_Text_Content_Decoration_Hover:none;--fdLink_Text_Content_Decoration_Focus:none;--fdLink_Text_Content_Decoration_Active:none;--fdLink_Text_Content_Decoration_Visited:none;--fdLink_Text_Content_Decoration_Disabled:none}.fd-side-nav__skip-link:focus--emphasized{font-weight:700}.fd-side-nav__skip-link:focus:visited{color:var(--sapLink_Visited_Color)}.fd-side-nav__skip-link:focus.is-hover,.fd-side-nav__skip-link:focus:hover{color:var(--sapLink_Hover_Color)}.fd-side-nav__skip-link:focus.is-focus,.fd-side-nav__skip-link:focus:focus{-webkit-box-shadow:none;background-color:var(--fdLink_Focus_Background);border-radius:var(--fdLink_Focus_Border_Radius);box-shadow:none;color:var(--fdLink_Text_Focus_Color);outline-color:var(--fdLink_Hover_Outline_Color);outline-offset:var(--fdLink_Hover_Outline_Offset);outline-style:var(--fdLink_Hover_Outline_Style);outline-width:var(--fdLink_Hover_Outline_Width);text-shadow:var(--fdLink_Focus_Text_Shadow);z-index:5}.fd-side-nav__skip-link:focus.is-active,.fd-side-nav__skip-link:focus:active{color:var(--sapLink_Active_Color)}.fd-side-nav__skip-link:focus.is-active.is-focus,.fd-side-nav__skip-link:focus.is-active:focus,.fd-side-nav__skip-link:focus:active.is-focus,.fd-side-nav__skip-link:focus:active:focus{background-color:transparent;z-index:5}.fd-side-nav__skip-link:focus--inverted{color:var(--sapLink_InvertedColor);text-shadow:none}.fd-side-nav__skip-link:focus--inverted.is-hover,.fd-side-nav__skip-link:focus--inverted:hover{color:var(--sapLink_InvertedColor)}.fd-side-nav__skip-link:focus--inverted.is-focus,.fd-side-nav__skip-link:focus--inverted:focus{outline-color:var(--sapContent_ContrastFocusColor);z-index:5}.fd-side-nav__skip-link:focus--subtle{color:var(--sapLink_SubtleColor)}.fd-side-nav__skip-link:focus.is-disabled,.fd-side-nav__skip-link:focus:disabled,.fd-side-nav__skip-link:focus[aria-disabled=true]{color:var(--sapLinkColor);opacity:var(--sapContent_DisabledOpacity);pointer-events:none}.fd-side-nav__skip-link:focus>img{vertical-align:bottom}.fd-side-nav__group-header{-webkit-box-sizing:border-box;align-items:flex-end;background:var(--sapList_GroupHeaderBackground);border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_GroupHeaderBorderColor);box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_GroupHeaderTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;font-weight:700;forced-color-adjust:none;height:2.75rem;line-height:var(--sapContent_LineHeight);line-height:2rem;margin:0;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;white-space:nowrap}.fd-side-nav__group-header:after,.fd-side-nav__group-header:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__main-navigation{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-side-nav__main-navigation:after,.fd-side-nav__main-navigation:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__utility{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:3rem 0 0;padding:0}.fd-side-nav__utility:after,.fd-side-nav__utility:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__utility:before{border-top:.125rem solid;border-top-color:var(--sapList_GroupHeaderBorderColor);content:\" \";display:block;margin:.25rem .5rem}.fd-side-nav--condensed{width:2.75rem}.fd-side-nav--condensed .fd-nested-list__button,.fd-side-nav--condensed .fd-nested-list__group-header,.fd-side-nav--condensed .fd-nested-list__title{display:none}.fd-side-nav--condensed .fd-nested-list__content,.fd-side-nav--condensed .fd-nested-list__link{border-bottom:none;text-shadow:var(--fdSideNav_Text_Shadow)}.fd-side-nav--condensed .fd-nested-list__content.is-selected,.fd-side-nav--condensed .fd-nested-list__content[aria-selected=true],.fd-side-nav--condensed .fd-nested-list__link.is-selected,.fd-side-nav--condensed .fd-nested-list__link[aria-selected=true]{border-bottom:var(--sapList_BorderWidth) solid;border-bottom-color:var(--sapList_SelectionBorderColor)}.fd-side-nav--condensed .fd-nested-list__content.has-child,.fd-side-nav--condensed .fd-nested-list__link.has-child{position:relative}.fd-side-nav--condensed .fd-nested-list__content.has-child:after,.fd-side-nav--condensed .fd-nested-list__link.has-child:after{border-color:transparent var(--sapContent_IconColor) transparent transparent;border-style:solid;border-width:.375rem .375rem 0 0;bottom:0;content:\"\";margin-bottom:.0625rem;margin-right:.125rem;min-height:0;min-width:0;position:absolute;right:0}.fd-side-nav .fd-nested-list__icon,.fd-side-nav .fd-nested-list__link.has-child:after{color:var(--sapContent_IconColor)}.fd-side-nav .fd-nested-list__link.has-child:active:after{color:var(--sapList_Active_TextColor)}.fd-side-nav[dir=rtl],[dir=rtl] .fd-side-nav{border-left:var(--sapList_BorderWidth) solid;border-left-color:var(--sapGroup_ContentBorderColor);border-right:none}.fd-side-nav[dir=rtl].fd-side-nav--condensed,[dir=rtl] .fd-side-nav.fd-side-nav--condensed{width:2.75rem}.fd-side-nav[dir=rtl].fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__content.has-child:after,.fd-side-nav[dir=rtl].fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__link.has-child:after,[dir=rtl] .fd-side-nav.fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__content.has-child:after,[dir=rtl] .fd-side-nav.fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__link.has-child:after{-webkit-transform:rotate(90deg);left:0;margin-left:.125rem;margin-right:0;right:auto;transform:rotate(90deg)}.fd-side-nav[dir=rtl].fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__content,.fd-side-nav[dir=rtl].fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__link,[dir=rtl] .fd-side-nav.fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__content,[dir=rtl] .fd-side-nav.fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__link{padding-left:1rem;padding-right:1rem}.fd-nested-list__item{display:block}.fd-nested-list__item .fd-nested-list__link{cursor:pointer}.fd-nested-list__item .fd-nested-list__content .fd-nested-list__button.fd-button{background:none}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1.PreparedNestedListComponent, selector: "fd-prepared-nested-list", inputs: ["first", "condensed", "list"] }, { kind: "directive", type: i3.SideNavigationMainDirective, selector: "[fdSideNavigationMain], [fd-side-nav-main]" }, { kind: "directive", type: i4.SideNavigationUtilityDirective, selector: "[fdSideNavigationUtility], [fd-side-nav-utility]" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
83
|
-
}
|
|
84
|
-
SideNavigationComponent = __decorate([
|
|
85
|
-
deprecated({
|
|
86
|
-
alternative: 'VerticalNavigationComponent',
|
|
87
|
-
url: 'https://github.com/SAP/fundamental-ngx/tree/75130aa85724060a515d99d675eb672b6d6eef6a/libs/core/src/lib/vertical-navigation'
|
|
88
|
-
}),
|
|
89
|
-
__metadata("design:paramtypes", [NestedListKeyboardService, NestedListStateService])
|
|
90
|
-
], SideNavigationComponent);
|
|
84
|
+
}
|
|
91
85
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: SideNavigationComponent, decorators: [{
|
|
92
86
|
type: Component,
|
|
93
87
|
args: [{ selector: 'fd-side-nav', encapsulation: ViewEncapsulation.None, providers: [NestedListKeyboardService, NestedListStateService], template: "<nav class=\"fd-side-nav\" [class.fd-side-nav--condensed]=\"condensed || sideNavigationConfiguration?.condensed\">\n <ng-container *ngIf=\"!sideNavigationConfiguration\">\n <ng-content></ng-content>\n </ng-container>\n <ng-container *ngIf=\"sideNavigationConfiguration\">\n <div fd-side-nav-main *ngIf=\"sideNavigationConfiguration.mainNavigation\">\n <fd-prepared-nested-list\n [condensed]=\"condensed || !!sideNavigationConfiguration.condensed\"\n [first]=\"true\"\n [list]=\"sideNavigationConfiguration.mainNavigation\"\n >\n </fd-prepared-nested-list>\n </div>\n <div fd-side-nav-utility *ngIf=\"sideNavigationConfiguration.utilityNavigation\">\n <fd-prepared-nested-list\n [condensed]=\"condensed || !!sideNavigationConfiguration.condensed\"\n [first]=\"true\"\n [list]=\"sideNavigationConfiguration.utilityNavigation\"\n >\n </fd-prepared-nested-list>\n </div>\n </ng-container>\n</nav>\n", styles: ["/*!\n * Fundamental Library Styles v0.28.3\n * Copyright (c) 2023 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n */.fd-nested-list{--fdNestedList_Link_Height:2.75rem;--fdNestedList_Title_Font_Size:var(--sapFontLargeSize);--fdNestedList_Icon_Font_Size:var(--sapFontHeader4Size);--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:0;-webkit-box-sizing:border-box;border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor);box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);list-style:none;margin:0;padding:0;width:100%}.fd-nested-list:after,.fd-nested-list:before{box-sizing:inherit;font-size:inherit}.fd-nested-list [class*=level]{border-bottom:none}.fd-nested-list [class*=level] .fd-nested-list__content,.fd-nested-list [class*=level] .fd-nested-list__link{border-top:none}.fd-nested-list .fd-nested-list__content,.fd-nested-list .fd-nested-list__link{border-bottom:none;padding-left:var(--fdNestedList_Item_Padding_Left);padding-right:var(--fdNestedList_Item_Padding_Right)}.fd-nested-list .fd-nested-list__content.is-selected,.fd-nested-list .fd-nested-list__content[aria-selected=true],.fd-nested-list .fd-nested-list__link.is-selected,.fd-nested-list .fd-nested-list__link[aria-selected=true]{border-bottom:var(--sapList_BorderWidth) solid var(--sapList_SelectionBorderColor)}.fd-nested-list .fd-nested-list__content.has-child,.fd-nested-list .fd-nested-list__link.has-child{padding-left:0;padding-right:0}.fd-nested-list .fd-nested-list__content.has-child>.fd-nested-list__title{padding-left:var(--fdNestedList_Item_Padding_Left);padding-right:var(--fdNestedList_Item_Padding_Right)}.fd-nested-list .level-2{--fdNestedList_Item_Padding_Left:2.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-3{--fdNestedList_Item_Padding_Left:3.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-4{--fdNestedList_Item_Padding_Left:4.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-5{--fdNestedList_Item_Padding_Left:5.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-6{--fdNestedList_Item_Padding_Left:6.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-7{--fdNestedList_Item_Padding_Left:7.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-8{--fdNestedList_Item_Padding_Left:8.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-9{--fdNestedList_Item_Padding_Left:9.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list .level-10{--fdNestedList_Item_Padding_Left:10.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list[dir=rtl] .level-2,[dir=rtl] .fd-nested-list .level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2.75rem}.fd-nested-list[dir=rtl] .level-3,[dir=rtl] .fd-nested-list .level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3.75rem}.fd-nested-list[dir=rtl] .level-4,[dir=rtl] .fd-nested-list .level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4.75rem}.fd-nested-list[dir=rtl] .level-5,[dir=rtl] .fd-nested-list .level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5.75rem}.fd-nested-list[dir=rtl] .level-6,[dir=rtl] .fd-nested-list .level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6.75rem}.fd-nested-list[dir=rtl] .level-7,[dir=rtl] .fd-nested-list .level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7.75rem}.fd-nested-list[dir=rtl] .level-8,[dir=rtl] .fd-nested-list .level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8.75rem}.fd-nested-list[dir=rtl] .level-9,[dir=rtl] .fd-nested-list .level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9.75rem}.fd-nested-list[dir=rtl] .level-10,[dir=rtl] .fd-nested-list .level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10.75rem}.fd-nested-list[aria-hidden=true]{display:none}.fd-nested-list--popover{border-bottom:none}.fd-nested-list--popover .fd-nested-list__group-header{border-bottom:none;border-top-left-radius:var(--fdNested_List_Border_Corner_Radius);border-top-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list--popover .fd-nested-list__item:first-child,.fd-nested-list--popover .fd-nested-list__item:first-child .fd-nested-list__content,.fd-nested-list--popover .fd-nested-list__item:first-child .fd-nested-list__link{border-top-left-radius:var(--fdNested_List_Border_Corner_Radius);border-top-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list--popover .fd-nested-list__item:last-child,.fd-nested-list--popover .fd-nested-list__item:last-child .fd-nested-list__content,.fd-nested-list--popover .fd-nested-list__item:last-child .fd-nested-list__link{border-bottom-left-radius:var(--fdNested_List_Border_Corner_Radius);border-bottom-right-radius:var(--fdNested_List_Border_Corner_Radius)}.fd-nested-list__item{-webkit-box-sizing:border-box;background:var(--sapList_Background);border:0;box-sizing:border-box;color:var(--sapTextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-shadow:var(--fdVerticalNav_Text_Shadow)}.fd-nested-list__item:after,.fd-nested-list__item:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__item:first-child .fd-nested-list__content,.fd-nested-list__item:first-child .fd-nested-list__link{border-top:none}.fd-nested-list__content,.fd-nested-list__link{-webkit-box-sizing:border-box;align-items:center;border:0;border-top:var(--sapList_BorderWidth) solid var(--sapList_BorderColor);box-sizing:border-box;color:var(--sapTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--fdNestedList_Link_Height);line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-decoration:none;width:100%}.fd-nested-list__content:after,.fd-nested-list__content:before,.fd-nested-list__link:after,.fd-nested-list__link:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__content.is-hover,.fd-nested-list__content.is-hover .fd-nested-list__button,.fd-nested-list__content:hover,.fd-nested-list__content:hover .fd-nested-list__button,.fd-nested-list__link.is-hover,.fd-nested-list__link.is-hover .fd-nested-list__button,.fd-nested-list__link:hover,.fd-nested-list__link:hover .fd-nested-list__button{background:var(--sapList_Hover_Background)}.fd-nested-list__content.is-focus,.fd-nested-list__content:focus,.fd-nested-list__link.is-focus,.fd-nested-list__link:focus{outline-color:var(--sapContent_FocusColor);outline-offset:-.1875rem;outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}.fd-nested-list__content.is-selected,.fd-nested-list__content[aria-selected=true],.fd-nested-list__link.is-selected,.fd-nested-list__link[aria-selected=true]{background:var(--sapList_SelectionBackgroundColor);border-bottom:var(--sapList_BorderWidth) solid;border-bottom-color:var(--sapList_SelectionBorderColor)}.fd-nested-list__content.is-selected .fd-nested-list__button,.fd-nested-list__content[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link.is-selected .fd-nested-list__button,.fd-nested-list__link[aria-selected=true] .fd-nested-list__button{background:var(--sapList_SelectionBackgroundColor)}.fd-nested-list__content.is-selected.is-hover,.fd-nested-list__content.is-selected.is-hover .fd-nested-list__button,.fd-nested-list__content.is-selected:hover,.fd-nested-list__content.is-selected:hover .fd-nested-list__button,.fd-nested-list__content[aria-selected=true].is-hover,.fd-nested-list__content[aria-selected=true].is-hover .fd-nested-list__button,.fd-nested-list__content[aria-selected=true]:hover,.fd-nested-list__content[aria-selected=true]:hover .fd-nested-list__button,.fd-nested-list__link.is-selected.is-hover,.fd-nested-list__link.is-selected.is-hover .fd-nested-list__button,.fd-nested-list__link.is-selected:hover,.fd-nested-list__link.is-selected:hover .fd-nested-list__button,.fd-nested-list__link[aria-selected=true].is-hover,.fd-nested-list__link[aria-selected=true].is-hover .fd-nested-list__button,.fd-nested-list__link[aria-selected=true]:hover,.fd-nested-list__link[aria-selected=true]:hover .fd-nested-list__button{background:var(--sapList_Hover_SelectionBackground)}.fd-nested-list__content.is-active,.fd-nested-list__content.is-active .fd-nested-list__button,.fd-nested-list__content.is-active.is-selected,.fd-nested-list__content.is-active.is-selected .fd-nested-list__button,.fd-nested-list__content.is-active[aria-selected=true],.fd-nested-list__content.is-active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__content:active,.fd-nested-list__content:active .fd-nested-list__button,.fd-nested-list__content:active.is-selected,.fd-nested-list__content:active.is-selected .fd-nested-list__button,.fd-nested-list__content:active[aria-selected=true],.fd-nested-list__content:active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link.is-active,.fd-nested-list__link.is-active .fd-nested-list__button,.fd-nested-list__link.is-active.is-selected,.fd-nested-list__link.is-active.is-selected .fd-nested-list__button,.fd-nested-list__link.is-active[aria-selected=true],.fd-nested-list__link.is-active[aria-selected=true] .fd-nested-list__button,.fd-nested-list__link:active,.fd-nested-list__link:active .fd-nested-list__button,.fd-nested-list__link:active.is-selected,.fd-nested-list__link:active.is-selected .fd-nested-list__button,.fd-nested-list__link:active[aria-selected=true],.fd-nested-list__link:active[aria-selected=true] .fd-nested-list__button{background:var(--sapList_Active_Background)}.fd-nested-list__content.is-active .fd-nested-list__button,.fd-nested-list__content.is-active .fd-nested-list__icon,.fd-nested-list__content.is-active .fd-nested-list__title,.fd-nested-list__content:active .fd-nested-list__button,.fd-nested-list__content:active .fd-nested-list__icon,.fd-nested-list__content:active .fd-nested-list__title,.fd-nested-list__link.is-active .fd-nested-list__button,.fd-nested-list__link.is-active .fd-nested-list__icon,.fd-nested-list__link.is-active .fd-nested-list__title,.fd-nested-list__link:active .fd-nested-list__button,.fd-nested-list__link:active .fd-nested-list__icon,.fd-nested-list__link:active .fd-nested-list__title{color:var(--sapList_Active_TextColor)}.fd-nested-list__content.has-child,.fd-nested-list__link.has-child{justify-content:space-between;padding:0}.fd-nested-list__content.has-child>.fd-nested-list__item,.fd-nested-list__content.has-child>.fd-nested-list__link,.fd-nested-list__link.has-child>.fd-nested-list__item,.fd-nested-list__link.has-child>.fd-nested-list__link{border:none}.fd-nested-list__content.has-child>.fd-nested-list__link,.fd-nested-list__link.has-child>.fd-nested-list__link{background:transparent;border:none;height:100%}.fd-nested-list__content.has-child>.fd-nested-list__link.is-focus,.fd-nested-list__content.has-child>.fd-nested-list__link:focus,.fd-nested-list__link.has-child>.fd-nested-list__link.is-focus,.fd-nested-list__link.has-child>.fd-nested-list__link:focus{outline-color:var(--sapContent_FocusColor);outline-offset:-.1875rem;outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}.fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title,.fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title{padding-right:0}.fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title[dir=rtl],.fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title[dir=rtl],[dir=rtl] .fd-nested-list__content.has-child>.fd-nested-list__link>.fd-nested-list__title,[dir=rtl] .fd-nested-list__link.has-child>.fd-nested-list__link>.fd-nested-list__title{padding-left:0}.fd-nested-list__link{cursor:pointer}.fd-nested-list__button.fd-button{background:none;border:none;color:var(--sapContent_IconColor);height:100%;max-height:100%;min-height:100%;min-width:2.5rem;outline:none;text-decoration:none}.fd-nested-list__button.fd-button [class*=sap-icon],.fd-nested-list__button.fd-button[class*=sap-icon]{font-size:var(--sapFontLargeSize)}.fd-nested-list__icon [class*=sap-icon],.fd-nested-list__icon[class*=sap-icon]{-webkit-box-pack:center;-ms-flex-pack:center;background:inherit;border-radius:inherit;color:inherit;color:var(--sapList_TextColor);font-size:inherit;font-size:var(--fdNestedList_Icon_Font_Size);justify-content:center;line-height:1;min-width:2.75rem}.fd-nested-list__icon [class*=sap-icon],.fd-nested-list__icon[class*=sap-icon],.fd-nested-list__title{align-items:center;display:flex;height:100%}.fd-nested-list__title{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_TextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:var(--fdNestedList_Title_Font_Size);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0 1rem 0 0;text-overflow:ellipsis;white-space:nowrap;width:100%}.fd-nested-list__title:after,.fd-nested-list__title:before{box-sizing:inherit;font-size:inherit}.fd-nested-list__title:first-child{padding-left:2.75rem}.fd-nested-list__title[dir=rtl],[dir=rtl] .fd-nested-list__title{padding-left:1rem;padding-right:0;text-align:right}.fd-nested-list__title[dir=rtl]:first-child,[dir=rtl] .fd-nested-list__title:first-child{padding-left:0;padding-right:2.75rem}.fd-nested-list__group-header{-webkit-box-sizing:border-box;align-items:flex-end;background:var(--sapList_GroupHeaderBackground);border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_GroupHeaderBorderColor);box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_GroupHeaderTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;font-weight:700;forced-color-adjust:none;height:2.75rem;line-height:var(--sapContent_LineHeight);line-height:2rem;margin:0;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;white-space:nowrap}.fd-nested-list__group-header:after,.fd-nested-list__group-header:before{box-sizing:inherit;font-size:inherit}.fd-nested-list--no-border .fd-nested-list__group-header,.fd-nested-list--no-border .fd-nested-list__item,.fd-nested-list--no-border .fd-nested-list__link{border-top:none}.fd-nested-list--text-only{--fdNestedList_Item_Padding_Left:1rem}.fd-nested-list--text-only .fd-nested-list__content.has-child,.fd-nested-list--text-only .fd-nested-list__link.has-child{padding:0}.fd-nested-list--text-only .fd-nested-list__title:first-child{padding-left:0}.fd-nested-list--text-only .level-2{--fdNestedList_Item_Padding_Left:2rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-2{--fdNestedList_Item_Padding_Left:2.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-3{--fdNestedList_Item_Padding_Left:3rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-3{--fdNestedList_Item_Padding_Left:3.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-4{--fdNestedList_Item_Padding_Left:4rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-4{--fdNestedList_Item_Padding_Left:4.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-5{--fdNestedList_Item_Padding_Left:5rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-5{--fdNestedList_Item_Padding_Left:5.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-6{--fdNestedList_Item_Padding_Left:6rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-6{--fdNestedList_Item_Padding_Left:6.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-7{--fdNestedList_Item_Padding_Left:7rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-7{--fdNestedList_Item_Padding_Left:7.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-8{--fdNestedList_Item_Padding_Left:8rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-8{--fdNestedList_Item_Padding_Left:8.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-9{--fdNestedList_Item_Padding_Left:9rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-9{--fdNestedList_Item_Padding_Left:9.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only .level-10{--fdNestedList_Item_Padding_Left:10rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only.level-10{--fdNestedList_Item_Padding_Left:10.75rem;--fdNestedList_Item_Padding_Right:0}.fd-nested-list--text-only[dir=rtl],[dir=rtl] .fd-nested-list--text-only{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:1rem}.fd-nested-list--text-only[dir=rtl] .fd-nested-list__content.has-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__content:not(.has-child) .fd-nested-list__title:first-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__link.has-child,.fd-nested-list--text-only[dir=rtl] .fd-nested-list__link:not(.has-child) .fd-nested-list__title:first-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__content.has-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__content:not(.has-child) .fd-nested-list__title:first-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__link.has-child,[dir=rtl] .fd-nested-list--text-only .fd-nested-list__link:not(.has-child) .fd-nested-list__title:first-child{padding-right:0}.fd-nested-list--text-only[dir=rtl] .level-2,[dir=rtl] .fd-nested-list--text-only .level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2rem}.fd-nested-list--text-only[dir=rtl].level-2,[dir=rtl] .fd-nested-list--text-only.level-2{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:2.75rem}.fd-nested-list--text-only[dir=rtl] .level-3,[dir=rtl] .fd-nested-list--text-only .level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3rem}.fd-nested-list--text-only[dir=rtl].level-3,[dir=rtl] .fd-nested-list--text-only.level-3{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:3.75rem}.fd-nested-list--text-only[dir=rtl] .level-4,[dir=rtl] .fd-nested-list--text-only .level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4rem}.fd-nested-list--text-only[dir=rtl].level-4,[dir=rtl] .fd-nested-list--text-only.level-4{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:4.75rem}.fd-nested-list--text-only[dir=rtl] .level-5,[dir=rtl] .fd-nested-list--text-only .level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5rem}.fd-nested-list--text-only[dir=rtl].level-5,[dir=rtl] .fd-nested-list--text-only.level-5{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:5.75rem}.fd-nested-list--text-only[dir=rtl] .level-6,[dir=rtl] .fd-nested-list--text-only .level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6rem}.fd-nested-list--text-only[dir=rtl].level-6,[dir=rtl] .fd-nested-list--text-only.level-6{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:6.75rem}.fd-nested-list--text-only[dir=rtl] .level-7,[dir=rtl] .fd-nested-list--text-only .level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7rem}.fd-nested-list--text-only[dir=rtl].level-7,[dir=rtl] .fd-nested-list--text-only.level-7{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:7.75rem}.fd-nested-list--text-only[dir=rtl] .level-8,[dir=rtl] .fd-nested-list--text-only .level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8rem}.fd-nested-list--text-only[dir=rtl].level-8,[dir=rtl] .fd-nested-list--text-only.level-8{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:8.75rem}.fd-nested-list--text-only[dir=rtl] .level-9,[dir=rtl] .fd-nested-list--text-only .level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9rem}.fd-nested-list--text-only[dir=rtl].level-9,[dir=rtl] .fd-nested-list--text-only.level-9{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:9.75rem}.fd-nested-list--text-only[dir=rtl] .level-10,[dir=rtl] .fd-nested-list--text-only .level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10rem}.fd-nested-list--text-only[dir=rtl].level-10,[dir=rtl] .fd-nested-list--text-only.level-10{--fdNestedList_Item_Padding_Left:0;--fdNestedList_Item_Padding_Right:10.75rem}.fd-nested-list[class*=-compact],[class*=-compact] .fd-nested-list:not([class*=-cozy]){--fdNestedList_Link_Height:2rem;--fdNestedList_Title_Font_Size:var(--sapFontSize);--fdNestedList_Icon_Font_Size:var(--sapFontLargeSize)}.fd-side-nav{-webkit-box-sizing:border-box;-webkit-box-pack:justify;-ms-flex-pack:justify;background-color:var(--sapList_Background);border:0;border-right:var(--sapList_BorderWidth) solid;border-right-color:var(--sapGroup_ContentBorderColor);box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:100%;justify-content:space-between;line-height:var(--sapContent_LineHeight);margin:0;padding:0;text-shadow:var(--fdSideNav_Text_Shadow);width:15rem}.fd-side-nav:after,.fd-side-nav:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__skip-link{-webkit-box-sizing:border-box;clip:rect(0 0 0 0);border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:1px;line-height:var(--sapContent_LineHeight);margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fd-side-nav__skip-link:after,.fd-side-nav__skip-link:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__skip-link:focus{-webkit-box-align:center;-ms-flex-align:center;-webkit-transition:all .125s ease-in;-webkit-text-decoration:var(--fdLink_Text_Decoration, none);align-items:center;color:var(--sapLinkColor);cursor:pointer;display:var(--fdLink_Display, inline-block);height:auto;line-height:inherit;padding:0 .0625rem;position:static;text-decoration:var(--fdLink_Text_Decoration, none);text-shadow:var(--sapContent_TextShadow);transition:all .125s ease-in;width:auto}.fd-side-nav__skip-link:focus__content{-webkit-text-decoration:var(--fdLink_Text_Content_Decoration, none);text-decoration:var(--fdLink_Text_Content_Decoration, none)}.fd-side-nav__skip-link:focus.is-hover,.fd-side-nav__skip-link:focus:hover{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Hover,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Hover,none)}.fd-side-nav__skip-link:focus.is-focus,.fd-side-nav__skip-link:focus:focus{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Focus,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Focus,none)}.fd-side-nav__skip-link:focus.is-active,.fd-side-nav__skip-link:focus:active{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Active,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Active,none)}.fd-side-nav__skip-link:focus.is-disabled,.fd-side-nav__skip-link:focus:disabled,.fd-side-nav__skip-link:focus[aria-disabled=true]{--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Disabled,none);--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Disabled,none)}.fd-side-nav__skip-link:focus--subtle{--fdLink_Text_Content_Decoration:var(--fdLink_Text_Content_Decoration_Subtle,none);--fdLink_Text_Content_Decoration_Hover:var(--fdLink_Text_Content_Decoration_Subtle_Hover,none);--fdLink_Text_Content_Decoration_Active:var(--fdLink_Text_Content_Decoration_Subtle_Active,none);--fdLink_Text_Decoration:var(--fdLink_Text_Decoration_Subtle,none);--fdLink_Text_Decoration_Hover:var(--fdLink_Text_Decoration_Subtle_Hover,none);--fdLink_Text_Decoration_Active:var(--fdLink_Text_Decoration_Subtle_Active,none)}.fd-side-nav__skip-link:focus--undecorated{--fdLink_Text_Decoration:none;--fdLink_Text_Decoration_Subtle:none;--fdLink_Text_Decoration_Subtle_Hover:none;--fdLink_Text_Decoration_Subtle_Active:none;--fdLink_Text_Decoration_Hover:none;--fdLink_Text_Decoration_Focus:none;--fdLink_Text_Decoration_Active:none;--fdLink_Text_Decoration_Visited:none;--fdLink_Text_Decoration_Disabled:none;--fdLink_Text_Content_Decoration:none;--fdLink_Text_Content_Decoration_Subtle:none;--fdLink_Text_Content_Decoration_Subtle_Hover:none;--fdLink_Text_Content_Decoration_Subtle_Active:none;--fdLink_Text_Content_Decoration_Hover:none;--fdLink_Text_Content_Decoration_Focus:none;--fdLink_Text_Content_Decoration_Active:none;--fdLink_Text_Content_Decoration_Visited:none;--fdLink_Text_Content_Decoration_Disabled:none}.fd-side-nav__skip-link:focus--emphasized{font-weight:700}.fd-side-nav__skip-link:focus:visited{color:var(--sapLink_Visited_Color)}.fd-side-nav__skip-link:focus.is-hover,.fd-side-nav__skip-link:focus:hover{color:var(--sapLink_Hover_Color)}.fd-side-nav__skip-link:focus.is-focus,.fd-side-nav__skip-link:focus:focus{-webkit-box-shadow:none;background-color:var(--fdLink_Focus_Background);border-radius:var(--fdLink_Focus_Border_Radius);box-shadow:none;color:var(--fdLink_Text_Focus_Color);outline-color:var(--fdLink_Hover_Outline_Color);outline-offset:var(--fdLink_Hover_Outline_Offset);outline-style:var(--fdLink_Hover_Outline_Style);outline-width:var(--fdLink_Hover_Outline_Width);text-shadow:var(--fdLink_Focus_Text_Shadow);z-index:5}.fd-side-nav__skip-link:focus.is-active,.fd-side-nav__skip-link:focus:active{color:var(--sapLink_Active_Color)}.fd-side-nav__skip-link:focus.is-active.is-focus,.fd-side-nav__skip-link:focus.is-active:focus,.fd-side-nav__skip-link:focus:active.is-focus,.fd-side-nav__skip-link:focus:active:focus{background-color:transparent;z-index:5}.fd-side-nav__skip-link:focus--inverted{color:var(--sapLink_InvertedColor);text-shadow:none}.fd-side-nav__skip-link:focus--inverted.is-hover,.fd-side-nav__skip-link:focus--inverted:hover{color:var(--sapLink_InvertedColor)}.fd-side-nav__skip-link:focus--inverted.is-focus,.fd-side-nav__skip-link:focus--inverted:focus{outline-color:var(--sapContent_ContrastFocusColor);z-index:5}.fd-side-nav__skip-link:focus--subtle{color:var(--sapLink_SubtleColor)}.fd-side-nav__skip-link:focus.is-disabled,.fd-side-nav__skip-link:focus:disabled,.fd-side-nav__skip-link:focus[aria-disabled=true]{color:var(--sapLinkColor);opacity:var(--sapContent_DisabledOpacity);pointer-events:none}.fd-side-nav__skip-link:focus>img{vertical-align:bottom}.fd-side-nav__group-header{-webkit-box-sizing:border-box;align-items:flex-end;background:var(--sapList_GroupHeaderBackground);border:0;border-bottom:var(--sapList_BorderWidth) solid var(--sapList_GroupHeaderBorderColor);box-sizing:border-box;color:var(--sapTextColor);color:var(--sapList_GroupHeaderTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;font-weight:700;forced-color-adjust:none;height:2.75rem;line-height:var(--sapContent_LineHeight);line-height:2rem;margin:0;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;white-space:nowrap}.fd-side-nav__group-header:after,.fd-side-nav__group-header:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__main-navigation{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-side-nav__main-navigation:after,.fd-side-nav__main-navigation:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__utility{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:3rem 0 0;padding:0}.fd-side-nav__utility:after,.fd-side-nav__utility:before{box-sizing:inherit;font-size:inherit}.fd-side-nav__utility:before{border-top:.125rem solid;border-top-color:var(--sapList_GroupHeaderBorderColor);content:\" \";display:block;margin:.25rem .5rem}.fd-side-nav--condensed{width:2.75rem}.fd-side-nav--condensed .fd-nested-list__button,.fd-side-nav--condensed .fd-nested-list__group-header,.fd-side-nav--condensed .fd-nested-list__title{display:none}.fd-side-nav--condensed .fd-nested-list__content,.fd-side-nav--condensed .fd-nested-list__link{border-bottom:none;text-shadow:var(--fdSideNav_Text_Shadow)}.fd-side-nav--condensed .fd-nested-list__content.is-selected,.fd-side-nav--condensed .fd-nested-list__content[aria-selected=true],.fd-side-nav--condensed .fd-nested-list__link.is-selected,.fd-side-nav--condensed .fd-nested-list__link[aria-selected=true]{border-bottom:var(--sapList_BorderWidth) solid;border-bottom-color:var(--sapList_SelectionBorderColor)}.fd-side-nav--condensed .fd-nested-list__content.has-child,.fd-side-nav--condensed .fd-nested-list__link.has-child{position:relative}.fd-side-nav--condensed .fd-nested-list__content.has-child:after,.fd-side-nav--condensed .fd-nested-list__link.has-child:after{border-color:transparent var(--sapContent_IconColor) transparent transparent;border-style:solid;border-width:.375rem .375rem 0 0;bottom:0;content:\"\";margin-bottom:.0625rem;margin-right:.125rem;min-height:0;min-width:0;position:absolute;right:0}.fd-side-nav .fd-nested-list__icon,.fd-side-nav .fd-nested-list__link.has-child:after{color:var(--sapContent_IconColor)}.fd-side-nav .fd-nested-list__link.has-child:active:after{color:var(--sapList_Active_TextColor)}.fd-side-nav[dir=rtl],[dir=rtl] .fd-side-nav{border-left:var(--sapList_BorderWidth) solid;border-left-color:var(--sapGroup_ContentBorderColor);border-right:none}.fd-side-nav[dir=rtl].fd-side-nav--condensed,[dir=rtl] .fd-side-nav.fd-side-nav--condensed{width:2.75rem}.fd-side-nav[dir=rtl].fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__content.has-child:after,.fd-side-nav[dir=rtl].fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__link.has-child:after,[dir=rtl] .fd-side-nav.fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__content.has-child:after,[dir=rtl] .fd-side-nav.fd-side-nav--condensed .fd-nested-list__item .fd-nested-list__link.has-child:after{-webkit-transform:rotate(90deg);left:0;margin-left:.125rem;margin-right:0;right:auto;transform:rotate(90deg)}.fd-side-nav[dir=rtl].fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__content,.fd-side-nav[dir=rtl].fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__link,[dir=rtl] .fd-side-nav.fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__content,[dir=rtl] .fd-side-nav.fd-side-nav--condensed__item .fd-nested-list__item .fd-nested-list__link{padding-left:1rem;padding-right:1rem}.fd-nested-list__item{display:block}.fd-nested-list__item .fd-nested-list__link{cursor:pointer}.fd-nested-list__item .fd-nested-list__content .fd-nested-list__button.fd-button{background:none}\n"] }]
|
|
@@ -115,4 +109,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImpor
|
|
|
115
109
|
type: HostListener,
|
|
116
110
|
args: ['window:resize']
|
|
117
111
|
}] } });
|
|
118
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZS1uYXZpZ2F0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvY29yZS9zcmMvbGliL3NpZGUtbmF2aWdhdGlvbi9zaWRlLW5hdmlnYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL3NyYy9saWIvc2lkZS1uYXZpZ2F0aW9uL3NpZGUtbmF2aWdhdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUdILFNBQVMsRUFDVCxZQUFZLEVBQ1osV0FBVyxFQUNYLFlBQVksRUFDWixLQUFLLEVBRUwsU0FBUyxFQUNULFlBQVksRUFDWixpQkFBaUIsRUFDcEIsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDOUUsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDckYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFFL0UsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDaEYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFHM0UsT0FBTyxVQUFVLE1BQU0sc0JBQXNCLENBQUM7Ozs7OztBQUU5Qzs7OztHQUlHO0FBWUksV0FBTSx1QkFBdUIsR0FBN0IsTUFBTSx1QkFBdUI7SUFrQmhDLHlFQUF5RTtJQUN6RSxJQUNJLFVBQVUsQ0FBQyxVQUFtQjtRQUM5QixJQUFJLENBQUMsZUFBZSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUM7SUFDakQsQ0FBQztJQWlCRCxjQUFjO0lBQ2QsWUFBb0IsZUFBMEMsRUFBVSxlQUF1QztRQUEzRixvQkFBZSxHQUFmLGVBQWUsQ0FBMkI7UUFBVSxvQkFBZSxHQUFmLGVBQWUsQ0FBd0I7UUFqQy9HLHlDQUF5QztRQUd6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YixZQUFZO3VCQUFDLDhCQUE4QjtnQkFLNUMsV0FBVztzQkFEVixZQUFZO3VCQUFDLDJCQUEyQjtnQkFLekMsa0JBQWtCO3NCQURqQixZQUFZO3VCQUFDLDJCQUEyQjtnQkF5Q3pDLFFBQVE7c0JBRFAsWUFBWTt1QkFBQyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBBZnRlckNvbnRlbnRJbml0LFxuICAgIEFmdGVyVmlld0luaXQsXG4gICAgQ29tcG9uZW50LFxuICAgIENvbnRlbnRDaGlsZCxcbiAgICBIb3N0QmluZGluZyxcbiAgICBIb3N0TGlzdGVuZXIsXG4gICAgSW5wdXQsXG4gICAgT25Jbml0LFxuICAgIFF1ZXJ5TGlzdCxcbiAgICBWaWV3Q2hpbGRyZW4sXG4gICAgVmlld0VuY2Fwc3VsYXRpb25cbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZXN0ZWRMaXN0RGlyZWN0aXZlIH0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jb3JlL25lc3RlZC1saXN0JztcbmltcG9ydCB7IE5lc3RlZExpc3RLZXlib2FyZFNlcnZpY2UgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2NvcmUvbmVzdGVkLWxpc3QnO1xuaW1wb3J0IHsgU2lkZU5hdmlnYXRpb25VdGlsaXR5RGlyZWN0aXZlIH0gZnJvbSAnLi9zaWRlLW5hdmlnYXRpb24tdXRpbGl0eS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgU2lkZU5hdmlnYXRpb25NYWluRGlyZWN0aXZlIH0gZnJvbSAnLi9zaWRlLW5hdmlnYXRpb24tbWFpbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgU2lkZU5hdmlnYXRpb25Nb2RlbCB9IGZyb20gJy4vc2lkZS1uYXZpZ2F0aW9uLW1vZGVsJztcbmltcG9ydCB7IFByZXBhcmVkTmVzdGVkTGlzdENvbXBvbmVudCB9IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY29yZS9uZXN0ZWQtbGlzdCc7XG5pbXBvcnQgeyBOZXN0ZWRMaXN0U3RhdGVTZXJ2aWNlIH0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jb3JlL25lc3RlZC1saXN0JztcbmltcG9ydCB7IE51bGxhYmxlIH0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jZGsvdXRpbHMnO1xuaW1wb3J0IHsgU2lkZU5hdmlnYXRpb25JbnRlcmZhY2UgfSBmcm9tICcuL3NpZGUtbmF2aWdhdGlvbi5pbnRlcmZhY2UnO1xuaW1wb3J0IGRlcHJlY2F0ZWQgZnJvbSAnZGVwcmVjYXRlZC1kZWNvcmF0b3InO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkIHVzZSB0aGUgdmVydGljYWwgbmF2aWdhdGlvbiBjb21wb25lbnQgaW5zdGVhZC5cbiAqIFRoZSBzaWRlLW5hdmlnYXRpb24gaXMgYSB3cmFwcGluZyBjb21wb25lbnQgcmVwcmVzZW50aW5nXG4gKiBhIGxlZnQgbmF2aWdhdGlvbiB0aGF0IGNhbiBhbHdheXMgZGlzcGxheSBvciBleHBhbmQvY29sbGFwc2UgdXNpbmcgdGhlIG1lbnUgaWNvbiB3aXRoaW4gdGhlIGdsb2JhbCBuYXZpZ2F0aW9uLlxuICovXG5AZGVwcmVjYXRlZCh7XG4gICAgYWx0ZXJuYXRpdmU6ICdWZXJ0aWNhbE5hdmlnYXRpb25Db21wb25lbnQnLFxuICAgIHVybDogJ2h0dHBzOi8vZ2l0aHViLmNvbS9TQVAvZnVuZGFtZW50YWwtbmd4L3RyZWUvNzUxMzBhYTg1NzI0MDYwYTUxNWQ5OWQ2NzVlYjY3MmI2ZDZlZWY2YS9saWJzL2NvcmUvc3JjL2xpYi92ZXJ0aWNhbC1uYXZpZ2F0aW9uJ1xufSlcbkBDb21wb25lbnQoe1xuICAgIHRlbXBsYXRlVXJsOiAnLi9zaWRlLW5hdmlnYXRpb24uY29tcG9uZW50Lmh0bWwnLFxuICAgIHNlbGVjdG9yOiAnZmQtc2lkZS1uYXYnLFxuICAgIHN0eWxlVXJsczogWydzaWRlLW5hdmlnYXRpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICAgIHByb3ZpZGVyczogW05lc3RlZExpc3RLZXlib2FyZFNlcnZpY2UsIE5lc3RlZExpc3RTdGF0ZVNlcnZpY2VdXG59KVxuZXhwb3J0IGNsYXNzIFNpZGVOYXZpZ2F0aW9uQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCwgQWZ0ZXJWaWV3SW5pdCwgT25Jbml0LCBTaWRlTmF2aWdhdGlvbkludGVyZmFjZSB7XG4gICAgLyoqXG4gICAgICogU2lkZSBuYXZpZ2F0aW9uIGNvbmZpZ3VyYXRpb24sIHRvIHBhc3Mgd2hvbGUgbW9kZWwgb2JqZWN0LCBpbnN0ZWFkIG9mIGNyZWF0aW5nIEhUTUwgZnJvbSBzY3JhdGNoXG4gICAgICovXG4gICAgQElucHV0KClcbiAgICBzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb246IE51bGxhYmxlPFNpZGVOYXZpZ2F0aW9uTW9kZWw+O1xuXG4gICAgLyoqIFdoZXRoZXIgY29uZGVuc2VkIG1vZGUgaXMgaW5jbHVkZWQgKi9cbiAgICBASW5wdXQoKVxuICAgIEBIb3N0QmluZGluZygnY2xhc3MuZmQtc2lkZS1uYXYtLWNvbmRlbnNlZCcpXG4gICAgY29uZGVuc2VkID0gZmFsc2U7XG5cbiAgICAvKipcbiAgICAgKiBUaGUgc2NyZWVuIHdpZHRoLCBpbiBwaXhlbHMsIGF0IHdoaWNoIHRvIGF1dG9tYXRpY2FsbHkgY29sbGFwc2UgdGhlIHNpZGUgbmF2aWdhdGlvbiBvbiB3aW5kb3cgcmVzaXplLlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgY29sbGFwc2VXaWR0aDogbnVtYmVyO1xuXG4gICAgLyoqIFdoZXRoZXIgY2xpY2tpbmcgb24gZWxlbWVudHMgc2hvdWxkIGNoYW5nZSBzZWxlY3RlZCBzdGF0ZSBvZiBpdGVtcyAqL1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHNlbGVjdGFibGUoc2VsZWN0YWJsZTogYm9vbGVhbikge1xuICAgICAgICB0aGlzLm5lc3RlZExpc3RTdGF0ZS5zZWxlY3RhYmxlID0gc2VsZWN0YWJsZTtcbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBDb250ZW50Q2hpbGQoU2lkZU5hdmlnYXRpb25VdGlsaXR5RGlyZWN0aXZlKVxuICAgIHNpZGVOYXZVdGlsaXR5OiBTaWRlTmF2aWdhdGlvblV0aWxpdHlEaXJlY3RpdmU7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBDb250ZW50Q2hpbGQoU2lkZU5hdmlnYXRpb25NYWluRGlyZWN0aXZlKVxuICAgIHNpZGVOYXZNYWluOiBTaWRlTmF2aWdhdGlvbk1haW5EaXJlY3RpdmU7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBWaWV3Q2hpbGRyZW4oUHJlcGFyZWROZXN0ZWRMaXN0Q29tcG9uZW50KVxuICAgIHByZXBhcmVkTmVzdGVkTGlzdDogUXVlcnlMaXN0PFByZXBhcmVkTmVzdGVkTGlzdENvbXBvbmVudD47XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIGFkZGl0aW9uYWxTaGVsbGJhckNzc0NsYXNzID0gJ2ZkLXNoZWxsYmFyLS1zaWRlLW5hdic7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUga2V5Ym9hcmRTZXJ2aWNlOiBOZXN0ZWRMaXN0S2V5Ym9hcmRTZXJ2aWNlLCBwcml2YXRlIG5lc3RlZExpc3RTdGF0ZTogTmVzdGVkTGlzdFN0YXRlU2VydmljZSkge1xuICAgICAgICB0aGlzLmtleWJvYXJkU2VydmljZS5yZWZyZXNoJC5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgICAgLyoqIFJlZnJlc2ggbGlzdCBvZiBlbGVtZW50cywgdGhhdCBhcmUgYmVpbmcgc3VwcG9ydGVkIGJ5IGtleWJvYXJkICovXG4gICAgICAgICAgICB0aGlzLmtleWJvYXJkU2VydmljZS5yZWZyZXNoSXRlbXModGhpcy5nZXRMaXN0cygpKTtcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgLyoqIFNldCB1cCBjb25kZW5zZWQgc3RhdGUgKi9cbiAgICAgICAgdGhpcy5uZXN0ZWRMaXN0U3RhdGUuY29uZGVuc2VkID1cbiAgICAgICAgICAgIHRoaXMuY29uZGVuc2VkIHx8ICEhKHRoaXMuc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uICYmIHRoaXMuc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLmNvbmRlbnNlZCk7XG5cbiAgICAgICAgaWYgKHRoaXMuY29sbGFwc2VXaWR0aCkge1xuICAgICAgICAgICAgdGhpcy5vblJlc2l6ZSgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5zaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24pIHtcbiAgICAgICAgICAgIHRoaXMua2V5Ym9hcmRTZXJ2aWNlLnJlZnJlc2hJdGVtcyh0aGlzLmdldExpc3RzKCkpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ0FmdGVyVmlld0luaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbikge1xuICAgICAgICAgICAgdGhpcy5rZXlib2FyZFNlcnZpY2UucmVmcmVzaEl0ZW1zKHRoaXMuZ2V0TGlzdHMoKSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBIb3N0TGlzdGVuZXIoJ3dpbmRvdzpyZXNpemUnKVxuICAgIG9uUmVzaXplKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb2xsYXBzZVdpZHRoKSB7XG4gICAgICAgICAgICB0aGlzLmNvbmRlbnNlZCA9IHdpbmRvdy5pbm5lcldpZHRoIDw9IHRoaXMuY29sbGFwc2VXaWR0aDtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEBoaWRkZW5cbiAgICAgKiBNZXRob2QgdGhhdCByZXR1cm5zIDEgZGVlcCBsZXZlbCBvZiBsaXN0cy5cbiAgICAgKi9cbiAgICBwcml2YXRlIGdldExpc3RzKCk6IE5lc3RlZExpc3REaXJlY3RpdmVbXSB7XG4gICAgICAgIGNvbnN0IGxpc3RzOiBOZXN0ZWRMaXN0RGlyZWN0aXZlW10gPSBbXTtcblxuICAgICAgICBpZiAodGhpcy5zaWRlTmF2TWFpbikge1xuICAgICAgICAgICAgbGlzdHMucHVzaCh0aGlzLnNpZGVOYXZNYWluLmxpc3QpO1xuICAgICAgICB9XG4gICAgICAgIGlmICh0aGlzLnNpZGVOYXZVdGlsaXR5KSB7XG4gICAgICAgICAgICBsaXN0cy5wdXNoKHRoaXMuc2lkZU5hdlV0aWxpdHkubGlzdCk7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHRoaXMucHJlcGFyZWROZXN0ZWRMaXN0KSB7XG4gICAgICAgICAgICBsaXN0cy5wdXNoKC4uLnRoaXMucHJlcGFyZWROZXN0ZWRMaXN0Lm1hcCgocHJlcGFyZWROZXN0ZWQpID0+IHByZXBhcmVkTmVzdGVkLm5lc3RlZExpc3REaXJlY3RpdmUpKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBsaXN0cztcbiAgICB9XG59XG4iLCI8bmF2IGNsYXNzPVwiZmQtc2lkZS1uYXZcIiBbY2xhc3MuZmQtc2lkZS1uYXYtLWNvbmRlbnNlZF09XCJjb25kZW5zZWQgfHwgc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uPy5jb25kZW5zZWRcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvblwiPlxuICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvblwiPlxuICAgICAgICA8ZGl2IGZkLXNpZGUtbmF2LW1haW4gKm5nSWY9XCJzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24ubWFpbk5hdmlnYXRpb25cIj5cbiAgICAgICAgICAgIDxmZC1wcmVwYXJlZC1uZXN0ZWQtbGlzdFxuICAgICAgICAgICAgICAgIFtjb25kZW5zZWRdPVwiY29uZGVuc2VkIHx8ICEhc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLmNvbmRlbnNlZFwiXG4gICAgICAgICAgICAgICAgW2ZpcnN0XT1cInRydWVcIlxuICAgICAgICAgICAgICAgIFtsaXN0XT1cInNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbi5tYWluTmF2aWdhdGlvblwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICA8L2ZkLXByZXBhcmVkLW5lc3RlZC1saXN0PlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPGRpdiBmZC1zaWRlLW5hdi11dGlsaXR5ICpuZ0lmPVwic2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLnV0aWxpdHlOYXZpZ2F0aW9uXCI+XG4gICAgICAgICAgICA8ZmQtcHJlcGFyZWQtbmVzdGVkLWxpc3RcbiAgICAgICAgICAgICAgICBbY29uZGVuc2VkXT1cImNvbmRlbnNlZCB8fCAhIXNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbi5jb25kZW5zZWRcIlxuICAgICAgICAgICAgICAgIFtmaXJzdF09XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICBbbGlzdF09XCJzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24udXRpbGl0eU5hdmlnYXRpb25cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgPC9mZC1wcmVwYXJlZC1uZXN0ZWQtbGlzdD5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9uZy1jb250YWluZXI+XG48L25hdj5cbiJdfQ==
|
|
112
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZS1uYXZpZ2F0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvY29yZS9zcmMvbGliL3NpZGUtbmF2aWdhdGlvbi9zaWRlLW5hdmlnYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL3NyYy9saWIvc2lkZS1uYXZpZ2F0aW9uL3NpZGUtbmF2aWdhdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBR0gsU0FBUyxFQUNULFlBQVksRUFDWixXQUFXLEVBQ1gsWUFBWSxFQUNaLEtBQUssRUFFTCxTQUFTLEVBQ1QsWUFBWSxFQUNaLGlCQUFpQixFQUNwQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBRUgseUJBQXlCLEVBQ3pCLHNCQUFzQixFQUN0QiwyQkFBMkIsRUFDOUIsTUFBTSxtQ0FBbUMsQ0FBQztBQUMzQyxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUNyRixPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQzs7Ozs7O0FBSy9FOzs7O0dBSUc7QUFRSCxNQUFNLE9BQU8sdUJBQXVCO0lBa0JoQyx5RUFBeUU7SUFDekUsSUFDSSxVQUFVLENBQUMsVUFBbUI7UUFDOUIsSUFBSSxDQUFDLGVBQWUsQ0FBQyxVQUFVLEdBQUcsVUFBVSxDQUFDO0lBQ2pELENBQUM7SUFpQkQsY0FBYztJQUNkLFlBQW9CLGVBQTBDLEVBQVUsZUFBdUM7UUFBM0Ysb0JBQWUsR0FBZixlQUFlLENBQTJCO1FBQVUsb0JBQWUsR0FBZixlQUFlLENBQXdCO1FBakMvRyx5Q0FBeUM7UUFHekMsY0FBUyxHQUFHLEtBQUssQ0FBQztRQTBCbEIsY0FBYztRQUNkLCtCQUEwQixHQUFHLHVCQUF1QixDQUFDO1FBSWpELElBQUksQ0FBQyxlQUFlLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxH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biAgICBDb21wb25lbnQsXG4gICAgQ29udGVudENoaWxkLFxuICAgIEhvc3RCaW5kaW5nLFxuICAgIEhvc3RMaXN0ZW5lcixcbiAgICBJbnB1dCxcbiAgICBPbkluaXQsXG4gICAgUXVlcnlMaXN0LFxuICAgIFZpZXdDaGlsZHJlbixcbiAgICBWaWV3RW5jYXBzdWxhdGlvblxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gICAgTmVzdGVkTGlzdERpcmVjdGl2ZSxcbiAgICBOZXN0ZWRMaXN0S2V5Ym9hcmRTZXJ2aWNlLFxuICAgIE5lc3RlZExpc3RTdGF0ZVNlcnZpY2UsXG4gICAgUHJlcGFyZWROZXN0ZWRMaXN0Q29tcG9uZW50XG59IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY29yZS9uZXN0ZWQtbGlzdCc7XG5pbXBvcnQgeyBTaWRlTmF2aWdhdGlvblV0aWxpdHlEaXJlY3RpdmUgfSBmcm9tICcuL3NpZGUtbmF2aWdhdGlvbi11dGlsaXR5LmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBTaWRlTmF2aWdhdGlvbk1haW5EaXJlY3RpdmUgfSBmcm9tICcuL3NpZGUtbmF2aWdhdGlvbi1tYWluLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBTaWRlTmF2aWdhdGlvbk1vZGVsIH0gZnJvbSAnLi9zaWRlLW5hdmlnYXRpb24tbW9kZWwnO1xuaW1wb3J0IHsgTnVsbGFibGUgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2Nkay91dGlscyc7XG5pbXBvcnQgeyBTaWRlTmF2aWdhdGlvbkludGVyZmFjZSB9IGZyb20gJy4vc2lkZS1uYXZpZ2F0aW9uLmludGVyZmFjZSc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQgdXNlIHRoZSB2ZXJ0aWNhbCBuYXZpZ2F0aW9uIGNvbXBvbmVudCBpbnN0ZWFkLlxuICogVGhlIHNpZGUtbmF2aWdhdGlvbiBpcyBhIHdyYXBwaW5nIGNvbXBvbmVudCByZXByZXNlbnRpbmdcbiAqIGEgbGVmdCBuYXZpZ2F0aW9uIHRoYXQgY2FuIGFsd2F5cyBkaXNwbGF5IG9yIGV4cGFuZC9jb2xsYXBzZSB1c2luZyB0aGUgbWVudSBpY29uIHdpdGhpbiB0aGUgZ2xvYmFsIG5hdmlnYXRpb24uXG4gKi9cbkBDb21wb25lbnQoe1xuICAgIHRlbXBsYXRlVXJsOiAnLi9zaWRlLW5hdmlnYXRpb24uY29tcG9uZW50Lmh0bWwnLFxuICAgIHNlbGVjdG9yOiAnZmQtc2lkZS1uYXYnLFxuICAgIHN0eWxlVXJsczogWydzaWRlLW5hdmlnYXRpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICAgIHByb3ZpZGVyczogW05lc3RlZExpc3RLZXlib2FyZFNlcnZpY2UsIE5lc3RlZExpc3RTdGF0ZVNlcnZpY2VdXG59KVxuZXhwb3J0IGNsYXNzIFNpZGVOYXZpZ2F0aW9uQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCwgQWZ0ZXJWaWV3SW5pdCwgT25Jbml0LCBTaWRlTmF2aWdhdGlvbkludGVyZmFjZSB7XG4gICAgLyoqXG4gICAgICogU2lkZSBuYXZpZ2F0aW9uIGNvbmZpZ3VyYXRpb24sIHRvIHBhc3Mgd2hvbGUgbW9kZWwgb2JqZWN0LCBpbnN0ZWFkIG9mIGNyZWF0aW5nIEhUTUwgZnJvbSBzY3JhdGNoXG4gICAgICovXG4gICAgQElucHV0KClcbiAgICBzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb246IE51bGxhYmxlPFNpZGVOYXZpZ2F0aW9uTW9kZWw+O1xuXG4gICAgLyoqIFdoZXRoZXIgY29uZGVuc2VkIG1vZGUgaXMgaW5jbHVkZWQgKi9cbiAgICBASW5wdXQoKVxuICAgIEBIb3N0QmluZGluZygnY2xhc3MuZmQtc2lkZS1uYXYtLWNvbmRlbnNlZCcpXG4gICAgY29uZGVuc2VkID0gZmFsc2U7XG5cbiAgICAvKipcbiAgICAgKiBUaGUgc2NyZWVuIHdpZHRoLCBpbiBwaXhlbHMsIGF0IHdoaWNoIHRvIGF1dG9tYXRpY2FsbHkgY29sbGFwc2UgdGhlIHNpZGUgbmF2aWdhdGlvbiBvbiB3aW5kb3cgcmVzaXplLlxuICAgICAqL1xuICAgIEBJbnB1dCgpXG4gICAgY29sbGFwc2VXaWR0aDogbnVtYmVyO1xuXG4gICAgLyoqIFdoZXRoZXIgY2xpY2tpbmcgb24gZWxlbWVudHMgc2hvdWxkIGNoYW5nZSBzZWxlY3RlZCBzdGF0ZSBvZiBpdGVtcyAqL1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHNlbGVjdGFibGUoc2VsZWN0YWJsZTogYm9vbGVhbikge1xuICAgICAgICB0aGlzLm5lc3RlZExpc3RTdGF0ZS5zZWxlY3RhYmxlID0gc2VsZWN0YWJsZTtcbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBDb250ZW50Q2hpbGQoU2lkZU5hdmlnYXRpb25VdGlsaXR5RGlyZWN0aXZlKVxuICAgIHNpZGVOYXZVdGlsaXR5OiBTaWRlTmF2aWdhdGlvblV0aWxpdHlEaXJlY3RpdmU7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBDb250ZW50Q2hpbGQoU2lkZU5hdmlnYXRpb25NYWluRGlyZWN0aXZlKVxuICAgIHNpZGVOYXZNYWluOiBTaWRlTmF2aWdhdGlvbk1haW5EaXJlY3RpdmU7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBWaWV3Q2hpbGRyZW4oUHJlcGFyZWROZXN0ZWRMaXN0Q29tcG9uZW50KVxuICAgIHByZXBhcmVkTmVzdGVkTGlzdDogUXVlcnlMaXN0PFByZXBhcmVkTmVzdGVkTGlzdENvbXBvbmVudD47XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIGFkZGl0aW9uYWxTaGVsbGJhckNzc0NsYXNzID0gJ2ZkLXNoZWxsYmFyLS1zaWRlLW5hdic7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUga2V5Ym9hcmRTZXJ2aWNlOiBOZXN0ZWRMaXN0S2V5Ym9hcmRTZXJ2aWNlLCBwcml2YXRlIG5lc3RlZExpc3RTdGF0ZTogTmVzdGVkTGlzdFN0YXRlU2VydmljZSkge1xuICAgICAgICB0aGlzLmtleWJvYXJkU2VydmljZS5yZWZyZXNoJC5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgICAgLyoqIFJlZnJlc2ggbGlzdCBvZiBlbGVtZW50cywgdGhhdCBhcmUgYmVpbmcgc3VwcG9ydGVkIGJ5IGtleWJvYXJkICovXG4gICAgICAgICAgICB0aGlzLmtleWJvYXJkU2VydmljZS5yZWZyZXNoSXRlbXModGhpcy5nZXRMaXN0cygpKTtcbiAgICAgICAgfSk7XG4gICAgICAgIGNvbnNvbGUud2FybihgXG4gICAgICAgICAgICBTaWRlTmF2aWdhdGlvbkNvbXBvbmVudCBpcyBkZXByZWNhdGVkIHNpbmNlIHZlcnNpb24gMC40MC4wIGFuZCB3aWxsIGJlIHJlbW92ZWQgaW4gZnV0dXJlIHJlbGVhc2UuXG4gICAgICAgICAgICBVc2UgdGhlIHZlcnRpY2FsIG5hdmlnYXRpb24gY29tcG9uZW50IGluc3RlYWQuXG4gICAgICAgICAgICBGb3IgbW9yZSBpbmZvcm1hdGlvbiBjaGVjayB0aGUgZG9jdW1lbnRhdGlvbi5cbiAgICAgICAgYCk7XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgLyoqIFNldCB1cCBjb25kZW5zZWQgc3RhdGUgKi9cbiAgICAgICAgdGhpcy5uZXN0ZWRMaXN0U3RhdGUuY29uZGVuc2VkID1cbiAgICAgICAgICAgIHRoaXMuY29uZGVuc2VkIHx8ICEhKHRoaXMuc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uICYmIHRoaXMuc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLmNvbmRlbnNlZCk7XG5cbiAgICAgICAgaWYgKHRoaXMuY29sbGFwc2VXaWR0aCkge1xuICAgICAgICAgICAgdGhpcy5vblJlc2l6ZSgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5zaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24pIHtcbiAgICAgICAgICAgIHRoaXMua2V5Ym9hcmRTZXJ2aWNlLnJlZnJlc2hJdGVtcyh0aGlzLmdldExpc3RzKCkpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ0FmdGVyVmlld0luaXQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbikge1xuICAgICAgICAgICAgdGhpcy5rZXlib2FyZFNlcnZpY2UucmVmcmVzaEl0ZW1zKHRoaXMuZ2V0TGlzdHMoKSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIEBIb3N0TGlzdGVuZXIoJ3dpbmRvdzpyZXNpemUnKVxuICAgIG9uUmVzaXplKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb2xsYXBzZVdpZHRoKSB7XG4gICAgICAgICAgICB0aGlzLmNvbmRlbnNlZCA9IHdpbmRvdy5pbm5lcldpZHRoIDw9IHRoaXMuY29sbGFwc2VXaWR0aDtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEBoaWRkZW5cbiAgICAgKiBNZXRob2QgdGhhdCByZXR1cm5zIDEgZGVlcCBsZXZlbCBvZiBsaXN0cy5cbiAgICAgKi9cbiAgICBwcml2YXRlIGdldExpc3RzKCk6IE5lc3RlZExpc3REaXJlY3RpdmVbXSB7XG4gICAgICAgIGNvbnN0IGxpc3RzOiBOZXN0ZWRMaXN0RGlyZWN0aXZlW10gPSBbXTtcblxuICAgICAgICBpZiAodGhpcy5zaWRlTmF2TWFpbikge1xuICAgICAgICAgICAgbGlzdHMucHVzaCh0aGlzLnNpZGVOYXZNYWluLmxpc3QpO1xuICAgICAgICB9XG4gICAgICAgIGlmICh0aGlzLnNpZGVOYXZVdGlsaXR5KSB7XG4gICAgICAgICAgICBsaXN0cy5wdXNoKHRoaXMuc2lkZU5hdlV0aWxpdHkubGlzdCk7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHRoaXMucHJlcGFyZWROZXN0ZWRMaXN0KSB7XG4gICAgICAgICAgICBsaXN0cy5wdXNoKC4uLnRoaXMucHJlcGFyZWROZXN0ZWRMaXN0Lm1hcCgocHJlcGFyZWROZXN0ZWQpID0+IHByZXBhcmVkTmVzdGVkLm5lc3RlZExpc3REaXJlY3RpdmUpKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBsaXN0cztcbiAgICB9XG59XG4iLCI8bmF2IGNsYXNzPVwiZmQtc2lkZS1uYXZcIiBbY2xhc3MuZmQtc2lkZS1uYXYtLWNvbmRlbnNlZF09XCJjb25kZW5zZWQgfHwgc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uPy5jb25kZW5zZWRcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvblwiPlxuICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgPC9uZy1jb250YWluZXI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvblwiPlxuICAgICAgICA8ZGl2IGZkLXNpZGUtbmF2LW1haW4gKm5nSWY9XCJzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24ubWFpbk5hdmlnYXRpb25cIj5cbiAgICAgICAgICAgIDxmZC1wcmVwYXJlZC1uZXN0ZWQtbGlzdFxuICAgICAgICAgICAgICAgIFtjb25kZW5zZWRdPVwiY29uZGVuc2VkIHx8ICEhc2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLmNvbmRlbnNlZFwiXG4gICAgICAgICAgICAgICAgW2ZpcnN0XT1cInRydWVcIlxuICAgICAgICAgICAgICAgIFtsaXN0XT1cInNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbi5tYWluTmF2aWdhdGlvblwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICA8L2ZkLXByZXBhcmVkLW5lc3RlZC1saXN0PlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPGRpdiBmZC1zaWRlLW5hdi11dGlsaXR5ICpuZ0lmPVwic2lkZU5hdmlnYXRpb25Db25maWd1cmF0aW9uLnV0aWxpdHlOYXZpZ2F0aW9uXCI+XG4gICAgICAgICAgICA8ZmQtcHJlcGFyZWQtbmVzdGVkLWxpc3RcbiAgICAgICAgICAgICAgICBbY29uZGVuc2VkXT1cImNvbmRlbnNlZCB8fCAhIXNpZGVOYXZpZ2F0aW9uQ29uZmlndXJhdGlvbi5jb25kZW5zZWRcIlxuICAgICAgICAgICAgICAgIFtmaXJzdF09XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICBbbGlzdF09XCJzaWRlTmF2aWdhdGlvbkNvbmZpZ3VyYXRpb24udXRpbGl0eU5hdmlnYXRpb25cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgPC9mZC1wcmVwYXJlZC1uZXN0ZWQtbGlzdD5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9uZy1jb250YWluZXI+XG48L25hdj5cbiJdfQ==
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
1
|
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
|
|
3
2
|
import { SplitterComponent } from '../splitter.component';
|
|
4
|
-
import deprecated from 'deprecated-decorator';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
6
4
|
import * as i1 from "../splitter.component";
|
|
7
5
|
import * as i2 from "@angular/common";
|
|
@@ -34,11 +32,6 @@ export class SplitterPaginationComponent {
|
|
|
34
32
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: SplitterPaginationComponent, deps: [{ token: i1.SplitterComponent }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
35
33
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.0", type: SplitterPaginationComponent, selector: "fd-splitter-pagination", inputs: { pages: "pages", currentPage: "currentPage" }, outputs: { onPageChange: "onPageChange" }, host: { properties: { "attr.role": "\"radiogroup\"" }, classAttribute: "fd-splitter__pagination" }, ngImport: i0, template: "<button\n *ngFor=\"let page of pages\"\n fd-button\n fdType=\"transparent\"\n class=\"fd-splitter__pagination-item\"\n [class.fd-splitter__pagination-item--active]=\"page === currentPage\"\n role=\"radio\"\n [attr.aria-label]=\"paginationItemAriaLabel || ('coreSplitter.paginationItemAriaLabel' | fdTranslate)\"\n [attr.aria-checked]=\"page === currentPage\"\n (click)=\"_changePage(page)\"\n (keydown.enter)=\"_changePage(page)\"\n>\n <span class=\"fd-splitter__pagination-item-dot\"></span>\n</button>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i3.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }, { kind: "pipe", type: i4.FdTranslatePipe, name: "fdTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
36
34
|
}
|
|
37
|
-
__decorate([
|
|
38
|
-
deprecated("i18n capabilities 'coreSplitter.paginationItemAriaLabel' key"),
|
|
39
|
-
__metadata("design:type", String),
|
|
40
|
-
__metadata("design:paramtypes", [])
|
|
41
|
-
], SplitterPaginationComponent.prototype, "paginationItemAriaLabel", null);
|
|
42
35
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: SplitterPaginationComponent, decorators: [{
|
|
43
36
|
type: Component,
|
|
44
37
|
args: [{ selector: 'fd-splitter-pagination', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
@@ -53,5 +46,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImpor
|
|
|
53
46
|
// eslint-disable-next-line @angular-eslint/no-output-on-prefix
|
|
54
47
|
onPageChange: [{
|
|
55
48
|
type: Output
|
|
56
|
-
}]
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
49
|
+
}] } });
|
|
50
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BsaXR0ZXItcGFnaW5hdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2xpYi9zcGxpdHRlci9zcGxpdHRlci1wYWdpbmF0aW9uL3NwbGl0dGVyLXBhZ2luYXRpb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL3NyYy9saWIvc3BsaXR0ZXIvc3BsaXR0ZXItcGFnaW5hdGlvbi9zcGxpdHRlci1wYWdpbmF0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkgsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7Ozs7OztBQVkxRCxNQUFNLE9BQU8sMkJBQTJCO0lBY3BDOzs7T0FHRztJQUNILElBQUksdUJBQXVCO1FBQ3ZCLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQyx1QkFBdUIsQ0FBQztJQUNsRCxDQUFDO0lBRUQsY0FBYztJQUNkLFlBQTZCLFNBQTRCO1FBQTVCLGNBQVMsR0FBVCxTQUFTLENBQW1CO1FBdEJ6RCwwQkFBMEI7UUFFMUIsVUFBSyxHQUFhLEVBQUUsQ0FBQztRQU1yQixvQ0FBb0M7UUFHcEMsaUJBQVksR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO0lBV2tCLENBQUM7SUFFN0QsY0FBYztJQUNkLFdBQVcsQ0FBQyxJQUFZO1FBQ3BCLElBQUksSUFBSSxLQUFLLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDM0IsT0FBTztTQUNWO1FBRUQsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQzdDLENBQUM7OEdBakNRLDJCQUEyQjtrR0FBM0IsMkJBQTJCLHFRQ2J4Qyw0aEJBY0E7OzJGRERhLDJCQUEyQjtrQkFWdkMsU0FBUzsrQkFDSSx3QkFBd0IsaUJBRW5CLGlCQUFpQixDQUFDLElBQUksbUJBQ3BCLHVCQUF1QixDQUFDLE1BQU0sUUFDekM7d0JBQ0YsS0FBSyxFQUFFLHlCQUF5Qjt3QkFDaEMsYUFBYSxFQUFFLGNBQWM7cUJBQ2hDO3dHQUtELEtBQUs7c0JBREosS0FBSztnQkFLTixXQUFXO3NCQURWLEtBQUs7O1FBS04sK0RBQStEO1FBQy9ELFlBQVk7c0JBRlgsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFNwbGl0dGVyQ29tcG9uZW50IH0gZnJvbSAnLi4vc3BsaXR0ZXIuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdmZC1zcGxpdHRlci1wYWdpbmF0aW9uJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vc3BsaXR0ZXItcGFnaW5hdGlvbi5jb21wb25lbnQuaHRtbCcsXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBob3N0OiB7XG4gICAgICAgIGNsYXNzOiAnZmQtc3BsaXR0ZXJfX3BhZ2luYXRpb24nLFxuICAgICAgICAnW2F0dHIucm9sZV0nOiAnXCJyYWRpb2dyb3VwXCInXG4gICAgfVxufSlcbmV4cG9ydCBjbGFzcyBTcGxpdHRlclBhZ2luYXRpb25Db21wb25lbnQge1xuICAgIC8qKiBBcnJheSBvZiBwYWdlcyBpZHMuICovXG4gICAgQElucHV0KClcbiAgICBwYWdlczogc3RyaW5nW10gPSBbXTtcblxuICAgIC8qKiBDdXJyZW50IHBhZ2UgaWQuICovXG4gICAgQElucHV0KClcbiAgICBjdXJyZW50UGFnZTogc3RyaW5nO1xuXG4gICAgLyoqIEV2ZW50IGVtaXR0ZWQgb24gcGFnZSBjaGFuZ2UuICovXG4gICAgQE91dHB1dCgpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtb24tcHJlZml4XG4gICAgb25QYWdlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgICAvKipcbiAgICAgKiBAaGlkZGVuXG4gICAgICogQGRlcHJlY2F0ZWQgdXNlIGkxOG4gY2FwYWJpbGl0aWVzIGluc3RlYWRcbiAgICAgKi9cbiAgICBnZXQgcGFnaW5hdGlvbkl0ZW1BcmlhTGFiZWwoKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3NwbGl0dGVyLnBhZ2luYXRpb25JdGVtQXJpYUxhYmVsO1xuICAgIH1cblxuICAgIC8qKiBASGlkZGVuICovXG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBfc3BsaXR0ZXI6IFNwbGl0dGVyQ29tcG9uZW50KSB7fVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBfY2hhbmdlUGFnZShwYWdlOiBzdHJpbmcpOiB2b2lkIHtcbiAgICAgICAgaWYgKHBhZ2UgPT09IHRoaXMuY3VycmVudFBhZ2UpIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIHRoaXMuY3VycmVudFBhZ2UgPSBwYWdlO1xuICAgICAgICB0aGlzLm9uUGFnZUNoYW5nZS5lbWl0KHRoaXMuY3VycmVudFBhZ2UpO1xuICAgIH1cbn1cbiIsIjxidXR0b25cbiAgICAqbmdGb3I9XCJsZXQgcGFnZSBvZiBwYWdlc1wiXG4gICAgZmQtYnV0dG9uXG4gICAgZmRUeXBlPVwidHJhbnNwYXJlbnRcIlxuICAgIGNsYXNzPVwiZmQtc3BsaXR0ZXJfX3BhZ2luYXRpb24taXRlbVwiXG4gICAgW2NsYXNzLmZkLXNwbGl0dGVyX19wYWdpbmF0aW9uLWl0ZW0tLWFjdGl2ZV09XCJwYWdlID09PSBjdXJyZW50UGFnZVwiXG4gICAgcm9sZT1cInJhZGlvXCJcbiAgICBbYXR0ci5hcmlhLWxhYmVsXT1cInBhZ2luYXRpb25JdGVtQXJpYUxhYmVsIHx8ICgnY29yZVNwbGl0dGVyLnBhZ2luYXRpb25JdGVtQXJpYUxhYmVsJyB8IGZkVHJhbnNsYXRlKVwiXG4gICAgW2F0dHIuYXJpYS1jaGVja2VkXT1cInBhZ2UgPT09IGN1cnJlbnRQYWdlXCJcbiAgICAoY2xpY2spPVwiX2NoYW5nZVBhZ2UocGFnZSlcIlxuICAgIChrZXlkb3duLmVudGVyKT1cIl9jaGFuZ2VQYWdlKHBhZ2UpXCJcbj5cbiAgICA8c3BhbiBjbGFzcz1cImZkLXNwbGl0dGVyX19wYWdpbmF0aW9uLWl0ZW0tZG90XCI+PC9zcGFuPlxuPC9idXR0b24+XG4iXX0=
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, ViewEncapsulation, ChangeDetectionStrategy, Directive, Input, HostBinding, NgModule } from '@angular/core';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
|
-
import { __decorate } from 'tslib';
|
|
5
|
-
import deprecated from 'deprecated-decorator';
|
|
6
4
|
|
|
7
5
|
/**
|
|
8
6
|
* @deprecated
|
|
@@ -18,21 +16,20 @@ import deprecated from 'deprecated-decorator';
|
|
|
18
16
|
* <div fd-action-bar-title>
|
|
19
17
|
* ```
|
|
20
18
|
*/
|
|
21
|
-
|
|
19
|
+
class ActionBarComponent {
|
|
20
|
+
/** @hidden */
|
|
21
|
+
constructor() {
|
|
22
|
+
console.warn('ActionBarComponent is deprecated since version 0.40.0 and will be removed in future release.');
|
|
23
|
+
}
|
|
22
24
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: ActionBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23
25
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.0", type: ActionBarComponent, selector: "[fd-action-bar]", host: { classAttribute: "fd-action-bar" }, ngImport: i0, template: ` <ng-content></ng-content>`, isInline: true, styles: [".fd-action-bar{-webkit-box-sizing:border-box;word-wrap:break-word;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-shadow:var(--sapContent_HeaderShadow);background-color:var(--sapPageHeader_Background);border:0;box-shadow:var(--sapContent_HeaderShadow);box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;justify-content:space-between;line-height:var(--sapContent_LineHeight);margin:0;max-height:4.25rem;min-height:3rem;padding:.5rem 2rem}.fd-action-bar:after,.fd-action-bar:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__header{-webkit-box-sizing:border-box;-webkit-box-align:center;-ms-flex-align:center;-webkit-box-flex:1;-ms-flex-positive:1;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-grow:1;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:2rem;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-action-bar__header:after,.fd-action-bar__header:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__back{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0 .5rem 0 0;padding:0;position:relative}.fd-action-bar__back:after,.fd-action-bar__back:before{box-sizing:inherit;font-size:inherit}@media (min-width: 320px){.fd-action-bar__back{display:none!important}}@media (min-width: 600px){.fd-action-bar__back{display:inline-block!important}}.fd-action-bar__back[dir=rtl],[dir=rtl] .fd-action-bar__back{margin-left:.5rem;margin-right:0}.fd-action-bar__title{-webkit-box-sizing:border-box;-webkit-box-flex:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapGroup_TitleTextColor);flex-basis:0;flex-grow:1;font-family:var(--sapFontFamily);font-family:var(--sapFontHeaderFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);line-height:1.375rem;margin:0;overflow:hidden;padding:0 .5rem 0 0;text-overflow:ellipsis;text-rendering:optimizeLegibility;vertical-align:middle;white-space:nowrap}.fd-action-bar__title:after,.fd-action-bar__title:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__title[dir=rtl],[dir=rtl] .fd-action-bar__title{padding-left:.5rem;padding-right:0}.fd-action-bar__description{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapContent_LabelColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:1.25rem;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap;width:100%}.fd-action-bar__description:after,.fd-action-bar__description:before{box-sizing:inherit;font-size:inherit}@media (min-width: 320px){.fd-action-bar__description{display:none!important}}@media (min-width: 600px){.fd-action-bar__description{display:inline-block!important}}.fd-action-bar__description--back{padding-left:2.5rem}.fd-action-bar__description--back[dir=rtl],[dir=rtl] .fd-action-bar__description--back{padding-left:0;padding-right:2.5rem}.fd-action-bar__actions{-webkit-box-sizing:border-box;-webkit-box-align:center;-ms-flex-align:center;-webkit-transition:opacity .25s ease-in;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;gap:.5rem;height:2rem;line-height:var(--sapContent_LineHeight);margin:0;padding:0;transition:opacity .25s ease-in;visibility:visible}.fd-action-bar__actions:after,.fd-action-bar__actions:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__actions.is-hidden,.fd-action-bar__actions[aria-hidden=true]{opacity:0;visibility:hidden}.fd-action-bar--s,.fd-action-bar--sm{padding:.5rem 1rem}.fd-action-bar--lg,.fd-action-bar--m_l,.fd-action-bar--md{padding:.5rem 2rem}.fd-action-bar--xl{padding:.5rem 3rem}/*!\n * Fundamental Library Styles v0.28.3\n * Copyright (c) 2023 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n */.fd-title{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-family:var(--sapFontHeaderFamily);font-size:1rem;font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap}.fd-title:after,.fd-title:before{box-sizing:inherit;font-size:inherit}.fd-title--h1{font-size:var(--sapFontHeader1Size)}.fd-title--h2{font-size:var(--sapFontHeader2Size)}.fd-title--h3{font-size:var(--sapFontHeader3Size)}.fd-title--h4{font-size:var(--sapFontHeader4Size)}.fd-title--h5{font-size:var(--sapFontHeader5Size)}.fd-title--h6{font-size:var(--sapFontHeader6Size)}.fd-title--wrap{overflow:auto;text-overflow:clip;white-space:normal}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
24
|
-
}
|
|
25
|
-
ActionBarComponent = __decorate([
|
|
26
|
-
deprecated({
|
|
27
|
-
version: '0.40.0'
|
|
28
|
-
})
|
|
29
|
-
], ActionBarComponent);
|
|
26
|
+
}
|
|
30
27
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: ActionBarComponent, decorators: [{
|
|
31
28
|
type: Component,
|
|
32
29
|
args: [{ selector: '[fd-action-bar]', template: ` <ng-content></ng-content>`, host: {
|
|
33
30
|
class: 'fd-action-bar'
|
|
34
31
|
}, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".fd-action-bar{-webkit-box-sizing:border-box;word-wrap:break-word;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-box-shadow:var(--sapContent_HeaderShadow);background-color:var(--sapPageHeader_Background);border:0;box-shadow:var(--sapContent_HeaderShadow);box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;justify-content:space-between;line-height:var(--sapContent_LineHeight);margin:0;max-height:4.25rem;min-height:3rem;padding:.5rem 2rem}.fd-action-bar:after,.fd-action-bar:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__header{-webkit-box-sizing:border-box;-webkit-box-align:center;-ms-flex-align:center;-webkit-box-flex:1;-ms-flex-positive:1;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-grow:1;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:2rem;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-action-bar__header:after,.fd-action-bar__header:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__back{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0 .5rem 0 0;padding:0;position:relative}.fd-action-bar__back:after,.fd-action-bar__back:before{box-sizing:inherit;font-size:inherit}@media (min-width: 320px){.fd-action-bar__back{display:none!important}}@media (min-width: 600px){.fd-action-bar__back{display:inline-block!important}}.fd-action-bar__back[dir=rtl],[dir=rtl] .fd-action-bar__back{margin-left:.5rem;margin-right:0}.fd-action-bar__title{-webkit-box-sizing:border-box;-webkit-box-flex:1;-ms-flex-positive:1;-ms-flex-preferred-size:0;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapGroup_TitleTextColor);flex-basis:0;flex-grow:1;font-family:var(--sapFontFamily);font-family:var(--sapFontHeaderFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);line-height:1.375rem;margin:0;overflow:hidden;padding:0 .5rem 0 0;text-overflow:ellipsis;text-rendering:optimizeLegibility;vertical-align:middle;white-space:nowrap}.fd-action-bar__title:after,.fd-action-bar__title:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__title[dir=rtl],[dir=rtl] .fd-action-bar__title{padding-left:.5rem;padding-right:0}.fd-action-bar__description{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapContent_LabelColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:1.25rem;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap;width:100%}.fd-action-bar__description:after,.fd-action-bar__description:before{box-sizing:inherit;font-size:inherit}@media (min-width: 320px){.fd-action-bar__description{display:none!important}}@media (min-width: 600px){.fd-action-bar__description{display:inline-block!important}}.fd-action-bar__description--back{padding-left:2.5rem}.fd-action-bar__description--back[dir=rtl],[dir=rtl] .fd-action-bar__description--back{padding-left:0;padding-right:2.5rem}.fd-action-bar__actions{-webkit-box-sizing:border-box;-webkit-box-align:center;-ms-flex-align:center;-webkit-transition:opacity .25s ease-in;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;gap:.5rem;height:2rem;line-height:var(--sapContent_LineHeight);margin:0;padding:0;transition:opacity .25s ease-in;visibility:visible}.fd-action-bar__actions:after,.fd-action-bar__actions:before{box-sizing:inherit;font-size:inherit}.fd-action-bar__actions.is-hidden,.fd-action-bar__actions[aria-hidden=true]{opacity:0;visibility:hidden}.fd-action-bar--s,.fd-action-bar--sm{padding:.5rem 1rem}.fd-action-bar--lg,.fd-action-bar--m_l,.fd-action-bar--md{padding:.5rem 2rem}.fd-action-bar--xl{padding:.5rem 3rem}/*!\n * Fundamental Library Styles v0.28.3\n * Copyright (c) 2023 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n */.fd-title{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);font-family:var(--sapFontFamily);font-family:var(--sapFontHeaderFamily);font-size:1rem;font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap}.fd-title:after,.fd-title:before{box-sizing:inherit;font-size:inherit}.fd-title--h1{font-size:var(--sapFontHeader1Size)}.fd-title--h2{font-size:var(--sapFontHeader2Size)}.fd-title--h3{font-size:var(--sapFontHeader3Size)}.fd-title--h4{font-size:var(--sapFontHeader4Size)}.fd-title--h5{font-size:var(--sapFontHeader5Size)}.fd-title--h6{font-size:var(--sapFontHeader6Size)}.fd-title--wrap{overflow:auto;text-overflow:clip;white-space:normal}\n"] }]
|
|
35
|
-
}] });
|
|
32
|
+
}], ctorParameters: function () { return []; } });
|
|
36
33
|
|
|
37
34
|
/**
|
|
38
35
|
* The action bar title component.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fundamental-ngx-core-action-bar.mjs","sources":["../../../../libs/core/src/lib/action-bar/action-bar.component.ts","../../../../libs/core/src/lib/action-bar/action-bar-title/action-bar-title.component.ts","../../../../libs/core/src/lib/action-bar/action-bar-description/action-bar-description.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-header/action-bar-header.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-actions/action-bar-actions.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-back/action-bar-back.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-mobile/action-bar-mobile.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar.module.ts","../../../../libs/core/src/lib/action-bar/fundamental-ngx-core-action-bar.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\nimport deprecated from 'deprecated-decorator';\n\n/**\n * @deprecated\n * Action Bar component is deprecated since version 0.40.0\n *\n * Children usage:\n * ```html\n * <div fd-action-bar-actions>\n * <div fd-action-bar-back>\n * <div fd-action-bar-description>\n * <div fd-action-bar-header>\n * <div fd-action-bar-mobile>\n * <div fd-action-bar-title>\n * ```\n */\n\n@deprecated({\n version: '0.40.0'\n})\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: '[fd-action-bar]',\n template: ` <ng-content></ng-content>`,\n host: {\n class: 'fd-action-bar'\n },\n styleUrls: ['./action-bar.component.scss'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ActionBarComponent {}\n","import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\n\n/**\n * The action bar title component.\n *\n * ```html\n * <fd-action-bar>\n * <div fd-action-bar-header>\n * <div fd-action-bar-title>Page Title</div>\n * </div>\n * <fd-action-bar>\n * ```\n */\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: '[fd-action-bar-title]',\n template: `\n <h2 class=\"fd-title fd-title--h3\">\n <ng-content></ng-content>\n </h2>\n `,\n host: {\n class: 'fd-action-bar__title'\n },\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ActionBarTitleComponent {}\n","import { Directive, HostBinding, Input } from '@angular/core';\n\n/**\n * The action bar description.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-header>\n * <div fd-action-bar-description>Page Description</div>\n * </div>\n * <div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-description]',\n host: {\n class: 'fd-action-bar__description'\n }\n})\nexport class ActionBarDescriptionDirective {\n /** Whether the action bar also has a back button. */\n @Input()\n @HostBinding('class.fd-action-bar__description--back')\n withBackBtn = false;\n}\n","import { Directive } from '@angular/core';\n\n/**\n * The action bar header, which contains the action bar's title and description components.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-header>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-header]',\n host: {\n class: 'fd-action-bar__header'\n }\n})\nexport class ActionBarHeaderDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * This component holds the right-aligned action buttons for the action bar.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-actions>\n * <button fd-button [fdType]=\"'primary'\">Cancel</button>\n * <button fd-button [fdType]=\"'main'\">Save</button>\n * </div>\n * </div>\n * ```\n */\n\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-actions]',\n host: {\n class: 'fd-action-bar__actions'\n }\n})\nexport class ActionBarActionsDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * The left-aligned back button for the action bar.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-back>\n * <button aria-label=\"back\" fd-button [fdType]=\"'transparent'\" [compact]=\"true\" [glyph]=\"'nav-back'\"></button>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-back]',\n host: {\n class: 'fd-action-bar__back'\n }\n})\nexport class ActionBarBackDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * The action bar mobile component. This component should wrap all other action bar components, including the `[fd-action-bar]`.\n *\n * ```html\n * <div fd-action-bar-mobile>\n * <div fd-action-bar>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-mobile]'\n})\nexport class ActionBarMobileDirective {}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { ActionBarComponent } from './action-bar.component';\nimport { ActionBarTitleComponent } from './action-bar-title/action-bar-title.component';\nimport { ActionBarDescriptionDirective } from './action-bar-description/action-bar-description.directive';\nimport { ActionBarHeaderDirective } from './action-bar-header/action-bar-header.directive';\nimport { ActionBarActionsDirective } from './action-bar-actions/action-bar-actions.directive';\nimport { ActionBarBackDirective } from './action-bar-back/action-bar-back.directive';\nimport { ActionBarMobileDirective } from './action-bar-mobile/action-bar-mobile.directive';\n\n@NgModule({\n declarations: [\n ActionBarComponent,\n ActionBarTitleComponent,\n ActionBarDescriptionDirective,\n ActionBarHeaderDirective,\n ActionBarActionsDirective,\n ActionBarBackDirective,\n ActionBarMobileDirective\n ],\n imports: [CommonModule],\n exports: [\n ActionBarComponent,\n ActionBarTitleComponent,\n ActionBarDescriptionDirective,\n ActionBarHeaderDirective,\n ActionBarActionsDirective,\n ActionBarBackDirective,\n ActionBarMobileDirective\n ]\n})\nexport class ActionBarModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fundamental-ngx-core-action-bar.mjs","sources":["../../../../libs/core/src/lib/action-bar/action-bar.component.ts","../../../../libs/core/src/lib/action-bar/action-bar-title/action-bar-title.component.ts","../../../../libs/core/src/lib/action-bar/action-bar-description/action-bar-description.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-header/action-bar-header.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-actions/action-bar-actions.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-back/action-bar-back.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar-mobile/action-bar-mobile.directive.ts","../../../../libs/core/src/lib/action-bar/action-bar.module.ts","../../../../libs/core/src/lib/action-bar/fundamental-ngx-core-action-bar.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\n\n/**\n * @deprecated\n * Action Bar component is deprecated since version 0.40.0\n *\n * Children usage:\n * ```html\n * <div fd-action-bar-actions>\n * <div fd-action-bar-back>\n * <div fd-action-bar-description>\n * <div fd-action-bar-header>\n * <div fd-action-bar-mobile>\n * <div fd-action-bar-title>\n * ```\n */\n\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: '[fd-action-bar]',\n template: ` <ng-content></ng-content>`,\n host: {\n class: 'fd-action-bar'\n },\n styleUrls: ['./action-bar.component.scss'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ActionBarComponent {\n /** @hidden */\n constructor() {\n console.warn('ActionBarComponent is deprecated since version 0.40.0 and will be removed in future release.');\n }\n}\n","import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\n\n/**\n * The action bar title component.\n *\n * ```html\n * <fd-action-bar>\n * <div fd-action-bar-header>\n * <div fd-action-bar-title>Page Title</div>\n * </div>\n * <fd-action-bar>\n * ```\n */\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: '[fd-action-bar-title]',\n template: `\n <h2 class=\"fd-title fd-title--h3\">\n <ng-content></ng-content>\n </h2>\n `,\n host: {\n class: 'fd-action-bar__title'\n },\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ActionBarTitleComponent {}\n","import { Directive, HostBinding, Input } from '@angular/core';\n\n/**\n * The action bar description.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-header>\n * <div fd-action-bar-description>Page Description</div>\n * </div>\n * <div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-description]',\n host: {\n class: 'fd-action-bar__description'\n }\n})\nexport class ActionBarDescriptionDirective {\n /** Whether the action bar also has a back button. */\n @Input()\n @HostBinding('class.fd-action-bar__description--back')\n withBackBtn = false;\n}\n","import { Directive } from '@angular/core';\n\n/**\n * The action bar header, which contains the action bar's title and description components.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-header>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-header]',\n host: {\n class: 'fd-action-bar__header'\n }\n})\nexport class ActionBarHeaderDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * This component holds the right-aligned action buttons for the action bar.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-actions>\n * <button fd-button [fdType]=\"'primary'\">Cancel</button>\n * <button fd-button [fdType]=\"'main'\">Save</button>\n * </div>\n * </div>\n * ```\n */\n\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-actions]',\n host: {\n class: 'fd-action-bar__actions'\n }\n})\nexport class ActionBarActionsDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * The left-aligned back button for the action bar.\n *\n * ```html\n * <div fd-action-bar>\n * <div fd-action-bar-back>\n * <button aria-label=\"back\" fd-button [fdType]=\"'transparent'\" [compact]=\"true\" [glyph]=\"'nav-back'\"></button>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-back]',\n host: {\n class: 'fd-action-bar__back'\n }\n})\nexport class ActionBarBackDirective {}\n","import { Directive } from '@angular/core';\n\n/**\n * The action bar mobile component. This component should wrap all other action bar components, including the `[fd-action-bar]`.\n *\n * ```html\n * <div fd-action-bar-mobile>\n * <div fd-action-bar>\n * </div>\n * </div>\n * ```\n */\n@Directive({\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-action-bar-mobile]'\n})\nexport class ActionBarMobileDirective {}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { ActionBarComponent } from './action-bar.component';\nimport { ActionBarTitleComponent } from './action-bar-title/action-bar-title.component';\nimport { ActionBarDescriptionDirective } from './action-bar-description/action-bar-description.directive';\nimport { ActionBarHeaderDirective } from './action-bar-header/action-bar-header.directive';\nimport { ActionBarActionsDirective } from './action-bar-actions/action-bar-actions.directive';\nimport { ActionBarBackDirective } from './action-bar-back/action-bar-back.directive';\nimport { ActionBarMobileDirective } from './action-bar-mobile/action-bar-mobile.directive';\n\n@NgModule({\n declarations: [\n ActionBarComponent,\n ActionBarTitleComponent,\n ActionBarDescriptionDirective,\n ActionBarHeaderDirective,\n ActionBarActionsDirective,\n ActionBarBackDirective,\n ActionBarMobileDirective\n ],\n imports: [CommonModule],\n exports: [\n ActionBarComponent,\n ActionBarTitleComponent,\n ActionBarDescriptionDirective,\n ActionBarHeaderDirective,\n ActionBarActionsDirective,\n ActionBarBackDirective,\n ActionBarMobileDirective\n ]\n})\nexport class ActionBarModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|