@ethlete/core 4.7.0 → 4.9.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/lib/components/structured-data/structured-data.component.mjs +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +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 +3 -1
- package/esm2022/lib/utils/inject.utils.mjs +4 -0
- package/esm2022/lib/utils/object.utils.mjs +30 -0
- package/esm2022/lib/utils/selection-model.utils.mjs +2 -17
- package/esm2022/lib/utils/signal.utils.mjs +25 -6
- package/fesm2022/ethlete-core.mjs +202 -151
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/animated-overlay/animated-overlay.directive.d.ts +6 -1
- package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +1 -1
- package/lib/utils/index.d.ts +2 -0
- package/lib/utils/inject.utils.d.ts +3 -0
- package/lib/utils/object.utils.d.ts +3 -0
- package/lib/utils/signal.utils.d.ts +24 -3
- 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, model, 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.3", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", 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.3", 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);
|
|
@@ -747,6 +750,36 @@ const createMutationObservable = (config) => {
|
|
|
747
750
|
});
|
|
748
751
|
};
|
|
749
752
|
|
|
753
|
+
const isObject = (value) => {
|
|
754
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
755
|
+
};
|
|
756
|
+
const isArray = (value) => {
|
|
757
|
+
return Array.isArray(value);
|
|
758
|
+
};
|
|
759
|
+
const getObjectProperty = (obj, prop) => {
|
|
760
|
+
const hasDotNotation = prop.includes('.');
|
|
761
|
+
const hasBracketNotation = prop.includes('[');
|
|
762
|
+
if (!hasDotNotation && !hasBracketNotation)
|
|
763
|
+
return obj[prop];
|
|
764
|
+
const props = prop.split('.');
|
|
765
|
+
let value = obj;
|
|
766
|
+
for (const prop of props) {
|
|
767
|
+
if (!isObject(value))
|
|
768
|
+
return undefined;
|
|
769
|
+
if (prop.includes('[')) {
|
|
770
|
+
const [key, index] = prop.split('[').map((part) => part.replace(']', ''));
|
|
771
|
+
const arr = value[key];
|
|
772
|
+
if (!Array.isArray(arr))
|
|
773
|
+
return undefined;
|
|
774
|
+
value = arr[+index];
|
|
775
|
+
}
|
|
776
|
+
else {
|
|
777
|
+
value = value[prop];
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
return value;
|
|
781
|
+
};
|
|
782
|
+
|
|
750
783
|
const isAttributeRenderBinding = (value) => typeof value === 'boolean';
|
|
751
784
|
const isAttributeValueBinding = (value) => typeof value === 'object';
|
|
752
785
|
/**
|
|
@@ -1059,22 +1092,6 @@ const getElementVisibleStates = (options) => {
|
|
|
1059
1092
|
return elementVisibleStates;
|
|
1060
1093
|
};
|
|
1061
1094
|
|
|
1062
|
-
const isObject = (value) => {
|
|
1063
|
-
return typeof value === 'object' && value !== null;
|
|
1064
|
-
};
|
|
1065
|
-
const getObjectProperty = (obj, prop) => {
|
|
1066
|
-
const hasDotNotation = prop.includes('.');
|
|
1067
|
-
if (!hasDotNotation)
|
|
1068
|
-
return obj[prop];
|
|
1069
|
-
const props = prop.split('.');
|
|
1070
|
-
let value = obj;
|
|
1071
|
-
for (const prop of props) {
|
|
1072
|
-
if (!isObject(value))
|
|
1073
|
-
return undefined;
|
|
1074
|
-
value = value[prop];
|
|
1075
|
-
}
|
|
1076
|
-
return value;
|
|
1077
|
-
};
|
|
1078
1095
|
class SelectionModel {
|
|
1079
1096
|
get selection$() {
|
|
1080
1097
|
return this._selection$.asObservable();
|
|
@@ -1554,7 +1571,7 @@ const signalClasses = (el, classMap) => {
|
|
|
1554
1571
|
});
|
|
1555
1572
|
};
|
|
1556
1573
|
const signalHostClasses = (classMap) => signalClasses(inject(ElementRef), classMap);
|
|
1557
|
-
const ALWAYS_TRUE_ATTRIBUTE_KEYS = ['disabled', 'readonly', 'required', 'checked', 'selected'];
|
|
1574
|
+
const ALWAYS_TRUE_ATTRIBUTE_KEYS = ['disabled', 'readonly', 'required', 'checked', 'selected', 'hidden', 'inert'];
|
|
1558
1575
|
const signalAttributes = (el, attributeMap) => {
|
|
1559
1576
|
const elements = buildElementSignal(el);
|
|
1560
1577
|
return buildSignalEffects({
|
|
@@ -1797,10 +1814,28 @@ const syncSignal = (from, to) => {
|
|
|
1797
1814
|
});
|
|
1798
1815
|
});
|
|
1799
1816
|
};
|
|
1800
|
-
const
|
|
1801
|
-
const
|
|
1802
|
-
|
|
1817
|
+
const controlValueSignal = (control, options) => {
|
|
1818
|
+
const vcsObs = options?.debounceTime
|
|
1819
|
+
? control.valueChanges.pipe(debounceTime(options?.debounceTime ?? 300))
|
|
1820
|
+
: control.valueChanges;
|
|
1821
|
+
const obs = options?.debounceFirst
|
|
1822
|
+
? merge(of(control.value), vcsObs)
|
|
1823
|
+
: vcsObs.pipe(startWith(control.getRawValue()));
|
|
1824
|
+
return toSignal(obs.pipe(distinctUntilChanged((a, b) => equal(a, b))), {
|
|
1825
|
+
requireSync: true,
|
|
1826
|
+
});
|
|
1803
1827
|
};
|
|
1828
|
+
/**
|
|
1829
|
+
* The first item in the pair is the previous value and the second item is the current value.
|
|
1830
|
+
*/
|
|
1831
|
+
const controlValueSignalWithPrevious = (control, options) => {
|
|
1832
|
+
const obs = toObservable(controlValueSignal(control, options)).pipe(pairwise(), startWith([null, control.getRawValue()]));
|
|
1833
|
+
return toSignal(obs, { requireSync: true });
|
|
1834
|
+
};
|
|
1835
|
+
/**
|
|
1836
|
+
* @deprecated Use `controlValueSignal` instead with `debounceTime` set to `300` and `debounceFirst` set to `true`.
|
|
1837
|
+
*/
|
|
1838
|
+
const debouncedControlValueSignal = (control, options) => controlValueSignal(control, options ?? { debounceTime: 300, debounceFirst: true });
|
|
1804
1839
|
|
|
1805
1840
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1806
1841
|
let _uniqueIdCounter = 0;
|
|
@@ -2002,15 +2037,15 @@ class AnimatableDirective {
|
|
|
2002
2037
|
.subscribe();
|
|
2003
2038
|
}
|
|
2004
2039
|
}
|
|
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.
|
|
2040
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2041
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
2007
2042
|
{
|
|
2008
2043
|
provide: ANIMATABLE_TOKEN,
|
|
2009
2044
|
useExisting: AnimatableDirective,
|
|
2010
2045
|
},
|
|
2011
2046
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
2012
2047
|
}
|
|
2013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
2014
2049
|
type: Directive,
|
|
2015
2050
|
args: [{
|
|
2016
2051
|
selector: '[etAnimatable]',
|
|
@@ -2132,15 +2167,15 @@ class AnimatedLifecycleDirective {
|
|
|
2132
2167
|
_forceState(state) {
|
|
2133
2168
|
this._state$.next(state);
|
|
2134
2169
|
}
|
|
2135
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2136
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.
|
|
2170
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2171
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.3", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", inputs: { skipNextEnter: { classPropertyName: "skipNextEnter", publicName: "skipNextEnter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { skipNextEnter: "skipNextEnterChange" }, providers: [
|
|
2137
2172
|
{
|
|
2138
2173
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
2139
2174
|
useExisting: AnimatedLifecycleDirective,
|
|
2140
2175
|
},
|
|
2141
2176
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
2142
2177
|
}
|
|
2143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
2144
2179
|
type: Directive,
|
|
2145
2180
|
args: [{
|
|
2146
2181
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -2177,15 +2212,15 @@ class AnimatedIfDirective {
|
|
|
2177
2212
|
.subscribe();
|
|
2178
2213
|
}
|
|
2179
2214
|
}
|
|
2180
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2181
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
2215
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2216
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
2182
2217
|
{
|
|
2183
2218
|
provide: ANIMATED_IF_TOKEN,
|
|
2184
2219
|
useExisting: AnimatedIfDirective,
|
|
2185
2220
|
},
|
|
2186
2221
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
2187
2222
|
}
|
|
2188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2223
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
2189
2224
|
type: Directive,
|
|
2190
2225
|
args: [{
|
|
2191
2226
|
selector: '[etAnimatedIf]',
|
|
@@ -2208,10 +2243,10 @@ class ClickObserverFactory {
|
|
|
2208
2243
|
create() {
|
|
2209
2244
|
return fromEvent(document, 'click');
|
|
2210
2245
|
}
|
|
2211
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2212
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2247
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
2213
2248
|
}
|
|
2214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
2215
2250
|
type: Injectable,
|
|
2216
2251
|
args: [{ providedIn: 'root' }]
|
|
2217
2252
|
}] });
|
|
@@ -2264,10 +2299,10 @@ class ClickObserverService {
|
|
|
2264
2299
|
this._observedElements.delete(element);
|
|
2265
2300
|
}
|
|
2266
2301
|
}
|
|
2267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2268
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2303
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
2269
2304
|
}
|
|
2270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
2271
2306
|
type: Injectable,
|
|
2272
2307
|
args: [{ providedIn: 'root' }]
|
|
2273
2308
|
}] });
|
|
@@ -2277,10 +2312,10 @@ class MutationObserverFactory {
|
|
|
2277
2312
|
create(callback) {
|
|
2278
2313
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
2279
2314
|
}
|
|
2280
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2281
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2315
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2316
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
2282
2317
|
}
|
|
2283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
2284
2319
|
type: Injectable,
|
|
2285
2320
|
args: [{ providedIn: 'root' }]
|
|
2286
2321
|
}] });
|
|
@@ -2339,10 +2374,10 @@ class ContentObserverService {
|
|
|
2339
2374
|
this._observedElements.delete(element);
|
|
2340
2375
|
}
|
|
2341
2376
|
}
|
|
2342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2343
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
2344
2379
|
}
|
|
2345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
2346
2381
|
type: Injectable,
|
|
2347
2382
|
args: [{ providedIn: 'root' }]
|
|
2348
2383
|
}] });
|
|
@@ -2368,10 +2403,10 @@ class FocusVisibleService {
|
|
|
2368
2403
|
onPointerDown() {
|
|
2369
2404
|
this._hadKeyboardEvent = false;
|
|
2370
2405
|
}
|
|
2371
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2372
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2406
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2407
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
2373
2408
|
}
|
|
2374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
2375
2410
|
type: Injectable,
|
|
2376
2411
|
args: [{
|
|
2377
2412
|
providedIn: 'root',
|
|
@@ -2383,10 +2418,10 @@ class IntersectionObserverFactory {
|
|
|
2383
2418
|
create(callback) {
|
|
2384
2419
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
2385
2420
|
}
|
|
2386
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2387
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2422
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
2388
2423
|
}
|
|
2389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
2390
2425
|
type: Injectable,
|
|
2391
2426
|
args: [{ providedIn: 'root' }]
|
|
2392
2427
|
}] });
|
|
@@ -2441,10 +2476,10 @@ class IntersectionObserverService {
|
|
|
2441
2476
|
this._observedElements.delete(element);
|
|
2442
2477
|
}
|
|
2443
2478
|
}
|
|
2444
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2445
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2479
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2480
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
2446
2481
|
}
|
|
2447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
2448
2483
|
type: Injectable,
|
|
2449
2484
|
args: [{ providedIn: 'root' }]
|
|
2450
2485
|
}] });
|
|
@@ -2454,10 +2489,10 @@ class ResizeObserverFactory {
|
|
|
2454
2489
|
create(callback) {
|
|
2455
2490
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
2456
2491
|
}
|
|
2457
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2458
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2492
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2493
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
2459
2494
|
}
|
|
2460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2495
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
2461
2496
|
type: Injectable,
|
|
2462
2497
|
args: [{ providedIn: 'root' }]
|
|
2463
2498
|
}] });
|
|
@@ -2512,10 +2547,10 @@ class ResizeObserverService {
|
|
|
2512
2547
|
this._observedElements.delete(element);
|
|
2513
2548
|
}
|
|
2514
2549
|
}
|
|
2515
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2516
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2551
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
2517
2552
|
}
|
|
2518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
2519
2554
|
type: Injectable,
|
|
2520
2555
|
args: [{ providedIn: 'root' }]
|
|
2521
2556
|
}] });
|
|
@@ -2710,10 +2745,10 @@ class RouterStateService {
|
|
|
2710
2745
|
fragment,
|
|
2711
2746
|
};
|
|
2712
2747
|
}
|
|
2713
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2714
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2748
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2749
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2715
2750
|
}
|
|
2716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2717
2752
|
type: Injectable,
|
|
2718
2753
|
args: [{
|
|
2719
2754
|
providedIn: 'root',
|
|
@@ -2929,8 +2964,8 @@ class ViewportService {
|
|
|
2929
2964
|
}
|
|
2930
2965
|
return 'xs';
|
|
2931
2966
|
}
|
|
2932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
2933
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.
|
|
2967
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2968
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2934
2969
|
}
|
|
2935
2970
|
__decorate([
|
|
2936
2971
|
Memo(),
|
|
@@ -2948,7 +2983,7 @@ __decorate([
|
|
|
2948
2983
|
__metadata("design:paramtypes", [Object]),
|
|
2949
2984
|
__metadata("design:returntype", void 0)
|
|
2950
2985
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2951
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
2986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ViewportService, decorators: [{
|
|
2952
2987
|
type: Injectable,
|
|
2953
2988
|
args: [{
|
|
2954
2989
|
providedIn: 'root',
|
|
@@ -2997,10 +3032,10 @@ class ObserveResizeDirective {
|
|
|
2997
3032
|
_unsubscribe() {
|
|
2998
3033
|
this._currentSubscription?.unsubscribe();
|
|
2999
3034
|
}
|
|
3000
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3001
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3036
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
3002
3037
|
}
|
|
3003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
3004
3039
|
type: Directive,
|
|
3005
3040
|
args: [{
|
|
3006
3041
|
selector: '[etObserveResize]',
|
|
@@ -3030,15 +3065,15 @@ class RootBoundaryDirective {
|
|
|
3030
3065
|
set boundaryElement(v) {
|
|
3031
3066
|
this._boundaryElement = v;
|
|
3032
3067
|
}
|
|
3033
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3034
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3068
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3069
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
3035
3070
|
{
|
|
3036
3071
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
3037
3072
|
useExisting: RootBoundaryDirective,
|
|
3038
3073
|
},
|
|
3039
3074
|
], ngImport: i0 }); }
|
|
3040
3075
|
}
|
|
3041
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3076
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
3042
3077
|
type: Directive,
|
|
3043
3078
|
args: [{
|
|
3044
3079
|
selector: '[etRootBoundary]',
|
|
@@ -3110,6 +3145,11 @@ class AnimatedOverlayDirective {
|
|
|
3110
3145
|
* @default false
|
|
3111
3146
|
*/
|
|
3112
3147
|
this.autoHide = false;
|
|
3148
|
+
/**
|
|
3149
|
+
* Whether the animated overlay should auto close if the reference element is hidden.
|
|
3150
|
+
* @default false
|
|
3151
|
+
*/
|
|
3152
|
+
this.autoCloseIfReferenceHidden = false;
|
|
3113
3153
|
}
|
|
3114
3154
|
get isMounted() {
|
|
3115
3155
|
return this._isMounted$.value;
|
|
@@ -3224,7 +3264,9 @@ class AnimatedOverlayDirective {
|
|
|
3224
3264
|
? [shift({ limiter: limitShift(), padding: this.viewportPadding ?? undefined, boundary })]
|
|
3225
3265
|
: []),
|
|
3226
3266
|
...(floatingElArrow ? [arrow({ element: floatingElArrow, padding: this.arrowPadding ?? undefined })] : []),
|
|
3227
|
-
...(this.autoHide
|
|
3267
|
+
...(this.autoHide || this.autoCloseIfReferenceHidden
|
|
3268
|
+
? [hide({ strategy: 'referenceHidden', boundary })]
|
|
3269
|
+
: []),
|
|
3228
3270
|
],
|
|
3229
3271
|
}).then(({ x, y, placement, middlewareData }) => {
|
|
3230
3272
|
floatingEl.style.setProperty('--et-floating-translate', `translate3d(${x}px, ${y}px, 0)`);
|
|
@@ -3234,12 +3276,19 @@ class AnimatedOverlayDirective {
|
|
|
3234
3276
|
floatingEl.style.setProperty('--et-floating-arrow-translate', `translate3d(${arrowX ?? 0}px, ${arrowY ?? 0}px, 0)`);
|
|
3235
3277
|
}
|
|
3236
3278
|
if (middlewareData.hide?.referenceHidden) {
|
|
3237
|
-
|
|
3238
|
-
|
|
3279
|
+
if (this.autoCloseIfReferenceHidden) {
|
|
3280
|
+
this.unmount();
|
|
3281
|
+
}
|
|
3282
|
+
else {
|
|
3283
|
+
floatingEl.classList.add('et-floating-element--hidden');
|
|
3284
|
+
this._isHidden$.next(true);
|
|
3285
|
+
}
|
|
3239
3286
|
}
|
|
3240
3287
|
else {
|
|
3241
|
-
|
|
3242
|
-
|
|
3288
|
+
if (this.autoHide) {
|
|
3289
|
+
floatingEl.classList.remove('et-floating-element--hidden');
|
|
3290
|
+
this._isHidden$.next(false);
|
|
3291
|
+
}
|
|
3243
3292
|
}
|
|
3244
3293
|
});
|
|
3245
3294
|
});
|
|
@@ -3330,10 +3379,10 @@ class AnimatedOverlayDirective {
|
|
|
3330
3379
|
this._isUnmounting$.next(false);
|
|
3331
3380
|
this._afterClosed?.next();
|
|
3332
3381
|
}
|
|
3333
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3334
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3382
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3383
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", 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 }); }
|
|
3335
3384
|
}
|
|
3336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3337
3386
|
type: Directive,
|
|
3338
3387
|
args: [{
|
|
3339
3388
|
standalone: true,
|
|
@@ -3358,6 +3407,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
3358
3407
|
type: Input
|
|
3359
3408
|
}], autoHide: [{
|
|
3360
3409
|
type: Input
|
|
3410
|
+
}], autoCloseIfReferenceHidden: [{
|
|
3411
|
+
type: Input
|
|
3361
3412
|
}] } });
|
|
3362
3413
|
|
|
3363
3414
|
class ClickOutsideDirective {
|
|
@@ -3381,10 +3432,10 @@ class ClickOutsideDirective {
|
|
|
3381
3432
|
ngOnDestroy() {
|
|
3382
3433
|
this._subscription?.unsubscribe();
|
|
3383
3434
|
}
|
|
3384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3385
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3435
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3436
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3386
3437
|
}
|
|
3387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3388
3439
|
type: Directive,
|
|
3389
3440
|
args: [{
|
|
3390
3441
|
selector: '[etClickOutside]',
|
|
@@ -3538,10 +3589,10 @@ class CursorDragScrollDirective {
|
|
|
3538
3589
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
3539
3590
|
}
|
|
3540
3591
|
}
|
|
3541
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3542
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3592
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3593
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
3543
3594
|
}
|
|
3544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
3545
3596
|
type: Directive,
|
|
3546
3597
|
args: [{
|
|
3547
3598
|
selector: '[etCursorDragScroll]',
|
|
@@ -3574,15 +3625,15 @@ class DebugDirective {
|
|
|
3574
3625
|
set sDebug(value) {
|
|
3575
3626
|
this._debug.set(value);
|
|
3576
3627
|
}
|
|
3577
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3578
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3629
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
3579
3630
|
{
|
|
3580
3631
|
provide: DEBUG_TOKEN,
|
|
3581
3632
|
useExisting: DebugDirective,
|
|
3582
3633
|
},
|
|
3583
3634
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
3584
3635
|
}
|
|
3585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: DebugDirective, decorators: [{
|
|
3586
3637
|
type: Directive,
|
|
3587
3638
|
args: [{
|
|
3588
3639
|
selector: '[etDebug]',
|
|
@@ -3629,15 +3680,15 @@ class DelayableDirective {
|
|
|
3629
3680
|
}
|
|
3630
3681
|
this._isDelayed$.next(val);
|
|
3631
3682
|
}
|
|
3632
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3633
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3684
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
3634
3685
|
{
|
|
3635
3686
|
provide: DELAYABLE_TOKEN,
|
|
3636
3687
|
useExisting: DelayableDirective,
|
|
3637
3688
|
},
|
|
3638
3689
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
3639
3690
|
}
|
|
3640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
3641
3692
|
type: Directive,
|
|
3642
3693
|
args: [{
|
|
3643
3694
|
selector: '[etDelayable]',
|
|
@@ -3658,15 +3709,15 @@ class IsActiveElementDirective {
|
|
|
3658
3709
|
this.elementRef = inject(ElementRef);
|
|
3659
3710
|
this.isActiveElement = false;
|
|
3660
3711
|
}
|
|
3661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3662
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3712
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3713
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
3663
3714
|
{
|
|
3664
3715
|
provide: IS_ACTIVE_ELEMENT,
|
|
3665
3716
|
useExisting: IsActiveElementDirective,
|
|
3666
3717
|
},
|
|
3667
3718
|
], ngImport: i0 }); }
|
|
3668
3719
|
}
|
|
3669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
3670
3721
|
type: Directive,
|
|
3671
3722
|
args: [{
|
|
3672
3723
|
selector: '[etIsActiveElement]',
|
|
@@ -3689,15 +3740,15 @@ class IsElementDirective {
|
|
|
3689
3740
|
this.elementRef = inject(ElementRef);
|
|
3690
3741
|
this.isElement = false;
|
|
3691
3742
|
}
|
|
3692
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3693
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3743
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3744
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
3694
3745
|
{
|
|
3695
3746
|
provide: IS_ELEMENT,
|
|
3696
3747
|
useExisting: IsElementDirective,
|
|
3697
3748
|
},
|
|
3698
3749
|
], ngImport: i0 }); }
|
|
3699
3750
|
}
|
|
3700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
3701
3752
|
type: Directive,
|
|
3702
3753
|
args: [{
|
|
3703
3754
|
selector: '[etIsElement]',
|
|
@@ -3746,10 +3797,10 @@ class LetDirective {
|
|
|
3746
3797
|
}
|
|
3747
3798
|
}
|
|
3748
3799
|
}
|
|
3749
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3750
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3800
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3801
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
3751
3802
|
}
|
|
3752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: LetDirective, decorators: [{
|
|
3753
3804
|
type: Directive,
|
|
3754
3805
|
args: [{
|
|
3755
3806
|
selector: '[etLet]',
|
|
@@ -3801,10 +3852,10 @@ class ObserveContentDirective {
|
|
|
3801
3852
|
_unsubscribe() {
|
|
3802
3853
|
this._currentSubscription?.unsubscribe();
|
|
3803
3854
|
}
|
|
3804
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3805
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3855
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3856
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
3806
3857
|
}
|
|
3807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
3808
3859
|
type: Directive,
|
|
3809
3860
|
args: [{
|
|
3810
3861
|
selector: '[etObserveContent]',
|
|
@@ -3829,10 +3880,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
3829
3880
|
constructor() {
|
|
3830
3881
|
this.isFirstElement = false;
|
|
3831
3882
|
}
|
|
3832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3833
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3883
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3884
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
3834
3885
|
}
|
|
3835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
3836
3887
|
type: Directive,
|
|
3837
3888
|
args: [{
|
|
3838
3889
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -3848,10 +3899,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
3848
3899
|
|
|
3849
3900
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
3850
3901
|
class ScrollObserverIgnoreTargetDirective {
|
|
3851
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3852
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
3902
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3903
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
3853
3904
|
}
|
|
3854
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
3855
3906
|
type: Directive,
|
|
3856
3907
|
args: [{
|
|
3857
3908
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -3867,10 +3918,10 @@ class ScrollObserverLastElementDirective {
|
|
|
3867
3918
|
constructor() {
|
|
3868
3919
|
this.isLastElement = false;
|
|
3869
3920
|
}
|
|
3870
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
3871
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
3921
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3922
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", 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 }); }
|
|
3872
3923
|
}
|
|
3873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
3924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
3874
3925
|
type: Directive,
|
|
3875
3926
|
args: [{
|
|
3876
3927
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -4027,15 +4078,15 @@ class ObserveScrollStateDirective {
|
|
|
4027
4078
|
}
|
|
4028
4079
|
return element;
|
|
4029
4080
|
}
|
|
4030
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4031
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.
|
|
4081
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4082
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.3.3", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
4032
4083
|
{
|
|
4033
4084
|
provide: OBSERVE_SCROLL_STATE,
|
|
4034
4085
|
useExisting: ObserveScrollStateDirective,
|
|
4035
4086
|
},
|
|
4036
4087
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
4037
4088
|
}
|
|
4038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
4039
4090
|
type: Directive,
|
|
4040
4091
|
args: [{
|
|
4041
4092
|
selector: '[etObserveScrollState]',
|
|
@@ -4105,15 +4156,15 @@ class ObserveVisibilityDirective {
|
|
|
4105
4156
|
}))
|
|
4106
4157
|
.subscribe();
|
|
4107
4158
|
}
|
|
4108
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4109
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4159
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4160
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
4110
4161
|
{
|
|
4111
4162
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
4112
4163
|
useExisting: ObserveVisibilityDirective,
|
|
4113
4164
|
},
|
|
4114
4165
|
], ngImport: i0 }); }
|
|
4115
4166
|
}
|
|
4116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
4117
4168
|
type: Directive,
|
|
4118
4169
|
args: [{
|
|
4119
4170
|
selector: '[etObserveVisibility]',
|
|
@@ -4151,10 +4202,10 @@ class RepeatDirective {
|
|
|
4151
4202
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
4152
4203
|
}
|
|
4153
4204
|
}
|
|
4154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4155
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4205
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4206
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
4156
4207
|
}
|
|
4157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
4158
4209
|
type: Directive,
|
|
4159
4210
|
args: [{
|
|
4160
4211
|
selector: '[etRepeat]',
|
|
@@ -4323,10 +4374,10 @@ class SeoDirective {
|
|
|
4323
4374
|
}
|
|
4324
4375
|
}
|
|
4325
4376
|
}
|
|
4326
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4327
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.
|
|
4377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4378
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.3", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4328
4379
|
}
|
|
4329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4330
4381
|
type: Directive,
|
|
4331
4382
|
args: [{
|
|
4332
4383
|
standalone: true,
|
|
@@ -4502,10 +4553,10 @@ class InferMimeTypePipe {
|
|
|
4502
4553
|
constructor() {
|
|
4503
4554
|
this.transform = inferMimeType;
|
|
4504
4555
|
}
|
|
4505
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4506
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4556
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4557
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
4507
4558
|
}
|
|
4508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
4509
4560
|
type: Pipe,
|
|
4510
4561
|
args: [{
|
|
4511
4562
|
name: 'inferMimeType',
|
|
@@ -4551,10 +4602,10 @@ class NormalizeGameResultTypePipe {
|
|
|
4551
4602
|
constructor() {
|
|
4552
4603
|
this.transform = normalizeGameResultType;
|
|
4553
4604
|
}
|
|
4554
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4555
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4605
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4606
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
4556
4607
|
}
|
|
4557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
4558
4609
|
type: Pipe,
|
|
4559
4610
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
4560
4611
|
}] });
|
|
@@ -4582,10 +4633,10 @@ class NormalizeMatchStatePipe {
|
|
|
4582
4633
|
constructor() {
|
|
4583
4634
|
this.transform = normalizeMatchState;
|
|
4584
4635
|
}
|
|
4585
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4586
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4636
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4637
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
4587
4638
|
}
|
|
4588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
4589
4640
|
type: Pipe,
|
|
4590
4641
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
4591
4642
|
}] });
|
|
@@ -4640,10 +4691,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
4640
4691
|
constructor() {
|
|
4641
4692
|
this.transform = normalizeMatchParticipants;
|
|
4642
4693
|
}
|
|
4643
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4644
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4694
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4695
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
4645
4696
|
}
|
|
4646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
4647
4698
|
type: Pipe,
|
|
4648
4699
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
4649
4700
|
}] });
|
|
@@ -4777,10 +4828,10 @@ class NormalizeMatchScorePipe {
|
|
|
4777
4828
|
constructor() {
|
|
4778
4829
|
this.transform = normalizeMatchScore;
|
|
4779
4830
|
}
|
|
4780
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4781
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4831
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4832
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
4782
4833
|
}
|
|
4783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
4784
4835
|
type: Pipe,
|
|
4785
4836
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
4786
4837
|
}] });
|
|
@@ -4827,10 +4878,10 @@ class NormalizeMatchTypePipe {
|
|
|
4827
4878
|
constructor() {
|
|
4828
4879
|
this.transform = normalizeMatchType;
|
|
4829
4880
|
}
|
|
4830
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4831
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4881
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4882
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
4832
4883
|
}
|
|
4833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
4834
4885
|
type: Pipe,
|
|
4835
4886
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
4836
4887
|
}] });
|
|
@@ -4844,10 +4895,10 @@ class ToArrayPipe {
|
|
|
4844
4895
|
constructor() {
|
|
4845
4896
|
this.transform = toArray;
|
|
4846
4897
|
}
|
|
4847
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
4848
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.
|
|
4898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4899
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
4849
4900
|
}
|
|
4850
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
4901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
4851
4902
|
type: Pipe,
|
|
4852
4903
|
args: [{ name: 'toArray', standalone: true }]
|
|
4853
4904
|
}] });
|
|
@@ -5065,10 +5116,10 @@ class PropsDirective {
|
|
|
5065
5116
|
});
|
|
5066
5117
|
});
|
|
5067
5118
|
}
|
|
5068
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.
|
|
5069
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.
|
|
5119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PropsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5120
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "17.3.3", type: PropsDirective, isStandalone: true, selector: "[etProps]", inputs: { props: { classPropertyName: "props", publicName: "etProps", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
5070
5121
|
}
|
|
5071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.
|
|
5122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PropsDirective, decorators: [{
|
|
5072
5123
|
type: Directive,
|
|
5073
5124
|
args: [{
|
|
5074
5125
|
selector: '[etProps]',
|
|
@@ -5201,5 +5252,5 @@ const Validators = {
|
|
|
5201
5252
|
* Generated bundle index. Do not edit.
|
|
5202
5253
|
*/
|
|
5203
5254
|
|
|
5204
|
-
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 };
|
|
5255
|
+
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, getObjectProperty, hasCookie, inferMimeType, injectHostElement, injectTemplateRef, isArray, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObject, 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 };
|
|
5205
5256
|
//# sourceMappingURL=ethlete-core.mjs.map
|