@ethlete/core 4.6.0 → 4.8.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 +18 -0
- package/esm2022/index.mjs +2 -1
- package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +8 -6
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +25 -9
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/debug/debug.directive.mjs +3 -3
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
- package/esm2022/lib/directives/let/let.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +3 -3
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
- package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
- package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
- package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/props/props.directive.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +4 -4
- 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/index.mjs +2 -1
- package/esm2022/lib/utils/inject.utils.mjs +4 -0
- package/esm2022/lib/utils/signal.utils.mjs +25 -6
- package/fesm2022/ethlete-core.mjs +177 -136
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/animated-lifecycle/animated-lifecycle.directive.d.ts +2 -1
- package/lib/directives/animated-overlay/animated-overlay.directive.d.ts +6 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/inject.utils.d.ts +3 -0
- package/lib/utils/signal.utils.d.ts +23 -2
- package/package.json +7 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal, signal, QueryList, Injector, runInInjectionContext, effect, afterNextRender, NgZone, isDevMode, computed, untracked, Directive, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, ViewContainerRef,
|
|
2
|
+
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, TemplateRef, isSignal, signal, QueryList, Injector, runInInjectionContext, effect, afterNextRender, NgZone, isDevMode, computed, untracked, Directive, model, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, ViewContainerRef, Pipe, AfterRenderPhase, input } from '@angular/core';
|
|
3
3
|
import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
|
|
4
|
-
import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise,
|
|
4
|
+
import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise, debounceTime, merge, skip, fromEvent, takeWhile, finalize } from 'rxjs';
|
|
5
5
|
import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
|
|
6
6
|
import { FormGroup, FormArray, FormControl } from '@angular/forms';
|
|
7
7
|
import { toSignal, takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
|
|
@@ -29,10 +29,10 @@ class StructuredDataComponent {
|
|
|
29
29
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
30
30
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
31
31
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.2", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
34
34
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
36
|
type: Component,
|
|
37
37
|
args: [{
|
|
38
38
|
selector: 'et-structured-data',
|
|
@@ -633,6 +633,9 @@ const getFormGroupValue = (formGroup) => {
|
|
|
633
633
|
return value;
|
|
634
634
|
};
|
|
635
635
|
|
|
636
|
+
const injectHostElement = () => inject(ElementRef).nativeElement;
|
|
637
|
+
const injectTemplateRef = () => inject(TemplateRef);
|
|
638
|
+
|
|
636
639
|
const getFirstAndLastPartialIntersection = (intersections) => {
|
|
637
640
|
const firstIntersecting = intersections.find((i) => i.intersectionRatio > 0);
|
|
638
641
|
const lastIntersecting = [...intersections].reverse().find((i) => i.intersectionRatio > 0);
|
|
@@ -1554,7 +1557,7 @@ const signalClasses = (el, classMap) => {
|
|
|
1554
1557
|
});
|
|
1555
1558
|
};
|
|
1556
1559
|
const signalHostClasses = (classMap) => signalClasses(inject(ElementRef), classMap);
|
|
1557
|
-
const ALWAYS_TRUE_ATTRIBUTE_KEYS = ['disabled', 'readonly', 'required', 'checked', 'selected'];
|
|
1560
|
+
const ALWAYS_TRUE_ATTRIBUTE_KEYS = ['disabled', 'readonly', 'required', 'checked', 'selected', 'hidden', 'inert'];
|
|
1558
1561
|
const signalAttributes = (el, attributeMap) => {
|
|
1559
1562
|
const elements = buildElementSignal(el);
|
|
1560
1563
|
return buildSignalEffects({
|
|
@@ -1797,10 +1800,28 @@ const syncSignal = (from, to) => {
|
|
|
1797
1800
|
});
|
|
1798
1801
|
});
|
|
1799
1802
|
};
|
|
1800
|
-
const
|
|
1801
|
-
const
|
|
1802
|
-
|
|
1803
|
+
const controlValueSignal = (control, options) => {
|
|
1804
|
+
const vcsObs = options?.debounceTime
|
|
1805
|
+
? control.valueChanges.pipe(debounceTime(options?.debounceTime ?? 300))
|
|
1806
|
+
: control.valueChanges;
|
|
1807
|
+
const obs = options?.debounceFirst
|
|
1808
|
+
? merge(of(control.value), vcsObs)
|
|
1809
|
+
: vcsObs.pipe(startWith(control.getRawValue()));
|
|
1810
|
+
return toSignal(obs.pipe(distinctUntilChanged((a, b) => equal(a, b))), {
|
|
1811
|
+
requireSync: true,
|
|
1812
|
+
});
|
|
1803
1813
|
};
|
|
1814
|
+
/**
|
|
1815
|
+
* The first item in the pair is the previous value and the second item is the current value.
|
|
1816
|
+
*/
|
|
1817
|
+
const controlValueSignalWithPrevious = (control, options) => {
|
|
1818
|
+
const obs = toObservable(controlValueSignal(control, options)).pipe(pairwise(), startWith([null, control.getRawValue()]));
|
|
1819
|
+
return toSignal(obs, { requireSync: true });
|
|
1820
|
+
};
|
|
1821
|
+
/**
|
|
1822
|
+
* @deprecated Use `controlValueSignal` instead with `debounceTime` set to `300` and `debounceFirst` set to `true`.
|
|
1823
|
+
*/
|
|
1824
|
+
const debouncedControlValueSignal = (control, options) => controlValueSignal(control, options ?? { debounceTime: 300, debounceFirst: true });
|
|
1804
1825
|
|
|
1805
1826
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1806
1827
|
let _uniqueIdCounter = 0;
|
|
@@ -2002,15 +2023,15 @@ class AnimatableDirective {
|
|
|
2002
2023
|
.subscribe();
|
|
2003
2024
|
}
|
|
2004
2025
|
}
|
|
2005
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2006
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
2026
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2027
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
2007
2028
|
{
|
|
2008
2029
|
provide: ANIMATABLE_TOKEN,
|
|
2009
2030
|
useExisting: AnimatableDirective,
|
|
2010
2031
|
},
|
|
2011
2032
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
2012
2033
|
}
|
|
2013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
2014
2035
|
type: Directive,
|
|
2015
2036
|
args: [{
|
|
2016
2037
|
selector: '[etAnimatable]',
|
|
@@ -2049,6 +2070,7 @@ class AnimatedLifecycleDirective {
|
|
|
2049
2070
|
this.hostClassBindings = signalHostClasses({
|
|
2050
2071
|
'et-force-invisible': toSignal(this._state$.pipe(map((state) => state === 'init'))),
|
|
2051
2072
|
});
|
|
2073
|
+
this.skipNextEnter = model(false);
|
|
2052
2074
|
}
|
|
2053
2075
|
get state() {
|
|
2054
2076
|
return this._state$.value;
|
|
@@ -2059,9 +2081,10 @@ class AnimatedLifecycleDirective {
|
|
|
2059
2081
|
enter(config) {
|
|
2060
2082
|
if (this.state === 'entering')
|
|
2061
2083
|
return;
|
|
2062
|
-
if (this.state === 'init' && !this._isConstructed) {
|
|
2084
|
+
if ((this.state === 'init' && !this._isConstructed) || this.skipNextEnter()) {
|
|
2063
2085
|
// Force the state to entered so that the element is not animated when it is first rendered.
|
|
2064
2086
|
this._forceState('entered');
|
|
2087
|
+
this.skipNextEnter.set(false);
|
|
2065
2088
|
return;
|
|
2066
2089
|
}
|
|
2067
2090
|
if (this.state === 'leaving') {
|
|
@@ -2130,15 +2153,15 @@ class AnimatedLifecycleDirective {
|
|
|
2130
2153
|
_forceState(state) {
|
|
2131
2154
|
this._state$.next(state);
|
|
2132
2155
|
}
|
|
2133
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2134
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
2156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2157
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
2135
2158
|
{
|
|
2136
2159
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
2137
2160
|
useExisting: AnimatedLifecycleDirective,
|
|
2138
2161
|
},
|
|
2139
2162
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
2140
2163
|
}
|
|
2141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
2142
2165
|
type: Directive,
|
|
2143
2166
|
args: [{
|
|
2144
2167
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -2175,15 +2198,15 @@ class AnimatedIfDirective {
|
|
|
2175
2198
|
.subscribe();
|
|
2176
2199
|
}
|
|
2177
2200
|
}
|
|
2178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2179
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
2201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2202
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
2180
2203
|
{
|
|
2181
2204
|
provide: ANIMATED_IF_TOKEN,
|
|
2182
2205
|
useExisting: AnimatedIfDirective,
|
|
2183
2206
|
},
|
|
2184
2207
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
2185
2208
|
}
|
|
2186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
2187
2210
|
type: Directive,
|
|
2188
2211
|
args: [{
|
|
2189
2212
|
selector: '[etAnimatedIf]',
|
|
@@ -2206,10 +2229,10 @@ class ClickObserverFactory {
|
|
|
2206
2229
|
create() {
|
|
2207
2230
|
return fromEvent(document, 'click');
|
|
2208
2231
|
}
|
|
2209
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2210
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2233
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
2211
2234
|
}
|
|
2212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
2213
2236
|
type: Injectable,
|
|
2214
2237
|
args: [{ providedIn: 'root' }]
|
|
2215
2238
|
}] });
|
|
@@ -2262,10 +2285,10 @@ class ClickObserverService {
|
|
|
2262
2285
|
this._observedElements.delete(element);
|
|
2263
2286
|
}
|
|
2264
2287
|
}
|
|
2265
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2266
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2288
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2289
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
2267
2290
|
}
|
|
2268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
2269
2292
|
type: Injectable,
|
|
2270
2293
|
args: [{ providedIn: 'root' }]
|
|
2271
2294
|
}] });
|
|
@@ -2275,10 +2298,10 @@ class MutationObserverFactory {
|
|
|
2275
2298
|
create(callback) {
|
|
2276
2299
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
2277
2300
|
}
|
|
2278
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2279
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2302
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
2280
2303
|
}
|
|
2281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
2282
2305
|
type: Injectable,
|
|
2283
2306
|
args: [{ providedIn: 'root' }]
|
|
2284
2307
|
}] });
|
|
@@ -2337,10 +2360,10 @@ class ContentObserverService {
|
|
|
2337
2360
|
this._observedElements.delete(element);
|
|
2338
2361
|
}
|
|
2339
2362
|
}
|
|
2340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2341
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2364
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
2342
2365
|
}
|
|
2343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
2344
2367
|
type: Injectable,
|
|
2345
2368
|
args: [{ providedIn: 'root' }]
|
|
2346
2369
|
}] });
|
|
@@ -2366,10 +2389,10 @@ class FocusVisibleService {
|
|
|
2366
2389
|
onPointerDown() {
|
|
2367
2390
|
this._hadKeyboardEvent = false;
|
|
2368
2391
|
}
|
|
2369
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2370
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
2371
2394
|
}
|
|
2372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
2373
2396
|
type: Injectable,
|
|
2374
2397
|
args: [{
|
|
2375
2398
|
providedIn: 'root',
|
|
@@ -2381,10 +2404,10 @@ class IntersectionObserverFactory {
|
|
|
2381
2404
|
create(callback) {
|
|
2382
2405
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
2383
2406
|
}
|
|
2384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2385
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2408
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
2386
2409
|
}
|
|
2387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
2388
2411
|
type: Injectable,
|
|
2389
2412
|
args: [{ providedIn: 'root' }]
|
|
2390
2413
|
}] });
|
|
@@ -2439,10 +2462,10 @@ class IntersectionObserverService {
|
|
|
2439
2462
|
this._observedElements.delete(element);
|
|
2440
2463
|
}
|
|
2441
2464
|
}
|
|
2442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2466
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
2444
2467
|
}
|
|
2445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
2446
2469
|
type: Injectable,
|
|
2447
2470
|
args: [{ providedIn: 'root' }]
|
|
2448
2471
|
}] });
|
|
@@ -2452,10 +2475,10 @@ class ResizeObserverFactory {
|
|
|
2452
2475
|
create(callback) {
|
|
2453
2476
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
2454
2477
|
}
|
|
2455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2456
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2479
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
2457
2480
|
}
|
|
2458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
2459
2482
|
type: Injectable,
|
|
2460
2483
|
args: [{ providedIn: 'root' }]
|
|
2461
2484
|
}] });
|
|
@@ -2510,10 +2533,10 @@ class ResizeObserverService {
|
|
|
2510
2533
|
this._observedElements.delete(element);
|
|
2511
2534
|
}
|
|
2512
2535
|
}
|
|
2513
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2514
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2536
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2537
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
2515
2538
|
}
|
|
2516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
2517
2540
|
type: Injectable,
|
|
2518
2541
|
args: [{ providedIn: 'root' }]
|
|
2519
2542
|
}] });
|
|
@@ -2708,10 +2731,10 @@ class RouterStateService {
|
|
|
2708
2731
|
fragment,
|
|
2709
2732
|
};
|
|
2710
2733
|
}
|
|
2711
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2712
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2734
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2735
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2713
2736
|
}
|
|
2714
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2737
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2715
2738
|
type: Injectable,
|
|
2716
2739
|
args: [{
|
|
2717
2740
|
providedIn: 'root',
|
|
@@ -2927,8 +2950,8 @@ class ViewportService {
|
|
|
2927
2950
|
}
|
|
2928
2951
|
return 'xs';
|
|
2929
2952
|
}
|
|
2930
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2931
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2953
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2954
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2932
2955
|
}
|
|
2933
2956
|
__decorate([
|
|
2934
2957
|
Memo(),
|
|
@@ -2946,7 +2969,7 @@ __decorate([
|
|
|
2946
2969
|
__metadata("design:paramtypes", [Object]),
|
|
2947
2970
|
__metadata("design:returntype", void 0)
|
|
2948
2971
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ViewportService, decorators: [{
|
|
2950
2973
|
type: Injectable,
|
|
2951
2974
|
args: [{
|
|
2952
2975
|
providedIn: 'root',
|
|
@@ -2995,10 +3018,10 @@ class ObserveResizeDirective {
|
|
|
2995
3018
|
_unsubscribe() {
|
|
2996
3019
|
this._currentSubscription?.unsubscribe();
|
|
2997
3020
|
}
|
|
2998
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2999
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3021
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3022
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
3000
3023
|
}
|
|
3001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
3002
3025
|
type: Directive,
|
|
3003
3026
|
args: [{
|
|
3004
3027
|
selector: '[etObserveResize]',
|
|
@@ -3028,15 +3051,15 @@ class RootBoundaryDirective {
|
|
|
3028
3051
|
set boundaryElement(v) {
|
|
3029
3052
|
this._boundaryElement = v;
|
|
3030
3053
|
}
|
|
3031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3032
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3054
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3055
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3033
3056
|
{
|
|
3034
3057
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3035
3058
|
useExisting: RootBoundaryDirective,
|
|
3036
3059
|
},
|
|
3037
3060
|
], ngImport: i0 }); }
|
|
3038
3061
|
}
|
|
3039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3040
3063
|
type: Directive,
|
|
3041
3064
|
args: [{
|
|
3042
3065
|
selector: '[etRootBoundary]',
|
|
@@ -3108,6 +3131,11 @@ class AnimatedOverlayDirective {
|
|
|
3108
3131
|
* @default false
|
|
3109
3132
|
*/
|
|
3110
3133
|
this.autoHide = false;
|
|
3134
|
+
/**
|
|
3135
|
+
* Whether the animated overlay should auto close if the reference element is hidden.
|
|
3136
|
+
* @default false
|
|
3137
|
+
*/
|
|
3138
|
+
this.autoCloseIfReferenceHidden = false;
|
|
3111
3139
|
}
|
|
3112
3140
|
get isMounted() {
|
|
3113
3141
|
return this._isMounted$.value;
|
|
@@ -3222,7 +3250,9 @@ class AnimatedOverlayDirective {
|
|
|
3222
3250
|
? [shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary })]
|
|
3223
3251
|
: []),
|
|
3224
3252
|
...(floatingElArrow ? [arrow({ element: floatingElArrow, padding: this.arrowPadding ?? undefined })] : []),
|
|
3225
|
-
...(this.autoHide
|
|
3253
|
+
...(this.autoHide || this.autoCloseIfReferenceHidden
|
|
3254
|
+
? [hide({ strategy: 'referenceHidden', boundary })]
|
|
3255
|
+
: []),
|
|
3226
3256
|
],
|
|
3227
3257
|
}).then(({ x, y, placement, middlewareData }) => {
|
|
3228
3258
|
floatingEl.style.setProperty('--et-floating-translate', `translate3d(${x}px, ${y}px, 0)`);
|
|
@@ -3232,12 +3262,19 @@ class AnimatedOverlayDirective {
|
|
|
3232
3262
|
floatingEl.style.setProperty('--et-floating-arrow-translate', `translate3d(${arrowX ?? 0}px, ${arrowY ?? 0}px, 0)`);
|
|
3233
3263
|
}
|
|
3234
3264
|
if (middlewareData.hide?.referenceHidden) {
|
|
3235
|
-
|
|
3236
|
-
|
|
3265
|
+
if (this.autoCloseIfReferenceHidden) {
|
|
3266
|
+
this.unmount();
|
|
3267
|
+
}
|
|
3268
|
+
else {
|
|
3269
|
+
floatingEl.classList.add('et-floating-element--hidden');
|
|
3270
|
+
this._isHidden$.next(true);
|
|
3271
|
+
}
|
|
3237
3272
|
}
|
|
3238
3273
|
else {
|
|
3239
|
-
|
|
3240
|
-
|
|
3274
|
+
if (this.autoHide) {
|
|
3275
|
+
floatingEl.classList.remove('et-floating-element--hidden');
|
|
3276
|
+
this._isHidden$.next(false);
|
|
3277
|
+
}
|
|
3241
3278
|
}
|
|
3242
3279
|
});
|
|
3243
3280
|
});
|
|
@@ -3328,10 +3365,10 @@ class AnimatedOverlayDirective {
|
|
|
3328
3365
|
this._isUnmounting$.next(false);
|
|
3329
3366
|
this._afterClosed?.next();
|
|
3330
3367
|
}
|
|
3331
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3332
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3369
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", shift: "shift", autoHide: "autoHide", autoCloseIfReferenceHidden: "autoCloseIfReferenceHidden" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
|
|
3333
3370
|
}
|
|
3334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3335
3372
|
type: Directive,
|
|
3336
3373
|
args: [{
|
|
3337
3374
|
standalone: true,
|
|
@@ -3356,6 +3393,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.0", ngImpor
|
|
|
3356
3393
|
type: Input
|
|
3357
3394
|
}], autoHide: [{
|
|
3358
3395
|
type: Input
|
|
3396
|
+
}], autoCloseIfReferenceHidden: [{
|
|
3397
|
+
type: Input
|
|
3359
3398
|
}] } });
|
|
3360
3399
|
|
|
3361
3400
|
class ClickOutsideDirective {
|
|
@@ -3379,10 +3418,10 @@ class ClickOutsideDirective {
|
|
|
3379
3418
|
ngOnDestroy() {
|
|
3380
3419
|
this._subscription?.unsubscribe();
|
|
3381
3420
|
}
|
|
3382
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3383
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3422
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3384
3423
|
}
|
|
3385
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3386
3425
|
type: Directive,
|
|
3387
3426
|
args: [{
|
|
3388
3427
|
selector: '[etClickOutside]',
|
|
@@ -3536,10 +3575,10 @@ class CursorDragScrollDirective {
|
|
|
3536
3575
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
3537
3576
|
}
|
|
3538
3577
|
}
|
|
3539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3540
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3579
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
3541
3580
|
}
|
|
3542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
3543
3582
|
type: Directive,
|
|
3544
3583
|
args: [{
|
|
3545
3584
|
selector: '[etCursorDragScroll]',
|
|
@@ -3572,15 +3611,15 @@ class DebugDirective {
|
|
|
3572
3611
|
set sDebug(value) {
|
|
3573
3612
|
this._debug.set(value);
|
|
3574
3613
|
}
|
|
3575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3576
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3615
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.2", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
3577
3616
|
{
|
|
3578
3617
|
provide: DEBUG_TOKEN,
|
|
3579
3618
|
useExisting: DebugDirective,
|
|
3580
3619
|
},
|
|
3581
3620
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
3582
3621
|
}
|
|
3583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: DebugDirective, decorators: [{
|
|
3584
3623
|
type: Directive,
|
|
3585
3624
|
args: [{
|
|
3586
3625
|
selector: '[etDebug]',
|
|
@@ -3627,15 +3666,15 @@ class DelayableDirective {
|
|
|
3627
3666
|
}
|
|
3628
3667
|
this._isDelayed$.next(val);
|
|
3629
3668
|
}
|
|
3630
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3631
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3670
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
3632
3671
|
{
|
|
3633
3672
|
provide: DELAYABLE_TOKEN,
|
|
3634
3673
|
useExisting: DelayableDirective,
|
|
3635
3674
|
},
|
|
3636
3675
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
3637
3676
|
}
|
|
3638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3677
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
3639
3678
|
type: Directive,
|
|
3640
3679
|
args: [{
|
|
3641
3680
|
selector: '[etDelayable]',
|
|
@@ -3656,15 +3695,15 @@ class IsActiveElementDirective {
|
|
|
3656
3695
|
this.elementRef = inject(ElementRef);
|
|
3657
3696
|
this.isActiveElement = false;
|
|
3658
3697
|
}
|
|
3659
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3660
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3699
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
3661
3700
|
{
|
|
3662
3701
|
provide: IS_ACTIVE_ELEMENT,
|
|
3663
3702
|
useExisting: IsActiveElementDirective,
|
|
3664
3703
|
},
|
|
3665
3704
|
], ngImport: i0 }); }
|
|
3666
3705
|
}
|
|
3667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
3668
3707
|
type: Directive,
|
|
3669
3708
|
args: [{
|
|
3670
3709
|
selector: '[etIsActiveElement]',
|
|
@@ -3687,15 +3726,15 @@ class IsElementDirective {
|
|
|
3687
3726
|
this.elementRef = inject(ElementRef);
|
|
3688
3727
|
this.isElement = false;
|
|
3689
3728
|
}
|
|
3690
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3691
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3730
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
3692
3731
|
{
|
|
3693
3732
|
provide: IS_ELEMENT,
|
|
3694
3733
|
useExisting: IsElementDirective,
|
|
3695
3734
|
},
|
|
3696
3735
|
], ngImport: i0 }); }
|
|
3697
3736
|
}
|
|
3698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3737
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
3699
3738
|
type: Directive,
|
|
3700
3739
|
args: [{
|
|
3701
3740
|
selector: '[etIsElement]',
|
|
@@ -3744,10 +3783,10 @@ class LetDirective {
|
|
|
3744
3783
|
}
|
|
3745
3784
|
}
|
|
3746
3785
|
}
|
|
3747
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3748
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3786
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3787
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
3749
3788
|
}
|
|
3750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: LetDirective, decorators: [{
|
|
3751
3790
|
type: Directive,
|
|
3752
3791
|
args: [{
|
|
3753
3792
|
selector: '[etLet]',
|
|
@@ -3799,10 +3838,10 @@ class ObserveContentDirective {
|
|
|
3799
3838
|
_unsubscribe() {
|
|
3800
3839
|
this._currentSubscription?.unsubscribe();
|
|
3801
3840
|
}
|
|
3802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3803
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3841
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3842
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
3804
3843
|
}
|
|
3805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
3806
3845
|
type: Directive,
|
|
3807
3846
|
args: [{
|
|
3808
3847
|
selector: '[etObserveContent]',
|
|
@@ -3827,10 +3866,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
3827
3866
|
constructor() {
|
|
3828
3867
|
this.isFirstElement = false;
|
|
3829
3868
|
}
|
|
3830
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3831
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3870
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
3832
3871
|
}
|
|
3833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
3834
3873
|
type: Directive,
|
|
3835
3874
|
args: [{
|
|
3836
3875
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -3846,10 +3885,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.0", ngImpor
|
|
|
3846
3885
|
|
|
3847
3886
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
3848
3887
|
class ScrollObserverIgnoreTargetDirective {
|
|
3849
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3850
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3888
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3889
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
3851
3890
|
}
|
|
3852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
3853
3892
|
type: Directive,
|
|
3854
3893
|
args: [{
|
|
3855
3894
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -3865,10 +3904,10 @@ class ScrollObserverLastElementDirective {
|
|
|
3865
3904
|
constructor() {
|
|
3866
3905
|
this.isLastElement = false;
|
|
3867
3906
|
}
|
|
3868
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3869
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3907
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3908
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.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 }); }
|
|
3870
3909
|
}
|
|
3871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
3872
3911
|
type: Directive,
|
|
3873
3912
|
args: [{
|
|
3874
3913
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4025,15 +4064,15 @@ class ObserveScrollStateDirective {
|
|
|
4025
4064
|
}
|
|
4026
4065
|
return element;
|
|
4027
4066
|
}
|
|
4028
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4029
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4067
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4068
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4030
4069
|
{
|
|
4031
4070
|
provide: OBSERVE_SCROLL_STATE,
|
|
4032
4071
|
useExisting: ObserveScrollStateDirective,
|
|
4033
4072
|
},
|
|
4034
4073
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4035
4074
|
}
|
|
4036
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4037
4076
|
type: Directive,
|
|
4038
4077
|
args: [{
|
|
4039
4078
|
selector: '[etObserveScrollState]',
|
|
@@ -4103,15 +4142,15 @@ class ObserveVisibilityDirective {
|
|
|
4103
4142
|
}))
|
|
4104
4143
|
.subscribe();
|
|
4105
4144
|
}
|
|
4106
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4107
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4146
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4108
4147
|
{
|
|
4109
4148
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4110
4149
|
useExisting: ObserveVisibilityDirective,
|
|
4111
4150
|
},
|
|
4112
4151
|
], ngImport: i0 }); }
|
|
4113
4152
|
}
|
|
4114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4115
4154
|
type: Directive,
|
|
4116
4155
|
args: [{
|
|
4117
4156
|
selector: '[etObserveVisibility]',
|
|
@@ -4149,10 +4188,10 @@ class RepeatDirective {
|
|
|
4149
4188
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4150
4189
|
}
|
|
4151
4190
|
}
|
|
4152
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4153
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4191
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4192
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4154
4193
|
}
|
|
4155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4156
4195
|
type: Directive,
|
|
4157
4196
|
args: [{
|
|
4158
4197
|
selector: '[etRepeat]',
|
|
@@ -4321,10 +4360,10 @@ class SeoDirective {
|
|
|
4321
4360
|
}
|
|
4322
4361
|
}
|
|
4323
4362
|
}
|
|
4324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4325
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4364
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4326
4365
|
}
|
|
4327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4328
4367
|
type: Directive,
|
|
4329
4368
|
args: [{
|
|
4330
4369
|
standalone: true,
|
|
@@ -4500,10 +4539,10 @@ class InferMimeTypePipe {
|
|
|
4500
4539
|
constructor() {
|
|
4501
4540
|
this.transform = inferMimeType;
|
|
4502
4541
|
}
|
|
4503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4504
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4542
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4543
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
4505
4544
|
}
|
|
4506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
4507
4546
|
type: Pipe,
|
|
4508
4547
|
args: [{
|
|
4509
4548
|
name: 'inferMimeType',
|
|
@@ -4549,10 +4588,10 @@ class NormalizeGameResultTypePipe {
|
|
|
4549
4588
|
constructor() {
|
|
4550
4589
|
this.transform = normalizeGameResultType;
|
|
4551
4590
|
}
|
|
4552
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4553
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4592
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
4554
4593
|
}
|
|
4555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
4556
4595
|
type: Pipe,
|
|
4557
4596
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
4558
4597
|
}] });
|
|
@@ -4580,10 +4619,10 @@ class NormalizeMatchStatePipe {
|
|
|
4580
4619
|
constructor() {
|
|
4581
4620
|
this.transform = normalizeMatchState;
|
|
4582
4621
|
}
|
|
4583
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4584
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4622
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4623
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
4585
4624
|
}
|
|
4586
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
4587
4626
|
type: Pipe,
|
|
4588
4627
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
4589
4628
|
}] });
|
|
@@ -4638,10 +4677,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
4638
4677
|
constructor() {
|
|
4639
4678
|
this.transform = normalizeMatchParticipants;
|
|
4640
4679
|
}
|
|
4641
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4642
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4680
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4681
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
4643
4682
|
}
|
|
4644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
4645
4684
|
type: Pipe,
|
|
4646
4685
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
4647
4686
|
}] });
|
|
@@ -4775,10 +4814,10 @@ class NormalizeMatchScorePipe {
|
|
|
4775
4814
|
constructor() {
|
|
4776
4815
|
this.transform = normalizeMatchScore;
|
|
4777
4816
|
}
|
|
4778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4779
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4817
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4818
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
4780
4819
|
}
|
|
4781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
4782
4821
|
type: Pipe,
|
|
4783
4822
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
4784
4823
|
}] });
|
|
@@ -4825,10 +4864,10 @@ class NormalizeMatchTypePipe {
|
|
|
4825
4864
|
constructor() {
|
|
4826
4865
|
this.transform = normalizeMatchType;
|
|
4827
4866
|
}
|
|
4828
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4829
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4867
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4868
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
4830
4869
|
}
|
|
4831
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
4832
4871
|
type: Pipe,
|
|
4833
4872
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
4834
4873
|
}] });
|
|
@@ -4842,10 +4881,10 @@ class ToArrayPipe {
|
|
|
4842
4881
|
constructor() {
|
|
4843
4882
|
this.transform = toArray;
|
|
4844
4883
|
}
|
|
4845
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4846
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4885
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
4847
4886
|
}
|
|
4848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
4849
4888
|
type: Pipe,
|
|
4850
4889
|
args: [{ name: 'toArray', standalone: true }]
|
|
4851
4890
|
}] });
|
|
@@ -5063,10 +5102,10 @@ class PropsDirective {
|
|
|
5063
5102
|
});
|
|
5064
5103
|
});
|
|
5065
5104
|
}
|
|
5066
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5067
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.
|
|
5105
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5106
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.2", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5068
5107
|
}
|
|
5069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.2", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5070
5109
|
type: Directive,
|
|
5071
5110
|
args: [{
|
|
5072
5111
|
selector: '[etProps]',
|
|
@@ -5193,9 +5232,11 @@ const Validators = {
|
|
|
5193
5232
|
ValidateAtLeastOneRequired,
|
|
5194
5233
|
};
|
|
5195
5234
|
|
|
5235
|
+
// Burst cache
|
|
5236
|
+
|
|
5196
5237
|
/**
|
|
5197
5238
|
* Generated bundle index. Do not edit.
|
|
5198
5239
|
*/
|
|
5199
5240
|
|
|
5200
|
-
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, CURSOR_DRAG_SCROLLING_CLASS, CURSOR_DRAG_SCROLLING_PREPARED_CLASS, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, PropsDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, bindProps, buildSignalEffects, clamp, clone, cloneFormGroup, createComponentId, createDependencyStash, createDestroy, createElementDictionary, createFlipAnimation, createFlipAnimationGroup, createHostProps, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFirstAndLastPartialIntersection, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, 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, unbindProps };
|
|
5241
|
+
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, CURSOR_DRAG_SCROLLING_CLASS, CURSOR_DRAG_SCROLLING_PREPARED_CLASS, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, PropsDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, bindProps, buildSignalEffects, clamp, clone, cloneFormGroup, controlValueSignal, controlValueSignalWithPrevious, createComponentId, createDependencyStash, createDestroy, createElementDictionary, createFlipAnimation, createFlipAnimationGroup, createHostProps, createMediaQueryObservable, createMutationObservable, createPropHandlers, createProps, createReactiveBindings, createResizeObservable, createSetup, debouncedControlValueSignal, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFirstAndLastPartialIntersection, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, injectHostElement, injectTemplateRef, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, 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, unbindProps };
|
|
5201
5242
|
//# sourceMappingURL=ethlete-core.mjs.map
|