@fundamental-ngx/core 0.46.0-rc.30 → 0.46.0-rc.32

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.
Files changed (78) hide show
  1. package/esm2022/breadcrumb/breadcrumb.component.mjs +1 -1
  2. package/esm2022/combobox/combobox.component.mjs +1 -1
  3. package/esm2022/icon/icon.component.mjs +3 -3
  4. package/esm2022/icon/icon.module.mjs +5 -7
  5. package/esm2022/menu/directives/glyph-menu-addon.directive.mjs +86 -0
  6. package/esm2022/menu/directives/menu-addon.directive.mjs +22 -14
  7. package/esm2022/menu/directives/menu-item-input.directive.mjs +37 -0
  8. package/esm2022/menu/directives/menu-shortcut.directive.mjs +5 -4
  9. package/esm2022/menu/directives/menu-title.directive.mjs +4 -3
  10. package/esm2022/menu/directives/menu-trigger.directive.mjs +4 -3
  11. package/esm2022/menu/directives/segmented-button/segmented-button-header.directive.mjs +68 -0
  12. package/esm2022/menu/directives/segmented-button/segmented-button-option.directive.mjs +89 -0
  13. package/esm2022/menu/directives/toggle-button.directive.mjs +62 -0
  14. package/esm2022/menu/index.mjs +13 -8
  15. package/esm2022/menu/menu-interactive.component.mjs +121 -0
  16. package/esm2022/menu/menu-item/menu-item.component.mjs +36 -12
  17. package/esm2022/menu/menu-mobile/menu-mobile.component.mjs +31 -12
  18. package/esm2022/menu/menu-mobile/menu-mobile.module.mjs +7 -8
  19. package/esm2022/menu/menu-separator.directive.mjs +30 -0
  20. package/esm2022/menu/menu.component.mjs +89 -11
  21. package/esm2022/menu/menu.module.mjs +67 -27
  22. package/esm2022/menu/menu.tokens.mjs +5 -0
  23. package/esm2022/multi-combobox/multi-combobox.component.mjs +1 -1
  24. package/esm2022/multi-input/multi-input-mobile/multi-input-mobile.component.mjs +22 -6
  25. package/esm2022/multi-input/multi-input-mobile/multi-input-mobile.module.mjs +4 -9
  26. package/esm2022/multi-input/multi-input.component.mjs +105 -56
  27. package/esm2022/multi-input/multi-input.module.mjs +5 -54
  28. package/esm2022/shellbar/product-menu/product-menu.component.mjs +2 -2
  29. package/esm2022/shellbar/user-menu/shellbar-user-menu.component.mjs +2 -2
  30. package/esm2022/tabs/tab-list.component.mjs +1 -1
  31. package/fesm2022/fundamental-ngx-core-breadcrumb.mjs +1 -1
  32. package/fesm2022/fundamental-ngx-core-breadcrumb.mjs.map +1 -1
  33. package/fesm2022/fundamental-ngx-core-combobox.mjs +1 -1
  34. package/fesm2022/fundamental-ngx-core-combobox.mjs.map +1 -1
  35. package/fesm2022/fundamental-ngx-core-icon.mjs +6 -8
  36. package/fesm2022/fundamental-ngx-core-icon.mjs.map +1 -1
  37. package/fesm2022/fundamental-ngx-core-menu.mjs +663 -134
  38. package/fesm2022/fundamental-ngx-core-menu.mjs.map +1 -1
  39. package/fesm2022/fundamental-ngx-core-multi-combobox.mjs +1 -1
  40. package/fesm2022/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
  41. package/fesm2022/fundamental-ngx-core-multi-input.mjs +130 -112
  42. package/fesm2022/fundamental-ngx-core-multi-input.mjs.map +1 -1
  43. package/fesm2022/fundamental-ngx-core-shellbar.mjs +2 -2
  44. package/fesm2022/fundamental-ngx-core-shellbar.mjs.map +1 -1
  45. package/fesm2022/fundamental-ngx-core-tabs.mjs +1 -1
  46. package/fesm2022/fundamental-ngx-core-tabs.mjs.map +1 -1
  47. package/fundamental-ngx-core-v0.46.0-rc.32.tgz +0 -0
  48. package/icon/icon.component.d.ts +2 -3
  49. package/icon/icon.module.d.ts +1 -2
  50. package/menu/directives/glyph-menu-addon.directive.d.ts +43 -0
  51. package/menu/directives/menu-addon.directive.d.ts +11 -5
  52. package/menu/directives/menu-item-input.directive.d.ts +14 -0
  53. package/menu/directives/menu-shortcut.directive.d.ts +1 -1
  54. package/menu/directives/menu-title.directive.d.ts +1 -1
  55. package/menu/directives/menu-trigger.directive.d.ts +1 -1
  56. package/menu/directives/segmented-button/segmented-button-header.directive.d.ts +27 -0
  57. package/menu/directives/segmented-button/segmented-button-option.directive.d.ts +40 -0
  58. package/menu/directives/toggle-button.directive.d.ts +19 -0
  59. package/menu/index.d.ts +12 -7
  60. package/menu/menu-interactive.component.d.ts +44 -0
  61. package/menu/menu-item/menu-item.component.d.ts +9 -6
  62. package/menu/menu-mobile/menu-mobile.component.d.ts +4 -4
  63. package/menu/menu-mobile/menu-mobile.module.d.ts +5 -5
  64. package/menu/menu-separator.directive.d.ts +15 -0
  65. package/menu/menu.component.d.ts +22 -7
  66. package/menu/menu.module.d.ts +19 -14
  67. package/menu/menu.tokens.d.ts +4 -0
  68. package/multi-input/multi-input-mobile/multi-input-mobile.component.d.ts +3 -3
  69. package/multi-input/multi-input-mobile/multi-input-mobile.module.d.ts +1 -5
  70. package/multi-input/multi-input.component.d.ts +46 -39
  71. package/multi-input/multi-input.module.d.ts +3 -13
  72. package/package.json +3 -3
  73. package/schematics/add-dependencies/index.js +4 -4
  74. package/esm2022/menu/directives/menu-interactive.directive.mjs +0 -68
  75. package/esm2022/menu/menu-separator/menu-separator.component.mjs +0 -23
  76. package/fundamental-ngx-core-v0.46.0-rc.30.tgz +0 -0
  77. package/menu/directives/menu-interactive.directive.d.ts +0 -30
  78. package/menu/menu-separator/menu-separator.component.d.ts +0 -7
@@ -110,7 +110,7 @@ export class BreadcrumbComponent {
110
110
  provide: FD_BREADCRUMB_COMPONENT,
111
111
  useExisting: BreadcrumbComponent
112
112
  }
113
- ], queries: [{ propertyName: "_contentItems", predicate: FD_BREADCRUMB_ITEM_COMPONENT }], viewQueries: [{ propertyName: "_menuComponent", first: true, predicate: MenuComponent, descendants: true }, { propertyName: "_overflowLayout", first: true, predicate: OverflowLayoutComponent, descendants: true }], ngImport: i0, template: "<fd-overflow-layout\n [reverseHiddenItems]=\"!reverse\"\n showMorePosition=\"left\"\n [enableKeyboardNavigation]=\"false\"\n (visibleItemsCount)=\"_onVisibleItemsCountChange($event)\"\n (hiddenItemsCount)=\"_onHiddenItemsCountChange($event)\"\n>\n <ng-container *ngFor=\"let breadcrumb of _items\">\n <div\n *fdOverflowItemRef=\"breadcrumb; let hidden\"\n fdOverflowLayoutItem\n (hiddenChange)=\"_onHiddenChange($event, breadcrumb)\"\n >\n <ng-template [cdkPortalOutlet]=\"breadcrumb.portal\"></ng-template>\n </div>\n </ng-container>\n <ng-container *fdOverflowExpand=\"let breadcrumbs; items: _items\">\n <fd-menu #menu [closeOnEscapeKey]=\"true\" [focusAutoCapture]=\"true\" [placement]=\"_placement$ | async\">\n <ng-container *ngFor=\"let breadcrumbItem of breadcrumbs\">\n <li\n fd-menu-item\n [disabled]=\"\n breadcrumbItem.item.breadcrumbLink ? breadcrumbItem.item.breadcrumbLink.disabled : false\n \"\n >\n <a\n fd-menu-interactive\n (click)=\"itemClicked(breadcrumbItem.item, $event)\"\n (keydown.enter)=\"itemClicked(breadcrumbItem.item, $event)\"\n (keydown.space)=\"itemClicked(breadcrumbItem.item, $event)\"\n >\n <ng-container *ngIf=\"breadcrumbItem?.item.breadcrumbLink; else portalContent\">\n <ng-container *ngIf=\"breadcrumbItem.item.breadcrumbLink._prefixIconName\">\n <fd-menu-addon\n position=\"before\"\n [glyph]=\"breadcrumbItem.item.breadcrumbLink._prefixIconName\"\n ></fd-menu-addon>\n </ng-container>\n <span fd-menu-title>\n <ng-container [cdkPortalOutlet]=\"breadcrumbItem.item.linkContentPortal\"></ng-container>\n </span>\n <ng-container *ngIf=\"breadcrumbItem.item.breadcrumbLink._postfixIconName\">\n <fd-menu-addon\n [glyph]=\"breadcrumbItem.item.breadcrumbLink._postfixIconName\"\n ></fd-menu-addon>\n </ng-container>\n </ng-container>\n <ng-template #portalContent>\n <span fd-menu-title>\n <ng-container\n [cdkPortalOutlet]=\"breadcrumbItem.item.breadcrumbItemPortal\"\n ></ng-container>\n </span>\n </ng-template>\n </a>\n </li>\n </ng-container>\n </fd-menu>\n <span class=\"fd-breadcrumb__item\" *ngIf=\"breadcrumbs.length > 0\" [fdMenuTrigger]=\"menu\">\n <a\n fd-link\n [attr.aria-label]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n aria-haspopup=\"listbox\"\n tabindex=\"0\"\n class=\"fd-breadcrumb__collapsed\"\n (keydown.enter)=\"_keyDownHandle($event)\"\n (keydown.space)=\"_keyDownHandle($event)\"\n >\n <fd-icon\n glyph=\"overflow\"\n [title]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n [ariaLabel]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n ></fd-icon>\n <fd-icon glyph=\"slim-arrow-down\"></fd-icon>\n </a>\n </span>\n </ng-container>\n</fd-overflow-layout>\n\n<ng-content></ng-content>\n", styles: ["/*!\n * Fundamental Library Styles v0.30.2-rc.6\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-breadcrumb{-webkit-box-sizing:border-box;-ms-flex-wrap:wrap;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-wrap:wrap;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}.fd-breadcrumb:after,.fd-breadcrumb:before{box-sizing:inherit;font-size:inherit}.fd-breadcrumb__item{-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;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-breadcrumb__item:after,.fd-breadcrumb__item:before{box-sizing:inherit;font-size:inherit}.fd-breadcrumb__item:after{color:var(--sapContent_LabelColor);content:\"/\";margin-left:.25rem;margin-right:.25rem}.fd-breadcrumb__item:last-child:after{content:none}.fd-breadcrumb__item .fd-breadcrumb__popover-body{border:none;border-top-left-radius:.125rem;border-top-right-radius:.125rem}.fd-breadcrumb{display:flex;white-space:nowrap}.fd-breadcrumb .fd-breadcrumb__collapsed{cursor:pointer}.fd-breadcrumb .fd-overflow-layout{justify-content:start}.fd-breadcrumb .fd-breadcrumb__item:last-child:after{content:\"/\"}.fd-breadcrumb .fd-overflow-layout__item--last .fd-breadcrumb__item:after{content:none}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "component", type: i4.MenuComponent, selector: "fd-menu", inputs: ["mobile", "disabled", "focusTrapped", "focusAutoCapture", "tabbableScrollbar", "openOnHoverTime", "mobileConfig", "ariaLabel", "ariaLabelledby", "id"], outputs: ["activePath"] }, { kind: "component", type: i4.MenuItemComponent, selector: "li[fd-menu-item]", inputs: ["disabled", "itemId", "submenu", "parentSubmenu"], outputs: ["onSelect"], exportAs: ["fd-menu-item"] }, { kind: "directive", type: i4.MenuInteractiveDirective, selector: "[fd-menu-interactive]" }, { kind: "directive", type: i4.MenuTitleDirective, selector: "[fd-menu-title]" }, { kind: "component", type: i4.MenuAddonDirective, selector: "fd-menu-addon", inputs: ["position", "glyph", "submenuIndicator", "ariaHidden"] }, { kind: "directive", type: i4.MenuTriggerDirective, selector: "[fdMenuTrigger]", inputs: ["fdMenuTrigger"] }, { kind: "component", type: i5.LinkComponent, selector: "[fdLink], [fd-link]", inputs: ["class", "emphasized", "disabled", "inverted", "subtle", "undecorated"] }, { kind: "directive", type: i6.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i7.OverflowLayoutComponent, selector: "fd-overflow-layout", inputs: ["maxVisibleItems", "navigationTrigger", "showMorePosition", "reverseHiddenItems", "enableKeyboardNavigation", "moreItemsButtonText"], outputs: ["visibleItemsCount", "hiddenItemsCount"] }, { kind: "directive", type: i7.OverflowItemRefDirective, selector: "[fdOverflowItemRef]", inputs: ["fdOverflowItemRef"] }, { kind: "directive", type: i7.OverflowExpandDirective, selector: "[fdOverflowExpand]", inputs: ["fdOverflowExpandItems"] }, { kind: "directive", type: i7.OverflowLayoutItemDirective, selector: "[fdOverflowLayoutItem]", inputs: ["forceVisibility"], outputs: ["hiddenChange"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i8.FdTranslatePipe, name: "fdTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
113
+ ], queries: [{ propertyName: "_contentItems", predicate: FD_BREADCRUMB_ITEM_COMPONENT }], viewQueries: [{ propertyName: "_menuComponent", first: true, predicate: MenuComponent, descendants: true }, { propertyName: "_overflowLayout", first: true, predicate: OverflowLayoutComponent, descendants: true }], ngImport: i0, template: "<fd-overflow-layout\n [reverseHiddenItems]=\"!reverse\"\n showMorePosition=\"left\"\n [enableKeyboardNavigation]=\"false\"\n (visibleItemsCount)=\"_onVisibleItemsCountChange($event)\"\n (hiddenItemsCount)=\"_onHiddenItemsCountChange($event)\"\n>\n <ng-container *ngFor=\"let breadcrumb of _items\">\n <div\n *fdOverflowItemRef=\"breadcrumb; let hidden\"\n fdOverflowLayoutItem\n (hiddenChange)=\"_onHiddenChange($event, breadcrumb)\"\n >\n <ng-template [cdkPortalOutlet]=\"breadcrumb.portal\"></ng-template>\n </div>\n </ng-container>\n <ng-container *fdOverflowExpand=\"let breadcrumbs; items: _items\">\n <fd-menu #menu [closeOnEscapeKey]=\"true\" [focusAutoCapture]=\"true\" [placement]=\"_placement$ | async\">\n <ng-container *ngFor=\"let breadcrumbItem of breadcrumbs\">\n <li\n fd-menu-item\n [disabled]=\"\n breadcrumbItem.item.breadcrumbLink ? breadcrumbItem.item.breadcrumbLink.disabled : false\n \"\n >\n <a\n fd-menu-interactive\n (click)=\"itemClicked(breadcrumbItem.item, $event)\"\n (keydown.enter)=\"itemClicked(breadcrumbItem.item, $event)\"\n (keydown.space)=\"itemClicked(breadcrumbItem.item, $event)\"\n >\n <ng-container *ngIf=\"breadcrumbItem?.item.breadcrumbLink; else portalContent\">\n <ng-container *ngIf=\"breadcrumbItem.item.breadcrumbLink._prefixIconName\">\n <fd-menu-addon\n position=\"before\"\n [glyph]=\"breadcrumbItem.item.breadcrumbLink._prefixIconName\"\n ></fd-menu-addon>\n </ng-container>\n <span fd-menu-title>\n <ng-container [cdkPortalOutlet]=\"breadcrumbItem.item.linkContentPortal\"></ng-container>\n </span>\n <ng-container *ngIf=\"breadcrumbItem.item.breadcrumbLink._postfixIconName\">\n <fd-menu-addon\n [glyph]=\"breadcrumbItem.item.breadcrumbLink._postfixIconName\"\n ></fd-menu-addon>\n </ng-container>\n </ng-container>\n <ng-template #portalContent>\n <span fd-menu-title>\n <ng-container\n [cdkPortalOutlet]=\"breadcrumbItem.item.breadcrumbItemPortal\"\n ></ng-container>\n </span>\n </ng-template>\n </a>\n </li>\n </ng-container>\n </fd-menu>\n <span class=\"fd-breadcrumb__item\" *ngIf=\"breadcrumbs.length > 0\" [fdMenuTrigger]=\"menu\">\n <a\n fd-link\n [attr.aria-label]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n aria-haspopup=\"listbox\"\n tabindex=\"0\"\n class=\"fd-breadcrumb__collapsed\"\n (keydown.enter)=\"_keyDownHandle($event)\"\n (keydown.space)=\"_keyDownHandle($event)\"\n >\n <fd-icon\n glyph=\"overflow\"\n [title]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n [ariaLabel]=\"'coreBreadcrumb.overflowTitleMore' | fdTranslate\"\n ></fd-icon>\n <fd-icon glyph=\"slim-arrow-down\"></fd-icon>\n </a>\n </span>\n </ng-container>\n</fd-overflow-layout>\n\n<ng-content></ng-content>\n", styles: ["/*!\n * Fundamental Library Styles v0.30.2-rc.6\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-breadcrumb{-webkit-box-sizing:border-box;-ms-flex-wrap:wrap;align-items:center;border:0;box-sizing:border-box;color:var(--sapTextColor);display:flex;flex-wrap:wrap;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}.fd-breadcrumb:after,.fd-breadcrumb:before{box-sizing:inherit;font-size:inherit}.fd-breadcrumb__item{-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;line-height:var(--sapContent_LineHeight);margin:0;padding:0}.fd-breadcrumb__item:after,.fd-breadcrumb__item:before{box-sizing:inherit;font-size:inherit}.fd-breadcrumb__item:after{color:var(--sapContent_LabelColor);content:\"/\";margin-left:.25rem;margin-right:.25rem}.fd-breadcrumb__item:last-child:after{content:none}.fd-breadcrumb__item .fd-breadcrumb__popover-body{border:none;border-top-left-radius:.125rem;border-top-right-radius:.125rem}.fd-breadcrumb{display:flex;white-space:nowrap}.fd-breadcrumb .fd-breadcrumb__collapsed{cursor:pointer}.fd-breadcrumb .fd-overflow-layout{justify-content:start}.fd-breadcrumb .fd-breadcrumb__item:last-child:after{content:\"/\"}.fd-breadcrumb .fd-overflow-layout__item--last .fd-breadcrumb__item:after{content:none}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "component", type: i4.MenuComponent, selector: "fd-menu", inputs: ["mobile", "disabled", "focusTrapped", "focusAutoCapture", "tabbableScrollbar", "openOnHoverTime", "mobileConfig", "ariaLabel", "ariaLabelledby", "id"], outputs: ["activePath"] }, { kind: "component", type: i4.MenuItemComponent, selector: "li[fd-menu-item]", inputs: ["disabled", "itemId", "submenu", "parentSubmenu", "hasSeparator"], outputs: ["onSelect"], exportAs: ["fd-menu-item"] }, { kind: "component", type: i4.MenuInteractiveComponent, selector: "[fd-menu-interactive]" }, { kind: "directive", type: i4.MenuTitleDirective, selector: "[fd-menu-title]" }, { kind: "component", type: i4.MenuAddonDirective, selector: "fd-menu-addon", inputs: ["position", "submenuIndicator", "ariaHidden"] }, { kind: "directive", type: i4.MenuTriggerDirective, selector: "[fdMenuTrigger]", inputs: ["fdMenuTrigger"] }, { kind: "directive", type: i4.GlyphMenuAddonDirective, selector: "fd-menu-addon[glyph]", inputs: ["glyph"] }, { kind: "component", type: i5.LinkComponent, selector: "[fdLink], [fd-link]", inputs: ["class", "emphasized", "disabled", "inverted", "subtle", "undecorated"] }, { kind: "directive", type: i6.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i7.OverflowLayoutComponent, selector: "fd-overflow-layout", inputs: ["maxVisibleItems", "navigationTrigger", "showMorePosition", "reverseHiddenItems", "enableKeyboardNavigation", "moreItemsButtonText"], outputs: ["visibleItemsCount", "hiddenItemsCount"] }, { kind: "directive", type: i7.OverflowItemRefDirective, selector: "[fdOverflowItemRef]", inputs: ["fdOverflowItemRef"] }, { kind: "directive", type: i7.OverflowExpandDirective, selector: "[fdOverflowExpand]", inputs: ["fdOverflowExpandItems"] }, { kind: "directive", type: i7.OverflowLayoutItemDirective, selector: "[fdOverflowLayoutItem]", inputs: ["forceVisibility"], outputs: ["hiddenChange"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i8.FdTranslatePipe, name: "fdTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
114
114
  }
115
115
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: BreadcrumbComponent, decorators: [{
116
116
  type: Component,
@@ -512,7 +512,7 @@ export class ComboboxComponent {
512
512
  provide: FD_COMBOBOX_COMPONENT,
513
513
  useExisting: ComboboxComponent
514
514
  }
515
- ], queries: [{ propertyName: "listMessages", predicate: FD_LIST_MESSAGE_DIRECTIVE }], viewQueries: [{ propertyName: "listComponent", first: true, predicate: ListComponent, descendants: true }, { propertyName: "searchInputElement", first: true, predicate: ["searchInputElement"], descendants: true }, { propertyName: "popoverComponent", first: true, predicate: PopoverComponent, descendants: true }, { propertyName: "inputGroup", first: true, predicate: InputGroupComponent, descendants: true }, { propertyName: "controlTemplate", first: true, predicate: ["controlTemplate"], descendants: true }, { propertyName: "listTemplate", first: true, predicate: ["listTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *ngTemplateOutlet=\"mobile ? mobileTemplate : desktopTemplate\"></ng-container>\n\n<ng-template #desktopTemplate>\n <fd-popover\n additionalBodyClass=\"fd-popover-custom-list\"\n [class.fd-combobox-full-width]=\"isSearch\"\n [isOpen]=\"open && displayedValues && displayedValues.length > 0\"\n (isOpenChange)=\"isOpenChangeHandle($event)\"\n [fillControlMode]=\"fillControlMode\"\n [scrollStrategy]=\"_repositionScrollStrategy\"\n [focusTrapped]=\"true\"\n [triggers]=\"triggers\"\n [disabled]=\"disabled || readOnly\"\n [maxWidth]=\"640\"\n [closeOnOutsideClick]=\"closeOnOutsideClick\"\n >\n <fd-popover-control>\n <ng-container *ngTemplateOutlet=\"controlTemplate\"></ng-container>\n </fd-popover-control>\n <fd-popover-body [hidden]=\"!displayedValues.length\">\n <ng-container *ngTemplateOutlet=\"listTemplate\"></ng-container>\n <ng-content></ng-content>\n </fd-popover-body>\n </fd-popover>\n</ng-template>\n\n<ng-template let-term=\"term\" #itemSource>\n <span\n fd-list-title\n *ngIf=\"!itemTemplate\"\n [innerHTML]=\"term | displayFnPipe : displayFn | highlight : inputText : highlighting && filterHighlight\"\n >\n </span>\n <ng-container *ngIf=\"itemTemplate\">\n <ng-container [ngTemplateOutlet]=\"itemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: term }\"></ng-container>\n </ng-container>\n</ng-template>\n\n<ng-template #mobileTemplate>\n <ng-container [ngTemplateOutlet]=\"controlTemplate\"></ng-container>\n</ng-template>\n\n<ng-template #controlTemplate>\n <fd-input-group\n [button]=\"showDropdownButton\"\n [glyph]=\"showDropdownButton ? glyphValue : null\"\n [state]=\"state\"\n [buttonFocusable]=\"buttonFocusable\"\n [disabled]=\"disabled\"\n [readonly]=\"readOnly\"\n [isControl]=\"true\"\n [isExpanded]=\"!mobile && open && displayedValues.length > 0\"\n [showFocus]=\"!clearInputBtnFocused\"\n [glyphAriaLabel]=\"ariaLabel || ('platformMultiCombobox.inputGlyphAriaLabel' | fdTranslate)\"\n [iconTitle]=\"title || ('platformMultiCombobox.inputGlyphAriaLabel' | fdTranslate)\"\n (addOnButtonClicked)=\"onPrimaryButtonClick()\"\n (click)=\"mobile && isOpenChangeHandle(true)\"\n >\n <input\n #searchInputElement\n fdkAutoComplete\n fd-input-group-input\n type=\"text\"\n role=\"combobox\"\n autocomplete=\"off\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-labelledby]=\"ariaLabelledBy\"\n [attr.aria-describedby]=\"comboboxId + '-list-results'\"\n [attr.aria-autocomplete]=\"autoComplete && !mobile ? 'list' : null\"\n [attr.aria-owns]=\"autoComplete && !mobile ? comboboxId + '-result' : null\"\n [attr.aria-haspopup]=\"autoComplete && !mobile\"\n [attr.aria-expanded]=\"!mobile && open && displayedValues.length\"\n [attr.aria-required]=\"required\"\n [attr.tabindex]=\"readOnly || disabled ? -1 : null\"\n [enable]=\"autoComplete && !mobile\"\n [displayFn]=\"displayFn\"\n [options]=\"dropdownValues\"\n [inputText]=\"inputText\"\n [disabled]=\"disabled\"\n [readonly]=\"readOnly\"\n [attr.aria-readonly]=\"readOnly\"\n [placeholder]=\"placeholder\"\n [id]=\"inputId\"\n [(ngModel)]=\"inputText\"\n (onComplete)=\"handleAutoComplete($event)\"\n (keydown)=\"onInputKeydownHandler($event)\"\n (ngModelChange)=\"handleSearchTermChange()\"\n (blur)=\"handleBlur()\"\n />\n <span\n class=\"fd-input-group__addon fd-input-group__addon--button\"\n [class.fd-shellbar__input-group-addon]=\"inShellbar\"\n *ngIf=\"isSearch && showClearButton && inputText && inputText.length > 0\"\n >\n <button\n fd-button\n class=\"fd-input-group__button\"\n type=\"button\"\n [fdType]=\"inShellbar ? 'standard' : 'transparent'\"\n title=\"Clear input\"\n [class.fd-shellbar__button]=\"inShellbar\"\n [attr.tabindex]=\"clearButtonFocusable ? 0 : -1\"\n (focus)=\"clearInputBtnFocus()\"\n (blur)=\"clearInputBtnBlur()\"\n (click)=\"_handleClearSearchTerm()\"\n >\n <fd-icon glyph=\"decline\"></fd-icon>\n </button>\n </span>\n </fd-input-group>\n <div [id]=\"comboboxId + '-list-results'\" class=\"fd-combobox-count-list-results\">\n {{ displayedValues.length || 0 }} result list items\n </div>\n</ng-template>\n\n<ng-template #listTemplate>\n <ul\n fd-list\n class=\"fd-combobox-custom-list\"\n [dropdownMode]=\"true\"\n [id]=\"comboboxId + '-result'\"\n role=\"listbox\"\n [attr.aria-labelledby]=\"comboboxId + '-search'\"\n [style.maxHeight]=\"!mobile && maxHeight\"\n [hasMessage]=\"listMessages && listMessages.length > 0\"\n [byline]=\"byline\"\n (focusEscapeList)=\"handleListFocusEscape($event)\"\n >\n <ng-content></ng-content>\n <ng-container *ngIf=\"groupFn\">\n <ng-container *ngFor=\"let group of displayedValues | listGroupPipe : groupFn\">\n <li role=\"group\" fd-list-group-header [tabindex]=\"0\">\n <span fd-list-title>{{ group.key }}</span>\n </li>\n <li\n role=\"option\"\n fd-list-item\n [attr.aria-placeholder]=\"group.key\"\n [tabindex]=\"0\"\n class=\"fd-combobox-list-item\"\n *ngFor=\"let term of group.value\"\n [selected]=\"isSelected(term)\"\n (keyDown)=\"onItemKeyDownHandler($event, term)\"\n (click)=\"onMenuClickHandler(term)\"\n >\n <ng-container\n [ngTemplateOutlet]=\"itemSource\"\n [ngTemplateOutletContext]=\"{ term: term }\"\n ></ng-container>\n </li>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!groupFn\">\n <li\n fd-list-item\n role=\"option\"\n [tabindex]=\"0\"\n class=\"fd-combobox-list-item\"\n *ngFor=\"let term of displayedValues\"\n [selected]=\"isSelected(term)\"\n (keyDown)=\"onItemKeyDownHandler($event, term)\"\n (click)=\"onMenuClickHandler(term)\"\n >\n <ng-container [ngTemplateOutlet]=\"itemSource\" [ngTemplateOutletContext]=\"{ term: term }\"></ng-container>\n </li>\n </ng-container>\n </ul>\n</ng-template>\n", styles: [".fd-combobox-custom-class,.fd-combobox-custom-class .fd-combobox-shellbar-custom{display:inline-block}.fd-list__item.fd-combobox-list-item{cursor:pointer}.fd-combobox-full-width{width:100%}.fd-combobox-count-list-results{position:absolute;opacity:0;z-index:-1}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5.PopoverControlComponent, selector: "fd-popover-control" }, { kind: "component", type: i5.PopoverBodyComponent, selector: "fd-popover-body" }, { kind: "component", type: i5.PopoverComponent, selector: "fd-popover", inputs: ["title", "trigger", "fixedPosition", "id", "mobile", "mobileConfig"] }, { kind: "directive", type: i6.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i7.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }, { kind: "component", type: i8.InputGroupComponent, selector: "fd-input-group", inputs: ["placement", "required", "inline", "placeholder", "addOnText", "buttonFocusable", "type", "glyph", "button", "disabled", "readonly", "state", "isControl", "showFocus", "isExpanded", "glyphAriaLabel", "iconTitle", "ariaLabelledBy"], outputs: ["addOnButtonClicked", "search"] }, { kind: "directive", type: i8.InputGroupInputDirective, selector: "[fdInputGroupInput], [fd-input-group-input]", inputs: ["class"] }, { kind: "component", type: i9.ListComponent, selector: "[fd-list], [fdList]", inputs: ["dropdownMode", "multiInputMode", "mobileMode", "hasMessage", "noBorder", "navigationIndicator", "selection", "keyboardSupport", "byline", "unreadIndicator", "role"], outputs: ["focusEscapeList"] }, { kind: "component", type: i9.ListItemComponent, selector: "[fdListItem] ,[fd-list-item]", inputs: ["selected", "noData", "action", "interactive", "growing", "counter", "unread", "byline"], outputs: ["keyDown"] }, { kind: "directive", type: i9.ListTitleDirective, selector: "[fd-list-title], [fdListTitle]", inputs: ["wrap"] }, { kind: "directive", type: i9.ListGroupHeaderDirective, selector: "[fdListGroupHeader], [fd-list-group-header]", inputs: ["nativeElementId"], outputs: ["keyDown"] }, { kind: "component", type: i10.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "directive", type: i2.AutoCompleteDirective, selector: "[fdkAutoComplete]", inputs: ["options", "inputText", "enable", "displayFn"], outputs: ["onComplete"] }, { kind: "pipe", type: i2.DisplayFnPipe, name: "displayFnPipe" }, { kind: "pipe", type: i2.SearchHighlightPipe, name: "highlight" }, { kind: "pipe", type: i11.FdTranslatePipe, name: "fdTranslate" }, { kind: "pipe", type: i12.ListGroupPipe, name: "listGroupPipe" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
515
+ ], queries: [{ propertyName: "listMessages", predicate: FD_LIST_MESSAGE_DIRECTIVE }], viewQueries: [{ propertyName: "listComponent", first: true, predicate: ListComponent, descendants: true }, { propertyName: "searchInputElement", first: true, predicate: ["searchInputElement"], descendants: true }, { propertyName: "popoverComponent", first: true, predicate: PopoverComponent, descendants: true }, { propertyName: "inputGroup", first: true, predicate: InputGroupComponent, descendants: true }, { propertyName: "controlTemplate", first: true, predicate: ["controlTemplate"], descendants: true }, { propertyName: "listTemplate", first: true, predicate: ["listTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *ngTemplateOutlet=\"mobile ? mobileTemplate : desktopTemplate\"></ng-container>\n\n<ng-template #desktopTemplate>\n <fd-popover\n additionalBodyClass=\"fd-popover-custom-list\"\n [class.fd-combobox-full-width]=\"isSearch\"\n [isOpen]=\"open && displayedValues && displayedValues.length > 0\"\n (isOpenChange)=\"isOpenChangeHandle($event)\"\n [fillControlMode]=\"fillControlMode\"\n [scrollStrategy]=\"_repositionScrollStrategy\"\n [focusTrapped]=\"true\"\n [triggers]=\"triggers\"\n [disabled]=\"disabled || readOnly\"\n [maxWidth]=\"640\"\n [closeOnOutsideClick]=\"closeOnOutsideClick\"\n >\n <fd-popover-control>\n <ng-container *ngTemplateOutlet=\"controlTemplate\"></ng-container>\n </fd-popover-control>\n <fd-popover-body [hidden]=\"!displayedValues.length\">\n <ng-container *ngTemplateOutlet=\"listTemplate\"></ng-container>\n <ng-content></ng-content>\n </fd-popover-body>\n </fd-popover>\n</ng-template>\n\n<ng-template let-term=\"term\" #itemSource>\n <span\n fd-list-title\n *ngIf=\"!itemTemplate\"\n [innerHTML]=\"term | displayFnPipe : displayFn | highlight : inputText : highlighting && filterHighlight\"\n >\n </span>\n <ng-container *ngIf=\"itemTemplate\">\n <ng-container [ngTemplateOutlet]=\"itemTemplate\" [ngTemplateOutletContext]=\"{ $implicit: term }\"></ng-container>\n </ng-container>\n</ng-template>\n\n<ng-template #mobileTemplate>\n <ng-container [ngTemplateOutlet]=\"controlTemplate\"></ng-container>\n</ng-template>\n\n<ng-template #controlTemplate>\n <fd-input-group\n [button]=\"showDropdownButton\"\n [glyph]=\"showDropdownButton ? glyphValue : null\"\n [state]=\"state\"\n [buttonFocusable]=\"buttonFocusable\"\n [disabled]=\"disabled\"\n [readonly]=\"readOnly\"\n [isControl]=\"true\"\n [isExpanded]=\"!mobile && open && displayedValues.length > 0\"\n [showFocus]=\"!clearInputBtnFocused\"\n [glyphAriaLabel]=\"ariaLabel || ('platformMultiCombobox.inputGlyphAriaLabel' | fdTranslate)\"\n [iconTitle]=\"title || ('platformMultiCombobox.inputGlyphAriaLabel' | fdTranslate)\"\n (addOnButtonClicked)=\"onPrimaryButtonClick()\"\n (click)=\"mobile && isOpenChangeHandle(true)\"\n >\n <input\n #searchInputElement\n fdkAutoComplete\n fd-input-group-input\n type=\"text\"\n role=\"combobox\"\n autocomplete=\"off\"\n [attr.aria-label]=\"ariaLabel\"\n [attr.aria-labelledby]=\"ariaLabelledBy\"\n [attr.aria-describedby]=\"comboboxId + '-list-results'\"\n [attr.aria-autocomplete]=\"autoComplete && !mobile ? 'list' : null\"\n [attr.aria-owns]=\"autoComplete && !mobile ? comboboxId + '-result' : null\"\n [attr.aria-haspopup]=\"autoComplete && !mobile\"\n [attr.aria-expanded]=\"!mobile && open && displayedValues.length\"\n [attr.aria-required]=\"required\"\n [attr.tabindex]=\"readOnly || disabled ? -1 : null\"\n [enable]=\"autoComplete && !mobile\"\n [displayFn]=\"displayFn\"\n [options]=\"dropdownValues\"\n [inputText]=\"inputText\"\n [disabled]=\"disabled\"\n [readonly]=\"readOnly\"\n [attr.aria-readonly]=\"readOnly\"\n [placeholder]=\"placeholder\"\n [id]=\"inputId\"\n [(ngModel)]=\"inputText\"\n (onComplete)=\"handleAutoComplete($event)\"\n (keydown)=\"onInputKeydownHandler($event)\"\n (ngModelChange)=\"handleSearchTermChange()\"\n (blur)=\"handleBlur()\"\n />\n <span\n class=\"fd-input-group__addon fd-input-group__addon--button\"\n [class.fd-shellbar__input-group-addon]=\"inShellbar\"\n *ngIf=\"isSearch && showClearButton && inputText && inputText.length > 0\"\n >\n <button\n fd-button\n class=\"fd-input-group__button\"\n type=\"button\"\n [fdType]=\"inShellbar ? 'standard' : 'transparent'\"\n title=\"Clear input\"\n [class.fd-shellbar__button]=\"inShellbar\"\n [attr.tabindex]=\"clearButtonFocusable ? 0 : -1\"\n (focus)=\"clearInputBtnFocus()\"\n (blur)=\"clearInputBtnBlur()\"\n (click)=\"_handleClearSearchTerm()\"\n >\n <fd-icon glyph=\"decline\"></fd-icon>\n </button>\n </span>\n </fd-input-group>\n <div [id]=\"comboboxId + '-list-results'\" class=\"fd-combobox-count-list-results\">\n {{ displayedValues.length || 0 }} result list items\n </div>\n</ng-template>\n\n<ng-template #listTemplate>\n <ul\n fd-list\n class=\"fd-combobox-custom-list\"\n [dropdownMode]=\"true\"\n [id]=\"comboboxId + '-result'\"\n role=\"listbox\"\n [attr.aria-labelledby]=\"comboboxId + '-search'\"\n [style.maxHeight]=\"!mobile && maxHeight\"\n [hasMessage]=\"listMessages && listMessages.length > 0\"\n [byline]=\"byline\"\n (focusEscapeList)=\"handleListFocusEscape($event)\"\n >\n <ng-content></ng-content>\n <ng-container *ngIf=\"groupFn\">\n <ng-container *ngFor=\"let group of displayedValues | listGroupPipe : groupFn\">\n <li role=\"group\" fd-list-group-header [tabindex]=\"0\">\n <span fd-list-title>{{ group.key }}</span>\n </li>\n <li\n role=\"option\"\n fd-list-item\n [attr.aria-placeholder]=\"group.key\"\n [tabindex]=\"0\"\n class=\"fd-combobox-list-item\"\n *ngFor=\"let term of group.value\"\n [selected]=\"isSelected(term)\"\n (keyDown)=\"onItemKeyDownHandler($event, term)\"\n (click)=\"onMenuClickHandler(term)\"\n >\n <ng-container\n [ngTemplateOutlet]=\"itemSource\"\n [ngTemplateOutletContext]=\"{ term: term }\"\n ></ng-container>\n </li>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!groupFn\">\n <li\n fd-list-item\n role=\"option\"\n [tabindex]=\"0\"\n class=\"fd-combobox-list-item\"\n *ngFor=\"let term of displayedValues\"\n [selected]=\"isSelected(term)\"\n (keyDown)=\"onItemKeyDownHandler($event, term)\"\n (click)=\"onMenuClickHandler(term)\"\n >\n <ng-container [ngTemplateOutlet]=\"itemSource\" [ngTemplateOutletContext]=\"{ term: term }\"></ng-container>\n </li>\n </ng-container>\n </ul>\n</ng-template>\n", styles: [".fd-combobox-custom-class,.fd-combobox-custom-class .fd-combobox-shellbar-custom{display:inline-block}.fd-list__item.fd-combobox-list-item{cursor:pointer}.fd-combobox-full-width{width:100%}.fd-combobox-count-list-results{position:absolute;opacity:0;z-index:-1}\n"], dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5.PopoverControlComponent, selector: "fd-popover-control" }, { kind: "component", type: i5.PopoverBodyComponent, selector: "fd-popover-body" }, { kind: "component", type: i5.PopoverComponent, selector: "fd-popover", inputs: ["title", "trigger", "fixedPosition", "id", "mobile", "mobileConfig"] }, { kind: "directive", type: i6.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i7.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }, { kind: "component", type: i8.InputGroupComponent, selector: "fd-input-group", inputs: ["placement", "required", "inline", "placeholder", "addOnText", "buttonFocusable", "type", "glyph", "button", "disabled", "readonly", "state", "isControl", "showFocus", "isExpanded", "glyphAriaLabel", "iconTitle", "ariaLabelledBy"], outputs: ["addOnButtonClicked", "search"] }, { kind: "directive", type: i8.InputGroupInputDirective, selector: "[fdInputGroupInput], [fd-input-group-input]", inputs: ["class"] }, { kind: "component", type: i9.ListComponent, selector: "[fd-list], [fdList]", inputs: ["dropdownMode", "multiInputMode", "mobileMode", "hasMessage", "noBorder", "navigationIndicator", "selection", "keyboardSupport", "byline", "unreadIndicator", "role"], outputs: ["focusEscapeList"] }, { kind: "component", type: i9.ListItemComponent, selector: "[fdListItem] ,[fd-list-item]", inputs: ["selected", "noData", "action", "interactive", "growing", "counter", "unread", "byline"], outputs: ["keyDown"] }, { kind: "directive", type: i9.ListTitleDirective, selector: "[fd-list-title], [fdListTitle]", inputs: ["wrap"] }, { kind: "directive", type: i9.ListGroupHeaderDirective, selector: "[fdListGroupHeader], [fd-list-group-header]", inputs: ["nativeElementId"], outputs: ["keyDown"] }, { kind: "component", type: i10.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "directive", type: i2.AutoCompleteDirective, selector: "[fdkAutoComplete]", inputs: ["options", "inputText", "enable", "matcher", "displayFn"], outputs: ["onComplete"] }, { kind: "pipe", type: i2.DisplayFnPipe, name: "displayFnPipe" }, { kind: "pipe", type: i2.SearchHighlightPipe, name: "highlight" }, { kind: "pipe", type: i11.FdTranslatePipe, name: "fdTranslate" }, { kind: "pipe", type: i12.ListGroupPipe, name: "listGroupPipe" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
516
516
  }
517
517
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: ComboboxComponent, decorators: [{
518
518
  type: Component,
@@ -49,7 +49,7 @@ export class IconComponent {
49
49
  ];
50
50
  }
51
51
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: IconComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
52
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.0", type: IconComponent, selector: "fd-icon", inputs: { glyph: "glyph", font: "font", class: "class", ariaLabel: "ariaLabel" }, host: { properties: { "attr.aria-label": "this.ariaLabel", "class.fd-list__navigation-item-icon": "this._navigationItemIcon" } }, providers: [
52
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.0", type: IconComponent, isStandalone: true, selector: "fd-icon", inputs: { glyph: "glyph", font: "font", class: "class", ariaLabel: "ariaLabel" }, host: { properties: { "attr.aria-label": "this.ariaLabel", "class.fd-list__navigation-item-icon": "this._navigationItemIcon" } }, providers: [
53
53
  {
54
54
  provide: FD_ICON_COMPONENT,
55
55
  useExisting: IconComponent
@@ -69,7 +69,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImpor
69
69
  provide: FD_ICON_COMPONENT,
70
70
  useExisting: IconComponent
71
71
  }
72
- ], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: ["/*!\n * Fundamental Library Styles v0.30.2-rc.6\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 */[class*=sap-icon]{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-style:normal;font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0}[class*=sap-icon]:after,[class*=sap-icon]:before{box-sizing:inherit;font-size:inherit}[class*=sap-icon]:before{font-family:SAP-icons;text-align:center;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none}[class*=sap-icon].sap-icon--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon].sap-icon--background-default:before{background-color:transparent}[class*=sap-icon].sap-icon--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon].sap-icon--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon].sap-icon--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon].sap-icon--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon].sap-icon--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon].sap-icon--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon].sap-icon--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon].sap-icon--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon].sap-icon--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon].sap-icon--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon].sap-icon--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon].sap-icon--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon].sap-icon--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon].sap-icon--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon].sap-icon--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon].sap-icon--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon].sap-icon--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon].sap-icon--background-information:before{background-color:var(--sapInformativeElementColor)}[class*=sap-icon].is-focus,[class*=sap-icon]:focus{outline-color:var(--sapContent_FocusColor);outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}[class*=sap-icon-businessSuiteInAppSymbols]:before{font-family:BusinessSuiteInAppSymbols}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-default:before{background-color:transparent}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-information:before{background-color:var(--sapInformativeElementColor)}[class*=sap-icon-TNT]:before{font-family:SAP-icons-TNT}[class*=sap-icon-TNT].sap-icon-TNT--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-default:before{background-color:transparent}[class*=sap-icon-TNT].sap-icon-TNT--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-information:before{background-color:var(--sapInformativeElementColor)}.sap-icon--accidental-leave:before{content:\"\\e000\"}.sap-icon--account:before{content:\"\\e001\"}.sap-icon--wrench:before{content:\"\\e002\"}.sap-icon--windows-doors:before{content:\"\\e003\"}.sap-icon--washing-machine:before{content:\"\\e004\"}.sap-icon--visits:before{content:\"\\e005\"}.sap-icon--video:before{content:\"\\e006\"}.sap-icon--travel-expense:before{content:\"\\e007\"}.sap-icon--temperature:before{content:\"\\e008\"}.sap-icon--task:before{content:\"\\e009\"}.sap-icon--synchronize:before{content:\"\\e00a\"}.sap-icon--survey:before{content:\"\\e00b\"}.sap-icon--settings:before{content:\"\\e00c\"}.sap-icon--search:before{content:\"\\e00d\"}.sap-icon--sales-document:before{content:\"\\e00e\"}.sap-icon--retail-store:before{content:\"\\e00f\"}.sap-icon--refresh:before{content:\"\\e010\"}.sap-icon--product:before{content:\"\\e011\"}.sap-icon--present:before{content:\"\\e012\"}.sap-icon--ppt-attachment:before{content:\"\\e013\"}.sap-icon--pool:before{content:\"\\e014\"}.sap-icon--pie-chart:before{content:\"\\e015\"}.sap-icon--picture:before{content:\"\\e016\"}.sap-icon--photo-voltaic:before{content:\"\\e017\"}.sap-icon--phone:before{content:\"\\e018\"}.sap-icon--pending:before{content:\"\\e019\"}.sap-icon--pdf-attachment:before{content:\"\\e01a\"}.sap-icon--past:before{content:\"\\e01b\"}.sap-icon--outgoing-call:before{content:\"\\e01c\"}.sap-icon--opportunity:before{content:\"\\e01d\"}.sap-icon--opportunities:before{content:\"\\e01e\"}.sap-icon--notes:before{content:\"\\e01f\"}.sap-icon--money-bills:before{content:\"\\e020\"}.sap-icon--map:before{content:\"\\e021\"}.sap-icon--log:before{content:\"\\e022\"}.sap-icon--line-charts:before{content:\"\\e023\"}.sap-icon--lightbulb:before{content:\"\\e024\"}.sap-icon--leads:before{content:\"\\e025\"}.sap-icon--lead:before{content:\"\\e026\"}.sap-icon--laptop:before{content:\"\\e027\"}.sap-icon--kpi-managing-my-area:before{content:\"\\e028\"}.sap-icon--kpi-corporate-performance:before{content:\"\\e029\"}.sap-icon--incoming-call:before{content:\"\\e02a\"}.sap-icon--inbox:before{content:\"\\e02b\"}.sap-icon--horizontal-bar-chart:before{content:\"\\e02c\"}.sap-icon--history:before{content:\"\\e02d\"}.sap-icon--heating-cooling:before{content:\"\\e02e\"}.sap-icon--gantt-bars:before{content:\"\\e02f\"}.sap-icon--future:before{content:\"\\e030\"}.sap-icon--fridge:before{content:\"\\e031\"}.sap-icon--fallback:before{content:\"\\e032\"}.sap-icon--expense-report:before{content:\"\\e033\"}.sap-icon--excel-attachment:before{content:\"\\e034\"}.sap-icon--energy-saving-lightbulb:before{content:\"\\e035\"}.sap-icon--employee:before{content:\"\\e036\"}.sap-icon--email:before{content:\"\\e037\"}.sap-icon--edit:before{content:\"\\e038\"}.sap-icon--duplicate:before{content:\"\\e039\"}.sap-icon--download:before{content:\"\\e03a\"}.sap-icon--doc-attachment:before{content:\"\\e03b\"}.sap-icon--dishwasher:before{content:\"\\e03c\"}.sap-icon--delete:before{content:\"\\e03d\"}.sap-icon--decline:before{content:\"\\e03e\"}.sap-icon--complete:before{content:\"\\e03f\"}.sap-icon--competitor:before{content:\"\\e040\"}.sap-icon--collections-management:before{content:\"\\e041\"}.sap-icon--chalkboard:before{content:\"\\e042\"}.sap-icon--cart:before{content:\"\\e043\"}.sap-icon--card:before{content:\"\\e044\"}.sap-icon--camera:before{content:\"\\e045\"}.sap-icon--calendar:before{content:\"\\e046\"}.sap-icon--begin:before{content:\"\\e047\"}.sap-icon--basket:before{content:\"\\e048\"}.sap-icon--bar-chart:before{content:\"\\e049\"}.sap-icon--attachment:before{content:\"\\e04a\"}.sap-icon--arrow-top:before{content:\"\\e04b\"}.sap-icon--arrow-right:before{content:\"\\e04c\"}.sap-icon--arrow-left:before{content:\"\\e04d\"}.sap-icon--arrow-bottom:before{content:\"\\e04e\"}.sap-icon--approvals:before{content:\"\\e04f\"}.sap-icon--appointment:before{content:\"\\e050\"}.sap-icon--alphabetical-order:before{content:\"\\e051\"}.sap-icon--along-stacked-chart:before{content:\"\\e052\"}.sap-icon--alert:before{content:\"\\e053\"}.sap-icon--addresses:before{content:\"\\e054\"}.sap-icon--address-book:before{content:\"\\e055\"}.sap-icon--add-filter:before{content:\"\\e056\"}.sap-icon--add-favorite:before{content:\"\\e057\"}.sap-icon--add:before{content:\"\\e058\"}.sap-icon--activities:before{content:\"\\e059\"}.sap-icon--action:before{content:\"\\e05a\"}.sap-icon--accept:before{content:\"\\e05b\"}.sap-icon--hint:before{content:\"\\e05c\"}.sap-icon--group:before{content:\"\\e05d\"}.sap-icon--check-availability:before{content:\"\\e05e\"}.sap-icon--weather-proofing:before{content:\"\\e05f\"}.sap-icon--payment-approval:before{content:\"\\e060\"}.sap-icon--batch-payments:before{content:\"\\e061\"}.sap-icon--bed:before{content:\"\\e062\"}.sap-icon--arobase:before{content:\"\\e063\"}.sap-icon--family-care:before{content:\"\\e064\"}.sap-icon--favorite:before{content:\"\\e065\"}.sap-icon--navigation-right-arrow:before{content:\"\\e066\"}.sap-icon--navigation-left-arrow:before{content:\"\\e067\"}.sap-icon--e-care:before{content:\"\\e068\"}.sap-icon--less:before{content:\"\\e069\"}.sap-icon--lateness:before{content:\"\\e06a\"}.sap-icon--lab:before{content:\"\\e06b\"}.sap-icon--internet-browser:before{content:\"\\e06c\"}.sap-icon--instance:before{content:\"\\e06d\"}.sap-icon--inspection:before{content:\"\\e06e\"}.sap-icon--image-viewer:before{content:\"\\e06f\"}.sap-icon--home:before{content:\"\\e070\"}.sap-icon--grid:before{content:\"\\e071\"}.sap-icon--goalseek:before{content:\"\\e072\"}.sap-icon--general-leave-request:before{content:\"\\e073\"}.sap-icon--create-leave-request:before{content:\"\\e074\"}.sap-icon--flight:before{content:\"\\e075\"}.sap-icon--filter:before{content:\"\\e076\"}.sap-icon--favorite-list:before{content:\"\\e077\"}.sap-icon--factory:before{content:\"\\e078\"}.sap-icon--endoscopy:before{content:\"\\e079\"}.sap-icon--employee-pane:before{content:\"\\e07a\"}.sap-icon--employee-approvals:before{content:\"\\e07b\"}.sap-icon--email-read:before{content:\"\\e07c\"}.sap-icon--electrocardiogram:before{content:\"\\e07d\"}.sap-icon--documents:before{content:\"\\e07e\"}.sap-icon--decision:before{content:\"\\e07f\"}.sap-icon--database:before{content:\"\\e080\"}.sap-icon--customer-history:before{content:\"\\e081\"}.sap-icon--customer:before{content:\"\\e082\"}.sap-icon--credit-card:before{content:\"\\e083\"}.sap-icon--create-entry-time:before{content:\"\\e084\"}.sap-icon--contacts:before{content:\"\\e085\"}.sap-icon--compare:before{content:\"\\e086\"}.sap-icon--clinical-order:before{content:\"\\e087\"}.sap-icon--chain-link:before{content:\"\\e088\"}.sap-icon--pull-down:before{content:\"\\e089\"}.sap-icon--cargo-train:before{content:\"\\e08a\"}.sap-icon--car-rental:before{content:\"\\e08b\"}.sap-icon--business-card:before{content:\"\\e08c\"}.sap-icon--bar-code:before{content:\"\\e08d\"}.sap-icon--folder-blank:before{content:\"\\e08e\"}.sap-icon--passenger-train:before{content:\"\\e08f\"}.sap-icon--question-mark:before{content:\"\\e090\"}.sap-icon--world:before{content:\"\\e091\"}.sap-icon--iphone:before{content:\"\\e092\"}.sap-icon--ipad:before{content:\"\\e093\"}.sap-icon--warning:before{content:\"\\e094\"}.sap-icon--sort:before{content:\"\\e095\"}.sap-icon--course-book:before{content:\"\\e096\"}.sap-icon--course-program:before{content:\"\\e097\"}.sap-icon--add-coursebook:before{content:\"\\e098\"}.sap-icon--print:before{content:\"\\e099\"}.sap-icon--save:before{content:\"\\e09a\"}.sap-icon--play:before{content:\"\\e09b\"}.sap-icon--pause:before{content:\"\\e09c\"}.sap-icon--record:before{content:\"\\e09d\"}.sap-icon--response:before{content:\"\\e09e\"}.sap-icon--pushpin-on:before{content:\"\\e09f\"}.sap-icon--pushpin-off:before{content:\"\\e0a0\"}.sap-icon--unfavorite:before{content:\"\\e0a1\"}.sap-icon--learning-assistant:before{content:\"\\e0a2\"}.sap-icon--timesheet:before{content:\"\\e0a3\"}.sap-icon--time-entry-request:before{content:\"\\e0a4\"}.sap-icon--list:before{content:\"\\e0a5\"}.sap-icon--action-settings:before{content:\"\\e0a6\"}.sap-icon--share:before{content:\"\\e0a7\"}.sap-icon--feed:before{content:\"\\e0a8\"}.sap-icon--role:before{content:\"\\e0a9\"}.sap-icon--flag:before{content:\"\\e0aa\"}.sap-icon--post:before{content:\"\\e0ab\"}.sap-icon--inspect:before{content:\"\\e0ac\"}.sap-icon--inspect-down:before{content:\"\\e0ad\"}.sap-icon--appointment-2:before{content:\"\\e0ae\"}.sap-icon--target-group:before{content:\"\\e0af\"}.sap-icon--marketing-campaign:before{content:\"\\e0b0\"}.sap-icon--message-error:before,.sap-icon--notification:before{content:\"\\e0b1\"}.sap-icon--comment:before{content:\"\\e0b2\"}.sap-icon--shipping-status:before{content:\"\\e0b3\"}.sap-icon--collaborate:before{content:\"\\e0b4\"}.sap-icon--shortcut:before{content:\"\\e0b5\"}.sap-icon--lead-outdated:before{content:\"\\e0b6\"}.sap-icon--tools-opportunity:before{content:\"\\e0b7\"}.sap-icon--permission:before{content:\"\\e0b8\"}.sap-icon--supplier:before{content:\"\\e0b9\"}.sap-icon--table-view:before{content:\"\\e0ba\"}.sap-icon--table-chart:before{content:\"\\e0bb\"}.sap-icon--switch-views:before{content:\"\\e0bc\"}.sap-icon--e-learning:before{content:\"\\e0bd\"}.sap-icon--manager:before{content:\"\\e0be\"}.sap-icon--switch-classes:before{content:\"\\e0bf\"}.sap-icon--simple-payment:before{content:\"\\e0c0\"}.sap-icon--signature:before{content:\"\\e0c1\"}.sap-icon--sales-order-item:before{content:\"\\e0c2\"}.sap-icon--sales-order:before{content:\"\\e0c3\"}.sap-icon--request:before{content:\"\\e0c4\"}.sap-icon--receipt:before{content:\"\\e0c5\"}.sap-icon--puzzle:before{content:\"\\e0c6\"}.sap-icon--process:before{content:\"\\e0c7\"}.sap-icon--private:before{content:\"\\e0c8\"}.sap-icon--popup-window:before{content:\"\\e0c9\"}.sap-icon--person-placeholder:before{content:\"\\e0ca\"}.sap-icon--per-diem:before{content:\"\\e0cb\"}.sap-icon--paper-plane:before{content:\"\\e0cc\"}.sap-icon--paid-leave:before{content:\"\\e0cd\"}.sap-icon--pdf-reader:before{content:\"\\e0ce\"}.sap-icon--overview-chart:before{content:\"\\e0cf\"}.sap-icon--overlay:before{content:\"\\e0d0\"}.sap-icon--org-chart:before{content:\"\\e0d1\"}.sap-icon--number-sign:before{content:\"\\e0d2\"}.sap-icon--notification-2:before{content:\"\\e0d3\"}.sap-icon--my-sales-order:before{content:\"\\e0d4\"}.sap-icon--meal:before{content:\"\\e0d5\"}.sap-icon--loan:before{content:\"\\e0d6\"}.sap-icon--order-status:before{content:\"\\e0d7\"}.sap-icon--customer-order-entry:before{content:\"\\e0d8\"}.sap-icon--performance:before{content:\"\\e0d9\"}.sap-icon--menu:before{content:\"\\e0da\"}.sap-icon--employee-lookup:before{content:\"\\e0db\"}.sap-icon--education:before{content:\"\\e0dc\"}.sap-icon--customer-briefing:before{content:\"\\e0dd\"}.sap-icon--customer-and-contacts:before{content:\"\\e0de\"}.sap-icon--my-view:before{content:\"\\e0df\"}.sap-icon--accelerated:before{content:\"\\e0e0\"}.sap-icon--to-be-reviewed:before{content:\"\\e0e1\"}.sap-icon--warning2:before{content:\"\\e0e2\"}.sap-icon--feeder-arrow:before{content:\"\\e0e3\"}.sap-icon--quality-issue:before{content:\"\\e0e4\"}.sap-icon--workflow-tasks:before{content:\"\\e0e5\"}.sap-icon--create:before{content:\"\\e0e6\"}.sap-icon--home-share:before{content:\"\\e0e7\"}.sap-icon--globe:before{content:\"\\e0e8\"}.sap-icon--tags:before{content:\"\\e0e9\"}.sap-icon--work-history:before{content:\"\\e0ea\"}.sap-icon--x-ray:before{content:\"\\e0eb\"}.sap-icon--wounds-doc:before{content:\"\\e0ec\"}.sap-icon--web-cam:before{content:\"\\e0ed\"}.sap-icon--waiver:before{content:\"\\e0ee\"}.sap-icon--vertical-bar-chart:before{content:\"\\e0ef\"}.sap-icon--upstacked-chart:before{content:\"\\e0f0\"}.sap-icon--trip-report:before{content:\"\\e0f1\"}.sap-icon--microphone:before{content:\"\\e0f2\"}.sap-icon--unpaid-leave:before{content:\"\\e0f3\"}.sap-icon--tree:before{content:\"\\e0f4\"}.sap-icon--toaster-up:before{content:\"\\e0f5\"}.sap-icon--toaster-top:before{content:\"\\e0f6\"}.sap-icon--toaster-down:before{content:\"\\e0f7\"}.sap-icon--time-account:before{content:\"\\e0f8\"}.sap-icon--theater:before{content:\"\\e0f9\"}.sap-icon--taxi:before{content:\"\\e0fa\"}.sap-icon--subway-train:before{content:\"\\e0fb\"}.sap-icon--study-leave:before{content:\"\\e0fc\"}.sap-icon--stethoscope:before{content:\"\\e0fd\"}.sap-icon--step:before{content:\"\\e0fe\"}.sap-icon--sonography:before{content:\"\\e0ff\"}.sap-icon--soccor:before{content:\"\\e100\"}.sap-icon--physical-activity:before{content:\"\\e101\"}.sap-icon--pharmacy:before{content:\"\\e102\"}.sap-icon--official-service:before{content:\"\\e103\"}.sap-icon--offsite-work:before{content:\"\\e104\"}.sap-icon--nutrition-activity:before{content:\"\\e105\"}.sap-icon--newspaper:before{content:\"\\e106\"}.sap-icon--monitor-payments:before{content:\"\\e107\"}.sap-icon--map-2:before{content:\"\\e108\"}.sap-icon--machine:before{content:\"\\e109\"}.sap-icon--mri-scan:before{content:\"\\e10a\"}.sap-icon--end-user-experience-monitoring:before{content:\"\\e10b\"}.sap-icon--unwired:before{content:\"\\e10c\"}.sap-icon--customer-financial-fact-sheet:before{content:\"\\e10d\"}.sap-icon--retail-store-manager:before{content:\"\\e10e\"}.sap-icon--Netweaver-business-client:before{content:\"\\e10f\"}.sap-icon--electronic-medical-record:before{content:\"\\e110\"}.sap-icon--eam-work-order:before{content:\"\\e111\"}.sap-icon--customer-view:before{content:\"\\e112\"}.sap-icon--crm-service-manager:before{content:\"\\e113\"}.sap-icon--crm-sales:before{content:\"\\e114\"}.sap-icon--widgets:before{content:\"\\e115\"}.sap-icon--commission-check:before{content:\"\\e116\"}.sap-icon--collections-insight:before{content:\"\\e117\"}.sap-icon--clinical-task-tracker:before{content:\"\\e118\"}.sap-icon--citizen-connect:before{content:\"\\e119\"}.sap-icon--cart-approval:before{content:\"\\e11a\"}.sap-icon--capital-projects:before{content:\"\\e11b\"}.sap-icon--bo-strategy-management:before{content:\"\\e11c\"}.sap-icon--business-objects-mobile:before{content:\"\\e11d\"}.sap-icon--business-objects-explorer:before{content:\"\\e11e\"}.sap-icon--business-objects-experience:before{content:\"\\e11f\"}.sap-icon--bbyd-dashboard:before{content:\"\\e120\"}.sap-icon--bbyd-active-sales:before{content:\"\\e121\"}.sap-icon--business-by-design:before{content:\"\\e122\"}.sap-icon--business-one:before{content:\"\\e123\"}.sap-icon--sap-box:before{content:\"\\e124\"}.sap-icon--manager-insight:before{content:\"\\e125\"}.sap-icon--accounting-document-verification:before{content:\"\\e126\"}.sap-icon--hr-approval:before{content:\"\\e127\"}.sap-icon--idea-wall:before{content:\"\\e128\"}.sap-icon--Chart-Tree-Map:before{content:\"\\e129\"}.sap-icon--cart-5:before{content:\"\\e12a\"}.sap-icon--cart-4:before{content:\"\\e12b\"}.sap-icon--wallet:before{content:\"\\e12c\"}.sap-icon--vehicle-repair:before{content:\"\\e12d\"}.sap-icon--upload:before{content:\"\\e12e\"}.sap-icon--unlocked:before{content:\"\\e12f\"}.sap-icon--umbrella:before{content:\"\\e130\"}.sap-icon--travel-request:before{content:\"\\e131\"}.sap-icon--travel-expense-report:before{content:\"\\e132\"}.sap-icon--travel-itinerary:before{content:\"\\e133\"}.sap-icon--time-overtime:before{content:\"\\e134\"}.sap-icon--thing-type:before{content:\"\\e135\"}.sap-icon--technical-object:before{content:\"\\e136\"}.sap-icon--tag:before{content:\"\\e137\"}.sap-icon--syringe:before{content:\"\\e138\"}.sap-icon--syntax:before{content:\"\\e139\"}.sap-icon--suitcase:before{content:\"\\e13a\"}.sap-icon--simulate:before{content:\"\\e13b\"}.sap-icon--shield:before{content:\"\\e13c\"}.sap-icon--share-2:before{content:\"\\e13d\"}.sap-icon--sales-quote:before{content:\"\\e13e\"}.sap-icon--repost:before{content:\"\\e13f\"}.sap-icon--provision:before{content:\"\\e140\"}.sap-icon--projector:before{content:\"\\e141\"}.sap-icon--add-product:before{content:\"\\e142\"}.sap-icon--pipeline-analysis:before{content:\"\\e143\"}.sap-icon--add-photo:before{content:\"\\e144\"}.sap-icon--palette:before{content:\"\\e145\"}.sap-icon--nurse:before{content:\"\\e146\"}.sap-icon--sales-notification:before{content:\"\\e147\"}.sap-icon--mileage:before{content:\"\\e148\"}.sap-icon--meeting-room:before{content:\"\\e149\"}.sap-icon--media-forward:before{content:\"\\e14a\"}.sap-icon--media-play:before{content:\"\\e14b\"}.sap-icon--media-pause:before{content:\"\\e14c\"}.sap-icon--media-reverse:before{content:\"\\e14d\"}.sap-icon--media-rewind:before{content:\"\\e14e\"}.sap-icon--measurement-document:before{content:\"\\e14f\"}.sap-icon--measuring-point:before{content:\"\\e150\"}.sap-icon--measure:before{content:\"\\e151\"}.sap-icon--map-3:before{content:\"\\e152\"}.sap-icon--locked:before{content:\"\\e153\"}.sap-icon--letter:before{content:\"\\e154\"}.sap-icon--journey-arrive:before{content:\"\\e155\"}.sap-icon--journey-change:before{content:\"\\e156\"}.sap-icon--journey-depart:before{content:\"\\e157\"}.sap-icon--it-system:before{content:\"\\e158\"}.sap-icon--it-instance:before{content:\"\\e159\"}.sap-icon--it-host:before{content:\"\\e15a\"}.sap-icon--iphone-2:before{content:\"\\e15b\"}.sap-icon--ipad-2:before{content:\"\\e15c\"}.sap-icon--inventory:before{content:\"\\e15d\"}.sap-icon--insurance-house:before{content:\"\\e15e\"}.sap-icon--insurance-life:before{content:\"\\e15f\"}.sap-icon--insurance-car:before{content:\"\\e160\"}.sap-icon--initiative:before{content:\"\\e161\"}.sap-icon--incident:before{content:\"\\e162\"}.sap-icon--group-2:before{content:\"\\e163\"}.sap-icon--goal:before{content:\"\\e164\"}.sap-icon--functional-location:before{content:\"\\e165\"}.sap-icon--full-screen:before{content:\"\\e166\"}.sap-icon--form:before{content:\"\\e167\"}.sap-icon--fob-watch:before{content:\"\\e168\"}.sap-icon--blank-tag:before{content:\"\\e169\"}.sap-icon--family-protection:before{content:\"\\e16a\"}.sap-icon--folder:before{content:\"\\e16b\"}.sap-icon--fax-machine:before{content:\"\\e16c\"}.sap-icon--example:before{content:\"\\e16d\"}.sap-icon--eraser:before{content:\"\\e16e\"}.sap-icon--employee-rejections:before{content:\"\\e16f\"}.sap-icon--drop-down-list:before{content:\"\\e170\"}.sap-icon--draw-rectangle:before{content:\"\\e171\"}.sap-icon--document:before{content:\"\\e172\"}.sap-icon--doctor:before{content:\"\\e173\"}.sap-icon--discussion-2:before{content:\"\\e174\"}.sap-icon--discussion:before{content:\"\\e175\"}.sap-icon--dimension:before{content:\"\\e176\"}.sap-icon--customer-and-supplier:before{content:\"\\e177\"}.sap-icon--crop:before{content:\"\\e178\"}.sap-icon--add-contact:before{content:\"\\e179\"}.sap-icon--compare-2:before{content:\"\\e17a\"}.sap-icon--color-fill:before{content:\"\\e17b\"}.sap-icon--collision:before{content:\"\\e17c\"}.sap-icon--curriculum:before{content:\"\\e17d\"}.sap-icon--chart-axis:before{content:\"\\e17e\"}.sap-icon--full-stacked-chart:before{content:\"\\e17f\"}.sap-icon--full-stacked-column-chart:before{content:\"\\e180\"}.sap-icon--vertical-bar-chart-2:before{content:\"\\e181\"}.sap-icon--horizontal-bar-chart-2:before{content:\"\\e182\"}.sap-icon--horizontal-stacked-chart:before{content:\"\\e183\"}.sap-icon--vertical-stacked-chart:before{content:\"\\e184\"}.sap-icon--choropleth-chart:before{content:\"\\e185\"}.sap-icon--geographic-bubble-chart:before{content:\"\\e186\"}.sap-icon--multiple-radar-chart:before{content:\"\\e187\"}.sap-icon--radar-chart:before{content:\"\\e188\"}.sap-icon--crossed-line-chart:before{content:\"\\e189\"}.sap-icon--multiple-line-chart:before{content:\"\\e18a\"}.sap-icon--multiple-bar-chart:before{content:\"\\e18b\"}.sap-icon--line-chart:before{content:\"\\e18c\"}.sap-icon--line-chart-dual-axis:before{content:\"\\e18d\"}.sap-icon--bubble-chart:before{content:\"\\e18e\"}.sap-icon--scatter-chart:before{content:\"\\e18f\"}.sap-icon--multiple-pie-chart:before{content:\"\\e190\"}.sap-icon--column-chart-dual-axis:before{content:\"\\e191\"}.sap-icon--tag-cloud-chart:before{content:\"\\e192\"}.sap-icon--area-chart:before{content:\"\\e193\"}.sap-icon--cause:before{content:\"\\e194\"}.sap-icon--cart-3:before{content:\"\\e195\"}.sap-icon--cart-2:before{content:\"\\e196\"}.sap-icon--bus-public-transport:before{content:\"\\e197\"}.sap-icon--burglary:before{content:\"\\e198\"}.sap-icon--building:before{content:\"\\e199\"}.sap-icon--border:before{content:\"\\e19a\"}.sap-icon--bookmark:before{content:\"\\e19b\"}.sap-icon--badge:before{content:\"\\e19c\"}.sap-icon--attachment-audio:before{content:\"\\e19d\"}.sap-icon--attachment-video:before{content:\"\\e19e\"}.sap-icon--attachment-html:before{content:\"\\e19f\"}.sap-icon--attachment-photo:before{content:\"\\e1a0\"}.sap-icon--attachment-e-pub:before{content:\"\\e1a1\"}.sap-icon--attachment-zip-file:before{content:\"\\e1a2\"}.sap-icon--attachment-text-file:before{content:\"\\e1a3\"}.sap-icon--add-equipment:before{content:\"\\e1a4\"}.sap-icon--add-activity:before{content:\"\\e1a5\"}.sap-icon--activity-individual:before{content:\"\\e1a6\"}.sap-icon--activity-2:before{content:\"\\e1a7\"}.sap-icon--add-activity-2:before{content:\"\\e1a8\"}.sap-icon--activity-items:before{content:\"\\e1a9\"}.sap-icon--activity-assigned-to-goal:before{content:\"\\e1aa\"}.sap-icon--status-completed:before,.sap-icon--status-positive:before{content:\"\\e1ab\"}.sap-icon--status-error:before,.sap-icon--status-negative:before{content:\"\\e1ac\"}.sap-icon--status-inactive:before{content:\"\\e1ad\"}.sap-icon--status-critical:before,.sap-icon--status-in-progress:before{content:\"\\e1ae\"}.sap-icon--blank-tag-2:before{content:\"\\e1af\"}.sap-icon--cart-full:before{content:\"\\e1b0\"}.sap-icon--locate-me:before{content:\"\\e1b1\"}.sap-icon--paging:before{content:\"\\e1b2\"}.sap-icon--company-view:before{content:\"\\e1b3\"}.sap-icon--document-text:before{content:\"\\e1b4\"}.sap-icon--explorer:before{content:\"\\e1b5\"}.sap-icon--personnel-view:before{content:\"\\e1b6\"}.sap-icon--sorting-ranking:before{content:\"\\e1b7\"}.sap-icon--drill-down:before{content:\"\\e1b8\"}.sap-icon--drill-up:before{content:\"\\e1b9\"}.sap-icon--vds-file:before{content:\"\\e1ba\"}.sap-icon--sap-logo-shape:before{content:\"\\e1bb\"}.sap-icon--folder-full:before{content:\"\\e1bc\"}.sap-icon--system-exit:before{content:\"\\e1bd\"}.sap-icon--system-exit-2:before{content:\"\\e1be\"}.sap-icon--close-command-field:before{content:\"\\e1bf\"}.sap-icon--open-command-field:before{content:\"\\e1c0\"}.sap-icon--sys-enter-2:before{content:\"\\e1c1\"}.sap-icon--sys-enter:before{content:\"\\e1c2\"}.sap-icon--sys-help-2:before{content:\"\\e1c3\"}.sap-icon--sys-help:before{content:\"\\e1c4\"}.sap-icon--sys-back:before{content:\"\\e1c5\"}.sap-icon--sys-back-2:before{content:\"\\e1c6\"}.sap-icon--sys-cancel:before{content:\"\\e1c7\"}.sap-icon--sys-cancel-2:before{content:\"\\e1c8\"}.sap-icon--open-folder:before{content:\"\\e1c9\"}.sap-icon--sys-find-next:before{content:\"\\e1ca\"}.sap-icon--sys-find:before{content:\"\\e1cb\"}.sap-icon--sys-monitor:before{content:\"\\e1cc\"}.sap-icon--sys-prev-page:before{content:\"\\e1cd\"}.sap-icon--sys-first-page:before{content:\"\\e1ce\"}.sap-icon--sys-next-page:before{content:\"\\e1cf\"}.sap-icon--sys-last-page:before{content:\"\\e1d0\"}.sap-icon--generate-shortcut:before{content:\"\\e1d1\"}.sap-icon--create-session:before{content:\"\\e1d2\"}.sap-icon--display-more:before{content:\"\\e1d3\"}.sap-icon--enter-more:before{content:\"\\e1d4\"}.sap-icon--zoom-in:before{content:\"\\e1d5\"}.sap-icon--zoom-out:before{content:\"\\e1d6\"}.sap-icon--header:before{content:\"\\e1d7\"}.sap-icon--detail-view:before,.sap-icon--show-edit:before{content:\"\\e1d8\"}.sap-icon--collapse:before{content:\"\\e1d9\"}.sap-icon--expand:before{content:\"\\e1da\"}.sap-icon--positive:before{content:\"\\e1db\"}.sap-icon--negative:before{content:\"\\e1dc\"}.sap-icon--display:before{content:\"\\e1dd\"}.sap-icon--menu2:before{content:\"\\e1de\"}.sap-icon--redo:before{content:\"\\e1df\"}.sap-icon--undo:before{content:\"\\e1e0\"}.sap-icon--navigation-up-arrow:before{content:\"\\e1e1\"}.sap-icon--navigation-down-arrow:before{content:\"\\e1e2\"}.sap-icon--down:before{content:\"\\e1e3\"}.sap-icon--up:before{content:\"\\e1e4\"}.sap-icon--shelf:before{content:\"\\e1e5\"}.sap-icon--background:before{content:\"\\e1e6\"}.sap-icon--resize:before{content:\"\\e1e7\"}.sap-icon--move:before{content:\"\\e1e8\"}.sap-icon--show:before{content:\"\\e1e9\"}.sap-icon--hide:before{content:\"\\e1ea\"}.sap-icon--nav-back:before{content:\"\\e1eb\"}.sap-icon--error:before{content:\"\\e1ec\"}.sap-icon--slim-arrow-right:before{content:\"\\e1ed\"}.sap-icon--slim-arrow-left:before{content:\"\\e1ee\"}.sap-icon--slim-arrow-down:before{content:\"\\e1ef\"}.sap-icon--slim-arrow-up:before{content:\"\\e1f0\"}.sap-icon--forward:before{content:\"\\e1f1\"}.sap-icon--overflow:before{content:\"\\e1f2\"}.sap-icon--value-help:before{content:\"\\e1f3\"}.sap-icon--multiselect:before{content:\"\\e1f4\"}.sap-icon--exitfullscreen:before{content:\"\\e1f5\"}.sap-icon--sys-add:before{content:\"\\e1f6\"}.sap-icon--sys-minus:before{content:\"\\e1f7\"}.sap-icon--dropdown:before{content:\"\\e1f8\"}.sap-icon--expand-group:before{content:\"\\e1f9\"}.sap-icon--vertical-grip:before{content:\"\\e1fa\"}.sap-icon--horizontal-grip:before{content:\"\\e1fb\"}.sap-icon--sort-descending:before{content:\"\\e1fc\"}.sap-icon--sort-ascending:before{content:\"\\e1fd\"}.sap-icon--arrow-down:before{content:\"\\e1fe\"}.sap-icon--legend:before{content:\"\\e1ff\"}.sap-icon--collapse-group:before{content:\"\\e200\"}.sap-icon--message-warning:before{content:\"\\e201\"}.sap-icon--message-information:before{content:\"\\e202\"}.sap-icon--message-success:before{content:\"\\e203\"}.sap-icon--restart:before{content:\"\\e204\"}.sap-icon--stop:before{content:\"\\e205\"}.sap-icon--add-process:before{content:\"\\e206\"}.sap-icon--cancel-maintenance:before{content:\"\\e207\"}.sap-icon--activate:before{content:\"\\e208\"}.sap-icon--resize-horizontal:before{content:\"\\e209\"}.sap-icon--resize-vertical:before{content:\"\\e20a\"}.sap-icon--connected:before{content:\"\\e20b\"}.sap-icon--disconnected:before{content:\"\\e20c\"}.sap-icon--edit-outside:before{content:\"\\e20d\"}.sap-icon--key:before{content:\"\\e20e\"}.sap-icon--minimize:before{content:\"\\e20f\"}.sap-icon--back-to-top:before{content:\"\\e210\"}.sap-icon--hello-world:before{content:\"\\e211\"}.sap-icon--outbox:before{content:\"\\e212\"}.sap-icon--donut-chart:before{content:\"\\e213\"}.sap-icon--heatmap-chart:before{content:\"\\e214\"}.sap-icon--horizontal-bullet-chart:before{content:\"\\e215\"}.sap-icon--vertical-bullet-chart:before{content:\"\\e216\"}.sap-icon--call:before{content:\"\\e217\"}.sap-icon--download-from-cloud:before{content:\"\\e218\"}.sap-icon--upload-to-cloud:before{content:\"\\e219\"}.sap-icon--jam:before{content:\"\\e21a\"}.sap-icon--sap-ui5:before{content:\"\\e21b\"}.sap-icon--message-popup:before{content:\"\\e21c\"}.sap-icon--cloud:before{content:\"\\e21d\"}.sap-icon--horizontal-waterfall-chart:before{content:\"\\e21e\"}.sap-icon--vertical-waterfall-chart:before{content:\"\\e21f\"}.sap-icon--broken-link:before{content:\"\\e220\"}.sap-icon--headset:before{content:\"\\e221\"}.sap-icon--thumb-up:before{content:\"\\e222\"}.sap-icon--thumb-down:before{content:\"\\e223\"}.sap-icon--multiselect-all:before{content:\"\\e224\"}.sap-icon--multiselect-none:before{content:\"\\e225\"}.sap-icon--scissors:before{content:\"\\e226\"}.sap-icon--sound:before{content:\"\\e227\"}.sap-icon--sound-loud:before{content:\"\\e228\"}.sap-icon--sound-off:before{content:\"\\e229\"}.sap-icon--date-time:before{content:\"\\e22a\"}.sap-icon--user-settings:before{content:\"\\e22b\"}.sap-icon--key-user-settings:before{content:\"\\e23c\"}.sap-icon--developer-settings:before{content:\"\\e22d\"}.sap-icon--text-formatting:before{content:\"\\e22e\"}.sap-icon--bold-text:before{content:\"\\e22f\"}.sap-icon--italic-text:before{content:\"\\e230\"}.sap-icon--underline-text:before{content:\"\\e231\"}.sap-icon--text-align-justified:before{content:\"\\e232\"}.sap-icon--text-align-left:before{content:\"\\e233\"}.sap-icon--text-align-center:before{content:\"\\e234\"}.sap-icon--text-align-right:before{content:\"\\e235\"}.sap-icon--bullet-text:before{content:\"\\e236\"}.sap-icon--numbered-text:before{content:\"\\e237\"}.sap-icon--co:before{content:\"\\e238\"}.sap-icon--ui-notifications:before{content:\"\\e239\"}.sap-icon--bell:before{content:\"\\e23a\"}.sap-icon--cancel-share:before{content:\"\\e23b\"}.sap-icon--write-new-document:before{content:\"\\e23c\"}.sap-icon--write-new:before{content:\"\\e23d\"}.sap-icon--cancel:before{content:\"\\e23e\"}.sap-icon--screen-split-one:before{content:\"\\e23f\"}.sap-icon--screen-split-two:before{content:\"\\e240\"}.sap-icon--screen-split-three:before{content:\"\\e241\"}.sap-icon--customize:before{content:\"\\e242\"}.sap-icon--user-edit:before{content:\"\\e243\"}.sap-icon--source-code:before{content:\"\\e244\"}.sap-icon--copy:before{content:\"\\e245\"}.sap-icon--paste:before{content:\"\\e246\"}.sap-icon--line-chart-time-axis:before{content:\"\\e247\"}.sap-icon--clear-filter:before{content:\"\\e248\"}.sap-icon--reset:before{content:\"\\e249\"}.sap-icon--trend-up:before{content:\"\\e24a\"}.sap-icon--trend-down:before{content:\"\\e24b\"}.sap-icon--cursor:before{content:\"\\e24c\"}.sap-icon--add-document:before{content:\"\\e24d\"}.sap-icon--create-form:before{content:\"\\e24e\"}.sap-icon--resize-corner:before{content:\"\\e24f\"}.sap-icon--chevron-phase:before{content:\"\\e250\"}.sap-icon--chevron-phase-2:before{content:\"\\e251\"}.sap-icon--rhombus-milestone:before{content:\"\\e252\"}.sap-icon--rhombus-milestone-2:before{content:\"\\e253\"}.sap-icon--circle-task:before{content:\"\\e254\"}.sap-icon--circle-task-2:before{content:\"\\e255\"}.sap-icon--project-definition-triangle:before{content:\"\\e256\"}.sap-icon--project-definition-triangle-2:before{content:\"\\e257\"}.sap-icon--master-task-triangle:before{content:\"\\e258\"}.sap-icon--master-task-triangle-2:before{content:\"\\e259\"}.sap-icon--program-triangles:before{content:\"\\e25a\"}.sap-icon--program-triangles-2:before{content:\"\\e25b\"}.sap-icon--mirrored-task-circle:before{content:\"\\e25c\"}.sap-icon--mirrored-task-circle-2:before{content:\"\\e25d\"}.sap-icon--checklist-item:before{content:\"\\e25e\"}.sap-icon--checklist-item-2:before{content:\"\\e25f\"}.sap-icon--checklist:before{content:\"\\e260\"}.sap-icon--checklist-2:before{content:\"\\e261\"}.sap-icon--chart-table-view:before{content:\"\\e262\"}.sap-icon--filter-analytics:before{content:\"\\e263\"}.sap-icon--filter-facets:before{content:\"\\e264\"}.sap-icon--filter-fields:before{content:\"\\e265\"}.sap-icon--indent:before{content:\"\\e266\"}.sap-icon--outdent:before{content:\"\\e267\"}.sap-icon--heading-1:before{content:\"\\e268\"}.sap-icon--heading-2:before{content:\"\\e269\"}.sap-icon--heading-3:before{content:\"\\e26a\"}.sap-icon--decrease-line-height:before{content:\"\\e26b\"}.sap-icon--increase-line-height:before{content:\"\\e26c\"}.sap-icon--fx:before{content:\"\\e26d\"}.sap-icon--add-folder:before{content:\"\\e26e\"}.sap-icon--away:before{content:\"\\e26f\"}.sap-icon--busy:before{content:\"\\e270\"}.sap-icon--appear-offline:before{content:\"\\e271\"}.sap-icon--blur:before{content:\"\\e272\"}.sap-icon--pixelate:before{content:\"\\e273\"}.sap-icon--horizontal-combination-chart:before{content:\"\\e274\"}.sap-icon--add-employee:before{content:\"\\e275\"}.sap-icon--text-color:before{content:\"\\e276\"}.sap-icon--browse-folder:before{content:\"\\e277\"}.sap-icon--primary-key:before{content:\"\\e278\"}.sap-icon--two-keys:before{content:\"\\e279\"}.sap-icon--strikethrough:before{content:\"\\e27a\"}.sap-icon--text:before{content:\"\\e27b\"}.sap-icon--responsive:before{content:\"\\e27c\"}.sap-icon--desktop-mobile:before{content:\"\\e27d\"}.sap-icon--table-row:before{content:\"\\e27e\"}.sap-icon--table-column:before{content:\"\\e27f\"}.sap-icon--validate:before{content:\"\\e280\"}.sap-icon--keyboard-and-mouse:before{content:\"\\e281\"}.sap-icon--touch:before{content:\"\\e282\"}.sap-icon--expand-all:before{content:\"\\e283\"}.sap-icon--collapse-all:before{content:\"\\e284\"}.sap-icon--combine:before{content:\"\\e285\"}.sap-icon--split:before{content:\"\\e286\"}.sap-icon--megamenu:before{content:\"\\e287\"}.sap-icon--feedback:before{content:\"\\e288\"}.sap-icon--information:before{content:\"\\e289\"}.sap-icon--s4hana:before{content:\"\\e28a\"}.sap-icon--translate:before{content:\"\\e28b\"}.sap-icon--clear-all:before{content:\"\\e28c\"}.sap-icon--command-line-interfaces:before{content:\"\\e28d\"}.sap-icon--icon-sum:before{content:\"\\e28e\"}.sap-icon--icon-qr-code:before{content:\"\\e28f\"}.sap-icon--space-navigation:before{content:\"\\e290\"}.sap-icon--in-progress:before{content:\"\\e291\"}.sap-icon--not-editable:before{content:\"\\e292\"}.sap-icon--heart:before{content:\"\\e293\"}.sap-icon--heart-2:before{content:\"\\e294\"}.sap-icon--tri-state:before{content:\"\\e295\"}.sap-icon--bookmark-2:before{content:\"\\e296\"}.sap-icon--detail-less:before{content:\"\\e297\"}.sap-icon--detail-more:before{content:\"\\e298\"}.sap-icon--flag-2:before{content:\"\\e299\"}.sap-icon--folder-2:before{content:\"\\e29a\"}.sap-icon--paint-bucket:before{content:\"\\e29b\"}.sap-icon--direction-arrows:before{content:\"\\e29c\"}.sap-icon--binary:before{content:\"\\e29d\"}.sap-icon--female:before{content:\"\\e29e\"}.sap-icon--male:before{content:\"\\e29f\"}.sap-icon--gender-male-and-female:before{content:\"\\e300\"}.sap-icon--rotate:before{content:\"\\e301\"}.sap-icon--biometric-thumb:before{content:\"\\e306\"}.sap-icon--biometric-face:before{content:\"\\e307\"}.sap-icon--people-connected:before{content:\"\\e308\"}.sap-icon--select-appointments:before{content:\"\\e30b\"}.sap-icon--light-mode:before{content:\"\\e309\"}.sap-icon--dark-mode:before{content:\"\\e30a\"}.sap-icon--time-off:before{content:\"\\e30c\"}.sap-icon--add-calendar:before{content:\"\\e30d\"}.sap-icon--currency:before{content:\"\\e30e\"}.sap-icon--bell-2:before{content:\"\\e2a0\"}.sap-icon--accessibility:before{content:\"\\e2a1\"}.sap-icon--high-priority:before{content:\"\\e2a2\"}.sap-icon-businessSuiteInAppSymbols--heart:before{content:\"\\e000\"}.sap-icon-businessSuiteInAppSymbols--quarter:before{content:\"\\e001\"}.sap-icon-businessSuiteInAppSymbols--year:before{content:\"\\e002\"}.sap-icon-businessSuiteInAppSymbols--equalizer:before{content:\"\\e003\"}.sap-icon-businessSuiteInAppSymbols--component:before{content:\"\\e004\"}.sap-icon-businessSuiteInAppSymbols--component-private:before{content:\"\\e005\"}.sap-icon-businessSuiteInAppSymbols--raw-material:before{content:\"\\e006\"}.sap-icon-businessSuiteInAppSymbols--sms:before{content:\"\\e007\"}.sap-icon-businessSuiteInAppSymbols--add-note:before{content:\"\\e008\"}.sap-icon-businessSuiteInAppSymbols--change-time-horizon:before{content:\"\\e009\"}.sap-icon-businessSuiteInAppSymbols--table-chart-customization:before{content:\"\\e00a\"}.sap-icon-businessSuiteInAppSymbols--delegated-important-task:before{content:\"\\e00b\"}.sap-icon-businessSuiteInAppSymbols--forklift:before{content:\"\\e00c\"}.sap-icon-businessSuiteInAppSymbols--coins:before{content:\"\\e00d\"}.sap-icon-businessSuiteInAppSymbols--filter-menu:before{content:\"\\e00e\"}.sap-icon-businessSuiteInAppSymbols--target-to-date:before{content:\"\\e00f\"}.sap-icon-businessSuiteInAppSymbols--program:before{content:\"\\e010\"}.sap-icon-businessSuiteInAppSymbols--phase:before{content:\"\\e011\"}.sap-icon-businessSuiteInAppSymbols--checklist:before{content:\"\\e012\"}.sap-icon-businessSuiteInAppSymbols--mirrored-task:before{content:\"\\e013\"}.sap-icon-businessSuiteInAppSymbols--sub-project:before{content:\"\\e014\"}.sap-icon-businessSuiteInAppSymbols--checklist-item:before{content:\"\\e015\"}.sap-icon-businessSuiteInAppSymbols--adhoc-analysis:before{content:\"\\e016\"}.sap-icon-businessSuiteInAppSymbols--change-analysis:before{content:\"\\e017\"}.sap-icon-businessSuiteInAppSymbols--review-demands:before{content:\"\\e018\"}.sap-icon-businessSuiteInAppSymbols--project-definition:before{content:\"\\e019\"}.sap-icon-businessSuiteInAppSymbols--data-access:before{content:\"\\e01a\"}.sap-icon-businessSuiteInAppSymbols--define-shortage:before{content:\"\\e01b\"}.sap-icon-businessSuiteInAppSymbols--review-supplies:before{content:\"\\e01c\"}.sap-icon-businessSuiteInAppSymbols--change-log:before{content:\"\\e01d\"}.sap-icon-businessSuiteInAppSymbols--priority-1:before{content:\"\\e01e\"}.sap-icon-businessSuiteInAppSymbols--priority-2:before{content:\"\\e01f\"}.sap-icon-businessSuiteInAppSymbols--jam:before{content:\"\\e020\"}.sap-icon-businessSuiteInAppSymbols--milestone:before{content:\"\\e021\"}.sap-icon-businessSuiteInAppSymbols--bulleting-with-numbers:before{content:\"\\e022\"}.sap-icon-businessSuiteInAppSymbols--decrease-indent:before{content:\"\\e023\"}.sap-icon-businessSuiteInAppSymbols--increase-indent:before{content:\"\\e024\"}.sap-icon-businessSuiteInAppSymbols--bold:before{content:\"\\e025\"}.sap-icon-businessSuiteInAppSymbols--italic:before{content:\"\\e026\"}.sap-icon-businessSuiteInAppSymbols--strike-through:before{content:\"\\e027\"}.sap-icon-businessSuiteInAppSymbols--underline:before{content:\"\\e028\"}.sap-icon-businessSuiteInAppSymbols--save-as:before{content:\"\\e029\"}.sap-icon-businessSuiteInAppSymbols--segmentation:before{content:\"\\e02a\"}.sap-icon-businessSuiteInAppSymbols--context-menu:before{content:\"\\e02b\"}.sap-icon-businessSuiteInAppSymbols--snapshot:before{content:\"\\e02c\"}.sap-icon-businessSuiteInAppSymbols--subtraction-b-a:before{content:\"\\e02d\"}.sap-icon-businessSuiteInAppSymbols--subtraction-a-b:before{content:\"\\e02e\"}.sap-icon-businessSuiteInAppSymbols--intersection:before{content:\"\\e02f\"}.sap-icon-businessSuiteInAppSymbols--union:before{content:\"\\e030\"}.sap-icon-businessSuiteInAppSymbols--top:before{content:\"\\e031\"}.sap-icon-businessSuiteInAppSymbols--bottom:before{content:\"\\e032\"}.sap-icon-businessSuiteInAppSymbols--page-up:before{content:\"\\e033\"}.sap-icon-businessSuiteInAppSymbols--page-down:before{content:\"\\e034\"}.sap-icon-businessSuiteInAppSymbols--create-dashboard:before{content:\"\\e035\"}.sap-icon-businessSuiteInAppSymbols--xcelsius-file:before{content:\"\\e036\"}.sap-icon-businessSuiteInAppSymbols--open-folder:before{content:\"\\e037\"}.sap-icon-businessSuiteInAppSymbols--neutral:before{content:\"\\e038\"}.sap-icon-businessSuiteInAppSymbols--split-segmentation:before{content:\"\\e039\"}.sap-icon-businessSuiteInAppSymbols--manage-budget:before{content:\"\\e03a\"}.sap-icon-businessSuiteInAppSymbols--blocked:before{content:\"\\e03b\"}.sap-icon-businessSuiteInAppSymbols--pipette:before{content:\"\\e03c\"}.sap-icon-businessSuiteInAppSymbols--top-recipe:before{content:\"\\e03d\"}.sap-icon-businessSuiteInAppSymbols--recipe:before{content:\"\\e03e\"}.sap-icon-businessSuiteInAppSymbols--ingredients:before{content:\"\\e03f\"}.sap-icon-businessSuiteInAppSymbols--multiple-charts:before{content:\"\\e040\"}.sap-icon-businessSuiteInAppSymbols--descending-bars:before{content:\"\\e041\"}.sap-icon-businessSuiteInAppSymbols--descending-stacked-bars:before{content:\"\\e042\"}.sap-icon-businessSuiteInAppSymbols--scatter-plot:before{content:\"\\e043\"}.sap-icon-businessSuiteInAppSymbols--spill:before{content:\"\\e044\"}.sap-icon-businessSuiteInAppSymbols--fire:before{content:\"\\e045\"}.sap-icon-businessSuiteInAppSymbols--stratification:before{content:\"\\e046\"}.sap-icon-businessSuiteInAppSymbols--relationship:before{content:\"\\e047\"}.sap-icon-businessSuiteInAppSymbols--margin-decomposition:before{content:\"\\e048\"}.sap-icon-businessSuiteInAppSymbols--control-group:before{content:\"\\e049\"}.sap-icon-businessSuiteInAppSymbols--comparison-chart:before{content:\"\\e04a\"}.sap-icon-businessSuiteInAppSymbols--responsible-area:before{content:\"\\e04b\"}.sap-icon-businessSuiteInAppSymbols--increase:before{content:\"\\e04c\"}.sap-icon-businessSuiteInAppSymbols--decrease:before{content:\"\\e04d\"}.sap-icon-businessSuiteInAppSymbols--current-stock:before{content:\"\\e04e\"}.sap-icon-businessSuiteInAppSymbols--expedite:before{content:\"\\e04f\"}.sap-icon-businessSuiteInAppSymbols--postpone:before{content:\"\\e050\"}.sap-icon-businessSuiteInAppSymbols--approved:before{content:\"\\e051\"}.sap-icon-businessSuiteInAppSymbols--partially-delivered:before{content:\"\\e052\"}.sap-icon-businessSuiteInAppSymbols--line-bar-chart:before{content:\"\\e053\"}.sap-icon-businessSuiteInAppSymbols--expand-all:before{content:\"\\e054\"}.sap-icon-businessSuiteInAppSymbols--submission:before{content:\"\\e055\"}.sap-icon-businessSuiteInAppSymbols--change-request:before{content:\"\\e056\"}.sap-icon-businessSuiteInAppSymbols--column-unselected:before{content:\"\\e057\"}.sap-icon-businessSuiteInAppSymbols--column-selected:before{content:\"\\e058\"}.sap-icon-businessSuiteInAppSymbols--row-unselected:before{content:\"\\e059\"}.sap-icon-businessSuiteInAppSymbols--row-selected:before{content:\"\\e05a\"}.sap-icon-businessSuiteInAppSymbols--stock-requirements:before{content:\"\\e05b\"}.sap-icon-businessSuiteInAppSymbols--gender-male-and-female:before{content:\"\\e05c\"}.sap-icon-businessSuiteInAppSymbols--marital-status:before{content:\"\\e05d\"}.sap-icon-businessSuiteInAppSymbols--birthday:before{content:\"\\e05e\"}.sap-icon-businessSuiteInAppSymbols--classification:before{content:\"\\e05f\"}.sap-icon-businessSuiteInAppSymbols--marked-for-deletion:before{content:\"\\e060\"}.sap-icon-businessSuiteInAppSymbols--bullet-chart:before{content:\"\\e061\"}.sap-icon-businessSuiteInAppSymbols--remove-filter:before{content:\"\\e062\"}.sap-icon-businessSuiteInAppSymbols--bank-account:before{content:\"\\e063\"}.sap-icon-businessSuiteInAppSymbols--savings-account:before{content:\"\\e064\"}.sap-icon-businessSuiteInAppSymbols--debit-card:before{content:\"\\e065\"}.sap-icon-businessSuiteInAppSymbols--vip-customer:before{content:\"\\e066\"}.sap-icon-businessSuiteInAppSymbols--undesirable-customer:before{content:\"\\e067\"}.sap-icon-businessSuiteInAppSymbols--answered-change-request:before{content:\"\\e068\"}.sap-icon-businessSuiteInAppSymbols--collected-change-request:before{content:\"\\e069\"}.sap-icon-businessSuiteInAppSymbols--draw-freehand:before{content:\"\\e06a\"}.sap-icon-businessSuiteInAppSymbols--draw-circle:before{content:\"\\e06b\"}.sap-icon-businessSuiteInAppSymbols--completed:before{content:\"\\e06c\"}.sap-icon-businessSuiteInAppSymbols--answered:before{content:\"\\e06d\"}.sap-icon-businessSuiteInAppSymbols--traffic-cone:before{content:\"\\e06e\"}.sap-icon-businessSuiteInAppSymbols--traffic-lights:before{content:\"\\e06f\"}.sap-icon-businessSuiteInAppSymbols--container:before{content:\"\\e070\"}.sap-icon-businessSuiteInAppSymbols--container-loading:before{content:\"\\e071\"}.sap-icon-businessSuiteInAppSymbols--traffic-jam:before{content:\"\\e072\"}.sap-icon-businessSuiteInAppSymbols--products:before{content:\"\\e073\"}.sap-icon-businessSuiteInAppSymbols--sidepanel:before{content:\"\\e074\"}.sap-icon-businessSuiteInAppSymbols--split-screen:before{content:\"\\e075\"}.sap-icon-businessSuiteInAppSymbols--truck-driver:before{content:\"\\e076\"}.sap-icon-businessSuiteInAppSymbols--keep-segment:before{content:\"\\e077\"}.sap-icon-businessSuiteInAppSymbols--exclude-segment:before{content:\"\\e078\"}.sap-icon-businessSuiteInAppSymbols--separate-segments:before{content:\"\\e079\"}.sap-icon-businessSuiteInAppSymbols--distribute-segments:before{content:\"\\e07a\"}.sap-icon-businessSuiteInAppSymbols--next-open-item:before{content:\"\\e07b\"}.sap-icon-businessSuiteInAppSymbols--where-used:before{content:\"\\e07c\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery:before{content:\"\\e07d\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery-inactive:before{content:\"\\e07e\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery-active:before{content:\"\\e07f\"}.sap-icon-businessSuiteInAppSymbols--target:before{content:\"\\e080\"}.sap-icon-businessSuiteInAppSymbols--source:before{content:\"\\e081\"}.sap-icon-businessSuiteInAppSymbols--material:before{content:\"\\e082\"}.sap-icon-businessSuiteInAppSymbols--due-date:before{content:\"\\e083\"}.sap-icon-businessSuiteInAppSymbols--overdue:before{content:\"\\e084\"}.sap-icon-businessSuiteInAppSymbols--set-as-default:before{content:\"\\e085\"}.sap-icon-businessSuiteInAppSymbols--face-very-bad:before{content:\"\\e086\"}.sap-icon-businessSuiteInAppSymbols--face-bad:before{content:\"\\e087\"}.sap-icon-businessSuiteInAppSymbols--face-skeptical:before{content:\"\\e088\"}.sap-icon-businessSuiteInAppSymbols--face-neutral:before{content:\"\\e089\"}.sap-icon-businessSuiteInAppSymbols--face-astonished:before{content:\"\\e08a\"}.sap-icon-businessSuiteInAppSymbols--face-happy:before{content:\"\\e08b\"}.sap-icon-businessSuiteInAppSymbols--face-very-happy:before{content:\"\\e08c\"}.sap-icon-businessSuiteInAppSymbols--face-awful:before{content:\"\\e08d\"}.sap-icon-businessSuiteInAppSymbols--face-devastated:before{content:\"\\e08e\"}.sap-icon-businessSuiteInAppSymbols--face-okey-dokey:before{content:\"\\e08f\"}.sap-icon-businessSuiteInAppSymbols--alarm:before{content:\"\\e090\"}.sap-icon-businessSuiteInAppSymbols--activate:before{content:\"\\e091\"}.sap-icon-businessSuiteInAppSymbols--segment-preview-reference-objects:before{content:\"\\e092\"}.sap-icon-businessSuiteInAppSymbols--radius:before{content:\"\\e093\"}.sap-icon-businessSuiteInAppSymbols--polygone-black:before{content:\"\\e094\"}.sap-icon-businessSuiteInAppSymbols--polygone-white:before{content:\"\\e095\"}.sap-icon-businessSuiteInAppSymbols--ploygone:before{content:\"\\e096\"}.sap-icon-businessSuiteInAppSymbols--no-filter:before{content:\"\\e097\"}.sap-icon-businessSuiteInAppSymbols--grip:before{content:\"\\e098\"}.sap-icon-businessSuiteInAppSymbols--water:before{content:\"\\e09a\"}.sap-icon-businessSuiteInAppSymbols--gas:before{content:\"\\e09b\"}.sap-icon-businessSuiteInAppSymbols--liquid:before{content:\"\\e09c\"}.sap-icon-businessSuiteInAppSymbols--time-deposit:before{content:\"\\e09d\"}.sap-icon-businessSuiteInAppSymbols--early-widthdrawal-for-time-deposits:before{content:\"\\e09e\"}.sap-icon-businessSuiteInAppSymbols--truck-load:before{content:\"\\e0e8\"}.sap-icon-businessSuiteInAppSymbols--truck-unload:before{content:\"\\e0e9\"}.sap-icon-businessSuiteInAppSymbols--truck-load-unload:before{content:\"\\e0ea\"}.sap-icon-businessSuiteInAppSymbols--pharmacy:before{content:\"\\e0eb\"}.sap-icon-businessSuiteInAppSymbols--medicine-syrup:before{content:\"\\e0ec\"}.sap-icon-businessSuiteInAppSymbols--reminder:before{content:\"\\e0ed\"}.sap-icon-businessSuiteInAppSymbols--medicine-pill:before{content:\"\\e0ee\"}.sap-icon-businessSuiteInAppSymbols--medicine-ointment:before{content:\"\\e0ef\"}.sap-icon-businessSuiteInAppSymbols--medicine-drops:before{content:\"\\e0f0\"}.sap-icon-businessSuiteInAppSymbols--blood-test:before{content:\"\\e0f1\"}.sap-icon-businessSuiteInAppSymbols--temperature:before{content:\"\\e0f2\"}.sap-icon-businessSuiteInAppSymbols--medicine-inhaler:before{content:\"\\e0f3\"}.sap-icon-businessSuiteInAppSymbols--foot-steps:before{content:\"\\e0f4\"}.sap-icon-businessSuiteInAppSymbols--weight:before{content:\"\\e0f5\"}.sap-icon-businessSuiteInAppSymbols--health-tracking:before{content:\"\\e0f6\"}.sap-icon-businessSuiteInAppSymbols--blood-pressure:before{content:\"\\e0f7\"}.sap-icon-businessSuiteInAppSymbols--immunization:before{content:\"\\e0f8\"}.sap-icon-businessSuiteInAppSymbols--allergies:before{content:\"\\e0f9\"}.sap-icon-businessSuiteInAppSymbols--rescheduling2:before{content:\"\\e0fa\"}.sap-icon-businessSuiteInAppSymbols--resequencing2:before{content:\"\\e0fb\"}.sap-icon-businessSuiteInAppSymbols--no-time-change:before{content:\"\\e0fc\"}.sap-icon-businessSuiteInAppSymbols--time-change:before{content:\"\\e0fd\"}.sap-icon-businessSuiteInAppSymbols--smart-matcher:before{content:\"\\e0fe\"}.sap-icon-businessSuiteInAppSymbols--legal-section:before{content:\"\\e10a\"}.sap-icon-businessSuiteInAppSymbols--causes:before{content:\"\\e10b\"}.sap-icon-businessSuiteInAppSymbols--effects:before{content:\"\\e10c\"}.sap-icon-businessSuiteInAppSymbols--shared-by-me:before{content:\"\\e10d\"}.sap-icon-businessSuiteInAppSymbols--shared-with-me:before{content:\"\\e10e\"}.sap-icon-businessSuiteInAppSymbols--alert-groups:before{content:\"\\e111\"}.sap-icon-businessSuiteInAppSymbols--function-alert:before{content:\"\\e112\"}.sap-icon-businessSuiteInAppSymbols--function-hierarchy:before{content:\"\\e113\"}.sap-icon-businessSuiteInAppSymbols--rfid:before{content:\"\\e114\"}.sap-icon-businessSuiteInAppSymbols--input:before{content:\"\\e115\"}.sap-icon-businessSuiteInAppSymbols--software-item:before{content:\"\\e116\"}.sap-icon-businessSuiteInAppSymbols--product-view:before{content:\"\\e117\"}.sap-icon-businessSuiteInAppSymbols--software-item-variant:before{content:\"\\e118\"}.sap-icon-businessSuiteInAppSymbols--lighthouse:before{content:\"\\e119\"}.sap-icon-businessSuiteInAppSymbols--demand-unit:before{content:\"\\e11a\"}.sap-icon-businessSuiteInAppSymbols--fma-management:before{content:\"\\e11b\"}.sap-icon-businessSuiteInAppSymbols--fma-validation:before{content:\"\\e11c\"}.sap-icon-businessSuiteInAppSymbols--fma-analytics:before{content:\"\\e11d\"}.sap-icon-businessSuiteInAppSymbols--class:before{content:\"\\e11e\"}.sap-icon-businessSuiteInAppSymbols--overview:before{content:\"\\e11f\"}.sap-icon-businessSuiteInAppSymbols--production:before{content:\"\\e120\"}.sap-icon-businessSuiteInAppSymbols--subclass:before{content:\"\\e121\"}.sap-icon-businessSuiteInAppSymbols--variant-configuration:before{content:\"\\e122\"}.sap-icon-businessSuiteInAppSymbols--sum:before{content:\"\\e123\"}.sap-icon-businessSuiteInAppSymbols--empty-trailer:before{content:\"\\e12f\"}.sap-icon-businessSuiteInAppSymbols--door:before{content:\"\\e130\"}.sap-icon-businessSuiteInAppSymbols--loading-point:before{content:\"\\e131\"}.sap-icon-businessSuiteInAppSymbols--stock-warehouse:before{content:\"\\e132\"}.sap-icon-businessSuiteInAppSymbols--gate:before{content:\"\\e133\"}.sap-icon-businessSuiteInAppSymbols--timeseries-waterfall-chart:before{content:\"\\e134\"}.sap-icon-businessSuiteInAppSymbols--stages-warning:before{content:\"\\e138\"}.sap-icon-businessSuiteInAppSymbols--empty-warning:before{content:\"\\e139\"}.sap-icon-businessSuiteInAppSymbols--move-folder:before{content:\"\\e169\"}.sap-icon-businessSuiteInAppSymbols--remove-folder:before{content:\"\\e16a\"}.sap-icon-businessSuiteInAppSymbols--match-case:before{content:\"\\e16b\"}.sap-icon-businessSuiteInAppSymbols--match-whole-word:before{content:\"\\e16c\"}.sap-icon-businessSuiteInAppSymbols--remove-total:before{content:\"\\e16d\"}.sap-icon-businessSuiteInAppSymbols--after-total:before{content:\"\\e16e\"}.sap-icon-businessSuiteInAppSymbols--before-total:before{content:\"\\e16f\"}.sap-icon-businessSuiteInAppSymbols--workbook-filter:before{content:\"\\e170\"}.sap-icon-businessSuiteInAppSymbols--icon-update-filter:before{content:\"\\e171\"}.sap-icon-businessSuiteInAppSymbols--cell-lock:before{content:\"\\e172\"}.sap-icon-businessSuiteInAppSymbols--max-container:before{content:\"\\e17b\"}.sap-icon-businessSuiteInAppSymbols--max-interval:before{content:\"\\e17c\"}.sap-icon-businessSuiteInAppSymbols--min-interval:before{content:\"\\e17d\"}.sap-icon-businessSuiteInAppSymbols--cross-order:before{content:\"\\e17e\"}.sap-icon-businessSuiteInAppSymbols--empty-order:before{content:\"\\e17f\"}.sap-icon-businessSuiteInAppSymbols--cross-sequence:before{content:\"\\e180\"}.sap-icon-businessSuiteInAppSymbols--empty-sequence:before{content:\"\\e181\"}.sap-icon-businessSuiteInAppSymbols--cross-union:before{content:\"\\e182\"}.sap-icon-businessSuiteInAppSymbols--empty-union:before{content:\"\\e183\"}.sap-icon-businessSuiteInAppSymbols--cross-target:before{content:\"\\e184\"}.sap-icon-TNT--technicalsystem:before{content:\"\\e000\"}.sap-icon-TNT--systemjava:before{content:\"\\e001\"}.sap-icon-TNT--systemabap:before{content:\"\\e002\"}.sap-icon-TNT--systemrecommendations:before{content:\"\\e003\"}.sap-icon-TNT--system:before{content:\"\\e004\"}.sap-icon-TNT--systemtrex:before{content:\"\\e005\"}.sap-icon-TNT--systemtracks:before{content:\"\\e006\"}.sap-icon-TNT--technicalscenario:before{content:\"\\e007\"}.sap-icon-TNT--technicalinstance:before{content:\"\\e008\"}.sap-icon-TNT--throughput-backlog:before{content:\"\\e009\"}.sap-icon-TNT--batch-processing:before{content:\"\\e00a\"}.sap-icon-TNT--database-consistency:before{content:\"\\e00b\"}.sap-icon-TNT--intermediate-message:before{content:\"\\e00c\"}.sap-icon-TNT--exceptions:before{content:\"\\e00d\"}.sap-icon-TNT--system-HANA:before{content:\"\\e00e\"}.sap-icon-TNT--python:before{content:\"\\e00f\"}.sap-icon-TNT--raise-fault:before{content:\"\\e010\"}.sap-icon-TNT--code1:before{content:\"\\e011\"}.sap-icon-TNT--code2:before{content:\"\\e012\"}.sap-icon-TNT--spike-arrest:before{content:\"\\e013\"}.sap-icon-TNT--verify-API:before{content:\"\\e014\"}.sap-icon-TNT--user:before{content:\"\\e015\"}.sap-icon-TNT--note:before{content:\"\\e016\"}.sap-icon-TNT--throwing-message:before{content:\"\\e017\"}.sap-icon-TNT--catching-message:before{content:\"\\e018\"}.sap-icon-TNT--start-event:before{content:\"\\e019\"}.sap-icon-TNT--end-event:before{content:\"\\e01a\"}.sap-icon-TNT--gateway:before{content:\"\\e01b\"}.sap-icon-TNT--sub-process-marker:before{content:\"\\e01c\"}.sap-icon-TNT--ad-hoc-marker:before{content:\"\\e01d\"}.sap-icon-TNT--manual-task:before{content:\"\\e01e\"}.sap-icon-TNT--send-task:before{content:\"\\e01f\"}.sap-icon-TNT--receive-task:before{content:\"\\e020\"}.sap-icon-TNT--script-task:before{content:\"\\e021\"}.sap-icon-TNT--marquee:before{content:\"\\e022\"}.sap-icon-TNT--data-input-arrow:before{content:\"\\e023\"}.sap-icon-TNT--data-output-arrow:before{content:\"\\e024\"}.sap-icon-TNT--more:before{content:\"\\e025\"}.sap-icon-TNT--pattern:before{content:\"\\e026\"}.sap-icon-TNT--task:before{content:\"\\e027\"}.sap-icon-TNT--arrow:before{content:\"\\e028\"}.sap-icon-TNT--data:before{content:\"\\e029\"}.sap-icon-TNT--data-store:before{content:\"\\e02a\"}.sap-icon-TNT--pool:before{content:\"\\e02b\"}.sap-icon-TNT--swimlane:before{content:\"\\e02c\"}.sap-icon-TNT--select:before{content:\"\\e02d\"}.sap-icon-TNT--cursor:before{content:\"\\e02e\"}.sap-icon-TNT--api:before{content:\"\\e02f\"}.sap-icon-TNT--o-data:before{content:\"\\e030\"}.sap-icon-TNT--javascript:before{content:\"\\e031\"}.sap-icon-TNT--value-mapping:before{content:\"\\e032\"}.sap-icon-TNT--terminate-end-event:before{content:\"\\e033\"}.sap-icon-TNT--parallel-gateway:before{content:\"\\e034\"}.sap-icon-TNT--exclusive-gateway:before{content:\"\\e035\"}.sap-icon-TNT--service-task:before{content:\"\\e036\"}.sap-icon-TNT--workflow-editor:before{content:\"\\e037\"}.sap-icon-TNT--boundary-interrupting:before{content:\"\\e038\"}.sap-icon-TNT--boundary-non-interrupting:before{content:\"\\e039\"}.sap-icon-TNT--block:before{content:\"\\e03a\"}.sap-icon-TNT--constrain-block:before{content:\"\\e03b\"}.sap-icon-TNT--actor:before{content:\"\\e03c\"}.sap-icon-TNT--instance-specification:before{content:\"\\e03d\"}.sap-icon-TNT--value-type:before{content:\"\\e03e\"}.sap-icon-TNT--interface-block:before{content:\"\\e03f\"}.sap-icon-TNT--unit:before{content:\"\\e040\"}.sap-icon-TNT--signal:before{content:\"\\e041\"}.sap-icon-TNT--quantity-kind:before{content:\"\\e042\"}.sap-icon-TNT--item-flow:before{content:\"\\e043\"}.sap-icon-TNT--dependency:before{content:\"\\e044\"}.sap-icon-TNT--generalization:before{content:\"\\e045\"}.sap-icon-TNT--aggregation:before{content:\"\\e046\"}.sap-icon-TNT--composition:before{content:\"\\e047\"}.sap-icon-TNT--association:before{content:\"\\e048\"}.sap-icon-TNT--port:before{content:\"\\e049\"}.sap-icon-TNT--proxy-port:before{content:\"\\e04a\"}.sap-icon-TNT--full-port:before{content:\"\\e04b\"}.sap-icon-TNT--operations:before{content:\"\\e04c\"}.sap-icon-TNT--constrains:before{content:\"\\e04d\"}.sap-icon-TNT--receptions:before{content:\"\\e04e\"}.sap-icon-TNT--references:before{content:\"\\e04f\"}.sap-icon-TNT--parts:before{content:\"\\e050\"}.sap-icon-TNT--flow:before{content:\"\\e051\"}.sap-icon-TNT--values:before{content:\"\\e052\"}.sap-icon-TNT--bill-of-material:before{content:\"\\e053\"}.sap-icon-TNT--document-info-recording:before{content:\"\\e054\"}.sap-icon-TNT--use-case-diagram:before{content:\"\\e055\"}.sap-icon-TNT--bdd-diagram:before{content:\"\\e056\"}.sap-icon-TNT--requirement-diagram:before{content:\"\\e057\"}.sap-icon-TNT--package-diagram:before{content:\"\\e058\"}.sap-icon-TNT--internal-block-diagram:before{content:\"\\e059\"}.sap-icon-TNT--requirement-containment-relationship:before{content:\"\\e05a\"}.sap-icon-TNT--use-case:before{content:\"\\e05b\"}.sap-icon-TNT--use-case-extension-point:before{content:\"\\e05c\"}.sap-icon-TNT--communication-path:before{content:\"\\e05d\"}.sap-icon-TNT--note-connection:before{content:\"\\e05e\"}.sap-icon-TNT--subject:before{content:\"\\e05f\"}.sap-icon-TNT--auto-layout:before{content:\"\\e060\"}.sap-icon-TNT--required-interface:before{content:\"\\e061\"}.sap-icon-TNT--provided-interface:before{content:\"\\e062\"}.sap-icon-TNT--sub-content:before{content:\"\\e063\"}.sap-icon-TNT--connector:before{content:\"\\e064\"}.sap-icon-TNT--local-process-call:before{content:\"\\e065\"}.sap-icon-TNT--aggregator:before{content:\"\\e066\"}.sap-icon-TNT--splitter:before{content:\"\\e067\"}.sap-icon-TNT--converter:before{content:\"\\e068\"}.sap-icon-TNT--content-modifier:before{content:\"\\e069\"}.sap-icon-TNT--message-start-event:before{content:\"\\e06a\"}.sap-icon-TNT--message-end-event:before{content:\"\\e06d\"}.sap-icon-TNT--escalation-end-event:before{content:\"\\e06c\"}.sap-icon-TNT--start-timer-event:before{content:\"\\e06d\"}.sap-icon-TNT--error-start-event:before{content:\"\\e06e\"}.sap-icon-TNT--error-end-event:before{content:\"\\e06f\"}.sap-icon-TNT--content-enricher:before{content:\"\\e070\"}.sap-icon-TNT--realization:before{content:\"\\e071\"}.sap-icon-TNT--interface:before{content:\"\\e072\"}.sap-icon-TNT--usiness-capability:before{content:\"\\e073\"}.sap-icon-TNT--progress-group:before{content:\"\\e074\"}.sap-icon-TNT--value-stream:before{content:\"\\e075\"}.sap-icon-TNT--value-flow:before{content:\"\\e076\"}.sap-icon-TNT--application:before{content:\"\\e077\"}.sap-icon-TNT--etl-job:before{content:\"\\e078\"}.sap-icon-TNT--business-service:before{content:\"\\e079\"}.sap-icon-TNT--application-service:before{content:\"\\e07a\"}.sap-icon-TNT--network-node:before{content:\"\\e07b\"}.sap-icon-TNT--network:before{content:\"\\e07c\"}.sap-icon-TNT--deployment-instance:before{content:\"\\e07d\"}.sap-icon-TNT--intranet:before{content:\"\\e07e\"}.sap-icon-TNT--mobile-network:before{content:\"\\e07f\"}.sap-icon-TNT--private-cloud:before{content:\"\\e080\"}.sap-icon-TNT--antenna:before{content:\"\\e081\"}.sap-icon-TNT--firewall:before{content:\"\\e082\"}.sap-icon-TNT--hub:before{content:\"\\e083\"}.sap-icon-TNT--modem:before{content:\"\\e084\"}.sap-icon-TNT--repeater:before{content:\"\\e085\"}.sap-icon-TNT--router:before{content:\"\\e086\"}.sap-icon-TNT--switch:before{content:\"\\e087\"}.sap-icon-TNT--satellite:before{content:\"\\e088\"}.sap-icon-TNT--system-2:before{content:\"\\e089\"}.sap-icon-TNT--status-activating:before{content:\"\\e08a\"}.sap-icon-TNT--status-suspended:before{content:\"\\e08b\"}.sap-icon-TNT--status-suspending:before{content:\"\\e08c\"}.sap-icon-TNT--status-terminated:before{content:\"\\e08d\"}.sap-icon-TNT--status-terminating:before{content:\"\\e08e\"}.sap-icon-TNT--solution-not-licensed:before{content:\"\\e08f\"}.sap-icon-TNT--clear-all-mapping:before{content:\"\\e090\"}.sap-icon-TNT--map-all-fields:before{content:\"\\e091\"}.sap-icon-TNT--indicator:before{content:\"\\e107\"}.sap-icon-TNT--indicator-active:before{content:\"\\e108\"}.sap-icon-TNT--task-optional:before{content:\"\\e109\"}.sap-icon-TNT--task-done:before{content:\"\\e10a\"}[class*=sap-icon].fd-inline-help__trigger{padding:0 .25rem;outline-offset:-.125rem}\n"] }]
72
+ ], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, styles: ["/*!\n * Fundamental Library Styles v0.30.2-rc.6\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 */[class*=sap-icon]{-webkit-box-sizing:border-box;border:0;box-sizing:border-box;color:var(--sapTextColor);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-style:normal;font-weight:400;forced-color-adjust:none;line-height:var(--sapContent_LineHeight);margin:0;padding:0}[class*=sap-icon]:after,[class*=sap-icon]:before{box-sizing:inherit;font-size:inherit}[class*=sap-icon]:before{font-family:SAP-icons;text-align:center;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none}[class*=sap-icon].sap-icon--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon].sap-icon--background-default:before{background-color:transparent}[class*=sap-icon].sap-icon--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon].sap-icon--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon].sap-icon--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon].sap-icon--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon].sap-icon--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon].sap-icon--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon].sap-icon--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon].sap-icon--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon].sap-icon--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon].sap-icon--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon].sap-icon--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon].sap-icon--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon].sap-icon--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon].sap-icon--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon].sap-icon--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon].sap-icon--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon].sap-icon--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon].sap-icon--background-information:before{background-color:var(--sapInformativeElementColor)}[class*=sap-icon].is-focus,[class*=sap-icon]:focus{outline-color:var(--sapContent_FocusColor);outline-style:var(--sapContent_FocusStyle);outline-width:var(--sapContent_FocusWidth)}[class*=sap-icon-businessSuiteInAppSymbols]:before{font-family:BusinessSuiteInAppSymbols}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-default:before{background-color:transparent}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon-businessSuiteInAppSymbols].sap-icon-businessSuiteInAppSymbols--background-information:before{background-color:var(--sapInformativeElementColor)}[class*=sap-icon-TNT]:before{font-family:SAP-icons-TNT}[class*=sap-icon-TNT].sap-icon-TNT--color-default{color:var(--sapContent_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-default:before{background-color:transparent}[class*=sap-icon-TNT].sap-icon-TNT--color-contrast{color:var(--sapContent_ContrastIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-contrast:before{background-color:var(--sapContent_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-non-interactive{color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-non-interactive:before{background-color:var(--sapContent_NonInteractiveIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-tile{color:var(--sapTile_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-tile:before{background-color:var(--sapTile_IconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-marker{color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-marker:before{background-color:var(--sapContent_MarkerIconColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-critical{color:var(--sapCriticalElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-critical:before{background-color:var(--sapCriticalElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-negative{color:var(--sapNegativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-negative:before{background-color:var(--sapNegativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-neutral{color:var(--sapNeutralElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-neutral:before{background-color:var(--sapNeutralElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-positive{color:var(--sapPositiveElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-positive:before{background-color:var(--sapPositiveElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--color-information{color:var(--sapInformativeElementColor)}[class*=sap-icon-TNT].sap-icon-TNT--background-information:before{background-color:var(--sapInformativeElementColor)}.sap-icon--accidental-leave:before{content:\"\\e000\"}.sap-icon--account:before{content:\"\\e001\"}.sap-icon--wrench:before{content:\"\\e002\"}.sap-icon--windows-doors:before{content:\"\\e003\"}.sap-icon--washing-machine:before{content:\"\\e004\"}.sap-icon--visits:before{content:\"\\e005\"}.sap-icon--video:before{content:\"\\e006\"}.sap-icon--travel-expense:before{content:\"\\e007\"}.sap-icon--temperature:before{content:\"\\e008\"}.sap-icon--task:before{content:\"\\e009\"}.sap-icon--synchronize:before{content:\"\\e00a\"}.sap-icon--survey:before{content:\"\\e00b\"}.sap-icon--settings:before{content:\"\\e00c\"}.sap-icon--search:before{content:\"\\e00d\"}.sap-icon--sales-document:before{content:\"\\e00e\"}.sap-icon--retail-store:before{content:\"\\e00f\"}.sap-icon--refresh:before{content:\"\\e010\"}.sap-icon--product:before{content:\"\\e011\"}.sap-icon--present:before{content:\"\\e012\"}.sap-icon--ppt-attachment:before{content:\"\\e013\"}.sap-icon--pool:before{content:\"\\e014\"}.sap-icon--pie-chart:before{content:\"\\e015\"}.sap-icon--picture:before{content:\"\\e016\"}.sap-icon--photo-voltaic:before{content:\"\\e017\"}.sap-icon--phone:before{content:\"\\e018\"}.sap-icon--pending:before{content:\"\\e019\"}.sap-icon--pdf-attachment:before{content:\"\\e01a\"}.sap-icon--past:before{content:\"\\e01b\"}.sap-icon--outgoing-call:before{content:\"\\e01c\"}.sap-icon--opportunity:before{content:\"\\e01d\"}.sap-icon--opportunities:before{content:\"\\e01e\"}.sap-icon--notes:before{content:\"\\e01f\"}.sap-icon--money-bills:before{content:\"\\e020\"}.sap-icon--map:before{content:\"\\e021\"}.sap-icon--log:before{content:\"\\e022\"}.sap-icon--line-charts:before{content:\"\\e023\"}.sap-icon--lightbulb:before{content:\"\\e024\"}.sap-icon--leads:before{content:\"\\e025\"}.sap-icon--lead:before{content:\"\\e026\"}.sap-icon--laptop:before{content:\"\\e027\"}.sap-icon--kpi-managing-my-area:before{content:\"\\e028\"}.sap-icon--kpi-corporate-performance:before{content:\"\\e029\"}.sap-icon--incoming-call:before{content:\"\\e02a\"}.sap-icon--inbox:before{content:\"\\e02b\"}.sap-icon--horizontal-bar-chart:before{content:\"\\e02c\"}.sap-icon--history:before{content:\"\\e02d\"}.sap-icon--heating-cooling:before{content:\"\\e02e\"}.sap-icon--gantt-bars:before{content:\"\\e02f\"}.sap-icon--future:before{content:\"\\e030\"}.sap-icon--fridge:before{content:\"\\e031\"}.sap-icon--fallback:before{content:\"\\e032\"}.sap-icon--expense-report:before{content:\"\\e033\"}.sap-icon--excel-attachment:before{content:\"\\e034\"}.sap-icon--energy-saving-lightbulb:before{content:\"\\e035\"}.sap-icon--employee:before{content:\"\\e036\"}.sap-icon--email:before{content:\"\\e037\"}.sap-icon--edit:before{content:\"\\e038\"}.sap-icon--duplicate:before{content:\"\\e039\"}.sap-icon--download:before{content:\"\\e03a\"}.sap-icon--doc-attachment:before{content:\"\\e03b\"}.sap-icon--dishwasher:before{content:\"\\e03c\"}.sap-icon--delete:before{content:\"\\e03d\"}.sap-icon--decline:before{content:\"\\e03e\"}.sap-icon--complete:before{content:\"\\e03f\"}.sap-icon--competitor:before{content:\"\\e040\"}.sap-icon--collections-management:before{content:\"\\e041\"}.sap-icon--chalkboard:before{content:\"\\e042\"}.sap-icon--cart:before{content:\"\\e043\"}.sap-icon--card:before{content:\"\\e044\"}.sap-icon--camera:before{content:\"\\e045\"}.sap-icon--calendar:before{content:\"\\e046\"}.sap-icon--begin:before{content:\"\\e047\"}.sap-icon--basket:before{content:\"\\e048\"}.sap-icon--bar-chart:before{content:\"\\e049\"}.sap-icon--attachment:before{content:\"\\e04a\"}.sap-icon--arrow-top:before{content:\"\\e04b\"}.sap-icon--arrow-right:before{content:\"\\e04c\"}.sap-icon--arrow-left:before{content:\"\\e04d\"}.sap-icon--arrow-bottom:before{content:\"\\e04e\"}.sap-icon--approvals:before{content:\"\\e04f\"}.sap-icon--appointment:before{content:\"\\e050\"}.sap-icon--alphabetical-order:before{content:\"\\e051\"}.sap-icon--along-stacked-chart:before{content:\"\\e052\"}.sap-icon--alert:before{content:\"\\e053\"}.sap-icon--addresses:before{content:\"\\e054\"}.sap-icon--address-book:before{content:\"\\e055\"}.sap-icon--add-filter:before{content:\"\\e056\"}.sap-icon--add-favorite:before{content:\"\\e057\"}.sap-icon--add:before{content:\"\\e058\"}.sap-icon--activities:before{content:\"\\e059\"}.sap-icon--action:before{content:\"\\e05a\"}.sap-icon--accept:before{content:\"\\e05b\"}.sap-icon--hint:before{content:\"\\e05c\"}.sap-icon--group:before{content:\"\\e05d\"}.sap-icon--check-availability:before{content:\"\\e05e\"}.sap-icon--weather-proofing:before{content:\"\\e05f\"}.sap-icon--payment-approval:before{content:\"\\e060\"}.sap-icon--batch-payments:before{content:\"\\e061\"}.sap-icon--bed:before{content:\"\\e062\"}.sap-icon--arobase:before{content:\"\\e063\"}.sap-icon--family-care:before{content:\"\\e064\"}.sap-icon--favorite:before{content:\"\\e065\"}.sap-icon--navigation-right-arrow:before{content:\"\\e066\"}.sap-icon--navigation-left-arrow:before{content:\"\\e067\"}.sap-icon--e-care:before{content:\"\\e068\"}.sap-icon--less:before{content:\"\\e069\"}.sap-icon--lateness:before{content:\"\\e06a\"}.sap-icon--lab:before{content:\"\\e06b\"}.sap-icon--internet-browser:before{content:\"\\e06c\"}.sap-icon--instance:before{content:\"\\e06d\"}.sap-icon--inspection:before{content:\"\\e06e\"}.sap-icon--image-viewer:before{content:\"\\e06f\"}.sap-icon--home:before{content:\"\\e070\"}.sap-icon--grid:before{content:\"\\e071\"}.sap-icon--goalseek:before{content:\"\\e072\"}.sap-icon--general-leave-request:before{content:\"\\e073\"}.sap-icon--create-leave-request:before{content:\"\\e074\"}.sap-icon--flight:before{content:\"\\e075\"}.sap-icon--filter:before{content:\"\\e076\"}.sap-icon--favorite-list:before{content:\"\\e077\"}.sap-icon--factory:before{content:\"\\e078\"}.sap-icon--endoscopy:before{content:\"\\e079\"}.sap-icon--employee-pane:before{content:\"\\e07a\"}.sap-icon--employee-approvals:before{content:\"\\e07b\"}.sap-icon--email-read:before{content:\"\\e07c\"}.sap-icon--electrocardiogram:before{content:\"\\e07d\"}.sap-icon--documents:before{content:\"\\e07e\"}.sap-icon--decision:before{content:\"\\e07f\"}.sap-icon--database:before{content:\"\\e080\"}.sap-icon--customer-history:before{content:\"\\e081\"}.sap-icon--customer:before{content:\"\\e082\"}.sap-icon--credit-card:before{content:\"\\e083\"}.sap-icon--create-entry-time:before{content:\"\\e084\"}.sap-icon--contacts:before{content:\"\\e085\"}.sap-icon--compare:before{content:\"\\e086\"}.sap-icon--clinical-order:before{content:\"\\e087\"}.sap-icon--chain-link:before{content:\"\\e088\"}.sap-icon--pull-down:before{content:\"\\e089\"}.sap-icon--cargo-train:before{content:\"\\e08a\"}.sap-icon--car-rental:before{content:\"\\e08b\"}.sap-icon--business-card:before{content:\"\\e08c\"}.sap-icon--bar-code:before{content:\"\\e08d\"}.sap-icon--folder-blank:before{content:\"\\e08e\"}.sap-icon--passenger-train:before{content:\"\\e08f\"}.sap-icon--question-mark:before{content:\"\\e090\"}.sap-icon--world:before{content:\"\\e091\"}.sap-icon--iphone:before{content:\"\\e092\"}.sap-icon--ipad:before{content:\"\\e093\"}.sap-icon--warning:before{content:\"\\e094\"}.sap-icon--sort:before{content:\"\\e095\"}.sap-icon--course-book:before{content:\"\\e096\"}.sap-icon--course-program:before{content:\"\\e097\"}.sap-icon--add-coursebook:before{content:\"\\e098\"}.sap-icon--print:before{content:\"\\e099\"}.sap-icon--save:before{content:\"\\e09a\"}.sap-icon--play:before{content:\"\\e09b\"}.sap-icon--pause:before{content:\"\\e09c\"}.sap-icon--record:before{content:\"\\e09d\"}.sap-icon--response:before{content:\"\\e09e\"}.sap-icon--pushpin-on:before{content:\"\\e09f\"}.sap-icon--pushpin-off:before{content:\"\\e0a0\"}.sap-icon--unfavorite:before{content:\"\\e0a1\"}.sap-icon--learning-assistant:before{content:\"\\e0a2\"}.sap-icon--timesheet:before{content:\"\\e0a3\"}.sap-icon--time-entry-request:before{content:\"\\e0a4\"}.sap-icon--list:before{content:\"\\e0a5\"}.sap-icon--action-settings:before{content:\"\\e0a6\"}.sap-icon--share:before{content:\"\\e0a7\"}.sap-icon--feed:before{content:\"\\e0a8\"}.sap-icon--role:before{content:\"\\e0a9\"}.sap-icon--flag:before{content:\"\\e0aa\"}.sap-icon--post:before{content:\"\\e0ab\"}.sap-icon--inspect:before{content:\"\\e0ac\"}.sap-icon--inspect-down:before{content:\"\\e0ad\"}.sap-icon--appointment-2:before{content:\"\\e0ae\"}.sap-icon--target-group:before{content:\"\\e0af\"}.sap-icon--marketing-campaign:before{content:\"\\e0b0\"}.sap-icon--message-error:before,.sap-icon--notification:before{content:\"\\e0b1\"}.sap-icon--comment:before{content:\"\\e0b2\"}.sap-icon--shipping-status:before{content:\"\\e0b3\"}.sap-icon--collaborate:before{content:\"\\e0b4\"}.sap-icon--shortcut:before{content:\"\\e0b5\"}.sap-icon--lead-outdated:before{content:\"\\e0b6\"}.sap-icon--tools-opportunity:before{content:\"\\e0b7\"}.sap-icon--permission:before{content:\"\\e0b8\"}.sap-icon--supplier:before{content:\"\\e0b9\"}.sap-icon--table-view:before{content:\"\\e0ba\"}.sap-icon--table-chart:before{content:\"\\e0bb\"}.sap-icon--switch-views:before{content:\"\\e0bc\"}.sap-icon--e-learning:before{content:\"\\e0bd\"}.sap-icon--manager:before{content:\"\\e0be\"}.sap-icon--switch-classes:before{content:\"\\e0bf\"}.sap-icon--simple-payment:before{content:\"\\e0c0\"}.sap-icon--signature:before{content:\"\\e0c1\"}.sap-icon--sales-order-item:before{content:\"\\e0c2\"}.sap-icon--sales-order:before{content:\"\\e0c3\"}.sap-icon--request:before{content:\"\\e0c4\"}.sap-icon--receipt:before{content:\"\\e0c5\"}.sap-icon--puzzle:before{content:\"\\e0c6\"}.sap-icon--process:before{content:\"\\e0c7\"}.sap-icon--private:before{content:\"\\e0c8\"}.sap-icon--popup-window:before{content:\"\\e0c9\"}.sap-icon--person-placeholder:before{content:\"\\e0ca\"}.sap-icon--per-diem:before{content:\"\\e0cb\"}.sap-icon--paper-plane:before{content:\"\\e0cc\"}.sap-icon--paid-leave:before{content:\"\\e0cd\"}.sap-icon--pdf-reader:before{content:\"\\e0ce\"}.sap-icon--overview-chart:before{content:\"\\e0cf\"}.sap-icon--overlay:before{content:\"\\e0d0\"}.sap-icon--org-chart:before{content:\"\\e0d1\"}.sap-icon--number-sign:before{content:\"\\e0d2\"}.sap-icon--notification-2:before{content:\"\\e0d3\"}.sap-icon--my-sales-order:before{content:\"\\e0d4\"}.sap-icon--meal:before{content:\"\\e0d5\"}.sap-icon--loan:before{content:\"\\e0d6\"}.sap-icon--order-status:before{content:\"\\e0d7\"}.sap-icon--customer-order-entry:before{content:\"\\e0d8\"}.sap-icon--performance:before{content:\"\\e0d9\"}.sap-icon--menu:before{content:\"\\e0da\"}.sap-icon--employee-lookup:before{content:\"\\e0db\"}.sap-icon--education:before{content:\"\\e0dc\"}.sap-icon--customer-briefing:before{content:\"\\e0dd\"}.sap-icon--customer-and-contacts:before{content:\"\\e0de\"}.sap-icon--my-view:before{content:\"\\e0df\"}.sap-icon--accelerated:before{content:\"\\e0e0\"}.sap-icon--to-be-reviewed:before{content:\"\\e0e1\"}.sap-icon--warning2:before{content:\"\\e0e2\"}.sap-icon--feeder-arrow:before{content:\"\\e0e3\"}.sap-icon--quality-issue:before{content:\"\\e0e4\"}.sap-icon--workflow-tasks:before{content:\"\\e0e5\"}.sap-icon--create:before{content:\"\\e0e6\"}.sap-icon--home-share:before{content:\"\\e0e7\"}.sap-icon--globe:before{content:\"\\e0e8\"}.sap-icon--tags:before{content:\"\\e0e9\"}.sap-icon--work-history:before{content:\"\\e0ea\"}.sap-icon--x-ray:before{content:\"\\e0eb\"}.sap-icon--wounds-doc:before{content:\"\\e0ec\"}.sap-icon--web-cam:before{content:\"\\e0ed\"}.sap-icon--waiver:before{content:\"\\e0ee\"}.sap-icon--vertical-bar-chart:before{content:\"\\e0ef\"}.sap-icon--upstacked-chart:before{content:\"\\e0f0\"}.sap-icon--trip-report:before{content:\"\\e0f1\"}.sap-icon--microphone:before{content:\"\\e0f2\"}.sap-icon--unpaid-leave:before{content:\"\\e0f3\"}.sap-icon--tree:before{content:\"\\e0f4\"}.sap-icon--toaster-up:before{content:\"\\e0f5\"}.sap-icon--toaster-top:before{content:\"\\e0f6\"}.sap-icon--toaster-down:before{content:\"\\e0f7\"}.sap-icon--time-account:before{content:\"\\e0f8\"}.sap-icon--theater:before{content:\"\\e0f9\"}.sap-icon--taxi:before{content:\"\\e0fa\"}.sap-icon--subway-train:before{content:\"\\e0fb\"}.sap-icon--study-leave:before{content:\"\\e0fc\"}.sap-icon--stethoscope:before{content:\"\\e0fd\"}.sap-icon--step:before{content:\"\\e0fe\"}.sap-icon--sonography:before{content:\"\\e0ff\"}.sap-icon--soccor:before{content:\"\\e100\"}.sap-icon--physical-activity:before{content:\"\\e101\"}.sap-icon--pharmacy:before{content:\"\\e102\"}.sap-icon--official-service:before{content:\"\\e103\"}.sap-icon--offsite-work:before{content:\"\\e104\"}.sap-icon--nutrition-activity:before{content:\"\\e105\"}.sap-icon--newspaper:before{content:\"\\e106\"}.sap-icon--monitor-payments:before{content:\"\\e107\"}.sap-icon--map-2:before{content:\"\\e108\"}.sap-icon--machine:before{content:\"\\e109\"}.sap-icon--mri-scan:before{content:\"\\e10a\"}.sap-icon--end-user-experience-monitoring:before{content:\"\\e10b\"}.sap-icon--unwired:before{content:\"\\e10c\"}.sap-icon--customer-financial-fact-sheet:before{content:\"\\e10d\"}.sap-icon--retail-store-manager:before{content:\"\\e10e\"}.sap-icon--Netweaver-business-client:before{content:\"\\e10f\"}.sap-icon--electronic-medical-record:before{content:\"\\e110\"}.sap-icon--eam-work-order:before{content:\"\\e111\"}.sap-icon--customer-view:before{content:\"\\e112\"}.sap-icon--crm-service-manager:before{content:\"\\e113\"}.sap-icon--crm-sales:before{content:\"\\e114\"}.sap-icon--widgets:before{content:\"\\e115\"}.sap-icon--commission-check:before{content:\"\\e116\"}.sap-icon--collections-insight:before{content:\"\\e117\"}.sap-icon--clinical-task-tracker:before{content:\"\\e118\"}.sap-icon--citizen-connect:before{content:\"\\e119\"}.sap-icon--cart-approval:before{content:\"\\e11a\"}.sap-icon--capital-projects:before{content:\"\\e11b\"}.sap-icon--bo-strategy-management:before{content:\"\\e11c\"}.sap-icon--business-objects-mobile:before{content:\"\\e11d\"}.sap-icon--business-objects-explorer:before{content:\"\\e11e\"}.sap-icon--business-objects-experience:before{content:\"\\e11f\"}.sap-icon--bbyd-dashboard:before{content:\"\\e120\"}.sap-icon--bbyd-active-sales:before{content:\"\\e121\"}.sap-icon--business-by-design:before{content:\"\\e122\"}.sap-icon--business-one:before{content:\"\\e123\"}.sap-icon--sap-box:before{content:\"\\e124\"}.sap-icon--manager-insight:before{content:\"\\e125\"}.sap-icon--accounting-document-verification:before{content:\"\\e126\"}.sap-icon--hr-approval:before{content:\"\\e127\"}.sap-icon--idea-wall:before{content:\"\\e128\"}.sap-icon--Chart-Tree-Map:before{content:\"\\e129\"}.sap-icon--cart-5:before{content:\"\\e12a\"}.sap-icon--cart-4:before{content:\"\\e12b\"}.sap-icon--wallet:before{content:\"\\e12c\"}.sap-icon--vehicle-repair:before{content:\"\\e12d\"}.sap-icon--upload:before{content:\"\\e12e\"}.sap-icon--unlocked:before{content:\"\\e12f\"}.sap-icon--umbrella:before{content:\"\\e130\"}.sap-icon--travel-request:before{content:\"\\e131\"}.sap-icon--travel-expense-report:before{content:\"\\e132\"}.sap-icon--travel-itinerary:before{content:\"\\e133\"}.sap-icon--time-overtime:before{content:\"\\e134\"}.sap-icon--thing-type:before{content:\"\\e135\"}.sap-icon--technical-object:before{content:\"\\e136\"}.sap-icon--tag:before{content:\"\\e137\"}.sap-icon--syringe:before{content:\"\\e138\"}.sap-icon--syntax:before{content:\"\\e139\"}.sap-icon--suitcase:before{content:\"\\e13a\"}.sap-icon--simulate:before{content:\"\\e13b\"}.sap-icon--shield:before{content:\"\\e13c\"}.sap-icon--share-2:before{content:\"\\e13d\"}.sap-icon--sales-quote:before{content:\"\\e13e\"}.sap-icon--repost:before{content:\"\\e13f\"}.sap-icon--provision:before{content:\"\\e140\"}.sap-icon--projector:before{content:\"\\e141\"}.sap-icon--add-product:before{content:\"\\e142\"}.sap-icon--pipeline-analysis:before{content:\"\\e143\"}.sap-icon--add-photo:before{content:\"\\e144\"}.sap-icon--palette:before{content:\"\\e145\"}.sap-icon--nurse:before{content:\"\\e146\"}.sap-icon--sales-notification:before{content:\"\\e147\"}.sap-icon--mileage:before{content:\"\\e148\"}.sap-icon--meeting-room:before{content:\"\\e149\"}.sap-icon--media-forward:before{content:\"\\e14a\"}.sap-icon--media-play:before{content:\"\\e14b\"}.sap-icon--media-pause:before{content:\"\\e14c\"}.sap-icon--media-reverse:before{content:\"\\e14d\"}.sap-icon--media-rewind:before{content:\"\\e14e\"}.sap-icon--measurement-document:before{content:\"\\e14f\"}.sap-icon--measuring-point:before{content:\"\\e150\"}.sap-icon--measure:before{content:\"\\e151\"}.sap-icon--map-3:before{content:\"\\e152\"}.sap-icon--locked:before{content:\"\\e153\"}.sap-icon--letter:before{content:\"\\e154\"}.sap-icon--journey-arrive:before{content:\"\\e155\"}.sap-icon--journey-change:before{content:\"\\e156\"}.sap-icon--journey-depart:before{content:\"\\e157\"}.sap-icon--it-system:before{content:\"\\e158\"}.sap-icon--it-instance:before{content:\"\\e159\"}.sap-icon--it-host:before{content:\"\\e15a\"}.sap-icon--iphone-2:before{content:\"\\e15b\"}.sap-icon--ipad-2:before{content:\"\\e15c\"}.sap-icon--inventory:before{content:\"\\e15d\"}.sap-icon--insurance-house:before{content:\"\\e15e\"}.sap-icon--insurance-life:before{content:\"\\e15f\"}.sap-icon--insurance-car:before{content:\"\\e160\"}.sap-icon--initiative:before{content:\"\\e161\"}.sap-icon--incident:before{content:\"\\e162\"}.sap-icon--group-2:before{content:\"\\e163\"}.sap-icon--goal:before{content:\"\\e164\"}.sap-icon--functional-location:before{content:\"\\e165\"}.sap-icon--full-screen:before{content:\"\\e166\"}.sap-icon--form:before{content:\"\\e167\"}.sap-icon--fob-watch:before{content:\"\\e168\"}.sap-icon--blank-tag:before{content:\"\\e169\"}.sap-icon--family-protection:before{content:\"\\e16a\"}.sap-icon--folder:before{content:\"\\e16b\"}.sap-icon--fax-machine:before{content:\"\\e16c\"}.sap-icon--example:before{content:\"\\e16d\"}.sap-icon--eraser:before{content:\"\\e16e\"}.sap-icon--employee-rejections:before{content:\"\\e16f\"}.sap-icon--drop-down-list:before{content:\"\\e170\"}.sap-icon--draw-rectangle:before{content:\"\\e171\"}.sap-icon--document:before{content:\"\\e172\"}.sap-icon--doctor:before{content:\"\\e173\"}.sap-icon--discussion-2:before{content:\"\\e174\"}.sap-icon--discussion:before{content:\"\\e175\"}.sap-icon--dimension:before{content:\"\\e176\"}.sap-icon--customer-and-supplier:before{content:\"\\e177\"}.sap-icon--crop:before{content:\"\\e178\"}.sap-icon--add-contact:before{content:\"\\e179\"}.sap-icon--compare-2:before{content:\"\\e17a\"}.sap-icon--color-fill:before{content:\"\\e17b\"}.sap-icon--collision:before{content:\"\\e17c\"}.sap-icon--curriculum:before{content:\"\\e17d\"}.sap-icon--chart-axis:before{content:\"\\e17e\"}.sap-icon--full-stacked-chart:before{content:\"\\e17f\"}.sap-icon--full-stacked-column-chart:before{content:\"\\e180\"}.sap-icon--vertical-bar-chart-2:before{content:\"\\e181\"}.sap-icon--horizontal-bar-chart-2:before{content:\"\\e182\"}.sap-icon--horizontal-stacked-chart:before{content:\"\\e183\"}.sap-icon--vertical-stacked-chart:before{content:\"\\e184\"}.sap-icon--choropleth-chart:before{content:\"\\e185\"}.sap-icon--geographic-bubble-chart:before{content:\"\\e186\"}.sap-icon--multiple-radar-chart:before{content:\"\\e187\"}.sap-icon--radar-chart:before{content:\"\\e188\"}.sap-icon--crossed-line-chart:before{content:\"\\e189\"}.sap-icon--multiple-line-chart:before{content:\"\\e18a\"}.sap-icon--multiple-bar-chart:before{content:\"\\e18b\"}.sap-icon--line-chart:before{content:\"\\e18c\"}.sap-icon--line-chart-dual-axis:before{content:\"\\e18d\"}.sap-icon--bubble-chart:before{content:\"\\e18e\"}.sap-icon--scatter-chart:before{content:\"\\e18f\"}.sap-icon--multiple-pie-chart:before{content:\"\\e190\"}.sap-icon--column-chart-dual-axis:before{content:\"\\e191\"}.sap-icon--tag-cloud-chart:before{content:\"\\e192\"}.sap-icon--area-chart:before{content:\"\\e193\"}.sap-icon--cause:before{content:\"\\e194\"}.sap-icon--cart-3:before{content:\"\\e195\"}.sap-icon--cart-2:before{content:\"\\e196\"}.sap-icon--bus-public-transport:before{content:\"\\e197\"}.sap-icon--burglary:before{content:\"\\e198\"}.sap-icon--building:before{content:\"\\e199\"}.sap-icon--border:before{content:\"\\e19a\"}.sap-icon--bookmark:before{content:\"\\e19b\"}.sap-icon--badge:before{content:\"\\e19c\"}.sap-icon--attachment-audio:before{content:\"\\e19d\"}.sap-icon--attachment-video:before{content:\"\\e19e\"}.sap-icon--attachment-html:before{content:\"\\e19f\"}.sap-icon--attachment-photo:before{content:\"\\e1a0\"}.sap-icon--attachment-e-pub:before{content:\"\\e1a1\"}.sap-icon--attachment-zip-file:before{content:\"\\e1a2\"}.sap-icon--attachment-text-file:before{content:\"\\e1a3\"}.sap-icon--add-equipment:before{content:\"\\e1a4\"}.sap-icon--add-activity:before{content:\"\\e1a5\"}.sap-icon--activity-individual:before{content:\"\\e1a6\"}.sap-icon--activity-2:before{content:\"\\e1a7\"}.sap-icon--add-activity-2:before{content:\"\\e1a8\"}.sap-icon--activity-items:before{content:\"\\e1a9\"}.sap-icon--activity-assigned-to-goal:before{content:\"\\e1aa\"}.sap-icon--status-completed:before,.sap-icon--status-positive:before{content:\"\\e1ab\"}.sap-icon--status-error:before,.sap-icon--status-negative:before{content:\"\\e1ac\"}.sap-icon--status-inactive:before{content:\"\\e1ad\"}.sap-icon--status-critical:before,.sap-icon--status-in-progress:before{content:\"\\e1ae\"}.sap-icon--blank-tag-2:before{content:\"\\e1af\"}.sap-icon--cart-full:before{content:\"\\e1b0\"}.sap-icon--locate-me:before{content:\"\\e1b1\"}.sap-icon--paging:before{content:\"\\e1b2\"}.sap-icon--company-view:before{content:\"\\e1b3\"}.sap-icon--document-text:before{content:\"\\e1b4\"}.sap-icon--explorer:before{content:\"\\e1b5\"}.sap-icon--personnel-view:before{content:\"\\e1b6\"}.sap-icon--sorting-ranking:before{content:\"\\e1b7\"}.sap-icon--drill-down:before{content:\"\\e1b8\"}.sap-icon--drill-up:before{content:\"\\e1b9\"}.sap-icon--vds-file:before{content:\"\\e1ba\"}.sap-icon--sap-logo-shape:before{content:\"\\e1bb\"}.sap-icon--folder-full:before{content:\"\\e1bc\"}.sap-icon--system-exit:before{content:\"\\e1bd\"}.sap-icon--system-exit-2:before{content:\"\\e1be\"}.sap-icon--close-command-field:before{content:\"\\e1bf\"}.sap-icon--open-command-field:before{content:\"\\e1c0\"}.sap-icon--sys-enter-2:before{content:\"\\e1c1\"}.sap-icon--sys-enter:before{content:\"\\e1c2\"}.sap-icon--sys-help-2:before{content:\"\\e1c3\"}.sap-icon--sys-help:before{content:\"\\e1c4\"}.sap-icon--sys-back:before{content:\"\\e1c5\"}.sap-icon--sys-back-2:before{content:\"\\e1c6\"}.sap-icon--sys-cancel:before{content:\"\\e1c7\"}.sap-icon--sys-cancel-2:before{content:\"\\e1c8\"}.sap-icon--open-folder:before{content:\"\\e1c9\"}.sap-icon--sys-find-next:before{content:\"\\e1ca\"}.sap-icon--sys-find:before{content:\"\\e1cb\"}.sap-icon--sys-monitor:before{content:\"\\e1cc\"}.sap-icon--sys-prev-page:before{content:\"\\e1cd\"}.sap-icon--sys-first-page:before{content:\"\\e1ce\"}.sap-icon--sys-next-page:before{content:\"\\e1cf\"}.sap-icon--sys-last-page:before{content:\"\\e1d0\"}.sap-icon--generate-shortcut:before{content:\"\\e1d1\"}.sap-icon--create-session:before{content:\"\\e1d2\"}.sap-icon--display-more:before{content:\"\\e1d3\"}.sap-icon--enter-more:before{content:\"\\e1d4\"}.sap-icon--zoom-in:before{content:\"\\e1d5\"}.sap-icon--zoom-out:before{content:\"\\e1d6\"}.sap-icon--header:before{content:\"\\e1d7\"}.sap-icon--detail-view:before,.sap-icon--show-edit:before{content:\"\\e1d8\"}.sap-icon--collapse:before{content:\"\\e1d9\"}.sap-icon--expand:before{content:\"\\e1da\"}.sap-icon--positive:before{content:\"\\e1db\"}.sap-icon--negative:before{content:\"\\e1dc\"}.sap-icon--display:before{content:\"\\e1dd\"}.sap-icon--menu2:before{content:\"\\e1de\"}.sap-icon--redo:before{content:\"\\e1df\"}.sap-icon--undo:before{content:\"\\e1e0\"}.sap-icon--navigation-up-arrow:before{content:\"\\e1e1\"}.sap-icon--navigation-down-arrow:before{content:\"\\e1e2\"}.sap-icon--down:before{content:\"\\e1e3\"}.sap-icon--up:before{content:\"\\e1e4\"}.sap-icon--shelf:before{content:\"\\e1e5\"}.sap-icon--background:before{content:\"\\e1e6\"}.sap-icon--resize:before{content:\"\\e1e7\"}.sap-icon--move:before{content:\"\\e1e8\"}.sap-icon--show:before{content:\"\\e1e9\"}.sap-icon--hide:before{content:\"\\e1ea\"}.sap-icon--nav-back:before{content:\"\\e1eb\"}.sap-icon--error:before{content:\"\\e1ec\"}.sap-icon--slim-arrow-right:before{content:\"\\e1ed\"}.sap-icon--slim-arrow-left:before{content:\"\\e1ee\"}.sap-icon--slim-arrow-down:before{content:\"\\e1ef\"}.sap-icon--slim-arrow-up:before{content:\"\\e1f0\"}.sap-icon--forward:before{content:\"\\e1f1\"}.sap-icon--overflow:before{content:\"\\e1f2\"}.sap-icon--value-help:before{content:\"\\e1f3\"}.sap-icon--multiselect:before{content:\"\\e1f4\"}.sap-icon--exitfullscreen:before{content:\"\\e1f5\"}.sap-icon--sys-add:before{content:\"\\e1f6\"}.sap-icon--sys-minus:before{content:\"\\e1f7\"}.sap-icon--dropdown:before{content:\"\\e1f8\"}.sap-icon--expand-group:before{content:\"\\e1f9\"}.sap-icon--vertical-grip:before{content:\"\\e1fa\"}.sap-icon--horizontal-grip:before{content:\"\\e1fb\"}.sap-icon--sort-descending:before{content:\"\\e1fc\"}.sap-icon--sort-ascending:before{content:\"\\e1fd\"}.sap-icon--arrow-down:before{content:\"\\e1fe\"}.sap-icon--legend:before{content:\"\\e1ff\"}.sap-icon--collapse-group:before{content:\"\\e200\"}.sap-icon--message-warning:before{content:\"\\e201\"}.sap-icon--message-information:before{content:\"\\e202\"}.sap-icon--message-success:before{content:\"\\e203\"}.sap-icon--restart:before{content:\"\\e204\"}.sap-icon--stop:before{content:\"\\e205\"}.sap-icon--add-process:before{content:\"\\e206\"}.sap-icon--cancel-maintenance:before{content:\"\\e207\"}.sap-icon--activate:before{content:\"\\e208\"}.sap-icon--resize-horizontal:before{content:\"\\e209\"}.sap-icon--resize-vertical:before{content:\"\\e20a\"}.sap-icon--connected:before{content:\"\\e20b\"}.sap-icon--disconnected:before{content:\"\\e20c\"}.sap-icon--edit-outside:before{content:\"\\e20d\"}.sap-icon--key:before{content:\"\\e20e\"}.sap-icon--minimize:before{content:\"\\e20f\"}.sap-icon--back-to-top:before{content:\"\\e210\"}.sap-icon--hello-world:before{content:\"\\e211\"}.sap-icon--outbox:before{content:\"\\e212\"}.sap-icon--donut-chart:before{content:\"\\e213\"}.sap-icon--heatmap-chart:before{content:\"\\e214\"}.sap-icon--horizontal-bullet-chart:before{content:\"\\e215\"}.sap-icon--vertical-bullet-chart:before{content:\"\\e216\"}.sap-icon--call:before{content:\"\\e217\"}.sap-icon--download-from-cloud:before{content:\"\\e218\"}.sap-icon--upload-to-cloud:before{content:\"\\e219\"}.sap-icon--jam:before{content:\"\\e21a\"}.sap-icon--sap-ui5:before{content:\"\\e21b\"}.sap-icon--message-popup:before{content:\"\\e21c\"}.sap-icon--cloud:before{content:\"\\e21d\"}.sap-icon--horizontal-waterfall-chart:before{content:\"\\e21e\"}.sap-icon--vertical-waterfall-chart:before{content:\"\\e21f\"}.sap-icon--broken-link:before{content:\"\\e220\"}.sap-icon--headset:before{content:\"\\e221\"}.sap-icon--thumb-up:before{content:\"\\e222\"}.sap-icon--thumb-down:before{content:\"\\e223\"}.sap-icon--multiselect-all:before{content:\"\\e224\"}.sap-icon--multiselect-none:before{content:\"\\e225\"}.sap-icon--scissors:before{content:\"\\e226\"}.sap-icon--sound:before{content:\"\\e227\"}.sap-icon--sound-loud:before{content:\"\\e228\"}.sap-icon--sound-off:before{content:\"\\e229\"}.sap-icon--date-time:before{content:\"\\e22a\"}.sap-icon--user-settings:before{content:\"\\e22b\"}.sap-icon--key-user-settings:before{content:\"\\e23c\"}.sap-icon--developer-settings:before{content:\"\\e22d\"}.sap-icon--text-formatting:before{content:\"\\e22e\"}.sap-icon--bold-text:before{content:\"\\e22f\"}.sap-icon--italic-text:before{content:\"\\e230\"}.sap-icon--underline-text:before{content:\"\\e231\"}.sap-icon--text-align-justified:before{content:\"\\e232\"}.sap-icon--text-align-left:before{content:\"\\e233\"}.sap-icon--text-align-center:before{content:\"\\e234\"}.sap-icon--text-align-right:before{content:\"\\e235\"}.sap-icon--bullet-text:before{content:\"\\e236\"}.sap-icon--numbered-text:before{content:\"\\e237\"}.sap-icon--co:before{content:\"\\e238\"}.sap-icon--ui-notifications:before{content:\"\\e239\"}.sap-icon--bell:before{content:\"\\e23a\"}.sap-icon--cancel-share:before{content:\"\\e23b\"}.sap-icon--write-new-document:before{content:\"\\e23c\"}.sap-icon--write-new:before{content:\"\\e23d\"}.sap-icon--cancel:before{content:\"\\e23e\"}.sap-icon--screen-split-one:before{content:\"\\e23f\"}.sap-icon--screen-split-two:before{content:\"\\e240\"}.sap-icon--screen-split-three:before{content:\"\\e241\"}.sap-icon--customize:before{content:\"\\e242\"}.sap-icon--user-edit:before{content:\"\\e243\"}.sap-icon--source-code:before{content:\"\\e244\"}.sap-icon--copy:before{content:\"\\e245\"}.sap-icon--paste:before{content:\"\\e246\"}.sap-icon--line-chart-time-axis:before{content:\"\\e247\"}.sap-icon--clear-filter:before{content:\"\\e248\"}.sap-icon--reset:before{content:\"\\e249\"}.sap-icon--trend-up:before{content:\"\\e24a\"}.sap-icon--trend-down:before{content:\"\\e24b\"}.sap-icon--cursor:before{content:\"\\e24c\"}.sap-icon--add-document:before{content:\"\\e24d\"}.sap-icon--create-form:before{content:\"\\e24e\"}.sap-icon--resize-corner:before{content:\"\\e24f\"}.sap-icon--chevron-phase:before{content:\"\\e250\"}.sap-icon--chevron-phase-2:before{content:\"\\e251\"}.sap-icon--rhombus-milestone:before{content:\"\\e252\"}.sap-icon--rhombus-milestone-2:before{content:\"\\e253\"}.sap-icon--circle-task:before{content:\"\\e254\"}.sap-icon--circle-task-2:before{content:\"\\e255\"}.sap-icon--project-definition-triangle:before{content:\"\\e256\"}.sap-icon--project-definition-triangle-2:before{content:\"\\e257\"}.sap-icon--master-task-triangle:before{content:\"\\e258\"}.sap-icon--master-task-triangle-2:before{content:\"\\e259\"}.sap-icon--program-triangles:before{content:\"\\e25a\"}.sap-icon--program-triangles-2:before{content:\"\\e25b\"}.sap-icon--mirrored-task-circle:before{content:\"\\e25c\"}.sap-icon--mirrored-task-circle-2:before{content:\"\\e25d\"}.sap-icon--checklist-item:before{content:\"\\e25e\"}.sap-icon--checklist-item-2:before{content:\"\\e25f\"}.sap-icon--checklist:before{content:\"\\e260\"}.sap-icon--checklist-2:before{content:\"\\e261\"}.sap-icon--chart-table-view:before{content:\"\\e262\"}.sap-icon--filter-analytics:before{content:\"\\e263\"}.sap-icon--filter-facets:before{content:\"\\e264\"}.sap-icon--filter-fields:before{content:\"\\e265\"}.sap-icon--indent:before{content:\"\\e266\"}.sap-icon--outdent:before{content:\"\\e267\"}.sap-icon--heading-1:before{content:\"\\e268\"}.sap-icon--heading-2:before{content:\"\\e269\"}.sap-icon--heading-3:before{content:\"\\e26a\"}.sap-icon--decrease-line-height:before{content:\"\\e26b\"}.sap-icon--increase-line-height:before{content:\"\\e26c\"}.sap-icon--fx:before{content:\"\\e26d\"}.sap-icon--add-folder:before{content:\"\\e26e\"}.sap-icon--away:before{content:\"\\e26f\"}.sap-icon--busy:before{content:\"\\e270\"}.sap-icon--appear-offline:before{content:\"\\e271\"}.sap-icon--blur:before{content:\"\\e272\"}.sap-icon--pixelate:before{content:\"\\e273\"}.sap-icon--horizontal-combination-chart:before{content:\"\\e274\"}.sap-icon--add-employee:before{content:\"\\e275\"}.sap-icon--text-color:before{content:\"\\e276\"}.sap-icon--browse-folder:before{content:\"\\e277\"}.sap-icon--primary-key:before{content:\"\\e278\"}.sap-icon--two-keys:before{content:\"\\e279\"}.sap-icon--strikethrough:before{content:\"\\e27a\"}.sap-icon--text:before{content:\"\\e27b\"}.sap-icon--responsive:before{content:\"\\e27c\"}.sap-icon--desktop-mobile:before{content:\"\\e27d\"}.sap-icon--table-row:before{content:\"\\e27e\"}.sap-icon--table-column:before{content:\"\\e27f\"}.sap-icon--validate:before{content:\"\\e280\"}.sap-icon--keyboard-and-mouse:before{content:\"\\e281\"}.sap-icon--touch:before{content:\"\\e282\"}.sap-icon--expand-all:before{content:\"\\e283\"}.sap-icon--collapse-all:before{content:\"\\e284\"}.sap-icon--combine:before{content:\"\\e285\"}.sap-icon--split:before{content:\"\\e286\"}.sap-icon--megamenu:before{content:\"\\e287\"}.sap-icon--feedback:before{content:\"\\e288\"}.sap-icon--information:before{content:\"\\e289\"}.sap-icon--s4hana:before{content:\"\\e28a\"}.sap-icon--translate:before{content:\"\\e28b\"}.sap-icon--clear-all:before{content:\"\\e28c\"}.sap-icon--command-line-interfaces:before{content:\"\\e28d\"}.sap-icon--icon-sum:before{content:\"\\e28e\"}.sap-icon--icon-qr-code:before{content:\"\\e28f\"}.sap-icon--space-navigation:before{content:\"\\e290\"}.sap-icon--in-progress:before{content:\"\\e291\"}.sap-icon--not-editable:before{content:\"\\e292\"}.sap-icon--heart:before{content:\"\\e293\"}.sap-icon--heart-2:before{content:\"\\e294\"}.sap-icon--tri-state:before{content:\"\\e295\"}.sap-icon--bookmark-2:before{content:\"\\e296\"}.sap-icon--detail-less:before{content:\"\\e297\"}.sap-icon--detail-more:before{content:\"\\e298\"}.sap-icon--flag-2:before{content:\"\\e299\"}.sap-icon--folder-2:before{content:\"\\e29a\"}.sap-icon--paint-bucket:before{content:\"\\e29b\"}.sap-icon--direction-arrows:before{content:\"\\e29c\"}.sap-icon--binary:before{content:\"\\e29d\"}.sap-icon--female:before{content:\"\\e29e\"}.sap-icon--male:before{content:\"\\e29f\"}.sap-icon--gender-male-and-female:before{content:\"\\e300\"}.sap-icon--rotate:before{content:\"\\e301\"}.sap-icon--biometric-thumb:before{content:\"\\e306\"}.sap-icon--biometric-face:before{content:\"\\e307\"}.sap-icon--people-connected:before{content:\"\\e308\"}.sap-icon--select-appointments:before{content:\"\\e30b\"}.sap-icon--light-mode:before{content:\"\\e309\"}.sap-icon--dark-mode:before{content:\"\\e30a\"}.sap-icon--time-off:before{content:\"\\e30c\"}.sap-icon--add-calendar:before{content:\"\\e30d\"}.sap-icon--currency:before{content:\"\\e30e\"}.sap-icon--bell-2:before{content:\"\\e2a0\"}.sap-icon--accessibility:before{content:\"\\e2a1\"}.sap-icon--high-priority:before{content:\"\\e2a2\"}.sap-icon-businessSuiteInAppSymbols--heart:before{content:\"\\e000\"}.sap-icon-businessSuiteInAppSymbols--quarter:before{content:\"\\e001\"}.sap-icon-businessSuiteInAppSymbols--year:before{content:\"\\e002\"}.sap-icon-businessSuiteInAppSymbols--equalizer:before{content:\"\\e003\"}.sap-icon-businessSuiteInAppSymbols--component:before{content:\"\\e004\"}.sap-icon-businessSuiteInAppSymbols--component-private:before{content:\"\\e005\"}.sap-icon-businessSuiteInAppSymbols--raw-material:before{content:\"\\e006\"}.sap-icon-businessSuiteInAppSymbols--sms:before{content:\"\\e007\"}.sap-icon-businessSuiteInAppSymbols--add-note:before{content:\"\\e008\"}.sap-icon-businessSuiteInAppSymbols--change-time-horizon:before{content:\"\\e009\"}.sap-icon-businessSuiteInAppSymbols--table-chart-customization:before{content:\"\\e00a\"}.sap-icon-businessSuiteInAppSymbols--delegated-important-task:before{content:\"\\e00b\"}.sap-icon-businessSuiteInAppSymbols--forklift:before{content:\"\\e00c\"}.sap-icon-businessSuiteInAppSymbols--coins:before{content:\"\\e00d\"}.sap-icon-businessSuiteInAppSymbols--filter-menu:before{content:\"\\e00e\"}.sap-icon-businessSuiteInAppSymbols--target-to-date:before{content:\"\\e00f\"}.sap-icon-businessSuiteInAppSymbols--program:before{content:\"\\e010\"}.sap-icon-businessSuiteInAppSymbols--phase:before{content:\"\\e011\"}.sap-icon-businessSuiteInAppSymbols--checklist:before{content:\"\\e012\"}.sap-icon-businessSuiteInAppSymbols--mirrored-task:before{content:\"\\e013\"}.sap-icon-businessSuiteInAppSymbols--sub-project:before{content:\"\\e014\"}.sap-icon-businessSuiteInAppSymbols--checklist-item:before{content:\"\\e015\"}.sap-icon-businessSuiteInAppSymbols--adhoc-analysis:before{content:\"\\e016\"}.sap-icon-businessSuiteInAppSymbols--change-analysis:before{content:\"\\e017\"}.sap-icon-businessSuiteInAppSymbols--review-demands:before{content:\"\\e018\"}.sap-icon-businessSuiteInAppSymbols--project-definition:before{content:\"\\e019\"}.sap-icon-businessSuiteInAppSymbols--data-access:before{content:\"\\e01a\"}.sap-icon-businessSuiteInAppSymbols--define-shortage:before{content:\"\\e01b\"}.sap-icon-businessSuiteInAppSymbols--review-supplies:before{content:\"\\e01c\"}.sap-icon-businessSuiteInAppSymbols--change-log:before{content:\"\\e01d\"}.sap-icon-businessSuiteInAppSymbols--priority-1:before{content:\"\\e01e\"}.sap-icon-businessSuiteInAppSymbols--priority-2:before{content:\"\\e01f\"}.sap-icon-businessSuiteInAppSymbols--jam:before{content:\"\\e020\"}.sap-icon-businessSuiteInAppSymbols--milestone:before{content:\"\\e021\"}.sap-icon-businessSuiteInAppSymbols--bulleting-with-numbers:before{content:\"\\e022\"}.sap-icon-businessSuiteInAppSymbols--decrease-indent:before{content:\"\\e023\"}.sap-icon-businessSuiteInAppSymbols--increase-indent:before{content:\"\\e024\"}.sap-icon-businessSuiteInAppSymbols--bold:before{content:\"\\e025\"}.sap-icon-businessSuiteInAppSymbols--italic:before{content:\"\\e026\"}.sap-icon-businessSuiteInAppSymbols--strike-through:before{content:\"\\e027\"}.sap-icon-businessSuiteInAppSymbols--underline:before{content:\"\\e028\"}.sap-icon-businessSuiteInAppSymbols--save-as:before{content:\"\\e029\"}.sap-icon-businessSuiteInAppSymbols--segmentation:before{content:\"\\e02a\"}.sap-icon-businessSuiteInAppSymbols--context-menu:before{content:\"\\e02b\"}.sap-icon-businessSuiteInAppSymbols--snapshot:before{content:\"\\e02c\"}.sap-icon-businessSuiteInAppSymbols--subtraction-b-a:before{content:\"\\e02d\"}.sap-icon-businessSuiteInAppSymbols--subtraction-a-b:before{content:\"\\e02e\"}.sap-icon-businessSuiteInAppSymbols--intersection:before{content:\"\\e02f\"}.sap-icon-businessSuiteInAppSymbols--union:before{content:\"\\e030\"}.sap-icon-businessSuiteInAppSymbols--top:before{content:\"\\e031\"}.sap-icon-businessSuiteInAppSymbols--bottom:before{content:\"\\e032\"}.sap-icon-businessSuiteInAppSymbols--page-up:before{content:\"\\e033\"}.sap-icon-businessSuiteInAppSymbols--page-down:before{content:\"\\e034\"}.sap-icon-businessSuiteInAppSymbols--create-dashboard:before{content:\"\\e035\"}.sap-icon-businessSuiteInAppSymbols--xcelsius-file:before{content:\"\\e036\"}.sap-icon-businessSuiteInAppSymbols--open-folder:before{content:\"\\e037\"}.sap-icon-businessSuiteInAppSymbols--neutral:before{content:\"\\e038\"}.sap-icon-businessSuiteInAppSymbols--split-segmentation:before{content:\"\\e039\"}.sap-icon-businessSuiteInAppSymbols--manage-budget:before{content:\"\\e03a\"}.sap-icon-businessSuiteInAppSymbols--blocked:before{content:\"\\e03b\"}.sap-icon-businessSuiteInAppSymbols--pipette:before{content:\"\\e03c\"}.sap-icon-businessSuiteInAppSymbols--top-recipe:before{content:\"\\e03d\"}.sap-icon-businessSuiteInAppSymbols--recipe:before{content:\"\\e03e\"}.sap-icon-businessSuiteInAppSymbols--ingredients:before{content:\"\\e03f\"}.sap-icon-businessSuiteInAppSymbols--multiple-charts:before{content:\"\\e040\"}.sap-icon-businessSuiteInAppSymbols--descending-bars:before{content:\"\\e041\"}.sap-icon-businessSuiteInAppSymbols--descending-stacked-bars:before{content:\"\\e042\"}.sap-icon-businessSuiteInAppSymbols--scatter-plot:before{content:\"\\e043\"}.sap-icon-businessSuiteInAppSymbols--spill:before{content:\"\\e044\"}.sap-icon-businessSuiteInAppSymbols--fire:before{content:\"\\e045\"}.sap-icon-businessSuiteInAppSymbols--stratification:before{content:\"\\e046\"}.sap-icon-businessSuiteInAppSymbols--relationship:before{content:\"\\e047\"}.sap-icon-businessSuiteInAppSymbols--margin-decomposition:before{content:\"\\e048\"}.sap-icon-businessSuiteInAppSymbols--control-group:before{content:\"\\e049\"}.sap-icon-businessSuiteInAppSymbols--comparison-chart:before{content:\"\\e04a\"}.sap-icon-businessSuiteInAppSymbols--responsible-area:before{content:\"\\e04b\"}.sap-icon-businessSuiteInAppSymbols--increase:before{content:\"\\e04c\"}.sap-icon-businessSuiteInAppSymbols--decrease:before{content:\"\\e04d\"}.sap-icon-businessSuiteInAppSymbols--current-stock:before{content:\"\\e04e\"}.sap-icon-businessSuiteInAppSymbols--expedite:before{content:\"\\e04f\"}.sap-icon-businessSuiteInAppSymbols--postpone:before{content:\"\\e050\"}.sap-icon-businessSuiteInAppSymbols--approved:before{content:\"\\e051\"}.sap-icon-businessSuiteInAppSymbols--partially-delivered:before{content:\"\\e052\"}.sap-icon-businessSuiteInAppSymbols--line-bar-chart:before{content:\"\\e053\"}.sap-icon-businessSuiteInAppSymbols--expand-all:before{content:\"\\e054\"}.sap-icon-businessSuiteInAppSymbols--submission:before{content:\"\\e055\"}.sap-icon-businessSuiteInAppSymbols--change-request:before{content:\"\\e056\"}.sap-icon-businessSuiteInAppSymbols--column-unselected:before{content:\"\\e057\"}.sap-icon-businessSuiteInAppSymbols--column-selected:before{content:\"\\e058\"}.sap-icon-businessSuiteInAppSymbols--row-unselected:before{content:\"\\e059\"}.sap-icon-businessSuiteInAppSymbols--row-selected:before{content:\"\\e05a\"}.sap-icon-businessSuiteInAppSymbols--stock-requirements:before{content:\"\\e05b\"}.sap-icon-businessSuiteInAppSymbols--gender-male-and-female:before{content:\"\\e05c\"}.sap-icon-businessSuiteInAppSymbols--marital-status:before{content:\"\\e05d\"}.sap-icon-businessSuiteInAppSymbols--birthday:before{content:\"\\e05e\"}.sap-icon-businessSuiteInAppSymbols--classification:before{content:\"\\e05f\"}.sap-icon-businessSuiteInAppSymbols--marked-for-deletion:before{content:\"\\e060\"}.sap-icon-businessSuiteInAppSymbols--bullet-chart:before{content:\"\\e061\"}.sap-icon-businessSuiteInAppSymbols--remove-filter:before{content:\"\\e062\"}.sap-icon-businessSuiteInAppSymbols--bank-account:before{content:\"\\e063\"}.sap-icon-businessSuiteInAppSymbols--savings-account:before{content:\"\\e064\"}.sap-icon-businessSuiteInAppSymbols--debit-card:before{content:\"\\e065\"}.sap-icon-businessSuiteInAppSymbols--vip-customer:before{content:\"\\e066\"}.sap-icon-businessSuiteInAppSymbols--undesirable-customer:before{content:\"\\e067\"}.sap-icon-businessSuiteInAppSymbols--answered-change-request:before{content:\"\\e068\"}.sap-icon-businessSuiteInAppSymbols--collected-change-request:before{content:\"\\e069\"}.sap-icon-businessSuiteInAppSymbols--draw-freehand:before{content:\"\\e06a\"}.sap-icon-businessSuiteInAppSymbols--draw-circle:before{content:\"\\e06b\"}.sap-icon-businessSuiteInAppSymbols--completed:before{content:\"\\e06c\"}.sap-icon-businessSuiteInAppSymbols--answered:before{content:\"\\e06d\"}.sap-icon-businessSuiteInAppSymbols--traffic-cone:before{content:\"\\e06e\"}.sap-icon-businessSuiteInAppSymbols--traffic-lights:before{content:\"\\e06f\"}.sap-icon-businessSuiteInAppSymbols--container:before{content:\"\\e070\"}.sap-icon-businessSuiteInAppSymbols--container-loading:before{content:\"\\e071\"}.sap-icon-businessSuiteInAppSymbols--traffic-jam:before{content:\"\\e072\"}.sap-icon-businessSuiteInAppSymbols--products:before{content:\"\\e073\"}.sap-icon-businessSuiteInAppSymbols--sidepanel:before{content:\"\\e074\"}.sap-icon-businessSuiteInAppSymbols--split-screen:before{content:\"\\e075\"}.sap-icon-businessSuiteInAppSymbols--truck-driver:before{content:\"\\e076\"}.sap-icon-businessSuiteInAppSymbols--keep-segment:before{content:\"\\e077\"}.sap-icon-businessSuiteInAppSymbols--exclude-segment:before{content:\"\\e078\"}.sap-icon-businessSuiteInAppSymbols--separate-segments:before{content:\"\\e079\"}.sap-icon-businessSuiteInAppSymbols--distribute-segments:before{content:\"\\e07a\"}.sap-icon-businessSuiteInAppSymbols--next-open-item:before{content:\"\\e07b\"}.sap-icon-businessSuiteInAppSymbols--where-used:before{content:\"\\e07c\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery:before{content:\"\\e07d\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery-inactive:before{content:\"\\e07e\"}.sap-icon-businessSuiteInAppSymbols--outbound-delivery-active:before{content:\"\\e07f\"}.sap-icon-businessSuiteInAppSymbols--target:before{content:\"\\e080\"}.sap-icon-businessSuiteInAppSymbols--source:before{content:\"\\e081\"}.sap-icon-businessSuiteInAppSymbols--material:before{content:\"\\e082\"}.sap-icon-businessSuiteInAppSymbols--due-date:before{content:\"\\e083\"}.sap-icon-businessSuiteInAppSymbols--overdue:before{content:\"\\e084\"}.sap-icon-businessSuiteInAppSymbols--set-as-default:before{content:\"\\e085\"}.sap-icon-businessSuiteInAppSymbols--face-very-bad:before{content:\"\\e086\"}.sap-icon-businessSuiteInAppSymbols--face-bad:before{content:\"\\e087\"}.sap-icon-businessSuiteInAppSymbols--face-skeptical:before{content:\"\\e088\"}.sap-icon-businessSuiteInAppSymbols--face-neutral:before{content:\"\\e089\"}.sap-icon-businessSuiteInAppSymbols--face-astonished:before{content:\"\\e08a\"}.sap-icon-businessSuiteInAppSymbols--face-happy:before{content:\"\\e08b\"}.sap-icon-businessSuiteInAppSymbols--face-very-happy:before{content:\"\\e08c\"}.sap-icon-businessSuiteInAppSymbols--face-awful:before{content:\"\\e08d\"}.sap-icon-businessSuiteInAppSymbols--face-devastated:before{content:\"\\e08e\"}.sap-icon-businessSuiteInAppSymbols--face-okey-dokey:before{content:\"\\e08f\"}.sap-icon-businessSuiteInAppSymbols--alarm:before{content:\"\\e090\"}.sap-icon-businessSuiteInAppSymbols--activate:before{content:\"\\e091\"}.sap-icon-businessSuiteInAppSymbols--segment-preview-reference-objects:before{content:\"\\e092\"}.sap-icon-businessSuiteInAppSymbols--radius:before{content:\"\\e093\"}.sap-icon-businessSuiteInAppSymbols--polygone-black:before{content:\"\\e094\"}.sap-icon-businessSuiteInAppSymbols--polygone-white:before{content:\"\\e095\"}.sap-icon-businessSuiteInAppSymbols--ploygone:before{content:\"\\e096\"}.sap-icon-businessSuiteInAppSymbols--no-filter:before{content:\"\\e097\"}.sap-icon-businessSuiteInAppSymbols--grip:before{content:\"\\e098\"}.sap-icon-businessSuiteInAppSymbols--water:before{content:\"\\e09a\"}.sap-icon-businessSuiteInAppSymbols--gas:before{content:\"\\e09b\"}.sap-icon-businessSuiteInAppSymbols--liquid:before{content:\"\\e09c\"}.sap-icon-businessSuiteInAppSymbols--time-deposit:before{content:\"\\e09d\"}.sap-icon-businessSuiteInAppSymbols--early-widthdrawal-for-time-deposits:before{content:\"\\e09e\"}.sap-icon-businessSuiteInAppSymbols--truck-load:before{content:\"\\e0e8\"}.sap-icon-businessSuiteInAppSymbols--truck-unload:before{content:\"\\e0e9\"}.sap-icon-businessSuiteInAppSymbols--truck-load-unload:before{content:\"\\e0ea\"}.sap-icon-businessSuiteInAppSymbols--pharmacy:before{content:\"\\e0eb\"}.sap-icon-businessSuiteInAppSymbols--medicine-syrup:before{content:\"\\e0ec\"}.sap-icon-businessSuiteInAppSymbols--reminder:before{content:\"\\e0ed\"}.sap-icon-businessSuiteInAppSymbols--medicine-pill:before{content:\"\\e0ee\"}.sap-icon-businessSuiteInAppSymbols--medicine-ointment:before{content:\"\\e0ef\"}.sap-icon-businessSuiteInAppSymbols--medicine-drops:before{content:\"\\e0f0\"}.sap-icon-businessSuiteInAppSymbols--blood-test:before{content:\"\\e0f1\"}.sap-icon-businessSuiteInAppSymbols--temperature:before{content:\"\\e0f2\"}.sap-icon-businessSuiteInAppSymbols--medicine-inhaler:before{content:\"\\e0f3\"}.sap-icon-businessSuiteInAppSymbols--foot-steps:before{content:\"\\e0f4\"}.sap-icon-businessSuiteInAppSymbols--weight:before{content:\"\\e0f5\"}.sap-icon-businessSuiteInAppSymbols--health-tracking:before{content:\"\\e0f6\"}.sap-icon-businessSuiteInAppSymbols--blood-pressure:before{content:\"\\e0f7\"}.sap-icon-businessSuiteInAppSymbols--immunization:before{content:\"\\e0f8\"}.sap-icon-businessSuiteInAppSymbols--allergies:before{content:\"\\e0f9\"}.sap-icon-businessSuiteInAppSymbols--rescheduling2:before{content:\"\\e0fa\"}.sap-icon-businessSuiteInAppSymbols--resequencing2:before{content:\"\\e0fb\"}.sap-icon-businessSuiteInAppSymbols--no-time-change:before{content:\"\\e0fc\"}.sap-icon-businessSuiteInAppSymbols--time-change:before{content:\"\\e0fd\"}.sap-icon-businessSuiteInAppSymbols--smart-matcher:before{content:\"\\e0fe\"}.sap-icon-businessSuiteInAppSymbols--legal-section:before{content:\"\\e10a\"}.sap-icon-businessSuiteInAppSymbols--causes:before{content:\"\\e10b\"}.sap-icon-businessSuiteInAppSymbols--effects:before{content:\"\\e10c\"}.sap-icon-businessSuiteInAppSymbols--shared-by-me:before{content:\"\\e10d\"}.sap-icon-businessSuiteInAppSymbols--shared-with-me:before{content:\"\\e10e\"}.sap-icon-businessSuiteInAppSymbols--alert-groups:before{content:\"\\e111\"}.sap-icon-businessSuiteInAppSymbols--function-alert:before{content:\"\\e112\"}.sap-icon-businessSuiteInAppSymbols--function-hierarchy:before{content:\"\\e113\"}.sap-icon-businessSuiteInAppSymbols--rfid:before{content:\"\\e114\"}.sap-icon-businessSuiteInAppSymbols--input:before{content:\"\\e115\"}.sap-icon-businessSuiteInAppSymbols--software-item:before{content:\"\\e116\"}.sap-icon-businessSuiteInAppSymbols--product-view:before{content:\"\\e117\"}.sap-icon-businessSuiteInAppSymbols--software-item-variant:before{content:\"\\e118\"}.sap-icon-businessSuiteInAppSymbols--lighthouse:before{content:\"\\e119\"}.sap-icon-businessSuiteInAppSymbols--demand-unit:before{content:\"\\e11a\"}.sap-icon-businessSuiteInAppSymbols--fma-management:before{content:\"\\e11b\"}.sap-icon-businessSuiteInAppSymbols--fma-validation:before{content:\"\\e11c\"}.sap-icon-businessSuiteInAppSymbols--fma-analytics:before{content:\"\\e11d\"}.sap-icon-businessSuiteInAppSymbols--class:before{content:\"\\e11e\"}.sap-icon-businessSuiteInAppSymbols--overview:before{content:\"\\e11f\"}.sap-icon-businessSuiteInAppSymbols--production:before{content:\"\\e120\"}.sap-icon-businessSuiteInAppSymbols--subclass:before{content:\"\\e121\"}.sap-icon-businessSuiteInAppSymbols--variant-configuration:before{content:\"\\e122\"}.sap-icon-businessSuiteInAppSymbols--sum:before{content:\"\\e123\"}.sap-icon-businessSuiteInAppSymbols--empty-trailer:before{content:\"\\e12f\"}.sap-icon-businessSuiteInAppSymbols--door:before{content:\"\\e130\"}.sap-icon-businessSuiteInAppSymbols--loading-point:before{content:\"\\e131\"}.sap-icon-businessSuiteInAppSymbols--stock-warehouse:before{content:\"\\e132\"}.sap-icon-businessSuiteInAppSymbols--gate:before{content:\"\\e133\"}.sap-icon-businessSuiteInAppSymbols--timeseries-waterfall-chart:before{content:\"\\e134\"}.sap-icon-businessSuiteInAppSymbols--stages-warning:before{content:\"\\e138\"}.sap-icon-businessSuiteInAppSymbols--empty-warning:before{content:\"\\e139\"}.sap-icon-businessSuiteInAppSymbols--move-folder:before{content:\"\\e169\"}.sap-icon-businessSuiteInAppSymbols--remove-folder:before{content:\"\\e16a\"}.sap-icon-businessSuiteInAppSymbols--match-case:before{content:\"\\e16b\"}.sap-icon-businessSuiteInAppSymbols--match-whole-word:before{content:\"\\e16c\"}.sap-icon-businessSuiteInAppSymbols--remove-total:before{content:\"\\e16d\"}.sap-icon-businessSuiteInAppSymbols--after-total:before{content:\"\\e16e\"}.sap-icon-businessSuiteInAppSymbols--before-total:before{content:\"\\e16f\"}.sap-icon-businessSuiteInAppSymbols--workbook-filter:before{content:\"\\e170\"}.sap-icon-businessSuiteInAppSymbols--icon-update-filter:before{content:\"\\e171\"}.sap-icon-businessSuiteInAppSymbols--cell-lock:before{content:\"\\e172\"}.sap-icon-businessSuiteInAppSymbols--max-container:before{content:\"\\e17b\"}.sap-icon-businessSuiteInAppSymbols--max-interval:before{content:\"\\e17c\"}.sap-icon-businessSuiteInAppSymbols--min-interval:before{content:\"\\e17d\"}.sap-icon-businessSuiteInAppSymbols--cross-order:before{content:\"\\e17e\"}.sap-icon-businessSuiteInAppSymbols--empty-order:before{content:\"\\e17f\"}.sap-icon-businessSuiteInAppSymbols--cross-sequence:before{content:\"\\e180\"}.sap-icon-businessSuiteInAppSymbols--empty-sequence:before{content:\"\\e181\"}.sap-icon-businessSuiteInAppSymbols--cross-union:before{content:\"\\e182\"}.sap-icon-businessSuiteInAppSymbols--empty-union:before{content:\"\\e183\"}.sap-icon-businessSuiteInAppSymbols--cross-target:before{content:\"\\e184\"}.sap-icon-TNT--technicalsystem:before{content:\"\\e000\"}.sap-icon-TNT--systemjava:before{content:\"\\e001\"}.sap-icon-TNT--systemabap:before{content:\"\\e002\"}.sap-icon-TNT--systemrecommendations:before{content:\"\\e003\"}.sap-icon-TNT--system:before{content:\"\\e004\"}.sap-icon-TNT--systemtrex:before{content:\"\\e005\"}.sap-icon-TNT--systemtracks:before{content:\"\\e006\"}.sap-icon-TNT--technicalscenario:before{content:\"\\e007\"}.sap-icon-TNT--technicalinstance:before{content:\"\\e008\"}.sap-icon-TNT--throughput-backlog:before{content:\"\\e009\"}.sap-icon-TNT--batch-processing:before{content:\"\\e00a\"}.sap-icon-TNT--database-consistency:before{content:\"\\e00b\"}.sap-icon-TNT--intermediate-message:before{content:\"\\e00c\"}.sap-icon-TNT--exceptions:before{content:\"\\e00d\"}.sap-icon-TNT--system-HANA:before{content:\"\\e00e\"}.sap-icon-TNT--python:before{content:\"\\e00f\"}.sap-icon-TNT--raise-fault:before{content:\"\\e010\"}.sap-icon-TNT--code1:before{content:\"\\e011\"}.sap-icon-TNT--code2:before{content:\"\\e012\"}.sap-icon-TNT--spike-arrest:before{content:\"\\e013\"}.sap-icon-TNT--verify-API:before{content:\"\\e014\"}.sap-icon-TNT--user:before{content:\"\\e015\"}.sap-icon-TNT--note:before{content:\"\\e016\"}.sap-icon-TNT--throwing-message:before{content:\"\\e017\"}.sap-icon-TNT--catching-message:before{content:\"\\e018\"}.sap-icon-TNT--start-event:before{content:\"\\e019\"}.sap-icon-TNT--end-event:before{content:\"\\e01a\"}.sap-icon-TNT--gateway:before{content:\"\\e01b\"}.sap-icon-TNT--sub-process-marker:before{content:\"\\e01c\"}.sap-icon-TNT--ad-hoc-marker:before{content:\"\\e01d\"}.sap-icon-TNT--manual-task:before{content:\"\\e01e\"}.sap-icon-TNT--send-task:before{content:\"\\e01f\"}.sap-icon-TNT--receive-task:before{content:\"\\e020\"}.sap-icon-TNT--script-task:before{content:\"\\e021\"}.sap-icon-TNT--marquee:before{content:\"\\e022\"}.sap-icon-TNT--data-input-arrow:before{content:\"\\e023\"}.sap-icon-TNT--data-output-arrow:before{content:\"\\e024\"}.sap-icon-TNT--more:before{content:\"\\e025\"}.sap-icon-TNT--pattern:before{content:\"\\e026\"}.sap-icon-TNT--task:before{content:\"\\e027\"}.sap-icon-TNT--arrow:before{content:\"\\e028\"}.sap-icon-TNT--data:before{content:\"\\e029\"}.sap-icon-TNT--data-store:before{content:\"\\e02a\"}.sap-icon-TNT--pool:before{content:\"\\e02b\"}.sap-icon-TNT--swimlane:before{content:\"\\e02c\"}.sap-icon-TNT--select:before{content:\"\\e02d\"}.sap-icon-TNT--cursor:before{content:\"\\e02e\"}.sap-icon-TNT--api:before{content:\"\\e02f\"}.sap-icon-TNT--o-data:before{content:\"\\e030\"}.sap-icon-TNT--javascript:before{content:\"\\e031\"}.sap-icon-TNT--value-mapping:before{content:\"\\e032\"}.sap-icon-TNT--terminate-end-event:before{content:\"\\e033\"}.sap-icon-TNT--parallel-gateway:before{content:\"\\e034\"}.sap-icon-TNT--exclusive-gateway:before{content:\"\\e035\"}.sap-icon-TNT--service-task:before{content:\"\\e036\"}.sap-icon-TNT--workflow-editor:before{content:\"\\e037\"}.sap-icon-TNT--boundary-interrupting:before{content:\"\\e038\"}.sap-icon-TNT--boundary-non-interrupting:before{content:\"\\e039\"}.sap-icon-TNT--block:before{content:\"\\e03a\"}.sap-icon-TNT--constrain-block:before{content:\"\\e03b\"}.sap-icon-TNT--actor:before{content:\"\\e03c\"}.sap-icon-TNT--instance-specification:before{content:\"\\e03d\"}.sap-icon-TNT--value-type:before{content:\"\\e03e\"}.sap-icon-TNT--interface-block:before{content:\"\\e03f\"}.sap-icon-TNT--unit:before{content:\"\\e040\"}.sap-icon-TNT--signal:before{content:\"\\e041\"}.sap-icon-TNT--quantity-kind:before{content:\"\\e042\"}.sap-icon-TNT--item-flow:before{content:\"\\e043\"}.sap-icon-TNT--dependency:before{content:\"\\e044\"}.sap-icon-TNT--generalization:before{content:\"\\e045\"}.sap-icon-TNT--aggregation:before{content:\"\\e046\"}.sap-icon-TNT--composition:before{content:\"\\e047\"}.sap-icon-TNT--association:before{content:\"\\e048\"}.sap-icon-TNT--port:before{content:\"\\e049\"}.sap-icon-TNT--proxy-port:before{content:\"\\e04a\"}.sap-icon-TNT--full-port:before{content:\"\\e04b\"}.sap-icon-TNT--operations:before{content:\"\\e04c\"}.sap-icon-TNT--constrains:before{content:\"\\e04d\"}.sap-icon-TNT--receptions:before{content:\"\\e04e\"}.sap-icon-TNT--references:before{content:\"\\e04f\"}.sap-icon-TNT--parts:before{content:\"\\e050\"}.sap-icon-TNT--flow:before{content:\"\\e051\"}.sap-icon-TNT--values:before{content:\"\\e052\"}.sap-icon-TNT--bill-of-material:before{content:\"\\e053\"}.sap-icon-TNT--document-info-recording:before{content:\"\\e054\"}.sap-icon-TNT--use-case-diagram:before{content:\"\\e055\"}.sap-icon-TNT--bdd-diagram:before{content:\"\\e056\"}.sap-icon-TNT--requirement-diagram:before{content:\"\\e057\"}.sap-icon-TNT--package-diagram:before{content:\"\\e058\"}.sap-icon-TNT--internal-block-diagram:before{content:\"\\e059\"}.sap-icon-TNT--requirement-containment-relationship:before{content:\"\\e05a\"}.sap-icon-TNT--use-case:before{content:\"\\e05b\"}.sap-icon-TNT--use-case-extension-point:before{content:\"\\e05c\"}.sap-icon-TNT--communication-path:before{content:\"\\e05d\"}.sap-icon-TNT--note-connection:before{content:\"\\e05e\"}.sap-icon-TNT--subject:before{content:\"\\e05f\"}.sap-icon-TNT--auto-layout:before{content:\"\\e060\"}.sap-icon-TNT--required-interface:before{content:\"\\e061\"}.sap-icon-TNT--provided-interface:before{content:\"\\e062\"}.sap-icon-TNT--sub-content:before{content:\"\\e063\"}.sap-icon-TNT--connector:before{content:\"\\e064\"}.sap-icon-TNT--local-process-call:before{content:\"\\e065\"}.sap-icon-TNT--aggregator:before{content:\"\\e066\"}.sap-icon-TNT--splitter:before{content:\"\\e067\"}.sap-icon-TNT--converter:before{content:\"\\e068\"}.sap-icon-TNT--content-modifier:before{content:\"\\e069\"}.sap-icon-TNT--message-start-event:before{content:\"\\e06a\"}.sap-icon-TNT--message-end-event:before{content:\"\\e06d\"}.sap-icon-TNT--escalation-end-event:before{content:\"\\e06c\"}.sap-icon-TNT--start-timer-event:before{content:\"\\e06d\"}.sap-icon-TNT--error-start-event:before{content:\"\\e06e\"}.sap-icon-TNT--error-end-event:before{content:\"\\e06f\"}.sap-icon-TNT--content-enricher:before{content:\"\\e070\"}.sap-icon-TNT--realization:before{content:\"\\e071\"}.sap-icon-TNT--interface:before{content:\"\\e072\"}.sap-icon-TNT--usiness-capability:before{content:\"\\e073\"}.sap-icon-TNT--progress-group:before{content:\"\\e074\"}.sap-icon-TNT--value-stream:before{content:\"\\e075\"}.sap-icon-TNT--value-flow:before{content:\"\\e076\"}.sap-icon-TNT--application:before{content:\"\\e077\"}.sap-icon-TNT--etl-job:before{content:\"\\e078\"}.sap-icon-TNT--business-service:before{content:\"\\e079\"}.sap-icon-TNT--application-service:before{content:\"\\e07a\"}.sap-icon-TNT--network-node:before{content:\"\\e07b\"}.sap-icon-TNT--network:before{content:\"\\e07c\"}.sap-icon-TNT--deployment-instance:before{content:\"\\e07d\"}.sap-icon-TNT--intranet:before{content:\"\\e07e\"}.sap-icon-TNT--mobile-network:before{content:\"\\e07f\"}.sap-icon-TNT--private-cloud:before{content:\"\\e080\"}.sap-icon-TNT--antenna:before{content:\"\\e081\"}.sap-icon-TNT--firewall:before{content:\"\\e082\"}.sap-icon-TNT--hub:before{content:\"\\e083\"}.sap-icon-TNT--modem:before{content:\"\\e084\"}.sap-icon-TNT--repeater:before{content:\"\\e085\"}.sap-icon-TNT--router:before{content:\"\\e086\"}.sap-icon-TNT--switch:before{content:\"\\e087\"}.sap-icon-TNT--satellite:before{content:\"\\e088\"}.sap-icon-TNT--system-2:before{content:\"\\e089\"}.sap-icon-TNT--status-activating:before{content:\"\\e08a\"}.sap-icon-TNT--status-suspended:before{content:\"\\e08b\"}.sap-icon-TNT--status-suspending:before{content:\"\\e08c\"}.sap-icon-TNT--status-terminated:before{content:\"\\e08d\"}.sap-icon-TNT--status-terminating:before{content:\"\\e08e\"}.sap-icon-TNT--solution-not-licensed:before{content:\"\\e08f\"}.sap-icon-TNT--clear-all-mapping:before{content:\"\\e090\"}.sap-icon-TNT--map-all-fields:before{content:\"\\e091\"}.sap-icon-TNT--indicator:before{content:\"\\e107\"}.sap-icon-TNT--indicator-active:before{content:\"\\e108\"}.sap-icon-TNT--task-optional:before{content:\"\\e109\"}.sap-icon-TNT--task-done:before{content:\"\\e10a\"}[class*=sap-icon].fd-inline-help__trigger{padding:0 .25rem;outline-offset:-.125rem}\n"] }]
73
73
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { glyph: [{
74
74
  type: Input
75
75
  }], font: [{
@@ -85,4 +85,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImpor
85
85
  type: HostBinding,
86
86
  args: ['class.fd-list__navigation-item-icon']
87
87
  }], buildComponentCssClass: [] } });
88
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2xpYi9pY29uL2ljb24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsV0FBVyxFQUNYLEtBQUssRUFHTCxpQkFBaUIsRUFDcEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGFBQWEsRUFBbUIsTUFBTSw0QkFBNEIsQ0FBQztBQUU1RSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxVQUFVLENBQUM7O0FBSTdDLE1BQU0sZ0JBQWdCLEdBQUcsVUFBVSxDQUFDO0FBQ3BDLE1BQU0sVUFBVSxHQUFHLEtBQUssQ0FBQztBQUN6QixNQUFNLCtCQUErQixHQUFHLDJCQUEyQixDQUFDO0FBRXBFOzs7Ozs7R0FNRztBQWNILE1BQU0sT0FBTyxhQUFhO0lBMEJ0QixjQUFjO0lBQ2QsWUFBNEIsVUFBc0I7UUFBdEIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQXJCbEQ7OztXQUdHO1FBRUgsU0FBSSxHQUFhLFdBQVcsQ0FBQztRQVc3Qiw4REFBOEQ7UUFFOUQsd0JBQW1CLEdBQUcsS0FBSyxDQUFDO0lBR3lCLENBQUM7SUFFdEQsY0FBYztJQUNkLFFBQVE7UUFDSixJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRUQsY0FBYztJQUNkLFdBQVc7UUFDUCxJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRUQ7Ozs7T0FJRztJQUVILHNCQUFzQjtRQUNsQixPQUFPO1lBQ0gsSUFBSSxDQUFDLEtBQUs7WUFDVixJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssV0FBVyxDQUFDLENBQUMsQ0FBQyxHQUFHLGdCQUFnQixLQUFLLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRTtZQUNuRixJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssZUFBZSxDQUFDLENBQUMsQ0FBQyxHQUFHLGdCQUFnQixJQUFJLFVBQVUsS0FBSyxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDckcsSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLDJCQUEyQjtnQkFDbkQsQ0FBQyxDQUFDLEdBQUcsZ0JBQWdCLElBQUksK0JBQStCLEtBQUssSUFBSSxDQUFDLEtBQUssRUFBRTtnQkFDekUsQ0FBQyxDQUFDLEVBQUU7U0FDWCxDQUFDO0lBQ04sQ0FBQzs4R0F0RFEsYUFBYTtrR0FBYixhQUFhLHNQQVRYO1lBQ1A7Z0JBQ0ksT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLGFBQWE7YUFDN0I7U0FDSiwrQ0FQUyxFQUFFOztBQXdEWjtJQURDLGFBQWE7Ozs7MkRBVWI7MkZBdERRLGFBQWE7a0JBYnpCLFNBQVM7K0JBQ0ksU0FBUyxZQUNULEVBQUUsYUFFRDt3QkFDUDs0QkFDSSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLGVBQWU7eUJBQzdCO3FCQUNKLGlCQUNjLGlCQUFpQixDQUFDLElBQUksbUJBQ3BCLHVCQUF1QixDQUFDLE1BQU07aUdBTXRDLEtBQUs7c0JBQWIsS0FBSztnQkFPTixJQUFJO3NCQURILEtBQUs7Z0JBS04sS0FBSztzQkFESixLQUFLO2dCQU1OLFNBQVM7c0JBRlIsS0FBSzs7c0JBQ0wsV0FBVzt1QkFBQyxpQkFBaUI7Z0JBSzlCLG1CQUFtQjtzQkFEbEIsV0FBVzt1QkFBQyxxQ0FBcUM7Z0JBc0JsRCxzQkFBc0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBFbGVtZW50UmVmLFxuICAgIEhvc3RCaW5kaW5nLFxuICAgIElucHV0LFxuICAgIE9uQ2hhbmdlcyxcbiAgICBPbkluaXQsXG4gICAgVmlld0VuY2Fwc3VsYXRpb25cbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBhcHBseUNzc0NsYXNzLCBDc3NDbGFzc0J1aWxkZXIgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2Nkay91dGlscyc7XG5pbXBvcnQgeyBOdWxsYWJsZSB9IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY2RrL3V0aWxzJztcbmltcG9ydCB7IEZEX0lDT05fQ09NUE9ORU5UIH0gZnJvbSAnLi90b2tlbnMnO1xuXG5leHBvcnQgdHlwZSBJY29uRm9udCA9ICdTQVAtaWNvbnMnIHwgJ0J1c2luZXNzU3VpdGVJbkFwcFN5bWJvbHMnIHwgJ1NBUC1pY29ucy1UTlQnO1xuXG5jb25zdCBTQVBfSUNPTlNfUFJFRklYID0gJ3NhcC1pY29uJztcbmNvbnN0IFROVF9QUkVGSVggPSAnVE5UJztcbmNvbnN0IEJ1c2luZXNzU3VpdGVJbkFwcFN5bWJvbF9QUkVGSVggPSAnYnVzaW5lc3NTdWl0ZUluQXBwU3ltYm9scyc7XG5cbi8qKlxuICogVGhlIGNvbXBvbmVudCB0aGF0IHJlcHJlc2VudHMgYW4gaWNvbi5cbiAqXG4gKiBgYGBodG1sXG4gKiA8ZmQtaWNvbiBmb250PVwiU0FQLWljb25zLVROVFwiIGdseXBoPVwiZXhjZXB0aW9uc1wiPjwvZmQtaWNvbj5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2ZkLWljb24nLFxuICAgIHRlbXBsYXRlOiBgYCxcbiAgICBzdHlsZVVybHM6IFsnLi9pY29uLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IEZEX0lDT05fQ09NUE9ORU5ULFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IEljb25Db21wb25lbnRcbiAgICAgICAgfVxuICAgIF0sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBJY29uQ29tcG9uZW50IGltcGxlbWVudHMgT25DaGFuZ2VzLCBPbkluaXQsIENzc0NsYXNzQnVpbGRlciB7XG4gICAgLyoqIFRoZSBpY29uIG5hbWUgdG8gZGlzcGxheS4gU2VlIHRoZSBpY29uIHBhZ2UgZm9yIHRoZSBsaXN0IG9mIGljb25zXG4gICAgICogaGVyZTogaHR0cHM6Ly9zYXAuZ2l0aHViLmlvL2Z1bmRhbWVudGFsLW5neC9pY29uXG4gICAgICogKi9cbiAgICBASW5wdXQoKSBnbHlwaDogYW55O1xuXG4gICAgLyoqXG4gICAgICogVGhlIGljb24gZm9udFxuICAgICAqIE9wdGlvbnMgaW5jbHVkZTogJ1NBUC1pY29ucycsICdCdXNpbmVzc1N1aXRlSW5BcHBTeW1ib2xzJyBhbmQgJ1NBUC1pY29ucy1UTlQnXG4gICAgICovXG4gICAgQElucHV0KClcbiAgICBmb250OiBJY29uRm9udCA9ICdTQVAtaWNvbnMnO1xuXG4gICAgLyoqIHVzZXIncyBjdXN0b20gY2xhc3NlcyAqL1xuICAgIEBJbnB1dCgpXG4gICAgY2xhc3M6IHN0cmluZztcblxuICAgIC8qKiBBcmlhLWxhYmVsIGZvciBJY29uLiAqL1xuICAgIEBJbnB1dCgpXG4gICAgQEhvc3RCaW5kaW5nKCdhdHRyLmFyaWEtbGFiZWwnKVxuICAgIGFyaWFMYWJlbDogTnVsbGFibGU8c3RyaW5nPjtcblxuICAgIC8qKiBXaGV0aGVyIG9yIG5vdCB0aGlzIGljb24gaXMgZm9yIGEgbGlzdCBuYXZpZ2F0aW9uIGl0ZW0uICovXG4gICAgQEhvc3RCaW5kaW5nKCdjbGFzcy5mZC1saXN0X19uYXZpZ2F0aW9uLWl0ZW0taWNvbicpXG4gICAgX25hdmlnYXRpb25JdGVtSWNvbiA9IGZhbHNlO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgcmVhZG9ubHkgZWxlbWVudFJlZjogRWxlbWVudFJlZikge31cblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuYnVpbGRDb21wb25lbnRDc3NDbGFzcygpO1xuICAgIH1cblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgbmdPbkNoYW5nZXMoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuYnVpbGRDb21wb25lbnRDc3NDbGFzcygpO1xuICAgIH1cblxuICAgIC8qKiBAaGlkZGVuXG4gICAgICogQ3NzQ2xhc3NCdWlsZGVyIGludGVyZmFjZSBpbXBsZW1lbnRhdGlvblxuICAgICAqIGZ1bmN0aW9uIG11c3QgcmV0dXJuIHNpbmdsZSBzdHJpbmdcbiAgICAgKiBmdW5jdGlvbiBpcyByZXNwb25zaWJsZSBmb3Igb3JkZXIgd2hpY2ggY3NzIGNsYXNzZXMgYXJlIGFwcGxpZWRcbiAgICAgKi9cbiAgICBAYXBwbHlDc3NDbGFzc1xuICAgIGJ1aWxkQ29tcG9uZW50Q3NzQ2xhc3MoKTogc3RyaW5nW10ge1xuICAgICAgICByZXR1cm4gW1xuICAgICAgICAgICAgdGhpcy5jbGFzcyxcbiAgICAgICAgICAgIHRoaXMuZ2x5cGggJiYgdGhpcy5mb250ID09PSAnU0FQLWljb25zJyA/IGAke1NBUF9JQ09OU19QUkVGSVh9LS0ke3RoaXMuZ2x5cGh9YCA6ICcnLFxuICAgICAgICAgICAgdGhpcy5nbHlwaCAmJiB0aGlzLmZvbnQgPT09ICdTQVAtaWNvbnMtVE5UJyA/IGAke1NBUF9JQ09OU19QUkVGSVh9LSR7VE5UX1BSRUZJWH0tLSR7dGhpcy5nbHlwaH1gIDogJycsXG4gICAgICAgICAgICB0aGlzLmdseXBoICYmIHRoaXMuZm9udCA9PT0gJ0J1c2luZXNzU3VpdGVJbkFwcFN5bWJvbHMnXG4gICAgICAgICAgICAgICAgPyBgJHtTQVBfSUNPTlNfUFJFRklYfS0ke0J1c2luZXNzU3VpdGVJbkFwcFN5bWJvbF9QUkVGSVh9LS0ke3RoaXMuZ2x5cGh9YFxuICAgICAgICAgICAgICAgIDogJydcbiAgICAgICAgXTtcbiAgICB9XG59XG4iXX0=
88
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2xpYi9pY29uL2ljb24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsV0FBVyxFQUNYLEtBQUssRUFHTCxpQkFBaUIsRUFDcEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUE2QixhQUFhLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUN0RixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxVQUFVLENBQUM7O0FBSTdDLE1BQU0sZ0JBQWdCLEdBQUcsVUFBVSxDQUFDO0FBQ3BDLE1BQU0sVUFBVSxHQUFHLEtBQUssQ0FBQztBQUN6QixNQUFNLCtCQUErQixHQUFHLDJCQUEyQixDQUFDO0FBRXBFOzs7Ozs7R0FNRztBQWVILE1BQU0sT0FBTyxhQUFhO0lBMEJ0QixjQUFjO0lBQ2QsWUFBNEIsVUFBc0I7UUFBdEIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQXJCbEQ7OztXQUdHO1FBRUgsU0FBSSxHQUFhLFdBQVcsQ0FBQztRQVc3Qiw4REFBOEQ7UUFFOUQsd0JBQW1CLEdBQUcsS0FBSyxDQUFDO0lBR3lCLENBQUM7SUFFdEQsY0FBYztJQUNkLFFBQVE7UUFDSixJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRUQsY0FBYztJQUNkLFdBQVc7UUFDUCxJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRUQ7Ozs7T0FJRztJQUVILHNCQUFzQjtRQUNsQixPQUFPO1lBQ0gsSUFBSSxDQUFDLEtBQUs7WUFDVixJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssV0FBVyxDQUFDLENBQUMsQ0FBQyxHQUFHLGdCQUFnQixLQUFLLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRTtZQUNuRixJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssZUFBZSxDQUFDLENBQUMsQ0FBQyxHQUFHLGdCQUFnQixJQUFJLFVBQVUsS0FBSyxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDckcsSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLDJCQUEyQjtnQkFDbkQsQ0FBQyxDQUFDLEdBQUcsZ0JBQWdCLElBQUksK0JBQStCLEtBQUssSUFBSSxDQUFDLEtBQUssRUFBRTtnQkFDekUsQ0FBQyxDQUFDLEVBQUU7U0FDWCxDQUFDO0lBQ04sQ0FBQzs4R0F0RFEsYUFBYTtrR0FBYixhQUFhLDBRQVZYO1lBQ1A7Z0JBQ0ksT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLGFBQWE7YUFDN0I7U0FDSiwrQ0FQUyxFQUFFOztBQXlEWjtJQURDLGFBQWE7Ozs7MkRBVWI7MkZBdERRLGFBQWE7a0JBZHpCLFNBQVM7K0JBQ0ksU0FBUyxZQUNULEVBQUUsYUFFRDt3QkFDUDs0QkFDSSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLGVBQWU7eUJBQzdCO3FCQUNKLGlCQUNjLGlCQUFpQixDQUFDLElBQUksbUJBQ3BCLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSTtpR0FNUCxLQUFLO3NCQUFiLEtBQUs7Z0JBT04sSUFBSTtzQkFESCxLQUFLO2dCQUtOLEtBQUs7c0JBREosS0FBSztnQkFNTixTQUFTO3NCQUZSLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsaUJBQWlCO2dCQUs5QixtQkFBbUI7c0JBRGxCLFdBQVc7dUJBQUMscUNBQXFDO2dCQXNCbEQsc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBDb21wb25lbnQsXG4gICAgRWxlbWVudFJlZixcbiAgICBIb3N0QmluZGluZyxcbiAgICBJbnB1dCxcbiAgICBPbkNoYW5nZXMsXG4gICAgT25Jbml0LFxuICAgIFZpZXdFbmNhcHN1bGF0aW9uXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ3NzQ2xhc3NCdWlsZGVyLCBOdWxsYWJsZSwgYXBwbHlDc3NDbGFzcyB9IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY2RrL3V0aWxzJztcbmltcG9ydCB7IEZEX0lDT05fQ09NUE9ORU5UIH0gZnJvbSAnLi90b2tlbnMnO1xuXG5leHBvcnQgdHlwZSBJY29uRm9udCA9ICdTQVAtaWNvbnMnIHwgJ0J1c2luZXNzU3VpdGVJbkFwcFN5bWJvbHMnIHwgJ1NBUC1pY29ucy1UTlQnO1xuXG5jb25zdCBTQVBfSUNPTlNfUFJFRklYID0gJ3NhcC1pY29uJztcbmNvbnN0IFROVF9QUkVGSVggPSAnVE5UJztcbmNvbnN0IEJ1c2luZXNzU3VpdGVJbkFwcFN5bWJvbF9QUkVGSVggPSAnYnVzaW5lc3NTdWl0ZUluQXBwU3ltYm9scyc7XG5cbi8qKlxuICogVGhlIGNvbXBvbmVudCB0aGF0IHJlcHJlc2VudHMgYW4gaWNvbi5cbiAqXG4gKiBgYGBodG1sXG4gKiA8ZmQtaWNvbiBmb250PVwiU0FQLWljb25zLVROVFwiIGdseXBoPVwiZXhjZXB0aW9uc1wiPjwvZmQtaWNvbj5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2ZkLWljb24nLFxuICAgIHRlbXBsYXRlOiBgYCxcbiAgICBzdHlsZVVybHM6IFsnLi9pY29uLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IEZEX0lDT05fQ09NUE9ORU5ULFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IEljb25Db21wb25lbnRcbiAgICAgICAgfVxuICAgIF0sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBzdGFuZGFsb25lOiB0cnVlXG59KVxuZXhwb3J0IGNsYXNzIEljb25Db21wb25lbnQgaW1wbGVtZW50cyBPbkNoYW5nZXMsIE9uSW5pdCwgQ3NzQ2xhc3NCdWlsZGVyIHtcbiAgICAvKiogVGhlIGljb24gbmFtZSB0byBkaXNwbGF5LiBTZWUgdGhlIGljb24gcGFnZSBmb3IgdGhlIGxpc3Qgb2YgaWNvbnNcbiAgICAgKiBoZXJlOiBodHRwczovL3NhcC5naXRodWIuaW8vZnVuZGFtZW50YWwtbmd4L2ljb25cbiAgICAgKiAqL1xuICAgIEBJbnB1dCgpIGdseXBoOiBhbnk7XG5cbiAgICAvKipcbiAgICAgKiBUaGUgaWNvbiBmb250XG4gICAgICogT3B0aW9ucyBpbmNsdWRlOiAnU0FQLWljb25zJywgJ0J1c2luZXNzU3VpdGVJbkFwcFN5bWJvbHMnIGFuZCAnU0FQLWljb25zLVROVCdcbiAgICAgKi9cbiAgICBASW5wdXQoKVxuICAgIGZvbnQ6IEljb25Gb250ID0gJ1NBUC1pY29ucyc7XG5cbiAgICAvKiogdXNlcidzIGN1c3RvbSBjbGFzc2VzICovXG4gICAgQElucHV0KClcbiAgICBjbGFzczogc3RyaW5nO1xuXG4gICAgLyoqIEFyaWEtbGFiZWwgZm9yIEljb24uICovXG4gICAgQElucHV0KClcbiAgICBASG9zdEJpbmRpbmcoJ2F0dHIuYXJpYS1sYWJlbCcpXG4gICAgYXJpYUxhYmVsOiBOdWxsYWJsZTxzdHJpbmc+O1xuXG4gICAgLyoqIFdoZXRoZXIgb3Igbm90IHRoaXMgaWNvbiBpcyBmb3IgYSBsaXN0IG5hdmlnYXRpb24gaXRlbS4gKi9cbiAgICBASG9zdEJpbmRpbmcoJ2NsYXNzLmZkLWxpc3RfX25hdmlnYXRpb24taXRlbS1pY29uJylcbiAgICBfbmF2aWdhdGlvbkl0ZW1JY29uID0gZmFsc2U7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyByZWFkb25seSBlbGVtZW50UmVmOiBFbGVtZW50UmVmKSB7fVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5idWlsZENvbXBvbmVudENzc0NsYXNzKCk7XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5idWlsZENvbXBvbmVudENzc0NsYXNzKCk7XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW5cbiAgICAgKiBDc3NDbGFzc0J1aWxkZXIgaW50ZXJmYWNlIGltcGxlbWVudGF0aW9uXG4gICAgICogZnVuY3Rpb24gbXVzdCByZXR1cm4gc2luZ2xlIHN0cmluZ1xuICAgICAqIGZ1bmN0aW9uIGlzIHJlc3BvbnNpYmxlIGZvciBvcmRlciB3aGljaCBjc3MgY2xhc3NlcyBhcmUgYXBwbGllZFxuICAgICAqL1xuICAgIEBhcHBseUNzc0NsYXNzXG4gICAgYnVpbGRDb21wb25lbnRDc3NDbGFzcygpOiBzdHJpbmdbXSB7XG4gICAgICAgIHJldHVybiBbXG4gICAgICAgICAgICB0aGlzLmNsYXNzLFxuICAgICAgICAgICAgdGhpcy5nbHlwaCAmJiB0aGlzLmZvbnQgPT09ICdTQVAtaWNvbnMnID8gYCR7U0FQX0lDT05TX1BSRUZJWH0tLSR7dGhpcy5nbHlwaH1gIDogJycsXG4gICAgICAgICAgICB0aGlzLmdseXBoICYmIHRoaXMuZm9udCA9PT0gJ1NBUC1pY29ucy1UTlQnID8gYCR7U0FQX0lDT05TX1BSRUZJWH0tJHtUTlRfUFJFRklYfS0tJHt0aGlzLmdseXBofWAgOiAnJyxcbiAgICAgICAgICAgIHRoaXMuZ2x5cGggJiYgdGhpcy5mb250ID09PSAnQnVzaW5lc3NTdWl0ZUluQXBwU3ltYm9scydcbiAgICAgICAgICAgICAgICA/IGAke1NBUF9JQ09OU19QUkVGSVh9LSR7QnVzaW5lc3NTdWl0ZUluQXBwU3ltYm9sX1BSRUZJWH0tLSR7dGhpcy5nbHlwaH1gXG4gICAgICAgICAgICAgICAgOiAnJ1xuICAgICAgICBdO1xuICAgIH1cbn1cbiJdfQ==
@@ -1,18 +1,16 @@
1
1
  import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
2
  import { IconComponent } from './icon.component';
4
3
  import * as i0 from "@angular/core";
5
4
  export class IconModule {
6
5
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.0", ngImport: i0, type: IconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] }); }
8
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: IconModule, imports: [CommonModule] }); }
6
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.0", ngImport: i0, type: IconModule, imports: [IconComponent], exports: [IconComponent] }); }
7
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: IconModule }); }
9
8
  }
10
9
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.0", ngImport: i0, type: IconModule, decorators: [{
11
10
  type: NgModule,
12
11
  args: [{
13
- imports: [CommonModule],
14
- exports: [IconComponent],
15
- declarations: [IconComponent]
12
+ imports: [IconComponent],
13
+ exports: [IconComponent]
16
14
  }]
17
15
  }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2xpYi9pY29uL2ljb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFPakQsTUFBTSxPQUFPLFVBQVU7OEdBQVYsVUFBVTsrR0FBVixVQUFVLGlCQUZKLGFBQWEsYUFGbEIsWUFBWSxhQUNaLGFBQWE7K0dBR2QsVUFBVSxZQUpULFlBQVk7OzJGQUliLFVBQVU7a0JBTHRCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixPQUFPLEVBQUUsQ0FBQyxhQUFhLENBQUM7b0JBQ3hCLFlBQVksRUFBRSxDQUFDLGFBQWEsQ0FBQztpQkFDaEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgSWNvbkNvbXBvbmVudCB9IGZyb20gJy4vaWNvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtJY29uQ29tcG9uZW50XSxcbiAgICBkZWNsYXJhdGlvbnM6IFtJY29uQ29tcG9uZW50XVxufSlcbmV4cG9ydCBjbGFzcyBJY29uTW9kdWxlIHt9XG4iXX0=
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2xpYi9pY29uL2ljb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDOztBQU1qRCxNQUFNLE9BQU8sVUFBVTs4R0FBVixVQUFVOytHQUFWLFVBQVUsWUFIVCxhQUFhLGFBQ2IsYUFBYTsrR0FFZCxVQUFVOzsyRkFBVixVQUFVO2tCQUp0QixRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLGFBQWEsQ0FBQztvQkFDeEIsT0FBTyxFQUFFLENBQUMsYUFBYSxDQUFDO2lCQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEljb25Db21wb25lbnQgfSBmcm9tICcuL2ljb24uY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbSWNvbkNvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW0ljb25Db21wb25lbnRdXG59KVxuZXhwb3J0IGNsYXNzIEljb25Nb2R1bGUge31cbiJdfQ==