@fundamental-ngx/core 0.58.0 → 0.58.1

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.
@@ -1,5 +1,8 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { ElementRef, InjectionToken } from '@angular/core';
3
+ import { HasElementRef } from '@fundamental-ngx/cdk/utils';
4
+ import * as rxjs from 'rxjs';
5
+ import { FdLanguage, TranslationResolver } from '@fundamental-ngx/i18n';
3
6
 
4
7
  type BusyIndicatorSize = 's' | 'm' | 'l';
5
8
  declare class BusyIndicatorComponent {
@@ -22,6 +25,14 @@ declare class BusyIndicatorComponent {
22
25
  /** @hidden */
23
26
  protected readonly fakeFocusElement: _angular_core.Signal<ElementRef<any> | undefined>;
24
27
  /** @hidden */
28
+ protected readonly _lang$: rxjs.Observable<FdLanguage>;
29
+ /** @hidden */
30
+ protected readonly _translationResolver: TranslationResolver;
31
+ /** @hidden */
32
+ protected readonly _ariaValueText: _angular_core.Signal<string>;
33
+ /** @hidden */
34
+ protected readonly _titleValue: _angular_core.Signal<string>;
35
+ /** @hidden */
25
36
  private readonly _elementRef;
26
37
  /** @hidden If focus escapes busy container focus element after wrapped content */
27
38
  protected hostFocusChangeHandler(event: KeyboardEvent): void;
@@ -32,11 +43,11 @@ declare class BusyIndicatorComponent {
32
43
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BusyIndicatorComponent, "fd-busy-indicator", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "block": { "alias": "block"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaValueText": { "alias": "ariaValueText"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLive": { "alias": "ariaLive"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
33
44
  }
34
45
 
35
- declare class BusyIndicatorExtendedDirective {
46
+ declare class BusyIndicatorExtendedDirective implements HasElementRef {
36
47
  /** @hidden */
37
- protected readonly busyIndicator: _angular_core.Signal<BusyIndicatorComponent | undefined>;
48
+ readonly elementRef: ElementRef<any>;
38
49
  /** @hidden */
39
- private readonly _elementRef;
50
+ protected readonly busyIndicator: _angular_core.Signal<BusyIndicatorComponent | undefined>;
40
51
  /** @hidden */
41
52
  constructor();
42
53
  /** @hidden */
@@ -1,7 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, input, viewChild, inject, ElementRef, ChangeDetectionStrategy, ViewEncapsulation, Component, contentChild, effect, Directive, NgModule } from '@angular/core';
3
3
  import { TAB } from '@angular/cdk/keycodes';
4
+ import { toSignal } from '@angular/core/rxjs-interop';
4
5
  import { KeyUtil } from '@fundamental-ngx/cdk/utils';
6
+ import { FD_LANGUAGE, TranslationResolver } from '@fundamental-ngx/i18n';
7
+ import { map } from 'rxjs';
5
8
 
6
9
  const FD_BUSY_INDICATOR_COMPONENT = new InjectionToken('FdBusyIndicatorComponent');
7
10
 
@@ -26,6 +29,14 @@ class BusyIndicatorComponent {
26
29
  /** @hidden */
27
30
  this.fakeFocusElement = viewChild('fakeFocusElement', ...(ngDevMode ? [{ debugName: "fakeFocusElement" }] : []));
28
31
  /** @hidden */
32
+ this._lang$ = inject(FD_LANGUAGE);
33
+ /** @hidden */
34
+ this._translationResolver = inject(TranslationResolver);
35
+ /** @hidden */
36
+ this._ariaValueText = toSignal(this._lang$.pipe(map((lang) => this._translationResolver.resolve(lang, 'coreBusyIndicator.defaultAriaValueText'))), { initialValue: 'Busy' });
37
+ /** @hidden */
38
+ this._titleValue = toSignal(this._lang$.pipe(map((lang) => this._translationResolver.resolve(lang, 'coreBusyIndicator.defaultTitle'))), { initialValue: 'Please wait' });
39
+ /** @hidden */
29
40
  this._elementRef = inject(ElementRef);
30
41
  }
31
42
  /** @hidden If focus escapes busy container focus element after wrapped content */
@@ -46,7 +57,7 @@ class BusyIndicatorComponent {
46
57
  }
47
58
  }
48
59
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: BusyIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
49
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.4", type: BusyIndicatorComponent, isStandalone: true, selector: "fd-busy-indicator", inputs: { loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, block: { classPropertyName: "block", publicName: "block", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, ariaValueText: { classPropertyName: "ariaValueText", publicName: "ariaValueText", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, ariaLive: { classPropertyName: "ariaLive", publicName: "ariaLive", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keydown": "hostFocusChangeHandler($event)" }, properties: { "attr.role": "loading() ? 'progressbar' : 'presentation'", "attr.tabindex": "loading() ? 0 : -1", "attr.aria-busy": "loading()", "attr.aria-live": "ariaLive()", "attr.aria-label": "ariaLabel()", "attr.aria-valuetext": "ariaValueText()", "attr.aria-valuemin": "0", "attr.aria-valuemax": "100", "attr.title": "title()", "class.fd-busy-indicator__container": "true", "class.fd-busy-indicator__container--inline": "!block()" } }, providers: [
60
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.4", type: BusyIndicatorComponent, isStandalone: true, selector: "fd-busy-indicator", inputs: { loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, block: { classPropertyName: "block", publicName: "block", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, ariaValueText: { classPropertyName: "ariaValueText", publicName: "ariaValueText", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, ariaLive: { classPropertyName: "ariaLive", publicName: "ariaLive", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keydown": "hostFocusChangeHandler($event)" }, properties: { "attr.role": "loading() ? 'progressbar' : 'presentation'", "attr.tabindex": "loading() ? 0 : -1", "attr.aria-busy": "loading()", "attr.aria-live": "ariaLive()", "attr.aria-label": "ariaLabel()", "attr.aria-valuetext": "ariaValueText() || _ariaValueText()", "attr.aria-valuemin": "0", "attr.aria-valuemax": "100", "attr.title": "title() || _titleValue()", "class.fd-busy-indicator__container": "true", "class.fd-busy-indicator__container--inline": "!block()" } }, providers: [
50
61
  {
51
62
  provide: FD_BUSY_INDICATOR_COMPONENT,
52
63
  useExisting: BusyIndicatorComponent
@@ -66,26 +77,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
66
77
  '[attr.aria-busy]': 'loading()',
67
78
  '[attr.aria-live]': 'ariaLive()',
68
79
  '[attr.aria-label]': 'ariaLabel()',
69
- '[attr.aria-valuetext]': 'ariaValueText()',
80
+ '[attr.aria-valuetext]': 'ariaValueText() || _ariaValueText()',
70
81
  '[attr.aria-valuemin]': '0',
71
82
  '[attr.aria-valuemax]': '100',
72
- '[attr.title]': 'title()',
83
+ '[attr.title]': 'title() || _titleValue()',
73
84
  '[class.fd-busy-indicator__container]': 'true',
74
85
  '[class.fd-busy-indicator__container--inline]': '!block()',
75
86
  '(keydown)': 'hostFocusChangeHandler($event)'
76
- }, imports: [], template: "<ng-content></ng-content>\n@if (loading()) {\n <div\n #busyIndicator\n class=\"fd-busy-indicator\"\n [class.fd-busy-indicator--l]=\"size() === 'l'\"\n [class.fd-busy-indicator--m]=\"size() === 'm'\"\n [class.fd-busy-indicator--s]=\"size() === 's'\"\n >\n <div class=\"fd-busy-indicator__circle\"></div>\n <div class=\"fd-busy-indicator__circle\"></div>\n <div class=\"fd-busy-indicator__circle\"></div>\n </div>\n @if (label()) {\n <span class=\"fd-busy-indicator-extended__label\">{{ label() }}</span>\n }\n <div class=\"fd-busy-indicator__overlay\"></div>\n <div #fakeFocusElement tabindex=\"0\" aria-hidden=\"true\" (focusin)=\"fakeElementFocusHandler($event)\"></div>\n}\n", styles: [".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\"-1\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\n/*! Bundled license information:\n\nfundamental-styles/dist/busy-indicator.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"] }]
87
+ }, template: "<ng-content></ng-content>\n@if (loading()) {\n <div\n #busyIndicator\n class=\"fd-busy-indicator\"\n [class.fd-busy-indicator--l]=\"size() === 'l'\"\n [class.fd-busy-indicator--m]=\"size() === 'm'\"\n [class.fd-busy-indicator--s]=\"size() === 's'\"\n >\n <div class=\"fd-busy-indicator__circle\"></div>\n <div class=\"fd-busy-indicator__circle\"></div>\n <div class=\"fd-busy-indicator__circle\"></div>\n </div>\n @if (label()) {\n <span class=\"fd-busy-indicator-extended__label\">{{ label() }}</span>\n }\n <div class=\"fd-busy-indicator__overlay\"></div>\n <div #fakeFocusElement tabindex=\"0\" aria-hidden=\"true\" (focusin)=\"fakeElementFocusHandler($event)\"></div>\n}\n", styles: [".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\"-1\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\n/*! Bundled license information:\n\nfundamental-styles/dist/busy-indicator.css:\n (*!\n * Fundamental Library Styles v0.40.1\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\n *)\n*/\n"] }]
77
88
  }] });
78
89
 
79
90
  const messageToastClass = 'fd-message-toast';
80
91
  class BusyIndicatorExtendedDirective {
81
92
  /** @hidden */
82
93
  constructor() {
94
+ /** @hidden */
95
+ this.elementRef = inject(ElementRef);
83
96
  /** @hidden */
84
97
  this.busyIndicator = contentChild(FD_BUSY_INDICATOR_COMPONENT, ...(ngDevMode ? [{ debugName: "busyIndicator", read: BusyIndicatorComponent }] : [{
85
98
  read: BusyIndicatorComponent
86
99
  }]));
87
- /** @hidden */
88
- this._elementRef = inject(ElementRef);
89
100
  effect(() => {
90
101
  const indicator = this.busyIndicator();
91
102
  if (indicator) {
@@ -99,7 +110,7 @@ class BusyIndicatorExtendedDirective {
99
110
  if (!hasLabel) {
100
111
  return;
101
112
  }
102
- const classList = this._elementRef.nativeElement.parentElement?.classList;
113
+ const classList = this.elementRef.nativeElement.parentElement?.classList;
103
114
  if (classList) {
104
115
  classList.add('fd-busy-indicator-extended');
105
116
  if (classList.contains(messageToastClass)) {
@@ -1 +1 @@
1
- {"version":3,"file":"fundamental-ngx-core-busy-indicator.mjs","sources":["../tmp-esm2022/busy-indicator/tokens.js","../tmp-esm2022/busy-indicator/busy-indicator.component.js","../tmp-esm2022/busy-indicator/busy-indicator-extended/busy-indicator-extended.directive.js","../tmp-esm2022/busy-indicator/busy-indicator.module.js","../tmp-esm2022/busy-indicator/fundamental-ngx-core-busy-indicator.js"],"sourcesContent":["import { InjectionToken } from '@angular/core';\nexport const FD_BUSY_INDICATOR_COMPONENT = new InjectionToken('FdBusyIndicatorComponent');\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL3Rva2Vucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRS9DLE1BQU0sQ0FBQyxNQUFNLDJCQUEyQixHQUFHLElBQUksY0FBYyxDQUFDLDBCQUEwQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgRkRfQlVTWV9JTkRJQ0FUT1JfQ09NUE9ORU5UID0gbmV3IEluamVjdGlvblRva2VuKCdGZEJ1c3lJbmRpY2F0b3JDb21wb25lbnQnKTtcbiJdfQ==","import { TAB } from '@angular/cdk/keycodes';\nimport { ChangeDetectionStrategy, Component, ElementRef, ViewEncapsulation, inject, input, viewChild } from '@angular/core';\nimport { KeyUtil } from '@fundamental-ngx/cdk/utils';\nimport { FD_BUSY_INDICATOR_COMPONENT } from './tokens';\nimport * as i0 from \"@angular/core\";\nexport class BusyIndicatorComponent {\n constructor() {\n /** Whether to display the loading indicator animation. */\n this.loading = input(false, ...(ngDevMode ? [{ debugName: \"loading\" }] : []));\n /** The size of the loading indicator, default will be medium */\n this.size = input('m', ...(ngDevMode ? [{ debugName: \"size\" }] : []));\n /** Whether to use loader as block element */\n this.block = input(false, ...(ngDevMode ? [{ debugName: \"block\" }] : []));\n /** Aria label attribute value. */\n this.ariaLabel = input(null, ...(ngDevMode ? [{ debugName: \"ariaLabel\" }] : []));\n /** Aria-valuetext attribute value. */\n this.ariaValueText = input(null, ...(ngDevMode ? [{ debugName: \"ariaValueText\" }] : []));\n /** title attribute value for tooltip. */\n this.title = input(undefined, ...(ngDevMode ? [{ debugName: \"title\" }] : []));\n /** add loading label value */\n this.label = input(undefined, ...(ngDevMode ? [{ debugName: \"label\" }] : []));\n /** Aria live attribute value. */\n this.ariaLive = input(null, ...(ngDevMode ? [{ debugName: \"ariaLive\" }] : []));\n /** @hidden */\n this.fakeFocusElement = viewChild('fakeFocusElement', ...(ngDevMode ? [{ debugName: \"fakeFocusElement\" }] : []));\n /** @hidden */\n this._elementRef = inject(ElementRef);\n }\n /** @hidden If focus escapes busy container focus element after wrapped content */\n hostFocusChangeHandler(event) {\n if (this.loading() && KeyUtil.isKeyCode(event, TAB) && !event.shiftKey) {\n const element = this.fakeFocusElement();\n if (element) {\n element.nativeElement.focus();\n }\n }\n }\n /** @hidden If busy container is navigated as \"previous focusable element\",\n * focus busy indicator to prevent from focusing wrapped content */\n fakeElementFocusHandler(event) {\n if (this.loading() && event.relatedTarget !== this._elementRef.nativeElement) {\n event.stopPropagation();\n this._elementRef.nativeElement.focus();\n }\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"17.0.0\", version: \"20.1.4\", type: BusyIndicatorComponent, isStandalone: true, selector: \"fd-busy-indicator\", inputs: { loading: { classPropertyName: \"loading\", publicName: \"loading\", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: \"size\", publicName: \"size\", isSignal: true, isRequired: false, transformFunction: null }, block: { classPropertyName: \"block\", publicName: \"block\", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: \"ariaLabel\", publicName: \"ariaLabel\", isSignal: true, isRequired: false, transformFunction: null }, ariaValueText: { classPropertyName: \"ariaValueText\", publicName: \"ariaValueText\", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: \"title\", publicName: \"title\", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: \"label\", publicName: \"label\", isSignal: true, isRequired: false, transformFunction: null }, ariaLive: { classPropertyName: \"ariaLive\", publicName: \"ariaLive\", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { \"keydown\": \"hostFocusChangeHandler($event)\" }, properties: { \"attr.role\": \"loading() ? 'progressbar' : 'presentation'\", \"attr.tabindex\": \"loading() ? 0 : -1\", \"attr.aria-busy\": \"loading()\", \"attr.aria-live\": \"ariaLive()\", \"attr.aria-label\": \"ariaLabel()\", \"attr.aria-valuetext\": \"ariaValueText()\", \"attr.aria-valuemin\": \"0\", \"attr.aria-valuemax\": \"100\", \"attr.title\": \"title()\", \"class.fd-busy-indicator__container\": \"true\", \"class.fd-busy-indicator__container--inline\": \"!block()\" } }, providers: [\n {\n provide: FD_BUSY_INDICATOR_COMPONENT,\n useExisting: BusyIndicatorComponent\n }\n ], viewQueries: [{ propertyName: \"fakeFocusElement\", first: true, predicate: [\"fakeFocusElement\"], descendants: true, isSignal: true }], ngImport: i0, template: \"<ng-content></ng-content>\\n@if (loading()) {\\n <div\\n #busyIndicator\\n class=\\\"fd-busy-indicator\\\"\\n [class.fd-busy-indicator--l]=\\\"size() === 'l'\\\"\\n [class.fd-busy-indicator--m]=\\\"size() === 'm'\\\"\\n [class.fd-busy-indicator--s]=\\\"size() === 's'\\\"\\n >\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n </div>\\n @if (label()) {\\n <span class=\\\"fd-busy-indicator-extended__label\\\">{{ label() }}</span>\\n }\\n <div class=\\\"fd-busy-indicator__overlay\\\"></div>\\n <div #fakeFocusElement tabindex=\\\"0\\\" aria-hidden=\\\"true\\\" (focusin)=\\\"fakeElementFocusHandler($event)\\\"></div>\\n}\\n\", styles: [\".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\\\"-1\\\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\\n/*! Bundled license information:\\n\\nfundamental-styles/dist/busy-indicator.css:\\n (*!\\n * Fundamental Library Styles v0.40.1\\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\\n *)\\n*/\\n\"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorComponent, decorators: [{\n type: Component,\n args: [{ selector: 'fd-busy-indicator', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, providers: [\n {\n provide: FD_BUSY_INDICATOR_COMPONENT,\n useExisting: BusyIndicatorComponent\n }\n ], host: {\n '[attr.role]': \"loading() ? 'progressbar' : 'presentation'\",\n '[attr.tabindex]': 'loading() ? 0 : -1',\n '[attr.aria-busy]': 'loading()',\n '[attr.aria-live]': 'ariaLive()',\n '[attr.aria-label]': 'ariaLabel()',\n '[attr.aria-valuetext]': 'ariaValueText()',\n '[attr.aria-valuemin]': '0',\n '[attr.aria-valuemax]': '100',\n '[attr.title]': 'title()',\n '[class.fd-busy-indicator__container]': 'true',\n '[class.fd-busy-indicator__container--inline]': '!block()',\n '(keydown)': 'hostFocusChangeHandler($event)'\n }, imports: [], template: \"<ng-content></ng-content>\\n@if (loading()) {\\n <div\\n #busyIndicator\\n class=\\\"fd-busy-indicator\\\"\\n [class.fd-busy-indicator--l]=\\\"size() === 'l'\\\"\\n [class.fd-busy-indicator--m]=\\\"size() === 'm'\\\"\\n [class.fd-busy-indicator--s]=\\\"size() === 's'\\\"\\n >\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n </div>\\n @if (label()) {\\n <span class=\\\"fd-busy-indicator-extended__label\\\">{{ label() }}</span>\\n }\\n <div class=\\\"fd-busy-indicator__overlay\\\"></div>\\n <div #fakeFocusElement tabindex=\\\"0\\\" aria-hidden=\\\"true\\\" (focusin)=\\\"fakeElementFocusHandler($event)\\\"></div>\\n}\\n\", styles: [\".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\\\"-1\\\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\\n/*! Bundled license information:\\n\\nfundamental-styles/dist/busy-indicator.css:\\n (*!\\n * Fundamental Library Styles v0.40.1\\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\\n *)\\n*/\\n\"] }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvY29yZS9idXN5LWluZGljYXRvci9idXN5LWluZGljYXRvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFNUMsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsVUFBVSxFQUNWLGlCQUFpQixFQUNqQixNQUFNLEVBQ04sS0FBSyxFQUNMLFNBQVMsRUFDWixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDckQsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sVUFBVSxDQUFDOztBQWlDdkQsTUFBTSxPQUFPLHNCQUFzQjtJQTdCbkM7UUE4QkksMERBQTBEO1FBQ2pELFlBQU8sR0FBRyxLQUFLLENBQUMsS0FBSyxtREFBQyxDQUFDO1FBRWhDLGdFQUFnRTtRQUN2RCxTQUFJLEdBQUcsS0FBSyxDQUFvQixHQUFHLGdEQUFDLENBQUM7UUFFOUMsNkNBQTZDO1FBQ3BDLFVBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxpREFBQyxDQUFDO1FBRTlCLGtDQUFrQztRQUN6QixjQUFTLEdBQUcsS0FBSyxDQUFnQixJQUFJLHFEQUFDLENBQUM7UUFFaEQsc0NBQXNDO1FBQzdCLGtCQUFhLEdBQUcsS0FBSyxDQUFnQixJQUFJLHlEQUFDLENBQUM7UUFFcEQseUNBQXlDO1FBQ2hDLFVBQUssR0FBRyxLQUFLLENBQXFCLFNBQVMsaURBQUMsQ0FBQztRQUV0RCw4QkFBOEI7UUFDckIsVUFBSyxHQUFHLEtBQUssQ0FBcUIsU0FBUyxpREFBQyxDQUFDO1FBRXRELGlDQUFpQztRQUN4QixhQUFRLEdBQUcsS0FBSyxDQUF3QyxJQUFJLG9EQUFDLENBQUM7UUFFdkUsY0FBYztRQUNLLHFCQUFnQixHQUFHLFNBQVMsQ0FBYSxrQkFBa0IsNERBQUMsQ0FBQztRQUVoRixjQUFjO1FBQ0csZ0JBQVcsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7S0FvQnJEO0lBbEJHLGtGQUFrRjtJQUN4RSxzQkFBc0IsQ0FBQyxLQUFvQjtRQUNqRCxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsSUFBSSxPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBRSxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNyRSxNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztZQUN4QyxJQUFJLE9BQU8sRUFBRSxDQUFDO2dCQUNWLE9BQU8sQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLENBQUM7WUFDbEMsQ0FBQztRQUNMLENBQUM7SUFDTCxDQUFDO0lBRUQ7dUVBQ21FO0lBQ3pELHVCQUF1QixDQUFDLEtBQWlCO1FBQy9DLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRSxJQUFJLEtBQUssQ0FBQyxhQUFhLEtBQUssSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztZQUMzRSxLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDeEIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLENBQUM7UUFDM0MsQ0FBQztJQUNMLENBQUM7OEdBaERRLHNCQUFzQjtrR0FBdEIsc0JBQXNCLHdqREF0QnBCO1lBQ1A7Z0JBQ0ksT0FBTyxFQUFFLDJCQUEyQjtnQkFDcEMsV0FBVyxFQUFFLHNCQUFzQjthQUN0QztTQUNKLGdLQzVCTCwwdkJBbUJBOzsyRkQwQmEsc0JBQXNCO2tCQTdCbEMsU0FBUzsrQkFDSSxtQkFBbUIsaUJBR2QsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLGFBQ0w7d0JBQ1A7NEJBQ0ksT0FBTyxFQUFFLDJCQUEyQjs0QkFDcEMsV0FBVyx3QkFBd0I7eUJBQ3RDO3FCQUNKLFFBQ0s7d0JBQ0YsYUFBYSxFQUFFLDRDQUE0Qzt3QkFDM0QsaUJBQWlCLEVBQUUsb0JBQW9CO3dCQUN2QyxrQkFBa0IsRUFBRSxXQUFXO3dCQUMvQixrQkFBa0IsRUFBRSxZQUFZO3dCQUNoQyxtQkFBbUIsRUFBRSxhQUFhO3dCQUNsQyx1QkFBdUIsRUFBRSxpQkFBaUI7d0JBQzFDLHNCQUFzQixFQUFFLEdBQUc7d0JBQzNCLHNCQUFzQixFQUFFLEtBQUs7d0JBQzdCLGNBQWMsRUFBRSxTQUFTO3dCQUN6QixzQ0FBc0MsRUFBRSxNQUFNO3dCQUM5Qyw4Q0FBOEMsRUFBRSxVQUFVO3dCQUMxRCxXQUFXLEVBQUUsZ0NBQWdDO3FCQUNoRCxXQUNRLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBUQUIgfSBmcm9tICdAYW5ndWxhci9jZGsva2V5Y29kZXMnO1xuXG5pbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBFbGVtZW50UmVmLFxuICAgIFZpZXdFbmNhcHN1bGF0aW9uLFxuICAgIGluamVjdCxcbiAgICBpbnB1dCxcbiAgICB2aWV3Q2hpbGRcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBLZXlVdGlsIH0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jZGsvdXRpbHMnO1xuaW1wb3J0IHsgRkRfQlVTWV9JTkRJQ0FUT1JfQ09NUE9ORU5UIH0gZnJvbSAnLi90b2tlbnMnO1xuXG5leHBvcnQgdHlwZSBCdXN5SW5kaWNhdG9yU2l6ZSA9ICdzJyB8ICdtJyB8ICdsJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdmZC1idXN5LWluZGljYXRvcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2J1c3ktaW5kaWNhdG9yLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybDogJy4vYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50LnNjc3MnLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogRkRfQlVTWV9JTkRJQ0FUT1JfQ09NUE9ORU5ULFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IEJ1c3lJbmRpY2F0b3JDb21wb25lbnRcbiAgICAgICAgfVxuICAgIF0sXG4gICAgaG9zdDoge1xuICAgICAgICAnW2F0dHIucm9sZV0nOiBcImxvYWRpbmcoKSA/ICdwcm9ncmVzc2JhcicgOiAncHJlc2VudGF0aW9uJ1wiLFxuICAgICAgICAnW2F0dHIudGFiaW5kZXhdJzogJ2xvYWRpbmcoKSA/IDAgOiAtMScsXG4gICAgICAgICdbYXR0ci5hcmlhLWJ1c3ldJzogJ2xvYWRpbmcoKScsXG4gICAgICAgICdbYXR0ci5hcmlhLWxpdmVdJzogJ2FyaWFMaXZlKCknLFxuICAgICAgICAnW2F0dHIuYXJpYS1sYWJlbF0nOiAnYXJpYUxhYmVsKCknLFxuICAgICAgICAnW2F0dHIuYXJpYS12YWx1ZXRleHRdJzogJ2FyaWFWYWx1ZVRleHQoKScsXG4gICAgICAgICdbYXR0ci5hcmlhLXZhbHVlbWluXSc6ICcwJyxcbiAgICAgICAgJ1thdHRyLmFyaWEtdmFsdWVtYXhdJzogJzEwMCcsXG4gICAgICAgICdbYXR0ci50aXRsZV0nOiAndGl0bGUoKScsXG4gICAgICAgICdbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3JfX2NvbnRhaW5lcl0nOiAndHJ1ZScsXG4gICAgICAgICdbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3JfX2NvbnRhaW5lci0taW5saW5lXSc6ICchYmxvY2soKScsXG4gICAgICAgICcoa2V5ZG93biknOiAnaG9zdEZvY3VzQ2hhbmdlSGFuZGxlcigkZXZlbnQpJ1xuICAgIH0sXG4gICAgaW1wb3J0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQnVzeUluZGljYXRvckNvbXBvbmVudCB7XG4gICAgLyoqIFdoZXRoZXIgdG8gZGlzcGxheSB0aGUgbG9hZGluZyBpbmRpY2F0b3IgYW5pbWF0aW9uLiAqL1xuICAgIHJlYWRvbmx5IGxvYWRpbmcgPSBpbnB1dChmYWxzZSk7XG5cbiAgICAvKiogVGhlIHNpemUgb2YgdGhlIGxvYWRpbmcgaW5kaWNhdG9yLCBkZWZhdWx0IHdpbGwgYmUgbWVkaXVtICovXG4gICAgcmVhZG9ubHkgc2l6ZSA9IGlucHV0PEJ1c3lJbmRpY2F0b3JTaXplPignbScpO1xuXG4gICAgLyoqIFdoZXRoZXIgdG8gdXNlIGxvYWRlciBhcyBibG9jayBlbGVtZW50ICovXG4gICAgcmVhZG9ubHkgYmxvY2sgPSBpbnB1dChmYWxzZSk7XG5cbiAgICAvKiogQXJpYSBsYWJlbCBhdHRyaWJ1dGUgdmFsdWUuICovXG4gICAgcmVhZG9ubHkgYXJpYUxhYmVsID0gaW5wdXQ8c3RyaW5nIHwgbnVsbD4obnVsbCk7XG5cbiAgICAvKiogQXJpYS12YWx1ZXRleHQgYXR0cmlidXRlIHZhbHVlLiAqL1xuICAgIHJlYWRvbmx5IGFyaWFWYWx1ZVRleHQgPSBpbnB1dDxzdHJpbmcgfCBudWxsPihudWxsKTtcblxuICAgIC8qKiB0aXRsZSBhdHRyaWJ1dGUgdmFsdWUgZm9yIHRvb2x0aXAuICovXG4gICAgcmVhZG9ubHkgdGl0bGUgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KHVuZGVmaW5lZCk7XG5cbiAgICAvKiogYWRkIGxvYWRpbmcgbGFiZWwgdmFsdWUgKi9cbiAgICByZWFkb25seSBsYWJlbCA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4odW5kZWZpbmVkKTtcblxuICAgIC8qKiBBcmlhIGxpdmUgYXR0cmlidXRlIHZhbHVlLiAqL1xuICAgIHJlYWRvbmx5IGFyaWFMaXZlID0gaW5wdXQ8J2Fzc2VydGl2ZScgfCAncG9saXRlJyB8ICdvZmYnIHwgbnVsbD4obnVsbCk7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCByZWFkb25seSBmYWtlRm9jdXNFbGVtZW50ID0gdmlld0NoaWxkPEVsZW1lbnRSZWY+KCdmYWtlRm9jdXNFbGVtZW50Jyk7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByaXZhdGUgcmVhZG9ubHkgX2VsZW1lbnRSZWYgPSBpbmplY3QoRWxlbWVudFJlZik7XG5cbiAgICAvKiogQGhpZGRlbiBJZiBmb2N1cyBlc2NhcGVzIGJ1c3kgY29udGFpbmVyIGZvY3VzIGVsZW1lbnQgYWZ0ZXIgd3JhcHBlZCBjb250ZW50ICovXG4gICAgcHJvdGVjdGVkIGhvc3RGb2N1c0NoYW5nZUhhbmRsZXIoZXZlbnQ6IEtleWJvYXJkRXZlbnQpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMubG9hZGluZygpICYmIEtleVV0aWwuaXNLZXlDb2RlKGV2ZW50LCBUQUIpICYmICFldmVudC5zaGlmdEtleSkge1xuICAgICAgICAgICAgY29uc3QgZWxlbWVudCA9IHRoaXMuZmFrZUZvY3VzRWxlbWVudCgpO1xuICAgICAgICAgICAgaWYgKGVsZW1lbnQpIHtcbiAgICAgICAgICAgICAgICBlbGVtZW50Lm5hdGl2ZUVsZW1lbnQuZm9jdXMoKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgIC8qKiBAaGlkZGVuIElmIGJ1c3kgY29udGFpbmVyIGlzIG5hdmlnYXRlZCBhcyBcInByZXZpb3VzIGZvY3VzYWJsZSBlbGVtZW50XCIsXG4gICAgICogZm9jdXMgYnVzeSBpbmRpY2F0b3IgdG8gcHJldmVudCBmcm9tIGZvY3VzaW5nIHdyYXBwZWQgY29udGVudCAqL1xuICAgIHByb3RlY3RlZCBmYWtlRWxlbWVudEZvY3VzSGFuZGxlcihldmVudDogRm9jdXNFdmVudCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5sb2FkaW5nKCkgJiYgZXZlbnQucmVsYXRlZFRhcmdldCAhPT0gdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50KSB7XG4gICAgICAgICAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICAgICAgICAgIHRoaXMuX2VsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5mb2N1cygpO1xuICAgICAgICB9XG4gICAgfVxufVxuIiwiPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuQGlmIChsb2FkaW5nKCkpIHtcbiAgICA8ZGl2XG4gICAgICAgICNidXN5SW5kaWNhdG9yXG4gICAgICAgIGNsYXNzPVwiZmQtYnVzeS1pbmRpY2F0b3JcIlxuICAgICAgICBbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3ItLWxdPVwic2l6ZSgpID09PSAnbCdcIlxuICAgICAgICBbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3ItLW1dPVwic2l6ZSgpID09PSAnbSdcIlxuICAgICAgICBbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3ItLXNdPVwic2l6ZSgpID09PSAncydcIlxuICAgID5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZkLWJ1c3ktaW5kaWNhdG9yX19jaXJjbGVcIj48L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZkLWJ1c3ktaW5kaWNhdG9yX19jaXJjbGVcIj48L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZkLWJ1c3ktaW5kaWNhdG9yX19jaXJjbGVcIj48L2Rpdj5cbiAgICA8L2Rpdj5cbiAgICBAaWYgKGxhYmVsKCkpIHtcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmZC1idXN5LWluZGljYXRvci1leHRlbmRlZF9fbGFiZWxcIj57eyBsYWJlbCgpIH19PC9zcGFuPlxuICAgIH1cbiAgICA8ZGl2IGNsYXNzPVwiZmQtYnVzeS1pbmRpY2F0b3JfX292ZXJsYXlcIj48L2Rpdj5cbiAgICA8ZGl2ICNmYWtlRm9jdXNFbGVtZW50IHRhYmluZGV4PVwiMFwiIGFyaWEtaGlkZGVuPVwidHJ1ZVwiIChmb2N1c2luKT1cImZha2VFbGVtZW50Rm9jdXNIYW5kbGVyKCRldmVudClcIj48L2Rpdj5cbn1cbiJdfQ==","import { Directive, ElementRef, contentChild, effect, inject } from '@angular/core';\nimport { BusyIndicatorComponent } from '../busy-indicator.component';\nimport { FD_BUSY_INDICATOR_COMPONENT } from '../tokens';\nimport * as i0 from \"@angular/core\";\nconst messageToastClass = 'fd-message-toast';\nexport class BusyIndicatorExtendedDirective {\n /** @hidden */\n constructor() {\n /** @hidden */\n this.busyIndicator = contentChild(FD_BUSY_INDICATOR_COMPONENT, ...(ngDevMode ? [{ debugName: \"busyIndicator\", read: BusyIndicatorComponent }] : [{\n read: BusyIndicatorComponent\n }]));\n /** @hidden */\n this._elementRef = inject(ElementRef);\n effect(() => {\n const indicator = this.busyIndicator();\n if (indicator) {\n this._appendCssToParent();\n }\n });\n }\n /** @hidden */\n _appendCssToParent() {\n const hasLabel = this.busyIndicator()?.label();\n if (!hasLabel) {\n return;\n }\n const classList = this._elementRef.nativeElement.parentElement?.classList;\n if (classList) {\n classList.add('fd-busy-indicator-extended');\n if (classList.contains(messageToastClass)) {\n classList.add('fd-busy-indicator-extended--message-toast');\n }\n }\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorExtendedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }\n static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"17.2.0\", version: \"20.1.4\", type: BusyIndicatorExtendedDirective, isStandalone: true, selector: \"[fd-busy-indicator-extended]\", queries: [{ propertyName: \"busyIndicator\", first: true, predicate: FD_BUSY_INDICATOR_COMPONENT, descendants: true, read: BusyIndicatorComponent, isSignal: true }], ngImport: i0 }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorExtendedDirective, decorators: [{\n type: Directive,\n args: [{\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-busy-indicator-extended]',\n standalone: true\n }]\n }], ctorParameters: () => [] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3ItZXh0ZW5kZWQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUNyRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxXQUFXLENBQUM7O0FBRXhELE1BQU0saUJBQWlCLEdBQUcsa0JBQWtCLENBQUM7QUFPN0MsTUFBTSxPQUFPLDhCQUE4QjtJQVN2QyxjQUFjO0lBQ2Q7UUFUQSxjQUFjO1FBQ0ssa0JBQWEsR0FBRyxZQUFZLENBQUMsMkJBQTJCLGlEQUN2RSxJQUFJLEVBQUUsc0JBQXNCLE9BRDZDO2dCQUN6RSxJQUFJLEVBQUUsc0JBQXNCO2FBQy9CLEdBQUMsQ0FBQztRQUVILGNBQWM7UUFDRyxnQkFBVyxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUk5QyxNQUFNLENBQUMsR0FBRyxFQUFFO1lBQ1IsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO1lBQ3ZDLElBQUksU0FBUyxFQUFFLENBQUM7Z0JBQ1osSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7WUFDOUIsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVELGNBQWM7SUFDTixrQkFBa0I7UUFDdEIsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxFQUFFLEtBQUssRUFBRSxDQUFDO1FBQy9DLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNaLE9BQU87UUFDWCxDQUFDO1FBQ0QsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsYUFBYSxFQUFFLFNBQVMsQ0FBQztRQUMxRSxJQUFJLFNBQVMsRUFBRSxDQUFDO1lBQ1osU0FBUyxDQUFDLEdBQUcsQ0FBQyw0QkFBNEIsQ0FBQyxDQUFDO1lBQzVDLElBQUksU0FBUyxDQUFDLFFBQVEsQ0FBQyxpQkFBaUIsQ0FBQyxFQUFFLENBQUM7Z0JBQ3hDLFNBQVMsQ0FBQyxHQUFHLENBQUMsMkNBQTJDLENBQUMsQ0FBQztZQUMvRCxDQUFDO1FBQ0wsQ0FBQztJQUNMLENBQUM7OEdBaENRLDhCQUE4QjtrR0FBOUIsOEJBQThCLG1JQUVTLDJCQUEyQiwyQkFDakUsc0JBQXNCOzsyRkFIdkIsOEJBQThCO2tCQUwxQyxTQUFTO21CQUFDO29CQUNQLDhEQUE4RDtvQkFDOUQsUUFBUSxFQUFFLDhCQUE4QjtvQkFDeEMsVUFBVSxFQUFFLElBQUk7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBjb250ZW50Q2hpbGQsIGVmZmVjdCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yQ29tcG9uZW50IH0gZnJvbSAnLi4vYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IEZEX0JVU1lfSU5ESUNBVE9SX0NPTVBPTkVOVCB9IGZyb20gJy4uL3Rva2Vucyc7XG5cbmNvbnN0IG1lc3NhZ2VUb2FzdENsYXNzID0gJ2ZkLW1lc3NhZ2UtdG9hc3QnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L2RpcmVjdGl2ZS1zZWxlY3RvclxuICAgIHNlbGVjdG9yOiAnW2ZkLWJ1c3ktaW5kaWNhdG9yLWV4dGVuZGVkXScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBCdXN5SW5kaWNhdG9yRXh0ZW5kZWREaXJlY3RpdmUge1xuICAgIC8qKiBAaGlkZGVuICovXG4gICAgcHJvdGVjdGVkIHJlYWRvbmx5IGJ1c3lJbmRpY2F0b3IgPSBjb250ZW50Q2hpbGQoRkRfQlVTWV9JTkRJQ0FUT1JfQ09NUE9ORU5ULCB7XG4gICAgICAgIHJlYWQ6IEJ1c3lJbmRpY2F0b3JDb21wb25lbnRcbiAgICB9KTtcblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgcHJpdmF0ZSByZWFkb25seSBfZWxlbWVudFJlZiA9IGluamVjdChFbGVtZW50UmVmKTtcblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIGVmZmVjdCgoKSA9PiB7XG4gICAgICAgICAgICBjb25zdCBpbmRpY2F0b3IgPSB0aGlzLmJ1c3lJbmRpY2F0b3IoKTtcbiAgICAgICAgICAgIGlmIChpbmRpY2F0b3IpIHtcbiAgICAgICAgICAgICAgICB0aGlzLl9hcHBlbmRDc3NUb1BhcmVudCgpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByaXZhdGUgX2FwcGVuZENzc1RvUGFyZW50KCk6IHZvaWQge1xuICAgICAgICBjb25zdCBoYXNMYWJlbCA9IHRoaXMuYnVzeUluZGljYXRvcigpPy5sYWJlbCgpO1xuICAgICAgICBpZiAoIWhhc0xhYmVsKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgY2xhc3NMaXN0ID0gdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LnBhcmVudEVsZW1lbnQ/LmNsYXNzTGlzdDtcbiAgICAgICAgaWYgKGNsYXNzTGlzdCkge1xuICAgICAgICAgICAgY2xhc3NMaXN0LmFkZCgnZmQtYnVzeS1pbmRpY2F0b3ItZXh0ZW5kZWQnKTtcbiAgICAgICAgICAgIGlmIChjbGFzc0xpc3QuY29udGFpbnMobWVzc2FnZVRvYXN0Q2xhc3MpKSB7XG4gICAgICAgICAgICAgICAgY2xhc3NMaXN0LmFkZCgnZmQtYnVzeS1pbmRpY2F0b3ItZXh0ZW5kZWQtLW1lc3NhZ2UtdG9hc3QnKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==","import { NgModule } from '@angular/core';\nimport { BusyIndicatorExtendedDirective } from './busy-indicator-extended/busy-indicator-extended.directive';\nimport { BusyIndicatorComponent } from './busy-indicator.component';\nimport * as i0 from \"@angular/core\";\n/**\n * @deprecated\n * Use direct imports of components and directives.\n */\nexport class BusyIndicatorModule {\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }\n static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, imports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective], exports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective] }); }\n static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, decorators: [{\n type: NgModule,\n args: [{\n exports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective],\n imports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective]\n }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBQzdHLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDOztBQUVwRTs7O0dBR0c7QUFLSCxNQUFNLE9BQU8sbUJBQW1COzhHQUFuQixtQkFBbUI7K0dBQW5CLG1CQUFtQixZQUZsQixzQkFBc0IsRUFBRSw4QkFBOEIsYUFEdEQsc0JBQXNCLEVBQUUsOEJBQThCOytHQUd2RCxtQkFBbUI7OzJGQUFuQixtQkFBbUI7a0JBSi9CLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsc0JBQXNCLEVBQUUsOEJBQThCLENBQUM7b0JBQ2pFLE9BQU8sRUFBRSxDQUFDLHNCQUFzQixFQUFFLDhCQUE4QixDQUFDO2lCQUNwRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yRXh0ZW5kZWREaXJlY3RpdmUgfSBmcm9tICcuL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9idXN5LWluZGljYXRvci5jb21wb25lbnQnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkXG4gKiBVc2UgZGlyZWN0IGltcG9ydHMgb2YgY29tcG9uZW50cyBhbmQgZGlyZWN0aXZlcy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBleHBvcnRzOiBbQnVzeUluZGljYXRvckNvbXBvbmVudCwgQnVzeUluZGljYXRvckV4dGVuZGVkRGlyZWN0aXZlXSxcbiAgICBpbXBvcnRzOiBbQnVzeUluZGljYXRvckNvbXBvbmVudCwgQnVzeUluZGljYXRvckV4dGVuZGVkRGlyZWN0aXZlXVxufSlcbmV4cG9ydCBjbGFzcyBCdXN5SW5kaWNhdG9yTW9kdWxlIHt9XG4iXX0=","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './index';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnVuZGFtZW50YWwtbmd4LWNvcmUtYnVzeS1pbmRpY2F0b3IuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvYnVzeS1pbmRpY2F0b3IvZnVuZGFtZW50YWwtbmd4LWNvcmUtYnVzeS1pbmRpY2F0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0="],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fundamental-ngx-core-busy-indicator.mjs","sources":["../tmp-esm2022/busy-indicator/tokens.js","../tmp-esm2022/busy-indicator/busy-indicator.component.js","../tmp-esm2022/busy-indicator/busy-indicator-extended/busy-indicator-extended.directive.js","../tmp-esm2022/busy-indicator/busy-indicator.module.js","../tmp-esm2022/busy-indicator/fundamental-ngx-core-busy-indicator.js"],"sourcesContent":["import { InjectionToken } from '@angular/core';\nexport const FD_BUSY_INDICATOR_COMPONENT = new InjectionToken('FdBusyIndicatorComponent');\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL3Rva2Vucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRS9DLE1BQU0sQ0FBQyxNQUFNLDJCQUEyQixHQUFHLElBQUksY0FBYyxDQUFDLDBCQUEwQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgRkRfQlVTWV9JTkRJQ0FUT1JfQ09NUE9ORU5UID0gbmV3IEluamVjdGlvblRva2VuKCdGZEJ1c3lJbmRpY2F0b3JDb21wb25lbnQnKTtcbiJdfQ==","import { TAB } from '@angular/cdk/keycodes';\nimport { ChangeDetectionStrategy, Component, ElementRef, ViewEncapsulation, inject, input, viewChild } from '@angular/core';\nimport { toSignal } from '@angular/core/rxjs-interop';\nimport { KeyUtil } from '@fundamental-ngx/cdk/utils';\nimport { FD_LANGUAGE, TranslationResolver } from '@fundamental-ngx/i18n';\nimport { map } from 'rxjs';\nimport { FD_BUSY_INDICATOR_COMPONENT } from './tokens';\nimport * as i0 from \"@angular/core\";\nexport class BusyIndicatorComponent {\n constructor() {\n /** Whether to display the loading indicator animation. */\n this.loading = input(false, ...(ngDevMode ? [{ debugName: \"loading\" }] : []));\n /** The size of the loading indicator, default will be medium */\n this.size = input('m', ...(ngDevMode ? [{ debugName: \"size\" }] : []));\n /** Whether to use loader as block element */\n this.block = input(false, ...(ngDevMode ? [{ debugName: \"block\" }] : []));\n /** Aria label attribute value. */\n this.ariaLabel = input(null, ...(ngDevMode ? [{ debugName: \"ariaLabel\" }] : []));\n /** Aria-valuetext attribute value. */\n this.ariaValueText = input(null, ...(ngDevMode ? [{ debugName: \"ariaValueText\" }] : []));\n /** title attribute value for tooltip. */\n this.title = input(undefined, ...(ngDevMode ? [{ debugName: \"title\" }] : []));\n /** add loading label value */\n this.label = input(undefined, ...(ngDevMode ? [{ debugName: \"label\" }] : []));\n /** Aria live attribute value. */\n this.ariaLive = input(null, ...(ngDevMode ? [{ debugName: \"ariaLive\" }] : []));\n /** @hidden */\n this.fakeFocusElement = viewChild('fakeFocusElement', ...(ngDevMode ? [{ debugName: \"fakeFocusElement\" }] : []));\n /** @hidden */\n this._lang$ = inject(FD_LANGUAGE);\n /** @hidden */\n this._translationResolver = inject(TranslationResolver);\n /** @hidden */\n this._ariaValueText = toSignal(this._lang$.pipe(map((lang) => this._translationResolver.resolve(lang, 'coreBusyIndicator.defaultAriaValueText'))), { initialValue: 'Busy' });\n /** @hidden */\n this._titleValue = toSignal(this._lang$.pipe(map((lang) => this._translationResolver.resolve(lang, 'coreBusyIndicator.defaultTitle'))), { initialValue: 'Please wait' });\n /** @hidden */\n this._elementRef = inject(ElementRef);\n }\n /** @hidden If focus escapes busy container focus element after wrapped content */\n hostFocusChangeHandler(event) {\n if (this.loading() && KeyUtil.isKeyCode(event, TAB) && !event.shiftKey) {\n const element = this.fakeFocusElement();\n if (element) {\n element.nativeElement.focus();\n }\n }\n }\n /** @hidden If busy container is navigated as \"previous focusable element\",\n * focus busy indicator to prevent from focusing wrapped content */\n fakeElementFocusHandler(event) {\n if (this.loading() && event.relatedTarget !== this._elementRef.nativeElement) {\n event.stopPropagation();\n this._elementRef.nativeElement.focus();\n }\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"17.0.0\", version: \"20.1.4\", type: BusyIndicatorComponent, isStandalone: true, selector: \"fd-busy-indicator\", inputs: { loading: { classPropertyName: \"loading\", publicName: \"loading\", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: \"size\", publicName: \"size\", isSignal: true, isRequired: false, transformFunction: null }, block: { classPropertyName: \"block\", publicName: \"block\", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: \"ariaLabel\", publicName: \"ariaLabel\", isSignal: true, isRequired: false, transformFunction: null }, ariaValueText: { classPropertyName: \"ariaValueText\", publicName: \"ariaValueText\", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: \"title\", publicName: \"title\", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: \"label\", publicName: \"label\", isSignal: true, isRequired: false, transformFunction: null }, ariaLive: { classPropertyName: \"ariaLive\", publicName: \"ariaLive\", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { \"keydown\": \"hostFocusChangeHandler($event)\" }, properties: { \"attr.role\": \"loading() ? 'progressbar' : 'presentation'\", \"attr.tabindex\": \"loading() ? 0 : -1\", \"attr.aria-busy\": \"loading()\", \"attr.aria-live\": \"ariaLive()\", \"attr.aria-label\": \"ariaLabel()\", \"attr.aria-valuetext\": \"ariaValueText() || _ariaValueText()\", \"attr.aria-valuemin\": \"0\", \"attr.aria-valuemax\": \"100\", \"attr.title\": \"title() || _titleValue()\", \"class.fd-busy-indicator__container\": \"true\", \"class.fd-busy-indicator__container--inline\": \"!block()\" } }, providers: [\n {\n provide: FD_BUSY_INDICATOR_COMPONENT,\n useExisting: BusyIndicatorComponent\n }\n ], viewQueries: [{ propertyName: \"fakeFocusElement\", first: true, predicate: [\"fakeFocusElement\"], descendants: true, isSignal: true }], ngImport: i0, template: \"<ng-content></ng-content>\\n@if (loading()) {\\n <div\\n #busyIndicator\\n class=\\\"fd-busy-indicator\\\"\\n [class.fd-busy-indicator--l]=\\\"size() === 'l'\\\"\\n [class.fd-busy-indicator--m]=\\\"size() === 'm'\\\"\\n [class.fd-busy-indicator--s]=\\\"size() === 's'\\\"\\n >\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n </div>\\n @if (label()) {\\n <span class=\\\"fd-busy-indicator-extended__label\\\">{{ label() }}</span>\\n }\\n <div class=\\\"fd-busy-indicator__overlay\\\"></div>\\n <div #fakeFocusElement tabindex=\\\"0\\\" aria-hidden=\\\"true\\\" (focusin)=\\\"fakeElementFocusHandler($event)\\\"></div>\\n}\\n\", styles: [\".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\\\"-1\\\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\\n/*! Bundled license information:\\n\\nfundamental-styles/dist/busy-indicator.css:\\n (*!\\n * Fundamental Library Styles v0.40.1\\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\\n *)\\n*/\\n\"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorComponent, decorators: [{\n type: Component,\n args: [{ selector: 'fd-busy-indicator', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, providers: [\n {\n provide: FD_BUSY_INDICATOR_COMPONENT,\n useExisting: BusyIndicatorComponent\n }\n ], host: {\n '[attr.role]': \"loading() ? 'progressbar' : 'presentation'\",\n '[attr.tabindex]': 'loading() ? 0 : -1',\n '[attr.aria-busy]': 'loading()',\n '[attr.aria-live]': 'ariaLive()',\n '[attr.aria-label]': 'ariaLabel()',\n '[attr.aria-valuetext]': 'ariaValueText() || _ariaValueText()',\n '[attr.aria-valuemin]': '0',\n '[attr.aria-valuemax]': '100',\n '[attr.title]': 'title() || _titleValue()',\n '[class.fd-busy-indicator__container]': 'true',\n '[class.fd-busy-indicator__container--inline]': '!block()',\n '(keydown)': 'hostFocusChangeHandler($event)'\n }, template: \"<ng-content></ng-content>\\n@if (loading()) {\\n <div\\n #busyIndicator\\n class=\\\"fd-busy-indicator\\\"\\n [class.fd-busy-indicator--l]=\\\"size() === 'l'\\\"\\n [class.fd-busy-indicator--m]=\\\"size() === 'm'\\\"\\n [class.fd-busy-indicator--s]=\\\"size() === 's'\\\"\\n >\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n <div class=\\\"fd-busy-indicator__circle\\\"></div>\\n </div>\\n @if (label()) {\\n <span class=\\\"fd-busy-indicator-extended__label\\\">{{ label() }}</span>\\n }\\n <div class=\\\"fd-busy-indicator__overlay\\\"></div>\\n <div #fakeFocusElement tabindex=\\\"0\\\" aria-hidden=\\\"true\\\" (focusin)=\\\"fakeElementFocusHandler($event)\\\"></div>\\n}\\n\", styles: [\".fd-busy-indicator{--Dot_Color:var(--fdBusy_Indicator_Dot_Color);--Dot_Size:.5rem;--Dot_Spacing:.0625rem;border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-size:0;font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;text-align:center}.fd-busy-indicator--contrast{--Dot_Color:var(--fdBusy_Indicator_Dot_Contrast_Color)}.fd-busy-indicator--m{--Dot_Size:1rem;--Dot_Spacing:.1875rem}.fd-busy-indicator--l{--Dot_Size:2rem;--Dot_Spacing:.25rem}.fd-busy-indicator:after,.fd-busy-indicator:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-extended:after,.fd-busy-indicator-extended:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-extended.fd-busy-indicator-extended--message-toast{background-color:var(--sapPageFooter_Background);-webkit-box-shadow:var(--sapContent_Shadow2);box-shadow:var(--sapContent_Shadow2);max-width:23.125rem;text-shadow:var(--sapContent_TextShadow);width:23.125rem}.fd-busy-indicator-extended__label{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--sapPageFooter_TextColor);display:block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;text-align:center}.fd-busy-indicator-extended__label:after,.fd-busy-indicator-extended__label:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle{background-color:currentColor;border:0;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);color:var(--Dot_Color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;height:var(--Dot_Size);line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;position:relative;width:var(--Dot_Size);-webkit-margin-end:var(--Dot_Spacing);-webkit-animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:after,.fd-busy-indicator__circle:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator__circle:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-margin-end:var(--Dot_Spacing);margin-inline-end:var(--Dot_Spacing)}.fd-busy-indicator__circle:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s;-webkit-margin-end:0;margin-inline-end:0}.fd-busy-indicator-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--sapTextColor);display:-webkit-box;display:-ms-flexbox;display:flex;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;forced-color-adjust:none;line-height:normal;margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fd-busy-indicator-dialog:after,.fd-busy-indicator-dialog:before{-webkit-box-sizing:inherit;box-sizing:inherit;font-size:inherit}.fd-busy-indicator-dialog .fd-busy-indicator{margin-block:.5rem;margin-inline:auto;width:100%}@-webkit-keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);transform:scale(1)}}*+.fd-busy-indicator,*+.fd-busy-indicator+.fd-busy-indicator-extended__label{white-space:nowrap;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}*+.fd-busy-indicator+.fd-busy-indicator-extended__label{z-index:11;transform:translate(-50%,50%)!important}.fd-busy-indicator:first-child~.fd-busy-indicator__overlay{background-color:transparent}.fd-busy-indicator{z-index:11}.fd-busy-indicator__container{display:block;position:relative}.fd-busy-indicator__container:focus{outline-width:var(--sapContent_FocusWidth, .0625rem);outline-color:var(--sapContent_FocusColor, #000);outline-style:var(--sapContent_FocusStyle, dotted)}.fd-busy-indicator__container[tabindex=\\\"-1\\\"]{outline:none}.fd-busy-indicator__container--inline{display:inline-block}.fd-busy-indicator__overlay{position:absolute;inset:0;z-index:10;background-color:var(--sapBaseColor);opacity:.72}\\n/*! Bundled license information:\\n\\nfundamental-styles/dist/busy-indicator.css:\\n (*!\\n * Fundamental Library Styles v0.40.1\\n * Copyright (c) 2025 SAP SE or an SAP affiliate company.\\n * Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)\\n *)\\n*/\\n\"] }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvY29yZS9idXN5LWluZGljYXRvci9idXN5LWluZGljYXRvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFNUMsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsVUFBVSxFQUNWLGlCQUFpQixFQUNqQixNQUFNLEVBQ04sS0FBSyxFQUNMLFNBQVMsRUFDWixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDdEQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQWMsbUJBQW1CLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNyRixPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQzNCLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLFVBQVUsQ0FBQzs7QUFnQ3ZELE1BQU0sT0FBTyxzQkFBc0I7SUE1Qm5DO1FBNkJJLDBEQUEwRDtRQUNqRCxZQUFPLEdBQUcsS0FBSyxDQUFDLEtBQUssbURBQUMsQ0FBQztRQUVoQyxnRUFBZ0U7UUFDdkQsU0FBSSxHQUFHLEtBQUssQ0FBb0IsR0FBRyxnREFBQyxDQUFDO1FBRTlDLDZDQUE2QztRQUNwQyxVQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssaURBQUMsQ0FBQztRQUU5QixrQ0FBa0M7UUFDekIsY0FBUyxHQUFHLEtBQUssQ0FBZ0IsSUFBSSxxREFBQyxDQUFDO1FBRWhELHNDQUFzQztRQUM3QixrQkFBYSxHQUFH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QUFzQixFQUFFLEdBQUc7d0JBQzNCLHNCQUFzQixFQUFFLEtBQUs7d0JBQzdCLGNBQWMsRUFBRSwwQkFBMEI7d0JBQzFDLHNDQUFzQyxFQUFFLE1BQU07d0JBQzlDLDhDQUE4QyxFQUFFLFVBQVU7d0JBQzFELFdBQVcsRUFBRSxnQ0FBZ0M7cUJBQ2hEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVEFCIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2tleWNvZGVzJztcblxuaW1wb3J0IHtcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBDb21wb25lbnQsXG4gICAgRWxlbWVudFJlZixcbiAgICBWaWV3RW5jYXBzdWxhdGlvbixcbiAgICBpbmplY3QsXG4gICAgaW5wdXQsXG4gICAgdmlld0NoaWxkXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgdG9TaWduYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlL3J4anMtaW50ZXJvcCc7XG5pbXBvcnQgeyBLZXlVdGlsIH0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jZGsvdXRpbHMnO1xuaW1wb3J0IHsgRkRfTEFOR1VBR0UsIEZkTGFuZ3VhZ2UsIFRyYW5zbGF0aW9uUmVzb2x2ZXIgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2kxOG4nO1xuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBGRF9CVVNZX0lORElDQVRPUl9DT01QT05FTlQgfSBmcm9tICcuL3Rva2Vucyc7XG5cbmV4cG9ydCB0eXBlIEJ1c3lJbmRpY2F0b3JTaXplID0gJ3MnIHwgJ20nIHwgJ2wnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2ZkLWJ1c3ktaW5kaWNhdG9yJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsOiAnLi9idXN5LWluZGljYXRvci5jb21wb25lbnQuc2NzcycsXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBGRF9CVVNZX0lORElDQVRPUl9DT01QT05FTlQsXG4gICAgICAgICAgICB1c2VFeGlzdGluZzogQnVzeUluZGljYXRvckNvbXBvbmVudFxuICAgICAgICB9XG4gICAgXSxcbiAgICBob3N0OiB7XG4gICAgICAgICdbYXR0ci5yb2xlXSc6IFwibG9hZGluZygpID8gJ3Byb2dyZXNzYmFyJyA6ICdwcmVzZW50YXRpb24nXCIsXG4gICAgICAgICdbYXR0ci50YWJpbmRleF0nOiAnbG9hZGluZygpID8gMCA6IC0xJyxcbiAgICAgICAgJ1thdHRyLmFyaWEtYnVzeV0nOiAnbG9hZGluZygpJyxcbiAgICAgICAgJ1thdHRyLmFyaWEtbGl2ZV0nOiAnYXJpYUxpdmUoKScsXG4gICAgICAgICdbYXR0ci5hcmlhLWxhYmVsXSc6ICdhcmlhTGFiZWwoKScsXG4gICAgICAgICdbYXR0ci5hcmlhLXZhbHVldGV4dF0nOiAnYXJpYVZhbHVlVGV4dCgpIHx8IF9hcmlhVmFsdWVUZXh0KCknLFxuICAgICAgICAnW2F0dHIuYXJpYS12YWx1ZW1pbl0nOiAnMCcsXG4gICAgICAgICdbYXR0ci5hcmlhLXZhbHVlbWF4XSc6ICcxMDAnLFxuICAgICAgICAnW2F0dHIudGl0bGVdJzogJ3RpdGxlKCkgfHwgX3RpdGxlVmFsdWUoKScsXG4gICAgICAgICdbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3JfX2NvbnRhaW5lcl0nOiAndHJ1ZScsXG4gICAgICAgICdbY2xhc3MuZmQtYnVzeS1pbmRpY2F0b3JfX2NvbnRhaW5lci0taW5saW5lXSc6ICchYmxvY2soKScsXG4gICAgICAgICcoa2V5ZG93biknOiAnaG9zdEZvY3VzQ2hhbmdlSGFuZGxlcigkZXZlbnQpJ1xuICAgIH1cbn0pXG5leHBvcnQgY2xhc3MgQnVzeUluZGljYXRvckNvbXBvbmVudCB7XG4gICAgLyoqIFdoZXRoZXIgdG8gZGlzcGxheSB0aGUgbG9hZGluZyBpbmRpY2F0b3IgYW5pbWF0aW9uLiAqL1xuICAgIHJlYWRvbmx5IGxvYWRpbmcgPSBpbnB1dChmYWxzZSk7XG5cbiAgICAvKiogVGhlIHNpemUgb2YgdGhlIGxvYWRpbmcgaW5kaWNhdG9yLCBkZWZhdWx0IHdpbGwgYmUgbWVkaXVtICovXG4gICAgcmVhZG9ubHkgc2l6ZSA9IGlucHV0PEJ1c3lJbmRpY2F0b3JTaXplPignbScpO1xuXG4gICAgLyoqIFdoZXRoZXIgdG8gdXNlIGxvYWRlciBhcyBibG9jayBlbGVtZW50ICovXG4gICAgcmVhZG9ubHkgYmxvY2sgPSBpbnB1dChmYWxzZSk7XG5cbiAgICAvKiogQXJpYSBsYWJlbCBhdHRyaWJ1dGUgdmFsdWUuICovXG4gICAgcmVhZG9ubHkgYXJpYUxhYmVsID0gaW5wdXQ8c3RyaW5nIHwgbnVsbD4obnVsbCk7XG5cbiAgICAvKiogQXJpYS12YWx1ZXRleHQgYXR0cmlidXRlIHZhbHVlLiAqL1xuICAgIHJlYWRvbmx5IGFyaWFWYWx1ZVRleHQgPSBpbnB1dDxzdHJpbmcgfCBudWxsPihudWxsKTtcblxuICAgIC8qKiB0aXRsZSBhdHRyaWJ1dGUgdmFsdWUgZm9yIHRvb2x0aXAuICovXG4gICAgcmVhZG9ubHkgdGl0bGUgPSBpbnB1dDxzdHJpbmcgfCB1bmRlZmluZWQ+KHVuZGVmaW5lZCk7XG5cbiAgICAvKiogYWRkIGxvYWRpbmcgbGFiZWwgdmFsdWUgKi9cbiAgICByZWFkb25seSBsYWJlbCA9IGlucHV0PHN0cmluZyB8IHVuZGVmaW5lZD4odW5kZWZpbmVkKTtcblxuICAgIC8qKiBBcmlhIGxpdmUgYXR0cmlidXRlIHZhbHVlLiAqL1xuICAgIHJlYWRvbmx5IGFyaWFMaXZlID0gaW5wdXQ8J2Fzc2VydGl2ZScgfCAncG9saXRlJyB8ICdvZmYnIHwgbnVsbD4obnVsbCk7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCByZWFkb25seSBmYWtlRm9jdXNFbGVtZW50ID0gdmlld0NoaWxkPEVsZW1lbnRSZWY+KCdmYWtlRm9jdXNFbGVtZW50Jyk7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCByZWFkb25seSBfbGFuZyQgPSBpbmplY3QoRkRfTEFOR1VBR0UpO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgX3RyYW5zbGF0aW9uUmVzb2x2ZXIgPSBpbmplY3QoVHJhbnNsYXRpb25SZXNvbHZlcik7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCByZWFkb25seSBfYXJpYVZhbHVlVGV4dCA9IHRvU2lnbmFsKFxuICAgICAgICB0aGlzLl9sYW5nJC5waXBlKFxuICAgICAgICAgICAgbWFwKChsYW5nOiBGZExhbmd1YWdlKSA9PiB0aGlzLl90cmFuc2xhdGlvblJlc29sdmVyLnJlc29sdmUobGFuZywgJ2NvcmVCdXN5SW5kaWNhdG9yLmRlZmF1bHRBcmlhVmFsdWVUZXh0JykpXG4gICAgICAgICksXG4gICAgICAgIHsgaW5pdGlhbFZhbHVlOiAnQnVzeScgfVxuICAgICk7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCByZWFkb25seSBfdGl0bGVWYWx1ZSA9IHRvU2lnbmFsKFxuICAgICAgICB0aGlzLl9sYW5nJC5waXBlKFxuICAgICAgICAgICAgbWFwKChsYW5nOiBGZExhbmd1YWdlKSA9PiB0aGlzLl90cmFuc2xhdGlvblJlc29sdmVyLnJlc29sdmUobGFuZywgJ2NvcmVCdXN5SW5kaWNhdG9yLmRlZmF1bHRUaXRsZScpKVxuICAgICAgICApLFxuICAgICAgICB7IGluaXRpYWxWYWx1ZTogJ1BsZWFzZSB3YWl0JyB9XG4gICAgKTtcblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgcHJpdmF0ZSByZWFkb25seSBfZWxlbWVudFJlZiA9IGluamVjdChFbGVtZW50UmVmKTtcblxuICAgIC8qKiBAaGlkZGVuIElmIGZvY3VzIGVzY2FwZXMgYnVzeSBjb250YWluZXIgZm9jdXMgZWxlbWVudCBhZnRlciB3cmFwcGVkIGNvbnRlbnQgKi9cbiAgICBwcm90ZWN0ZWQgaG9zdEZvY3VzQ2hhbmdlSGFuZGxlcihldmVudDogS2V5Ym9hcmRFdmVudCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5sb2FkaW5nKCkgJiYgS2V5VXRpbC5pc0tleUNvZGUoZXZlbnQsIFRBQikgJiYgIWV2ZW50LnNoaWZ0S2V5KSB7XG4gICAgICAgICAgICBjb25zdCBlbGVtZW50ID0gdGhpcy5mYWtlRm9jdXNFbGVtZW50KCk7XG4gICAgICAgICAgICBpZiAoZWxlbWVudCkge1xuICAgICAgICAgICAgICAgIGVsZW1lbnQubmF0aXZlRWxlbWVudC5mb2N1cygpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEBoaWRkZW4gSWYgYnVzeSBjb250YWluZXIgaXMgbmF2aWdhdGVkIGFzIFwicHJldmlvdXMgZm9jdXNhYmxlIGVsZW1lbnRcIixcbiAgICAgKiBmb2N1cyBidXN5IGluZGljYXRvciB0byBwcmV2ZW50IGZyb20gZm9jdXNpbmcgd3JhcHBlZCBjb250ZW50ICovXG4gICAgcHJvdGVjdGVkIGZha2VFbGVtZW50Rm9jdXNIYW5kbGVyKGV2ZW50OiBGb2N1c0V2ZW50KTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmxvYWRpbmcoKSAmJiBldmVudC5yZWxhdGVkVGFyZ2V0ICE9PSB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQpIHtcbiAgICAgICAgICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuICAgICAgICAgICAgdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmZvY3VzKCk7XG4gICAgICAgIH1cbiAgICB9XG59XG4iLCI8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG5AaWYgKGxvYWRpbmcoKSkge1xuICAgIDxkaXZcbiAgICAgICAgI2J1c3lJbmRpY2F0b3JcbiAgICAgICAgY2xhc3M9XCJmZC1idXN5LWluZGljYXRvclwiXG4gICAgICAgIFtjbGFzcy5mZC1idXN5LWluZGljYXRvci0tbF09XCJzaXplKCkgPT09ICdsJ1wiXG4gICAgICAgIFtjbGFzcy5mZC1idXN5LWluZGljYXRvci0tbV09XCJzaXplKCkgPT09ICdtJ1wiXG4gICAgICAgIFtjbGFzcy5mZC1idXN5LWluZGljYXRvci0tc109XCJzaXplKCkgPT09ICdzJ1wiXG4gICAgPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmQtYnVzeS1pbmRpY2F0b3JfX2NpcmNsZVwiPjwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmQtYnVzeS1pbmRpY2F0b3JfX2NpcmNsZVwiPjwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmQtYnVzeS1pbmRpY2F0b3JfX2NpcmNsZVwiPjwvZGl2PlxuICAgIDwvZGl2PlxuICAgIEBpZiAobGFiZWwoKSkge1xuICAgICAgICA8c3BhbiBjbGFzcz1cImZkLWJ1c3ktaW5kaWNhdG9yLWV4dGVuZGVkX19sYWJlbFwiPnt7IGxhYmVsKCkgfX08L3NwYW4+XG4gICAgfVxuICAgIDxkaXYgY2xhc3M9XCJmZC1idXN5LWluZGljYXRvcl9fb3ZlcmxheVwiPjwvZGl2PlxuICAgIDxkaXYgI2Zha2VGb2N1c0VsZW1lbnQgdGFiaW5kZXg9XCIwXCIgYXJpYS1oaWRkZW49XCJ0cnVlXCIgKGZvY3VzaW4pPVwiZmFrZUVsZW1lbnRGb2N1c0hhbmRsZXIoJGV2ZW50KVwiPjwvZGl2PlxufVxuIl19","import { Directive, ElementRef, contentChild, effect, inject } from '@angular/core';\nimport { BusyIndicatorComponent } from '../busy-indicator.component';\nimport { FD_BUSY_INDICATOR_COMPONENT } from '../tokens';\nimport * as i0 from \"@angular/core\";\nconst messageToastClass = 'fd-message-toast';\nexport class BusyIndicatorExtendedDirective {\n /** @hidden */\n constructor() {\n /** @hidden */\n this.elementRef = inject(ElementRef);\n /** @hidden */\n this.busyIndicator = contentChild(FD_BUSY_INDICATOR_COMPONENT, ...(ngDevMode ? [{ debugName: \"busyIndicator\", read: BusyIndicatorComponent }] : [{\n read: BusyIndicatorComponent\n }]));\n effect(() => {\n const indicator = this.busyIndicator();\n if (indicator) {\n this._appendCssToParent();\n }\n });\n }\n /** @hidden */\n _appendCssToParent() {\n const hasLabel = this.busyIndicator()?.label();\n if (!hasLabel) {\n return;\n }\n const classList = this.elementRef.nativeElement.parentElement?.classList;\n if (classList) {\n classList.add('fd-busy-indicator-extended');\n if (classList.contains(messageToastClass)) {\n classList.add('fd-busy-indicator-extended--message-toast');\n }\n }\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorExtendedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }\n static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"17.2.0\", version: \"20.1.4\", type: BusyIndicatorExtendedDirective, isStandalone: true, selector: \"[fd-busy-indicator-extended]\", queries: [{ propertyName: \"busyIndicator\", first: true, predicate: FD_BUSY_INDICATOR_COMPONENT, descendants: true, read: BusyIndicatorComponent, isSignal: true }], ngImport: i0 }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorExtendedDirective, decorators: [{\n type: Directive,\n args: [{\n // eslint-disable-next-line @angular-eslint/directive-selector\n selector: '[fd-busy-indicator-extended]',\n standalone: true\n }]\n }], ctorParameters: () => [] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3ItZXh0ZW5kZWQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVwRixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUNyRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxXQUFXLENBQUM7O0FBRXhELE1BQU0saUJBQWlCLEdBQUcsa0JBQWtCLENBQUM7QUFPN0MsTUFBTSxPQUFPLDhCQUE4QjtJQVN2QyxjQUFjO0lBQ2Q7UUFUQSxjQUFjO1FBQ0UsZUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUVoRCxjQUFjO1FBQ0ssa0JBQWEsR0FBRyxZQUFZLENBQUMsMkJBQTJCLGlEQUN2RSxJQUFJLEVBQUUsc0JBQXNCLE9BRDZDO2dCQUN6RSxJQUFJLEVBQUUsc0JBQXNCO2FBQy9CLEdBQUMsQ0FBQztRQUlDLE1BQU0sQ0FBQyxHQUFHLEVBQUU7WUFDUixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7WUFDdkMsSUFBSSxTQUFTLEVBQUUsQ0FBQztnQkFDWixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztZQUM5QixDQUFDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsY0FBYztJQUNOLGtCQUFrQjtRQUN0QixNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLEVBQUUsS0FBSyxFQUFFLENBQUM7UUFDL0MsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1lBQ1osT0FBTztRQUNYLENBQUM7UUFDRCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxhQUFhLEVBQUUsU0FBUyxDQUFDO1FBQ3pFLElBQUksU0FBUyxFQUFFLENBQUM7WUFDWixTQUFTLENBQUMsR0FBRyxDQUFDLDRCQUE0QixDQUFDLENBQUM7WUFDNUMsSUFBSSxTQUFTLENBQUMsUUFBUSxDQUFDLGlCQUFpQixDQUFDLEVBQUUsQ0FBQztnQkFDeEMsU0FBUyxDQUFDLEdBQUcsQ0FBQywyQ0FBMkMsQ0FBQyxDQUFDO1lBQy9ELENBQUM7UUFDTCxDQUFDO0lBQ0wsQ0FBQzs4R0FoQ1EsOEJBQThCO2tHQUE5Qiw4QkFBOEIsbUlBS1MsMkJBQTJCLDJCQUNqRSxzQkFBc0I7OzJGQU52Qiw4QkFBOEI7a0JBTDFDLFNBQVM7bUJBQUM7b0JBQ1AsOERBQThEO29CQUM5RCxRQUFRLEVBQUUsOEJBQThCO29CQUN4QyxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIGNvbnRlbnRDaGlsZCwgZWZmZWN0LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEhhc0VsZW1lbnRSZWYgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2Nkay91dGlscyc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yQ29tcG9uZW50IH0gZnJvbSAnLi4vYnVzeS1pbmRpY2F0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IEZEX0JVU1lfSU5ESUNBVE9SX0NPTVBPTkVOVCB9IGZyb20gJy4uL3Rva2Vucyc7XG5cbmNvbnN0IG1lc3NhZ2VUb2FzdENsYXNzID0gJ2ZkLW1lc3NhZ2UtdG9hc3QnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L2RpcmVjdGl2ZS1zZWxlY3RvclxuICAgIHNlbGVjdG9yOiAnW2ZkLWJ1c3ktaW5kaWNhdG9yLWV4dGVuZGVkXScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBCdXN5SW5kaWNhdG9yRXh0ZW5kZWREaXJlY3RpdmUgaW1wbGVtZW50cyBIYXNFbGVtZW50UmVmIHtcbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHB1YmxpYyByZWFkb25seSBlbGVtZW50UmVmID0gaW5qZWN0KEVsZW1lbnRSZWYpO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgYnVzeUluZGljYXRvciA9IGNvbnRlbnRDaGlsZChGRF9CVVNZX0lORElDQVRPUl9DT01QT05FTlQsIHtcbiAgICAgICAgcmVhZDogQnVzeUluZGljYXRvckNvbXBvbmVudFxuICAgIH0pO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgZWZmZWN0KCgpID0+IHtcbiAgICAgICAgICAgIGNvbnN0IGluZGljYXRvciA9IHRoaXMuYnVzeUluZGljYXRvcigpO1xuICAgICAgICAgICAgaWYgKGluZGljYXRvcikge1xuICAgICAgICAgICAgICAgIHRoaXMuX2FwcGVuZENzc1RvUGFyZW50KCk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgIH1cblxuICAgIC8qKiBAaGlkZGVuICovXG4gICAgcHJpdmF0ZSBfYXBwZW5kQ3NzVG9QYXJlbnQoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGhhc0xhYmVsID0gdGhpcy5idXN5SW5kaWNhdG9yKCk/LmxhYmVsKCk7XG4gICAgICAgIGlmICghaGFzTGFiZWwpIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBjbGFzc0xpc3QgPSB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5wYXJlbnRFbGVtZW50Py5jbGFzc0xpc3Q7XG4gICAgICAgIGlmIChjbGFzc0xpc3QpIHtcbiAgICAgICAgICAgIGNsYXNzTGlzdC5hZGQoJ2ZkLWJ1c3ktaW5kaWNhdG9yLWV4dGVuZGVkJyk7XG4gICAgICAgICAgICBpZiAoY2xhc3NMaXN0LmNvbnRhaW5zKG1lc3NhZ2VUb2FzdENsYXNzKSkge1xuICAgICAgICAgICAgICAgIGNsYXNzTGlzdC5hZGQoJ2ZkLWJ1c3ktaW5kaWNhdG9yLWV4dGVuZGVkLS1tZXNzYWdlLXRvYXN0Jyk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=","import { NgModule } from '@angular/core';\nimport { BusyIndicatorExtendedDirective } from './busy-indicator-extended/busy-indicator-extended.directive';\nimport { BusyIndicatorComponent } from './busy-indicator.component';\nimport * as i0 from \"@angular/core\";\n/**\n * @deprecated\n * Use direct imports of components and directives.\n */\nexport class BusyIndicatorModule {\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }\n static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, imports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective], exports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective] }); }\n static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.1.4\", ngImport: i0, type: BusyIndicatorModule, decorators: [{\n type: NgModule,\n args: [{\n exports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective],\n imports: [BusyIndicatorComponent, BusyIndicatorExtendedDirective]\n }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzeS1pbmRpY2F0b3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb3JlL2J1c3ktaW5kaWNhdG9yL2J1c3ktaW5kaWNhdG9yLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDO0FBQzdHLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDOztBQUVwRTs7O0dBR0c7QUFLSCxNQUFNLE9BQU8sbUJBQW1COzhHQUFuQixtQkFBbUI7K0dBQW5CLG1CQUFtQixZQUZsQixzQkFBc0IsRUFBRSw4QkFBOEIsYUFEdEQsc0JBQXNCLEVBQUUsOEJBQThCOytHQUd2RCxtQkFBbUI7OzJGQUFuQixtQkFBbUI7a0JBSi9CLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsc0JBQXNCLEVBQUUsOEJBQThCLENBQUM7b0JBQ2pFLE9BQU8sRUFBRSxDQUFDLHNCQUFzQixFQUFFLDhCQUE4QixDQUFDO2lCQUNwRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yRXh0ZW5kZWREaXJlY3RpdmUgfSBmcm9tICcuL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkL2J1c3ktaW5kaWNhdG9yLWV4dGVuZGVkLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBCdXN5SW5kaWNhdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9idXN5LWluZGljYXRvci5jb21wb25lbnQnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkXG4gKiBVc2UgZGlyZWN0IGltcG9ydHMgb2YgY29tcG9uZW50cyBhbmQgZGlyZWN0aXZlcy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBleHBvcnRzOiBbQnVzeUluZGljYXRvckNvbXBvbmVudCwgQnVzeUluZGljYXRvckV4dGVuZGVkRGlyZWN0aXZlXSxcbiAgICBpbXBvcnRzOiBbQnVzeUluZGljYXRvckNvbXBvbmVudCwgQnVzeUluZGljYXRvckV4dGVuZGVkRGlyZWN0aXZlXVxufSlcbmV4cG9ydCBjbGFzcyBCdXN5SW5kaWNhdG9yTW9kdWxlIHt9XG4iXX0=","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './index';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnVuZGFtZW50YWwtbmd4LWNvcmUtYnVzeS1pbmRpY2F0b3IuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvcmUvYnVzeS1pbmRpY2F0b3IvZnVuZGFtZW50YWwtbmd4LWNvcmUtYnVzeS1pbmRpY2F0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0="],"names":[],"mappings":"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"}