@ethlete/core 4.23.1 → 4.23.3

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/CHANGELOG.md +12 -0
  2. package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
  3. package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
  4. package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +3 -3
  5. package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
  6. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
  7. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
  8. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
  9. package/esm2022/lib/directives/debug/debug.directive.mjs +3 -3
  10. package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
  11. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
  12. package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
  13. package/esm2022/lib/directives/let/let.directive.mjs +3 -3
  14. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  15. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  16. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  17. package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +3 -3
  18. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  19. package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +3 -3
  20. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  21. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  22. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  23. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  24. package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +3 -3
  25. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  26. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  27. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  28. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  29. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  30. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  31. package/esm2022/lib/props/props.directive.mjs +3 -3
  32. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  33. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  34. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  35. package/esm2022/lib/services/intersection-observer.service.mjs +6 -6
  36. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  37. package/esm2022/lib/services/router-state.service.mjs +3 -3
  38. package/esm2022/lib/services/viewport.service.mjs +3 -3
  39. package/esm2022/lib/utils/selection-model.utils.mjs +2 -2
  40. package/esm2022/lib/utils/signal.utils.mjs +7 -1
  41. package/esm2022/lib/utils/smart-block-scroll-strategy.utils.mjs +39 -31
  42. package/fesm2022/ethlete-core.mjs +165 -154
  43. package/fesm2022/ethlete-core.mjs.map +1 -1
  44. package/lib/utils/selection-model.utils.d.ts +1 -2
  45. package/lib/utils/smart-block-scroll-strategy.utils.d.ts +4 -7
  46. package/package.json +1 -1
@@ -12,6 +12,7 @@ import { Router, NavigationEnd } from '@angular/router';
12
12
  import { __decorate, __metadata } from 'tslib';
13
13
  import { BreakpointObserver } from '@angular/cdk/layout';
14
14
  import { supportsScrollBehavior } from '@angular/cdk/platform';
15
+ import { ViewportRuler } from '@angular/cdk/scrolling';
15
16
  import { Overlay } from '@angular/cdk/overlay';
16
17
  import { ComponentPortal } from '@angular/cdk/portal';
17
18
  import { autoUpdate, computePosition, offset, flip, size, shift, limitShift, arrow, hide } from '@floating-ui/dom';
@@ -29,10 +30,10 @@ class StructuredDataComponent {
29
30
  const html = `<script type="application/ld+json">${json}</script>`;
30
31
  return this._sanitizer.bypassSecurityTrustHtml(html);
31
32
  }
32
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
33
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", 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
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
34
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.5", 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
35
  }
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: StructuredDataComponent, decorators: [{
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: StructuredDataComponent, decorators: [{
36
37
  type: Component,
37
38
  args: [{
38
39
  selector: 'et-structured-data',
@@ -1212,7 +1213,7 @@ class SelectionModel {
1212
1213
  }));
1213
1214
  this.filteredOptions$ = combineLatest([this.options$, this.filter$, this.labelBinding$]).pipe(map(([options, filter]) => this.getFilteredOptions(filter, options)), shareReplay({ bufferSize: 1, refCount: true }));
1214
1215
  this._optionsAndSelection$ = combineLatest([this._options$, this._selection$]);
1215
- this.trackByOptionKey = (index, option) => this.getKey(option);
1216
+ this.trackByOptionKey = (option) => this.getKey(option);
1216
1217
  this.allowMultiple$
1217
1218
  .pipe(tap(() => {
1218
1219
  if (this.allowMultiple)
@@ -1512,10 +1513,10 @@ class ClickObserverFactory {
1512
1513
  create() {
1513
1514
  return fromEvent(document, 'click');
1514
1515
  }
1515
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1516
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1516
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1517
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1517
1518
  }
1518
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverFactory, decorators: [{
1519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverFactory, decorators: [{
1519
1520
  type: Injectable,
1520
1521
  args: [{ providedIn: 'root' }]
1521
1522
  }] });
@@ -1568,10 +1569,10 @@ class ClickObserverService {
1568
1569
  this._observedElements.delete(element);
1569
1570
  }
1570
1571
  }
1571
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1572
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1572
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1573
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1573
1574
  }
1574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickObserverService, decorators: [{
1575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickObserverService, decorators: [{
1575
1576
  type: Injectable,
1576
1577
  args: [{ providedIn: 'root' }]
1577
1578
  }] });
@@ -1581,10 +1582,10 @@ class MutationObserverFactory {
1581
1582
  create(callback) {
1582
1583
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
1583
1584
  }
1584
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1585
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1585
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1586
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1586
1587
  }
1587
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: MutationObserverFactory, decorators: [{
1588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: MutationObserverFactory, decorators: [{
1588
1589
  type: Injectable,
1589
1590
  args: [{ providedIn: 'root' }]
1590
1591
  }] });
@@ -1643,10 +1644,10 @@ class ContentObserverService {
1643
1644
  this._observedElements.delete(element);
1644
1645
  }
1645
1646
  }
1646
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1647
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1647
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1648
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1648
1649
  }
1649
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ContentObserverService, decorators: [{
1650
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ContentObserverService, decorators: [{
1650
1651
  type: Injectable,
1651
1652
  args: [{ providedIn: 'root' }]
1652
1653
  }] });
@@ -1672,10 +1673,10 @@ class FocusVisibleService {
1672
1673
  onPointerDown() {
1673
1674
  this._hadKeyboardEvent = false;
1674
1675
  }
1675
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1676
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1676
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1677
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1677
1678
  }
1678
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: FocusVisibleService, decorators: [{
1679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: FocusVisibleService, decorators: [{
1679
1680
  type: Injectable,
1680
1681
  args: [{
1681
1682
  providedIn: 'root',
@@ -1687,10 +1688,10 @@ class IntersectionObserverFactory {
1687
1688
  create(callback) {
1688
1689
  return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
1689
1690
  }
1690
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1691
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
1691
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1692
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
1692
1693
  }
1693
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
1694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
1694
1695
  type: Injectable,
1695
1696
  args: [{ providedIn: 'root' }]
1696
1697
  }] });
@@ -1745,10 +1746,10 @@ class IntersectionObserverService {
1745
1746
  this._observedElements.delete(element);
1746
1747
  }
1747
1748
  }
1748
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1749
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
1749
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1750
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
1750
1751
  }
1751
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IntersectionObserverService, decorators: [{
1752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IntersectionObserverService, decorators: [{
1752
1753
  type: Injectable,
1753
1754
  args: [{ providedIn: 'root' }]
1754
1755
  }] });
@@ -1758,10 +1759,10 @@ class ResizeObserverFactory {
1758
1759
  create(callback) {
1759
1760
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
1760
1761
  }
1761
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1762
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1762
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1763
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1763
1764
  }
1764
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1765
1766
  type: Injectable,
1766
1767
  args: [{ providedIn: 'root' }]
1767
1768
  }] });
@@ -1816,10 +1817,10 @@ class ResizeObserverService {
1816
1817
  this._observedElements.delete(element);
1817
1818
  }
1818
1819
  }
1819
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1820
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1821
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1821
1822
  }
1822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ResizeObserverService, decorators: [{
1823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ResizeObserverService, decorators: [{
1823
1824
  type: Injectable,
1824
1825
  args: [{ providedIn: 'root' }]
1825
1826
  }] });
@@ -2014,10 +2015,10 @@ class RouterStateService {
2014
2015
  fragment,
2015
2016
  };
2016
2017
  }
2017
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2018
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2018
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2019
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2019
2020
  }
2020
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RouterStateService, decorators: [{
2021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RouterStateService, decorators: [{
2021
2022
  type: Injectable,
2022
2023
  args: [{
2023
2024
  providedIn: 'root',
@@ -2233,8 +2234,8 @@ class ViewportService {
2233
2234
  }
2234
2235
  return 'xs';
2235
2236
  }
2236
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2237
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2237
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2238
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2238
2239
  }
2239
2240
  __decorate([
2240
2241
  Memo(),
@@ -2252,7 +2253,7 @@ __decorate([
2252
2253
  __metadata("design:paramtypes", [Object]),
2253
2254
  __metadata("design:returntype", void 0)
2254
2255
  ], ViewportService.prototype, "_buildMediaQuery", null);
2255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ViewportService, decorators: [{
2256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ViewportService, decorators: [{
2256
2257
  type: Injectable,
2257
2258
  args: [{
2258
2259
  providedIn: 'root',
@@ -2763,8 +2764,14 @@ const previousSignalValue = (signal) => {
2763
2764
  return toSignal(obs);
2764
2765
  };
2765
2766
  const syncSignal = (from, to) => {
2767
+ to.set(from());
2768
+ let isFirstRun = true;
2766
2769
  const ref = effect(() => {
2767
2770
  const formVal = from();
2771
+ if (isFirstRun) {
2772
+ isFirstRun = false;
2773
+ return;
2774
+ }
2768
2775
  untracked(() => {
2769
2776
  to.set(formVal);
2770
2777
  });
@@ -3236,59 +3243,63 @@ const injectCurrentBreakpoint = () => {
3236
3243
  };
3237
3244
 
3238
3245
  const scrollBehaviorSupported = supportsScrollBehavior();
3239
- let _uniqueIdCounter = 0;
3240
3246
  const BLOCK_CLASS = 'cdk-global-scrollblock';
3241
3247
  const OVERSCROLL_CLASS = 'et-global-no-overscroll';
3248
+ /**
3249
+ * @deprecated Will be removed in v5. Scroll blocking for overlays is build in by default.
3250
+ */
3242
3251
  class SmartBlockScrollStrategy {
3243
- constructor(_viewportRuler, _routerState, document) {
3244
- this._viewportRuler = _viewportRuler;
3245
- this._routerState = _routerState;
3246
- this._id = _uniqueIdCounter++;
3252
+ constructor() {
3247
3253
  this._previousHTMLStyles = { top: '', left: '' };
3248
3254
  this._previousScrollPosition = { top: 0, left: 0 };
3249
3255
  this._isEnabled = false;
3250
3256
  this._urlSubscription = null;
3251
3257
  this._resizeSubscription = null;
3252
3258
  this._didNavigate = false;
3253
- this._document = document;
3259
+ this.#viewportRuler = inject(ViewportRuler);
3260
+ this.#routerState = inject(RouterStateService);
3261
+ this.#document = inject(DOCUMENT);
3254
3262
  }
3263
+ #viewportRuler;
3264
+ #routerState;
3265
+ #document;
3255
3266
  attach() {
3256
3267
  // noop
3257
3268
  }
3258
3269
  enable() {
3259
- if (this._canBeEnabled()) {
3260
- const root = this._document.documentElement;
3261
- root.classList.add(OVERSCROLL_CLASS);
3262
- this._resizeSubscription = createResizeObservable({ elements: root })
3263
- .pipe(startWith(null), tap(() => {
3264
- if (this._isEnabled || !elementCanScroll(root) || !this._canBeEnabled())
3265
- return;
3266
- this._isEnabled = true;
3267
- this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();
3268
- this._didNavigate = false;
3269
- this._previousHTMLStyles.left = root.style.left || '';
3270
- this._previousHTMLStyles.top = root.style.top || '';
3271
- root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);
3272
- root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);
3273
- root.classList.add(BLOCK_CLASS);
3274
- this._urlSubscription = this._routerState.route$
3275
- .pipe(skip(1), take(1), tap(() => {
3276
- this._didNavigate = true;
3277
- }))
3278
- .subscribe();
3270
+ if (!this._canBeEnabled())
3271
+ return;
3272
+ const root = this.#document.documentElement;
3273
+ root.classList.add(OVERSCROLL_CLASS);
3274
+ this._resizeSubscription = createResizeObservable({ elements: root })
3275
+ .pipe(startWith(null), tap(() => {
3276
+ if (this._isEnabled || !elementCanScroll(root) || !this._canBeEnabled())
3277
+ return;
3278
+ this._isEnabled = true;
3279
+ this._previousScrollPosition = this.#viewportRuler.getViewportScrollPosition();
3280
+ this._didNavigate = false;
3281
+ this._previousHTMLStyles.left = root.style.left || '';
3282
+ this._previousHTMLStyles.top = root.style.top || '';
3283
+ root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);
3284
+ root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);
3285
+ root.classList.add(BLOCK_CLASS);
3286
+ this._urlSubscription = this.#routerState.route$
3287
+ .pipe(skip(1), take(1), tap(() => {
3288
+ this._didNavigate = true;
3279
3289
  }))
3280
3290
  .subscribe();
3281
- }
3291
+ }))
3292
+ .subscribe();
3282
3293
  }
3283
3294
  disable() {
3284
3295
  this._urlSubscription?.unsubscribe();
3285
3296
  this._resizeSubscription?.unsubscribe();
3286
- const html = this._document.documentElement;
3297
+ const html = this.#document.documentElement;
3287
3298
  if (this._canBeEnabled()) {
3288
3299
  html.classList.remove(OVERSCROLL_CLASS);
3289
3300
  }
3290
3301
  if (this._isEnabled) {
3291
- const body = this._document.body;
3302
+ const body = this.#document.body;
3292
3303
  const htmlStyle = html.style;
3293
3304
  const bodyStyle = body.style;
3294
3305
  const previousHtmlScrollBehavior = htmlStyle.scrollBehavior || '';
@@ -3310,7 +3321,7 @@ class SmartBlockScrollStrategy {
3310
3321
  }
3311
3322
  }
3312
3323
  _canBeEnabled() {
3313
- const html = this._document.documentElement;
3324
+ const html = this.#document.documentElement;
3314
3325
  if (html.classList.contains(BLOCK_CLASS) || this._isEnabled) {
3315
3326
  return false;
3316
3327
  }
@@ -3435,15 +3446,15 @@ class AnimatableDirective {
3435
3446
  .subscribe();
3436
3447
  }
3437
3448
  }
3438
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3439
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
3449
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3450
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
3440
3451
  {
3441
3452
  provide: ANIMATABLE_TOKEN,
3442
3453
  useExisting: AnimatableDirective,
3443
3454
  },
3444
3455
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
3445
3456
  }
3446
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatableDirective, decorators: [{
3457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatableDirective, decorators: [{
3447
3458
  type: Directive,
3448
3459
  args: [{
3449
3460
  selector: '[etAnimatable]',
@@ -3566,15 +3577,15 @@ class AnimatedLifecycleDirective {
3566
3577
  _forceState(state) {
3567
3578
  this._state$.next(state);
3568
3579
  }
3569
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3570
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.0", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
3580
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3581
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.5", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
3571
3582
  {
3572
3583
  provide: ANIMATED_LIFECYCLE_TOKEN,
3573
3584
  useExisting: AnimatedLifecycleDirective,
3574
3585
  },
3575
3586
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
3576
3587
  }
3577
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
3588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
3578
3589
  type: Directive,
3579
3590
  args: [{
3580
3591
  selector: '[etAnimatedLifecycle]',
@@ -3611,15 +3622,15 @@ class AnimatedIfDirective {
3611
3622
  .subscribe();
3612
3623
  }
3613
3624
  }
3614
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3615
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
3625
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3626
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
3616
3627
  {
3617
3628
  provide: ANIMATED_IF_TOKEN,
3618
3629
  useExisting: AnimatedIfDirective,
3619
3630
  },
3620
3631
  ], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
3621
3632
  }
3622
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedIfDirective, decorators: [{
3633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedIfDirective, decorators: [{
3623
3634
  type: Directive,
3624
3635
  args: [{
3625
3636
  selector: '[etAnimatedIf]',
@@ -3649,15 +3660,15 @@ class RootBoundaryDirective {
3649
3660
  set boundaryElement(v) {
3650
3661
  this._boundaryElement = v;
3651
3662
  }
3652
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3653
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
3663
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3664
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
3654
3665
  {
3655
3666
  provide: ROOT_BOUNDARY_TOKEN,
3656
3667
  useExisting: RootBoundaryDirective,
3657
3668
  },
3658
3669
  ], ngImport: i0 }); }
3659
3670
  }
3660
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RootBoundaryDirective, decorators: [{
3671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RootBoundaryDirective, decorators: [{
3661
3672
  type: Directive,
3662
3673
  args: [{
3663
3674
  selector: '[etRootBoundary]',
@@ -3969,10 +3980,10 @@ class AnimatedOverlayDirective {
3969
3980
  this._isUnmounting$.next(false);
3970
3981
  this._afterClosed?.next();
3971
3982
  }
3972
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3973
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: ["autoResize", "autoResize", booleanAttribute], shift: ["shift", "shift", booleanAttribute], autoHide: ["autoHide", "autoHide", booleanAttribute], autoCloseIfReferenceHidden: ["autoCloseIfReferenceHidden", "autoCloseIfReferenceHidden", booleanAttribute], referenceElement: "referenceElement" }, host: { classAttribute: "et-animated-overlay" }, ngImport: i0 }); }
3983
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3984
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: ["autoResize", "autoResize", booleanAttribute], shift: ["shift", "shift", booleanAttribute], autoHide: ["autoHide", "autoHide", booleanAttribute], autoCloseIfReferenceHidden: ["autoCloseIfReferenceHidden", "autoCloseIfReferenceHidden", booleanAttribute], referenceElement: "referenceElement" }, host: { classAttribute: "et-animated-overlay" }, ngImport: i0 }); }
3974
3985
  }
3975
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3976
3987
  type: Directive,
3977
3988
  args: [{
3978
3989
  standalone: true,
@@ -4027,10 +4038,10 @@ class ClickOutsideDirective {
4027
4038
  ngOnDestroy() {
4028
4039
  this._subscription?.unsubscribe();
4029
4040
  }
4030
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4031
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
4041
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4042
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
4032
4043
  }
4033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ClickOutsideDirective, decorators: [{
4044
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ClickOutsideDirective, decorators: [{
4034
4045
  type: Directive,
4035
4046
  args: [{
4036
4047
  selector: '[etClickOutside]',
@@ -4184,10 +4195,10 @@ class CursorDragScrollDirective {
4184
4195
  this._elementRef.nativeElement.style.cursor = 'default';
4185
4196
  }
4186
4197
  }
4187
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4188
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
4198
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4199
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
4189
4200
  }
4190
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
4201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
4191
4202
  type: Directive,
4192
4203
  args: [{
4193
4204
  selector: '[etCursorDragScroll]',
@@ -4220,15 +4231,15 @@ class DebugDirective {
4220
4231
  set sDebug(value) {
4221
4232
  this._debug.set(value);
4222
4233
  }
4223
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4224
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
4234
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4235
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
4225
4236
  {
4226
4237
  provide: DEBUG_TOKEN,
4227
4238
  useExisting: DebugDirective,
4228
4239
  },
4229
4240
  ], exportAs: ["etDebug"], ngImport: i0 }); }
4230
4241
  }
4231
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: DebugDirective, decorators: [{
4242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: DebugDirective, decorators: [{
4232
4243
  type: Directive,
4233
4244
  args: [{
4234
4245
  selector: '[etDebug]',
@@ -4275,15 +4286,15 @@ class DelayableDirective {
4275
4286
  }
4276
4287
  this._isDelayed$.next(val);
4277
4288
  }
4278
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4279
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
4289
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4290
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
4280
4291
  {
4281
4292
  provide: DELAYABLE_TOKEN,
4282
4293
  useExisting: DelayableDirective,
4283
4294
  },
4284
4295
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
4285
4296
  }
4286
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: DelayableDirective, decorators: [{
4297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: DelayableDirective, decorators: [{
4287
4298
  type: Directive,
4288
4299
  args: [{
4289
4300
  selector: '[etDelayable]',
@@ -4304,15 +4315,15 @@ class IsActiveElementDirective {
4304
4315
  this.elementRef = inject(ElementRef);
4305
4316
  this.isActiveElement = false;
4306
4317
  }
4307
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4308
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
4318
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4319
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
4309
4320
  {
4310
4321
  provide: IS_ACTIVE_ELEMENT,
4311
4322
  useExisting: IsActiveElementDirective,
4312
4323
  },
4313
4324
  ], ngImport: i0 }); }
4314
4325
  }
4315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IsActiveElementDirective, decorators: [{
4326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IsActiveElementDirective, decorators: [{
4316
4327
  type: Directive,
4317
4328
  args: [{
4318
4329
  selector: '[etIsActiveElement]',
@@ -4335,15 +4346,15 @@ class IsElementDirective {
4335
4346
  this.elementRef = inject(ElementRef);
4336
4347
  this.isElement = false;
4337
4348
  }
4338
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4339
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
4349
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4350
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
4340
4351
  {
4341
4352
  provide: IS_ELEMENT,
4342
4353
  useExisting: IsElementDirective,
4343
4354
  },
4344
4355
  ], ngImport: i0 }); }
4345
4356
  }
4346
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: IsElementDirective, decorators: [{
4357
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: IsElementDirective, decorators: [{
4347
4358
  type: Directive,
4348
4359
  args: [{
4349
4360
  selector: '[etIsElement]',
@@ -4393,10 +4404,10 @@ class LetDirective {
4393
4404
  }
4394
4405
  }
4395
4406
  }
4396
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4397
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
4407
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4408
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
4398
4409
  }
4399
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: LetDirective, decorators: [{
4410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: LetDirective, decorators: [{
4400
4411
  type: Directive,
4401
4412
  args: [{
4402
4413
  selector: '[etLet]',
@@ -4453,10 +4464,10 @@ class ObserveContentDirective {
4453
4464
  _unsubscribe() {
4454
4465
  this._currentSubscription?.unsubscribe();
4455
4466
  }
4456
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4457
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
4467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4468
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
4458
4469
  }
4459
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveContentDirective, decorators: [{
4470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveContentDirective, decorators: [{
4460
4471
  type: Directive,
4461
4472
  args: [{
4462
4473
  selector: '[etObserveContent]',
@@ -4521,10 +4532,10 @@ class ObserveResizeDirective {
4521
4532
  _unsubscribe() {
4522
4533
  this._currentSubscription?.unsubscribe();
4523
4534
  }
4524
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4525
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
4535
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4536
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
4526
4537
  }
4527
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveResizeDirective, decorators: [{
4538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveResizeDirective, decorators: [{
4528
4539
  type: Directive,
4529
4540
  args: [{
4530
4541
  selector: '[etObserveResize]',
@@ -4549,10 +4560,10 @@ class ScrollObserverFirstElementDirective {
4549
4560
  constructor() {
4550
4561
  this.isFirstElement = false;
4551
4562
  }
4552
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4553
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
4563
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4564
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
4554
4565
  }
4555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
4566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
4556
4567
  type: Directive,
4557
4568
  args: [{
4558
4569
  selector: '[etScrollObserverFirstElement]',
@@ -4568,10 +4579,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4568
4579
 
4569
4580
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
4570
4581
  class ScrollObserverIgnoreTargetDirective {
4571
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4572
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
4582
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4583
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
4573
4584
  }
4574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
4585
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
4575
4586
  type: Directive,
4576
4587
  args: [{
4577
4588
  selector: '[etScrollObserverIgnoreTarget]',
@@ -4587,10 +4598,10 @@ class ScrollObserverLastElementDirective {
4587
4598
  constructor() {
4588
4599
  this.isLastElement = false;
4589
4600
  }
4590
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4591
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", 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 }); }
4601
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4602
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", 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 }); }
4592
4603
  }
4593
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
4604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
4594
4605
  type: Directive,
4595
4606
  args: [{
4596
4607
  selector: '[etScrollObserverLastElement]',
@@ -4747,15 +4758,15 @@ class ObserveScrollStateDirective {
4747
4758
  }
4748
4759
  return element;
4749
4760
  }
4750
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4751
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.0", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
4761
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4762
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.5", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
4752
4763
  {
4753
4764
  provide: OBSERVE_SCROLL_STATE,
4754
4765
  useExisting: ObserveScrollStateDirective,
4755
4766
  },
4756
4767
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
4757
4768
  }
4758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
4769
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
4759
4770
  type: Directive,
4760
4771
  args: [{
4761
4772
  selector: '[etObserveScrollState]',
@@ -4825,15 +4836,15 @@ class ObserveVisibilityDirective {
4825
4836
  }))
4826
4837
  .subscribe();
4827
4838
  }
4828
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4829
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4839
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4840
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4830
4841
  {
4831
4842
  provide: OBSERVE_VISIBILITY_TOKEN,
4832
4843
  useExisting: ObserveVisibilityDirective,
4833
4844
  },
4834
4845
  ], ngImport: i0 }); }
4835
4846
  }
4836
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4837
4848
  type: Directive,
4838
4849
  args: [{
4839
4850
  selector: '[etObserveVisibility]',
@@ -4871,10 +4882,10 @@ class RepeatDirective {
4871
4882
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
4872
4883
  }
4873
4884
  }
4874
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4875
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4885
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4886
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4876
4887
  }
4877
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: RepeatDirective, decorators: [{
4888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: RepeatDirective, decorators: [{
4878
4889
  type: Directive,
4879
4890
  args: [{
4880
4891
  selector: '[etRepeat]',
@@ -5043,10 +5054,10 @@ class SeoDirective {
5043
5054
  }
5044
5055
  }
5045
5056
  }
5046
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5047
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.0", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
5057
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5058
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.5", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
5048
5059
  }
5049
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: SeoDirective, decorators: [{
5060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: SeoDirective, decorators: [{
5050
5061
  type: Directive,
5051
5062
  args: [{
5052
5063
  standalone: true,
@@ -5222,10 +5233,10 @@ class InferMimeTypePipe {
5222
5233
  constructor() {
5223
5234
  this.transform = inferMimeType;
5224
5235
  }
5225
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5226
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
5236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5237
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
5227
5238
  }
5228
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: InferMimeTypePipe, decorators: [{
5239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: InferMimeTypePipe, decorators: [{
5229
5240
  type: Pipe,
5230
5241
  args: [{
5231
5242
  name: 'inferMimeType',
@@ -5271,10 +5282,10 @@ class NormalizeGameResultTypePipe {
5271
5282
  constructor() {
5272
5283
  this.transform = normalizeGameResultType;
5273
5284
  }
5274
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5275
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
5285
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5286
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
5276
5287
  }
5277
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
5288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
5278
5289
  type: Pipe,
5279
5290
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
5280
5291
  }] });
@@ -5302,10 +5313,10 @@ class NormalizeMatchStatePipe {
5302
5313
  constructor() {
5303
5314
  this.transform = normalizeMatchState;
5304
5315
  }
5305
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5306
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
5316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5317
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
5307
5318
  }
5308
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
5319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
5309
5320
  type: Pipe,
5310
5321
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
5311
5322
  }] });
@@ -5360,10 +5371,10 @@ class NormalizeMatchParticipantsPipe {
5360
5371
  constructor() {
5361
5372
  this.transform = normalizeMatchParticipants;
5362
5373
  }
5363
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5364
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
5374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5375
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
5365
5376
  }
5366
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
5377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
5367
5378
  type: Pipe,
5368
5379
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
5369
5380
  }] });
@@ -5497,10 +5508,10 @@ class NormalizeMatchScorePipe {
5497
5508
  constructor() {
5498
5509
  this.transform = normalizeMatchScore;
5499
5510
  }
5500
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5501
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
5511
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5512
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
5502
5513
  }
5503
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
5514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
5504
5515
  type: Pipe,
5505
5516
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
5506
5517
  }] });
@@ -5547,10 +5558,10 @@ class NormalizeMatchTypePipe {
5547
5558
  constructor() {
5548
5559
  this.transform = normalizeMatchType;
5549
5560
  }
5550
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5551
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
5561
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5562
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
5552
5563
  }
5553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
5564
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
5554
5565
  type: Pipe,
5555
5566
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
5556
5567
  }] });
@@ -5564,10 +5575,10 @@ class ToArrayPipe {
5564
5575
  constructor() {
5565
5576
  this.transform = toArray;
5566
5577
  }
5567
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5568
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
5578
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5579
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.5", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
5569
5580
  }
5570
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: ToArrayPipe, decorators: [{
5581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: ToArrayPipe, decorators: [{
5571
5582
  type: Pipe,
5572
5583
  args: [{ name: 'toArray', standalone: true }]
5573
5584
  }] });
@@ -5789,10 +5800,10 @@ class PropsDirective {
5789
5800
  });
5790
5801
  });
5791
5802
  }
5792
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5793
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.0", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
5803
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5804
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.5", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
5794
5805
  }
5795
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: PropsDirective, decorators: [{
5806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImport: i0, type: PropsDirective, decorators: [{
5796
5807
  type: Directive,
5797
5808
  args: [{
5798
5809
  selector: '[etProps]',