@ethlete/core 4.23.3 → 4.23.5
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/selection-model.utils.mjs +4 -1
- package/esm2022/lib/utils/signal.utils.mjs +16 -4
- package/fesm2022/ethlete-core.mjs +141 -126
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/utils/signal.utils.d.ts +9 -1
- package/package.json +1 -1
|
@@ -30,10 +30,10 @@ class StructuredDataComponent {
|
|
|
30
30
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
31
31
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
32
32
|
}
|
|
33
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
34
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.
|
|
33
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
34
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.6", 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 }); }
|
|
35
35
|
}
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
37
37
|
type: Component,
|
|
38
38
|
args: [{
|
|
39
39
|
selector: 'et-structured-data',
|
|
@@ -1242,6 +1242,9 @@ class SelectionModel {
|
|
|
1242
1242
|
if (selection) {
|
|
1243
1243
|
this.setSelection(selection);
|
|
1244
1244
|
}
|
|
1245
|
+
else {
|
|
1246
|
+
this.clearSelectedOptions();
|
|
1247
|
+
}
|
|
1245
1248
|
}
|
|
1246
1249
|
}
|
|
1247
1250
|
setSelectionFromValue$(value) {
|
|
@@ -1513,10 +1516,10 @@ class ClickObserverFactory {
|
|
|
1513
1516
|
create() {
|
|
1514
1517
|
return fromEvent(document, 'click');
|
|
1515
1518
|
}
|
|
1516
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1517
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1519
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1520
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1518
1521
|
}
|
|
1519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1520
1523
|
type: Injectable,
|
|
1521
1524
|
args: [{ providedIn: 'root' }]
|
|
1522
1525
|
}] });
|
|
@@ -1569,10 +1572,10 @@ class ClickObserverService {
|
|
|
1569
1572
|
this._observedElements.delete(element);
|
|
1570
1573
|
}
|
|
1571
1574
|
}
|
|
1572
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1573
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1574
1577
|
}
|
|
1575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1576
1579
|
type: Injectable,
|
|
1577
1580
|
args: [{ providedIn: 'root' }]
|
|
1578
1581
|
}] });
|
|
@@ -1582,10 +1585,10 @@ class MutationObserverFactory {
|
|
|
1582
1585
|
create(callback) {
|
|
1583
1586
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1584
1587
|
}
|
|
1585
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1586
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1588
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1589
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1587
1590
|
}
|
|
1588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1589
1592
|
type: Injectable,
|
|
1590
1593
|
args: [{ providedIn: 'root' }]
|
|
1591
1594
|
}] });
|
|
@@ -1644,10 +1647,10 @@ class ContentObserverService {
|
|
|
1644
1647
|
this._observedElements.delete(element);
|
|
1645
1648
|
}
|
|
1646
1649
|
}
|
|
1647
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1648
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1650
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1651
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1649
1652
|
}
|
|
1650
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1651
1654
|
type: Injectable,
|
|
1652
1655
|
args: [{ providedIn: 'root' }]
|
|
1653
1656
|
}] });
|
|
@@ -1673,10 +1676,10 @@ class FocusVisibleService {
|
|
|
1673
1676
|
onPointerDown() {
|
|
1674
1677
|
this._hadKeyboardEvent = false;
|
|
1675
1678
|
}
|
|
1676
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1677
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1680
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1678
1681
|
}
|
|
1679
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1680
1683
|
type: Injectable,
|
|
1681
1684
|
args: [{
|
|
1682
1685
|
providedIn: 'root',
|
|
@@ -1688,10 +1691,10 @@ class IntersectionObserverFactory {
|
|
|
1688
1691
|
create(callback) {
|
|
1689
1692
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
1690
1693
|
}
|
|
1691
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1692
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1695
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
1693
1696
|
}
|
|
1694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
1695
1698
|
type: Injectable,
|
|
1696
1699
|
args: [{ providedIn: 'root' }]
|
|
1697
1700
|
}] });
|
|
@@ -1746,10 +1749,10 @@ class IntersectionObserverService {
|
|
|
1746
1749
|
this._observedElements.delete(element);
|
|
1747
1750
|
}
|
|
1748
1751
|
}
|
|
1749
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1750
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1752
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1753
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
1751
1754
|
}
|
|
1752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
1753
1756
|
type: Injectable,
|
|
1754
1757
|
args: [{ providedIn: 'root' }]
|
|
1755
1758
|
}] });
|
|
@@ -1759,10 +1762,10 @@ class ResizeObserverFactory {
|
|
|
1759
1762
|
create(callback) {
|
|
1760
1763
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1761
1764
|
}
|
|
1762
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1763
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1765
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1766
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1764
1767
|
}
|
|
1765
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1768
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1766
1769
|
type: Injectable,
|
|
1767
1770
|
args: [{ providedIn: 'root' }]
|
|
1768
1771
|
}] });
|
|
@@ -1817,10 +1820,10 @@ class ResizeObserverService {
|
|
|
1817
1820
|
this._observedElements.delete(element);
|
|
1818
1821
|
}
|
|
1819
1822
|
}
|
|
1820
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
1821
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1824
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1822
1825
|
}
|
|
1823
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1824
1827
|
type: Injectable,
|
|
1825
1828
|
args: [{ providedIn: 'root' }]
|
|
1826
1829
|
}] });
|
|
@@ -2015,10 +2018,10 @@ class RouterStateService {
|
|
|
2015
2018
|
fragment,
|
|
2016
2019
|
};
|
|
2017
2020
|
}
|
|
2018
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
2019
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
2021
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2022
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2020
2023
|
}
|
|
2021
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2022
2025
|
type: Injectable,
|
|
2023
2026
|
args: [{
|
|
2024
2027
|
providedIn: 'root',
|
|
@@ -2234,8 +2237,8 @@ class ViewportService {
|
|
|
2234
2237
|
}
|
|
2235
2238
|
return 'xs';
|
|
2236
2239
|
}
|
|
2237
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
2238
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
2240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2241
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2239
2242
|
}
|
|
2240
2243
|
__decorate([
|
|
2241
2244
|
Memo(),
|
|
@@ -2253,7 +2256,7 @@ __decorate([
|
|
|
2253
2256
|
__metadata("design:paramtypes", [Object]),
|
|
2254
2257
|
__metadata("design:returntype", void 0)
|
|
2255
2258
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2256
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
2259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ViewportService, decorators: [{
|
|
2257
2260
|
type: Injectable,
|
|
2258
2261
|
args: [{
|
|
2259
2262
|
providedIn: 'root',
|
|
@@ -2763,9 +2766,21 @@ const previousSignalValue = (signal) => {
|
|
|
2763
2766
|
const obs = toObservable(signal).pipe(pairwise(), map(([prev]) => prev));
|
|
2764
2767
|
return toSignal(obs);
|
|
2765
2768
|
};
|
|
2766
|
-
const syncSignal = (from, to) => {
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
+
const syncSignal = (from, to, options) => {
|
|
2770
|
+
let isFirstRun = options?.skipSyncRead ? false : true;
|
|
2771
|
+
if (!options?.skipSyncRead) {
|
|
2772
|
+
try {
|
|
2773
|
+
// this might throw if the signal is not yet initialized (eg. a required signal input inside the constructor)
|
|
2774
|
+
// in that case we just skip the initial sync
|
|
2775
|
+
to.set(from());
|
|
2776
|
+
}
|
|
2777
|
+
catch {
|
|
2778
|
+
isFirstRun = false;
|
|
2779
|
+
if (isDevMode()) {
|
|
2780
|
+
console.warn('Failed to sync signals. The target signal is not yet initialized.', { from, to });
|
|
2781
|
+
}
|
|
2782
|
+
}
|
|
2783
|
+
}
|
|
2769
2784
|
const ref = effect(() => {
|
|
2770
2785
|
const formVal = from();
|
|
2771
2786
|
if (isFirstRun) {
|
|
@@ -3446,15 +3461,15 @@ class AnimatableDirective {
|
|
|
3446
3461
|
.subscribe();
|
|
3447
3462
|
}
|
|
3448
3463
|
}
|
|
3449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
3450
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
3464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3465
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
3451
3466
|
{
|
|
3452
3467
|
provide: ANIMATABLE_TOKEN,
|
|
3453
3468
|
useExisting: AnimatableDirective,
|
|
3454
3469
|
},
|
|
3455
3470
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
3456
3471
|
}
|
|
3457
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
3472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
3458
3473
|
type: Directive,
|
|
3459
3474
|
args: [{
|
|
3460
3475
|
selector: '[etAnimatable]',
|
|
@@ -3577,15 +3592,15 @@ class AnimatedLifecycleDirective {
|
|
|
3577
3592
|
_forceState(state) {
|
|
3578
3593
|
this._state$.next(state);
|
|
3579
3594
|
}
|
|
3580
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
3581
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.
|
|
3595
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3596
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.6", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
3582
3597
|
{
|
|
3583
3598
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
3584
3599
|
useExisting: AnimatedLifecycleDirective,
|
|
3585
3600
|
},
|
|
3586
3601
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
3587
3602
|
}
|
|
3588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
3603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
3589
3604
|
type: Directive,
|
|
3590
3605
|
args: [{
|
|
3591
3606
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -3622,15 +3637,15 @@ class AnimatedIfDirective {
|
|
|
3622
3637
|
.subscribe();
|
|
3623
3638
|
}
|
|
3624
3639
|
}
|
|
3625
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
3626
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
3640
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3641
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
3627
3642
|
{
|
|
3628
3643
|
provide: ANIMATED_IF_TOKEN,
|
|
3629
3644
|
useExisting: AnimatedIfDirective,
|
|
3630
3645
|
},
|
|
3631
3646
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
3632
3647
|
}
|
|
3633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
3648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
3634
3649
|
type: Directive,
|
|
3635
3650
|
args: [{
|
|
3636
3651
|
selector: '[etAnimatedIf]',
|
|
@@ -3660,15 +3675,15 @@ class RootBoundaryDirective {
|
|
|
3660
3675
|
set boundaryElement(v) {
|
|
3661
3676
|
this._boundaryElement = v;
|
|
3662
3677
|
}
|
|
3663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
3664
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
3678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3679
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3665
3680
|
{
|
|
3666
3681
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3667
3682
|
useExisting: RootBoundaryDirective,
|
|
3668
3683
|
},
|
|
3669
3684
|
], ngImport: i0 }); }
|
|
3670
3685
|
}
|
|
3671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
3686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3672
3687
|
type: Directive,
|
|
3673
3688
|
args: [{
|
|
3674
3689
|
selector: '[etRootBoundary]',
|
|
@@ -3980,10 +3995,10 @@ class AnimatedOverlayDirective {
|
|
|
3980
3995
|
this._isUnmounting$.next(false);
|
|
3981
3996
|
this._afterClosed?.next();
|
|
3982
3997
|
}
|
|
3983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
3984
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
3998
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3999
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: ["autoResize", "autoResize", booleanAttribute], shift: ["shift", "shift", booleanAttribute], autoHide: ["autoHide", "autoHide", booleanAttribute], autoCloseIfReferenceHidden: ["autoCloseIfReferenceHidden", "autoCloseIfReferenceHidden", booleanAttribute], referenceElement: "referenceElement" }, host: { classAttribute: "et-animated-overlay" }, ngImport: i0 }); }
|
|
3985
4000
|
}
|
|
3986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4001
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3987
4002
|
type: Directive,
|
|
3988
4003
|
args: [{
|
|
3989
4004
|
standalone: true,
|
|
@@ -4038,10 +4053,10 @@ class ClickOutsideDirective {
|
|
|
4038
4053
|
ngOnDestroy() {
|
|
4039
4054
|
this._subscription?.unsubscribe();
|
|
4040
4055
|
}
|
|
4041
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4042
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4056
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4057
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
4043
4058
|
}
|
|
4044
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4059
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
4045
4060
|
type: Directive,
|
|
4046
4061
|
args: [{
|
|
4047
4062
|
selector: '[etClickOutside]',
|
|
@@ -4195,10 +4210,10 @@ class CursorDragScrollDirective {
|
|
|
4195
4210
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
4196
4211
|
}
|
|
4197
4212
|
}
|
|
4198
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4199
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4214
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
4200
4215
|
}
|
|
4201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
4202
4217
|
type: Directive,
|
|
4203
4218
|
args: [{
|
|
4204
4219
|
selector: '[etCursorDragScroll]',
|
|
@@ -4231,15 +4246,15 @@ class DebugDirective {
|
|
|
4231
4246
|
set sDebug(value) {
|
|
4232
4247
|
this._debug.set(value);
|
|
4233
4248
|
}
|
|
4234
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4235
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4250
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
4236
4251
|
{
|
|
4237
4252
|
provide: DEBUG_TOKEN,
|
|
4238
4253
|
useExisting: DebugDirective,
|
|
4239
4254
|
},
|
|
4240
4255
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
4241
4256
|
}
|
|
4242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DebugDirective, decorators: [{
|
|
4243
4258
|
type: Directive,
|
|
4244
4259
|
args: [{
|
|
4245
4260
|
selector: '[etDebug]',
|
|
@@ -4286,15 +4301,15 @@ class DelayableDirective {
|
|
|
4286
4301
|
}
|
|
4287
4302
|
this._isDelayed$.next(val);
|
|
4288
4303
|
}
|
|
4289
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4290
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4305
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
4291
4306
|
{
|
|
4292
4307
|
provide: DELAYABLE_TOKEN,
|
|
4293
4308
|
useExisting: DelayableDirective,
|
|
4294
4309
|
},
|
|
4295
4310
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
4296
4311
|
}
|
|
4297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
4298
4313
|
type: Directive,
|
|
4299
4314
|
args: [{
|
|
4300
4315
|
selector: '[etDelayable]',
|
|
@@ -4315,15 +4330,15 @@ class IsActiveElementDirective {
|
|
|
4315
4330
|
this.elementRef = inject(ElementRef);
|
|
4316
4331
|
this.isActiveElement = false;
|
|
4317
4332
|
}
|
|
4318
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4319
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4334
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
4320
4335
|
{
|
|
4321
4336
|
provide: IS_ACTIVE_ELEMENT,
|
|
4322
4337
|
useExisting: IsActiveElementDirective,
|
|
4323
4338
|
},
|
|
4324
4339
|
], ngImport: i0 }); }
|
|
4325
4340
|
}
|
|
4326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
4327
4342
|
type: Directive,
|
|
4328
4343
|
args: [{
|
|
4329
4344
|
selector: '[etIsActiveElement]',
|
|
@@ -4346,15 +4361,15 @@ class IsElementDirective {
|
|
|
4346
4361
|
this.elementRef = inject(ElementRef);
|
|
4347
4362
|
this.isElement = false;
|
|
4348
4363
|
}
|
|
4349
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4350
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4364
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4365
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
4351
4366
|
{
|
|
4352
4367
|
provide: IS_ELEMENT,
|
|
4353
4368
|
useExisting: IsElementDirective,
|
|
4354
4369
|
},
|
|
4355
4370
|
], ngImport: i0 }); }
|
|
4356
4371
|
}
|
|
4357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
4358
4373
|
type: Directive,
|
|
4359
4374
|
args: [{
|
|
4360
4375
|
selector: '[etIsElement]',
|
|
@@ -4404,10 +4419,10 @@ class LetDirective {
|
|
|
4404
4419
|
}
|
|
4405
4420
|
}
|
|
4406
4421
|
}
|
|
4407
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4408
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4423
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
4409
4424
|
}
|
|
4410
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: LetDirective, decorators: [{
|
|
4411
4426
|
type: Directive,
|
|
4412
4427
|
args: [{
|
|
4413
4428
|
selector: '[etLet]',
|
|
@@ -4464,10 +4479,10 @@ class ObserveContentDirective {
|
|
|
4464
4479
|
_unsubscribe() {
|
|
4465
4480
|
this._currentSubscription?.unsubscribe();
|
|
4466
4481
|
}
|
|
4467
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4468
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4483
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
4469
4484
|
}
|
|
4470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
4471
4486
|
type: Directive,
|
|
4472
4487
|
args: [{
|
|
4473
4488
|
selector: '[etObserveContent]',
|
|
@@ -4532,10 +4547,10 @@ class ObserveResizeDirective {
|
|
|
4532
4547
|
_unsubscribe() {
|
|
4533
4548
|
this._currentSubscription?.unsubscribe();
|
|
4534
4549
|
}
|
|
4535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4536
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4551
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
4537
4552
|
}
|
|
4538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
4539
4554
|
type: Directive,
|
|
4540
4555
|
args: [{
|
|
4541
4556
|
selector: '[etObserveResize]',
|
|
@@ -4560,10 +4575,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
4560
4575
|
constructor() {
|
|
4561
4576
|
this.isFirstElement = false;
|
|
4562
4577
|
}
|
|
4563
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4564
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4579
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
4565
4580
|
}
|
|
4566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
4567
4582
|
type: Directive,
|
|
4568
4583
|
args: [{
|
|
4569
4584
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -4579,10 +4594,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.5", ngImpor
|
|
|
4579
4594
|
|
|
4580
4595
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
4581
4596
|
class ScrollObserverIgnoreTargetDirective {
|
|
4582
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4583
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4598
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
4584
4599
|
}
|
|
4585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
4586
4601
|
type: Directive,
|
|
4587
4602
|
args: [{
|
|
4588
4603
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -4598,10 +4613,10 @@ class ScrollObserverLastElementDirective {
|
|
|
4598
4613
|
constructor() {
|
|
4599
4614
|
this.isLastElement = false;
|
|
4600
4615
|
}
|
|
4601
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4602
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4617
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", 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 }); }
|
|
4603
4618
|
}
|
|
4604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
4605
4620
|
type: Directive,
|
|
4606
4621
|
args: [{
|
|
4607
4622
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4758,15 +4773,15 @@ class ObserveScrollStateDirective {
|
|
|
4758
4773
|
}
|
|
4759
4774
|
return element;
|
|
4760
4775
|
}
|
|
4761
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4762
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.
|
|
4776
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4777
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.6", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4763
4778
|
{
|
|
4764
4779
|
provide: OBSERVE_SCROLL_STATE,
|
|
4765
4780
|
useExisting: ObserveScrollStateDirective,
|
|
4766
4781
|
},
|
|
4767
4782
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4768
4783
|
}
|
|
4769
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4770
4785
|
type: Directive,
|
|
4771
4786
|
args: [{
|
|
4772
4787
|
selector: '[etObserveScrollState]',
|
|
@@ -4836,15 +4851,15 @@ class ObserveVisibilityDirective {
|
|
|
4836
4851
|
}))
|
|
4837
4852
|
.subscribe();
|
|
4838
4853
|
}
|
|
4839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4840
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4854
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4855
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4841
4856
|
{
|
|
4842
4857
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4843
4858
|
useExisting: ObserveVisibilityDirective,
|
|
4844
4859
|
},
|
|
4845
4860
|
], ngImport: i0 }); }
|
|
4846
4861
|
}
|
|
4847
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4848
4863
|
type: Directive,
|
|
4849
4864
|
args: [{
|
|
4850
4865
|
selector: '[etObserveVisibility]',
|
|
@@ -4882,10 +4897,10 @@ class RepeatDirective {
|
|
|
4882
4897
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4883
4898
|
}
|
|
4884
4899
|
}
|
|
4885
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
4886
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
4900
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4901
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4887
4902
|
}
|
|
4888
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
4903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4889
4904
|
type: Directive,
|
|
4890
4905
|
args: [{
|
|
4891
4906
|
selector: '[etRepeat]',
|
|
@@ -5054,10 +5069,10 @@ class SeoDirective {
|
|
|
5054
5069
|
}
|
|
5055
5070
|
}
|
|
5056
5071
|
}
|
|
5057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5058
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
5072
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5073
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
5059
5074
|
}
|
|
5060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: SeoDirective, decorators: [{
|
|
5061
5076
|
type: Directive,
|
|
5062
5077
|
args: [{
|
|
5063
5078
|
standalone: true,
|
|
@@ -5233,10 +5248,10 @@ class InferMimeTypePipe {
|
|
|
5233
5248
|
constructor() {
|
|
5234
5249
|
this.transform = inferMimeType;
|
|
5235
5250
|
}
|
|
5236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5237
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5252
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
5238
5253
|
}
|
|
5239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
5240
5255
|
type: Pipe,
|
|
5241
5256
|
args: [{
|
|
5242
5257
|
name: 'inferMimeType',
|
|
@@ -5282,10 +5297,10 @@ class NormalizeGameResultTypePipe {
|
|
|
5282
5297
|
constructor() {
|
|
5283
5298
|
this.transform = normalizeGameResultType;
|
|
5284
5299
|
}
|
|
5285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5286
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5301
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
5287
5302
|
}
|
|
5288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
5289
5304
|
type: Pipe,
|
|
5290
5305
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
5291
5306
|
}] });
|
|
@@ -5313,10 +5328,10 @@ class NormalizeMatchStatePipe {
|
|
|
5313
5328
|
constructor() {
|
|
5314
5329
|
this.transform = normalizeMatchState;
|
|
5315
5330
|
}
|
|
5316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5317
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5331
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5332
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
5318
5333
|
}
|
|
5319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
5320
5335
|
type: Pipe,
|
|
5321
5336
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
5322
5337
|
}] });
|
|
@@ -5371,10 +5386,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
5371
5386
|
constructor() {
|
|
5372
5387
|
this.transform = normalizeMatchParticipants;
|
|
5373
5388
|
}
|
|
5374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5375
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5389
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5390
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
5376
5391
|
}
|
|
5377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
5378
5393
|
type: Pipe,
|
|
5379
5394
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
5380
5395
|
}] });
|
|
@@ -5508,10 +5523,10 @@ class NormalizeMatchScorePipe {
|
|
|
5508
5523
|
constructor() {
|
|
5509
5524
|
this.transform = normalizeMatchScore;
|
|
5510
5525
|
}
|
|
5511
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5512
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5526
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5527
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
5513
5528
|
}
|
|
5514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
5515
5530
|
type: Pipe,
|
|
5516
5531
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
5517
5532
|
}] });
|
|
@@ -5558,10 +5573,10 @@ class NormalizeMatchTypePipe {
|
|
|
5558
5573
|
constructor() {
|
|
5559
5574
|
this.transform = normalizeMatchType;
|
|
5560
5575
|
}
|
|
5561
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5562
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5576
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5577
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
5563
5578
|
}
|
|
5564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
5565
5580
|
type: Pipe,
|
|
5566
5581
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
5567
5582
|
}] });
|
|
@@ -5575,10 +5590,10 @@ class ToArrayPipe {
|
|
|
5575
5590
|
constructor() {
|
|
5576
5591
|
this.transform = toArray;
|
|
5577
5592
|
}
|
|
5578
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5579
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.
|
|
5593
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5594
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
5580
5595
|
}
|
|
5581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
5582
5597
|
type: Pipe,
|
|
5583
5598
|
args: [{ name: 'toArray', standalone: true }]
|
|
5584
5599
|
}] });
|
|
@@ -5800,10 +5815,10 @@ class PropsDirective {
|
|
|
5800
5815
|
});
|
|
5801
5816
|
});
|
|
5802
5817
|
}
|
|
5803
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
5804
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.
|
|
5818
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5819
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.6", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5805
5820
|
}
|
|
5806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
5821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5807
5822
|
type: Directive,
|
|
5808
5823
|
args: [{
|
|
5809
5824
|
selector: '[etProps]',
|