@ethlete/core 3.1.0 → 3.3.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/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-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/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/repeat/repeat.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/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/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/types/public-api.mjs +2 -1
- package/esm2022/lib/types/value.types.mjs +2 -0
- package/esm2022/lib/utils/key-press-manager.utils.mjs +30 -0
- package/esm2022/lib/utils/public-api.mjs +3 -1
- package/esm2022/lib/utils/runtime-error.utils.mjs +9 -6
- package/esm2022/lib/utils/selection-model.utils.mjs +27 -19
- package/esm2022/lib/utils/value.utils.mjs +22 -0
- package/fesm2022/ethlete-core.mjs +186 -124
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/types/public-api.d.ts +1 -0
- package/lib/types/value.types.d.ts +2 -0
- package/lib/utils/key-press-manager.utils.d.ts +9 -0
- package/lib/utils/public-api.d.ts +2 -0
- package/lib/utils/runtime-error.utils.d.ts +4 -2
- package/lib/utils/selection-model.utils.d.ts +27 -12
- package/lib/utils/value.utils.d.ts +4 -0
- package/package.json +5 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isDevMode, Directive, Injectable, NgZone, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe, QueryList } from '@angular/core';
|
|
3
3
|
import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
|
|
4
|
-
import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, Observable, combineLatest, startWith, map, distinctUntilChanged, shareReplay, skip, take, debounceTime, merge, fromEvent, filter, pairwise, finalize } from 'rxjs';
|
|
4
|
+
import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, Observable, combineLatest, timer, startWith, map, distinctUntilChanged, shareReplay, skip, take, debounceTime, merge, fromEvent, filter, pairwise, finalize } from 'rxjs';
|
|
5
5
|
import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
|
|
6
6
|
import { coerceCssPixelValue, coerceElement } from '@angular/cdk/coercion';
|
|
7
7
|
import { supportsScrollBehavior } from '@angular/cdk/platform';
|
|
@@ -26,10 +26,10 @@ class StructuredDataComponent {
|
|
|
26
26
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
27
27
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
28
28
|
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
30
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", 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 }); }
|
|
31
31
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
33
33
|
type: Component,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: 'et-structured-data',
|
|
@@ -545,6 +545,35 @@ const equal = (foo, bar) => {
|
|
|
545
545
|
return foo !== foo && bar !== bar;
|
|
546
546
|
};
|
|
547
547
|
|
|
548
|
+
class KeyPressManager {
|
|
549
|
+
constructor(key) {
|
|
550
|
+
this.key = key;
|
|
551
|
+
this._isKeyPressed$ = new BehaviorSubject(false);
|
|
552
|
+
this._keyPressCount$ = new BehaviorSubject(0);
|
|
553
|
+
this._stopTimeout$ = new Subject();
|
|
554
|
+
}
|
|
555
|
+
isPressed(event) {
|
|
556
|
+
const key = event.keyCode;
|
|
557
|
+
if (key === this.key) {
|
|
558
|
+
this._isKeyPressed$.next(this._keyPressCount$.value > 1);
|
|
559
|
+
this._keyPressCount$.next(this._keyPressCount$.value + 1);
|
|
560
|
+
this._stopTimeout$.next();
|
|
561
|
+
timer(100)
|
|
562
|
+
.pipe(takeUntil(this._stopTimeout$))
|
|
563
|
+
.subscribe(() => this.clear());
|
|
564
|
+
}
|
|
565
|
+
else {
|
|
566
|
+
this.clear();
|
|
567
|
+
}
|
|
568
|
+
return this._isKeyPressed$.value;
|
|
569
|
+
}
|
|
570
|
+
clear() {
|
|
571
|
+
this._isKeyPressed$.next(false);
|
|
572
|
+
this._keyPressCount$.next(0);
|
|
573
|
+
this._stopTimeout$.next();
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
|
|
548
577
|
const createMediaQueryObservable = (query) => {
|
|
549
578
|
const mq = window.matchMedia(query);
|
|
550
579
|
const observable = new Observable((observer) => {
|
|
@@ -712,12 +741,14 @@ const round = (value, precision = 0) => {
|
|
|
712
741
|
return Math.round(value * multiplier) / multiplier;
|
|
713
742
|
};
|
|
714
743
|
|
|
744
|
+
const RUNTIME_ERROR_NO_DATA = '__ET_NO_DATA__';
|
|
715
745
|
class RuntimeError extends Error {
|
|
716
|
-
constructor(code, message, data =
|
|
717
|
-
super(formatRuntimeError(code, message));
|
|
746
|
+
constructor(code, message, devOnly = false, data = RUNTIME_ERROR_NO_DATA) {
|
|
747
|
+
super(formatRuntimeError(code, message, devOnly));
|
|
718
748
|
this.code = code;
|
|
749
|
+
this.devOnly = devOnly;
|
|
719
750
|
this.data = data;
|
|
720
|
-
if (data !==
|
|
751
|
+
if (data !== RUNTIME_ERROR_NO_DATA) {
|
|
721
752
|
try {
|
|
722
753
|
const _data = clone(data);
|
|
723
754
|
setTimeout(() => {
|
|
@@ -732,11 +763,12 @@ class RuntimeError extends Error {
|
|
|
732
763
|
}
|
|
733
764
|
}
|
|
734
765
|
}
|
|
735
|
-
function formatRuntimeError(code, message) {
|
|
766
|
+
function formatRuntimeError(code, message, devOnly) {
|
|
736
767
|
// prefix code with zeros if it's less than 100
|
|
737
768
|
const codeWithZeros = code < 10 ? `00${code}` : code < 100 ? `0${code}` : code;
|
|
738
769
|
const fullCode = `ET${codeWithZeros}`;
|
|
739
|
-
|
|
770
|
+
const devOnlyText = devOnly ? ' [DEV ONLY] ' : '';
|
|
771
|
+
return `${devOnlyText}${fullCode}${message ? ': ' + message : ''}`;
|
|
740
772
|
}
|
|
741
773
|
|
|
742
774
|
const elementCanScroll = (element) => {
|
|
@@ -875,12 +907,12 @@ class SelectionModel {
|
|
|
875
907
|
this._filter$ = new BehaviorSubject('');
|
|
876
908
|
this.value$ = combineLatest([this.selection$, this.valueBinding$, this.allowMultiple$]).pipe(map(([selection, valueBinding, allowMultiple]) => {
|
|
877
909
|
if (allowMultiple) {
|
|
878
|
-
return selection.map((option) => this.
|
|
910
|
+
return selection.map((option) => this.execFnOrGetOptionProperty(option, valueBinding));
|
|
879
911
|
}
|
|
880
912
|
const [option] = selection;
|
|
881
913
|
if (!option)
|
|
882
914
|
return null;
|
|
883
|
-
return this.
|
|
915
|
+
return this.execFnOrGetOptionProperty(option, valueBinding);
|
|
884
916
|
}));
|
|
885
917
|
this.filteredOptions$ = combineLatest([this.options$, this.filter$, this.labelBinding$]).pipe(map(([options, filter]) => this.getFilteredOptions(filter, options)), shareReplay({ bufferSize: 1, refCount: true }));
|
|
886
918
|
this._optionsAndSelection$ = combineLatest([this._options$, this._selection$]);
|
|
@@ -934,16 +966,16 @@ class SelectionModel {
|
|
|
934
966
|
this._selection$.next(selection);
|
|
935
967
|
return this;
|
|
936
968
|
}
|
|
937
|
-
setValueBinding(
|
|
938
|
-
this._valueBinding$.next(
|
|
969
|
+
setValueBinding(fnOrPropertyPath) {
|
|
970
|
+
this._valueBinding$.next(fnOrPropertyPath);
|
|
939
971
|
return this;
|
|
940
972
|
}
|
|
941
|
-
setKeyBinding(
|
|
942
|
-
this._keyBinding$.next(
|
|
973
|
+
setKeyBinding(fnOrPropertyPath) {
|
|
974
|
+
this._keyBinding$.next(fnOrPropertyPath);
|
|
943
975
|
return this;
|
|
944
976
|
}
|
|
945
|
-
setLabelBinding(
|
|
946
|
-
this._labelBinding$.next(
|
|
977
|
+
setLabelBinding(fnOrPropertyPath) {
|
|
978
|
+
this._labelBinding$.next(fnOrPropertyPath);
|
|
947
979
|
return this;
|
|
948
980
|
}
|
|
949
981
|
setOptions(options) {
|
|
@@ -979,13 +1011,13 @@ class SelectionModel {
|
|
|
979
1011
|
return this._selection$.pipe(map(() => this.isSelected(option)));
|
|
980
1012
|
}
|
|
981
1013
|
getLabel$(option) {
|
|
982
|
-
return this.labelBinding$.pipe(map((labelBinding) => this.
|
|
1014
|
+
return this.labelBinding$.pipe(map((labelBinding) => this.execFnOrGetOptionProperty(option, labelBinding)));
|
|
983
1015
|
}
|
|
984
1016
|
getValue$(option) {
|
|
985
|
-
return this.valueBinding$.pipe(map((valueBinding) => this.
|
|
1017
|
+
return this.valueBinding$.pipe(map((valueBinding) => this.execFnOrGetOptionProperty(option, valueBinding)));
|
|
986
1018
|
}
|
|
987
1019
|
getKey$(option) {
|
|
988
|
-
return this.keyBinding$.pipe(map((keyBinding) => this.
|
|
1020
|
+
return this.keyBinding$.pipe(map((keyBinding) => this.execFnOrGetOptionProperty(option, keyBinding)));
|
|
989
1021
|
}
|
|
990
1022
|
getOptionByValue(value) {
|
|
991
1023
|
return this.getOption(value, this.valueBinding);
|
|
@@ -1003,7 +1035,7 @@ class SelectionModel {
|
|
|
1003
1035
|
return options.find((option) => {
|
|
1004
1036
|
if (!isObject(option))
|
|
1005
1037
|
return false;
|
|
1006
|
-
return
|
|
1038
|
+
return this.execFnOrGetOptionProperty(option, propertyPath) === value;
|
|
1007
1039
|
});
|
|
1008
1040
|
}
|
|
1009
1041
|
getOptionByIndex(index, options = this.getFilteredOptions()) {
|
|
@@ -1066,13 +1098,21 @@ class SelectionModel {
|
|
|
1066
1098
|
return this.getOptionByOffset(index, offset, this.getFilteredOptions(), config);
|
|
1067
1099
|
}
|
|
1068
1100
|
getLabel(option) {
|
|
1069
|
-
return this.
|
|
1101
|
+
return this.execFnOrGetOptionProperty(option, this.labelBinding);
|
|
1070
1102
|
}
|
|
1071
1103
|
getValue(option) {
|
|
1072
|
-
return this.
|
|
1104
|
+
return this.execFnOrGetOptionProperty(option, this.valueBinding);
|
|
1073
1105
|
}
|
|
1074
1106
|
getKey(option) {
|
|
1075
|
-
return this.
|
|
1107
|
+
return this.execFnOrGetOptionProperty(option, this.keyBinding);
|
|
1108
|
+
}
|
|
1109
|
+
execFnOrGetOptionProperty(option, fnOrPropertyPath) {
|
|
1110
|
+
if (!fnOrPropertyPath || !isObject(option))
|
|
1111
|
+
return option;
|
|
1112
|
+
if (typeof fnOrPropertyPath === 'function') {
|
|
1113
|
+
return fnOrPropertyPath(option);
|
|
1114
|
+
}
|
|
1115
|
+
return getObjectProperty(option, fnOrPropertyPath);
|
|
1076
1116
|
}
|
|
1077
1117
|
getOptionProperty(option, propertyPath) {
|
|
1078
1118
|
if (!propertyPath || !isObject(option))
|
|
@@ -1080,7 +1120,7 @@ class SelectionModel {
|
|
|
1080
1120
|
return getObjectProperty(option, propertyPath);
|
|
1081
1121
|
}
|
|
1082
1122
|
isSelected(option) {
|
|
1083
|
-
const optionKey = this.
|
|
1123
|
+
const optionKey = this.execFnOrGetOptionProperty(option, this.keyBinding);
|
|
1084
1124
|
return this.getOption(optionKey, this.keyBinding, this.selection) !== undefined;
|
|
1085
1125
|
}
|
|
1086
1126
|
getFilteredOptions(filter = this.filter, options = this.options) {
|
|
@@ -1106,11 +1146,11 @@ class SelectionModel {
|
|
|
1106
1146
|
}
|
|
1107
1147
|
}
|
|
1108
1148
|
removeSelectedOption(option) {
|
|
1109
|
-
const optionKey = this.
|
|
1149
|
+
const optionKey = this.execFnOrGetOptionProperty(option, this.keyBinding);
|
|
1110
1150
|
if (!this.isSelected(option))
|
|
1111
1151
|
return;
|
|
1112
1152
|
this._selection$.next(this.selection.filter((selectedOption) => {
|
|
1113
|
-
const key = this.
|
|
1153
|
+
const key = this.execFnOrGetOptionProperty(selectedOption, this.keyBinding);
|
|
1114
1154
|
return key !== optionKey;
|
|
1115
1155
|
}));
|
|
1116
1156
|
}
|
|
@@ -1206,6 +1246,28 @@ class SmartBlockScrollStrategy {
|
|
|
1206
1246
|
}
|
|
1207
1247
|
}
|
|
1208
1248
|
|
|
1249
|
+
const isPrimitiveArray = (value) => {
|
|
1250
|
+
if (!Array.isArray(value))
|
|
1251
|
+
return false;
|
|
1252
|
+
const first = value[0];
|
|
1253
|
+
const last = value[value.length - 1];
|
|
1254
|
+
if (!first || !last)
|
|
1255
|
+
return false;
|
|
1256
|
+
return typeof first !== 'object' && typeof last !== 'object';
|
|
1257
|
+
};
|
|
1258
|
+
const isObjectArray = (value) => {
|
|
1259
|
+
if (!Array.isArray(value))
|
|
1260
|
+
return false;
|
|
1261
|
+
const first = value[0];
|
|
1262
|
+
const last = value[value.length - 1];
|
|
1263
|
+
if (!first || !last)
|
|
1264
|
+
return false;
|
|
1265
|
+
return typeof first === 'object' && typeof last === 'object' && !Array.isArray(first) && !Array.isArray(last);
|
|
1266
|
+
};
|
|
1267
|
+
const isEmptyArray = (value) => {
|
|
1268
|
+
return Array.isArray(value) && value.length === 0;
|
|
1269
|
+
};
|
|
1270
|
+
|
|
1209
1271
|
const provideViewportConfig = (viewportConfig) => {
|
|
1210
1272
|
return { provide: VIEWPORT_CONFIG, useValue: viewportConfig };
|
|
1211
1273
|
};
|
|
@@ -1293,15 +1355,15 @@ class AnimatableDirective {
|
|
|
1293
1355
|
.subscribe();
|
|
1294
1356
|
}
|
|
1295
1357
|
}
|
|
1296
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1297
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1359
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1298
1360
|
{
|
|
1299
1361
|
provide: ANIMATABLE_TOKEN,
|
|
1300
1362
|
useExisting: AnimatableDirective,
|
|
1301
1363
|
},
|
|
1302
1364
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1303
1365
|
}
|
|
1304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1305
1367
|
type: Directive,
|
|
1306
1368
|
args: [{
|
|
1307
1369
|
selector: '[etAnimatable]',
|
|
@@ -1402,15 +1464,15 @@ class AnimatedLifecycleDirective {
|
|
|
1402
1464
|
}), takeUntil(this._destroy$), take(1))
|
|
1403
1465
|
.subscribe();
|
|
1404
1466
|
}
|
|
1405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1406
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1467
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1468
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1407
1469
|
{
|
|
1408
1470
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1409
1471
|
useExisting: AnimatedLifecycleDirective,
|
|
1410
1472
|
},
|
|
1411
1473
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1412
1474
|
}
|
|
1413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1414
1476
|
type: Directive,
|
|
1415
1477
|
args: [{
|
|
1416
1478
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -1431,10 +1493,10 @@ class ClickObserverFactory {
|
|
|
1431
1493
|
create() {
|
|
1432
1494
|
return fromEvent(document, 'click');
|
|
1433
1495
|
}
|
|
1434
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1435
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1496
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1497
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1436
1498
|
}
|
|
1437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1438
1500
|
type: Injectable,
|
|
1439
1501
|
args: [{ providedIn: 'root' }]
|
|
1440
1502
|
}] });
|
|
@@ -1487,10 +1549,10 @@ class ClickObserverService {
|
|
|
1487
1549
|
this._observedElements.delete(element);
|
|
1488
1550
|
}
|
|
1489
1551
|
}
|
|
1490
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1491
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1552
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1553
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1492
1554
|
}
|
|
1493
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1494
1556
|
type: Injectable,
|
|
1495
1557
|
args: [{ providedIn: 'root' }]
|
|
1496
1558
|
}] });
|
|
@@ -1500,10 +1562,10 @@ class MutationObserverFactory {
|
|
|
1500
1562
|
create(callback) {
|
|
1501
1563
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1502
1564
|
}
|
|
1503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1566
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1505
1567
|
}
|
|
1506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1507
1569
|
type: Injectable,
|
|
1508
1570
|
args: [{ providedIn: 'root' }]
|
|
1509
1571
|
}] });
|
|
@@ -1562,10 +1624,10 @@ class ContentObserverService {
|
|
|
1562
1624
|
this._observedElements.delete(element);
|
|
1563
1625
|
}
|
|
1564
1626
|
}
|
|
1565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1566
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1627
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1628
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1567
1629
|
}
|
|
1568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1630
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1569
1631
|
type: Injectable,
|
|
1570
1632
|
args: [{ providedIn: 'root' }]
|
|
1571
1633
|
}] });
|
|
@@ -1591,10 +1653,10 @@ class FocusVisibleService {
|
|
|
1591
1653
|
onPointerDown() {
|
|
1592
1654
|
this._hadKeyboardEvent = false;
|
|
1593
1655
|
}
|
|
1594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1595
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1656
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1657
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1596
1658
|
}
|
|
1597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1598
1660
|
type: Injectable,
|
|
1599
1661
|
args: [{
|
|
1600
1662
|
providedIn: 'root',
|
|
@@ -1606,10 +1668,10 @@ class ResizeObserverFactory {
|
|
|
1606
1668
|
create(callback) {
|
|
1607
1669
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1608
1670
|
}
|
|
1609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1610
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1672
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1611
1673
|
}
|
|
1612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1613
1675
|
type: Injectable,
|
|
1614
1676
|
args: [{ providedIn: 'root' }]
|
|
1615
1677
|
}] });
|
|
@@ -1664,10 +1726,10 @@ class ResizeObserverService {
|
|
|
1664
1726
|
this._observedElements.delete(element);
|
|
1665
1727
|
}
|
|
1666
1728
|
}
|
|
1667
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1668
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1730
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1669
1731
|
}
|
|
1670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1671
1733
|
type: Injectable,
|
|
1672
1734
|
args: [{ providedIn: 'root' }]
|
|
1673
1735
|
}] });
|
|
@@ -1835,10 +1897,10 @@ class RouterStateService {
|
|
|
1835
1897
|
}
|
|
1836
1898
|
return changes;
|
|
1837
1899
|
}
|
|
1838
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1839
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1900
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1901
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
1840
1902
|
}
|
|
1841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, decorators: [{
|
|
1842
1904
|
type: Injectable,
|
|
1843
1905
|
args: [{
|
|
1844
1906
|
providedIn: 'root',
|
|
@@ -2048,8 +2110,8 @@ class ViewportService {
|
|
|
2048
2110
|
}
|
|
2049
2111
|
return 'xs';
|
|
2050
2112
|
}
|
|
2051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2052
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
2113
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2114
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2053
2115
|
}
|
|
2054
2116
|
__decorate([
|
|
2055
2117
|
Memo(),
|
|
@@ -2067,7 +2129,7 @@ __decorate([
|
|
|
2067
2129
|
__metadata("design:paramtypes", [Object]),
|
|
2068
2130
|
__metadata("design:returntype", void 0)
|
|
2069
2131
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, decorators: [{
|
|
2071
2133
|
type: Injectable,
|
|
2072
2134
|
args: [{
|
|
2073
2135
|
providedIn: 'root',
|
|
@@ -2116,10 +2178,10 @@ class ObserveResizeDirective {
|
|
|
2116
2178
|
_unsubscribe() {
|
|
2117
2179
|
this._currentSubscription?.unsubscribe();
|
|
2118
2180
|
}
|
|
2119
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2120
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2182
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2121
2183
|
}
|
|
2122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2123
2185
|
type: Directive,
|
|
2124
2186
|
args: [{
|
|
2125
2187
|
selector: '[etObserveResize]',
|
|
@@ -2373,10 +2435,10 @@ class AnimatedOverlayDirective {
|
|
|
2373
2435
|
this._isUnmounting$.next(false);
|
|
2374
2436
|
this._afterClosed?.next();
|
|
2375
2437
|
}
|
|
2376
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2377
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2439
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
|
|
2378
2440
|
}
|
|
2379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
2380
2442
|
type: Directive,
|
|
2381
2443
|
args: [{
|
|
2382
2444
|
standalone: true,
|
|
@@ -2422,10 +2484,10 @@ class ClickOutsideDirective {
|
|
|
2422
2484
|
ngOnDestroy() {
|
|
2423
2485
|
this._subscription?.unsubscribe();
|
|
2424
2486
|
}
|
|
2425
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2426
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2487
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2488
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
2427
2489
|
}
|
|
2428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
2429
2491
|
type: Directive,
|
|
2430
2492
|
args: [{
|
|
2431
2493
|
selector: '[etClickOutside]',
|
|
@@ -2579,10 +2641,10 @@ class CursorDragScrollDirective {
|
|
|
2579
2641
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
2580
2642
|
}
|
|
2581
2643
|
}
|
|
2582
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2583
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2644
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2645
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
2584
2646
|
}
|
|
2585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
2586
2648
|
type: Directive,
|
|
2587
2649
|
args: [{
|
|
2588
2650
|
selector: '[etCursorDragScroll]',
|
|
@@ -2631,15 +2693,15 @@ class DelayableDirective {
|
|
|
2631
2693
|
}
|
|
2632
2694
|
this._isDelayed$.next(val);
|
|
2633
2695
|
}
|
|
2634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2635
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2697
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
2636
2698
|
{
|
|
2637
2699
|
provide: DELAYABLE_TOKEN,
|
|
2638
2700
|
useExisting: DelayableDirective,
|
|
2639
2701
|
},
|
|
2640
2702
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
2641
2703
|
}
|
|
2642
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
2643
2705
|
type: Directive,
|
|
2644
2706
|
args: [{
|
|
2645
2707
|
selector: '[etDelayable]',
|
|
@@ -2660,15 +2722,15 @@ class IsActiveElementDirective {
|
|
|
2660
2722
|
this.elementRef = inject(ElementRef);
|
|
2661
2723
|
this.isActiveElement = false;
|
|
2662
2724
|
}
|
|
2663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2664
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2725
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2726
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
2665
2727
|
{
|
|
2666
2728
|
provide: IS_ACTIVE_ELEMENT,
|
|
2667
2729
|
useExisting: IsActiveElementDirective,
|
|
2668
2730
|
},
|
|
2669
2731
|
], ngImport: i0 }); }
|
|
2670
2732
|
}
|
|
2671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
2672
2734
|
type: Directive,
|
|
2673
2735
|
args: [{
|
|
2674
2736
|
selector: '[etIsActiveElement]',
|
|
@@ -2691,15 +2753,15 @@ class IsElementDirective {
|
|
|
2691
2753
|
this.elementRef = inject(ElementRef);
|
|
2692
2754
|
this.isElement = false;
|
|
2693
2755
|
}
|
|
2694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2695
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2756
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2757
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
2696
2758
|
{
|
|
2697
2759
|
provide: IS_ELEMENT,
|
|
2698
2760
|
useExisting: IsElementDirective,
|
|
2699
2761
|
},
|
|
2700
2762
|
], ngImport: i0 }); }
|
|
2701
2763
|
}
|
|
2702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
2703
2765
|
type: Directive,
|
|
2704
2766
|
args: [{
|
|
2705
2767
|
selector: '[etIsElement]',
|
|
@@ -2748,10 +2810,10 @@ class LetDirective {
|
|
|
2748
2810
|
}
|
|
2749
2811
|
}
|
|
2750
2812
|
}
|
|
2751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2752
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2813
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2814
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
2753
2815
|
}
|
|
2754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: LetDirective, decorators: [{
|
|
2755
2817
|
type: Directive,
|
|
2756
2818
|
args: [{
|
|
2757
2819
|
selector: '[etLet]',
|
|
@@ -2803,10 +2865,10 @@ class ObserveContentDirective {
|
|
|
2803
2865
|
_unsubscribe() {
|
|
2804
2866
|
this._currentSubscription?.unsubscribe();
|
|
2805
2867
|
}
|
|
2806
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2807
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2868
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2869
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
2808
2870
|
}
|
|
2809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
2810
2872
|
type: Directive,
|
|
2811
2873
|
args: [{
|
|
2812
2874
|
selector: '[etObserveContent]',
|
|
@@ -2829,10 +2891,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
2829
2891
|
constructor() {
|
|
2830
2892
|
this.isFirstElement = false;
|
|
2831
2893
|
}
|
|
2832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2833
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2894
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2895
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
2834
2896
|
}
|
|
2835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
2836
2898
|
type: Directive,
|
|
2837
2899
|
args: [{
|
|
2838
2900
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -2848,10 +2910,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.0", ngImpor
|
|
|
2848
2910
|
|
|
2849
2911
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
2850
2912
|
class ScrollObserverIgnoreTargetDirective {
|
|
2851
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2852
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2913
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2914
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
2853
2915
|
}
|
|
2854
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2916
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
2855
2917
|
type: Directive,
|
|
2856
2918
|
args: [{
|
|
2857
2919
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -2867,10 +2929,10 @@ class ScrollObserverLastElementDirective {
|
|
|
2867
2929
|
constructor() {
|
|
2868
2930
|
this.isLastElement = false;
|
|
2869
2931
|
}
|
|
2870
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2871
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2932
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2933
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", 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 }); }
|
|
2872
2934
|
}
|
|
2873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
2874
2936
|
type: Directive,
|
|
2875
2937
|
args: [{
|
|
2876
2938
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -3029,15 +3091,15 @@ class ObserveScrollStateDirective {
|
|
|
3029
3091
|
}
|
|
3030
3092
|
return element;
|
|
3031
3093
|
}
|
|
3032
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3033
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3095
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
3034
3096
|
{
|
|
3035
3097
|
provide: OBSERVE_SCROLL_STATE,
|
|
3036
3098
|
useExisting: ObserveScrollStateDirective,
|
|
3037
3099
|
},
|
|
3038
3100
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
3039
3101
|
}
|
|
3040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
3041
3103
|
type: Directive,
|
|
3042
3104
|
args: [{
|
|
3043
3105
|
selector: '[etObserveScrollState]',
|
|
@@ -3079,10 +3141,10 @@ class RepeatDirective {
|
|
|
3079
3141
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3080
3142
|
}
|
|
3081
3143
|
}
|
|
3082
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3083
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3144
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3145
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3084
3146
|
}
|
|
3085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3086
3148
|
type: Directive,
|
|
3087
3149
|
args: [{
|
|
3088
3150
|
selector: '[etRepeat]',
|
|
@@ -3251,10 +3313,10 @@ class SeoDirective {
|
|
|
3251
3313
|
}
|
|
3252
3314
|
}
|
|
3253
3315
|
}
|
|
3254
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3255
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3317
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
3256
3318
|
}
|
|
3257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SeoDirective, decorators: [{
|
|
3258
3320
|
type: Directive,
|
|
3259
3321
|
args: [{
|
|
3260
3322
|
standalone: true,
|
|
@@ -3300,10 +3362,10 @@ class NormalizeGameResultTypePipe {
|
|
|
3300
3362
|
constructor() {
|
|
3301
3363
|
this.transform = normalizeGameResultType;
|
|
3302
3364
|
}
|
|
3303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3304
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3366
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
3305
3367
|
}
|
|
3306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
3307
3369
|
type: Pipe,
|
|
3308
3370
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
3309
3371
|
}] });
|
|
@@ -3331,10 +3393,10 @@ class NormalizeMatchStatePipe {
|
|
|
3331
3393
|
constructor() {
|
|
3332
3394
|
this.transform = normalizeMatchState;
|
|
3333
3395
|
}
|
|
3334
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3335
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3396
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3397
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
3336
3398
|
}
|
|
3337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
3338
3400
|
type: Pipe,
|
|
3339
3401
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
3340
3402
|
}] });
|
|
@@ -3389,10 +3451,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
3389
3451
|
constructor() {
|
|
3390
3452
|
this.transform = normalizeMatchParticipants;
|
|
3391
3453
|
}
|
|
3392
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3393
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3454
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3455
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
3394
3456
|
}
|
|
3395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
3396
3458
|
type: Pipe,
|
|
3397
3459
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
3398
3460
|
}] });
|
|
@@ -3526,10 +3588,10 @@ class NormalizeMatchScorePipe {
|
|
|
3526
3588
|
constructor() {
|
|
3527
3589
|
this.transform = normalizeMatchScore;
|
|
3528
3590
|
}
|
|
3529
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3530
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3592
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
3531
3593
|
}
|
|
3532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
3533
3595
|
type: Pipe,
|
|
3534
3596
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
3535
3597
|
}] });
|
|
@@ -3576,10 +3638,10 @@ class NormalizeMatchTypePipe {
|
|
|
3576
3638
|
constructor() {
|
|
3577
3639
|
this.transform = normalizeMatchType;
|
|
3578
3640
|
}
|
|
3579
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3580
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3641
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3642
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
3581
3643
|
}
|
|
3582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
3583
3645
|
type: Pipe,
|
|
3584
3646
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
3585
3647
|
}] });
|
|
@@ -3593,10 +3655,10 @@ class ToArrayPipe {
|
|
|
3593
3655
|
constructor() {
|
|
3594
3656
|
this.transform = toArray;
|
|
3595
3657
|
}
|
|
3596
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3597
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3658
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3659
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
3598
3660
|
}
|
|
3599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
3600
3662
|
type: Pipe,
|
|
3601
3663
|
args: [{ name: 'toArray', standalone: true }]
|
|
3602
3664
|
}] });
|
|
@@ -3684,5 +3746,5 @@ const Validators = {
|
|
|
3684
3746
|
* Generated bundle index. Do not edit.
|
|
3685
3747
|
*/
|
|
3686
3748
|
|
|
3687
|
-
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, 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, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
|
|
3749
|
+
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, 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, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
|
|
3688
3750
|
//# sourceMappingURL=ethlete-core.mjs.map
|