@ethlete/core 4.19.0 → 4.19.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.
- package/CHANGELOG.md +12 -0
- 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/signal.utils.mjs +73 -57
- package/fesm2022/ethlete-core.mjs +196 -180
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/utils/signal.utils.d.ts +33 -21
- 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: "17.3.
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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: "17.3.
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
36
|
type: Component,
|
|
37
37
|
args: [{
|
|
38
38
|
selector: 'et-structured-data',
|
|
@@ -1515,10 +1515,10 @@ class ClickObserverFactory {
|
|
|
1515
1515
|
create() {
|
|
1516
1516
|
return fromEvent(document, 'click');
|
|
1517
1517
|
}
|
|
1518
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1519
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1519
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1520
1520
|
}
|
|
1521
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1522
1522
|
type: Injectable,
|
|
1523
1523
|
args: [{ providedIn: 'root' }]
|
|
1524
1524
|
}] });
|
|
@@ -1571,10 +1571,10 @@ class ClickObserverService {
|
|
|
1571
1571
|
this._observedElements.delete(element);
|
|
1572
1572
|
}
|
|
1573
1573
|
}
|
|
1574
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1575
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1575
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1576
1576
|
}
|
|
1577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1578
1578
|
type: Injectable,
|
|
1579
1579
|
args: [{ providedIn: 'root' }]
|
|
1580
1580
|
}] });
|
|
@@ -1584,10 +1584,10 @@ class MutationObserverFactory {
|
|
|
1584
1584
|
create(callback) {
|
|
1585
1585
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1586
1586
|
}
|
|
1587
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1588
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1587
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1588
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1589
1589
|
}
|
|
1590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1591
1591
|
type: Injectable,
|
|
1592
1592
|
args: [{ providedIn: 'root' }]
|
|
1593
1593
|
}] });
|
|
@@ -1646,10 +1646,10 @@ class ContentObserverService {
|
|
|
1646
1646
|
this._observedElements.delete(element);
|
|
1647
1647
|
}
|
|
1648
1648
|
}
|
|
1649
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1650
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1649
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1650
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1651
1651
|
}
|
|
1652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1653
1653
|
type: Injectable,
|
|
1654
1654
|
args: [{ providedIn: 'root' }]
|
|
1655
1655
|
}] });
|
|
@@ -1675,10 +1675,10 @@ class FocusVisibleService {
|
|
|
1675
1675
|
onPointerDown() {
|
|
1676
1676
|
this._hadKeyboardEvent = false;
|
|
1677
1677
|
}
|
|
1678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1679
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1679
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1680
1680
|
}
|
|
1681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1682
1682
|
type: Injectable,
|
|
1683
1683
|
args: [{
|
|
1684
1684
|
providedIn: 'root',
|
|
@@ -1690,10 +1690,10 @@ class IntersectionObserverFactory {
|
|
|
1690
1690
|
create(callback) {
|
|
1691
1691
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
1692
1692
|
}
|
|
1693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1694
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1693
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1694
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
1695
1695
|
}
|
|
1696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
1697
1697
|
type: Injectable,
|
|
1698
1698
|
args: [{ providedIn: 'root' }]
|
|
1699
1699
|
}] });
|
|
@@ -1748,10 +1748,10 @@ class IntersectionObserverService {
|
|
|
1748
1748
|
this._observedElements.delete(element);
|
|
1749
1749
|
}
|
|
1750
1750
|
}
|
|
1751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1752
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1751
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1752
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
1753
1753
|
}
|
|
1754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
1755
1755
|
type: Injectable,
|
|
1756
1756
|
args: [{ providedIn: 'root' }]
|
|
1757
1757
|
}] });
|
|
@@ -1761,10 +1761,10 @@ class ResizeObserverFactory {
|
|
|
1761
1761
|
create(callback) {
|
|
1762
1762
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1763
1763
|
}
|
|
1764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1765
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1765
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1766
1766
|
}
|
|
1767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1768
1768
|
type: Injectable,
|
|
1769
1769
|
args: [{ providedIn: 'root' }]
|
|
1770
1770
|
}] });
|
|
@@ -1819,10 +1819,10 @@ class ResizeObserverService {
|
|
|
1819
1819
|
this._observedElements.delete(element);
|
|
1820
1820
|
}
|
|
1821
1821
|
}
|
|
1822
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
1823
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
1822
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1823
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1824
1824
|
}
|
|
1825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
1825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1826
1826
|
type: Injectable,
|
|
1827
1827
|
args: [{ providedIn: 'root' }]
|
|
1828
1828
|
}] });
|
|
@@ -2017,10 +2017,10 @@ class RouterStateService {
|
|
|
2017
2017
|
fragment,
|
|
2018
2018
|
};
|
|
2019
2019
|
}
|
|
2020
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2021
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2020
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2021
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2022
2022
|
}
|
|
2023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2023
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2024
2024
|
type: Injectable,
|
|
2025
2025
|
args: [{
|
|
2026
2026
|
providedIn: 'root',
|
|
@@ -2236,8 +2236,8 @@ class ViewportService {
|
|
|
2236
2236
|
}
|
|
2237
2237
|
return 'xs';
|
|
2238
2238
|
}
|
|
2239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2239
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2240
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2241
2241
|
}
|
|
2242
2242
|
__decorate([
|
|
2243
2243
|
Memo(),
|
|
@@ -2255,7 +2255,7 @@ __decorate([
|
|
|
2255
2255
|
__metadata("design:paramtypes", [Object]),
|
|
2256
2256
|
__metadata("design:returntype", void 0)
|
|
2257
2257
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ViewportService, decorators: [{
|
|
2259
2259
|
type: Injectable,
|
|
2260
2260
|
args: [{
|
|
2261
2261
|
providedIn: 'root',
|
|
@@ -2369,11 +2369,12 @@ const buildSignalEffects = (el, config) => {
|
|
|
2369
2369
|
runInInjectionContext(injector, () => {
|
|
2370
2370
|
effects[tokens] = effect(() => {
|
|
2371
2371
|
const { currentElements } = untracked(() => elements());
|
|
2372
|
+
const value = signal();
|
|
2372
2373
|
for (const el of currentElements) {
|
|
2373
2374
|
const tokenArray = tokens.split(' ');
|
|
2374
2375
|
if (!tokenArray.length)
|
|
2375
2376
|
continue;
|
|
2376
|
-
config.updateFn(el, tokenArray,
|
|
2377
|
+
config.updateFn(el, tokenArray, value);
|
|
2377
2378
|
}
|
|
2378
2379
|
});
|
|
2379
2380
|
});
|
|
@@ -2454,11 +2455,11 @@ const signalStyles = (el, styleMap) => {
|
|
|
2454
2455
|
const renderer = inject(Renderer2);
|
|
2455
2456
|
return buildSignalEffects(el, {
|
|
2456
2457
|
tokenMap: styleMap,
|
|
2457
|
-
cleanupFn: (el, tokens) => tokens.forEach((token) => renderer.removeStyle(el, token)),
|
|
2458
|
+
cleanupFn: (el, tokens) => tokens.forEach((token) => renderer.removeStyle(el, token, RendererStyleFlags2.DashCase)),
|
|
2458
2459
|
updateFn: (el, tokens, condition) => {
|
|
2459
2460
|
for (const token of tokens) {
|
|
2460
2461
|
if (condition === null || condition === undefined) {
|
|
2461
|
-
renderer.removeStyle(el, token);
|
|
2462
|
+
renderer.removeStyle(el, token, RendererStyleFlags2.DashCase);
|
|
2462
2463
|
}
|
|
2463
2464
|
else {
|
|
2464
2465
|
renderer.setStyle(el, token, `${condition}`, RendererStyleFlags2.DashCase);
|
|
@@ -2468,57 +2469,70 @@ const signalStyles = (el, styleMap) => {
|
|
|
2468
2469
|
});
|
|
2469
2470
|
};
|
|
2470
2471
|
const signalHostStyles = (styleMap) => signalStyles(inject(ElementRef), styleMap);
|
|
2472
|
+
const boundingClientRectToElementRect = (rect) => ({
|
|
2473
|
+
bottom: rect.bottom,
|
|
2474
|
+
height: rect.height,
|
|
2475
|
+
left: rect.left,
|
|
2476
|
+
right: rect.right,
|
|
2477
|
+
top: rect.top,
|
|
2478
|
+
width: rect.width,
|
|
2479
|
+
x: rect.x,
|
|
2480
|
+
y: rect.y,
|
|
2481
|
+
});
|
|
2482
|
+
const createElementDimensions = (el, rect) => {
|
|
2483
|
+
if (!el) {
|
|
2484
|
+
return {
|
|
2485
|
+
rect: null,
|
|
2486
|
+
client: null,
|
|
2487
|
+
scroll: null,
|
|
2488
|
+
offset: null,
|
|
2489
|
+
};
|
|
2490
|
+
}
|
|
2491
|
+
return {
|
|
2492
|
+
rect: rect ? boundingClientRectToElementRect(rect) : boundingClientRectToElementRect(el.getBoundingClientRect()),
|
|
2493
|
+
client: { width: el.clientWidth, height: el.clientHeight },
|
|
2494
|
+
scroll: { width: el.scrollWidth, height: el.scrollHeight },
|
|
2495
|
+
offset: { width: el.offsetWidth, height: el.offsetHeight },
|
|
2496
|
+
};
|
|
2497
|
+
};
|
|
2471
2498
|
const signalElementDimensions = (el) => {
|
|
2472
2499
|
const destroyRef = inject(DestroyRef);
|
|
2473
2500
|
const elements = buildElementSignal(el);
|
|
2474
2501
|
const zone = inject(NgZone);
|
|
2475
2502
|
const isRendered = signalIsRendered();
|
|
2476
|
-
const initialValue = () => (
|
|
2477
|
-
rect: elements().currentElement?.getBoundingClientRect() ?? null,
|
|
2478
|
-
borderBoxSize: null,
|
|
2479
|
-
contentBoxSize: null,
|
|
2480
|
-
devicePixelContentBoxSize: null,
|
|
2481
|
-
});
|
|
2503
|
+
const initialValue = () => createElementDimensions(elements().currentElement);
|
|
2482
2504
|
const elementDimensionsSignal = signal(initialValue());
|
|
2483
2505
|
const observer = new ResizeObserver((e) => {
|
|
2484
2506
|
if (!isRendered())
|
|
2485
2507
|
return;
|
|
2486
2508
|
const entry = e[0];
|
|
2487
2509
|
if (entry) {
|
|
2488
|
-
const
|
|
2489
|
-
const
|
|
2490
|
-
|
|
2491
|
-
zone.run(() => elementDimensionsSignal.set({
|
|
2492
|
-
rect: entry.contentRect,
|
|
2493
|
-
borderBoxSize: borderBoxSize
|
|
2494
|
-
? { inlineSize: borderBoxSize.inlineSize, blockSize: borderBoxSize.blockSize }
|
|
2495
|
-
: null,
|
|
2496
|
-
contentBoxSize: contentBoxSize
|
|
2497
|
-
? { inlineSize: contentBoxSize.inlineSize, blockSize: contentBoxSize.blockSize }
|
|
2498
|
-
: null,
|
|
2499
|
-
devicePixelContentBoxSize: devicePixelContentBoxSize
|
|
2500
|
-
? { inlineSize: devicePixelContentBoxSize.inlineSize, blockSize: devicePixelContentBoxSize.blockSize }
|
|
2501
|
-
: null,
|
|
2502
|
-
}));
|
|
2510
|
+
const target = entry.target;
|
|
2511
|
+
const newDimensions = createElementDimensions(target);
|
|
2512
|
+
zone.run(() => elementDimensionsSignal.set(newDimensions));
|
|
2503
2513
|
}
|
|
2504
2514
|
});
|
|
2505
2515
|
effect(() => {
|
|
2506
2516
|
const els = elements();
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
if (els.currentElement) {
|
|
2512
|
-
const computedDisplay = getComputedStyle(els.currentElement).display;
|
|
2513
|
-
const currentElIsAngularComponent = els.currentElement?.tagName.toLowerCase().includes('-');
|
|
2514
|
-
if (computedDisplay === 'inline' && isDevMode() && currentElIsAngularComponent) {
|
|
2515
|
-
console.error(`Element <${els.currentElement?.tagName.toLowerCase()}> is an Angular component and has a display of 'inline'. Inline elements cannot be observed for dimensions. Please change it to 'block' or something else.`);
|
|
2517
|
+
untracked(() => {
|
|
2518
|
+
elementDimensionsSignal.set(initialValue());
|
|
2519
|
+
if (els.previousElement) {
|
|
2520
|
+
observer.disconnect();
|
|
2516
2521
|
}
|
|
2517
|
-
|
|
2518
|
-
|
|
2522
|
+
if (els.currentElement) {
|
|
2523
|
+
const computedDisplay = getComputedStyle(els.currentElement).display;
|
|
2524
|
+
const currentElIsAngularComponent = els.currentElement?.tagName.toLowerCase().includes('-');
|
|
2525
|
+
if (computedDisplay === 'inline' && isDevMode() && currentElIsAngularComponent) {
|
|
2526
|
+
console.error(`Element <${els.currentElement?.tagName.toLowerCase()}> is an Angular component and has a display of 'inline'. Inline elements cannot be observed for dimensions. Please change it to 'block' or something else.`);
|
|
2527
|
+
}
|
|
2528
|
+
observer.observe(els.currentElement);
|
|
2529
|
+
}
|
|
2530
|
+
});
|
|
2519
2531
|
}, { allowSignalWrites: true });
|
|
2520
2532
|
destroyRef.onDestroy(() => observer.disconnect());
|
|
2521
|
-
return elementDimensionsSignal
|
|
2533
|
+
return computed(() => elementDimensionsSignal(), {
|
|
2534
|
+
equal: (a, b) => equal(a, b),
|
|
2535
|
+
});
|
|
2522
2536
|
};
|
|
2523
2537
|
const signalHostElementDimensions = () => signalElementDimensions(inject(ElementRef));
|
|
2524
2538
|
const signalElementMutations = (el, options) => {
|
|
@@ -2549,8 +2563,15 @@ const signalElementMutations = (el, options) => {
|
|
|
2549
2563
|
return elementMutationsSignal.asReadonly();
|
|
2550
2564
|
};
|
|
2551
2565
|
const signalHostElementMutations = (options) => signalElementMutations(inject(ElementRef), options);
|
|
2566
|
+
const areScrollStatesEqual = (a, b) => {
|
|
2567
|
+
return (a.canScroll === b.canScroll &&
|
|
2568
|
+
a.canScrollHorizontally === b.canScrollHorizontally &&
|
|
2569
|
+
a.canScrollVertically === b.canScrollVertically &&
|
|
2570
|
+
equal(a.elementDimensions, b.elementDimensions));
|
|
2571
|
+
};
|
|
2552
2572
|
const signalElementScrollState = (el, options) => {
|
|
2553
2573
|
const elements = buildElementSignal(el);
|
|
2574
|
+
const observedEl = firstElementSignal(elements);
|
|
2554
2575
|
const elementDimensions = signalElementDimensions(elements);
|
|
2555
2576
|
const elementMutations = signalElementMutations(elements, { childList: true, subtree: true, attributes: true });
|
|
2556
2577
|
const isRendered = signalIsRendered();
|
|
@@ -2560,7 +2581,7 @@ const signalElementScrollState = (el, options) => {
|
|
|
2560
2581
|
if (!isRendered())
|
|
2561
2582
|
return;
|
|
2562
2583
|
const scrollPosition = initialScrollPosition();
|
|
2563
|
-
const element =
|
|
2584
|
+
const element = observedEl().currentElement;
|
|
2564
2585
|
if (scrollPosition && element) {
|
|
2565
2586
|
if (scrollPosition.left !== undefined)
|
|
2566
2587
|
element.scrollLeft = scrollPosition.left;
|
|
@@ -2570,35 +2591,30 @@ const signalElementScrollState = (el, options) => {
|
|
|
2570
2591
|
}
|
|
2571
2592
|
});
|
|
2572
2593
|
}
|
|
2594
|
+
const notScrollable = (dimensions) => ({
|
|
2595
|
+
canScroll: false,
|
|
2596
|
+
canScrollHorizontally: false,
|
|
2597
|
+
canScrollVertically: false,
|
|
2598
|
+
elementDimensions: dimensions,
|
|
2599
|
+
});
|
|
2573
2600
|
return computed(() => {
|
|
2574
|
-
const element =
|
|
2601
|
+
const element = observedEl().currentElement;
|
|
2575
2602
|
const dimensions = elementDimensions();
|
|
2576
|
-
const notScrollable = () => ({
|
|
2577
|
-
canScroll: false,
|
|
2578
|
-
canScrollHorizontally: false,
|
|
2579
|
-
canScrollVertically: false,
|
|
2580
|
-
scrollWidth: element?.scrollWidth ?? null,
|
|
2581
|
-
scrollHeight: element?.scrollHeight ?? null,
|
|
2582
|
-
elementDimensions: dimensions,
|
|
2583
|
-
});
|
|
2584
2603
|
// We are not interested what the mutation is, just that there is one.
|
|
2585
2604
|
// Changes to the DOM can affect the scroll state of the element.
|
|
2586
2605
|
elementMutations();
|
|
2587
|
-
if (!element || !
|
|
2588
|
-
return notScrollable();
|
|
2589
|
-
const { scrollWidth, scrollHeight } = element;
|
|
2590
|
-
const
|
|
2591
|
-
const
|
|
2592
|
-
const canScrollVertically = scrollHeight > height;
|
|
2606
|
+
if (!element || !isRendered())
|
|
2607
|
+
return notScrollable(dimensions);
|
|
2608
|
+
const { scrollWidth, scrollHeight, clientHeight, clientWidth } = element;
|
|
2609
|
+
const canScrollHorizontally = scrollWidth > clientWidth;
|
|
2610
|
+
const canScrollVertically = scrollHeight > clientHeight;
|
|
2593
2611
|
return {
|
|
2594
2612
|
canScroll: canScrollHorizontally || canScrollVertically,
|
|
2595
2613
|
canScrollHorizontally,
|
|
2596
2614
|
canScrollVertically,
|
|
2597
|
-
scrollWidth,
|
|
2598
|
-
scrollHeight,
|
|
2599
2615
|
elementDimensions: dimensions,
|
|
2600
2616
|
};
|
|
2601
|
-
});
|
|
2617
|
+
}, { equal: (a, b) => areScrollStatesEqual(a, b) });
|
|
2602
2618
|
};
|
|
2603
2619
|
const signalHostElementScrollState = () => signalElementScrollState(inject(ElementRef));
|
|
2604
2620
|
const signalElementIntersection = (el, options) => {
|
|
@@ -2745,7 +2761,7 @@ const signalElementChildren = (el) => {
|
|
|
2745
2761
|
}
|
|
2746
2762
|
}
|
|
2747
2763
|
return children;
|
|
2748
|
-
});
|
|
2764
|
+
}, { equal: (a, b) => a.length === b.length && a.every((v, i) => v === b[i]) });
|
|
2749
2765
|
};
|
|
2750
2766
|
const previousSignalValue = (signal) => {
|
|
2751
2767
|
const obs = toObservable(signal).pipe(pairwise(), map(([prev]) => prev));
|
|
@@ -3314,15 +3330,15 @@ class AnimatableDirective {
|
|
|
3314
3330
|
.subscribe();
|
|
3315
3331
|
}
|
|
3316
3332
|
}
|
|
3317
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3318
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3334
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
3319
3335
|
{
|
|
3320
3336
|
provide: ANIMATABLE_TOKEN,
|
|
3321
3337
|
useExisting: AnimatableDirective,
|
|
3322
3338
|
},
|
|
3323
3339
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
3324
3340
|
}
|
|
3325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
3326
3342
|
type: Directive,
|
|
3327
3343
|
args: [{
|
|
3328
3344
|
selector: '[etAnimatable]',
|
|
@@ -3445,15 +3461,15 @@ class AnimatedLifecycleDirective {
|
|
|
3445
3461
|
_forceState(state) {
|
|
3446
3462
|
this._state$.next(state);
|
|
3447
3463
|
}
|
|
3448
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3449
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.
|
|
3464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3465
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.9", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
3450
3466
|
{
|
|
3451
3467
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
3452
3468
|
useExisting: AnimatedLifecycleDirective,
|
|
3453
3469
|
},
|
|
3454
3470
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
3455
3471
|
}
|
|
3456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
3457
3473
|
type: Directive,
|
|
3458
3474
|
args: [{
|
|
3459
3475
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -3490,15 +3506,15 @@ class AnimatedIfDirective {
|
|
|
3490
3506
|
.subscribe();
|
|
3491
3507
|
}
|
|
3492
3508
|
}
|
|
3493
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3494
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3509
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3510
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
3495
3511
|
{
|
|
3496
3512
|
provide: ANIMATED_IF_TOKEN,
|
|
3497
3513
|
useExisting: AnimatedIfDirective,
|
|
3498
3514
|
},
|
|
3499
3515
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
3500
3516
|
}
|
|
3501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
3502
3518
|
type: Directive,
|
|
3503
3519
|
args: [{
|
|
3504
3520
|
selector: '[etAnimatedIf]',
|
|
@@ -3558,10 +3574,10 @@ class ObserveResizeDirective {
|
|
|
3558
3574
|
_unsubscribe() {
|
|
3559
3575
|
this._currentSubscription?.unsubscribe();
|
|
3560
3576
|
}
|
|
3561
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3562
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3578
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
3563
3579
|
}
|
|
3564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
3565
3581
|
type: Directive,
|
|
3566
3582
|
args: [{
|
|
3567
3583
|
selector: '[etObserveResize]',
|
|
@@ -3591,15 +3607,15 @@ class RootBoundaryDirective {
|
|
|
3591
3607
|
set boundaryElement(v) {
|
|
3592
3608
|
this._boundaryElement = v;
|
|
3593
3609
|
}
|
|
3594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3595
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3610
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3611
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3596
3612
|
{
|
|
3597
3613
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3598
3614
|
useExisting: RootBoundaryDirective,
|
|
3599
3615
|
},
|
|
3600
3616
|
], ngImport: i0 }); }
|
|
3601
3617
|
}
|
|
3602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3603
3619
|
type: Directive,
|
|
3604
3620
|
args: [{
|
|
3605
3621
|
selector: '[etRootBoundary]',
|
|
@@ -3905,10 +3921,10 @@ class AnimatedOverlayDirective {
|
|
|
3905
3921
|
this._isUnmounting$.next(false);
|
|
3906
3922
|
this._afterClosed?.next();
|
|
3907
3923
|
}
|
|
3908
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3909
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3924
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3925
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
|
|
3910
3926
|
}
|
|
3911
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3912
3928
|
type: Directive,
|
|
3913
3929
|
args: [{
|
|
3914
3930
|
standalone: true,
|
|
@@ -3958,10 +3974,10 @@ class ClickOutsideDirective {
|
|
|
3958
3974
|
ngOnDestroy() {
|
|
3959
3975
|
this._subscription?.unsubscribe();
|
|
3960
3976
|
}
|
|
3961
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3962
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3977
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3978
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3963
3979
|
}
|
|
3964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3965
3981
|
type: Directive,
|
|
3966
3982
|
args: [{
|
|
3967
3983
|
selector: '[etClickOutside]',
|
|
@@ -4115,10 +4131,10 @@ class CursorDragScrollDirective {
|
|
|
4115
4131
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
4116
4132
|
}
|
|
4117
4133
|
}
|
|
4118
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4119
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4135
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
4120
4136
|
}
|
|
4121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
4122
4138
|
type: Directive,
|
|
4123
4139
|
args: [{
|
|
4124
4140
|
selector: '[etCursorDragScroll]',
|
|
@@ -4151,15 +4167,15 @@ class DebugDirective {
|
|
|
4151
4167
|
set sDebug(value) {
|
|
4152
4168
|
this._debug.set(value);
|
|
4153
4169
|
}
|
|
4154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4155
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4170
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4171
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
4156
4172
|
{
|
|
4157
4173
|
provide: DEBUG_TOKEN,
|
|
4158
4174
|
useExisting: DebugDirective,
|
|
4159
4175
|
},
|
|
4160
4176
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
4161
4177
|
}
|
|
4162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: DebugDirective, decorators: [{
|
|
4163
4179
|
type: Directive,
|
|
4164
4180
|
args: [{
|
|
4165
4181
|
selector: '[etDebug]',
|
|
@@ -4206,15 +4222,15 @@ class DelayableDirective {
|
|
|
4206
4222
|
}
|
|
4207
4223
|
this._isDelayed$.next(val);
|
|
4208
4224
|
}
|
|
4209
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4210
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4226
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
4211
4227
|
{
|
|
4212
4228
|
provide: DELAYABLE_TOKEN,
|
|
4213
4229
|
useExisting: DelayableDirective,
|
|
4214
4230
|
},
|
|
4215
4231
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
4216
4232
|
}
|
|
4217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
4218
4234
|
type: Directive,
|
|
4219
4235
|
args: [{
|
|
4220
4236
|
selector: '[etDelayable]',
|
|
@@ -4235,15 +4251,15 @@ class IsActiveElementDirective {
|
|
|
4235
4251
|
this.elementRef = inject(ElementRef);
|
|
4236
4252
|
this.isActiveElement = false;
|
|
4237
4253
|
}
|
|
4238
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4239
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4254
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4255
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
4240
4256
|
{
|
|
4241
4257
|
provide: IS_ACTIVE_ELEMENT,
|
|
4242
4258
|
useExisting: IsActiveElementDirective,
|
|
4243
4259
|
},
|
|
4244
4260
|
], ngImport: i0 }); }
|
|
4245
4261
|
}
|
|
4246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
4247
4263
|
type: Directive,
|
|
4248
4264
|
args: [{
|
|
4249
4265
|
selector: '[etIsActiveElement]',
|
|
@@ -4266,15 +4282,15 @@ class IsElementDirective {
|
|
|
4266
4282
|
this.elementRef = inject(ElementRef);
|
|
4267
4283
|
this.isElement = false;
|
|
4268
4284
|
}
|
|
4269
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4270
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4286
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
4271
4287
|
{
|
|
4272
4288
|
provide: IS_ELEMENT,
|
|
4273
4289
|
useExisting: IsElementDirective,
|
|
4274
4290
|
},
|
|
4275
4291
|
], ngImport: i0 }); }
|
|
4276
4292
|
}
|
|
4277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
4278
4294
|
type: Directive,
|
|
4279
4295
|
args: [{
|
|
4280
4296
|
selector: '[etIsElement]',
|
|
@@ -4323,10 +4339,10 @@ class LetDirective {
|
|
|
4323
4339
|
}
|
|
4324
4340
|
}
|
|
4325
4341
|
}
|
|
4326
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4327
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4343
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
4328
4344
|
}
|
|
4329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: LetDirective, decorators: [{
|
|
4330
4346
|
type: Directive,
|
|
4331
4347
|
args: [{
|
|
4332
4348
|
selector: '[etLet]',
|
|
@@ -4378,10 +4394,10 @@ class ObserveContentDirective {
|
|
|
4378
4394
|
_unsubscribe() {
|
|
4379
4395
|
this._currentSubscription?.unsubscribe();
|
|
4380
4396
|
}
|
|
4381
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4382
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4397
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4398
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
4383
4399
|
}
|
|
4384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
4385
4401
|
type: Directive,
|
|
4386
4402
|
args: [{
|
|
4387
4403
|
selector: '[etObserveContent]',
|
|
@@ -4406,10 +4422,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
4406
4422
|
constructor() {
|
|
4407
4423
|
this.isFirstElement = false;
|
|
4408
4424
|
}
|
|
4409
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4410
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4425
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4426
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
4411
4427
|
}
|
|
4412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
4413
4429
|
type: Directive,
|
|
4414
4430
|
args: [{
|
|
4415
4431
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -4425,10 +4441,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
|
|
|
4425
4441
|
|
|
4426
4442
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
4427
4443
|
class ScrollObserverIgnoreTargetDirective {
|
|
4428
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4429
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4445
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
4430
4446
|
}
|
|
4431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
4432
4448
|
type: Directive,
|
|
4433
4449
|
args: [{
|
|
4434
4450
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -4444,10 +4460,10 @@ class ScrollObserverLastElementDirective {
|
|
|
4444
4460
|
constructor() {
|
|
4445
4461
|
this.isLastElement = false;
|
|
4446
4462
|
}
|
|
4447
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4448
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4463
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4464
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", 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 }); }
|
|
4449
4465
|
}
|
|
4450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
4451
4467
|
type: Directive,
|
|
4452
4468
|
args: [{
|
|
4453
4469
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4604,15 +4620,15 @@ class ObserveScrollStateDirective {
|
|
|
4604
4620
|
}
|
|
4605
4621
|
return element;
|
|
4606
4622
|
}
|
|
4607
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4608
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4623
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4624
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.9", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4609
4625
|
{
|
|
4610
4626
|
provide: OBSERVE_SCROLL_STATE,
|
|
4611
4627
|
useExisting: ObserveScrollStateDirective,
|
|
4612
4628
|
},
|
|
4613
4629
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4614
4630
|
}
|
|
4615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4616
4632
|
type: Directive,
|
|
4617
4633
|
args: [{
|
|
4618
4634
|
selector: '[etObserveScrollState]',
|
|
@@ -4682,15 +4698,15 @@ class ObserveVisibilityDirective {
|
|
|
4682
4698
|
}))
|
|
4683
4699
|
.subscribe();
|
|
4684
4700
|
}
|
|
4685
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4686
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4702
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4687
4703
|
{
|
|
4688
4704
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4689
4705
|
useExisting: ObserveVisibilityDirective,
|
|
4690
4706
|
},
|
|
4691
4707
|
], ngImport: i0 }); }
|
|
4692
4708
|
}
|
|
4693
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4709
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4694
4710
|
type: Directive,
|
|
4695
4711
|
args: [{
|
|
4696
4712
|
selector: '[etObserveVisibility]',
|
|
@@ -4728,10 +4744,10 @@ class RepeatDirective {
|
|
|
4728
4744
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4729
4745
|
}
|
|
4730
4746
|
}
|
|
4731
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4732
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4747
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4748
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4733
4749
|
}
|
|
4734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4735
4751
|
type: Directive,
|
|
4736
4752
|
args: [{
|
|
4737
4753
|
selector: '[etRepeat]',
|
|
@@ -4900,10 +4916,10 @@ class SeoDirective {
|
|
|
4900
4916
|
}
|
|
4901
4917
|
}
|
|
4902
4918
|
}
|
|
4903
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4904
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4920
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4905
4921
|
}
|
|
4906
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4907
4923
|
type: Directive,
|
|
4908
4924
|
args: [{
|
|
4909
4925
|
standalone: true,
|
|
@@ -5079,10 +5095,10 @@ class InferMimeTypePipe {
|
|
|
5079
5095
|
constructor() {
|
|
5080
5096
|
this.transform = inferMimeType;
|
|
5081
5097
|
}
|
|
5082
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5083
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5098
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5099
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
5084
5100
|
}
|
|
5085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
5086
5102
|
type: Pipe,
|
|
5087
5103
|
args: [{
|
|
5088
5104
|
name: 'inferMimeType',
|
|
@@ -5128,10 +5144,10 @@ class NormalizeGameResultTypePipe {
|
|
|
5128
5144
|
constructor() {
|
|
5129
5145
|
this.transform = normalizeGameResultType;
|
|
5130
5146
|
}
|
|
5131
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5132
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5147
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5148
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
5133
5149
|
}
|
|
5134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
5135
5151
|
type: Pipe,
|
|
5136
5152
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
5137
5153
|
}] });
|
|
@@ -5159,10 +5175,10 @@ class NormalizeMatchStatePipe {
|
|
|
5159
5175
|
constructor() {
|
|
5160
5176
|
this.transform = normalizeMatchState;
|
|
5161
5177
|
}
|
|
5162
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5163
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5178
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5179
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
5164
5180
|
}
|
|
5165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
5166
5182
|
type: Pipe,
|
|
5167
5183
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
5168
5184
|
}] });
|
|
@@ -5217,10 +5233,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
5217
5233
|
constructor() {
|
|
5218
5234
|
this.transform = normalizeMatchParticipants;
|
|
5219
5235
|
}
|
|
5220
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5221
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5237
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
5222
5238
|
}
|
|
5223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
5224
5240
|
type: Pipe,
|
|
5225
5241
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
5226
5242
|
}] });
|
|
@@ -5354,10 +5370,10 @@ class NormalizeMatchScorePipe {
|
|
|
5354
5370
|
constructor() {
|
|
5355
5371
|
this.transform = normalizeMatchScore;
|
|
5356
5372
|
}
|
|
5357
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5358
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5373
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5374
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
5359
5375
|
}
|
|
5360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
5361
5377
|
type: Pipe,
|
|
5362
5378
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
5363
5379
|
}] });
|
|
@@ -5404,10 +5420,10 @@ class NormalizeMatchTypePipe {
|
|
|
5404
5420
|
constructor() {
|
|
5405
5421
|
this.transform = normalizeMatchType;
|
|
5406
5422
|
}
|
|
5407
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5408
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5423
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5424
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
5409
5425
|
}
|
|
5410
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
5411
5427
|
type: Pipe,
|
|
5412
5428
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
5413
5429
|
}] });
|
|
@@ -5421,10 +5437,10 @@ class ToArrayPipe {
|
|
|
5421
5437
|
constructor() {
|
|
5422
5438
|
this.transform = toArray;
|
|
5423
5439
|
}
|
|
5424
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5425
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
5440
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5441
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
5426
5442
|
}
|
|
5427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
5428
5444
|
type: Pipe,
|
|
5429
5445
|
args: [{ name: 'toArray', standalone: true }]
|
|
5430
5446
|
}] });
|
|
@@ -5642,10 +5658,10 @@ class PropsDirective {
|
|
|
5642
5658
|
});
|
|
5643
5659
|
});
|
|
5644
5660
|
}
|
|
5645
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5646
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.
|
|
5661
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5662
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.9", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5647
5663
|
}
|
|
5648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5649
5665
|
type: Directive,
|
|
5650
5666
|
args: [{
|
|
5651
5667
|
selector: '[etProps]',
|
|
@@ -5778,5 +5794,5 @@ const Validators = {
|
|
|
5778
5794
|
* Generated bundle index. Do not edit.
|
|
5779
5795
|
*/
|
|
5780
5796
|
|
|
5781
|
-
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, bindProps, buildSignalEffects, clamp, clone, cloneFormGroup, computedTillFalsy, computedTillTruthy, controlValueSignal, controlValueSignalWithPrevious, createCanAnimateSignal, createComponentId, createDependencyStash, createDestroy, createElementDictionary, createFlipAnimation, createFlipAnimationGroup, createHostProps, createIsRenderedSignal, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deferredSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getElementVisibleStates, 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 };
|
|
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, getElementVisibleStates, 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 };
|
|
5782
5798
|
//# sourceMappingURL=ethlete-core.mjs.map
|