@ethlete/core 3.4.0 → 3.5.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-if/animated-if.directive.mjs +54 -0
- package/esm2022/lib/directives/animated-if/public-api.mjs +2 -0
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +20 -4
- 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/public-api.mjs +2 -1
- 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 +17 -17
- package/esm2022/lib/utils/form.utils.mjs +40 -0
- package/esm2022/lib/utils/public-api.mjs +3 -1
- package/esm2022/lib/utils/resize-observable.util.mjs +12 -0
- package/esm2022/lib/utils/scrollable.utils.mjs +8 -2
- package/esm2022/lib/utils/smart-block-scroll-strategy.utils.mjs +35 -17
- package/fesm2022/ethlete-core.mjs +268 -131
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/animated-if/animated-if.directive.d.ts +12 -0
- package/lib/directives/animated-if/public-api.d.ts +1 -0
- package/lib/directives/animated-lifecycle/animated-lifecycle.directive.d.ts +9 -4
- package/lib/directives/public-api.d.ts +1 -0
- package/lib/services/viewport.service.d.ts +1 -1
- package/lib/utils/form.utils.d.ts +2 -0
- package/lib/utils/public-api.d.ts +2 -0
- package/lib/utils/resize-observable.util.d.ts +5 -0
- package/lib/utils/scrollable.utils.d.ts +1 -1
- package/lib/utils/smart-block-scroll-strategy.utils.d.ts +2 -0
- package/package.json +6 -6
|
@@ -1,14 +1,16 @@
|
|
|
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, timer, 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, takeWhile, pairwise, finalize } from 'rxjs';
|
|
5
5
|
import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
|
|
6
|
+
import { FormGroup, FormArray, FormControl } from '@angular/forms';
|
|
6
7
|
import { coerceCssPixelValue, coerceElement } from '@angular/cdk/coercion';
|
|
7
8
|
import { supportsScrollBehavior } from '@angular/cdk/platform';
|
|
9
|
+
import * as i1 from '@angular/common';
|
|
10
|
+
import { NgIf, DOCUMENT } from '@angular/common';
|
|
8
11
|
import { Overlay } from '@angular/cdk/overlay';
|
|
9
12
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
10
13
|
import { autoUpdate, computePosition, offset, flip, size, shift, limitShift, arrow, hide } from '@floating-ui/dom';
|
|
11
|
-
import { DOCUMENT } from '@angular/common';
|
|
12
14
|
import { Router, NavigationEnd } from '@angular/router';
|
|
13
15
|
import { __decorate, __metadata } from 'tslib';
|
|
14
16
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
@@ -26,10 +28,10 @@ class StructuredDataComponent {
|
|
|
26
28
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
27
29
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
28
30
|
}
|
|
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.
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", 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
33
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
33
35
|
type: Component,
|
|
34
36
|
args: [{
|
|
35
37
|
selector: 'et-structured-data',
|
|
@@ -545,6 +547,45 @@ const equal = (foo, bar) => {
|
|
|
545
547
|
return foo !== foo && bar !== bar;
|
|
546
548
|
};
|
|
547
549
|
|
|
550
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
551
|
+
const cloneFormGroup = (formGroup) => {
|
|
552
|
+
const cloneLevel = (group, cloneGroup) => {
|
|
553
|
+
Object.keys(group.controls).forEach((key) => {
|
|
554
|
+
const control = group.controls[key];
|
|
555
|
+
if (control instanceof FormGroup) {
|
|
556
|
+
const cloneControl = new FormGroup({}, control.validator, control.asyncValidator);
|
|
557
|
+
cloneGroup.addControl(key, cloneControl);
|
|
558
|
+
cloneLevel(control, cloneControl);
|
|
559
|
+
}
|
|
560
|
+
else if (control instanceof FormArray) {
|
|
561
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
562
|
+
const cloneArrayControl = new FormArray([], control.validator, control.asyncValidator);
|
|
563
|
+
control.controls.forEach((control) => {
|
|
564
|
+
if (control instanceof FormGroup) {
|
|
565
|
+
const cloneControl = new FormGroup({}, control.validator, control.asyncValidator);
|
|
566
|
+
const innerClone = cloneLevel(control, cloneControl);
|
|
567
|
+
cloneArrayControl.push(innerClone);
|
|
568
|
+
}
|
|
569
|
+
else {
|
|
570
|
+
const cloneControlItem = new FormControl({ value: control.value, disabled: control.disabled }, control.validator, control.asyncValidator);
|
|
571
|
+
cloneArrayControl.push(cloneControlItem);
|
|
572
|
+
}
|
|
573
|
+
});
|
|
574
|
+
cloneGroup.addControl(key, cloneArrayControl);
|
|
575
|
+
}
|
|
576
|
+
else {
|
|
577
|
+
const cloneControl = new FormControl({ value: control.value, disabled: control.disabled }, control.validator, control.asyncValidator);
|
|
578
|
+
cloneGroup.addControl(key, cloneControl);
|
|
579
|
+
}
|
|
580
|
+
});
|
|
581
|
+
return cloneGroup;
|
|
582
|
+
};
|
|
583
|
+
const clonedForm = cloneLevel(formGroup, new FormGroup({}));
|
|
584
|
+
clonedForm.setValue(formGroup.value);
|
|
585
|
+
clonedForm.updateValueAndValidity();
|
|
586
|
+
return clonedForm;
|
|
587
|
+
};
|
|
588
|
+
|
|
548
589
|
class KeyPressManager {
|
|
549
590
|
constructor(key) {
|
|
550
591
|
this.key = key;
|
|
@@ -736,6 +777,17 @@ const createReactiveBindings = (...values) => {
|
|
|
736
777
|
};
|
|
737
778
|
};
|
|
738
779
|
|
|
780
|
+
const createResizeObservable = (config) => {
|
|
781
|
+
const elements = Array.isArray(config.elements) ? config.elements : [config.elements];
|
|
782
|
+
return new Observable((obs) => {
|
|
783
|
+
const observer = new ResizeObserver((entries) => obs.next(entries));
|
|
784
|
+
for (const element of elements) {
|
|
785
|
+
observer.observe(element, config.options);
|
|
786
|
+
}
|
|
787
|
+
return () => observer.disconnect();
|
|
788
|
+
});
|
|
789
|
+
};
|
|
790
|
+
|
|
739
791
|
const round = (value, precision = 0) => {
|
|
740
792
|
const multiplier = Math.pow(10, precision);
|
|
741
793
|
return Math.round(value * multiplier) / multiplier;
|
|
@@ -771,8 +823,14 @@ function formatRuntimeError(code, message, devOnly) {
|
|
|
771
823
|
return `${devOnlyText}${fullCode}${message ? ': ' + message : ''}`;
|
|
772
824
|
}
|
|
773
825
|
|
|
774
|
-
const elementCanScroll = (element) => {
|
|
826
|
+
const elementCanScroll = (element, direction) => {
|
|
775
827
|
const { scrollHeight, clientHeight, scrollWidth, clientWidth } = element;
|
|
828
|
+
if (direction === 'x') {
|
|
829
|
+
return scrollWidth > clientWidth;
|
|
830
|
+
}
|
|
831
|
+
else if (direction === 'y') {
|
|
832
|
+
return scrollHeight > clientHeight;
|
|
833
|
+
}
|
|
776
834
|
return scrollHeight > clientHeight || scrollWidth > clientWidth;
|
|
777
835
|
};
|
|
778
836
|
const isElementVisible = (options) => {
|
|
@@ -1180,14 +1238,19 @@ class SelectionModel {
|
|
|
1180
1238
|
}
|
|
1181
1239
|
|
|
1182
1240
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1241
|
+
let _uniqueIdCounter = 0;
|
|
1242
|
+
const BLOCK_CLASS = 'cdk-global-scrollblock';
|
|
1243
|
+
const OVERSCROLL_CLASS = 'et-global-no-overscroll';
|
|
1183
1244
|
class SmartBlockScrollStrategy {
|
|
1184
1245
|
constructor(_viewportRuler, _routerState, document) {
|
|
1185
1246
|
this._viewportRuler = _viewportRuler;
|
|
1186
1247
|
this._routerState = _routerState;
|
|
1248
|
+
this._id = _uniqueIdCounter++;
|
|
1187
1249
|
this._previousHTMLStyles = { top: '', left: '' };
|
|
1188
1250
|
this._previousScrollPosition = { top: 0, left: 0 };
|
|
1189
1251
|
this._isEnabled = false;
|
|
1190
1252
|
this._urlSubscription = null;
|
|
1253
|
+
this._resizeSubscription = null;
|
|
1191
1254
|
this._didNavigate = false;
|
|
1192
1255
|
this._document = document;
|
|
1193
1256
|
}
|
|
@@ -1197,25 +1260,36 @@ class SmartBlockScrollStrategy {
|
|
|
1197
1260
|
enable() {
|
|
1198
1261
|
if (this._canBeEnabled()) {
|
|
1199
1262
|
const root = this._document.documentElement;
|
|
1200
|
-
|
|
1201
|
-
this.
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
.
|
|
1210
|
-
|
|
1263
|
+
root.classList.add(OVERSCROLL_CLASS);
|
|
1264
|
+
this._resizeSubscription = createResizeObservable({ elements: root })
|
|
1265
|
+
.pipe(startWith(null), tap(() => {
|
|
1266
|
+
if (this._isEnabled || !elementCanScroll(root) || !this._canBeEnabled())
|
|
1267
|
+
return;
|
|
1268
|
+
this._isEnabled = true;
|
|
1269
|
+
this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();
|
|
1270
|
+
this._didNavigate = false;
|
|
1271
|
+
this._previousHTMLStyles.left = root.style.left || '';
|
|
1272
|
+
this._previousHTMLStyles.top = root.style.top || '';
|
|
1273
|
+
root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);
|
|
1274
|
+
root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);
|
|
1275
|
+
root.classList.add(BLOCK_CLASS);
|
|
1276
|
+
this._urlSubscription = this._routerState.route$
|
|
1277
|
+
.pipe(skip(1), take(1), tap(() => {
|
|
1278
|
+
this._didNavigate = true;
|
|
1279
|
+
}))
|
|
1280
|
+
.subscribe();
|
|
1211
1281
|
}))
|
|
1212
1282
|
.subscribe();
|
|
1213
1283
|
}
|
|
1214
1284
|
}
|
|
1215
1285
|
disable() {
|
|
1286
|
+
this._urlSubscription?.unsubscribe();
|
|
1287
|
+
this._resizeSubscription?.unsubscribe();
|
|
1288
|
+
const html = this._document.documentElement;
|
|
1289
|
+
if (this._canBeEnabled()) {
|
|
1290
|
+
html.classList.remove(OVERSCROLL_CLASS);
|
|
1291
|
+
}
|
|
1216
1292
|
if (this._isEnabled) {
|
|
1217
|
-
this._urlSubscription?.unsubscribe();
|
|
1218
|
-
const html = this._document.documentElement;
|
|
1219
1293
|
const body = this._document.body;
|
|
1220
1294
|
const htmlStyle = html.style;
|
|
1221
1295
|
const bodyStyle = body.style;
|
|
@@ -1224,7 +1298,7 @@ class SmartBlockScrollStrategy {
|
|
|
1224
1298
|
this._isEnabled = false;
|
|
1225
1299
|
htmlStyle.left = this._previousHTMLStyles.left;
|
|
1226
1300
|
htmlStyle.top = this._previousHTMLStyles.top;
|
|
1227
|
-
html.classList.remove(
|
|
1301
|
+
html.classList.remove(BLOCK_CLASS);
|
|
1228
1302
|
if (scrollBehaviorSupported) {
|
|
1229
1303
|
htmlStyle.scrollBehavior = bodyStyle.scrollBehavior = 'auto';
|
|
1230
1304
|
}
|
|
@@ -1239,7 +1313,7 @@ class SmartBlockScrollStrategy {
|
|
|
1239
1313
|
}
|
|
1240
1314
|
_canBeEnabled() {
|
|
1241
1315
|
const html = this._document.documentElement;
|
|
1242
|
-
if (html.classList.contains(
|
|
1316
|
+
if (html.classList.contains(BLOCK_CLASS) || this._isEnabled) {
|
|
1243
1317
|
return false;
|
|
1244
1318
|
}
|
|
1245
1319
|
return true;
|
|
@@ -1355,15 +1429,15 @@ class AnimatableDirective {
|
|
|
1355
1429
|
.subscribe();
|
|
1356
1430
|
}
|
|
1357
1431
|
}
|
|
1358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1359
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1433
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1360
1434
|
{
|
|
1361
1435
|
provide: ANIMATABLE_TOKEN,
|
|
1362
1436
|
useExisting: AnimatableDirective,
|
|
1363
1437
|
},
|
|
1364
1438
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1365
1439
|
}
|
|
1366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1367
1441
|
type: Directive,
|
|
1368
1442
|
args: [{
|
|
1369
1443
|
selector: '[etAnimatable]',
|
|
@@ -1396,6 +1470,7 @@ class AnimatedLifecycleDirective {
|
|
|
1396
1470
|
this._elementRef = inject(ElementRef);
|
|
1397
1471
|
this._animatable = inject(ANIMATABLE_TOKEN);
|
|
1398
1472
|
this._classList = this._elementRef.nativeElement.classList;
|
|
1473
|
+
this._isConstructed = false;
|
|
1399
1474
|
this._state$ = new BehaviorSubject('init');
|
|
1400
1475
|
this.state$ = this._state$.asObservable();
|
|
1401
1476
|
this._bindings = createReactiveBindings({
|
|
@@ -1407,7 +1482,15 @@ class AnimatedLifecycleDirective {
|
|
|
1407
1482
|
get state() {
|
|
1408
1483
|
return this._state$.value;
|
|
1409
1484
|
}
|
|
1485
|
+
ngAfterViewInit() {
|
|
1486
|
+
this._isConstructed = true;
|
|
1487
|
+
}
|
|
1410
1488
|
enter(config) {
|
|
1489
|
+
if (this.state === 'init' && !this._isConstructed) {
|
|
1490
|
+
// Force the state to entered so that the element is not animated when it is first rendered.
|
|
1491
|
+
this._forceState('entered');
|
|
1492
|
+
return;
|
|
1493
|
+
}
|
|
1411
1494
|
if (this.state !== 'init' && this.state !== 'left' && isDevMode()) {
|
|
1412
1495
|
console.warn('Tried to enter but the element is not in the initial state. This may result in unexpected behavior.', this);
|
|
1413
1496
|
}
|
|
@@ -1433,6 +1516,10 @@ class AnimatedLifecycleDirective {
|
|
|
1433
1516
|
.subscribe();
|
|
1434
1517
|
}
|
|
1435
1518
|
leave(config) {
|
|
1519
|
+
if (this.state === 'init') {
|
|
1520
|
+
this._state$.next('left');
|
|
1521
|
+
return;
|
|
1522
|
+
}
|
|
1436
1523
|
if (this.state !== 'entered' && this.state !== 'entering' && isDevMode()) {
|
|
1437
1524
|
console.warn('Tried to leave while already leaving or left. This may result in unexpected behavior.', this);
|
|
1438
1525
|
}
|
|
@@ -1464,15 +1551,18 @@ class AnimatedLifecycleDirective {
|
|
|
1464
1551
|
}), takeUntil(this._destroy$), take(1))
|
|
1465
1552
|
.subscribe();
|
|
1466
1553
|
}
|
|
1467
|
-
|
|
1468
|
-
|
|
1554
|
+
_forceState(state) {
|
|
1555
|
+
this._state$.next(state);
|
|
1556
|
+
}
|
|
1557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1558
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1469
1559
|
{
|
|
1470
1560
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1471
1561
|
useExisting: AnimatedLifecycleDirective,
|
|
1472
1562
|
},
|
|
1473
1563
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1474
1564
|
}
|
|
1475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1476
1566
|
type: Directive,
|
|
1477
1567
|
args: [{
|
|
1478
1568
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -1488,15 +1578,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
1488
1578
|
}]
|
|
1489
1579
|
}] });
|
|
1490
1580
|
|
|
1581
|
+
const ANIMATED_IF_TOKEN = new InjectionToken('ANIMATED_IF_TOKEN');
|
|
1582
|
+
class AnimatedIfDirective {
|
|
1583
|
+
constructor() {
|
|
1584
|
+
this._destroy$ = createDestroy();
|
|
1585
|
+
this._ngIf = inject(NgIf);
|
|
1586
|
+
this._animatedLifecycle = inject(ANIMATED_LIFECYCLE_TOKEN);
|
|
1587
|
+
}
|
|
1588
|
+
set shouldRender(value) {
|
|
1589
|
+
if (value) {
|
|
1590
|
+
this._ngIf.ngIf = value;
|
|
1591
|
+
this._animatedLifecycle.enter();
|
|
1592
|
+
}
|
|
1593
|
+
else {
|
|
1594
|
+
this._animatedLifecycle.leave();
|
|
1595
|
+
this._animatedLifecycle.state$
|
|
1596
|
+
.pipe(takeUntil(this._destroy$), takeWhile((state) => state !== 'left', true), filter((state) => state === 'left'), tap(() => {
|
|
1597
|
+
this._ngIf.ngIf = value;
|
|
1598
|
+
}))
|
|
1599
|
+
.subscribe();
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1603
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
1604
|
+
{
|
|
1605
|
+
provide: ANIMATED_IF_TOKEN,
|
|
1606
|
+
useExisting: AnimatedIfDirective,
|
|
1607
|
+
},
|
|
1608
|
+
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
1609
|
+
}
|
|
1610
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
1611
|
+
type: Directive,
|
|
1612
|
+
args: [{
|
|
1613
|
+
selector: '[etAnimatedIf]',
|
|
1614
|
+
standalone: true,
|
|
1615
|
+
providers: [
|
|
1616
|
+
{
|
|
1617
|
+
provide: ANIMATED_IF_TOKEN,
|
|
1618
|
+
useExisting: AnimatedIfDirective,
|
|
1619
|
+
},
|
|
1620
|
+
],
|
|
1621
|
+
hostDirectives: [NgIf],
|
|
1622
|
+
}]
|
|
1623
|
+
}], propDecorators: { shouldRender: [{
|
|
1624
|
+
type: Input,
|
|
1625
|
+
args: ['etAnimatedIf']
|
|
1626
|
+
}] } });
|
|
1627
|
+
|
|
1491
1628
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
1492
1629
|
class ClickObserverFactory {
|
|
1493
1630
|
create() {
|
|
1494
1631
|
return fromEvent(document, 'click');
|
|
1495
1632
|
}
|
|
1496
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1497
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1634
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1498
1635
|
}
|
|
1499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1500
1637
|
type: Injectable,
|
|
1501
1638
|
args: [{ providedIn: 'root' }]
|
|
1502
1639
|
}] });
|
|
@@ -1549,10 +1686,10 @@ class ClickObserverService {
|
|
|
1549
1686
|
this._observedElements.delete(element);
|
|
1550
1687
|
}
|
|
1551
1688
|
}
|
|
1552
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1553
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1690
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1554
1691
|
}
|
|
1555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1556
1693
|
type: Injectable,
|
|
1557
1694
|
args: [{ providedIn: 'root' }]
|
|
1558
1695
|
}] });
|
|
@@ -1562,10 +1699,10 @@ class MutationObserverFactory {
|
|
|
1562
1699
|
create(callback) {
|
|
1563
1700
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1564
1701
|
}
|
|
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.
|
|
1702
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1703
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1567
1704
|
}
|
|
1568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1569
1706
|
type: Injectable,
|
|
1570
1707
|
args: [{ providedIn: 'root' }]
|
|
1571
1708
|
}] });
|
|
@@ -1624,10 +1761,10 @@ class ContentObserverService {
|
|
|
1624
1761
|
this._observedElements.delete(element);
|
|
1625
1762
|
}
|
|
1626
1763
|
}
|
|
1627
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1628
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1765
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1629
1766
|
}
|
|
1630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1631
1768
|
type: Injectable,
|
|
1632
1769
|
args: [{ providedIn: 'root' }]
|
|
1633
1770
|
}] });
|
|
@@ -1653,10 +1790,10 @@ class FocusVisibleService {
|
|
|
1653
1790
|
onPointerDown() {
|
|
1654
1791
|
this._hadKeyboardEvent = false;
|
|
1655
1792
|
}
|
|
1656
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1657
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1793
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1794
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1658
1795
|
}
|
|
1659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1660
1797
|
type: Injectable,
|
|
1661
1798
|
args: [{
|
|
1662
1799
|
providedIn: 'root',
|
|
@@ -1668,10 +1805,10 @@ class ResizeObserverFactory {
|
|
|
1668
1805
|
create(callback) {
|
|
1669
1806
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1670
1807
|
}
|
|
1671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1672
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1808
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1809
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1673
1810
|
}
|
|
1674
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1675
1812
|
type: Injectable,
|
|
1676
1813
|
args: [{ providedIn: 'root' }]
|
|
1677
1814
|
}] });
|
|
@@ -1726,10 +1863,10 @@ class ResizeObserverService {
|
|
|
1726
1863
|
this._observedElements.delete(element);
|
|
1727
1864
|
}
|
|
1728
1865
|
}
|
|
1729
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1730
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1866
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1867
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1731
1868
|
}
|
|
1732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1733
1870
|
type: Injectable,
|
|
1734
1871
|
args: [{ providedIn: 'root' }]
|
|
1735
1872
|
}] });
|
|
@@ -1897,10 +2034,10 @@ class RouterStateService {
|
|
|
1897
2034
|
}
|
|
1898
2035
|
return changes;
|
|
1899
2036
|
}
|
|
1900
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1901
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
2037
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2038
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
1902
2039
|
}
|
|
1903
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, decorators: [{
|
|
1904
2041
|
type: Injectable,
|
|
1905
2042
|
args: [{
|
|
1906
2043
|
providedIn: 'root',
|
|
@@ -2041,15 +2178,7 @@ class ViewportService {
|
|
|
2041
2178
|
this._viewportMonitorStop$.next();
|
|
2042
2179
|
this._isViewportMonitorEnabled = false;
|
|
2043
2180
|
}
|
|
2044
|
-
|
|
2045
|
-
this.observe({ max: 'xs' }).subscribe(this._isXs$);
|
|
2046
|
-
this.observe({ min: 'sm', max: 'sm' }).subscribe(this._isSm$);
|
|
2047
|
-
this.observe({ min: 'md', max: 'md' }).subscribe(this._isMd$);
|
|
2048
|
-
this.observe({ min: 'lg', max: 'lg' }).subscribe(this._isLg$);
|
|
2049
|
-
this.observe({ min: 'xl', max: 'xl' }).subscribe(this._isXl$);
|
|
2050
|
-
this.observe({ min: '2xl' }).subscribe(this._is2Xl$);
|
|
2051
|
-
}
|
|
2052
|
-
_getViewportSize(type, option) {
|
|
2181
|
+
getBreakpointSize(type, option) {
|
|
2053
2182
|
const index = option === 'min' ? 0 : 1;
|
|
2054
2183
|
const size = this._viewportConfig.breakpoints[type][index];
|
|
2055
2184
|
if (size === Infinity || size === 0) {
|
|
@@ -2063,6 +2192,14 @@ class ViewportService {
|
|
|
2063
2192
|
// and thus not matching any of the default breakpoints.
|
|
2064
2193
|
return size + 0.9;
|
|
2065
2194
|
}
|
|
2195
|
+
_observeDefaultBreakpoints() {
|
|
2196
|
+
this.observe({ max: 'xs' }).subscribe(this._isXs$);
|
|
2197
|
+
this.observe({ min: 'sm', max: 'sm' }).subscribe(this._isSm$);
|
|
2198
|
+
this.observe({ min: 'md', max: 'md' }).subscribe(this._isMd$);
|
|
2199
|
+
this.observe({ min: 'lg', max: 'lg' }).subscribe(this._isLg$);
|
|
2200
|
+
this.observe({ min: 'xl', max: 'xl' }).subscribe(this._isXl$);
|
|
2201
|
+
this.observe({ min: '2xl' }).subscribe(this._is2Xl$);
|
|
2202
|
+
}
|
|
2066
2203
|
_buildMediaQuery(options) {
|
|
2067
2204
|
if (!options.min && !options.max) {
|
|
2068
2205
|
throw new Error('At least one of min or max must be defined');
|
|
@@ -2073,7 +2210,7 @@ class ViewportService {
|
|
|
2073
2210
|
mediaQueryParts.push(`(min-width: ${options.min}px)`);
|
|
2074
2211
|
}
|
|
2075
2212
|
else {
|
|
2076
|
-
mediaQueryParts.push(`(min-width: ${this.
|
|
2213
|
+
mediaQueryParts.push(`(min-width: ${this.getBreakpointSize(options.min, 'min')}px)`);
|
|
2077
2214
|
}
|
|
2078
2215
|
}
|
|
2079
2216
|
if (options.min && options.max) {
|
|
@@ -2084,7 +2221,7 @@ class ViewportService {
|
|
|
2084
2221
|
mediaQueryParts.push(`(max-width: ${options.max}px)`);
|
|
2085
2222
|
}
|
|
2086
2223
|
else {
|
|
2087
|
-
mediaQueryParts.push(`(max-width: ${this.
|
|
2224
|
+
mediaQueryParts.push(`(max-width: ${this.getBreakpointSize(options.max, 'max')}px)`);
|
|
2088
2225
|
}
|
|
2089
2226
|
}
|
|
2090
2227
|
return mediaQueryParts.join(' ');
|
|
@@ -2110,15 +2247,15 @@ class ViewportService {
|
|
|
2110
2247
|
}
|
|
2111
2248
|
return 'xs';
|
|
2112
2249
|
}
|
|
2113
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2114
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
2250
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2251
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2115
2252
|
}
|
|
2116
2253
|
__decorate([
|
|
2117
2254
|
Memo(),
|
|
2118
2255
|
__metadata("design:type", Function),
|
|
2119
2256
|
__metadata("design:paramtypes", [String, String]),
|
|
2120
2257
|
__metadata("design:returntype", void 0)
|
|
2121
|
-
], ViewportService.prototype, "
|
|
2258
|
+
], ViewportService.prototype, "getBreakpointSize", null);
|
|
2122
2259
|
__decorate([
|
|
2123
2260
|
Memo({
|
|
2124
2261
|
resolver: (v) => {
|
|
@@ -2129,12 +2266,12 @@ __decorate([
|
|
|
2129
2266
|
__metadata("design:paramtypes", [Object]),
|
|
2130
2267
|
__metadata("design:returntype", void 0)
|
|
2131
2268
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, decorators: [{
|
|
2133
2270
|
type: Injectable,
|
|
2134
2271
|
args: [{
|
|
2135
2272
|
providedIn: 'root',
|
|
2136
2273
|
}]
|
|
2137
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
2274
|
+
}], ctorParameters: function () { return []; }, propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
|
|
2138
2275
|
|
|
2139
2276
|
class ObserveResizeDirective {
|
|
2140
2277
|
constructor() {
|
|
@@ -2178,10 +2315,10 @@ class ObserveResizeDirective {
|
|
|
2178
2315
|
_unsubscribe() {
|
|
2179
2316
|
this._currentSubscription?.unsubscribe();
|
|
2180
2317
|
}
|
|
2181
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2182
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2319
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2183
2320
|
}
|
|
2184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2185
2322
|
type: Directive,
|
|
2186
2323
|
args: [{
|
|
2187
2324
|
selector: '[etObserveResize]',
|
|
@@ -2435,10 +2572,10 @@ class AnimatedOverlayDirective {
|
|
|
2435
2572
|
this._isUnmounting$.next(false);
|
|
2436
2573
|
this._afterClosed?.next();
|
|
2437
2574
|
}
|
|
2438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2439
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2576
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", 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 }); }
|
|
2440
2577
|
}
|
|
2441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
2442
2579
|
type: Directive,
|
|
2443
2580
|
args: [{
|
|
2444
2581
|
standalone: true,
|
|
@@ -2484,10 +2621,10 @@ class ClickOutsideDirective {
|
|
|
2484
2621
|
ngOnDestroy() {
|
|
2485
2622
|
this._subscription?.unsubscribe();
|
|
2486
2623
|
}
|
|
2487
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2488
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2624
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2625
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
2489
2626
|
}
|
|
2490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
2491
2628
|
type: Directive,
|
|
2492
2629
|
args: [{
|
|
2493
2630
|
selector: '[etClickOutside]',
|
|
@@ -2641,10 +2778,10 @@ class CursorDragScrollDirective {
|
|
|
2641
2778
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
2642
2779
|
}
|
|
2643
2780
|
}
|
|
2644
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2645
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2782
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
2646
2783
|
}
|
|
2647
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
2648
2785
|
type: Directive,
|
|
2649
2786
|
args: [{
|
|
2650
2787
|
selector: '[etCursorDragScroll]',
|
|
@@ -2693,15 +2830,15 @@ class DelayableDirective {
|
|
|
2693
2830
|
}
|
|
2694
2831
|
this._isDelayed$.next(val);
|
|
2695
2832
|
}
|
|
2696
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2697
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2833
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2834
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
2698
2835
|
{
|
|
2699
2836
|
provide: DELAYABLE_TOKEN,
|
|
2700
2837
|
useExisting: DelayableDirective,
|
|
2701
2838
|
},
|
|
2702
2839
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
2703
2840
|
}
|
|
2704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
2705
2842
|
type: Directive,
|
|
2706
2843
|
args: [{
|
|
2707
2844
|
selector: '[etDelayable]',
|
|
@@ -2722,15 +2859,15 @@ class IsActiveElementDirective {
|
|
|
2722
2859
|
this.elementRef = inject(ElementRef);
|
|
2723
2860
|
this.isActiveElement = false;
|
|
2724
2861
|
}
|
|
2725
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2726
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.
|
|
2862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2863
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
2727
2864
|
{
|
|
2728
2865
|
provide: IS_ACTIVE_ELEMENT,
|
|
2729
2866
|
useExisting: IsActiveElementDirective,
|
|
2730
2867
|
},
|
|
2731
2868
|
], ngImport: i0 }); }
|
|
2732
2869
|
}
|
|
2733
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
2734
2871
|
type: Directive,
|
|
2735
2872
|
args: [{
|
|
2736
2873
|
selector: '[etIsActiveElement]',
|
|
@@ -2753,15 +2890,15 @@ class IsElementDirective {
|
|
|
2753
2890
|
this.elementRef = inject(ElementRef);
|
|
2754
2891
|
this.isElement = false;
|
|
2755
2892
|
}
|
|
2756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2757
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.
|
|
2893
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2894
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
2758
2895
|
{
|
|
2759
2896
|
provide: IS_ELEMENT,
|
|
2760
2897
|
useExisting: IsElementDirective,
|
|
2761
2898
|
},
|
|
2762
2899
|
], ngImport: i0 }); }
|
|
2763
2900
|
}
|
|
2764
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
2765
2902
|
type: Directive,
|
|
2766
2903
|
args: [{
|
|
2767
2904
|
selector: '[etIsElement]',
|
|
@@ -2810,10 +2947,10 @@ class LetDirective {
|
|
|
2810
2947
|
}
|
|
2811
2948
|
}
|
|
2812
2949
|
}
|
|
2813
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2814
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2950
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2951
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
2815
2952
|
}
|
|
2816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: LetDirective, decorators: [{
|
|
2817
2954
|
type: Directive,
|
|
2818
2955
|
args: [{
|
|
2819
2956
|
selector: '[etLet]',
|
|
@@ -2865,10 +3002,10 @@ class ObserveContentDirective {
|
|
|
2865
3002
|
_unsubscribe() {
|
|
2866
3003
|
this._currentSubscription?.unsubscribe();
|
|
2867
3004
|
}
|
|
2868
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2869
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3005
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3006
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
2870
3007
|
}
|
|
2871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
2872
3009
|
type: Directive,
|
|
2873
3010
|
args: [{
|
|
2874
3011
|
selector: '[etObserveContent]',
|
|
@@ -2891,10 +3028,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
2891
3028
|
constructor() {
|
|
2892
3029
|
this.isFirstElement = false;
|
|
2893
3030
|
}
|
|
2894
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2895
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.
|
|
3031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3032
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
2896
3033
|
}
|
|
2897
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
2898
3035
|
type: Directive,
|
|
2899
3036
|
args: [{
|
|
2900
3037
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -2910,10 +3047,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
2910
3047
|
|
|
2911
3048
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
2912
3049
|
class ScrollObserverIgnoreTargetDirective {
|
|
2913
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2914
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3050
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3051
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
2915
3052
|
}
|
|
2916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
2917
3054
|
type: Directive,
|
|
2918
3055
|
args: [{
|
|
2919
3056
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -2929,10 +3066,10 @@ class ScrollObserverLastElementDirective {
|
|
|
2929
3066
|
constructor() {
|
|
2930
3067
|
this.isLastElement = false;
|
|
2931
3068
|
}
|
|
2932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2933
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.
|
|
3069
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3070
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", 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 }); }
|
|
2934
3071
|
}
|
|
2935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
2936
3073
|
type: Directive,
|
|
2937
3074
|
args: [{
|
|
2938
3075
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -3091,15 +3228,15 @@ class ObserveScrollStateDirective {
|
|
|
3091
3228
|
}
|
|
3092
3229
|
return element;
|
|
3093
3230
|
}
|
|
3094
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3095
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.
|
|
3231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3232
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
3096
3233
|
{
|
|
3097
3234
|
provide: OBSERVE_SCROLL_STATE,
|
|
3098
3235
|
useExisting: ObserveScrollStateDirective,
|
|
3099
3236
|
},
|
|
3100
3237
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
3101
3238
|
}
|
|
3102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
3103
3240
|
type: Directive,
|
|
3104
3241
|
args: [{
|
|
3105
3242
|
selector: '[etObserveScrollState]',
|
|
@@ -3141,10 +3278,10 @@ class RepeatDirective {
|
|
|
3141
3278
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3142
3279
|
}
|
|
3143
3280
|
}
|
|
3144
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3145
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3281
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3282
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3146
3283
|
}
|
|
3147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3148
3285
|
type: Directive,
|
|
3149
3286
|
args: [{
|
|
3150
3287
|
selector: '[etRepeat]',
|
|
@@ -3313,10 +3450,10 @@ class SeoDirective {
|
|
|
3313
3450
|
}
|
|
3314
3451
|
}
|
|
3315
3452
|
}
|
|
3316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3317
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
3453
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3454
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
3318
3455
|
}
|
|
3319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: SeoDirective, decorators: [{
|
|
3320
3457
|
type: Directive,
|
|
3321
3458
|
args: [{
|
|
3322
3459
|
standalone: true,
|
|
@@ -3362,10 +3499,10 @@ class NormalizeGameResultTypePipe {
|
|
|
3362
3499
|
constructor() {
|
|
3363
3500
|
this.transform = normalizeGameResultType;
|
|
3364
3501
|
}
|
|
3365
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3366
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3502
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3503
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
3367
3504
|
}
|
|
3368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3505
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
3369
3506
|
type: Pipe,
|
|
3370
3507
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
3371
3508
|
}] });
|
|
@@ -3393,10 +3530,10 @@ class NormalizeMatchStatePipe {
|
|
|
3393
3530
|
constructor() {
|
|
3394
3531
|
this.transform = normalizeMatchState;
|
|
3395
3532
|
}
|
|
3396
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3397
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3533
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3534
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
3398
3535
|
}
|
|
3399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
3400
3537
|
type: Pipe,
|
|
3401
3538
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
3402
3539
|
}] });
|
|
@@ -3451,10 +3588,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
3451
3588
|
constructor() {
|
|
3452
3589
|
this.transform = normalizeMatchParticipants;
|
|
3453
3590
|
}
|
|
3454
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3455
|
-
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.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3592
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
3456
3593
|
}
|
|
3457
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
3458
3595
|
type: Pipe,
|
|
3459
3596
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
3460
3597
|
}] });
|
|
@@ -3588,10 +3725,10 @@ class NormalizeMatchScorePipe {
|
|
|
3588
3725
|
constructor() {
|
|
3589
3726
|
this.transform = normalizeMatchScore;
|
|
3590
3727
|
}
|
|
3591
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3592
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3728
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3729
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
3593
3730
|
}
|
|
3594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
3595
3732
|
type: Pipe,
|
|
3596
3733
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
3597
3734
|
}] });
|
|
@@ -3638,10 +3775,10 @@ class NormalizeMatchTypePipe {
|
|
|
3638
3775
|
constructor() {
|
|
3639
3776
|
this.transform = normalizeMatchType;
|
|
3640
3777
|
}
|
|
3641
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3642
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3779
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
3643
3780
|
}
|
|
3644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
3645
3782
|
type: Pipe,
|
|
3646
3783
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
3647
3784
|
}] });
|
|
@@ -3655,10 +3792,10 @@ class ToArrayPipe {
|
|
|
3655
3792
|
constructor() {
|
|
3656
3793
|
this.transform = toArray;
|
|
3657
3794
|
}
|
|
3658
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3659
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
|
3795
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3796
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
3660
3797
|
}
|
|
3661
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
3662
3799
|
type: Pipe,
|
|
3663
3800
|
args: [{ name: 'toArray', standalone: true }]
|
|
3664
3801
|
}] });
|
|
@@ -3746,5 +3883,5 @@ const Validators = {
|
|
|
3746
3883
|
* Generated bundle index. Do not edit.
|
|
3747
3884
|
*/
|
|
3748
3885
|
|
|
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 };
|
|
3886
|
+
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, 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, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, 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 };
|
|
3750
3887
|
//# sourceMappingURL=ethlete-core.mjs.map
|