@ethlete/core 4.0.3 → 4.2.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 +4 -4
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +4 -4
- package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +4 -4
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +4 -4
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +4 -4
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +4 -4
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +4 -4
- package/esm2022/lib/directives/debug/debug.directive.mjs +4 -4
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +4 -4
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +4 -4
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +4 -4
- package/esm2022/lib/directives/let/let.directive.mjs +4 -4
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +4 -4
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +4 -4
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +4 -4
- package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +5 -5
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +5 -5
- package/esm2022/lib/directives/root-boundary/root-boundary.directive.mjs +4 -4
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +4 -4
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +4 -4
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +4 -4
- package/esm2022/lib/directives/seo/seo.directive.mjs +4 -4
- package/esm2022/lib/pipes/infer-mime-type/infer-mime-type.pipe.mjs +4 -4
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +4 -4
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +4 -4
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +4 -4
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +4 -4
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +4 -4
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +4 -4
- package/esm2022/lib/services/click-observer.service.mjs +7 -7
- package/esm2022/lib/services/content-observer.service.mjs +7 -7
- package/esm2022/lib/services/focus-visible.service.mjs +5 -5
- package/esm2022/lib/services/intersection-observer.service.mjs +7 -7
- package/esm2022/lib/services/resize-observer.service.mjs +7 -7
- package/esm2022/lib/services/router-state.service.mjs +5 -5
- package/esm2022/lib/services/viewport.service.mjs +5 -5
- package/esm2022/lib/utils/signal.utils.mjs +203 -20
- package/fesm2022/ethlete-core.mjs +328 -146
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/utils/signal.utils.d.ts +43 -2
- package/package.json +11 -11
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal,
|
|
2
|
+
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isSignal, signal, QueryList, effect, afterNextRender, NgZone, isDevMode, computed, Directive, Injectable, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe } from '@angular/core';
|
|
3
3
|
import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
|
|
4
|
-
import { Subject, BehaviorSubject, takeUntil,
|
|
4
|
+
import { Subject, BehaviorSubject, takeUntil, of, switchMap, tap, map, startWith, Observable, combineLatest, timer, distinctUntilChanged, shareReplay, filter, take, pairwise, skip, debounceTime, fromEvent, merge, takeWhile, finalize } from 'rxjs';
|
|
5
5
|
import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
|
|
6
6
|
import { FormGroup, FormArray, FormControl } from '@angular/forms';
|
|
7
7
|
import { toSignal, takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
|
|
@@ -11,9 +11,9 @@ import * as i1 from '@angular/common';
|
|
|
11
11
|
import { NgIf, DOCUMENT } from '@angular/common';
|
|
12
12
|
import { Overlay } from '@angular/cdk/overlay';
|
|
13
13
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
14
|
-
import {
|
|
14
|
+
import { offset, flip, size, limitShift, shift, arrow, hide, computePosition, autoUpdate } from '@floating-ui/dom';
|
|
15
15
|
import { Router, NavigationEnd } from '@angular/router';
|
|
16
|
-
import {
|
|
16
|
+
import { __metadata, __decorate } from 'tslib';
|
|
17
17
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
18
18
|
import { debounceTime as debounceTime$1 } from 'rxjs/operators';
|
|
19
19
|
|
|
@@ -29,10 +29,10 @@ class StructuredDataComponent {
|
|
|
29
29
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
30
30
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
31
31
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.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 }); }
|
|
34
34
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
36
|
type: Component,
|
|
37
37
|
args: [{
|
|
38
38
|
selector: 'et-structured-data',
|
|
@@ -1375,18 +1375,45 @@ class SelectionModel {
|
|
|
1375
1375
|
}
|
|
1376
1376
|
}
|
|
1377
1377
|
|
|
1378
|
+
function isElementSignal(el) {
|
|
1379
|
+
if (isSignal(el)) {
|
|
1380
|
+
const val = el();
|
|
1381
|
+
return typeof val === 'object' && val !== null && 'currentElement' in val && 'previousElement' in val;
|
|
1382
|
+
}
|
|
1383
|
+
return false;
|
|
1384
|
+
}
|
|
1378
1385
|
const buildElementSignal = (el) => {
|
|
1386
|
+
if (el === null || el === undefined) {
|
|
1387
|
+
return signal({ currentElement: null, previousElement: null });
|
|
1388
|
+
}
|
|
1389
|
+
if (isElementSignal(el)) {
|
|
1390
|
+
return el;
|
|
1391
|
+
}
|
|
1379
1392
|
let mElSignal = null;
|
|
1393
|
+
const switchElement = () => switchMap((elOrRef) => {
|
|
1394
|
+
if (elOrRef instanceof QueryList) {
|
|
1395
|
+
return elOrRef.changes.pipe(startWith(elOrRef), map(() => (elOrRef.first ? coerceElement(elOrRef.first) : null)));
|
|
1396
|
+
}
|
|
1397
|
+
else {
|
|
1398
|
+
return of(coerceElement(elOrRef));
|
|
1399
|
+
}
|
|
1400
|
+
});
|
|
1380
1401
|
if (el instanceof Observable) {
|
|
1381
|
-
mElSignal = toSignal(el.pipe(
|
|
1402
|
+
mElSignal = toSignal(el.pipe(switchElement()), { initialValue: null });
|
|
1382
1403
|
}
|
|
1383
1404
|
else if (isSignal(el)) {
|
|
1384
|
-
mElSignal =
|
|
1405
|
+
mElSignal = toSignal(toObservable(el).pipe(switchElement()));
|
|
1406
|
+
}
|
|
1407
|
+
else if (el instanceof QueryList) {
|
|
1408
|
+
mElSignal = toSignal(el.changes.pipe(startWith(el), map(() => (el.first ? coerceElement(el.first) : null))));
|
|
1385
1409
|
}
|
|
1386
1410
|
else {
|
|
1387
1411
|
mElSignal = signal(coerceElement(el));
|
|
1388
1412
|
}
|
|
1389
|
-
return mElSignal
|
|
1413
|
+
return toSignal(toObservable(mElSignal).pipe(startWith(null), pairwise(), map(([previousElement, currentElement]) => ({
|
|
1414
|
+
currentElement: currentElement ?? null,
|
|
1415
|
+
previousElement: previousElement ?? null,
|
|
1416
|
+
}))), { initialValue: { currentElement: null, previousElement: null } });
|
|
1390
1417
|
};
|
|
1391
1418
|
const buildSignalEffects = (config) => {
|
|
1392
1419
|
const { map, eachItemFn, cleanupFn } = config;
|
|
@@ -1411,62 +1438,217 @@ const buildSignalEffects = (config) => {
|
|
|
1411
1438
|
};
|
|
1412
1439
|
return { remove, has };
|
|
1413
1440
|
};
|
|
1441
|
+
const signalIsRendered = () => {
|
|
1442
|
+
const isRendered = signal(false);
|
|
1443
|
+
afterNextRender(() => isRendered.set(true));
|
|
1444
|
+
return isRendered.asReadonly();
|
|
1445
|
+
};
|
|
1414
1446
|
const signalClasses = (el, classMap) => {
|
|
1415
|
-
const
|
|
1447
|
+
const elements = buildElementSignal(el);
|
|
1416
1448
|
return buildSignalEffects({
|
|
1417
1449
|
map: classMap,
|
|
1418
1450
|
eachItemFn: ({ key, value }) => {
|
|
1419
1451
|
if (value) {
|
|
1420
|
-
|
|
1452
|
+
elements().currentElement?.classList.add(key);
|
|
1421
1453
|
}
|
|
1422
1454
|
else {
|
|
1423
|
-
|
|
1455
|
+
elements().currentElement?.classList.remove(key);
|
|
1424
1456
|
}
|
|
1425
1457
|
},
|
|
1426
|
-
cleanupFn: ({ key }) =>
|
|
1458
|
+
cleanupFn: ({ key }) => elements().currentElement?.classList.remove(key),
|
|
1427
1459
|
});
|
|
1428
1460
|
};
|
|
1429
1461
|
const signalHostClasses = (classMap) => signalClasses(inject(ElementRef), classMap);
|
|
1430
1462
|
const ALWAYS_TRUE_ATTRIBUTE_KEYS = ['disabled', 'readonly', 'required', 'checked', 'selected'];
|
|
1431
1463
|
const signalAttributes = (el, attributeMap) => {
|
|
1432
|
-
const
|
|
1464
|
+
const elements = buildElementSignal(el);
|
|
1433
1465
|
return buildSignalEffects({
|
|
1434
1466
|
map: attributeMap,
|
|
1435
1467
|
eachItemFn: ({ key, value }) => {
|
|
1436
1468
|
const valueString = `${value}`;
|
|
1437
1469
|
if (ALWAYS_TRUE_ATTRIBUTE_KEYS.includes(key)) {
|
|
1438
1470
|
if (value) {
|
|
1439
|
-
|
|
1471
|
+
elements().currentElement?.setAttribute(key, '');
|
|
1440
1472
|
}
|
|
1441
1473
|
else {
|
|
1442
|
-
|
|
1474
|
+
elements().currentElement?.removeAttribute(key);
|
|
1443
1475
|
}
|
|
1444
1476
|
}
|
|
1445
1477
|
else {
|
|
1446
1478
|
if (value === null || value === undefined) {
|
|
1447
|
-
|
|
1479
|
+
elements().currentElement?.removeAttribute(key);
|
|
1448
1480
|
}
|
|
1449
1481
|
else {
|
|
1450
|
-
|
|
1482
|
+
elements().currentElement?.setAttribute(key, valueString);
|
|
1451
1483
|
}
|
|
1452
1484
|
}
|
|
1453
1485
|
},
|
|
1454
|
-
cleanupFn: ({ key }) =>
|
|
1486
|
+
cleanupFn: ({ key }) => elements().currentElement?.removeAttribute(key),
|
|
1455
1487
|
});
|
|
1456
1488
|
};
|
|
1457
1489
|
const signalHostAttributes = (attributeMap) => signalAttributes(inject(ElementRef), attributeMap);
|
|
1458
1490
|
const signalStyles = (el, styleMap) => {
|
|
1459
|
-
const
|
|
1491
|
+
const elements = buildElementSignal(el);
|
|
1460
1492
|
return buildSignalEffects({
|
|
1461
1493
|
map: styleMap,
|
|
1462
1494
|
eachItemFn: ({ key, value }) => {
|
|
1463
1495
|
const valueString = `${value}`;
|
|
1464
|
-
|
|
1496
|
+
elements().currentElement?.style.setProperty(key, valueString);
|
|
1465
1497
|
},
|
|
1466
|
-
cleanupFn: ({ key }) =>
|
|
1498
|
+
cleanupFn: ({ key }) => elements().currentElement?.style.removeProperty(key),
|
|
1467
1499
|
});
|
|
1468
1500
|
};
|
|
1469
1501
|
const signalHostStyles = (styleMap) => signalStyles(inject(ElementRef), styleMap);
|
|
1502
|
+
const signalElementDimensions = (el) => {
|
|
1503
|
+
const destroyRef = inject(DestroyRef);
|
|
1504
|
+
const elements = buildElementSignal(el);
|
|
1505
|
+
const zone = inject(NgZone);
|
|
1506
|
+
const isRendered = signalIsRendered();
|
|
1507
|
+
const initialValue = () => ({
|
|
1508
|
+
rect: elements().currentElement?.getBoundingClientRect() ?? null,
|
|
1509
|
+
borderBoxSize: null,
|
|
1510
|
+
contentBoxSize: null,
|
|
1511
|
+
devicePixelContentBoxSize: null,
|
|
1512
|
+
});
|
|
1513
|
+
const elementDimensionsSignal = signal(initialValue());
|
|
1514
|
+
const observer = new ResizeObserver((e) => {
|
|
1515
|
+
if (!isRendered())
|
|
1516
|
+
return;
|
|
1517
|
+
const entry = e[0];
|
|
1518
|
+
if (entry) {
|
|
1519
|
+
const devicePixelContentBoxSize = entry.devicePixelContentBoxSize?.[0] ?? null;
|
|
1520
|
+
const borderBoxSize = entry.borderBoxSize?.[0] ?? null;
|
|
1521
|
+
const contentBoxSize = entry.contentBoxSize?.[0] ?? null;
|
|
1522
|
+
zone.run(() => elementDimensionsSignal.set({
|
|
1523
|
+
rect: entry.contentRect,
|
|
1524
|
+
borderBoxSize: borderBoxSize
|
|
1525
|
+
? { inlineSize: borderBoxSize.inlineSize, blockSize: borderBoxSize.blockSize }
|
|
1526
|
+
: null,
|
|
1527
|
+
contentBoxSize: contentBoxSize
|
|
1528
|
+
? { inlineSize: contentBoxSize.inlineSize, blockSize: contentBoxSize.blockSize }
|
|
1529
|
+
: null,
|
|
1530
|
+
devicePixelContentBoxSize: devicePixelContentBoxSize
|
|
1531
|
+
? { inlineSize: devicePixelContentBoxSize.inlineSize, blockSize: devicePixelContentBoxSize.blockSize }
|
|
1532
|
+
: null,
|
|
1533
|
+
}));
|
|
1534
|
+
}
|
|
1535
|
+
});
|
|
1536
|
+
effect(() => {
|
|
1537
|
+
const els = elements();
|
|
1538
|
+
elementDimensionsSignal.set(initialValue());
|
|
1539
|
+
if (els.previousElement) {
|
|
1540
|
+
observer.disconnect();
|
|
1541
|
+
}
|
|
1542
|
+
if (els.currentElement) {
|
|
1543
|
+
const computedDisplay = getComputedStyle(els.currentElement).display;
|
|
1544
|
+
const currentElIsAngularComponent = els.currentElement?.tagName.toLowerCase().includes('-');
|
|
1545
|
+
if (computedDisplay === 'inline' && isDevMode() && currentElIsAngularComponent) {
|
|
1546
|
+
console.error(`Element <${els.currentElement?.tagName.toLowerCase()}> is an Angular component and has a display of 'inline'. Inline elements cannot be observed for dimensions. Please change it to 'block' or something else.`);
|
|
1547
|
+
}
|
|
1548
|
+
observer.observe(els.currentElement);
|
|
1549
|
+
}
|
|
1550
|
+
}, { allowSignalWrites: true });
|
|
1551
|
+
destroyRef.onDestroy(() => observer.disconnect());
|
|
1552
|
+
return elementDimensionsSignal.asReadonly();
|
|
1553
|
+
};
|
|
1554
|
+
const signalHostElementDimensions = () => signalElementDimensions(inject(ElementRef));
|
|
1555
|
+
const signalElementMutations = (el, options) => {
|
|
1556
|
+
const destroyRef = inject(DestroyRef);
|
|
1557
|
+
const elements = buildElementSignal(el);
|
|
1558
|
+
const zone = inject(NgZone);
|
|
1559
|
+
const isRendered = signalIsRendered();
|
|
1560
|
+
const elementMutationsSignal = signal(null);
|
|
1561
|
+
const observer = new MutationObserver((e) => {
|
|
1562
|
+
if (!isRendered())
|
|
1563
|
+
return;
|
|
1564
|
+
const entry = e[0];
|
|
1565
|
+
if (entry) {
|
|
1566
|
+
zone.run(() => elementMutationsSignal.set(entry));
|
|
1567
|
+
}
|
|
1568
|
+
});
|
|
1569
|
+
effect(() => {
|
|
1570
|
+
const els = elements();
|
|
1571
|
+
elementMutationsSignal.set(null);
|
|
1572
|
+
if (els.previousElement) {
|
|
1573
|
+
observer.disconnect();
|
|
1574
|
+
}
|
|
1575
|
+
if (els.currentElement) {
|
|
1576
|
+
observer.observe(els.currentElement, options);
|
|
1577
|
+
}
|
|
1578
|
+
}, { allowSignalWrites: true });
|
|
1579
|
+
destroyRef.onDestroy(() => observer.disconnect());
|
|
1580
|
+
return elementMutationsSignal.asReadonly();
|
|
1581
|
+
};
|
|
1582
|
+
const signalHostElementMutations = (options) => signalElementMutations(inject(ElementRef), options);
|
|
1583
|
+
const signalElementScrollState = (el) => {
|
|
1584
|
+
const elements = buildElementSignal(el);
|
|
1585
|
+
const elementDimensions = signalElementDimensions(elements);
|
|
1586
|
+
const elementMutations = signalElementMutations(elements, { childList: true, subtree: true });
|
|
1587
|
+
const isRendered = signalIsRendered();
|
|
1588
|
+
return computed(() => {
|
|
1589
|
+
const element = elements().currentElement;
|
|
1590
|
+
const dimensions = elementDimensions();
|
|
1591
|
+
const notScrollable = () => ({
|
|
1592
|
+
canScroll: false,
|
|
1593
|
+
canScrollHorizontally: false,
|
|
1594
|
+
canScrollVertically: false,
|
|
1595
|
+
scrollWidth: element?.scrollWidth ?? null,
|
|
1596
|
+
scrollHeight: element?.scrollHeight ?? null,
|
|
1597
|
+
elementDimensions: dimensions,
|
|
1598
|
+
});
|
|
1599
|
+
// We are not interested what the mutation is, just that there is one.
|
|
1600
|
+
// Changes to the DOM can affect the scroll state of the element.
|
|
1601
|
+
elementMutations();
|
|
1602
|
+
if (!element || !dimensions.rect || !isRendered())
|
|
1603
|
+
return notScrollable();
|
|
1604
|
+
const { scrollWidth, scrollHeight } = element;
|
|
1605
|
+
const { width, height } = dimensions.rect;
|
|
1606
|
+
const canScrollHorizontally = scrollWidth > width;
|
|
1607
|
+
const canScrollVertically = scrollHeight > height;
|
|
1608
|
+
return {
|
|
1609
|
+
canScroll: canScrollHorizontally || canScrollVertically,
|
|
1610
|
+
canScrollHorizontally,
|
|
1611
|
+
canScrollVertically,
|
|
1612
|
+
scrollWidth,
|
|
1613
|
+
scrollHeight,
|
|
1614
|
+
elementDimensions: dimensions,
|
|
1615
|
+
};
|
|
1616
|
+
});
|
|
1617
|
+
};
|
|
1618
|
+
const signalHostElementScrollState = () => signalElementScrollState(inject(ElementRef));
|
|
1619
|
+
const signalElementIntersection = (el, container, options) => {
|
|
1620
|
+
const destroyRef = inject(DestroyRef);
|
|
1621
|
+
const elements = buildElementSignal(el);
|
|
1622
|
+
const containerElements = buildElementSignal(container);
|
|
1623
|
+
const zone = inject(NgZone);
|
|
1624
|
+
const isRendered = signalIsRendered();
|
|
1625
|
+
const initialValue = () => ({
|
|
1626
|
+
isIntersecting: isElementVisible({ element: elements().currentElement, container: containerElements().currentElement })?.inline ??
|
|
1627
|
+
false,
|
|
1628
|
+
});
|
|
1629
|
+
const elementIntersectionSignal = signal(initialValue());
|
|
1630
|
+
const observer = new IntersectionObserver((e) => {
|
|
1631
|
+
if (!isRendered())
|
|
1632
|
+
return;
|
|
1633
|
+
const entry = e[0];
|
|
1634
|
+
if (entry) {
|
|
1635
|
+
zone.run(() => elementIntersectionSignal.set(entry));
|
|
1636
|
+
}
|
|
1637
|
+
}, options);
|
|
1638
|
+
effect(() => {
|
|
1639
|
+
const els = elements();
|
|
1640
|
+
elementIntersectionSignal.set(initialValue());
|
|
1641
|
+
if (els.previousElement) {
|
|
1642
|
+
observer.disconnect();
|
|
1643
|
+
}
|
|
1644
|
+
if (els.currentElement) {
|
|
1645
|
+
observer.observe(els.currentElement);
|
|
1646
|
+
}
|
|
1647
|
+
}, { allowSignalWrites: true });
|
|
1648
|
+
destroyRef.onDestroy(() => observer.disconnect());
|
|
1649
|
+
return elementIntersectionSignal.asReadonly();
|
|
1650
|
+
};
|
|
1651
|
+
const signalHostElementIntersection = (container, options) => signalElementIntersection(inject(ElementRef), container, options);
|
|
1470
1652
|
|
|
1471
1653
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1472
1654
|
let _uniqueIdCounter = 0;
|
|
@@ -1668,15 +1850,15 @@ class AnimatableDirective {
|
|
|
1668
1850
|
.subscribe();
|
|
1669
1851
|
}
|
|
1670
1852
|
}
|
|
1671
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1672
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1853
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1854
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1673
1855
|
{
|
|
1674
1856
|
provide: ANIMATABLE_TOKEN,
|
|
1675
1857
|
useExisting: AnimatableDirective,
|
|
1676
1858
|
},
|
|
1677
1859
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1678
1860
|
}
|
|
1679
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1680
1862
|
type: Directive,
|
|
1681
1863
|
args: [{
|
|
1682
1864
|
selector: '[etAnimatable]',
|
|
@@ -1796,15 +1978,15 @@ class AnimatedLifecycleDirective {
|
|
|
1796
1978
|
_forceState(state) {
|
|
1797
1979
|
this._state$.next(state);
|
|
1798
1980
|
}
|
|
1799
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1800
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1982
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1801
1983
|
{
|
|
1802
1984
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1803
1985
|
useExisting: AnimatedLifecycleDirective,
|
|
1804
1986
|
},
|
|
1805
1987
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1806
1988
|
}
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1808
1990
|
type: Directive,
|
|
1809
1991
|
args: [{
|
|
1810
1992
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -1841,15 +2023,15 @@ class AnimatedIfDirective {
|
|
|
1841
2023
|
.subscribe();
|
|
1842
2024
|
}
|
|
1843
2025
|
}
|
|
1844
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1845
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2026
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2027
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
1846
2028
|
{
|
|
1847
2029
|
provide: ANIMATED_IF_TOKEN,
|
|
1848
2030
|
useExisting: AnimatedIfDirective,
|
|
1849
2031
|
},
|
|
1850
2032
|
], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
|
|
1851
2033
|
}
|
|
1852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
1853
2035
|
type: Directive,
|
|
1854
2036
|
args: [{
|
|
1855
2037
|
selector: '[etAnimatedIf]',
|
|
@@ -1872,10 +2054,10 @@ class ClickObserverFactory {
|
|
|
1872
2054
|
create() {
|
|
1873
2055
|
return fromEvent(document, 'click');
|
|
1874
2056
|
}
|
|
1875
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1876
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2058
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1877
2059
|
}
|
|
1878
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1879
2061
|
type: Injectable,
|
|
1880
2062
|
args: [{ providedIn: 'root' }]
|
|
1881
2063
|
}] });
|
|
@@ -1928,10 +2110,10 @@ class ClickObserverService {
|
|
|
1928
2110
|
this._observedElements.delete(element);
|
|
1929
2111
|
}
|
|
1930
2112
|
}
|
|
1931
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1932
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2113
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2114
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1933
2115
|
}
|
|
1934
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1935
2117
|
type: Injectable,
|
|
1936
2118
|
args: [{ providedIn: 'root' }]
|
|
1937
2119
|
}] });
|
|
@@ -1941,10 +2123,10 @@ class MutationObserverFactory {
|
|
|
1941
2123
|
create(callback) {
|
|
1942
2124
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1943
2125
|
}
|
|
1944
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1945
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2127
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1946
2128
|
}
|
|
1947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1948
2130
|
type: Injectable,
|
|
1949
2131
|
args: [{ providedIn: 'root' }]
|
|
1950
2132
|
}] });
|
|
@@ -2003,10 +2185,10 @@ class ContentObserverService {
|
|
|
2003
2185
|
this._observedElements.delete(element);
|
|
2004
2186
|
}
|
|
2005
2187
|
}
|
|
2006
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2007
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2189
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
2008
2190
|
}
|
|
2009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
2010
2192
|
type: Injectable,
|
|
2011
2193
|
args: [{ providedIn: 'root' }]
|
|
2012
2194
|
}] });
|
|
@@ -2032,25 +2214,25 @@ class FocusVisibleService {
|
|
|
2032
2214
|
onPointerDown() {
|
|
2033
2215
|
this._hadKeyboardEvent = false;
|
|
2034
2216
|
}
|
|
2035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2218
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
2037
2219
|
}
|
|
2038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
2039
2221
|
type: Injectable,
|
|
2040
2222
|
args: [{
|
|
2041
2223
|
providedIn: 'root',
|
|
2042
2224
|
}]
|
|
2043
|
-
}], ctorParameters:
|
|
2225
|
+
}], ctorParameters: () => [] });
|
|
2044
2226
|
|
|
2045
2227
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
2046
2228
|
class IntersectionObserverFactory {
|
|
2047
2229
|
create(callback) {
|
|
2048
2230
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
2049
2231
|
}
|
|
2050
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2051
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2233
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
2052
2234
|
}
|
|
2053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
2054
2236
|
type: Injectable,
|
|
2055
2237
|
args: [{ providedIn: 'root' }]
|
|
2056
2238
|
}] });
|
|
@@ -2105,10 +2287,10 @@ class IntersectionObserverService {
|
|
|
2105
2287
|
this._observedElements.delete(element);
|
|
2106
2288
|
}
|
|
2107
2289
|
}
|
|
2108
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2109
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2290
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2291
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
2110
2292
|
}
|
|
2111
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
2112
2294
|
type: Injectable,
|
|
2113
2295
|
args: [{ providedIn: 'root' }]
|
|
2114
2296
|
}] });
|
|
@@ -2118,10 +2300,10 @@ class ResizeObserverFactory {
|
|
|
2118
2300
|
create(callback) {
|
|
2119
2301
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
2120
2302
|
}
|
|
2121
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2122
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2304
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
2123
2305
|
}
|
|
2124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
2125
2307
|
type: Injectable,
|
|
2126
2308
|
args: [{ providedIn: 'root' }]
|
|
2127
2309
|
}] });
|
|
@@ -2176,10 +2358,10 @@ class ResizeObserverService {
|
|
|
2176
2358
|
this._observedElements.delete(element);
|
|
2177
2359
|
}
|
|
2178
2360
|
}
|
|
2179
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2180
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2361
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2362
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
2181
2363
|
}
|
|
2182
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
2183
2365
|
type: Injectable,
|
|
2184
2366
|
args: [{ providedIn: 'root' }]
|
|
2185
2367
|
}] });
|
|
@@ -2374,15 +2556,15 @@ class RouterStateService {
|
|
|
2374
2556
|
fragment,
|
|
2375
2557
|
};
|
|
2376
2558
|
}
|
|
2377
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2378
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2559
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2560
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2379
2561
|
}
|
|
2380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2562
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2381
2563
|
type: Injectable,
|
|
2382
2564
|
args: [{
|
|
2383
2565
|
providedIn: 'root',
|
|
2384
2566
|
}]
|
|
2385
|
-
}], ctorParameters:
|
|
2567
|
+
}], ctorParameters: () => [] });
|
|
2386
2568
|
|
|
2387
2569
|
class ViewportService {
|
|
2388
2570
|
get isXs$() {
|
|
@@ -2593,8 +2775,8 @@ class ViewportService {
|
|
|
2593
2775
|
}
|
|
2594
2776
|
return 'xs';
|
|
2595
2777
|
}
|
|
2596
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2597
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2779
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2598
2780
|
}
|
|
2599
2781
|
__decorate([
|
|
2600
2782
|
Memo(),
|
|
@@ -2612,12 +2794,12 @@ __decorate([
|
|
|
2612
2794
|
__metadata("design:paramtypes", [Object]),
|
|
2613
2795
|
__metadata("design:returntype", void 0)
|
|
2614
2796
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ViewportService, decorators: [{
|
|
2616
2798
|
type: Injectable,
|
|
2617
2799
|
args: [{
|
|
2618
2800
|
providedIn: 'root',
|
|
2619
2801
|
}]
|
|
2620
|
-
}], ctorParameters:
|
|
2802
|
+
}], ctorParameters: () => [], propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
|
|
2621
2803
|
|
|
2622
2804
|
class ObserveResizeDirective {
|
|
2623
2805
|
constructor() {
|
|
@@ -2661,10 +2843,10 @@ class ObserveResizeDirective {
|
|
|
2661
2843
|
_unsubscribe() {
|
|
2662
2844
|
this._currentSubscription?.unsubscribe();
|
|
2663
2845
|
}
|
|
2664
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2665
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2847
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2666
2848
|
}
|
|
2667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2668
2850
|
type: Directive,
|
|
2669
2851
|
args: [{
|
|
2670
2852
|
selector: '[etObserveResize]',
|
|
@@ -2694,15 +2876,15 @@ class RootBoundaryDirective {
|
|
|
2694
2876
|
set boundaryElement(v) {
|
|
2695
2877
|
this._boundaryElement = v;
|
|
2696
2878
|
}
|
|
2697
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2698
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2880
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
2699
2881
|
{
|
|
2700
2882
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
2701
2883
|
useExisting: RootBoundaryDirective,
|
|
2702
2884
|
},
|
|
2703
2885
|
], ngImport: i0 }); }
|
|
2704
2886
|
}
|
|
2705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
2706
2888
|
type: Directive,
|
|
2707
2889
|
args: [{
|
|
2708
2890
|
selector: '[etRootBoundary]',
|
|
@@ -2970,10 +3152,10 @@ class AnimatedOverlayDirective {
|
|
|
2970
3152
|
this._isUnmounting$.next(false);
|
|
2971
3153
|
this._afterClosed?.next();
|
|
2972
3154
|
}
|
|
2973
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2974
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3155
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3156
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.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 }); }
|
|
2975
3157
|
}
|
|
2976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
2977
3159
|
type: Directive,
|
|
2978
3160
|
args: [{
|
|
2979
3161
|
standalone: true,
|
|
@@ -3019,10 +3201,10 @@ class ClickOutsideDirective {
|
|
|
3019
3201
|
ngOnDestroy() {
|
|
3020
3202
|
this._subscription?.unsubscribe();
|
|
3021
3203
|
}
|
|
3022
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3023
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3205
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3024
3206
|
}
|
|
3025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3026
3208
|
type: Directive,
|
|
3027
3209
|
args: [{
|
|
3028
3210
|
selector: '[etClickOutside]',
|
|
@@ -3176,10 +3358,10 @@ class CursorDragScrollDirective {
|
|
|
3176
3358
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
3177
3359
|
}
|
|
3178
3360
|
}
|
|
3179
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3180
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3361
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3362
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
3181
3363
|
}
|
|
3182
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
3183
3365
|
type: Directive,
|
|
3184
3366
|
args: [{
|
|
3185
3367
|
selector: '[etCursorDragScroll]',
|
|
@@ -3212,15 +3394,15 @@ class DebugDirective {
|
|
|
3212
3394
|
set sDebug(value) {
|
|
3213
3395
|
this._debug.set(value);
|
|
3214
3396
|
}
|
|
3215
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3216
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3397
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3398
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
3217
3399
|
{
|
|
3218
3400
|
provide: DEBUG_TOKEN,
|
|
3219
3401
|
useExisting: DebugDirective,
|
|
3220
3402
|
},
|
|
3221
3403
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
3222
3404
|
}
|
|
3223
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DebugDirective, decorators: [{
|
|
3224
3406
|
type: Directive,
|
|
3225
3407
|
args: [{
|
|
3226
3408
|
selector: '[etDebug]',
|
|
@@ -3267,15 +3449,15 @@ class DelayableDirective {
|
|
|
3267
3449
|
}
|
|
3268
3450
|
this._isDelayed$.next(val);
|
|
3269
3451
|
}
|
|
3270
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3271
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3452
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3453
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
3272
3454
|
{
|
|
3273
3455
|
provide: DELAYABLE_TOKEN,
|
|
3274
3456
|
useExisting: DelayableDirective,
|
|
3275
3457
|
},
|
|
3276
3458
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
3277
3459
|
}
|
|
3278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
3279
3461
|
type: Directive,
|
|
3280
3462
|
args: [{
|
|
3281
3463
|
selector: '[etDelayable]',
|
|
@@ -3296,15 +3478,15 @@ class IsActiveElementDirective {
|
|
|
3296
3478
|
this.elementRef = inject(ElementRef);
|
|
3297
3479
|
this.isActiveElement = false;
|
|
3298
3480
|
}
|
|
3299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3300
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3482
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
3301
3483
|
{
|
|
3302
3484
|
provide: IS_ACTIVE_ELEMENT,
|
|
3303
3485
|
useExisting: IsActiveElementDirective,
|
|
3304
3486
|
},
|
|
3305
3487
|
], ngImport: i0 }); }
|
|
3306
3488
|
}
|
|
3307
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
3308
3490
|
type: Directive,
|
|
3309
3491
|
args: [{
|
|
3310
3492
|
selector: '[etIsActiveElement]',
|
|
@@ -3327,15 +3509,15 @@ class IsElementDirective {
|
|
|
3327
3509
|
this.elementRef = inject(ElementRef);
|
|
3328
3510
|
this.isElement = false;
|
|
3329
3511
|
}
|
|
3330
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3331
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3512
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3513
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
3332
3514
|
{
|
|
3333
3515
|
provide: IS_ELEMENT,
|
|
3334
3516
|
useExisting: IsElementDirective,
|
|
3335
3517
|
},
|
|
3336
3518
|
], ngImport: i0 }); }
|
|
3337
3519
|
}
|
|
3338
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
3339
3521
|
type: Directive,
|
|
3340
3522
|
args: [{
|
|
3341
3523
|
selector: '[etIsElement]',
|
|
@@ -3384,10 +3566,10 @@ class LetDirective {
|
|
|
3384
3566
|
}
|
|
3385
3567
|
}
|
|
3386
3568
|
}
|
|
3387
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3388
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3569
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3570
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
3389
3571
|
}
|
|
3390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: LetDirective, decorators: [{
|
|
3391
3573
|
type: Directive,
|
|
3392
3574
|
args: [{
|
|
3393
3575
|
selector: '[etLet]',
|
|
@@ -3439,10 +3621,10 @@ class ObserveContentDirective {
|
|
|
3439
3621
|
_unsubscribe() {
|
|
3440
3622
|
this._currentSubscription?.unsubscribe();
|
|
3441
3623
|
}
|
|
3442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3443
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3624
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3625
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
3444
3626
|
}
|
|
3445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
3446
3628
|
type: Directive,
|
|
3447
3629
|
args: [{
|
|
3448
3630
|
selector: '[etObserveContent]',
|
|
@@ -3465,10 +3647,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
3465
3647
|
constructor() {
|
|
3466
3648
|
this.isFirstElement = false;
|
|
3467
3649
|
}
|
|
3468
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3469
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3650
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3651
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
3470
3652
|
}
|
|
3471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
3472
3654
|
type: Directive,
|
|
3473
3655
|
args: [{
|
|
3474
3656
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -3484,10 +3666,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImpo
|
|
|
3484
3666
|
|
|
3485
3667
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
3486
3668
|
class ScrollObserverIgnoreTargetDirective {
|
|
3487
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3488
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3670
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
3489
3671
|
}
|
|
3490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
3491
3673
|
type: Directive,
|
|
3492
3674
|
args: [{
|
|
3493
3675
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -3503,10 +3685,10 @@ class ScrollObserverLastElementDirective {
|
|
|
3503
3685
|
constructor() {
|
|
3504
3686
|
this.isLastElement = false;
|
|
3505
3687
|
}
|
|
3506
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3507
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3688
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3689
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.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 }); }
|
|
3508
3690
|
}
|
|
3509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
3510
3692
|
type: Directive,
|
|
3511
3693
|
args: [{
|
|
3512
3694
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -3665,15 +3847,15 @@ class ObserveScrollStateDirective {
|
|
|
3665
3847
|
}
|
|
3666
3848
|
return element;
|
|
3667
3849
|
}
|
|
3668
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3669
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3851
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.1", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
3670
3852
|
{
|
|
3671
3853
|
provide: OBSERVE_SCROLL_STATE,
|
|
3672
3854
|
useExisting: ObserveScrollStateDirective,
|
|
3673
3855
|
},
|
|
3674
3856
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
3675
3857
|
}
|
|
3676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
3677
3859
|
type: Directive,
|
|
3678
3860
|
args: [{
|
|
3679
3861
|
selector: '[etObserveScrollState]',
|
|
@@ -3743,15 +3925,15 @@ class ObserveVisibilityDirective {
|
|
|
3743
3925
|
}))
|
|
3744
3926
|
.subscribe();
|
|
3745
3927
|
}
|
|
3746
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3747
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3928
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3929
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
3748
3930
|
{
|
|
3749
3931
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
3750
3932
|
useExisting: ObserveVisibilityDirective,
|
|
3751
3933
|
},
|
|
3752
3934
|
], ngImport: i0 }); }
|
|
3753
3935
|
}
|
|
3754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
3755
3937
|
type: Directive,
|
|
3756
3938
|
args: [{
|
|
3757
3939
|
selector: '[etObserveVisibility]',
|
|
@@ -3766,7 +3948,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImpo
|
|
|
3766
3948
|
class: 'et-observe-visibility',
|
|
3767
3949
|
},
|
|
3768
3950
|
}]
|
|
3769
|
-
}], ctorParameters:
|
|
3951
|
+
}], ctorParameters: () => [], propDecorators: { etObserveVisibility: [{
|
|
3770
3952
|
type: Output
|
|
3771
3953
|
}] } });
|
|
3772
3954
|
|
|
@@ -3789,16 +3971,16 @@ class RepeatDirective {
|
|
|
3789
3971
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3790
3972
|
}
|
|
3791
3973
|
}
|
|
3792
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3793
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3974
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3975
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3794
3976
|
}
|
|
3795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3796
3978
|
type: Directive,
|
|
3797
3979
|
args: [{
|
|
3798
3980
|
selector: '[etRepeat]',
|
|
3799
3981
|
standalone: true,
|
|
3800
3982
|
}]
|
|
3801
|
-
}], ctorParameters:
|
|
3983
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }], propDecorators: { repeatCount: [{
|
|
3802
3984
|
type: Input,
|
|
3803
3985
|
args: ['etRepeat']
|
|
3804
3986
|
}] } });
|
|
@@ -3961,10 +4143,10 @@ class SeoDirective {
|
|
|
3961
4143
|
}
|
|
3962
4144
|
}
|
|
3963
4145
|
}
|
|
3964
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3965
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4147
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.1", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
3966
4148
|
}
|
|
3967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4149
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: SeoDirective, decorators: [{
|
|
3968
4150
|
type: Directive,
|
|
3969
4151
|
args: [{
|
|
3970
4152
|
standalone: true,
|
|
@@ -4140,10 +4322,10 @@ class InferMimeTypePipe {
|
|
|
4140
4322
|
constructor() {
|
|
4141
4323
|
this.transform = inferMimeType;
|
|
4142
4324
|
}
|
|
4143
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4144
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4326
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
4145
4327
|
}
|
|
4146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
4147
4329
|
type: Pipe,
|
|
4148
4330
|
args: [{
|
|
4149
4331
|
name: 'inferMimeType',
|
|
@@ -4189,10 +4371,10 @@ class NormalizeGameResultTypePipe {
|
|
|
4189
4371
|
constructor() {
|
|
4190
4372
|
this.transform = normalizeGameResultType;
|
|
4191
4373
|
}
|
|
4192
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4193
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4375
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
4194
4376
|
}
|
|
4195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
4196
4378
|
type: Pipe,
|
|
4197
4379
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
4198
4380
|
}] });
|
|
@@ -4220,10 +4402,10 @@ class NormalizeMatchStatePipe {
|
|
|
4220
4402
|
constructor() {
|
|
4221
4403
|
this.transform = normalizeMatchState;
|
|
4222
4404
|
}
|
|
4223
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4224
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4405
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4406
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
4225
4407
|
}
|
|
4226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
4227
4409
|
type: Pipe,
|
|
4228
4410
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
4229
4411
|
}] });
|
|
@@ -4278,10 +4460,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
4278
4460
|
constructor() {
|
|
4279
4461
|
this.transform = normalizeMatchParticipants;
|
|
4280
4462
|
}
|
|
4281
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4282
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4463
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4464
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
4283
4465
|
}
|
|
4284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
4285
4467
|
type: Pipe,
|
|
4286
4468
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
4287
4469
|
}] });
|
|
@@ -4415,10 +4597,10 @@ class NormalizeMatchScorePipe {
|
|
|
4415
4597
|
constructor() {
|
|
4416
4598
|
this.transform = normalizeMatchScore;
|
|
4417
4599
|
}
|
|
4418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4419
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4600
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4601
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
4420
4602
|
}
|
|
4421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
4422
4604
|
type: Pipe,
|
|
4423
4605
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
4424
4606
|
}] });
|
|
@@ -4465,10 +4647,10 @@ class NormalizeMatchTypePipe {
|
|
|
4465
4647
|
constructor() {
|
|
4466
4648
|
this.transform = normalizeMatchType;
|
|
4467
4649
|
}
|
|
4468
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4469
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4650
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4651
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
4470
4652
|
}
|
|
4471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
4472
4654
|
type: Pipe,
|
|
4473
4655
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
4474
4656
|
}] });
|
|
@@ -4482,10 +4664,10 @@ class ToArrayPipe {
|
|
|
4482
4664
|
constructor() {
|
|
4483
4665
|
this.transform = toArray;
|
|
4484
4666
|
}
|
|
4485
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4486
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4667
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4668
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
4487
4669
|
}
|
|
4488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.1", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
4489
4671
|
type: Pipe,
|
|
4490
4672
|
args: [{ name: 'toArray', standalone: true }]
|
|
4491
4673
|
}] });
|
|
@@ -4573,5 +4755,5 @@ const Validators = {
|
|
|
4573
4755
|
* Generated bundle index. Do not edit.
|
|
4574
4756
|
*/
|
|
4575
4757
|
|
|
4576
|
-
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, buildSignalEffects, clamp, clone, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, signalAttributes, signalClasses, signalHostAttributes, signalHostClasses, signalHostStyles, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
|
|
4758
|
+
export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEBUG_TOKEN, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DebugDirective, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, InferMimeTypePipe, IntersectionObserverFactory, IntersectionObserverService, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, OBSERVE_VISIBILITY_TOKEN, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, ObserveVisibilityDirective, ROOT_BOUNDARY_TOKEN, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RootBoundaryDirective, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, buildSignalEffects, clamp, clone, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, inferMimeType, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, signalAttributes, signalClasses, signalElementDimensions, signalElementIntersection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
|
|
4577
4759
|
//# sourceMappingURL=ethlete-core.mjs.map
|