@ethlete/core 4.3.0 → 4.4.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.
Files changed (42) hide show
  1. package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
  2. package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
  3. package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +7 -5
  4. package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
  5. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +35 -9
  6. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
  7. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
  8. package/esm2022/lib/directives/debug/debug.directive.mjs +3 -3
  9. package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
  10. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
  11. package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
  12. package/esm2022/lib/directives/let/let.directive.mjs +3 -3
  13. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  14. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  15. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  16. package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +3 -3
  17. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  18. package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +3 -3
  19. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  20. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  21. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  22. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  23. package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +3 -3
  24. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  25. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  26. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  27. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  28. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  29. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  30. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  31. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  32. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  33. package/esm2022/lib/services/intersection-observer.service.mjs +6 -6
  34. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  35. package/esm2022/lib/services/router-state.service.mjs +3 -3
  36. package/esm2022/lib/services/viewport.service.mjs +3 -3
  37. package/esm2022/lib/utils/signal.utils.mjs +8 -3
  38. package/fesm2022/ethlete-core.mjs +161 -128
  39. package/fesm2022/ethlete-core.mjs.map +1 -1
  40. package/lib/directives/animated-if/animated-if.directive.d.ts +2 -1
  41. package/lib/directives/animated-overlay/animated-overlay.directive.d.ts +7 -1
  42. package/package.json +7 -7
@@ -7,6 +7,7 @@ import { FormGroup, FormArray, FormControl } from '@angular/forms';
7
7
  import { toSignal, takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
8
8
  import { coerceElement, coerceCssPixelValue } from '@angular/cdk/coercion';
9
9
  import { supportsScrollBehavior } from '@angular/cdk/platform';
10
+ import * as i1 from '@angular/common';
10
11
  import { NgIf, DOCUMENT } from '@angular/common';
11
12
  import { Overlay } from '@angular/cdk/overlay';
12
13
  import { ComponentPortal } from '@angular/cdk/portal';
@@ -28,10 +29,10 @@ class StructuredDataComponent {
28
29
  const html = `<script type="application/ld+json">${json}</script>`;
29
30
  return this._sanitizer.bypassSecurityTrustHtml(html);
30
31
  }
31
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
32
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.3", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
32
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
33
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
33
34
  }
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StructuredDataComponent, decorators: [{
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: StructuredDataComponent, decorators: [{
35
36
  type: Component,
36
37
  args: [{
37
38
  selector: 'et-structured-data',
@@ -1738,10 +1739,15 @@ const signalElementIntersection = (el, options) => {
1738
1739
  const signalHostElementIntersection = (options) => signalElementIntersection(inject(ElementRef), options);
1739
1740
  const signalElementChildren = (el) => {
1740
1741
  const elements = buildElementSignal(el);
1741
- const mutations = signalElementMutations(elements, { childList: true, subtree: true, attributes: true });
1742
+ const isRendered = signalIsRendered();
1743
+ const elementMutations = signalElementMutations(elements, { childList: true, subtree: true, attributes: true });
1742
1744
  return computed(() => {
1745
+ if (!isRendered())
1746
+ return [];
1743
1747
  const els = elements();
1744
- mutations();
1748
+ // We are not interested what the mutation is, just that there is one.
1749
+ // Changes to the DOM may affect the children of the element.
1750
+ elementMutations();
1745
1751
  if (!els.currentElement)
1746
1752
  return [];
1747
1753
  const children = [];
@@ -1955,15 +1961,15 @@ class AnimatableDirective {
1955
1961
  .subscribe();
1956
1962
  }
1957
1963
  }
1958
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1959
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1964
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1965
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1960
1966
  {
1961
1967
  provide: ANIMATABLE_TOKEN,
1962
1968
  useExisting: AnimatableDirective,
1963
1969
  },
1964
1970
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
1965
1971
  }
1966
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatableDirective, decorators: [{
1972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatableDirective, decorators: [{
1967
1973
  type: Directive,
1968
1974
  args: [{
1969
1975
  selector: '[etAnimatable]',
@@ -2083,15 +2089,15 @@ class AnimatedLifecycleDirective {
2083
2089
  _forceState(state) {
2084
2090
  this._state$.next(state);
2085
2091
  }
2086
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2087
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
2092
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2093
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
2088
2094
  {
2089
2095
  provide: ANIMATED_LIFECYCLE_TOKEN,
2090
2096
  useExisting: AnimatedLifecycleDirective,
2091
2097
  },
2092
2098
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
2093
2099
  }
2094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
2100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
2095
2101
  type: Directive,
2096
2102
  args: [{
2097
2103
  selector: '[etAnimatedLifecycle]',
@@ -2128,15 +2134,15 @@ class AnimatedIfDirective {
2128
2134
  .subscribe();
2129
2135
  }
2130
2136
  }
2131
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2132
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
2137
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2138
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
2133
2139
  {
2134
2140
  provide: ANIMATED_IF_TOKEN,
2135
2141
  useExisting: AnimatedIfDirective,
2136
2142
  },
2137
- ], ngImport: i0 }); }
2143
+ ], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
2138
2144
  }
2139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedIfDirective, decorators: [{
2145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedIfDirective, decorators: [{
2140
2146
  type: Directive,
2141
2147
  args: [{
2142
2148
  selector: '[etAnimatedIf]',
@@ -2147,6 +2153,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImpor
2147
2153
  useExisting: AnimatedIfDirective,
2148
2154
  },
2149
2155
  ],
2156
+ hostDirectives: [NgIf],
2150
2157
  }]
2151
2158
  }], propDecorators: { shouldRender: [{
2152
2159
  type: Input,
@@ -2158,10 +2165,10 @@ class ClickObserverFactory {
2158
2165
  create() {
2159
2166
  return fromEvent(document, 'click');
2160
2167
  }
2161
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2162
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
2168
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2169
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
2163
2170
  }
2164
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, decorators: [{
2171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverFactory, decorators: [{
2165
2172
  type: Injectable,
2166
2173
  args: [{ providedIn: 'root' }]
2167
2174
  }] });
@@ -2214,10 +2221,10 @@ class ClickObserverService {
2214
2221
  this._observedElements.delete(element);
2215
2222
  }
2216
2223
  }
2217
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2218
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
2224
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2225
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
2219
2226
  }
2220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, decorators: [{
2227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickObserverService, decorators: [{
2221
2228
  type: Injectable,
2222
2229
  args: [{ providedIn: 'root' }]
2223
2230
  }] });
@@ -2227,10 +2234,10 @@ class MutationObserverFactory {
2227
2234
  create(callback) {
2228
2235
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
2229
2236
  }
2230
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2231
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2237
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2238
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2232
2239
  }
2233
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, decorators: [{
2240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: MutationObserverFactory, decorators: [{
2234
2241
  type: Injectable,
2235
2242
  args: [{ providedIn: 'root' }]
2236
2243
  }] });
@@ -2289,10 +2296,10 @@ class ContentObserverService {
2289
2296
  this._observedElements.delete(element);
2290
2297
  }
2291
2298
  }
2292
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2293
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2299
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2300
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2294
2301
  }
2295
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, decorators: [{
2302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ContentObserverService, decorators: [{
2296
2303
  type: Injectable,
2297
2304
  args: [{ providedIn: 'root' }]
2298
2305
  }] });
@@ -2318,10 +2325,10 @@ class FocusVisibleService {
2318
2325
  onPointerDown() {
2319
2326
  this._hadKeyboardEvent = false;
2320
2327
  }
2321
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2322
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2328
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2329
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2323
2330
  }
2324
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, decorators: [{
2331
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FocusVisibleService, decorators: [{
2325
2332
  type: Injectable,
2326
2333
  args: [{
2327
2334
  providedIn: 'root',
@@ -2333,10 +2340,10 @@ class IntersectionObserverFactory {
2333
2340
  create(callback) {
2334
2341
  return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
2335
2342
  }
2336
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2337
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2343
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2344
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2338
2345
  }
2339
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2346
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2340
2347
  type: Injectable,
2341
2348
  args: [{ providedIn: 'root' }]
2342
2349
  }] });
@@ -2391,10 +2398,10 @@ class IntersectionObserverService {
2391
2398
  this._observedElements.delete(element);
2392
2399
  }
2393
2400
  }
2394
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2395
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2401
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2402
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2396
2403
  }
2397
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, decorators: [{
2404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionObserverService, decorators: [{
2398
2405
  type: Injectable,
2399
2406
  args: [{ providedIn: 'root' }]
2400
2407
  }] });
@@ -2404,10 +2411,10 @@ class ResizeObserverFactory {
2404
2411
  create(callback) {
2405
2412
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
2406
2413
  }
2407
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2408
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2414
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2415
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2409
2416
  }
2410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2411
2418
  type: Injectable,
2412
2419
  args: [{ providedIn: 'root' }]
2413
2420
  }] });
@@ -2462,10 +2469,10 @@ class ResizeObserverService {
2462
2469
  this._observedElements.delete(element);
2463
2470
  }
2464
2471
  }
2465
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2466
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2472
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2473
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2467
2474
  }
2468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, decorators: [{
2475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ResizeObserverService, decorators: [{
2469
2476
  type: Injectable,
2470
2477
  args: [{ providedIn: 'root' }]
2471
2478
  }] });
@@ -2660,10 +2667,10 @@ class RouterStateService {
2660
2667
  fragment,
2661
2668
  };
2662
2669
  }
2663
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2664
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2670
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2671
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2665
2672
  }
2666
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, decorators: [{
2673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RouterStateService, decorators: [{
2667
2674
  type: Injectable,
2668
2675
  args: [{
2669
2676
  providedIn: 'root',
@@ -2879,8 +2886,8 @@ class ViewportService {
2879
2886
  }
2880
2887
  return 'xs';
2881
2888
  }
2882
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2883
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2889
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2890
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2884
2891
  }
2885
2892
  __decorate([
2886
2893
  Memo(),
@@ -2898,7 +2905,7 @@ __decorate([
2898
2905
  __metadata("design:paramtypes", [Object]),
2899
2906
  __metadata("design:returntype", void 0)
2900
2907
  ], ViewportService.prototype, "_buildMediaQuery", null);
2901
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, decorators: [{
2908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ViewportService, decorators: [{
2902
2909
  type: Injectable,
2903
2910
  args: [{
2904
2911
  providedIn: 'root',
@@ -2947,10 +2954,10 @@ class ObserveResizeDirective {
2947
2954
  _unsubscribe() {
2948
2955
  this._currentSubscription?.unsubscribe();
2949
2956
  }
2950
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2951
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2957
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2958
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2952
2959
  }
2953
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2960
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2954
2961
  type: Directive,
2955
2962
  args: [{
2956
2963
  selector: '[etObserveResize]',
@@ -2980,15 +2987,15 @@ class RootBoundaryDirective {
2980
2987
  set boundaryElement(v) {
2981
2988
  this._boundaryElement = v;
2982
2989
  }
2983
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2984
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2990
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2991
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2985
2992
  {
2986
2993
  provide: ROOT_BOUNDARY_TOKEN,
2987
2994
  useExisting: RootBoundaryDirective,
2988
2995
  },
2989
2996
  ], ngImport: i0 }); }
2990
2997
  }
2991
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2992
2999
  type: Directive,
2993
3000
  args: [{
2994
3001
  selector: '[etRootBoundary]',
@@ -3051,6 +3058,10 @@ class AnimatedOverlayDirective {
3051
3058
  * @default false
3052
3059
  */
3053
3060
  this.autoResize = false;
3061
+ /**
3062
+ * Whether the animated overlay should shift when it is near the viewport boundary.
3063
+ */
3064
+ this.shift = true;
3054
3065
  /**
3055
3066
  * Whether the animated overlay should auto hide when the reference element is hidden.
3056
3067
  * @default false
@@ -3078,6 +3089,12 @@ class AnimatedOverlayDirective {
3078
3089
  get isHidden() {
3079
3090
  return this._isHidden$.value;
3080
3091
  }
3092
+ get canMount() {
3093
+ return !this.isMounted && !this.isMounting;
3094
+ }
3095
+ get canUnmount() {
3096
+ return this.isMounted && !this.isUnmounting;
3097
+ }
3081
3098
  get portal() {
3082
3099
  return this._portal;
3083
3100
  }
@@ -3090,7 +3107,12 @@ class AnimatedOverlayDirective {
3090
3107
  mount(config) {
3091
3108
  if (this.isMounted || this.isMounting) {
3092
3109
  if (isDevMode()) {
3093
- console.warn('AnimatedOverlayDirective: The component is already mounted or mounting. Please unmount the component before mounting again.');
3110
+ if (this.isMounted) {
3111
+ console.warn('AnimatedOverlayDirective: The component is currently mounted. Please unmount the component before mounting again.');
3112
+ }
3113
+ if (this.isMounting) {
3114
+ console.warn('AnimatedOverlayDirective: The component is already mounting. Please unmount the component before mounting again.');
3115
+ }
3094
3116
  }
3095
3117
  return;
3096
3118
  }
@@ -3102,7 +3124,7 @@ class AnimatedOverlayDirective {
3102
3124
  providers: providers ?? [],
3103
3125
  });
3104
3126
  this._overlayRef = this._overlayService.create();
3105
- this._portal = this._portal ?? new ComponentPortal(component, this._viewContainerRef, injector);
3127
+ this._portal = new ComponentPortal(component, this._viewContainerRef, injector);
3106
3128
  this._componentRef = this._overlayRef.attach(this._portal);
3107
3129
  if (data) {
3108
3130
  Object.assign(this._componentRef.instance, data);
@@ -3142,7 +3164,6 @@ class AnimatedOverlayDirective {
3142
3164
  flip({
3143
3165
  fallbackPlacements: this.fallbackPlacements ?? undefined,
3144
3166
  fallbackAxisSideDirection: 'start',
3145
- crossAxis: false,
3146
3167
  boundary,
3147
3168
  }),
3148
3169
  ...(this.autoResize
@@ -3156,7 +3177,9 @@ class AnimatedOverlayDirective {
3156
3177
  }),
3157
3178
  ]
3158
3179
  : []),
3159
- shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary }),
3180
+ ...(this.shift
3181
+ ? [shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary })]
3182
+ : []),
3160
3183
  ...(floatingElArrow ? [arrow({ element: floatingElArrow, padding: this.arrowPadding ?? undefined })] : []),
3161
3184
  ...(this.autoHide ? [hide({ strategy: 'referenceHidden', boundary })] : []),
3162
3185
  ],
@@ -3182,6 +3205,9 @@ class AnimatedOverlayDirective {
3182
3205
  if (!this._componentRef) {
3183
3206
  return;
3184
3207
  }
3208
+ if (!this._componentRef.instance._animatedLifecycle) {
3209
+ console.error('AnimatedOverlayDirective: The component does not have an AnimatedLifecycleDirective. Please add one to the component.');
3210
+ }
3185
3211
  this._componentRef.instance._animatedLifecycle?.enter();
3186
3212
  this._componentRef.instance._animatedLifecycle?.state$
3187
3213
  .pipe(tap((s) => {
@@ -3199,7 +3225,12 @@ class AnimatedOverlayDirective {
3199
3225
  unmount() {
3200
3226
  if (!this.isMounted || this.isUnmounting) {
3201
3227
  if (isDevMode()) {
3202
- console.warn('AnimatedOverlayDirective: The component is not mounted or is already unmounting. Please call `mount` before calling `unmount` again.');
3228
+ if (!this.isMounted) {
3229
+ console.warn(`AnimatedOverlayDirective: The component is currently not mounted. Please call "mount" before calling "unmount" again.`);
3230
+ }
3231
+ if (this.isUnmounting) {
3232
+ console.warn(`AnimatedOverlayDirective: The component is already unmounting. Please call "mount" before calling "unmount" again.`);
3233
+ }
3203
3234
  }
3204
3235
  return;
3205
3236
  }
@@ -3256,10 +3287,10 @@ class AnimatedOverlayDirective {
3256
3287
  this._isUnmounting$.next(false);
3257
3288
  this._afterClosed?.next();
3258
3289
  }
3259
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3260
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
3290
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3291
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", shift: "shift", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
3261
3292
  }
3262
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3263
3294
  type: Directive,
3264
3295
  args: [{
3265
3296
  standalone: true,
@@ -3280,6 +3311,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImpor
3280
3311
  type: Input
3281
3312
  }], autoResize: [{
3282
3313
  type: Input
3314
+ }], shift: [{
3315
+ type: Input
3283
3316
  }], autoHide: [{
3284
3317
  type: Input
3285
3318
  }] } });
@@ -3305,10 +3338,10 @@ class ClickOutsideDirective {
3305
3338
  ngOnDestroy() {
3306
3339
  this._subscription?.unsubscribe();
3307
3340
  }
3308
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3309
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3342
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3310
3343
  }
3311
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3312
3345
  type: Directive,
3313
3346
  args: [{
3314
3347
  selector: '[etClickOutside]',
@@ -3462,10 +3495,10 @@ class CursorDragScrollDirective {
3462
3495
  this._elementRef.nativeElement.style.cursor = 'default';
3463
3496
  }
3464
3497
  }
3465
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3466
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
3498
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3499
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
3467
3500
  }
3468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3501
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3469
3502
  type: Directive,
3470
3503
  args: [{
3471
3504
  selector: '[etCursorDragScroll]',
@@ -3498,15 +3531,15 @@ class DebugDirective {
3498
3531
  set sDebug(value) {
3499
3532
  this._debug.set(value);
3500
3533
  }
3501
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3502
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
3534
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3535
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
3503
3536
  {
3504
3537
  provide: DEBUG_TOKEN,
3505
3538
  useExisting: DebugDirective,
3506
3539
  },
3507
3540
  ], exportAs: ["etDebug"], ngImport: i0 }); }
3508
3541
  }
3509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DebugDirective, decorators: [{
3542
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: DebugDirective, decorators: [{
3510
3543
  type: Directive,
3511
3544
  args: [{
3512
3545
  selector: '[etDebug]',
@@ -3553,15 +3586,15 @@ class DelayableDirective {
3553
3586
  }
3554
3587
  this._isDelayed$.next(val);
3555
3588
  }
3556
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3557
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3589
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3590
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3558
3591
  {
3559
3592
  provide: DELAYABLE_TOKEN,
3560
3593
  useExisting: DelayableDirective,
3561
3594
  },
3562
3595
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
3563
3596
  }
3564
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DelayableDirective, decorators: [{
3597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: DelayableDirective, decorators: [{
3565
3598
  type: Directive,
3566
3599
  args: [{
3567
3600
  selector: '[etDelayable]',
@@ -3582,15 +3615,15 @@ class IsActiveElementDirective {
3582
3615
  this.elementRef = inject(ElementRef);
3583
3616
  this.isActiveElement = false;
3584
3617
  }
3585
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3586
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
3618
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3619
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
3587
3620
  {
3588
3621
  provide: IS_ACTIVE_ELEMENT,
3589
3622
  useExisting: IsActiveElementDirective,
3590
3623
  },
3591
3624
  ], ngImport: i0 }); }
3592
3625
  }
3593
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3594
3627
  type: Directive,
3595
3628
  args: [{
3596
3629
  selector: '[etIsActiveElement]',
@@ -3613,15 +3646,15 @@ class IsElementDirective {
3613
3646
  this.elementRef = inject(ElementRef);
3614
3647
  this.isElement = false;
3615
3648
  }
3616
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3617
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
3649
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3650
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
3618
3651
  {
3619
3652
  provide: IS_ELEMENT,
3620
3653
  useExisting: IsElementDirective,
3621
3654
  },
3622
3655
  ], ngImport: i0 }); }
3623
3656
  }
3624
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsElementDirective, decorators: [{
3657
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IsElementDirective, decorators: [{
3625
3658
  type: Directive,
3626
3659
  args: [{
3627
3660
  selector: '[etIsElement]',
@@ -3670,10 +3703,10 @@ class LetDirective {
3670
3703
  }
3671
3704
  }
3672
3705
  }
3673
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3674
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3706
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3707
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3675
3708
  }
3676
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: LetDirective, decorators: [{
3709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: LetDirective, decorators: [{
3677
3710
  type: Directive,
3678
3711
  args: [{
3679
3712
  selector: '[etLet]',
@@ -3725,10 +3758,10 @@ class ObserveContentDirective {
3725
3758
  _unsubscribe() {
3726
3759
  this._currentSubscription?.unsubscribe();
3727
3760
  }
3728
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3729
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3761
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3762
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3730
3763
  }
3731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveContentDirective, decorators: [{
3764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveContentDirective, decorators: [{
3732
3765
  type: Directive,
3733
3766
  args: [{
3734
3767
  selector: '[etObserveContent]',
@@ -3751,10 +3784,10 @@ class ScrollObserverFirstElementDirective {
3751
3784
  constructor() {
3752
3785
  this.isFirstElement = false;
3753
3786
  }
3754
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3755
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3787
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3788
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3756
3789
  }
3757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3758
3791
  type: Directive,
3759
3792
  args: [{
3760
3793
  selector: '[etScrollObserverFirstElement]',
@@ -3770,10 +3803,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImpor
3770
3803
 
3771
3804
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
3772
3805
  class ScrollObserverIgnoreTargetDirective {
3773
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3774
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3806
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3807
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3775
3808
  }
3776
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3777
3810
  type: Directive,
3778
3811
  args: [{
3779
3812
  selector: '[etScrollObserverIgnoreTarget]',
@@ -3789,10 +3822,10 @@ class ScrollObserverLastElementDirective {
3789
3822
  constructor() {
3790
3823
  this.isLastElement = false;
3791
3824
  }
3792
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3793
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
3825
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3826
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
3794
3827
  }
3795
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3796
3829
  type: Directive,
3797
3830
  args: [{
3798
3831
  selector: '[etScrollObserverLastElement]',
@@ -3951,15 +3984,15 @@ class ObserveScrollStateDirective {
3951
3984
  }
3952
3985
  return element;
3953
3986
  }
3954
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3955
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3987
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3988
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3956
3989
  {
3957
3990
  provide: OBSERVE_SCROLL_STATE,
3958
3991
  useExisting: ObserveScrollStateDirective,
3959
3992
  },
3960
3993
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
3961
3994
  }
3962
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3995
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3963
3996
  type: Directive,
3964
3997
  args: [{
3965
3998
  selector: '[etObserveScrollState]',
@@ -4029,15 +4062,15 @@ class ObserveVisibilityDirective {
4029
4062
  }))
4030
4063
  .subscribe();
4031
4064
  }
4032
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4033
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4065
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4066
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4034
4067
  {
4035
4068
  provide: OBSERVE_VISIBILITY_TOKEN,
4036
4069
  useExisting: ObserveVisibilityDirective,
4037
4070
  },
4038
4071
  ], ngImport: i0 }); }
4039
4072
  }
4040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4041
4074
  type: Directive,
4042
4075
  args: [{
4043
4076
  selector: '[etObserveVisibility]',
@@ -4075,10 +4108,10 @@ class RepeatDirective {
4075
4108
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
4076
4109
  }
4077
4110
  }
4078
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4079
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4111
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4112
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4080
4113
  }
4081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RepeatDirective, decorators: [{
4114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: RepeatDirective, decorators: [{
4082
4115
  type: Directive,
4083
4116
  args: [{
4084
4117
  selector: '[etRepeat]',
@@ -4247,10 +4280,10 @@ class SeoDirective {
4247
4280
  }
4248
4281
  }
4249
4282
  }
4250
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4251
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
4283
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4284
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
4252
4285
  }
4253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SeoDirective, decorators: [{
4286
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SeoDirective, decorators: [{
4254
4287
  type: Directive,
4255
4288
  args: [{
4256
4289
  standalone: true,
@@ -4426,10 +4459,10 @@ class InferMimeTypePipe {
4426
4459
  constructor() {
4427
4460
  this.transform = inferMimeType;
4428
4461
  }
4429
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4430
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4462
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4463
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4431
4464
  }
4432
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4465
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4433
4466
  type: Pipe,
4434
4467
  args: [{
4435
4468
  name: 'inferMimeType',
@@ -4475,10 +4508,10 @@ class NormalizeGameResultTypePipe {
4475
4508
  constructor() {
4476
4509
  this.transform = normalizeGameResultType;
4477
4510
  }
4478
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4479
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4511
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4512
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4480
4513
  }
4481
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4482
4515
  type: Pipe,
4483
4516
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
4484
4517
  }] });
@@ -4506,10 +4539,10 @@ class NormalizeMatchStatePipe {
4506
4539
  constructor() {
4507
4540
  this.transform = normalizeMatchState;
4508
4541
  }
4509
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4510
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4542
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4543
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4511
4544
  }
4512
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4513
4546
  type: Pipe,
4514
4547
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
4515
4548
  }] });
@@ -4564,10 +4597,10 @@ class NormalizeMatchParticipantsPipe {
4564
4597
  constructor() {
4565
4598
  this.transform = normalizeMatchParticipants;
4566
4599
  }
4567
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4568
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4601
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4569
4602
  }
4570
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4571
4604
  type: Pipe,
4572
4605
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
4573
4606
  }] });
@@ -4701,10 +4734,10 @@ class NormalizeMatchScorePipe {
4701
4734
  constructor() {
4702
4735
  this.transform = normalizeMatchScore;
4703
4736
  }
4704
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4705
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4737
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4738
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4706
4739
  }
4707
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4708
4741
  type: Pipe,
4709
4742
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
4710
4743
  }] });
@@ -4751,10 +4784,10 @@ class NormalizeMatchTypePipe {
4751
4784
  constructor() {
4752
4785
  this.transform = normalizeMatchType;
4753
4786
  }
4754
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4755
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4787
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4788
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4756
4789
  }
4757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4758
4791
  type: Pipe,
4759
4792
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
4760
4793
  }] });
@@ -4768,10 +4801,10 @@ class ToArrayPipe {
4768
4801
  constructor() {
4769
4802
  this.transform = toArray;
4770
4803
  }
4771
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4772
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4805
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4773
4806
  }
4774
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, decorators: [{
4807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ToArrayPipe, decorators: [{
4775
4808
  type: Pipe,
4776
4809
  args: [{ name: 'toArray', standalone: true }]
4777
4810
  }] });