@ethlete/core 4.19.2 → 4.19.4
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.
- package/CHANGELOG.md +18 -6
- package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/debug/debug.directive.mjs +3 -3
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
- package/esm2022/lib/directives/let/let.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +3 -3
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
- package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
- package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
- package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/props/props.directive.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/intersection-observer.service.mjs +6 -6
- package/esm2022/lib/services/resize-observer.service.mjs +6 -6
- package/esm2022/lib/services/router-state.service.mjs +3 -3
- package/esm2022/lib/services/viewport.service.mjs +3 -3
- package/esm2022/lib/utils/scrollable.utils.mjs +16 -19
- package/esm2022/lib/utils/signal.utils.mjs +15 -17
- package/fesm2022/ethlete-core.mjs +153 -158
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/utils/scrollable.utils.d.ts +13 -12
- package/lib/utils/signal.utils.d.ts +1 -1
- package/package.json +7 -7
|
@@ -29,10 +29,10 @@ class StructuredDataComponent {
|
|
|
29
29
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
30
30
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
31
31
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
34
34
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
36
|
type: Component,
|
|
37
37
|
args: [{
|
|
38
38
|
selector: 'et-structured-data',
|
|
@@ -1003,9 +1003,17 @@ const isElementVisible = (options) => {
|
|
|
1003
1003
|
container ||= document.documentElement;
|
|
1004
1004
|
const canScroll = elementCanScroll(container);
|
|
1005
1005
|
if (!canScroll) {
|
|
1006
|
-
return {
|
|
1006
|
+
return {
|
|
1007
|
+
inline: true,
|
|
1008
|
+
block: true,
|
|
1009
|
+
blockIntersection: 1,
|
|
1010
|
+
inlineIntersection: 1,
|
|
1011
|
+
intersectionRatio: 1,
|
|
1012
|
+
isIntersecting: true,
|
|
1013
|
+
element,
|
|
1014
|
+
};
|
|
1007
1015
|
}
|
|
1008
|
-
const elementRect = element.getBoundingClientRect();
|
|
1016
|
+
const elementRect = options.elementRect || element.getBoundingClientRect();
|
|
1009
1017
|
const containerRect = options.containerRect || container.getBoundingClientRect();
|
|
1010
1018
|
const elementInlineStart = elementRect.left;
|
|
1011
1019
|
const elementBlockStart = elementRect.top;
|
|
@@ -1021,14 +1029,17 @@ const isElementVisible = (options) => {
|
|
|
1021
1029
|
const isElementBlockVisible = elementBlockStart >= containerBlockStart && elementBlockEnd <= containerBlockEnd;
|
|
1022
1030
|
const inlineIntersection = Math.min(elementInlineEnd, containerInlineEnd) - Math.max(elementInlineStart, containerInlineStart);
|
|
1023
1031
|
const blockIntersection = Math.min(elementBlockEnd, containerBlockEnd) - Math.max(elementBlockStart, containerBlockStart);
|
|
1024
|
-
const inlineIntersectionPercentage = clamp(
|
|
1025
|
-
const blockIntersectionPercentage = clamp(
|
|
1032
|
+
const inlineIntersectionPercentage = clamp(inlineIntersection / elWith, 0, 1);
|
|
1033
|
+
const blockIntersectionPercentage = clamp(blockIntersection / elHeight, 0, 1);
|
|
1026
1034
|
return {
|
|
1027
1035
|
inline: isElementInlineVisible,
|
|
1028
1036
|
block: isElementBlockVisible,
|
|
1029
1037
|
inlineIntersection: inlineIntersectionPercentage,
|
|
1030
1038
|
blockIntersection: blockIntersectionPercentage,
|
|
1039
|
+
isIntersecting: isElementInlineVisible && isElementBlockVisible,
|
|
1031
1040
|
element,
|
|
1041
|
+
// Round the intersection ratio to the nearest 0.01 to avoid floating point errors and system scaling issues.
|
|
1042
|
+
intersectionRatio: Math.round(Math.min(inlineIntersectionPercentage, blockIntersectionPercentage) * 100) / 100,
|
|
1032
1043
|
};
|
|
1033
1044
|
};
|
|
1034
1045
|
const getElementScrollCoordinates = (options) => {
|
|
@@ -1128,20 +1139,6 @@ const getElementScrollCoordinates = (options) => {
|
|
|
1128
1139
|
const scrollToElement = (options) => {
|
|
1129
1140
|
options.container?.scrollTo(getElementScrollCoordinates(options));
|
|
1130
1141
|
};
|
|
1131
|
-
const getElementVisibleStates = (options) => {
|
|
1132
|
-
let { container } = options;
|
|
1133
|
-
const { elements } = options;
|
|
1134
|
-
container ||= document.documentElement;
|
|
1135
|
-
const rect = container.getBoundingClientRect();
|
|
1136
|
-
const elementVisibleStates = elements
|
|
1137
|
-
.map((e) => {
|
|
1138
|
-
if (!e || !container)
|
|
1139
|
-
return null;
|
|
1140
|
-
return isElementVisible({ container, element: e, containerRect: rect });
|
|
1141
|
-
})
|
|
1142
|
-
.filter(Boolean);
|
|
1143
|
-
return elementVisibleStates;
|
|
1144
|
-
};
|
|
1145
1142
|
|
|
1146
1143
|
class SelectionModel {
|
|
1147
1144
|
get selection$() {
|
|
@@ -1515,10 +1512,10 @@ class ClickObserverFactory {
|
|
|
1515
1512
|
create() {
|
|
1516
1513
|
return fromEvent(document, 'click');
|
|
1517
1514
|
}
|
|
1518
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1519
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1516
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1520
1517
|
}
|
|
1521
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1518
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1522
1519
|
type: Injectable,
|
|
1523
1520
|
args: [{ providedIn: 'root' }]
|
|
1524
1521
|
}] });
|
|
@@ -1571,10 +1568,10 @@ class ClickObserverService {
|
|
|
1571
1568
|
this._observedElements.delete(element);
|
|
1572
1569
|
}
|
|
1573
1570
|
}
|
|
1574
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1575
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1571
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1572
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1576
1573
|
}
|
|
1577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1578
1575
|
type: Injectable,
|
|
1579
1576
|
args: [{ providedIn: 'root' }]
|
|
1580
1577
|
}] });
|
|
@@ -1584,10 +1581,10 @@ class MutationObserverFactory {
|
|
|
1584
1581
|
create(callback) {
|
|
1585
1582
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1586
1583
|
}
|
|
1587
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1588
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1584
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1585
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1589
1586
|
}
|
|
1590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1591
1588
|
type: Injectable,
|
|
1592
1589
|
args: [{ providedIn: 'root' }]
|
|
1593
1590
|
}] });
|
|
@@ -1646,10 +1643,10 @@ class ContentObserverService {
|
|
|
1646
1643
|
this._observedElements.delete(element);
|
|
1647
1644
|
}
|
|
1648
1645
|
}
|
|
1649
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1650
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1646
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1647
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1651
1648
|
}
|
|
1652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1653
1650
|
type: Injectable,
|
|
1654
1651
|
args: [{ providedIn: 'root' }]
|
|
1655
1652
|
}] });
|
|
@@ -1675,10 +1672,10 @@ class FocusVisibleService {
|
|
|
1675
1672
|
onPointerDown() {
|
|
1676
1673
|
this._hadKeyboardEvent = false;
|
|
1677
1674
|
}
|
|
1678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1679
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1675
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1676
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1680
1677
|
}
|
|
1681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1682
1679
|
type: Injectable,
|
|
1683
1680
|
args: [{
|
|
1684
1681
|
providedIn: 'root',
|
|
@@ -1690,10 +1687,10 @@ class IntersectionObserverFactory {
|
|
|
1690
1687
|
create(callback) {
|
|
1691
1688
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
1692
1689
|
}
|
|
1693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1690
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1691
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
1695
1692
|
}
|
|
1696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
1697
1694
|
type: Injectable,
|
|
1698
1695
|
args: [{ providedIn: 'root' }]
|
|
1699
1696
|
}] });
|
|
@@ -1748,10 +1745,10 @@ class IntersectionObserverService {
|
|
|
1748
1745
|
this._observedElements.delete(element);
|
|
1749
1746
|
}
|
|
1750
1747
|
}
|
|
1751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1752
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1748
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1749
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
1753
1750
|
}
|
|
1754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
1755
1752
|
type: Injectable,
|
|
1756
1753
|
args: [{ providedIn: 'root' }]
|
|
1757
1754
|
}] });
|
|
@@ -1761,10 +1758,10 @@ class ResizeObserverFactory {
|
|
|
1761
1758
|
create(callback) {
|
|
1762
1759
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1763
1760
|
}
|
|
1764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1765
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1761
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1762
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1766
1763
|
}
|
|
1767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1768
1765
|
type: Injectable,
|
|
1769
1766
|
args: [{ providedIn: 'root' }]
|
|
1770
1767
|
}] });
|
|
@@ -1819,10 +1816,10 @@ class ResizeObserverService {
|
|
|
1819
1816
|
this._observedElements.delete(element);
|
|
1820
1817
|
}
|
|
1821
1818
|
}
|
|
1822
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1823
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1819
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1820
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1824
1821
|
}
|
|
1825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1826
1823
|
type: Injectable,
|
|
1827
1824
|
args: [{ providedIn: 'root' }]
|
|
1828
1825
|
}] });
|
|
@@ -2017,10 +2014,10 @@ class RouterStateService {
|
|
|
2017
2014
|
fragment,
|
|
2018
2015
|
};
|
|
2019
2016
|
}
|
|
2020
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2021
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2018
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2022
2019
|
}
|
|
2023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2024
2021
|
type: Injectable,
|
|
2025
2022
|
args: [{
|
|
2026
2023
|
providedIn: 'root',
|
|
@@ -2236,8 +2233,8 @@ class ViewportService {
|
|
|
2236
2233
|
}
|
|
2237
2234
|
return 'xs';
|
|
2238
2235
|
}
|
|
2239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2237
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2241
2238
|
}
|
|
2242
2239
|
__decorate([
|
|
2243
2240
|
Memo(),
|
|
@@ -2255,7 +2252,7 @@ __decorate([
|
|
|
2255
2252
|
__metadata("design:paramtypes", [Object]),
|
|
2256
2253
|
__metadata("design:returntype", void 0)
|
|
2257
2254
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ViewportService, decorators: [{
|
|
2259
2256
|
type: Injectable,
|
|
2260
2257
|
args: [{
|
|
2261
2258
|
providedIn: 'root',
|
|
@@ -2488,8 +2485,10 @@ const createElementDimensions = (el, rect) => {
|
|
|
2488
2485
|
offset: null,
|
|
2489
2486
|
};
|
|
2490
2487
|
}
|
|
2488
|
+
const cachedNormalizedRect = rect ? boundingClientRectToElementRect(rect) : null;
|
|
2489
|
+
const rectFn = () => cachedNormalizedRect ? cachedNormalizedRect : boundingClientRectToElementRect(el.getBoundingClientRect());
|
|
2491
2490
|
return {
|
|
2492
|
-
rect:
|
|
2491
|
+
rect: rectFn,
|
|
2493
2492
|
client: { width: el.clientWidth, height: el.clientHeight },
|
|
2494
2493
|
scroll: { width: el.scrollWidth, height: el.scrollHeight },
|
|
2495
2494
|
offset: { width: el.offsetWidth, height: el.offsetHeight },
|
|
@@ -2670,15 +2669,15 @@ const signalElementIntersection = (el, options) => {
|
|
|
2670
2669
|
};
|
|
2671
2670
|
const updateObservedElements = (observer, elements) => {
|
|
2672
2671
|
const rootEl = root().currentElement;
|
|
2673
|
-
const rootBounds = rootEl?.getBoundingClientRect();
|
|
2674
2672
|
if (!observer || !rootEl)
|
|
2675
2673
|
return;
|
|
2676
|
-
const
|
|
2674
|
+
const rootBounds = rootEl.getBoundingClientRect();
|
|
2675
|
+
const currIntersectionValue = elementIntersectionSignal();
|
|
2677
2676
|
const newIntersectionValue = [];
|
|
2678
2677
|
for (const el of elements.currentElements) {
|
|
2679
2678
|
if (currentlyObservedElements.has(el)) {
|
|
2680
|
-
const existingEntryIndex =
|
|
2681
|
-
const existingEntry =
|
|
2679
|
+
const existingEntryIndex = currIntersectionValue.findIndex((v) => v.target === el);
|
|
2680
|
+
const existingEntry = currIntersectionValue[existingEntryIndex];
|
|
2682
2681
|
if (!existingEntry) {
|
|
2683
2682
|
console.warn('Could not find existing entry for element. The intersection observer might be broken now.', el);
|
|
2684
2683
|
continue;
|
|
@@ -2686,9 +2685,12 @@ const signalElementIntersection = (el, options) => {
|
|
|
2686
2685
|
newIntersectionValue.push(existingEntry);
|
|
2687
2686
|
continue;
|
|
2688
2687
|
}
|
|
2688
|
+
const elBounds = el.getBoundingClientRect();
|
|
2689
2689
|
const initialElementVisibility = isElementVisible({
|
|
2690
2690
|
container: rootEl,
|
|
2691
2691
|
element: el,
|
|
2692
|
+
containerRect: rootBounds,
|
|
2693
|
+
elementRect: elBounds,
|
|
2692
2694
|
});
|
|
2693
2695
|
if (!initialElementVisibility) {
|
|
2694
2696
|
console.error('No visibility data found for element.', {
|
|
@@ -2697,19 +2699,12 @@ const signalElementIntersection = (el, options) => {
|
|
|
2697
2699
|
});
|
|
2698
2700
|
continue;
|
|
2699
2701
|
}
|
|
2700
|
-
const elBounds = el.getBoundingClientRect();
|
|
2701
|
-
const inlineIntersectionRatio = initialElementVisibility.inlineIntersection / 100;
|
|
2702
|
-
const blockIntersectionRatio = initialElementVisibility.blockIntersection / 100;
|
|
2703
|
-
const isIntersecting = inlineIntersectionRatio > 0 && blockIntersectionRatio > 0;
|
|
2704
|
-
const intersectionRatio = Math.min(inlineIntersectionRatio, blockIntersectionRatio);
|
|
2705
|
-
// Round the intersection ratio to the nearest 0.01 to avoid floating point errors and system scaling issues.
|
|
2706
|
-
const roundedIntersectionRatio = Math.round(intersectionRatio * 100) / 100;
|
|
2707
2702
|
const intersectionEntry = {
|
|
2708
2703
|
boundingClientRect: elBounds,
|
|
2709
|
-
intersectionRatio:
|
|
2704
|
+
intersectionRatio: initialElementVisibility.intersectionRatio,
|
|
2710
2705
|
intersectionRect: elBounds,
|
|
2711
|
-
isIntersecting,
|
|
2712
|
-
rootBounds: rootBounds
|
|
2706
|
+
isIntersecting: initialElementVisibility.isIntersecting,
|
|
2707
|
+
rootBounds: rootBounds,
|
|
2713
2708
|
target: el,
|
|
2714
2709
|
time: performance.now(),
|
|
2715
2710
|
};
|
|
@@ -2776,7 +2771,7 @@ const syncSignal = (from, to) => {
|
|
|
2776
2771
|
});
|
|
2777
2772
|
};
|
|
2778
2773
|
const controlValueSignal = (control, options) => {
|
|
2779
|
-
const vcsObs = options?.debounceTime
|
|
2774
|
+
const vcsObs = options?.debounceTime || options?.debounceTime === undefined
|
|
2780
2775
|
? control.valueChanges.pipe(debounceTime(options?.debounceTime ?? 300))
|
|
2781
2776
|
: control.valueChanges;
|
|
2782
2777
|
const obs = options?.debounceFirst
|
|
@@ -3330,15 +3325,15 @@ class AnimatableDirective {
|
|
|
3330
3325
|
.subscribe();
|
|
3331
3326
|
}
|
|
3332
3327
|
}
|
|
3333
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3334
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3328
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3329
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
3335
3330
|
{
|
|
3336
3331
|
provide: ANIMATABLE_TOKEN,
|
|
3337
3332
|
useExisting: AnimatableDirective,
|
|
3338
3333
|
},
|
|
3339
3334
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
3340
3335
|
}
|
|
3341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
3342
3337
|
type: Directive,
|
|
3343
3338
|
args: [{
|
|
3344
3339
|
selector: '[etAnimatable]',
|
|
@@ -3461,15 +3456,15 @@ class AnimatedLifecycleDirective {
|
|
|
3461
3456
|
_forceState(state) {
|
|
3462
3457
|
this._state$.next(state);
|
|
3463
3458
|
}
|
|
3464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3465
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
3459
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3460
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
3466
3461
|
{
|
|
3467
3462
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
3468
3463
|
useExisting: AnimatedLifecycleDirective,
|
|
3469
3464
|
},
|
|
3470
3465
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
3471
3466
|
}
|
|
3472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
3473
3468
|
type: Directive,
|
|
3474
3469
|
args: [{
|
|
3475
3470
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -3506,15 +3501,15 @@ class AnimatedIfDirective {
|
|
|
3506
3501
|
.subscribe();
|
|
3507
3502
|
}
|
|
3508
3503
|
}
|
|
3509
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3510
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3504
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3505
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
3511
3506
|
{
|
|
3512
3507
|
provide: ANIMATED_IF_TOKEN,
|
|
3513
3508
|
useExisting: AnimatedIfDirective,
|
|
3514
3509
|
},
|
|
3515
3510
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
3516
3511
|
}
|
|
3517
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
3518
3513
|
type: Directive,
|
|
3519
3514
|
args: [{
|
|
3520
3515
|
selector: '[etAnimatedIf]',
|
|
@@ -3574,10 +3569,10 @@ class ObserveResizeDirective {
|
|
|
3574
3569
|
_unsubscribe() {
|
|
3575
3570
|
this._currentSubscription?.unsubscribe();
|
|
3576
3571
|
}
|
|
3577
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3578
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3572
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3573
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
3579
3574
|
}
|
|
3580
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
3581
3576
|
type: Directive,
|
|
3582
3577
|
args: [{
|
|
3583
3578
|
selector: '[etObserveResize]',
|
|
@@ -3607,15 +3602,15 @@ class RootBoundaryDirective {
|
|
|
3607
3602
|
set boundaryElement(v) {
|
|
3608
3603
|
this._boundaryElement = v;
|
|
3609
3604
|
}
|
|
3610
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3611
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3606
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3612
3607
|
{
|
|
3613
3608
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3614
3609
|
useExisting: RootBoundaryDirective,
|
|
3615
3610
|
},
|
|
3616
3611
|
], ngImport: i0 }); }
|
|
3617
3612
|
}
|
|
3618
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3619
3614
|
type: Directive,
|
|
3620
3615
|
args: [{
|
|
3621
3616
|
selector: '[etRootBoundary]',
|
|
@@ -3921,10 +3916,10 @@ class AnimatedOverlayDirective {
|
|
|
3921
3916
|
this._isUnmounting$.next(false);
|
|
3922
3917
|
this._afterClosed?.next();
|
|
3923
3918
|
}
|
|
3924
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3925
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3920
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", shift: "shift", autoHide: "autoHide", autoCloseIfReferenceHidden: "autoCloseIfReferenceHidden" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
|
|
3926
3921
|
}
|
|
3927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3928
3923
|
type: Directive,
|
|
3929
3924
|
args: [{
|
|
3930
3925
|
standalone: true,
|
|
@@ -3974,10 +3969,10 @@ class ClickOutsideDirective {
|
|
|
3974
3969
|
ngOnDestroy() {
|
|
3975
3970
|
this._subscription?.unsubscribe();
|
|
3976
3971
|
}
|
|
3977
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3978
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3973
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3979
3974
|
}
|
|
3980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3981
3976
|
type: Directive,
|
|
3982
3977
|
args: [{
|
|
3983
3978
|
selector: '[etClickOutside]',
|
|
@@ -4131,10 +4126,10 @@ class CursorDragScrollDirective {
|
|
|
4131
4126
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
4132
4127
|
}
|
|
4133
4128
|
}
|
|
4134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4135
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4129
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4130
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
4136
4131
|
}
|
|
4137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
4138
4133
|
type: Directive,
|
|
4139
4134
|
args: [{
|
|
4140
4135
|
selector: '[etCursorDragScroll]',
|
|
@@ -4167,15 +4162,15 @@ class DebugDirective {
|
|
|
4167
4162
|
set sDebug(value) {
|
|
4168
4163
|
this._debug.set(value);
|
|
4169
4164
|
}
|
|
4170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4171
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4165
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4166
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
4172
4167
|
{
|
|
4173
4168
|
provide: DEBUG_TOKEN,
|
|
4174
4169
|
useExisting: DebugDirective,
|
|
4175
4170
|
},
|
|
4176
4171
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
4177
4172
|
}
|
|
4178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: DebugDirective, decorators: [{
|
|
4179
4174
|
type: Directive,
|
|
4180
4175
|
args: [{
|
|
4181
4176
|
selector: '[etDebug]',
|
|
@@ -4222,15 +4217,15 @@ class DelayableDirective {
|
|
|
4222
4217
|
}
|
|
4223
4218
|
this._isDelayed$.next(val);
|
|
4224
4219
|
}
|
|
4225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4226
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4220
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4221
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
4227
4222
|
{
|
|
4228
4223
|
provide: DELAYABLE_TOKEN,
|
|
4229
4224
|
useExisting: DelayableDirective,
|
|
4230
4225
|
},
|
|
4231
4226
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
4232
4227
|
}
|
|
4233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
4234
4229
|
type: Directive,
|
|
4235
4230
|
args: [{
|
|
4236
4231
|
selector: '[etDelayable]',
|
|
@@ -4251,15 +4246,15 @@ class IsActiveElementDirective {
|
|
|
4251
4246
|
this.elementRef = inject(ElementRef);
|
|
4252
4247
|
this.isActiveElement = false;
|
|
4253
4248
|
}
|
|
4254
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4255
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4250
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
4256
4251
|
{
|
|
4257
4252
|
provide: IS_ACTIVE_ELEMENT,
|
|
4258
4253
|
useExisting: IsActiveElementDirective,
|
|
4259
4254
|
},
|
|
4260
4255
|
], ngImport: i0 }); }
|
|
4261
4256
|
}
|
|
4262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
4263
4258
|
type: Directive,
|
|
4264
4259
|
args: [{
|
|
4265
4260
|
selector: '[etIsActiveElement]',
|
|
@@ -4282,15 +4277,15 @@ class IsElementDirective {
|
|
|
4282
4277
|
this.elementRef = inject(ElementRef);
|
|
4283
4278
|
this.isElement = false;
|
|
4284
4279
|
}
|
|
4285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4286
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4280
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4281
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
4287
4282
|
{
|
|
4288
4283
|
provide: IS_ELEMENT,
|
|
4289
4284
|
useExisting: IsElementDirective,
|
|
4290
4285
|
},
|
|
4291
4286
|
], ngImport: i0 }); }
|
|
4292
4287
|
}
|
|
4293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
4294
4289
|
type: Directive,
|
|
4295
4290
|
args: [{
|
|
4296
4291
|
selector: '[etIsElement]',
|
|
@@ -4339,10 +4334,10 @@ class LetDirective {
|
|
|
4339
4334
|
}
|
|
4340
4335
|
}
|
|
4341
4336
|
}
|
|
4342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4343
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4337
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4338
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
4344
4339
|
}
|
|
4345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: LetDirective, decorators: [{
|
|
4346
4341
|
type: Directive,
|
|
4347
4342
|
args: [{
|
|
4348
4343
|
selector: '[etLet]',
|
|
@@ -4394,10 +4389,10 @@ class ObserveContentDirective {
|
|
|
4394
4389
|
_unsubscribe() {
|
|
4395
4390
|
this._currentSubscription?.unsubscribe();
|
|
4396
4391
|
}
|
|
4397
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4398
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4393
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
4399
4394
|
}
|
|
4400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
4401
4396
|
type: Directive,
|
|
4402
4397
|
args: [{
|
|
4403
4398
|
selector: '[etObserveContent]',
|
|
@@ -4422,10 +4417,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
4422
4417
|
constructor() {
|
|
4423
4418
|
this.isFirstElement = false;
|
|
4424
4419
|
}
|
|
4425
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4426
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4421
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
4427
4422
|
}
|
|
4428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
4429
4424
|
type: Directive,
|
|
4430
4425
|
args: [{
|
|
4431
4426
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -4441,10 +4436,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
4441
4436
|
|
|
4442
4437
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
4443
4438
|
class ScrollObserverIgnoreTargetDirective {
|
|
4444
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4445
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4439
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4440
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
4446
4441
|
}
|
|
4447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
4448
4443
|
type: Directive,
|
|
4449
4444
|
args: [{
|
|
4450
4445
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -4460,10 +4455,10 @@ class ScrollObserverLastElementDirective {
|
|
|
4460
4455
|
constructor() {
|
|
4461
4456
|
this.isLastElement = false;
|
|
4462
4457
|
}
|
|
4463
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4464
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4458
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4459
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
|
|
4465
4460
|
}
|
|
4466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
4467
4462
|
type: Directive,
|
|
4468
4463
|
args: [{
|
|
4469
4464
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4620,15 +4615,15 @@ class ObserveScrollStateDirective {
|
|
|
4620
4615
|
}
|
|
4621
4616
|
return element;
|
|
4622
4617
|
}
|
|
4623
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4624
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
4618
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4619
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4625
4620
|
{
|
|
4626
4621
|
provide: OBSERVE_SCROLL_STATE,
|
|
4627
4622
|
useExisting: ObserveScrollStateDirective,
|
|
4628
4623
|
},
|
|
4629
4624
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4630
4625
|
}
|
|
4631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4632
4627
|
type: Directive,
|
|
4633
4628
|
args: [{
|
|
4634
4629
|
selector: '[etObserveScrollState]',
|
|
@@ -4698,15 +4693,15 @@ class ObserveVisibilityDirective {
|
|
|
4698
4693
|
}))
|
|
4699
4694
|
.subscribe();
|
|
4700
4695
|
}
|
|
4701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4702
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4697
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4703
4698
|
{
|
|
4704
4699
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4705
4700
|
useExisting: ObserveVisibilityDirective,
|
|
4706
4701
|
},
|
|
4707
4702
|
], ngImport: i0 }); }
|
|
4708
4703
|
}
|
|
4709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4710
4705
|
type: Directive,
|
|
4711
4706
|
args: [{
|
|
4712
4707
|
selector: '[etObserveVisibility]',
|
|
@@ -4744,10 +4739,10 @@ class RepeatDirective {
|
|
|
4744
4739
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4745
4740
|
}
|
|
4746
4741
|
}
|
|
4747
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4748
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4743
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4749
4744
|
}
|
|
4750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4751
4746
|
type: Directive,
|
|
4752
4747
|
args: [{
|
|
4753
4748
|
selector: '[etRepeat]',
|
|
@@ -4916,10 +4911,10 @@ class SeoDirective {
|
|
|
4916
4911
|
}
|
|
4917
4912
|
}
|
|
4918
4913
|
}
|
|
4919
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4920
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4915
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4921
4916
|
}
|
|
4922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4923
4918
|
type: Directive,
|
|
4924
4919
|
args: [{
|
|
4925
4920
|
standalone: true,
|
|
@@ -5095,10 +5090,10 @@ class InferMimeTypePipe {
|
|
|
5095
5090
|
constructor() {
|
|
5096
5091
|
this.transform = inferMimeType;
|
|
5097
5092
|
}
|
|
5098
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5099
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5093
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5094
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
5100
5095
|
}
|
|
5101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
5102
5097
|
type: Pipe,
|
|
5103
5098
|
args: [{
|
|
5104
5099
|
name: 'inferMimeType',
|
|
@@ -5144,10 +5139,10 @@ class NormalizeGameResultTypePipe {
|
|
|
5144
5139
|
constructor() {
|
|
5145
5140
|
this.transform = normalizeGameResultType;
|
|
5146
5141
|
}
|
|
5147
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5148
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5143
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
5149
5144
|
}
|
|
5150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
5151
5146
|
type: Pipe,
|
|
5152
5147
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
5153
5148
|
}] });
|
|
@@ -5175,10 +5170,10 @@ class NormalizeMatchStatePipe {
|
|
|
5175
5170
|
constructor() {
|
|
5176
5171
|
this.transform = normalizeMatchState;
|
|
5177
5172
|
}
|
|
5178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5179
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5174
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
5180
5175
|
}
|
|
5181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
5182
5177
|
type: Pipe,
|
|
5183
5178
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
5184
5179
|
}] });
|
|
@@ -5233,10 +5228,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
5233
5228
|
constructor() {
|
|
5234
5229
|
this.transform = normalizeMatchParticipants;
|
|
5235
5230
|
}
|
|
5236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5237
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5232
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
5238
5233
|
}
|
|
5239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
5240
5235
|
type: Pipe,
|
|
5241
5236
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
5242
5237
|
}] });
|
|
@@ -5370,10 +5365,10 @@ class NormalizeMatchScorePipe {
|
|
|
5370
5365
|
constructor() {
|
|
5371
5366
|
this.transform = normalizeMatchScore;
|
|
5372
5367
|
}
|
|
5373
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5374
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5369
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
5375
5370
|
}
|
|
5376
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
5377
5372
|
type: Pipe,
|
|
5378
5373
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
5379
5374
|
}] });
|
|
@@ -5420,10 +5415,10 @@ class NormalizeMatchTypePipe {
|
|
|
5420
5415
|
constructor() {
|
|
5421
5416
|
this.transform = normalizeMatchType;
|
|
5422
5417
|
}
|
|
5423
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5424
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5419
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
5425
5420
|
}
|
|
5426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
5427
5422
|
type: Pipe,
|
|
5428
5423
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
5429
5424
|
}] });
|
|
@@ -5437,10 +5432,10 @@ class ToArrayPipe {
|
|
|
5437
5432
|
constructor() {
|
|
5438
5433
|
this.transform = toArray;
|
|
5439
5434
|
}
|
|
5440
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5441
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
5435
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5436
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
5442
5437
|
}
|
|
5443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
5444
5439
|
type: Pipe,
|
|
5445
5440
|
args: [{ name: 'toArray', standalone: true }]
|
|
5446
5441
|
}] });
|
|
@@ -5658,10 +5653,10 @@ class PropsDirective {
|
|
|
5658
5653
|
});
|
|
5659
5654
|
});
|
|
5660
5655
|
}
|
|
5661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5662
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "
|
|
5656
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5657
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.2", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5663
5658
|
}
|
|
5664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5665
5660
|
type: Directive,
|
|
5666
5661
|
args: [{
|
|
5667
5662
|
selector: '[etProps]',
|
|
@@ -5794,5 +5789,5 @@ const Validators = {
|
|
|
5794
5789
|
* Generated bundle index. Do not edit.
|
|
5795
5790
|
*/
|
|
5796
5791
|
|
|
5797
|
-
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, CURSOR_DRAG_SCROLLING_CLASS, CURSOR_DRAG_SCROLLING_PREPARED_CLASS, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, PropsDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, areScrollStatesEqual, bindProps, boundingClientRectToElementRect, buildSignalEffects, clamp, clone, cloneFormGroup, computedTillFalsy, computedTillTruthy, controlValueSignal, controlValueSignalWithPrevious, createCanAnimateSignal, createComponentId, createDependencyStash, createDestroy, createElementDictionary, createElementDimensions, createFlipAnimation, createFlipAnimationGroup, createHostProps, createIsRenderedSignal, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deferredSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates,
|
|
5792
|
+
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, CURSOR_DRAG_SCROLLING_CLASS, CURSOR_DRAG_SCROLLING_PREPARED_CLASS, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, PropsDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, areScrollStatesEqual, bindProps, boundingClientRectToElementRect, buildSignalEffects, clamp, clone, cloneFormGroup, computedTillFalsy, computedTillTruthy, controlValueSignal, controlValueSignalWithPrevious, createCanAnimateSignal, createComponentId, createDependencyStash, createDestroy, createElementDictionary, createElementDimensions, createFlipAnimation, createFlipAnimationGroup, createHostProps, createIsRenderedSignal, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deferredSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getIntersectionInfo, getKnockoutMatchScore, getMatchScoreSubLine, getObjectProperty, hasCookie, inferMimeType, injectBreakpointIsMatched, injectCurrentBreakpoint, injectFragment, injectHostElement, injectIs2Xl, injectIsLg, injectIsMd, injectIsSm, injectIsXl, injectIsXs, injectObserveBreakpoint, injectOrRunInContext, injectPathParam, injectPathParams, injectQueryParam, injectQueryParams, injectRouteData, injectRouteDataItem, injectRouteTitle, injectTemplateRef, isArray, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObject, isObjectArray, isPrimitiveArray, maybeSignalValue, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, previousSignalValue, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, signalAttributes, signalClasses, signalElementChildren, signalElementDimensions, signalElementIntersection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, syncSignal, templateComputed, toArray, toArrayTrackByFn, transformOrReturn, unbindProps, useCursorDragScroll };
|
|
5798
5793
|
//# sourceMappingURL=ethlete-core.mjs.map
|