@ethlete/core 4.2.0 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +5 -7
- 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/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/intersection-observer.service.mjs +6 -6
- package/esm2022/lib/services/resize-observer.service.mjs +6 -6
- package/esm2022/lib/services/router-state.service.mjs +3 -3
- package/esm2022/lib/services/viewport.service.mjs +3 -3
- package/esm2022/lib/utils/signal.utils.mjs +27 -24
- package/fesm2022/ethlete-core.mjs +147 -145
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/animated-if/animated-if.directive.d.ts +1 -2
- package/lib/utils/signal.utils.d.ts +5 -5
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal, signal, QueryList, effect, afterNextRender, NgZone, isDevMode, computed, Directive, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe } from '@angular/core';
|
|
2
|
+
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal, signal, QueryList, effect, afterNextRender, NgZone, isDevMode, computed, untracked, Directive, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe } from '@angular/core';
|
|
3
3
|
import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
|
|
4
4
|
import { Subject, BehaviorSubject, takeUntil, of, switchMap, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise, skip, debounceTime, fromEvent, merge, takeWhile, finalize } from 'rxjs';
|
|
5
5
|
import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
|
|
@@ -7,7 +7,6 @@ import { FormGroup, FormArray, FormControl } from '@angular/forms';
|
|
|
7
7
|
import { toSignal, takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
|
|
8
8
|
import { coerceElement, coerceCssPixelValue } from '@angular/cdk/coercion';
|
|
9
9
|
import { supportsScrollBehavior } from '@angular/cdk/platform';
|
|
10
|
-
import * as i1 from '@angular/common';
|
|
11
10
|
import { NgIf, DOCUMENT } from '@angular/common';
|
|
12
11
|
import { Overlay } from '@angular/cdk/overlay';
|
|
13
12
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
@@ -29,10 +28,10 @@ class StructuredDataComponent {
|
|
|
29
28
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
30
29
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
31
30
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.2", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
34
33
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
35
|
type: Component,
|
|
37
36
|
args: [{
|
|
38
37
|
selector: 'et-structured-data',
|
|
@@ -1382,6 +1381,7 @@ function isElementSignal(el) {
|
|
|
1382
1381
|
}
|
|
1383
1382
|
return false;
|
|
1384
1383
|
}
|
|
1384
|
+
const documentElementSignal = () => signal({ currentElement: document.documentElement, previousElement: null });
|
|
1385
1385
|
const buildElementSignal = (el) => {
|
|
1386
1386
|
if (el === null || el === undefined) {
|
|
1387
1387
|
return signal({ currentElement: null, previousElement: null });
|
|
@@ -1616,39 +1616,42 @@ const signalElementScrollState = (el) => {
|
|
|
1616
1616
|
});
|
|
1617
1617
|
};
|
|
1618
1618
|
const signalHostElementScrollState = () => signalElementScrollState(inject(ElementRef));
|
|
1619
|
-
const signalElementIntersection = (el,
|
|
1619
|
+
const signalElementIntersection = (el, options) => {
|
|
1620
1620
|
const destroyRef = inject(DestroyRef);
|
|
1621
1621
|
const elements = buildElementSignal(el);
|
|
1622
|
-
const
|
|
1622
|
+
const root = options?.root ? buildElementSignal(options?.root) : documentElementSignal();
|
|
1623
1623
|
const zone = inject(NgZone);
|
|
1624
1624
|
const isRendered = signalIsRendered();
|
|
1625
|
-
const
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1625
|
+
const elementIntersectionSignal = signal(null);
|
|
1626
|
+
const observer = signal(null);
|
|
1627
|
+
effect(() => {
|
|
1628
|
+
const rootEl = root().currentElement;
|
|
1629
|
+
untracked(() => observer()?.disconnect());
|
|
1630
|
+
const newObserver = new IntersectionObserver((e) => {
|
|
1631
|
+
if (!isRendered())
|
|
1632
|
+
return;
|
|
1633
|
+
const entry = e[0];
|
|
1634
|
+
if (entry) {
|
|
1635
|
+
zone.run(() => elementIntersectionSignal.set(entry));
|
|
1636
|
+
}
|
|
1637
|
+
}, { ...options, root: rootEl });
|
|
1638
|
+
observer.set(newObserver);
|
|
1639
|
+
}, { allowSignalWrites: true });
|
|
1638
1640
|
effect(() => {
|
|
1639
1641
|
const els = elements();
|
|
1640
|
-
|
|
1642
|
+
const obs = observer();
|
|
1643
|
+
elementIntersectionSignal.set(null);
|
|
1641
1644
|
if (els.previousElement) {
|
|
1642
|
-
|
|
1645
|
+
obs?.disconnect();
|
|
1643
1646
|
}
|
|
1644
1647
|
if (els.currentElement) {
|
|
1645
|
-
|
|
1648
|
+
obs?.observe(els.currentElement);
|
|
1646
1649
|
}
|
|
1647
1650
|
}, { allowSignalWrites: true });
|
|
1648
|
-
destroyRef.onDestroy(() => observer
|
|
1649
|
-
return elementIntersectionSignal
|
|
1651
|
+
destroyRef.onDestroy(() => observer()?.disconnect());
|
|
1652
|
+
return elementIntersectionSignal;
|
|
1650
1653
|
};
|
|
1651
|
-
const signalHostElementIntersection = (
|
|
1654
|
+
const signalHostElementIntersection = (options) => signalElementIntersection(inject(ElementRef), options);
|
|
1652
1655
|
|
|
1653
1656
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1654
1657
|
let _uniqueIdCounter = 0;
|
|
@@ -1850,15 +1853,15 @@ class AnimatableDirective {
|
|
|
1850
1853
|
.subscribe();
|
|
1851
1854
|
}
|
|
1852
1855
|
}
|
|
1853
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
1854
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
1856
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1857
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1855
1858
|
{
|
|
1856
1859
|
provide: ANIMATABLE_TOKEN,
|
|
1857
1860
|
useExisting: AnimatableDirective,
|
|
1858
1861
|
},
|
|
1859
1862
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1860
1863
|
}
|
|
1861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
1864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1862
1865
|
type: Directive,
|
|
1863
1866
|
args: [{
|
|
1864
1867
|
selector: '[etAnimatable]',
|
|
@@ -1978,15 +1981,15 @@ class AnimatedLifecycleDirective {
|
|
|
1978
1981
|
_forceState(state) {
|
|
1979
1982
|
this._state$.next(state);
|
|
1980
1983
|
}
|
|
1981
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
1982
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
1984
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1985
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1983
1986
|
{
|
|
1984
1987
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1985
1988
|
useExisting: AnimatedLifecycleDirective,
|
|
1986
1989
|
},
|
|
1987
1990
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1988
1991
|
}
|
|
1989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
1992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1990
1993
|
type: Directive,
|
|
1991
1994
|
args: [{
|
|
1992
1995
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -2023,15 +2026,15 @@ class AnimatedIfDirective {
|
|
|
2023
2026
|
.subscribe();
|
|
2024
2027
|
}
|
|
2025
2028
|
}
|
|
2026
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2027
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
2029
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2030
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
2028
2031
|
{
|
|
2029
2032
|
provide: ANIMATED_IF_TOKEN,
|
|
2030
2033
|
useExisting: AnimatedIfDirective,
|
|
2031
2034
|
},
|
|
2032
|
-
],
|
|
2035
|
+
], ngImport: i0 }); }
|
|
2033
2036
|
}
|
|
2034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
2035
2038
|
type: Directive,
|
|
2036
2039
|
args: [{
|
|
2037
2040
|
selector: '[etAnimatedIf]',
|
|
@@ -2042,7 +2045,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImpor
|
|
|
2042
2045
|
useExisting: AnimatedIfDirective,
|
|
2043
2046
|
},
|
|
2044
2047
|
],
|
|
2045
|
-
hostDirectives: [NgIf],
|
|
2046
2048
|
}]
|
|
2047
2049
|
}], propDecorators: { shouldRender: [{
|
|
2048
2050
|
type: Input,
|
|
@@ -2054,10 +2056,10 @@ class ClickObserverFactory {
|
|
|
2054
2056
|
create() {
|
|
2055
2057
|
return fromEvent(document, 'click');
|
|
2056
2058
|
}
|
|
2057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2059
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2060
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
2059
2061
|
}
|
|
2060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
2061
2063
|
type: Injectable,
|
|
2062
2064
|
args: [{ providedIn: 'root' }]
|
|
2063
2065
|
}] });
|
|
@@ -2110,10 +2112,10 @@ class ClickObserverService {
|
|
|
2110
2112
|
this._observedElements.delete(element);
|
|
2111
2113
|
}
|
|
2112
2114
|
}
|
|
2113
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2114
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2115
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2116
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
2115
2117
|
}
|
|
2116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
2117
2119
|
type: Injectable,
|
|
2118
2120
|
args: [{ providedIn: 'root' }]
|
|
2119
2121
|
}] });
|
|
@@ -2123,10 +2125,10 @@ class MutationObserverFactory {
|
|
|
2123
2125
|
create(callback) {
|
|
2124
2126
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
2125
2127
|
}
|
|
2126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2127
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
2128
2130
|
}
|
|
2129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
2130
2132
|
type: Injectable,
|
|
2131
2133
|
args: [{ providedIn: 'root' }]
|
|
2132
2134
|
}] });
|
|
@@ -2185,10 +2187,10 @@ class ContentObserverService {
|
|
|
2185
2187
|
this._observedElements.delete(element);
|
|
2186
2188
|
}
|
|
2187
2189
|
}
|
|
2188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2189
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2191
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
2190
2192
|
}
|
|
2191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
2192
2194
|
type: Injectable,
|
|
2193
2195
|
args: [{ providedIn: 'root' }]
|
|
2194
2196
|
}] });
|
|
@@ -2214,10 +2216,10 @@ class FocusVisibleService {
|
|
|
2214
2216
|
onPointerDown() {
|
|
2215
2217
|
this._hadKeyboardEvent = false;
|
|
2216
2218
|
}
|
|
2217
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2218
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2219
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2220
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
2219
2221
|
}
|
|
2220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
2221
2223
|
type: Injectable,
|
|
2222
2224
|
args: [{
|
|
2223
2225
|
providedIn: 'root',
|
|
@@ -2229,10 +2231,10 @@ class IntersectionObserverFactory {
|
|
|
2229
2231
|
create(callback) {
|
|
2230
2232
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
2231
2233
|
}
|
|
2232
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2233
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2235
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
2234
2236
|
}
|
|
2235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
2236
2238
|
type: Injectable,
|
|
2237
2239
|
args: [{ providedIn: 'root' }]
|
|
2238
2240
|
}] });
|
|
@@ -2287,10 +2289,10 @@ class IntersectionObserverService {
|
|
|
2287
2289
|
this._observedElements.delete(element);
|
|
2288
2290
|
}
|
|
2289
2291
|
}
|
|
2290
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2291
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2292
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2293
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
2292
2294
|
}
|
|
2293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
2294
2296
|
type: Injectable,
|
|
2295
2297
|
args: [{ providedIn: 'root' }]
|
|
2296
2298
|
}] });
|
|
@@ -2300,10 +2302,10 @@ class ResizeObserverFactory {
|
|
|
2300
2302
|
create(callback) {
|
|
2301
2303
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
2302
2304
|
}
|
|
2303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2304
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2305
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2306
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
2305
2307
|
}
|
|
2306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
2307
2309
|
type: Injectable,
|
|
2308
2310
|
args: [{ providedIn: 'root' }]
|
|
2309
2311
|
}] });
|
|
@@ -2358,10 +2360,10 @@ class ResizeObserverService {
|
|
|
2358
2360
|
this._observedElements.delete(element);
|
|
2359
2361
|
}
|
|
2360
2362
|
}
|
|
2361
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2362
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2364
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
2363
2365
|
}
|
|
2364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
2365
2367
|
type: Injectable,
|
|
2366
2368
|
args: [{ providedIn: 'root' }]
|
|
2367
2369
|
}] });
|
|
@@ -2556,10 +2558,10 @@ class RouterStateService {
|
|
|
2556
2558
|
fragment,
|
|
2557
2559
|
};
|
|
2558
2560
|
}
|
|
2559
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2560
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2561
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2562
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2561
2563
|
}
|
|
2562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2563
2565
|
type: Injectable,
|
|
2564
2566
|
args: [{
|
|
2565
2567
|
providedIn: 'root',
|
|
@@ -2775,8 +2777,8 @@ class ViewportService {
|
|
|
2775
2777
|
}
|
|
2776
2778
|
return 'xs';
|
|
2777
2779
|
}
|
|
2778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2779
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.
|
|
2780
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2781
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2780
2782
|
}
|
|
2781
2783
|
__decorate([
|
|
2782
2784
|
Memo(),
|
|
@@ -2794,7 +2796,7 @@ __decorate([
|
|
|
2794
2796
|
__metadata("design:paramtypes", [Object]),
|
|
2795
2797
|
__metadata("design:returntype", void 0)
|
|
2796
2798
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, decorators: [{
|
|
2798
2800
|
type: Injectable,
|
|
2799
2801
|
args: [{
|
|
2800
2802
|
providedIn: 'root',
|
|
@@ -2843,10 +2845,10 @@ class ObserveResizeDirective {
|
|
|
2843
2845
|
_unsubscribe() {
|
|
2844
2846
|
this._currentSubscription?.unsubscribe();
|
|
2845
2847
|
}
|
|
2846
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2847
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
2848
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2849
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2848
2850
|
}
|
|
2849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2850
2852
|
type: Directive,
|
|
2851
2853
|
args: [{
|
|
2852
2854
|
selector: '[etObserveResize]',
|
|
@@ -2876,15 +2878,15 @@ class RootBoundaryDirective {
|
|
|
2876
2878
|
set boundaryElement(v) {
|
|
2877
2879
|
this._boundaryElement = v;
|
|
2878
2880
|
}
|
|
2879
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
2880
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
2881
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2882
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
2881
2883
|
{
|
|
2882
2884
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
2883
2885
|
useExisting: RootBoundaryDirective,
|
|
2884
2886
|
},
|
|
2885
2887
|
], ngImport: i0 }); }
|
|
2886
2888
|
}
|
|
2887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
2889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
2888
2890
|
type: Directive,
|
|
2889
2891
|
args: [{
|
|
2890
2892
|
selector: '[etRootBoundary]',
|
|
@@ -3152,10 +3154,10 @@ class AnimatedOverlayDirective {
|
|
|
3152
3154
|
this._isUnmounting$.next(false);
|
|
3153
3155
|
this._afterClosed?.next();
|
|
3154
3156
|
}
|
|
3155
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3156
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3158
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
|
|
3157
3159
|
}
|
|
3158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3159
3161
|
type: Directive,
|
|
3160
3162
|
args: [{
|
|
3161
3163
|
standalone: true,
|
|
@@ -3201,10 +3203,10 @@ class ClickOutsideDirective {
|
|
|
3201
3203
|
ngOnDestroy() {
|
|
3202
3204
|
this._subscription?.unsubscribe();
|
|
3203
3205
|
}
|
|
3204
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3205
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3207
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3206
3208
|
}
|
|
3207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3208
3210
|
type: Directive,
|
|
3209
3211
|
args: [{
|
|
3210
3212
|
selector: '[etClickOutside]',
|
|
@@ -3358,10 +3360,10 @@ class CursorDragScrollDirective {
|
|
|
3358
3360
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
3359
3361
|
}
|
|
3360
3362
|
}
|
|
3361
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3362
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3364
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
3363
3365
|
}
|
|
3364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
3365
3367
|
type: Directive,
|
|
3366
3368
|
args: [{
|
|
3367
3369
|
selector: '[etCursorDragScroll]',
|
|
@@ -3394,15 +3396,15 @@ class DebugDirective {
|
|
|
3394
3396
|
set sDebug(value) {
|
|
3395
3397
|
this._debug.set(value);
|
|
3396
3398
|
}
|
|
3397
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3398
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3400
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
3399
3401
|
{
|
|
3400
3402
|
provide: DEBUG_TOKEN,
|
|
3401
3403
|
useExisting: DebugDirective,
|
|
3402
3404
|
},
|
|
3403
3405
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
3404
3406
|
}
|
|
3405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, decorators: [{
|
|
3406
3408
|
type: Directive,
|
|
3407
3409
|
args: [{
|
|
3408
3410
|
selector: '[etDebug]',
|
|
@@ -3449,15 +3451,15 @@ class DelayableDirective {
|
|
|
3449
3451
|
}
|
|
3450
3452
|
this._isDelayed$.next(val);
|
|
3451
3453
|
}
|
|
3452
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3453
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3454
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3455
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
3454
3456
|
{
|
|
3455
3457
|
provide: DELAYABLE_TOKEN,
|
|
3456
3458
|
useExisting: DelayableDirective,
|
|
3457
3459
|
},
|
|
3458
3460
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
3459
3461
|
}
|
|
3460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
3461
3463
|
type: Directive,
|
|
3462
3464
|
args: [{
|
|
3463
3465
|
selector: '[etDelayable]',
|
|
@@ -3478,15 +3480,15 @@ class IsActiveElementDirective {
|
|
|
3478
3480
|
this.elementRef = inject(ElementRef);
|
|
3479
3481
|
this.isActiveElement = false;
|
|
3480
3482
|
}
|
|
3481
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3482
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3483
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3484
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
3483
3485
|
{
|
|
3484
3486
|
provide: IS_ACTIVE_ELEMENT,
|
|
3485
3487
|
useExisting: IsActiveElementDirective,
|
|
3486
3488
|
},
|
|
3487
3489
|
], ngImport: i0 }); }
|
|
3488
3490
|
}
|
|
3489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
3490
3492
|
type: Directive,
|
|
3491
3493
|
args: [{
|
|
3492
3494
|
selector: '[etIsActiveElement]',
|
|
@@ -3509,15 +3511,15 @@ class IsElementDirective {
|
|
|
3509
3511
|
this.elementRef = inject(ElementRef);
|
|
3510
3512
|
this.isElement = false;
|
|
3511
3513
|
}
|
|
3512
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3513
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3514
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3515
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
3514
3516
|
{
|
|
3515
3517
|
provide: IS_ELEMENT,
|
|
3516
3518
|
useExisting: IsElementDirective,
|
|
3517
3519
|
},
|
|
3518
3520
|
], ngImport: i0 }); }
|
|
3519
3521
|
}
|
|
3520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
3521
3523
|
type: Directive,
|
|
3522
3524
|
args: [{
|
|
3523
3525
|
selector: '[etIsElement]',
|
|
@@ -3566,10 +3568,10 @@ class LetDirective {
|
|
|
3566
3568
|
}
|
|
3567
3569
|
}
|
|
3568
3570
|
}
|
|
3569
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3570
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3571
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3572
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
3571
3573
|
}
|
|
3572
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, decorators: [{
|
|
3573
3575
|
type: Directive,
|
|
3574
3576
|
args: [{
|
|
3575
3577
|
selector: '[etLet]',
|
|
@@ -3621,10 +3623,10 @@ class ObserveContentDirective {
|
|
|
3621
3623
|
_unsubscribe() {
|
|
3622
3624
|
this._currentSubscription?.unsubscribe();
|
|
3623
3625
|
}
|
|
3624
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3625
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3626
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3627
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
3626
3628
|
}
|
|
3627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
3628
3630
|
type: Directive,
|
|
3629
3631
|
args: [{
|
|
3630
3632
|
selector: '[etObserveContent]',
|
|
@@ -3647,10 +3649,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
3647
3649
|
constructor() {
|
|
3648
3650
|
this.isFirstElement = false;
|
|
3649
3651
|
}
|
|
3650
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3651
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3653
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
3652
3654
|
}
|
|
3653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
3654
3656
|
type: Directive,
|
|
3655
3657
|
args: [{
|
|
3656
3658
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -3666,10 +3668,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImpor
|
|
|
3666
3668
|
|
|
3667
3669
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
3668
3670
|
class ScrollObserverIgnoreTargetDirective {
|
|
3669
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3670
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3672
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
3671
3673
|
}
|
|
3672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
3673
3675
|
type: Directive,
|
|
3674
3676
|
args: [{
|
|
3675
3677
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -3685,10 +3687,10 @@ class ScrollObserverLastElementDirective {
|
|
|
3685
3687
|
constructor() {
|
|
3686
3688
|
this.isLastElement = false;
|
|
3687
3689
|
}
|
|
3688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3689
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3690
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3691
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
|
|
3690
3692
|
}
|
|
3691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
3692
3694
|
type: Directive,
|
|
3693
3695
|
args: [{
|
|
3694
3696
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -3847,15 +3849,15 @@ class ObserveScrollStateDirective {
|
|
|
3847
3849
|
}
|
|
3848
3850
|
return element;
|
|
3849
3851
|
}
|
|
3850
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3851
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
3852
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3853
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
3852
3854
|
{
|
|
3853
3855
|
provide: OBSERVE_SCROLL_STATE,
|
|
3854
3856
|
useExisting: ObserveScrollStateDirective,
|
|
3855
3857
|
},
|
|
3856
3858
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
3857
3859
|
}
|
|
3858
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
3859
3861
|
type: Directive,
|
|
3860
3862
|
args: [{
|
|
3861
3863
|
selector: '[etObserveScrollState]',
|
|
@@ -3925,15 +3927,15 @@ class ObserveVisibilityDirective {
|
|
|
3925
3927
|
}))
|
|
3926
3928
|
.subscribe();
|
|
3927
3929
|
}
|
|
3928
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3929
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3930
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3931
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
3930
3932
|
{
|
|
3931
3933
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
3932
3934
|
useExisting: ObserveVisibilityDirective,
|
|
3933
3935
|
},
|
|
3934
3936
|
], ngImport: i0 }); }
|
|
3935
3937
|
}
|
|
3936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
3937
3939
|
type: Directive,
|
|
3938
3940
|
args: [{
|
|
3939
3941
|
selector: '[etObserveVisibility]',
|
|
@@ -3971,10 +3973,10 @@ class RepeatDirective {
|
|
|
3971
3973
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3972
3974
|
}
|
|
3973
3975
|
}
|
|
3974
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
3975
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
3976
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3977
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3976
3978
|
}
|
|
3977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
3979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3978
3980
|
type: Directive,
|
|
3979
3981
|
args: [{
|
|
3980
3982
|
selector: '[etRepeat]',
|
|
@@ -4143,10 +4145,10 @@ class SeoDirective {
|
|
|
4143
4145
|
}
|
|
4144
4146
|
}
|
|
4145
4147
|
}
|
|
4146
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4147
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
4148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4149
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4148
4150
|
}
|
|
4149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4150
4152
|
type: Directive,
|
|
4151
4153
|
args: [{
|
|
4152
4154
|
standalone: true,
|
|
@@ -4322,10 +4324,10 @@ class InferMimeTypePipe {
|
|
|
4322
4324
|
constructor() {
|
|
4323
4325
|
this.transform = inferMimeType;
|
|
4324
4326
|
}
|
|
4325
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4326
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4328
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
4327
4329
|
}
|
|
4328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
4329
4331
|
type: Pipe,
|
|
4330
4332
|
args: [{
|
|
4331
4333
|
name: 'inferMimeType',
|
|
@@ -4371,10 +4373,10 @@ class NormalizeGameResultTypePipe {
|
|
|
4371
4373
|
constructor() {
|
|
4372
4374
|
this.transform = normalizeGameResultType;
|
|
4373
4375
|
}
|
|
4374
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4375
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4376
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4377
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
4376
4378
|
}
|
|
4377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
4378
4380
|
type: Pipe,
|
|
4379
4381
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
4380
4382
|
}] });
|
|
@@ -4402,10 +4404,10 @@ class NormalizeMatchStatePipe {
|
|
|
4402
4404
|
constructor() {
|
|
4403
4405
|
this.transform = normalizeMatchState;
|
|
4404
4406
|
}
|
|
4405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4406
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4408
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
4407
4409
|
}
|
|
4408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
4409
4411
|
type: Pipe,
|
|
4410
4412
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
4411
4413
|
}] });
|
|
@@ -4460,10 +4462,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
4460
4462
|
constructor() {
|
|
4461
4463
|
this.transform = normalizeMatchParticipants;
|
|
4462
4464
|
}
|
|
4463
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4464
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4466
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
4465
4467
|
}
|
|
4466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
4467
4469
|
type: Pipe,
|
|
4468
4470
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
4469
4471
|
}] });
|
|
@@ -4597,10 +4599,10 @@ class NormalizeMatchScorePipe {
|
|
|
4597
4599
|
constructor() {
|
|
4598
4600
|
this.transform = normalizeMatchScore;
|
|
4599
4601
|
}
|
|
4600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4601
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4602
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4603
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
4602
4604
|
}
|
|
4603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
4604
4606
|
type: Pipe,
|
|
4605
4607
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
4606
4608
|
}] });
|
|
@@ -4647,10 +4649,10 @@ class NormalizeMatchTypePipe {
|
|
|
4647
4649
|
constructor() {
|
|
4648
4650
|
this.transform = normalizeMatchType;
|
|
4649
4651
|
}
|
|
4650
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4651
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4653
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
4652
4654
|
}
|
|
4653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
4654
4656
|
type: Pipe,
|
|
4655
4657
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
4656
4658
|
}] });
|
|
@@ -4664,10 +4666,10 @@ class ToArrayPipe {
|
|
|
4664
4666
|
constructor() {
|
|
4665
4667
|
this.transform = toArray;
|
|
4666
4668
|
}
|
|
4667
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
4668
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.
|
|
4669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4670
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
4669
4671
|
}
|
|
4670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
4672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
4671
4673
|
type: Pipe,
|
|
4672
4674
|
args: [{ name: 'toArray', standalone: true }]
|
|
4673
4675
|
}] });
|