@ethlete/core 4.25.1 → 4.26.0
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 +6 -0
- package/fesm2022/ethlete-core.mjs +184 -141
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/utils/signal.utils.d.ts +14 -0
- package/package.json +8 -8
|
@@ -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: "19.
|
|
34
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
33
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
34
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
35
35
|
}
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
37
37
|
type: Component,
|
|
38
38
|
args: [{
|
|
39
39
|
selector: 'et-structured-data',
|
|
@@ -734,10 +734,10 @@ class ClickObserverFactory {
|
|
|
734
734
|
create() {
|
|
735
735
|
return fromEvent(document, 'click');
|
|
736
736
|
}
|
|
737
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
738
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
739
739
|
}
|
|
740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
741
741
|
type: Injectable,
|
|
742
742
|
args: [{ providedIn: 'root' }]
|
|
743
743
|
}] });
|
|
@@ -790,10 +790,10 @@ class ClickObserverService {
|
|
|
790
790
|
this._observedElements.delete(element);
|
|
791
791
|
}
|
|
792
792
|
}
|
|
793
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
794
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
794
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
795
795
|
}
|
|
796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
797
797
|
type: Injectable,
|
|
798
798
|
args: [{ providedIn: 'root' }]
|
|
799
799
|
}] });
|
|
@@ -803,10 +803,10 @@ class MutationObserverFactory {
|
|
|
803
803
|
create(callback) {
|
|
804
804
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
805
805
|
}
|
|
806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
807
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
806
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
807
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
808
808
|
}
|
|
809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
810
810
|
type: Injectable,
|
|
811
811
|
args: [{ providedIn: 'root' }]
|
|
812
812
|
}] });
|
|
@@ -865,10 +865,10 @@ class ContentObserverService {
|
|
|
865
865
|
this._observedElements.delete(element);
|
|
866
866
|
}
|
|
867
867
|
}
|
|
868
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
869
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
868
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
869
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
870
870
|
}
|
|
871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
872
872
|
type: Injectable,
|
|
873
873
|
args: [{ providedIn: 'root' }]
|
|
874
874
|
}] });
|
|
@@ -894,10 +894,10 @@ class FocusVisibleService {
|
|
|
894
894
|
onPointerDown() {
|
|
895
895
|
this._hadKeyboardEvent = false;
|
|
896
896
|
}
|
|
897
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
898
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
897
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
898
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
899
899
|
}
|
|
900
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
900
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
901
901
|
type: Injectable,
|
|
902
902
|
args: [{
|
|
903
903
|
providedIn: 'root',
|
|
@@ -909,10 +909,10 @@ class IntersectionObserverFactory {
|
|
|
909
909
|
create(callback) {
|
|
910
910
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
911
911
|
}
|
|
912
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
913
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
912
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
913
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
914
914
|
}
|
|
915
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
915
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
916
916
|
type: Injectable,
|
|
917
917
|
args: [{ providedIn: 'root' }]
|
|
918
918
|
}] });
|
|
@@ -967,10 +967,10 @@ class IntersectionObserverService {
|
|
|
967
967
|
this._observedElements.delete(element);
|
|
968
968
|
}
|
|
969
969
|
}
|
|
970
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
971
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
971
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
972
972
|
}
|
|
973
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
973
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
974
974
|
type: Injectable,
|
|
975
975
|
args: [{ providedIn: 'root' }]
|
|
976
976
|
}] });
|
|
@@ -980,10 +980,10 @@ class ResizeObserverFactory {
|
|
|
980
980
|
create(callback) {
|
|
981
981
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
982
982
|
}
|
|
983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
984
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
984
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
985
985
|
}
|
|
986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
987
987
|
type: Injectable,
|
|
988
988
|
args: [{ providedIn: 'root' }]
|
|
989
989
|
}] });
|
|
@@ -1038,10 +1038,10 @@ class ResizeObserverService {
|
|
|
1038
1038
|
this._observedElements.delete(element);
|
|
1039
1039
|
}
|
|
1040
1040
|
}
|
|
1041
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1042
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
1041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1042
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1043
1043
|
}
|
|
1044
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1045
1045
|
type: Injectable,
|
|
1046
1046
|
args: [{ providedIn: 'root' }]
|
|
1047
1047
|
}] });
|
|
@@ -1236,10 +1236,10 @@ class RouterStateService {
|
|
|
1236
1236
|
fragment,
|
|
1237
1237
|
};
|
|
1238
1238
|
}
|
|
1239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
1239
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1240
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
1241
1241
|
}
|
|
1242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RouterStateService, decorators: [{
|
|
1243
1243
|
type: Injectable,
|
|
1244
1244
|
args: [{
|
|
1245
1245
|
providedIn: 'root',
|
|
@@ -1455,8 +1455,8 @@ class ViewportService {
|
|
|
1455
1455
|
}
|
|
1456
1456
|
return 'xs';
|
|
1457
1457
|
}
|
|
1458
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1459
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
1458
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1459
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
1460
1460
|
}
|
|
1461
1461
|
__decorate([
|
|
1462
1462
|
Memo(),
|
|
@@ -1474,13 +1474,30 @@ __decorate([
|
|
|
1474
1474
|
__metadata("design:paramtypes", [Object]),
|
|
1475
1475
|
__metadata("design:returntype", void 0)
|
|
1476
1476
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
1477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ViewportService, decorators: [{
|
|
1478
1478
|
type: Injectable,
|
|
1479
1479
|
args: [{
|
|
1480
1480
|
providedIn: 'root',
|
|
1481
1481
|
}]
|
|
1482
1482
|
}], ctorParameters: () => [], propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
|
|
1483
1483
|
|
|
1484
|
+
const createMediaQueryObservable = (query) => {
|
|
1485
|
+
const mq = window.matchMedia(query);
|
|
1486
|
+
const observable = new Observable((observer) => {
|
|
1487
|
+
const eventHandler = (event) => {
|
|
1488
|
+
observer.next(event);
|
|
1489
|
+
};
|
|
1490
|
+
mq.addEventListener('change', eventHandler);
|
|
1491
|
+
return () => {
|
|
1492
|
+
mq.removeEventListener('change', eventHandler);
|
|
1493
|
+
};
|
|
1494
|
+
}).pipe(startWith(mq), map(({ matches }) => ({
|
|
1495
|
+
matches,
|
|
1496
|
+
query,
|
|
1497
|
+
})));
|
|
1498
|
+
return observable;
|
|
1499
|
+
};
|
|
1500
|
+
|
|
1484
1501
|
const elementCanScroll = (element, direction) => {
|
|
1485
1502
|
const { scrollHeight, clientHeight, scrollWidth, clientWidth } = element;
|
|
1486
1503
|
if (direction === 'x') {
|
|
@@ -2630,6 +2647,49 @@ const injectCurrentBreakpoint = () => {
|
|
|
2630
2647
|
initialValue: inject(ViewportService).currentViewport,
|
|
2631
2648
|
});
|
|
2632
2649
|
};
|
|
2650
|
+
/** Inject a signal that indicates if the user is using a portrait display */
|
|
2651
|
+
const injectIsPortrait = () => {
|
|
2652
|
+
const queryResult = toSignal(createMediaQueryObservable('(orientation: portrait)'), { requireSync: true });
|
|
2653
|
+
return computed(() => queryResult()?.matches);
|
|
2654
|
+
};
|
|
2655
|
+
/** Inject a signal that indicates if the user is using a landscape display */
|
|
2656
|
+
const injectIsLandscape = () => {
|
|
2657
|
+
const queryResult = toSignal(createMediaQueryObservable('(orientation: landscape)'), { requireSync: true });
|
|
2658
|
+
return computed(() => queryResult()?.matches);
|
|
2659
|
+
};
|
|
2660
|
+
/** Inject a signal containing the current display orientation */
|
|
2661
|
+
const injectDisplayOrientation = () => {
|
|
2662
|
+
const isPortrait = injectIsPortrait();
|
|
2663
|
+
return computed(() => {
|
|
2664
|
+
if (isPortrait())
|
|
2665
|
+
return 'portrait';
|
|
2666
|
+
return 'landscape';
|
|
2667
|
+
});
|
|
2668
|
+
};
|
|
2669
|
+
/** Inject a signal that indicates if the device has a touch input */
|
|
2670
|
+
const injectHasTouchInput = () => {
|
|
2671
|
+
const queryResult = toSignal(createMediaQueryObservable('(pointer: coarse)'), { requireSync: true });
|
|
2672
|
+
return computed(() => queryResult()?.matches);
|
|
2673
|
+
};
|
|
2674
|
+
/** Inject a signal that indicates if the device has a fine input (mouse or stylus) */
|
|
2675
|
+
const injectHasPrecisionInput = () => {
|
|
2676
|
+
const queryResult = toSignal(createMediaQueryObservable('(pointer: fine)'), { requireSync: true });
|
|
2677
|
+
return computed(() => queryResult()?.matches);
|
|
2678
|
+
};
|
|
2679
|
+
/** Inject a signal containing the current device input type */
|
|
2680
|
+
const injectDeviceInputType = () => {
|
|
2681
|
+
const isTouch = injectHasTouchInput();
|
|
2682
|
+
return computed(() => {
|
|
2683
|
+
if (isTouch())
|
|
2684
|
+
return 'touch';
|
|
2685
|
+
return 'mouse';
|
|
2686
|
+
});
|
|
2687
|
+
};
|
|
2688
|
+
/** Inject a signal containing a boolean value indicating if the user can hover (eg. using a mouse) */
|
|
2689
|
+
const injectCanHover = () => {
|
|
2690
|
+
const queryResult = toSignal(createMediaQueryObservable('(hover: hover)'), { requireSync: true });
|
|
2691
|
+
return computed(() => queryResult()?.matches);
|
|
2692
|
+
};
|
|
2633
2693
|
|
|
2634
2694
|
const DISABLE_LOGGER_PARAM = 'et-logger-quiet';
|
|
2635
2695
|
const createLogger = (config) => {
|
|
@@ -2648,23 +2708,6 @@ const createLogger = (config) => {
|
|
|
2648
2708
|
};
|
|
2649
2709
|
};
|
|
2650
2710
|
|
|
2651
|
-
const createMediaQueryObservable = (query) => {
|
|
2652
|
-
const mq = window.matchMedia(query);
|
|
2653
|
-
const observable = new Observable((observer) => {
|
|
2654
|
-
const eventHandler = (event) => {
|
|
2655
|
-
observer.next(event);
|
|
2656
|
-
};
|
|
2657
|
-
mq.addEventListener('change', eventHandler);
|
|
2658
|
-
return () => {
|
|
2659
|
-
mq.removeEventListener('change', eventHandler);
|
|
2660
|
-
};
|
|
2661
|
-
}).pipe(startWith(mq), map(({ matches }) => ({
|
|
2662
|
-
matches,
|
|
2663
|
-
query,
|
|
2664
|
-
})));
|
|
2665
|
-
return observable;
|
|
2666
|
-
};
|
|
2667
|
-
|
|
2668
2711
|
const createMutationObservable = (config) => {
|
|
2669
2712
|
const elements = Array.isArray(config.elements) ? config.elements : [config.elements];
|
|
2670
2713
|
return new Observable((obs) => {
|
|
@@ -3476,15 +3519,15 @@ class AnimatableDirective {
|
|
|
3476
3519
|
.subscribe();
|
|
3477
3520
|
}
|
|
3478
3521
|
}
|
|
3479
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3480
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
3522
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3523
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
3481
3524
|
{
|
|
3482
3525
|
provide: ANIMATABLE_TOKEN,
|
|
3483
3526
|
useExisting: AnimatableDirective,
|
|
3484
3527
|
},
|
|
3485
3528
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
3486
3529
|
}
|
|
3487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
3488
3531
|
type: Directive,
|
|
3489
3532
|
args: [{
|
|
3490
3533
|
selector: '[etAnimatable]',
|
|
@@ -3607,15 +3650,15 @@ class AnimatedLifecycleDirective {
|
|
|
3607
3650
|
_forceState(state) {
|
|
3608
3651
|
this._state$.next(state);
|
|
3609
3652
|
}
|
|
3610
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3611
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.
|
|
3653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3654
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.0", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChange: "stateChange", skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
3612
3655
|
{
|
|
3613
3656
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
3614
3657
|
useExisting: AnimatedLifecycleDirective,
|
|
3615
3658
|
},
|
|
3616
3659
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
3617
3660
|
}
|
|
3618
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
3619
3662
|
type: Directive,
|
|
3620
3663
|
args: [{
|
|
3621
3664
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -3652,15 +3695,15 @@ class AnimatedIfDirective {
|
|
|
3652
3695
|
.subscribe();
|
|
3653
3696
|
}
|
|
3654
3697
|
}
|
|
3655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3656
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
3698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3699
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
3657
3700
|
{
|
|
3658
3701
|
provide: ANIMATED_IF_TOKEN,
|
|
3659
3702
|
useExisting: AnimatedIfDirective,
|
|
3660
3703
|
},
|
|
3661
3704
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
3662
3705
|
}
|
|
3663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
3664
3707
|
type: Directive,
|
|
3665
3708
|
args: [{
|
|
3666
3709
|
selector: '[etAnimatedIf]',
|
|
@@ -3690,15 +3733,15 @@ class RootBoundaryDirective {
|
|
|
3690
3733
|
set boundaryElement(v) {
|
|
3691
3734
|
this._boundaryElement = v;
|
|
3692
3735
|
}
|
|
3693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3694
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
3736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3737
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3695
3738
|
{
|
|
3696
3739
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3697
3740
|
useExisting: RootBoundaryDirective,
|
|
3698
3741
|
},
|
|
3699
3742
|
], ngImport: i0 }); }
|
|
3700
3743
|
}
|
|
3701
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3702
3745
|
type: Directive,
|
|
3703
3746
|
args: [{
|
|
3704
3747
|
selector: '[etRootBoundary]',
|
|
@@ -4010,10 +4053,10 @@ class AnimatedOverlayDirective {
|
|
|
4010
4053
|
this._isUnmounting$.next(false);
|
|
4011
4054
|
this._afterClosed?.next();
|
|
4012
4055
|
}
|
|
4013
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4014
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4056
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4057
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: ["autoResize", "autoResize", booleanAttribute], shift: ["shift", "shift", booleanAttribute], autoHide: ["autoHide", "autoHide", booleanAttribute], autoCloseIfReferenceHidden: ["autoCloseIfReferenceHidden", "autoCloseIfReferenceHidden", booleanAttribute], referenceElement: "referenceElement" }, host: { classAttribute: "et-animated-overlay" }, ngImport: i0 }); }
|
|
4015
4058
|
}
|
|
4016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4059
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
4017
4060
|
type: Directive,
|
|
4018
4061
|
args: [{
|
|
4019
4062
|
standalone: true,
|
|
@@ -4068,10 +4111,10 @@ class ClickOutsideDirective {
|
|
|
4068
4111
|
ngOnDestroy() {
|
|
4069
4112
|
this._subscription?.unsubscribe();
|
|
4070
4113
|
}
|
|
4071
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4072
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4115
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
4073
4116
|
}
|
|
4074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
4075
4118
|
type: Directive,
|
|
4076
4119
|
args: [{
|
|
4077
4120
|
selector: '[etClickOutside]',
|
|
@@ -4225,10 +4268,10 @@ class CursorDragScrollDirective {
|
|
|
4225
4268
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
4226
4269
|
}
|
|
4227
4270
|
}
|
|
4228
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4229
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4271
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4272
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
4230
4273
|
}
|
|
4231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
4232
4275
|
type: Directive,
|
|
4233
4276
|
args: [{
|
|
4234
4277
|
selector: '[etCursorDragScroll]',
|
|
@@ -4261,15 +4304,15 @@ class DebugDirective {
|
|
|
4261
4304
|
set sDebug(value) {
|
|
4262
4305
|
this._debug.set(value);
|
|
4263
4306
|
}
|
|
4264
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4265
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4307
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4308
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
4266
4309
|
{
|
|
4267
4310
|
provide: DEBUG_TOKEN,
|
|
4268
4311
|
useExisting: DebugDirective,
|
|
4269
4312
|
},
|
|
4270
4313
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
4271
4314
|
}
|
|
4272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DebugDirective, decorators: [{
|
|
4273
4316
|
type: Directive,
|
|
4274
4317
|
args: [{
|
|
4275
4318
|
selector: '[etDebug]',
|
|
@@ -4316,15 +4359,15 @@ class DelayableDirective {
|
|
|
4316
4359
|
}
|
|
4317
4360
|
this._isDelayed$.next(val);
|
|
4318
4361
|
}
|
|
4319
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4320
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4363
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
4321
4364
|
{
|
|
4322
4365
|
provide: DELAYABLE_TOKEN,
|
|
4323
4366
|
useExisting: DelayableDirective,
|
|
4324
4367
|
},
|
|
4325
4368
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
4326
4369
|
}
|
|
4327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
4328
4371
|
type: Directive,
|
|
4329
4372
|
args: [{
|
|
4330
4373
|
selector: '[etDelayable]',
|
|
@@ -4345,15 +4388,15 @@ class IsActiveElementDirective {
|
|
|
4345
4388
|
this.elementRef = inject(ElementRef);
|
|
4346
4389
|
this.isActiveElement = false;
|
|
4347
4390
|
}
|
|
4348
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4349
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4392
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
4350
4393
|
{
|
|
4351
4394
|
provide: IS_ACTIVE_ELEMENT,
|
|
4352
4395
|
useExisting: IsActiveElementDirective,
|
|
4353
4396
|
},
|
|
4354
4397
|
], ngImport: i0 }); }
|
|
4355
4398
|
}
|
|
4356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
4357
4400
|
type: Directive,
|
|
4358
4401
|
args: [{
|
|
4359
4402
|
selector: '[etIsActiveElement]',
|
|
@@ -4376,15 +4419,15 @@ class IsElementDirective {
|
|
|
4376
4419
|
this.elementRef = inject(ElementRef);
|
|
4377
4420
|
this.isElement = false;
|
|
4378
4421
|
}
|
|
4379
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4380
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4423
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
4381
4424
|
{
|
|
4382
4425
|
provide: IS_ELEMENT,
|
|
4383
4426
|
useExisting: IsElementDirective,
|
|
4384
4427
|
},
|
|
4385
4428
|
], ngImport: i0 }); }
|
|
4386
4429
|
}
|
|
4387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
4388
4431
|
type: Directive,
|
|
4389
4432
|
args: [{
|
|
4390
4433
|
selector: '[etIsElement]',
|
|
@@ -4434,10 +4477,10 @@ class LetDirective {
|
|
|
4434
4477
|
}
|
|
4435
4478
|
}
|
|
4436
4479
|
}
|
|
4437
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4438
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4480
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4481
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
4439
4482
|
}
|
|
4440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LetDirective, decorators: [{
|
|
4441
4484
|
type: Directive,
|
|
4442
4485
|
args: [{
|
|
4443
4486
|
selector: '[etLet]',
|
|
@@ -4494,10 +4537,10 @@ class ObserveContentDirective {
|
|
|
4494
4537
|
_unsubscribe() {
|
|
4495
4538
|
this._currentSubscription?.unsubscribe();
|
|
4496
4539
|
}
|
|
4497
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4498
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4541
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
4499
4542
|
}
|
|
4500
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
4501
4544
|
type: Directive,
|
|
4502
4545
|
args: [{
|
|
4503
4546
|
selector: '[etObserveContent]',
|
|
@@ -4562,10 +4605,10 @@ class ObserveResizeDirective {
|
|
|
4562
4605
|
_unsubscribe() {
|
|
4563
4606
|
this._currentSubscription?.unsubscribe();
|
|
4564
4607
|
}
|
|
4565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4566
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4608
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4609
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
4567
4610
|
}
|
|
4568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
4569
4612
|
type: Directive,
|
|
4570
4613
|
args: [{
|
|
4571
4614
|
selector: '[etObserveResize]',
|
|
@@ -4590,10 +4633,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
4590
4633
|
constructor() {
|
|
4591
4634
|
this.isFirstElement = false;
|
|
4592
4635
|
}
|
|
4593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4594
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4636
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4637
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
4595
4638
|
}
|
|
4596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
4597
4640
|
type: Directive,
|
|
4598
4641
|
args: [{
|
|
4599
4642
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -4609,10 +4652,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImpor
|
|
|
4609
4652
|
|
|
4610
4653
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
4611
4654
|
class ScrollObserverIgnoreTargetDirective {
|
|
4612
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4613
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4656
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
4614
4657
|
}
|
|
4615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
4616
4659
|
type: Directive,
|
|
4617
4660
|
args: [{
|
|
4618
4661
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -4628,10 +4671,10 @@ class ScrollObserverLastElementDirective {
|
|
|
4628
4671
|
constructor() {
|
|
4629
4672
|
this.isLastElement = false;
|
|
4630
4673
|
}
|
|
4631
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4632
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4674
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4675
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
|
|
4633
4676
|
}
|
|
4634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
4635
4678
|
type: Directive,
|
|
4636
4679
|
args: [{
|
|
4637
4680
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4788,15 +4831,15 @@ class ObserveScrollStateDirective {
|
|
|
4788
4831
|
}
|
|
4789
4832
|
return element;
|
|
4790
4833
|
}
|
|
4791
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4792
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
4834
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4835
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.0", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4793
4836
|
{
|
|
4794
4837
|
provide: OBSERVE_SCROLL_STATE,
|
|
4795
4838
|
useExisting: ObserveScrollStateDirective,
|
|
4796
4839
|
},
|
|
4797
4840
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4798
4841
|
}
|
|
4799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4800
4843
|
type: Directive,
|
|
4801
4844
|
args: [{
|
|
4802
4845
|
selector: '[etObserveScrollState]',
|
|
@@ -4866,15 +4909,15 @@ class ObserveVisibilityDirective {
|
|
|
4866
4909
|
}))
|
|
4867
4910
|
.subscribe();
|
|
4868
4911
|
}
|
|
4869
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4870
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4912
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4913
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4871
4914
|
{
|
|
4872
4915
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4873
4916
|
useExisting: ObserveVisibilityDirective,
|
|
4874
4917
|
},
|
|
4875
4918
|
], ngImport: i0 }); }
|
|
4876
4919
|
}
|
|
4877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4878
4921
|
type: Directive,
|
|
4879
4922
|
args: [{
|
|
4880
4923
|
selector: '[etObserveVisibility]',
|
|
@@ -4912,10 +4955,10 @@ class RepeatDirective {
|
|
|
4912
4955
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4913
4956
|
}
|
|
4914
4957
|
}
|
|
4915
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4916
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
4958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4959
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4917
4960
|
}
|
|
4918
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4919
4962
|
type: Directive,
|
|
4920
4963
|
args: [{
|
|
4921
4964
|
selector: '[etRepeat]',
|
|
@@ -5084,10 +5127,10 @@ class SeoDirective {
|
|
|
5084
5127
|
}
|
|
5085
5128
|
}
|
|
5086
5129
|
}
|
|
5087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5088
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
5130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5131
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
5089
5132
|
}
|
|
5090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SeoDirective, decorators: [{
|
|
5091
5134
|
type: Directive,
|
|
5092
5135
|
args: [{
|
|
5093
5136
|
standalone: true,
|
|
@@ -5295,10 +5338,10 @@ class InferMimeTypePipe {
|
|
|
5295
5338
|
constructor() {
|
|
5296
5339
|
this.transform = inferMimeType;
|
|
5297
5340
|
}
|
|
5298
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5299
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5342
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
5300
5343
|
}
|
|
5301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
5302
5345
|
type: Pipe,
|
|
5303
5346
|
args: [{
|
|
5304
5347
|
name: 'inferMimeType',
|
|
@@ -5344,10 +5387,10 @@ class NormalizeGameResultTypePipe {
|
|
|
5344
5387
|
constructor() {
|
|
5345
5388
|
this.transform = normalizeGameResultType;
|
|
5346
5389
|
}
|
|
5347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5348
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5391
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
5349
5392
|
}
|
|
5350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
5351
5394
|
type: Pipe,
|
|
5352
5395
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
5353
5396
|
}] });
|
|
@@ -5375,10 +5418,10 @@ class NormalizeMatchStatePipe {
|
|
|
5375
5418
|
constructor() {
|
|
5376
5419
|
this.transform = normalizeMatchState;
|
|
5377
5420
|
}
|
|
5378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5379
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5422
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
5380
5423
|
}
|
|
5381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
5382
5425
|
type: Pipe,
|
|
5383
5426
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
5384
5427
|
}] });
|
|
@@ -5433,10 +5476,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
5433
5476
|
constructor() {
|
|
5434
5477
|
this.transform = normalizeMatchParticipants;
|
|
5435
5478
|
}
|
|
5436
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5437
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5479
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5480
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
5438
5481
|
}
|
|
5439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
5440
5483
|
type: Pipe,
|
|
5441
5484
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
5442
5485
|
}] });
|
|
@@ -5570,10 +5613,10 @@ class NormalizeMatchScorePipe {
|
|
|
5570
5613
|
constructor() {
|
|
5571
5614
|
this.transform = normalizeMatchScore;
|
|
5572
5615
|
}
|
|
5573
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5574
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5617
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
5575
5618
|
}
|
|
5576
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
5577
5620
|
type: Pipe,
|
|
5578
5621
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
5579
5622
|
}] });
|
|
@@ -5620,10 +5663,10 @@ class NormalizeMatchTypePipe {
|
|
|
5620
5663
|
constructor() {
|
|
5621
5664
|
this.transform = normalizeMatchType;
|
|
5622
5665
|
}
|
|
5623
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5624
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5667
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
5625
5668
|
}
|
|
5626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
5627
5670
|
type: Pipe,
|
|
5628
5671
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
5629
5672
|
}] });
|
|
@@ -5637,10 +5680,10 @@ class ToArrayPipe {
|
|
|
5637
5680
|
constructor() {
|
|
5638
5681
|
this.transform = toArray;
|
|
5639
5682
|
}
|
|
5640
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5641
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
5683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5684
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.0", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
5642
5685
|
}
|
|
5643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
5644
5687
|
type: Pipe,
|
|
5645
5688
|
args: [{ name: 'toArray', standalone: true }]
|
|
5646
5689
|
}] });
|
|
@@ -5862,10 +5905,10 @@ class PropsDirective {
|
|
|
5862
5905
|
});
|
|
5863
5906
|
});
|
|
5864
5907
|
}
|
|
5865
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5866
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.
|
|
5908
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5909
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.0", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5867
5910
|
}
|
|
5868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5869
5912
|
type: Directive,
|
|
5870
5913
|
args: [{
|
|
5871
5914
|
selector: '[etProps]',
|
|
@@ -5990,5 +6033,5 @@ const Validators = {
|
|
|
5990
6033
|
* Generated bundle index. Do not edit.
|
|
5991
6034
|
*/
|
|
5992
6035
|
|
|
5993
|
-
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, DISABLE_LOGGER_PARAM, 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, createLogger, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deferredSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getIntersectionInfo, getKnockoutMatchScore, getMatchScoreSubLine, getObjectProperty, hasCookie, inferMimeType, injectBreakpointIsMatched, injectCurrentBreakpoint, injectFragment, injectHostElement, injectIs2Xl, injectIsLg, injectIsMd, injectIsSm, injectIsXl, injectIsXs, injectObserveBreakpoint, injectPathParam, injectPathParamChanges, injectPathParams, injectQueryParam, injectQueryParamChanges, injectQueryParams, injectRoute, injectRouteData, injectRouteDataItem, injectRouteTitle, injectRouterEvent, injectRouterState, injectTemplateRef, injectUrl, 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 };
|
|
6036
|
+
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, DISABLE_LOGGER_PARAM, 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, createLogger, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deferredSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getIntersectionInfo, getKnockoutMatchScore, getMatchScoreSubLine, getObjectProperty, hasCookie, inferMimeType, injectBreakpointIsMatched, injectCanHover, injectCurrentBreakpoint, injectDeviceInputType, injectDisplayOrientation, injectFragment, injectHasPrecisionInput, injectHasTouchInput, injectHostElement, injectIs2Xl, injectIsLandscape, injectIsLg, injectIsMd, injectIsPortrait, injectIsSm, injectIsXl, injectIsXs, injectObserveBreakpoint, injectPathParam, injectPathParamChanges, injectPathParams, injectQueryParam, injectQueryParamChanges, injectQueryParams, injectRoute, injectRouteData, injectRouteDataItem, injectRouteTitle, injectRouterEvent, injectRouterState, injectTemplateRef, injectUrl, 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 };
|
|
5994
6037
|
//# sourceMappingURL=ethlete-core.mjs.map
|