@ethlete/core 4.2.3 → 4.4.0

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 (46) 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 +3 -3
  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/intersection-observer.utils.mjs +27 -0
  38. package/esm2022/lib/utils/public-api.mjs +2 -1
  39. package/esm2022/lib/utils/signal.utils.mjs +70 -21
  40. package/fesm2022/ethlete-core.mjs +249 -147
  41. package/fesm2022/ethlete-core.mjs.map +1 -1
  42. package/lib/directives/animated-overlay/animated-overlay.directive.d.ts +7 -1
  43. package/lib/utils/intersection-observer.utils.d.ts +14 -0
  44. package/lib/utils/public-api.d.ts +1 -0
  45. package/lib/utils/signal.utils.d.ts +7 -3
  46. package/package.json +7 -7
@@ -28,10 +28,10 @@ class StructuredDataComponent {
28
28
  const html = `<script type="application/ld+json">${json}</script>`;
29
29
  return this._sanitizer.bypassSecurityTrustHtml(html);
30
30
  }
31
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
32
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.2", 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 }); }
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 }); }
33
33
  }
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StructuredDataComponent, decorators: [{
35
35
  type: Component,
36
36
  args: [{
37
37
  selector: 'et-structured-data',
@@ -624,6 +624,33 @@ const getFormGroupValue = (formGroup) => {
624
624
  return value;
625
625
  };
626
626
 
627
+ const getFirstAndLastPartialIntersection = (intersections) => {
628
+ const firstIntersecting = intersections.find((i) => i.intersectionRatio > 0);
629
+ const lastIntersecting = [...intersections].reverse().find((i) => i.intersectionRatio > 0);
630
+ const firstIntersectingIndex = intersections.findIndex((i) => i === firstIntersecting);
631
+ const lastIntersectingIndex = intersections.findIndex((i) => i === lastIntersecting);
632
+ if (!firstIntersecting || !lastIntersecting)
633
+ return null;
634
+ const greaterIntersecting = firstIntersecting.intersectionRatio > lastIntersecting.intersectionRatio ? firstIntersecting : lastIntersecting;
635
+ const greaterIntersectingIndex = firstIntersecting.intersectionRatio > lastIntersecting.intersectionRatio
636
+ ? firstIntersectingIndex
637
+ : lastIntersectingIndex;
638
+ return {
639
+ first: {
640
+ intersection: firstIntersecting,
641
+ index: firstIntersectingIndex,
642
+ },
643
+ last: {
644
+ intersection: lastIntersecting,
645
+ index: lastIntersectingIndex,
646
+ },
647
+ biggest: {
648
+ intersection: greaterIntersecting,
649
+ index: greaterIntersectingIndex,
650
+ },
651
+ };
652
+ };
653
+
627
654
  class KeyPressManager {
628
655
  constructor(key) {
629
656
  this.key = key;
@@ -1412,10 +1439,15 @@ function isElementSignal(el) {
1412
1439
  }
1413
1440
  return false;
1414
1441
  }
1415
- const documentElementSignal = () => signal({ currentElement: document.documentElement, previousElement: null });
1442
+ const documentElementSignal = () => signal({
1443
+ currentElement: document.documentElement,
1444
+ previousElement: null,
1445
+ currentElements: [document.documentElement],
1446
+ previousElements: [],
1447
+ });
1416
1448
  const buildElementSignal = (el) => {
1417
1449
  if (el === null || el === undefined) {
1418
- return signal({ currentElement: null, previousElement: null });
1450
+ return signal({ currentElement: null, previousElement: null, currentElements: [], previousElements: [] });
1419
1451
  }
1420
1452
  if (isElementSignal(el)) {
1421
1453
  return el;
@@ -1423,28 +1455,34 @@ const buildElementSignal = (el) => {
1423
1455
  let mElSignal = null;
1424
1456
  const switchElement = () => switchMap((elOrRef) => {
1425
1457
  if (elOrRef instanceof QueryList) {
1426
- return elOrRef.changes.pipe(startWith(elOrRef), map(() => (elOrRef.first ? coerceElement(elOrRef.first) : null)));
1458
+ return elOrRef.changes.pipe(startWith(elOrRef), map(() => elOrRef.toArray().map((r) => coerceElement(r))));
1459
+ }
1460
+ else if (Array.isArray(elOrRef)) {
1461
+ return of(elOrRef.map((r) => coerceElement(r)));
1427
1462
  }
1428
1463
  else {
1429
- return of(coerceElement(elOrRef));
1464
+ const coercedEl = coerceElement(elOrRef);
1465
+ return of(coercedEl ? [coercedEl] : null);
1430
1466
  }
1431
1467
  });
1432
1468
  if (el instanceof Observable) {
1433
1469
  mElSignal = toSignal(el.pipe(switchElement()), { initialValue: null });
1434
1470
  }
1435
1471
  else if (isSignal(el)) {
1436
- mElSignal = toSignal(toObservable(el).pipe(switchElement()));
1472
+ mElSignal = toSignal(toObservable(el).pipe(switchElement()), { initialValue: null });
1437
1473
  }
1438
1474
  else if (el instanceof QueryList) {
1439
- mElSignal = toSignal(el.changes.pipe(startWith(el), map(() => (el.first ? coerceElement(el.first) : null))));
1475
+ mElSignal = toSignal(el.changes.pipe(startWith(el), map(() => el.toArray().map((r) => coerceElement(r)))), { initialValue: null });
1440
1476
  }
1441
1477
  else {
1442
- mElSignal = signal(coerceElement(el));
1443
- }
1444
- return toSignal(toObservable(mElSignal).pipe(startWith(null), pairwise(), map(([previousElement, currentElement]) => ({
1445
- currentElement: currentElement ?? null,
1446
- previousElement: previousElement ?? null,
1447
- }))), { initialValue: { currentElement: null, previousElement: null } });
1478
+ mElSignal = signal([coerceElement(el)]);
1479
+ }
1480
+ return toSignal(toObservable(mElSignal).pipe(startWith(null), pairwise(), map(([previousElements, currentElements]) => ({
1481
+ previousElements: previousElements ?? [],
1482
+ currentElements: currentElements ?? [],
1483
+ currentElement: currentElements?.[0] ?? null,
1484
+ previousElement: previousElements?.[0] ?? null,
1485
+ }))), { initialValue: { currentElement: null, previousElement: null, previousElements: [], currentElements: [] } });
1448
1486
  };
1449
1487
  const buildSignalEffects = (config) => {
1450
1488
  const { map, eachItemFn, cleanupFn } = config;
@@ -1653,36 +1691,74 @@ const signalElementIntersection = (el, options) => {
1653
1691
  const root = options?.root ? buildElementSignal(options?.root) : documentElementSignal();
1654
1692
  const zone = inject(NgZone);
1655
1693
  const isRendered = signalIsRendered();
1656
- const elementIntersectionSignal = signal(null);
1694
+ const isEnabled = options?.enabled ?? signal(true);
1695
+ const elementIntersectionSignal = signal([]);
1657
1696
  const observer = signal(null);
1658
1697
  effect(() => {
1659
1698
  const rootEl = root().currentElement;
1660
1699
  untracked(() => observer()?.disconnect());
1661
- const newObserver = new IntersectionObserver((e) => {
1700
+ const newObserver = new IntersectionObserver((entries) => {
1662
1701
  if (!isRendered())
1663
1702
  return;
1664
- const entry = e[0];
1665
- if (entry) {
1666
- zone.run(() => elementIntersectionSignal.set(entry));
1703
+ let currentValues = untracked(() => [...elementIntersectionSignal()]);
1704
+ for (const entry of entries) {
1705
+ const existingEntryIndex = currentValues.findIndex((v) => v.target === entry.target);
1706
+ if (existingEntryIndex !== -1) {
1707
+ currentValues = [
1708
+ ...currentValues.slice(0, existingEntryIndex),
1709
+ entry,
1710
+ ...currentValues.slice(existingEntryIndex + 1),
1711
+ ];
1712
+ }
1713
+ else {
1714
+ currentValues = [...currentValues, entry];
1715
+ }
1667
1716
  }
1717
+ zone.run(() => elementIntersectionSignal.set(currentValues));
1668
1718
  }, { ...options, root: rootEl });
1669
1719
  observer.set(newObserver);
1670
1720
  }, { allowSignalWrites: true });
1671
1721
  effect(() => {
1672
1722
  const els = elements();
1673
1723
  const obs = observer();
1674
- elementIntersectionSignal.set(null);
1675
- if (els.previousElement) {
1724
+ const enabled = isEnabled();
1725
+ elementIntersectionSignal.set([]);
1726
+ if (els.previousElements.length) {
1676
1727
  obs?.disconnect();
1677
1728
  }
1678
- if (els.currentElement) {
1679
- obs?.observe(els.currentElement);
1729
+ if (els.currentElements.length && !!enabled) {
1730
+ for (const el of els.currentElements) {
1731
+ obs?.observe(el);
1732
+ }
1680
1733
  }
1681
1734
  }, { allowSignalWrites: true });
1682
1735
  destroyRef.onDestroy(() => observer()?.disconnect());
1683
1736
  return elementIntersectionSignal;
1684
1737
  };
1685
1738
  const signalHostElementIntersection = (options) => signalElementIntersection(inject(ElementRef), options);
1739
+ const signalElementChildren = (el) => {
1740
+ const elements = buildElementSignal(el);
1741
+ const isRendered = signalIsRendered();
1742
+ const elementMutations = signalElementMutations(elements, { childList: true, subtree: true, attributes: true });
1743
+ return computed(() => {
1744
+ if (!isRendered())
1745
+ return [];
1746
+ const els = elements();
1747
+ // We are not interested what the mutation is, just that there is one.
1748
+ // Changes to the DOM may affect the children of the element.
1749
+ elementMutations();
1750
+ if (!els.currentElement)
1751
+ return [];
1752
+ const children = [];
1753
+ for (let index = 0; index < els.currentElement.children.length; index++) {
1754
+ const element = els.currentElement.children[index];
1755
+ if (element instanceof HTMLElement) {
1756
+ children.push(element);
1757
+ }
1758
+ }
1759
+ return children;
1760
+ });
1761
+ };
1686
1762
 
1687
1763
  const scrollBehaviorSupported = supportsScrollBehavior();
1688
1764
  let _uniqueIdCounter = 0;
@@ -1884,15 +1960,15 @@ class AnimatableDirective {
1884
1960
  .subscribe();
1885
1961
  }
1886
1962
  }
1887
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1888
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1963
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1964
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1889
1965
  {
1890
1966
  provide: ANIMATABLE_TOKEN,
1891
1967
  useExisting: AnimatableDirective,
1892
1968
  },
1893
1969
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
1894
1970
  }
1895
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, decorators: [{
1971
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatableDirective, decorators: [{
1896
1972
  type: Directive,
1897
1973
  args: [{
1898
1974
  selector: '[etAnimatable]',
@@ -2012,15 +2088,15 @@ class AnimatedLifecycleDirective {
2012
2088
  _forceState(state) {
2013
2089
  this._state$.next(state);
2014
2090
  }
2015
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2016
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
2091
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2092
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
2017
2093
  {
2018
2094
  provide: ANIMATED_LIFECYCLE_TOKEN,
2019
2095
  useExisting: AnimatedLifecycleDirective,
2020
2096
  },
2021
2097
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
2022
2098
  }
2023
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
2099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
2024
2100
  type: Directive,
2025
2101
  args: [{
2026
2102
  selector: '[etAnimatedLifecycle]',
@@ -2057,15 +2133,15 @@ class AnimatedIfDirective {
2057
2133
  .subscribe();
2058
2134
  }
2059
2135
  }
2060
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2061
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
2136
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2137
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
2062
2138
  {
2063
2139
  provide: ANIMATED_IF_TOKEN,
2064
2140
  useExisting: AnimatedIfDirective,
2065
2141
  },
2066
2142
  ], ngImport: i0 }); }
2067
2143
  }
2068
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, decorators: [{
2144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedIfDirective, decorators: [{
2069
2145
  type: Directive,
2070
2146
  args: [{
2071
2147
  selector: '[etAnimatedIf]',
@@ -2087,10 +2163,10 @@ class ClickObserverFactory {
2087
2163
  create() {
2088
2164
  return fromEvent(document, 'click');
2089
2165
  }
2090
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2091
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
2166
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2167
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
2092
2168
  }
2093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
2169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverFactory, decorators: [{
2094
2170
  type: Injectable,
2095
2171
  args: [{ providedIn: 'root' }]
2096
2172
  }] });
@@ -2143,10 +2219,10 @@ class ClickObserverService {
2143
2219
  this._observedElements.delete(element);
2144
2220
  }
2145
2221
  }
2146
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2147
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
2222
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2223
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
2148
2224
  }
2149
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, decorators: [{
2225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickObserverService, decorators: [{
2150
2226
  type: Injectable,
2151
2227
  args: [{ providedIn: 'root' }]
2152
2228
  }] });
@@ -2156,10 +2232,10 @@ class MutationObserverFactory {
2156
2232
  create(callback) {
2157
2233
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
2158
2234
  }
2159
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2160
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2235
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2236
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2161
2237
  }
2162
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
2238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: MutationObserverFactory, decorators: [{
2163
2239
  type: Injectable,
2164
2240
  args: [{ providedIn: 'root' }]
2165
2241
  }] });
@@ -2218,10 +2294,10 @@ class ContentObserverService {
2218
2294
  this._observedElements.delete(element);
2219
2295
  }
2220
2296
  }
2221
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2222
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2297
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2298
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2223
2299
  }
2224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, decorators: [{
2300
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ContentObserverService, decorators: [{
2225
2301
  type: Injectable,
2226
2302
  args: [{ providedIn: 'root' }]
2227
2303
  }] });
@@ -2247,10 +2323,10 @@ class FocusVisibleService {
2247
2323
  onPointerDown() {
2248
2324
  this._hadKeyboardEvent = false;
2249
2325
  }
2250
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2251
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2326
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2327
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2252
2328
  }
2253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, decorators: [{
2329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: FocusVisibleService, decorators: [{
2254
2330
  type: Injectable,
2255
2331
  args: [{
2256
2332
  providedIn: 'root',
@@ -2262,10 +2338,10 @@ class IntersectionObserverFactory {
2262
2338
  create(callback) {
2263
2339
  return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
2264
2340
  }
2265
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2266
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2342
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2267
2343
  }
2268
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2269
2345
  type: Injectable,
2270
2346
  args: [{ providedIn: 'root' }]
2271
2347
  }] });
@@ -2320,10 +2396,10 @@ class IntersectionObserverService {
2320
2396
  this._observedElements.delete(element);
2321
2397
  }
2322
2398
  }
2323
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2324
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2399
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2400
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2325
2401
  }
2326
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, decorators: [{
2402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IntersectionObserverService, decorators: [{
2327
2403
  type: Injectable,
2328
2404
  args: [{ providedIn: 'root' }]
2329
2405
  }] });
@@ -2333,10 +2409,10 @@ class ResizeObserverFactory {
2333
2409
  create(callback) {
2334
2410
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
2335
2411
  }
2336
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2337
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2412
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2413
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2338
2414
  }
2339
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2415
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2340
2416
  type: Injectable,
2341
2417
  args: [{ providedIn: 'root' }]
2342
2418
  }] });
@@ -2391,10 +2467,10 @@ class ResizeObserverService {
2391
2467
  this._observedElements.delete(element);
2392
2468
  }
2393
2469
  }
2394
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2395
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2470
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2471
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2396
2472
  }
2397
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, decorators: [{
2473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ResizeObserverService, decorators: [{
2398
2474
  type: Injectable,
2399
2475
  args: [{ providedIn: 'root' }]
2400
2476
  }] });
@@ -2589,10 +2665,10 @@ class RouterStateService {
2589
2665
  fragment,
2590
2666
  };
2591
2667
  }
2592
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2593
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2668
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2669
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2594
2670
  }
2595
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, decorators: [{
2671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterStateService, decorators: [{
2596
2672
  type: Injectable,
2597
2673
  args: [{
2598
2674
  providedIn: 'root',
@@ -2808,8 +2884,8 @@ class ViewportService {
2808
2884
  }
2809
2885
  return 'xs';
2810
2886
  }
2811
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2812
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2887
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2888
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2813
2889
  }
2814
2890
  __decorate([
2815
2891
  Memo(),
@@ -2827,7 +2903,7 @@ __decorate([
2827
2903
  __metadata("design:paramtypes", [Object]),
2828
2904
  __metadata("design:returntype", void 0)
2829
2905
  ], ViewportService.prototype, "_buildMediaQuery", null);
2830
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, decorators: [{
2906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ViewportService, decorators: [{
2831
2907
  type: Injectable,
2832
2908
  args: [{
2833
2909
  providedIn: 'root',
@@ -2876,10 +2952,10 @@ class ObserveResizeDirective {
2876
2952
  _unsubscribe() {
2877
2953
  this._currentSubscription?.unsubscribe();
2878
2954
  }
2879
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2880
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2955
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2956
+ 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 }); }
2881
2957
  }
2882
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2883
2959
  type: Directive,
2884
2960
  args: [{
2885
2961
  selector: '[etObserveResize]',
@@ -2909,15 +2985,15 @@ class RootBoundaryDirective {
2909
2985
  set boundaryElement(v) {
2910
2986
  this._boundaryElement = v;
2911
2987
  }
2912
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2913
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2988
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2989
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2914
2990
  {
2915
2991
  provide: ROOT_BOUNDARY_TOKEN,
2916
2992
  useExisting: RootBoundaryDirective,
2917
2993
  },
2918
2994
  ], ngImport: i0 }); }
2919
2995
  }
2920
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2996
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2921
2997
  type: Directive,
2922
2998
  args: [{
2923
2999
  selector: '[etRootBoundary]',
@@ -2980,6 +3056,10 @@ class AnimatedOverlayDirective {
2980
3056
  * @default false
2981
3057
  */
2982
3058
  this.autoResize = false;
3059
+ /**
3060
+ * Whether the animated overlay should shift when it is near the viewport boundary.
3061
+ */
3062
+ this.shift = true;
2983
3063
  /**
2984
3064
  * Whether the animated overlay should auto hide when the reference element is hidden.
2985
3065
  * @default false
@@ -3007,6 +3087,12 @@ class AnimatedOverlayDirective {
3007
3087
  get isHidden() {
3008
3088
  return this._isHidden$.value;
3009
3089
  }
3090
+ get canMount() {
3091
+ return !this.isMounted && !this.isMounting;
3092
+ }
3093
+ get canUnmount() {
3094
+ return this.isMounted && !this.isUnmounting;
3095
+ }
3010
3096
  get portal() {
3011
3097
  return this._portal;
3012
3098
  }
@@ -3019,7 +3105,12 @@ class AnimatedOverlayDirective {
3019
3105
  mount(config) {
3020
3106
  if (this.isMounted || this.isMounting) {
3021
3107
  if (isDevMode()) {
3022
- console.warn('AnimatedOverlayDirective: The component is already mounted or mounting. Please unmount the component before mounting again.');
3108
+ if (this.isMounted) {
3109
+ console.warn('AnimatedOverlayDirective: The component is currently mounted. Please unmount the component before mounting again.');
3110
+ }
3111
+ if (this.isMounting) {
3112
+ console.warn('AnimatedOverlayDirective: The component is already mounting. Please unmount the component before mounting again.');
3113
+ }
3023
3114
  }
3024
3115
  return;
3025
3116
  }
@@ -3031,7 +3122,7 @@ class AnimatedOverlayDirective {
3031
3122
  providers: providers ?? [],
3032
3123
  });
3033
3124
  this._overlayRef = this._overlayService.create();
3034
- this._portal = this._portal ?? new ComponentPortal(component, this._viewContainerRef, injector);
3125
+ this._portal = new ComponentPortal(component, this._viewContainerRef, injector);
3035
3126
  this._componentRef = this._overlayRef.attach(this._portal);
3036
3127
  if (data) {
3037
3128
  Object.assign(this._componentRef.instance, data);
@@ -3071,7 +3162,6 @@ class AnimatedOverlayDirective {
3071
3162
  flip({
3072
3163
  fallbackPlacements: this.fallbackPlacements ?? undefined,
3073
3164
  fallbackAxisSideDirection: 'start',
3074
- crossAxis: false,
3075
3165
  boundary,
3076
3166
  }),
3077
3167
  ...(this.autoResize
@@ -3085,7 +3175,9 @@ class AnimatedOverlayDirective {
3085
3175
  }),
3086
3176
  ]
3087
3177
  : []),
3088
- shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary }),
3178
+ ...(this.shift
3179
+ ? [shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary })]
3180
+ : []),
3089
3181
  ...(floatingElArrow ? [arrow({ element: floatingElArrow, padding: this.arrowPadding ?? undefined })] : []),
3090
3182
  ...(this.autoHide ? [hide({ strategy: 'referenceHidden', boundary })] : []),
3091
3183
  ],
@@ -3111,6 +3203,9 @@ class AnimatedOverlayDirective {
3111
3203
  if (!this._componentRef) {
3112
3204
  return;
3113
3205
  }
3206
+ if (!this._componentRef.instance._animatedLifecycle) {
3207
+ console.error('AnimatedOverlayDirective: The component does not have an AnimatedLifecycleDirective. Please add one to the component.');
3208
+ }
3114
3209
  this._componentRef.instance._animatedLifecycle?.enter();
3115
3210
  this._componentRef.instance._animatedLifecycle?.state$
3116
3211
  .pipe(tap((s) => {
@@ -3128,7 +3223,12 @@ class AnimatedOverlayDirective {
3128
3223
  unmount() {
3129
3224
  if (!this.isMounted || this.isUnmounting) {
3130
3225
  if (isDevMode()) {
3131
- console.warn('AnimatedOverlayDirective: The component is not mounted or is already unmounting. Please call `mount` before calling `unmount` again.');
3226
+ if (!this.isMounted) {
3227
+ console.warn(`AnimatedOverlayDirective: The component is currently not mounted. Please call "mount" before calling "unmount" again.`);
3228
+ }
3229
+ if (this.isUnmounting) {
3230
+ console.warn(`AnimatedOverlayDirective: The component is already unmounting. Please call "mount" before calling "unmount" again.`);
3231
+ }
3132
3232
  }
3133
3233
  return;
3134
3234
  }
@@ -3185,10 +3285,10 @@ class AnimatedOverlayDirective {
3185
3285
  this._isUnmounting$.next(false);
3186
3286
  this._afterClosed?.next();
3187
3287
  }
3188
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3189
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", 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 }); }
3288
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3289
+ 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", shift: "shift", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
3190
3290
  }
3191
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3291
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3192
3292
  type: Directive,
3193
3293
  args: [{
3194
3294
  standalone: true,
@@ -3209,6 +3309,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImpor
3209
3309
  type: Input
3210
3310
  }], autoResize: [{
3211
3311
  type: Input
3312
+ }], shift: [{
3313
+ type: Input
3212
3314
  }], autoHide: [{
3213
3315
  type: Input
3214
3316
  }] } });
@@ -3234,10 +3336,10 @@ class ClickOutsideDirective {
3234
3336
  ngOnDestroy() {
3235
3337
  this._subscription?.unsubscribe();
3236
3338
  }
3237
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3238
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3339
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3340
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3239
3341
  }
3240
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3241
3343
  type: Directive,
3242
3344
  args: [{
3243
3345
  selector: '[etClickOutside]',
@@ -3391,10 +3493,10 @@ class CursorDragScrollDirective {
3391
3493
  this._elementRef.nativeElement.style.cursor = 'default';
3392
3494
  }
3393
3495
  }
3394
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3395
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
3496
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3497
+ 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 }); }
3396
3498
  }
3397
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3398
3500
  type: Directive,
3399
3501
  args: [{
3400
3502
  selector: '[etCursorDragScroll]',
@@ -3427,15 +3529,15 @@ class DebugDirective {
3427
3529
  set sDebug(value) {
3428
3530
  this._debug.set(value);
3429
3531
  }
3430
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3431
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
3532
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3533
+ 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: [
3432
3534
  {
3433
3535
  provide: DEBUG_TOKEN,
3434
3536
  useExisting: DebugDirective,
3435
3537
  },
3436
3538
  ], exportAs: ["etDebug"], ngImport: i0 }); }
3437
3539
  }
3438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, decorators: [{
3540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DebugDirective, decorators: [{
3439
3541
  type: Directive,
3440
3542
  args: [{
3441
3543
  selector: '[etDebug]',
@@ -3482,15 +3584,15 @@ class DelayableDirective {
3482
3584
  }
3483
3585
  this._isDelayed$.next(val);
3484
3586
  }
3485
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3486
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3587
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3588
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3487
3589
  {
3488
3590
  provide: DELAYABLE_TOKEN,
3489
3591
  useExisting: DelayableDirective,
3490
3592
  },
3491
3593
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
3492
3594
  }
3493
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, decorators: [{
3595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DelayableDirective, decorators: [{
3494
3596
  type: Directive,
3495
3597
  args: [{
3496
3598
  selector: '[etDelayable]',
@@ -3511,15 +3613,15 @@ class IsActiveElementDirective {
3511
3613
  this.elementRef = inject(ElementRef);
3512
3614
  this.isActiveElement = false;
3513
3615
  }
3514
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3515
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
3616
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3617
+ 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: [
3516
3618
  {
3517
3619
  provide: IS_ACTIVE_ELEMENT,
3518
3620
  useExisting: IsActiveElementDirective,
3519
3621
  },
3520
3622
  ], ngImport: i0 }); }
3521
3623
  }
3522
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3523
3625
  type: Directive,
3524
3626
  args: [{
3525
3627
  selector: '[etIsActiveElement]',
@@ -3542,15 +3644,15 @@ class IsElementDirective {
3542
3644
  this.elementRef = inject(ElementRef);
3543
3645
  this.isElement = false;
3544
3646
  }
3545
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3546
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
3647
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3648
+ 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: [
3547
3649
  {
3548
3650
  provide: IS_ELEMENT,
3549
3651
  useExisting: IsElementDirective,
3550
3652
  },
3551
3653
  ], ngImport: i0 }); }
3552
3654
  }
3553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, decorators: [{
3655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: IsElementDirective, decorators: [{
3554
3656
  type: Directive,
3555
3657
  args: [{
3556
3658
  selector: '[etIsElement]',
@@ -3599,10 +3701,10 @@ class LetDirective {
3599
3701
  }
3600
3702
  }
3601
3703
  }
3602
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3603
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3704
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3705
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3604
3706
  }
3605
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, decorators: [{
3707
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: LetDirective, decorators: [{
3606
3708
  type: Directive,
3607
3709
  args: [{
3608
3710
  selector: '[etLet]',
@@ -3654,10 +3756,10 @@ class ObserveContentDirective {
3654
3756
  _unsubscribe() {
3655
3757
  this._currentSubscription?.unsubscribe();
3656
3758
  }
3657
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3658
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3759
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3760
+ 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 }); }
3659
3761
  }
3660
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
3762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveContentDirective, decorators: [{
3661
3763
  type: Directive,
3662
3764
  args: [{
3663
3765
  selector: '[etObserveContent]',
@@ -3680,10 +3782,10 @@ class ScrollObserverFirstElementDirective {
3680
3782
  constructor() {
3681
3783
  this.isFirstElement = false;
3682
3784
  }
3683
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3684
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3785
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3786
+ 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 }); }
3685
3787
  }
3686
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3687
3789
  type: Directive,
3688
3790
  args: [{
3689
3791
  selector: '[etScrollObserverFirstElement]',
@@ -3699,10 +3801,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImpor
3699
3801
 
3700
3802
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
3701
3803
  class ScrollObserverIgnoreTargetDirective {
3702
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3703
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3805
+ 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 }); }
3704
3806
  }
3705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3706
3808
  type: Directive,
3707
3809
  args: [{
3708
3810
  selector: '[etScrollObserverIgnoreTarget]',
@@ -3718,10 +3820,10 @@ class ScrollObserverLastElementDirective {
3718
3820
  constructor() {
3719
3821
  this.isLastElement = false;
3720
3822
  }
3721
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3722
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", 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 }); }
3823
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3824
+ 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 }); }
3723
3825
  }
3724
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3725
3827
  type: Directive,
3726
3828
  args: [{
3727
3829
  selector: '[etScrollObserverLastElement]',
@@ -3880,15 +3982,15 @@ class ObserveScrollStateDirective {
3880
3982
  }
3881
3983
  return element;
3882
3984
  }
3883
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3884
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3985
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3986
+ 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: [
3885
3987
  {
3886
3988
  provide: OBSERVE_SCROLL_STATE,
3887
3989
  useExisting: ObserveScrollStateDirective,
3888
3990
  },
3889
3991
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
3890
3992
  }
3891
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3993
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3892
3994
  type: Directive,
3893
3995
  args: [{
3894
3996
  selector: '[etObserveScrollState]',
@@ -3958,15 +4060,15 @@ class ObserveVisibilityDirective {
3958
4060
  }))
3959
4061
  .subscribe();
3960
4062
  }
3961
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3962
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4063
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4064
+ 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: [
3963
4065
  {
3964
4066
  provide: OBSERVE_VISIBILITY_TOKEN,
3965
4067
  useExisting: ObserveVisibilityDirective,
3966
4068
  },
3967
4069
  ], ngImport: i0 }); }
3968
4070
  }
3969
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4071
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
3970
4072
  type: Directive,
3971
4073
  args: [{
3972
4074
  selector: '[etObserveVisibility]',
@@ -4004,10 +4106,10 @@ class RepeatDirective {
4004
4106
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
4005
4107
  }
4006
4108
  }
4007
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4008
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4109
+ 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 }); }
4110
+ 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 }); }
4009
4111
  }
4010
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, decorators: [{
4112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RepeatDirective, decorators: [{
4011
4113
  type: Directive,
4012
4114
  args: [{
4013
4115
  selector: '[etRepeat]',
@@ -4176,10 +4278,10 @@ class SeoDirective {
4176
4278
  }
4177
4279
  }
4178
4280
  }
4179
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4180
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
4281
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4282
+ 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 }); }
4181
4283
  }
4182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, decorators: [{
4284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: SeoDirective, decorators: [{
4183
4285
  type: Directive,
4184
4286
  args: [{
4185
4287
  standalone: true,
@@ -4355,10 +4457,10 @@ class InferMimeTypePipe {
4355
4457
  constructor() {
4356
4458
  this.transform = inferMimeType;
4357
4459
  }
4358
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4359
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4460
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4461
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4360
4462
  }
4361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4362
4464
  type: Pipe,
4363
4465
  args: [{
4364
4466
  name: 'inferMimeType',
@@ -4404,10 +4506,10 @@ class NormalizeGameResultTypePipe {
4404
4506
  constructor() {
4405
4507
  this.transform = normalizeGameResultType;
4406
4508
  }
4407
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4408
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4509
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4510
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4409
4511
  }
4410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4512
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4411
4513
  type: Pipe,
4412
4514
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
4413
4515
  }] });
@@ -4435,10 +4537,10 @@ class NormalizeMatchStatePipe {
4435
4537
  constructor() {
4436
4538
  this.transform = normalizeMatchState;
4437
4539
  }
4438
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4439
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4540
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4541
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4440
4542
  }
4441
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4442
4544
  type: Pipe,
4443
4545
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
4444
4546
  }] });
@@ -4493,10 +4595,10 @@ class NormalizeMatchParticipantsPipe {
4493
4595
  constructor() {
4494
4596
  this.transform = normalizeMatchParticipants;
4495
4597
  }
4496
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4497
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4598
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4599
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4498
4600
  }
4499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4500
4602
  type: Pipe,
4501
4603
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
4502
4604
  }] });
@@ -4630,10 +4732,10 @@ class NormalizeMatchScorePipe {
4630
4732
  constructor() {
4631
4733
  this.transform = normalizeMatchScore;
4632
4734
  }
4633
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4634
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4735
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4736
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4635
4737
  }
4636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4738
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4637
4739
  type: Pipe,
4638
4740
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
4639
4741
  }] });
@@ -4680,10 +4782,10 @@ class NormalizeMatchTypePipe {
4680
4782
  constructor() {
4681
4783
  this.transform = normalizeMatchType;
4682
4784
  }
4683
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4684
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4785
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4786
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4685
4787
  }
4686
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4687
4789
  type: Pipe,
4688
4790
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
4689
4791
  }] });
@@ -4697,10 +4799,10 @@ class ToArrayPipe {
4697
4799
  constructor() {
4698
4800
  this.transform = toArray;
4699
4801
  }
4700
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4701
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4802
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4803
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4702
4804
  }
4703
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, decorators: [{
4805
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ToArrayPipe, decorators: [{
4704
4806
  type: Pipe,
4705
4807
  args: [{ name: 'toArray', standalone: true }]
4706
4808
  }] });
@@ -4788,5 +4890,5 @@ const Validators = {
4788
4890
  * Generated bundle index. Do not edit.
4789
4891
  */
4790
4892
 
4791
- export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, buildSignalEffects, clamp, clone, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, signalAttributes, signalClasses, signalElementDimensions, signalElementIntersection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
4893
+ export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, buildSignalEffects, clamp, clone, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFirstAndLastPartialIntersection, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, signalAttributes, signalClasses, signalElementChildren, signalElementDimensions, signalElementIntersection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
4792
4894
  //# sourceMappingURL=ethlete-core.mjs.map