@ethlete/core 4.1.0 → 4.2.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 (41) hide show
  1. package/esm2022/lib/components/structured-data/structured-data.component.mjs +4 -4
  2. package/esm2022/lib/directives/animatable/animatable.directive.mjs +4 -4
  3. package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +4 -4
  4. package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +4 -4
  5. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +4 -4
  6. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +4 -4
  7. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +4 -4
  8. package/esm2022/lib/directives/debug/debug.directive.mjs +4 -4
  9. package/esm2022/lib/directives/delayable/delayable.directive.mjs +4 -4
  10. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +4 -4
  11. package/esm2022/lib/directives/is-element/is-element.directive.mjs +4 -4
  12. package/esm2022/lib/directives/let/let.directive.mjs +4 -4
  13. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +4 -4
  14. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +4 -4
  15. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +4 -4
  16. package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +5 -5
  17. package/esm2022/lib/directives/repeat/repeat.directive.mjs +5 -5
  18. package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +4 -4
  19. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +4 -4
  20. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +4 -4
  21. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +4 -4
  22. package/esm2022/lib/directives/seo/seo.directive.mjs +4 -4
  23. package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +4 -4
  24. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +4 -4
  25. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +4 -4
  26. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +4 -4
  27. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +4 -4
  28. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +4 -4
  29. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +4 -4
  30. package/esm2022/lib/services/click-observer.service.mjs +7 -7
  31. package/esm2022/lib/services/content-observer.service.mjs +7 -7
  32. package/esm2022/lib/services/focus-visible.service.mjs +5 -5
  33. package/esm2022/lib/services/intersection-observer.service.mjs +7 -7
  34. package/esm2022/lib/services/resize-observer.service.mjs +7 -7
  35. package/esm2022/lib/services/router-state.service.mjs +5 -5
  36. package/esm2022/lib/services/viewport.service.mjs +5 -5
  37. package/esm2022/lib/utils/signal.utils.mjs +129 -11
  38. package/fesm2022/ethlete-core.mjs +256 -139
  39. package/fesm2022/ethlete-core.mjs.map +1 -1
  40. package/lib/utils/signal.utils.d.ts +31 -3
  41. package/package.json +7 -7
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
- import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, QueryList, isSignal, signal, effect, ChangeDetectorRef, isDevMode, Directive, Injectable, NgZone, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, computed, Pipe } from '@angular/core';
2
+ import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal, signal, QueryList, effect, afterNextRender, NgZone, isDevMode, computed, Directive, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe } from '@angular/core';
3
3
  import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
4
- import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise, skip, debounceTime, merge, fromEvent, takeWhile, finalize } from 'rxjs';
4
+ import { Subject, BehaviorSubject, takeUntil, of, switchMap, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise, skip, debounceTime, fromEvent, merge, takeWhile, finalize } from 'rxjs';
5
5
  import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
6
6
  import { FormGroup, FormArray, FormControl } from '@angular/forms';
7
7
  import { toSignal, takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
@@ -11,9 +11,9 @@ import * as i1 from '@angular/common';
11
11
  import { NgIf, DOCUMENT } from '@angular/common';
12
12
  import { Overlay } from '@angular/cdk/overlay';
13
13
  import { ComponentPortal } from '@angular/cdk/portal';
14
- import { autoUpdate, computePosition, offset, flip, size, shift, limitShift, arrow, hide } from '@floating-ui/dom';
14
+ import { offset, flip, size, limitShift, shift, arrow, hide, computePosition, autoUpdate } from '@floating-ui/dom';
15
15
  import { Router, NavigationEnd } from '@angular/router';
16
- import { __decorate, __metadata } from 'tslib';
16
+ import { __metadata, __decorate } from 'tslib';
17
17
  import { BreakpointObserver } from '@angular/cdk/layout';
18
18
  import { debounceTime as debounceTime$1 } from 'rxjs/operators';
19
19
 
@@ -29,10 +29,10 @@ class StructuredDataComponent {
29
29
  const html = `<script type="application/ld+json">${json}</script>`;
30
30
  return this._sanitizer.bypassSecurityTrustHtml(html);
31
31
  }
32
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
33
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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.1", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
33
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.1", 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 }); }
34
34
  }
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StructuredDataComponent, decorators: [{
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: StructuredDataComponent, decorators: [{
36
36
  type: Component,
37
37
  args: [{
38
38
  selector: 'et-structured-data',
@@ -1375,7 +1375,20 @@ class SelectionModel {
1375
1375
  }
1376
1376
  }
1377
1377
 
1378
+ function isElementSignal(el) {
1379
+ if (isSignal(el)) {
1380
+ const val = el();
1381
+ return typeof val === 'object' && val !== null && 'currentElement' in val && 'previousElement' in val;
1382
+ }
1383
+ return false;
1384
+ }
1378
1385
  const buildElementSignal = (el) => {
1386
+ if (el === null || el === undefined) {
1387
+ return signal({ currentElement: null, previousElement: null });
1388
+ }
1389
+ if (isElementSignal(el)) {
1390
+ return el;
1391
+ }
1379
1392
  let mElSignal = null;
1380
1393
  const switchElement = () => switchMap((elOrRef) => {
1381
1394
  if (elOrRef instanceof QueryList) {
@@ -1398,8 +1411,8 @@ const buildElementSignal = (el) => {
1398
1411
  mElSignal = signal(coerceElement(el));
1399
1412
  }
1400
1413
  return toSignal(toObservable(mElSignal).pipe(startWith(null), pairwise(), map(([previousElement, currentElement]) => ({
1401
- currentElement,
1402
- previousElement,
1414
+ currentElement: currentElement ?? null,
1415
+ previousElement: previousElement ?? null,
1403
1416
  }))), { initialValue: { currentElement: null, previousElement: null } });
1404
1417
  };
1405
1418
  const buildSignalEffects = (config) => {
@@ -1425,6 +1438,11 @@ const buildSignalEffects = (config) => {
1425
1438
  };
1426
1439
  return { remove, has };
1427
1440
  };
1441
+ const signalIsRendered = () => {
1442
+ const isRendered = signal(false);
1443
+ afterNextRender(() => isRendered.set(true));
1444
+ return isRendered.asReadonly();
1445
+ };
1428
1446
  const signalClasses = (el, classMap) => {
1429
1447
  const elements = buildElementSignal(el);
1430
1448
  return buildSignalEffects({
@@ -1484,7 +1502,8 @@ const signalHostStyles = (styleMap) => signalStyles(inject(ElementRef), styleMap
1484
1502
  const signalElementDimensions = (el) => {
1485
1503
  const destroyRef = inject(DestroyRef);
1486
1504
  const elements = buildElementSignal(el);
1487
- const cdr = inject(ChangeDetectorRef);
1505
+ const zone = inject(NgZone);
1506
+ const isRendered = signalIsRendered();
1488
1507
  const initialValue = () => ({
1489
1508
  rect: elements().currentElement?.getBoundingClientRect() ?? null,
1490
1509
  borderBoxSize: null,
@@ -1493,12 +1512,14 @@ const signalElementDimensions = (el) => {
1493
1512
  });
1494
1513
  const elementDimensionsSignal = signal(initialValue());
1495
1514
  const observer = new ResizeObserver((e) => {
1515
+ if (!isRendered())
1516
+ return;
1496
1517
  const entry = e[0];
1497
1518
  if (entry) {
1498
1519
  const devicePixelContentBoxSize = entry.devicePixelContentBoxSize?.[0] ?? null;
1499
1520
  const borderBoxSize = entry.borderBoxSize?.[0] ?? null;
1500
1521
  const contentBoxSize = entry.contentBoxSize?.[0] ?? null;
1501
- elementDimensionsSignal.set({
1522
+ zone.run(() => elementDimensionsSignal.set({
1502
1523
  rect: entry.contentRect,
1503
1524
  borderBoxSize: borderBoxSize
1504
1525
  ? { inlineSize: borderBoxSize.inlineSize, blockSize: borderBoxSize.blockSize }
@@ -1509,13 +1530,15 @@ const signalElementDimensions = (el) => {
1509
1530
  devicePixelContentBoxSize: devicePixelContentBoxSize
1510
1531
  ? { inlineSize: devicePixelContentBoxSize.inlineSize, blockSize: devicePixelContentBoxSize.blockSize }
1511
1532
  : null,
1512
- });
1513
- cdr.detectChanges();
1533
+ }));
1514
1534
  }
1515
1535
  });
1516
1536
  effect(() => {
1517
1537
  const els = elements();
1518
1538
  elementDimensionsSignal.set(initialValue());
1539
+ if (els.previousElement) {
1540
+ observer.disconnect();
1541
+ }
1519
1542
  if (els.currentElement) {
1520
1543
  const computedDisplay = getComputedStyle(els.currentElement).display;
1521
1544
  const currentElIsAngularComponent = els.currentElement?.tagName.toLowerCase().includes('-');
@@ -1524,14 +1547,108 @@ const signalElementDimensions = (el) => {
1524
1547
  }
1525
1548
  observer.observe(els.currentElement);
1526
1549
  }
1550
+ }, { allowSignalWrites: true });
1551
+ destroyRef.onDestroy(() => observer.disconnect());
1552
+ return elementDimensionsSignal.asReadonly();
1553
+ };
1554
+ const signalHostElementDimensions = () => signalElementDimensions(inject(ElementRef));
1555
+ const signalElementMutations = (el, options) => {
1556
+ const destroyRef = inject(DestroyRef);
1557
+ const elements = buildElementSignal(el);
1558
+ const zone = inject(NgZone);
1559
+ const isRendered = signalIsRendered();
1560
+ const elementMutationsSignal = signal(null);
1561
+ const observer = new MutationObserver((e) => {
1562
+ if (!isRendered())
1563
+ return;
1564
+ const entry = e[0];
1565
+ if (entry) {
1566
+ zone.run(() => elementMutationsSignal.set(entry));
1567
+ }
1568
+ });
1569
+ effect(() => {
1570
+ const els = elements();
1571
+ elementMutationsSignal.set(null);
1527
1572
  if (els.previousElement) {
1528
- observer.unobserve(els.previousElement);
1573
+ observer.disconnect();
1574
+ }
1575
+ if (els.currentElement) {
1576
+ observer.observe(els.currentElement, options);
1529
1577
  }
1530
1578
  }, { allowSignalWrites: true });
1531
1579
  destroyRef.onDestroy(() => observer.disconnect());
1532
- return elementDimensionsSignal;
1580
+ return elementMutationsSignal.asReadonly();
1533
1581
  };
1534
- const signalHostElementDimensions = () => signalElementDimensions(inject(ElementRef));
1582
+ const signalHostElementMutations = (options) => signalElementMutations(inject(ElementRef), options);
1583
+ const signalElementScrollState = (el) => {
1584
+ const elements = buildElementSignal(el);
1585
+ const elementDimensions = signalElementDimensions(elements);
1586
+ const elementMutations = signalElementMutations(elements, { childList: true, subtree: true });
1587
+ const isRendered = signalIsRendered();
1588
+ return computed(() => {
1589
+ const element = elements().currentElement;
1590
+ const dimensions = elementDimensions();
1591
+ const notScrollable = () => ({
1592
+ canScroll: false,
1593
+ canScrollHorizontally: false,
1594
+ canScrollVertically: false,
1595
+ scrollWidth: element?.scrollWidth ?? null,
1596
+ scrollHeight: element?.scrollHeight ?? null,
1597
+ elementDimensions: dimensions,
1598
+ });
1599
+ // We are not interested what the mutation is, just that there is one.
1600
+ // Changes to the DOM can affect the scroll state of the element.
1601
+ elementMutations();
1602
+ if (!element || !dimensions.rect || !isRendered())
1603
+ return notScrollable();
1604
+ const { scrollWidth, scrollHeight } = element;
1605
+ const { width, height } = dimensions.rect;
1606
+ const canScrollHorizontally = scrollWidth > width;
1607
+ const canScrollVertically = scrollHeight > height;
1608
+ return {
1609
+ canScroll: canScrollHorizontally || canScrollVertically,
1610
+ canScrollHorizontally,
1611
+ canScrollVertically,
1612
+ scrollWidth,
1613
+ scrollHeight,
1614
+ elementDimensions: dimensions,
1615
+ };
1616
+ });
1617
+ };
1618
+ const signalHostElementScrollState = () => signalElementScrollState(inject(ElementRef));
1619
+ const signalElementIntersection = (el, container, options) => {
1620
+ const destroyRef = inject(DestroyRef);
1621
+ const elements = buildElementSignal(el);
1622
+ const containerElements = buildElementSignal(container);
1623
+ const zone = inject(NgZone);
1624
+ const isRendered = signalIsRendered();
1625
+ const initialValue = () => ({
1626
+ isIntersecting: isElementVisible({ element: elements().currentElement, container: containerElements().currentElement })?.inline ??
1627
+ false,
1628
+ });
1629
+ const elementIntersectionSignal = signal(initialValue());
1630
+ const observer = new IntersectionObserver((e) => {
1631
+ if (!isRendered())
1632
+ return;
1633
+ const entry = e[0];
1634
+ if (entry) {
1635
+ zone.run(() => elementIntersectionSignal.set(entry));
1636
+ }
1637
+ }, options);
1638
+ effect(() => {
1639
+ const els = elements();
1640
+ elementIntersectionSignal.set(initialValue());
1641
+ if (els.previousElement) {
1642
+ observer.disconnect();
1643
+ }
1644
+ if (els.currentElement) {
1645
+ observer.observe(els.currentElement);
1646
+ }
1647
+ }, { allowSignalWrites: true });
1648
+ destroyRef.onDestroy(() => observer.disconnect());
1649
+ return elementIntersectionSignal.asReadonly();
1650
+ };
1651
+ const signalHostElementIntersection = (container, options) => signalElementIntersection(inject(ElementRef), container, options);
1535
1652
 
1536
1653
  const scrollBehaviorSupported = supportsScrollBehavior();
1537
1654
  let _uniqueIdCounter = 0;
@@ -1733,15 +1850,15 @@ class AnimatableDirective {
1733
1850
  .subscribe();
1734
1851
  }
1735
1852
  }
1736
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1737
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1853
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1854
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1738
1855
  {
1739
1856
  provide: ANIMATABLE_TOKEN,
1740
1857
  useExisting: AnimatableDirective,
1741
1858
  },
1742
1859
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
1743
1860
  }
1744
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatableDirective, decorators: [{
1861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatableDirective, decorators: [{
1745
1862
  type: Directive,
1746
1863
  args: [{
1747
1864
  selector: '[etAnimatable]',
@@ -1861,15 +1978,15 @@ class AnimatedLifecycleDirective {
1861
1978
  _forceState(state) {
1862
1979
  this._state$.next(state);
1863
1980
  }
1864
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1865
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1981
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1982
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1866
1983
  {
1867
1984
  provide: ANIMATED_LIFECYCLE_TOKEN,
1868
1985
  useExisting: AnimatedLifecycleDirective,
1869
1986
  },
1870
1987
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
1871
1988
  }
1872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1989
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1873
1990
  type: Directive,
1874
1991
  args: [{
1875
1992
  selector: '[etAnimatedLifecycle]',
@@ -1906,15 +2023,15 @@ class AnimatedIfDirective {
1906
2023
  .subscribe();
1907
2024
  }
1908
2025
  }
1909
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1910
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
2026
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2027
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
1911
2028
  {
1912
2029
  provide: ANIMATED_IF_TOKEN,
1913
2030
  useExisting: AnimatedIfDirective,
1914
2031
  },
1915
2032
  ], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
1916
2033
  }
1917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedIfDirective, decorators: [{
2034
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedIfDirective, decorators: [{
1918
2035
  type: Directive,
1919
2036
  args: [{
1920
2037
  selector: '[etAnimatedIf]',
@@ -1937,10 +2054,10 @@ class ClickObserverFactory {
1937
2054
  create() {
1938
2055
  return fromEvent(document, 'click');
1939
2056
  }
1940
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1941
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
2057
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2058
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1942
2059
  }
1943
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverFactory, decorators: [{
2060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, decorators: [{
1944
2061
  type: Injectable,
1945
2062
  args: [{ providedIn: 'root' }]
1946
2063
  }] });
@@ -1993,10 +2110,10 @@ class ClickObserverService {
1993
2110
  this._observedElements.delete(element);
1994
2111
  }
1995
2112
  }
1996
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1997
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
2113
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2114
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1998
2115
  }
1999
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickObserverService, decorators: [{
2116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, decorators: [{
2000
2117
  type: Injectable,
2001
2118
  args: [{ providedIn: 'root' }]
2002
2119
  }] });
@@ -2006,10 +2123,10 @@ class MutationObserverFactory {
2006
2123
  create(callback) {
2007
2124
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
2008
2125
  }
2009
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2010
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2127
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
2011
2128
  }
2012
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MutationObserverFactory, decorators: [{
2129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, decorators: [{
2013
2130
  type: Injectable,
2014
2131
  args: [{ providedIn: 'root' }]
2015
2132
  }] });
@@ -2068,10 +2185,10 @@ class ContentObserverService {
2068
2185
  this._observedElements.delete(element);
2069
2186
  }
2070
2187
  }
2071
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2072
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2188
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2189
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
2073
2190
  }
2074
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContentObserverService, decorators: [{
2191
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, decorators: [{
2075
2192
  type: Injectable,
2076
2193
  args: [{ providedIn: 'root' }]
2077
2194
  }] });
@@ -2097,25 +2214,25 @@ class FocusVisibleService {
2097
2214
  onPointerDown() {
2098
2215
  this._hadKeyboardEvent = false;
2099
2216
  }
2100
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2101
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2217
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2218
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
2102
2219
  }
2103
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FocusVisibleService, decorators: [{
2220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, decorators: [{
2104
2221
  type: Injectable,
2105
2222
  args: [{
2106
2223
  providedIn: 'root',
2107
2224
  }]
2108
- }], ctorParameters: function () { return []; } });
2225
+ }], ctorParameters: () => [] });
2109
2226
 
2110
2227
  /* eslint-disable @typescript-eslint/no-non-null-assertion */
2111
2228
  class IntersectionObserverFactory {
2112
2229
  create(callback) {
2113
2230
  return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
2114
2231
  }
2115
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2116
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2232
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2233
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
2117
2234
  }
2118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
2119
2236
  type: Injectable,
2120
2237
  args: [{ providedIn: 'root' }]
2121
2238
  }] });
@@ -2170,10 +2287,10 @@ class IntersectionObserverService {
2170
2287
  this._observedElements.delete(element);
2171
2288
  }
2172
2289
  }
2173
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2174
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2290
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2291
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
2175
2292
  }
2176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IntersectionObserverService, decorators: [{
2293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, decorators: [{
2177
2294
  type: Injectable,
2178
2295
  args: [{ providedIn: 'root' }]
2179
2296
  }] });
@@ -2183,10 +2300,10 @@ class ResizeObserverFactory {
2183
2300
  create(callback) {
2184
2301
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
2185
2302
  }
2186
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2187
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2303
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2304
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
2188
2305
  }
2189
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2306
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, decorators: [{
2190
2307
  type: Injectable,
2191
2308
  args: [{ providedIn: 'root' }]
2192
2309
  }] });
@@ -2241,10 +2358,10 @@ class ResizeObserverService {
2241
2358
  this._observedElements.delete(element);
2242
2359
  }
2243
2360
  }
2244
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2245
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2361
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2362
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
2246
2363
  }
2247
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResizeObserverService, decorators: [{
2364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, decorators: [{
2248
2365
  type: Injectable,
2249
2366
  args: [{ providedIn: 'root' }]
2250
2367
  }] });
@@ -2439,15 +2556,15 @@ class RouterStateService {
2439
2556
  fragment,
2440
2557
  };
2441
2558
  }
2442
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2443
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2559
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2560
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2444
2561
  }
2445
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterStateService, decorators: [{
2562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, decorators: [{
2446
2563
  type: Injectable,
2447
2564
  args: [{
2448
2565
  providedIn: 'root',
2449
2566
  }]
2450
- }], ctorParameters: function () { return []; } });
2567
+ }], ctorParameters: () => [] });
2451
2568
 
2452
2569
  class ViewportService {
2453
2570
  get isXs$() {
@@ -2658,8 +2775,8 @@ class ViewportService {
2658
2775
  }
2659
2776
  return 'xs';
2660
2777
  }
2661
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2662
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2778
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2779
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2663
2780
  }
2664
2781
  __decorate([
2665
2782
  Memo(),
@@ -2677,12 +2794,12 @@ __decorate([
2677
2794
  __metadata("design:paramtypes", [Object]),
2678
2795
  __metadata("design:returntype", void 0)
2679
2796
  ], ViewportService.prototype, "_buildMediaQuery", null);
2680
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ViewportService, decorators: [{
2797
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, decorators: [{
2681
2798
  type: Injectable,
2682
2799
  args: [{
2683
2800
  providedIn: 'root',
2684
2801
  }]
2685
- }], ctorParameters: function () { return []; }, propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
2802
+ }], ctorParameters: () => [], propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
2686
2803
 
2687
2804
  class ObserveResizeDirective {
2688
2805
  constructor() {
@@ -2726,10 +2843,10 @@ class ObserveResizeDirective {
2726
2843
  _unsubscribe() {
2727
2844
  this._currentSubscription?.unsubscribe();
2728
2845
  }
2729
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2730
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2846
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2847
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2731
2848
  }
2732
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2849
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2733
2850
  type: Directive,
2734
2851
  args: [{
2735
2852
  selector: '[etObserveResize]',
@@ -2759,15 +2876,15 @@ class RootBoundaryDirective {
2759
2876
  set boundaryElement(v) {
2760
2877
  this._boundaryElement = v;
2761
2878
  }
2762
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2763
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2879
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2880
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
2764
2881
  {
2765
2882
  provide: ROOT_BOUNDARY_TOKEN,
2766
2883
  useExisting: RootBoundaryDirective,
2767
2884
  },
2768
2885
  ], ngImport: i0 }); }
2769
2886
  }
2770
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RootBoundaryDirective, decorators: [{
2771
2888
  type: Directive,
2772
2889
  args: [{
2773
2890
  selector: '[etRootBoundary]',
@@ -3035,10 +3152,10 @@ class AnimatedOverlayDirective {
3035
3152
  this._isUnmounting$.next(false);
3036
3153
  this._afterClosed?.next();
3037
3154
  }
3038
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3039
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", 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 }); }
3155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3156
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", 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 }); }
3040
3157
  }
3041
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3042
3159
  type: Directive,
3043
3160
  args: [{
3044
3161
  standalone: true,
@@ -3084,10 +3201,10 @@ class ClickOutsideDirective {
3084
3201
  ngOnDestroy() {
3085
3202
  this._subscription?.unsubscribe();
3086
3203
  }
3087
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3088
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3204
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3205
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
3089
3206
  }
3090
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickOutsideDirective, decorators: [{
3091
3208
  type: Directive,
3092
3209
  args: [{
3093
3210
  selector: '[etClickOutside]',
@@ -3241,10 +3358,10 @@ class CursorDragScrollDirective {
3241
3358
  this._elementRef.nativeElement.style.cursor = 'default';
3242
3359
  }
3243
3360
  }
3244
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3245
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
3361
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3362
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
3246
3363
  }
3247
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
3248
3365
  type: Directive,
3249
3366
  args: [{
3250
3367
  selector: '[etCursorDragScroll]',
@@ -3277,15 +3394,15 @@ class DebugDirective {
3277
3394
  set sDebug(value) {
3278
3395
  this._debug.set(value);
3279
3396
  }
3280
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3281
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
3397
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3398
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
3282
3399
  {
3283
3400
  provide: DEBUG_TOKEN,
3284
3401
  useExisting: DebugDirective,
3285
3402
  },
3286
3403
  ], exportAs: ["etDebug"], ngImport: i0 }); }
3287
3404
  }
3288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DebugDirective, decorators: [{
3405
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DebugDirective, decorators: [{
3289
3406
  type: Directive,
3290
3407
  args: [{
3291
3408
  selector: '[etDebug]',
@@ -3332,15 +3449,15 @@ class DelayableDirective {
3332
3449
  }
3333
3450
  this._isDelayed$.next(val);
3334
3451
  }
3335
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3336
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3453
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
3337
3454
  {
3338
3455
  provide: DELAYABLE_TOKEN,
3339
3456
  useExisting: DelayableDirective,
3340
3457
  },
3341
3458
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
3342
3459
  }
3343
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DelayableDirective, decorators: [{
3460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DelayableDirective, decorators: [{
3344
3461
  type: Directive,
3345
3462
  args: [{
3346
3463
  selector: '[etDelayable]',
@@ -3361,15 +3478,15 @@ class IsActiveElementDirective {
3361
3478
  this.elementRef = inject(ElementRef);
3362
3479
  this.isActiveElement = false;
3363
3480
  }
3364
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3365
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
3481
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3482
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
3366
3483
  {
3367
3484
  provide: IS_ACTIVE_ELEMENT,
3368
3485
  useExisting: IsActiveElementDirective,
3369
3486
  },
3370
3487
  ], ngImport: i0 }); }
3371
3488
  }
3372
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsActiveElementDirective, decorators: [{
3373
3490
  type: Directive,
3374
3491
  args: [{
3375
3492
  selector: '[etIsActiveElement]',
@@ -3392,15 +3509,15 @@ class IsElementDirective {
3392
3509
  this.elementRef = inject(ElementRef);
3393
3510
  this.isElement = false;
3394
3511
  }
3395
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3396
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
3512
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3513
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
3397
3514
  {
3398
3515
  provide: IS_ELEMENT,
3399
3516
  useExisting: IsElementDirective,
3400
3517
  },
3401
3518
  ], ngImport: i0 }); }
3402
3519
  }
3403
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsElementDirective, decorators: [{
3520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsElementDirective, decorators: [{
3404
3521
  type: Directive,
3405
3522
  args: [{
3406
3523
  selector: '[etIsElement]',
@@ -3449,10 +3566,10 @@ class LetDirective {
3449
3566
  }
3450
3567
  }
3451
3568
  }
3452
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3453
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3569
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3570
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3454
3571
  }
3455
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LetDirective, decorators: [{
3572
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: LetDirective, decorators: [{
3456
3573
  type: Directive,
3457
3574
  args: [{
3458
3575
  selector: '[etLet]',
@@ -3504,10 +3621,10 @@ class ObserveContentDirective {
3504
3621
  _unsubscribe() {
3505
3622
  this._currentSubscription?.unsubscribe();
3506
3623
  }
3507
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3508
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3624
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3625
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3509
3626
  }
3510
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveContentDirective, decorators: [{
3627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveContentDirective, decorators: [{
3511
3628
  type: Directive,
3512
3629
  args: [{
3513
3630
  selector: '[etObserveContent]',
@@ -3530,10 +3647,10 @@ class ScrollObserverFirstElementDirective {
3530
3647
  constructor() {
3531
3648
  this.isFirstElement = false;
3532
3649
  }
3533
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3534
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3650
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3651
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3535
3652
  }
3536
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3537
3654
  type: Directive,
3538
3655
  args: [{
3539
3656
  selector: '[etScrollObserverFirstElement]',
@@ -3549,10 +3666,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3549
3666
 
3550
3667
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
3551
3668
  class ScrollObserverIgnoreTargetDirective {
3552
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3553
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3669
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3670
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3554
3671
  }
3555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3556
3673
  type: Directive,
3557
3674
  args: [{
3558
3675
  selector: '[etScrollObserverIgnoreTarget]',
@@ -3568,10 +3685,10 @@ class ScrollObserverLastElementDirective {
3568
3685
  constructor() {
3569
3686
  this.isLastElement = false;
3570
3687
  }
3571
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3572
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", 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 }); }
3688
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3689
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", 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 }); }
3573
3690
  }
3574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3691
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3575
3692
  type: Directive,
3576
3693
  args: [{
3577
3694
  selector: '[etScrollObserverLastElement]',
@@ -3730,15 +3847,15 @@ class ObserveScrollStateDirective {
3730
3847
  }
3731
3848
  return element;
3732
3849
  }
3733
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3734
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.12", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3850
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3851
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3735
3852
  {
3736
3853
  provide: OBSERVE_SCROLL_STATE,
3737
3854
  useExisting: ObserveScrollStateDirective,
3738
3855
  },
3739
3856
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
3740
3857
  }
3741
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3858
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3742
3859
  type: Directive,
3743
3860
  args: [{
3744
3861
  selector: '[etObserveScrollState]',
@@ -3808,15 +3925,15 @@ class ObserveVisibilityDirective {
3808
3925
  }))
3809
3926
  .subscribe();
3810
3927
  }
3811
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3812
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
3928
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3929
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
3813
3930
  {
3814
3931
  provide: OBSERVE_VISIBILITY_TOKEN,
3815
3932
  useExisting: ObserveVisibilityDirective,
3816
3933
  },
3817
3934
  ], ngImport: i0 }); }
3818
3935
  }
3819
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
3936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
3820
3937
  type: Directive,
3821
3938
  args: [{
3822
3939
  selector: '[etObserveVisibility]',
@@ -3831,7 +3948,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3831
3948
  class: 'et-observe-visibility',
3832
3949
  },
3833
3950
  }]
3834
- }], ctorParameters: function () { return []; }, propDecorators: { etObserveVisibility: [{
3951
+ }], ctorParameters: () => [], propDecorators: { etObserveVisibility: [{
3835
3952
  type: Output
3836
3953
  }] } });
3837
3954
 
@@ -3854,16 +3971,16 @@ class RepeatDirective {
3854
3971
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
3855
3972
  }
3856
3973
  }
3857
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3858
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3975
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3859
3976
  }
3860
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RepeatDirective, decorators: [{
3977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RepeatDirective, decorators: [{
3861
3978
  type: Directive,
3862
3979
  args: [{
3863
3980
  selector: '[etRepeat]',
3864
3981
  standalone: true,
3865
3982
  }]
3866
- }], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }]; }, propDecorators: { repeatCount: [{
3983
+ }], ctorParameters: () => [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }], propDecorators: { repeatCount: [{
3867
3984
  type: Input,
3868
3985
  args: ['etRepeat']
3869
3986
  }] } });
@@ -4026,10 +4143,10 @@ class SeoDirective {
4026
4143
  }
4027
4144
  }
4028
4145
  }
4029
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4030
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
4146
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4147
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
4031
4148
  }
4032
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeoDirective, decorators: [{
4149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: SeoDirective, decorators: [{
4033
4150
  type: Directive,
4034
4151
  args: [{
4035
4152
  standalone: true,
@@ -4205,10 +4322,10 @@ class InferMimeTypePipe {
4205
4322
  constructor() {
4206
4323
  this.transform = inferMimeType;
4207
4324
  }
4208
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4209
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4325
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4326
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
4210
4327
  }
4211
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, decorators: [{
4212
4329
  type: Pipe,
4213
4330
  args: [{
4214
4331
  name: 'inferMimeType',
@@ -4254,10 +4371,10 @@ class NormalizeGameResultTypePipe {
4254
4371
  constructor() {
4255
4372
  this.transform = normalizeGameResultType;
4256
4373
  }
4257
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4258
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4375
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
4259
4376
  }
4260
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
4261
4378
  type: Pipe,
4262
4379
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
4263
4380
  }] });
@@ -4285,10 +4402,10 @@ class NormalizeMatchStatePipe {
4285
4402
  constructor() {
4286
4403
  this.transform = normalizeMatchState;
4287
4404
  }
4288
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4289
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4405
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4406
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
4290
4407
  }
4291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
4292
4409
  type: Pipe,
4293
4410
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
4294
4411
  }] });
@@ -4343,10 +4460,10 @@ class NormalizeMatchParticipantsPipe {
4343
4460
  constructor() {
4344
4461
  this.transform = normalizeMatchParticipants;
4345
4462
  }
4346
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4347
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4463
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4464
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
4348
4465
  }
4349
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
4350
4467
  type: Pipe,
4351
4468
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
4352
4469
  }] });
@@ -4480,10 +4597,10 @@ class NormalizeMatchScorePipe {
4480
4597
  constructor() {
4481
4598
  this.transform = normalizeMatchScore;
4482
4599
  }
4483
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4484
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4601
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
4485
4602
  }
4486
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
4487
4604
  type: Pipe,
4488
4605
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
4489
4606
  }] });
@@ -4530,10 +4647,10 @@ class NormalizeMatchTypePipe {
4530
4647
  constructor() {
4531
4648
  this.transform = normalizeMatchType;
4532
4649
  }
4533
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4534
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4650
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4651
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
4535
4652
  }
4536
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
4537
4654
  type: Pipe,
4538
4655
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
4539
4656
  }] });
@@ -4547,10 +4664,10 @@ class ToArrayPipe {
4547
4664
  constructor() {
4548
4665
  this.transform = toArray;
4549
4666
  }
4550
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4551
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4667
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4668
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
4552
4669
  }
4553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToArrayPipe, decorators: [{
4670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, decorators: [{
4554
4671
  type: Pipe,
4555
4672
  args: [{ name: 'toArray', standalone: true }]
4556
4673
  }] });
@@ -4638,5 +4755,5 @@ const Validators = {
4638
4755
  * Generated bundle index. Do not edit.
4639
4756
  */
4640
4757
 
4641
- 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, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostStyles, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
4758
+ 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 };
4642
4759
  //# sourceMappingURL=ethlete-core.mjs.map