@ethlete/core 4.23.0 → 4.23.2

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 (45) 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 +5 -4
  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/signal.utils.mjs +7 -1
  40. package/esm2022/lib/utils/smart-block-scroll-strategy.utils.mjs +39 -31
  41. package/fesm2022/ethlete-core.mjs +165 -153
  42. package/fesm2022/ethlete-core.mjs.map +1 -1
  43. package/lib/directives/let/let.directive.d.ts +1 -0
  44. package/lib/utils/smart-block-scroll-strategy.utils.d.ts +4 -7
  45. 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.1.3", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
33
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.3", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
33
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
34
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: StructuredDataComponent, decorators: [{
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: StructuredDataComponent, decorators: [{
36
37
  type: Component,
37
38
  args: [{
38
39
  selector: 'et-structured-data',
@@ -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.1.3", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1516
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1516
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1517
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1517
1518
  }
1518
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ClickObserverFactory, decorators: [{
1519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1572
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1572
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1573
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1573
1574
  }
1574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ClickObserverService, decorators: [{
1575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1585
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1585
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1586
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1586
1587
  }
1587
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: MutationObserverFactory, decorators: [{
1588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1647
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1647
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1648
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1648
1649
  }
1649
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ContentObserverService, decorators: [{
1650
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1676
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1676
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1677
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1677
1678
  }
1678
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: FocusVisibleService, decorators: [{
1679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1691
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
1691
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1692
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
1692
1693
  }
1693
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
1694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1749
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
1749
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1750
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
1750
1751
  }
1751
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: IntersectionObserverService, decorators: [{
1752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1762
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1762
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1763
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1763
1764
  }
1764
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1820
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1821
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1821
1822
  }
1822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ResizeObserverService, decorators: [{
1823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2018
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2018
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2019
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2019
2020
  }
2020
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RouterStateService, decorators: [{
2021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2237
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2237
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2238
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ViewportService, decorators: [{
2256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3439
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
3449
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3450
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatableDirective, decorators: [{
3457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3570
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.1.3", 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.4", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3581
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
3588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3615
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
3625
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3626
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedIfDirective, decorators: [{
3633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3653
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
3663
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3664
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: RootBoundaryDirective, decorators: [{
3671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3973
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3984
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", 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.1.3", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
3986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4031
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
4041
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4042
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
4032
4043
  }
4033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ClickOutsideDirective, decorators: [{
4044
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4188
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4199
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
4201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4224
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4235
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", 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.1.3", ngImport: i0, type: DebugDirective, decorators: [{
4242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4279
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
4289
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4290
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: DelayableDirective, decorators: [{
4297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4308
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4319
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IsActiveElementDirective, decorators: [{
4326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4339
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4350
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", 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.1.3", ngImport: i0, type: IsElementDirective, decorators: [{
4357
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: IsElementDirective, decorators: [{
4347
4358
  type: Directive,
4348
4359
  args: [{
4349
4360
  selector: '[etIsElement]',
@@ -4369,6 +4380,7 @@ class LetContext {
4369
4380
  }
4370
4381
  }
4371
4382
 
4383
+ /** @deprecated Use the let keyword provided by Angular instead. */
4372
4384
  class LetDirective {
4373
4385
  constructor() {
4374
4386
  this._viewContainer = inject(ViewContainerRef);
@@ -4392,10 +4404,10 @@ class LetDirective {
4392
4404
  }
4393
4405
  }
4394
4406
  }
4395
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4396
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
4407
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4408
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
4397
4409
  }
4398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: LetDirective, decorators: [{
4410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: LetDirective, decorators: [{
4399
4411
  type: Directive,
4400
4412
  args: [{
4401
4413
  selector: '[etLet]',
@@ -4452,10 +4464,10 @@ class ObserveContentDirective {
4452
4464
  _unsubscribe() {
4453
4465
  this._currentSubscription?.unsubscribe();
4454
4466
  }
4455
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4456
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4468
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
4457
4469
  }
4458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveContentDirective, decorators: [{
4470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ObserveContentDirective, decorators: [{
4459
4471
  type: Directive,
4460
4472
  args: [{
4461
4473
  selector: '[etObserveContent]',
@@ -4520,10 +4532,10 @@ class ObserveResizeDirective {
4520
4532
  _unsubscribe() {
4521
4533
  this._currentSubscription?.unsubscribe();
4522
4534
  }
4523
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4524
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4536
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
4525
4537
  }
4526
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveResizeDirective, decorators: [{
4538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ObserveResizeDirective, decorators: [{
4527
4539
  type: Directive,
4528
4540
  args: [{
4529
4541
  selector: '[etObserveResize]',
@@ -4548,10 +4560,10 @@ class ScrollObserverFirstElementDirective {
4548
4560
  constructor() {
4549
4561
  this.isFirstElement = false;
4550
4562
  }
4551
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4552
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4564
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
4553
4565
  }
4554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
4566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
4555
4567
  type: Directive,
4556
4568
  args: [{
4557
4569
  selector: '[etScrollObserverFirstElement]',
@@ -4567,10 +4579,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImpor
4567
4579
 
4568
4580
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
4569
4581
  class ScrollObserverIgnoreTargetDirective {
4570
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4571
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4583
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
4572
4584
  }
4573
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
4585
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
4574
4586
  type: Directive,
4575
4587
  args: [{
4576
4588
  selector: '[etScrollObserverIgnoreTarget]',
@@ -4586,10 +4598,10 @@ class ScrollObserverLastElementDirective {
4586
4598
  constructor() {
4587
4599
  this.isLastElement = false;
4588
4600
  }
4589
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4590
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
4601
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4602
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", 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 }); }
4591
4603
  }
4592
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
4604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
4593
4605
  type: Directive,
4594
4606
  args: [{
4595
4607
  selector: '[etScrollObserverLastElement]',
@@ -4746,15 +4758,15 @@ class ObserveScrollStateDirective {
4746
4758
  }
4747
4759
  return element;
4748
4760
  }
4749
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4750
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.1.3", 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.4", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4762
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
4751
4763
  {
4752
4764
  provide: OBSERVE_SCROLL_STATE,
4753
4765
  useExisting: ObserveScrollStateDirective,
4754
4766
  },
4755
4767
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
4756
4768
  }
4757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
4769
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
4758
4770
  type: Directive,
4759
4771
  args: [{
4760
4772
  selector: '[etObserveScrollState]',
@@ -4824,15 +4836,15 @@ class ObserveVisibilityDirective {
4824
4836
  }))
4825
4837
  .subscribe();
4826
4838
  }
4827
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4828
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
4840
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
4829
4841
  {
4830
4842
  provide: OBSERVE_VISIBILITY_TOKEN,
4831
4843
  useExisting: ObserveVisibilityDirective,
4832
4844
  },
4833
4845
  ], ngImport: i0 }); }
4834
4846
  }
4835
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
4836
4848
  type: Directive,
4837
4849
  args: [{
4838
4850
  selector: '[etObserveVisibility]',
@@ -4870,10 +4882,10 @@ class RepeatDirective {
4870
4882
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
4871
4883
  }
4872
4884
  }
4873
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
4874
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", 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.4", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
4875
4887
  }
4876
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RepeatDirective, decorators: [{
4888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: RepeatDirective, decorators: [{
4877
4889
  type: Directive,
4878
4890
  args: [{
4879
4891
  selector: '[etRepeat]',
@@ -5042,10 +5054,10 @@ class SeoDirective {
5042
5054
  }
5043
5055
  }
5044
5056
  }
5045
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5046
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.3", 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.4", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5058
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.4", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
5047
5059
  }
5048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: SeoDirective, decorators: [{
5060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: SeoDirective, decorators: [{
5049
5061
  type: Directive,
5050
5062
  args: [{
5051
5063
  standalone: true,
@@ -5221,10 +5233,10 @@ class InferMimeTypePipe {
5221
5233
  constructor() {
5222
5234
  this.transform = inferMimeType;
5223
5235
  }
5224
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5225
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
5236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5237
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
5226
5238
  }
5227
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InferMimeTypePipe, decorators: [{
5239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: InferMimeTypePipe, decorators: [{
5228
5240
  type: Pipe,
5229
5241
  args: [{
5230
5242
  name: 'inferMimeType',
@@ -5270,10 +5282,10 @@ class NormalizeGameResultTypePipe {
5270
5282
  constructor() {
5271
5283
  this.transform = normalizeGameResultType;
5272
5284
  }
5273
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5274
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
5285
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5286
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
5275
5287
  }
5276
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
5288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
5277
5289
  type: Pipe,
5278
5290
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
5279
5291
  }] });
@@ -5301,10 +5313,10 @@ class NormalizeMatchStatePipe {
5301
5313
  constructor() {
5302
5314
  this.transform = normalizeMatchState;
5303
5315
  }
5304
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5305
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
5316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5317
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
5306
5318
  }
5307
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
5319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
5308
5320
  type: Pipe,
5309
5321
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
5310
5322
  }] });
@@ -5359,10 +5371,10 @@ class NormalizeMatchParticipantsPipe {
5359
5371
  constructor() {
5360
5372
  this.transform = normalizeMatchParticipants;
5361
5373
  }
5362
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5363
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
5374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5375
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
5364
5376
  }
5365
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
5377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
5366
5378
  type: Pipe,
5367
5379
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
5368
5380
  }] });
@@ -5496,10 +5508,10 @@ class NormalizeMatchScorePipe {
5496
5508
  constructor() {
5497
5509
  this.transform = normalizeMatchScore;
5498
5510
  }
5499
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5500
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
5511
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5512
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
5501
5513
  }
5502
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
5514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
5503
5515
  type: Pipe,
5504
5516
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
5505
5517
  }] });
@@ -5546,10 +5558,10 @@ class NormalizeMatchTypePipe {
5546
5558
  constructor() {
5547
5559
  this.transform = normalizeMatchType;
5548
5560
  }
5549
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5550
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
5561
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5562
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
5551
5563
  }
5552
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
5564
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
5553
5565
  type: Pipe,
5554
5566
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
5555
5567
  }] });
@@ -5563,10 +5575,10 @@ class ToArrayPipe {
5563
5575
  constructor() {
5564
5576
  this.transform = toArray;
5565
5577
  }
5566
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5567
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.1.3", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
5578
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5579
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.4", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
5568
5580
  }
5569
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ToArrayPipe, decorators: [{
5581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ToArrayPipe, decorators: [{
5570
5582
  type: Pipe,
5571
5583
  args: [{ name: 'toArray', standalone: true }]
5572
5584
  }] });
@@ -5788,10 +5800,10 @@ class PropsDirective {
5788
5800
  });
5789
5801
  });
5790
5802
  }
5791
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5792
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.1.3", 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.4", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5804
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.4", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
5793
5805
  }
5794
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PropsDirective, decorators: [{
5806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: PropsDirective, decorators: [{
5795
5807
  type: Directive,
5796
5808
  args: [{
5797
5809
  selector: '[etProps]',