@ethlete/core 4.1.0 → 4.2.1
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 +5 -7
- 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 +123 -11
- package/fesm2022/ethlete-core.mjs +252 -142
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/animated-if/animated-if.directive.d.ts +1 -2
- package/lib/utils/signal.utils.d.ts +28 -3
- package/package.json +7 -7
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef,
|
|
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';
|
|
8
8
|
import { coerceElement, coerceCssPixelValue } from '@angular/cdk/coercion';
|
|
9
9
|
import { supportsScrollBehavior } from '@angular/cdk/platform';
|
|
10
|
-
import * as i1 from '@angular/common';
|
|
11
10
|
import { NgIf, DOCUMENT } from '@angular/common';
|
|
12
11
|
import { Overlay } from '@angular/cdk/overlay';
|
|
13
12
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
14
|
-
import {
|
|
13
|
+
import { offset, flip, size, limitShift, shift, arrow, hide, computePosition, autoUpdate } from '@floating-ui/dom';
|
|
15
14
|
import { Router, NavigationEnd } from '@angular/router';
|
|
16
|
-
import {
|
|
15
|
+
import { __metadata, __decorate } from 'tslib';
|
|
17
16
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
18
17
|
import { debounceTime as debounceTime$1 } from 'rxjs/operators';
|
|
19
18
|
|
|
@@ -29,10 +28,10 @@ class StructuredDataComponent {
|
|
|
29
28
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
30
29
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
31
30
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.2", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
34
33
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
36
35
|
type: Component,
|
|
37
36
|
args: [{
|
|
38
37
|
selector: 'et-structured-data',
|
|
@@ -1375,7 +1374,20 @@ class SelectionModel {
|
|
|
1375
1374
|
}
|
|
1376
1375
|
}
|
|
1377
1376
|
|
|
1377
|
+
function isElementSignal(el) {
|
|
1378
|
+
if (isSignal(el)) {
|
|
1379
|
+
const val = el();
|
|
1380
|
+
return typeof val === 'object' && val !== null && 'currentElement' in val && 'previousElement' in val;
|
|
1381
|
+
}
|
|
1382
|
+
return false;
|
|
1383
|
+
}
|
|
1378
1384
|
const buildElementSignal = (el) => {
|
|
1385
|
+
if (el === null || el === undefined) {
|
|
1386
|
+
return signal({ currentElement: null, previousElement: null });
|
|
1387
|
+
}
|
|
1388
|
+
if (isElementSignal(el)) {
|
|
1389
|
+
return el;
|
|
1390
|
+
}
|
|
1379
1391
|
let mElSignal = null;
|
|
1380
1392
|
const switchElement = () => switchMap((elOrRef) => {
|
|
1381
1393
|
if (elOrRef instanceof QueryList) {
|
|
@@ -1398,8 +1410,8 @@ const buildElementSignal = (el) => {
|
|
|
1398
1410
|
mElSignal = signal(coerceElement(el));
|
|
1399
1411
|
}
|
|
1400
1412
|
return toSignal(toObservable(mElSignal).pipe(startWith(null), pairwise(), map(([previousElement, currentElement]) => ({
|
|
1401
|
-
currentElement,
|
|
1402
|
-
previousElement,
|
|
1413
|
+
currentElement: currentElement ?? null,
|
|
1414
|
+
previousElement: previousElement ?? null,
|
|
1403
1415
|
}))), { initialValue: { currentElement: null, previousElement: null } });
|
|
1404
1416
|
};
|
|
1405
1417
|
const buildSignalEffects = (config) => {
|
|
@@ -1425,6 +1437,11 @@ const buildSignalEffects = (config) => {
|
|
|
1425
1437
|
};
|
|
1426
1438
|
return { remove, has };
|
|
1427
1439
|
};
|
|
1440
|
+
const signalIsRendered = () => {
|
|
1441
|
+
const isRendered = signal(false);
|
|
1442
|
+
afterNextRender(() => isRendered.set(true));
|
|
1443
|
+
return isRendered.asReadonly();
|
|
1444
|
+
};
|
|
1428
1445
|
const signalClasses = (el, classMap) => {
|
|
1429
1446
|
const elements = buildElementSignal(el);
|
|
1430
1447
|
return buildSignalEffects({
|
|
@@ -1484,7 +1501,8 @@ const signalHostStyles = (styleMap) => signalStyles(inject(ElementRef), styleMap
|
|
|
1484
1501
|
const signalElementDimensions = (el) => {
|
|
1485
1502
|
const destroyRef = inject(DestroyRef);
|
|
1486
1503
|
const elements = buildElementSignal(el);
|
|
1487
|
-
const
|
|
1504
|
+
const zone = inject(NgZone);
|
|
1505
|
+
const isRendered = signalIsRendered();
|
|
1488
1506
|
const initialValue = () => ({
|
|
1489
1507
|
rect: elements().currentElement?.getBoundingClientRect() ?? null,
|
|
1490
1508
|
borderBoxSize: null,
|
|
@@ -1493,12 +1511,14 @@ const signalElementDimensions = (el) => {
|
|
|
1493
1511
|
});
|
|
1494
1512
|
const elementDimensionsSignal = signal(initialValue());
|
|
1495
1513
|
const observer = new ResizeObserver((e) => {
|
|
1514
|
+
if (!isRendered())
|
|
1515
|
+
return;
|
|
1496
1516
|
const entry = e[0];
|
|
1497
1517
|
if (entry) {
|
|
1498
1518
|
const devicePixelContentBoxSize = entry.devicePixelContentBoxSize?.[0] ?? null;
|
|
1499
1519
|
const borderBoxSize = entry.borderBoxSize?.[0] ?? null;
|
|
1500
1520
|
const contentBoxSize = entry.contentBoxSize?.[0] ?? null;
|
|
1501
|
-
elementDimensionsSignal.set({
|
|
1521
|
+
zone.run(() => elementDimensionsSignal.set({
|
|
1502
1522
|
rect: entry.contentRect,
|
|
1503
1523
|
borderBoxSize: borderBoxSize
|
|
1504
1524
|
? { inlineSize: borderBoxSize.inlineSize, blockSize: borderBoxSize.blockSize }
|
|
@@ -1509,13 +1529,15 @@ const signalElementDimensions = (el) => {
|
|
|
1509
1529
|
devicePixelContentBoxSize: devicePixelContentBoxSize
|
|
1510
1530
|
? { inlineSize: devicePixelContentBoxSize.inlineSize, blockSize: devicePixelContentBoxSize.blockSize }
|
|
1511
1531
|
: null,
|
|
1512
|
-
});
|
|
1513
|
-
cdr.detectChanges();
|
|
1532
|
+
}));
|
|
1514
1533
|
}
|
|
1515
1534
|
});
|
|
1516
1535
|
effect(() => {
|
|
1517
1536
|
const els = elements();
|
|
1518
1537
|
elementDimensionsSignal.set(initialValue());
|
|
1538
|
+
if (els.previousElement) {
|
|
1539
|
+
observer.disconnect();
|
|
1540
|
+
}
|
|
1519
1541
|
if (els.currentElement) {
|
|
1520
1542
|
const computedDisplay = getComputedStyle(els.currentElement).display;
|
|
1521
1543
|
const currentElIsAngularComponent = els.currentElement?.tagName.toLowerCase().includes('-');
|
|
@@ -1524,14 +1546,103 @@ const signalElementDimensions = (el) => {
|
|
|
1524
1546
|
}
|
|
1525
1547
|
observer.observe(els.currentElement);
|
|
1526
1548
|
}
|
|
1549
|
+
}, { allowSignalWrites: true });
|
|
1550
|
+
destroyRef.onDestroy(() => observer.disconnect());
|
|
1551
|
+
return elementDimensionsSignal.asReadonly();
|
|
1552
|
+
};
|
|
1553
|
+
const signalHostElementDimensions = () => signalElementDimensions(inject(ElementRef));
|
|
1554
|
+
const signalElementMutations = (el, options) => {
|
|
1555
|
+
const destroyRef = inject(DestroyRef);
|
|
1556
|
+
const elements = buildElementSignal(el);
|
|
1557
|
+
const zone = inject(NgZone);
|
|
1558
|
+
const isRendered = signalIsRendered();
|
|
1559
|
+
const elementMutationsSignal = signal(null);
|
|
1560
|
+
const observer = new MutationObserver((e) => {
|
|
1561
|
+
if (!isRendered())
|
|
1562
|
+
return;
|
|
1563
|
+
const entry = e[0];
|
|
1564
|
+
if (entry) {
|
|
1565
|
+
zone.run(() => elementMutationsSignal.set(entry));
|
|
1566
|
+
}
|
|
1567
|
+
});
|
|
1568
|
+
effect(() => {
|
|
1569
|
+
const els = elements();
|
|
1570
|
+
elementMutationsSignal.set(null);
|
|
1571
|
+
if (els.previousElement) {
|
|
1572
|
+
observer.disconnect();
|
|
1573
|
+
}
|
|
1574
|
+
if (els.currentElement) {
|
|
1575
|
+
observer.observe(els.currentElement, options);
|
|
1576
|
+
}
|
|
1577
|
+
}, { allowSignalWrites: true });
|
|
1578
|
+
destroyRef.onDestroy(() => observer.disconnect());
|
|
1579
|
+
return elementMutationsSignal.asReadonly();
|
|
1580
|
+
};
|
|
1581
|
+
const signalHostElementMutations = (options) => signalElementMutations(inject(ElementRef), options);
|
|
1582
|
+
const signalElementScrollState = (el) => {
|
|
1583
|
+
const elements = buildElementSignal(el);
|
|
1584
|
+
const elementDimensions = signalElementDimensions(elements);
|
|
1585
|
+
const elementMutations = signalElementMutations(elements, { childList: true, subtree: true });
|
|
1586
|
+
const isRendered = signalIsRendered();
|
|
1587
|
+
return computed(() => {
|
|
1588
|
+
const element = elements().currentElement;
|
|
1589
|
+
const dimensions = elementDimensions();
|
|
1590
|
+
const notScrollable = () => ({
|
|
1591
|
+
canScroll: false,
|
|
1592
|
+
canScrollHorizontally: false,
|
|
1593
|
+
canScrollVertically: false,
|
|
1594
|
+
scrollWidth: element?.scrollWidth ?? null,
|
|
1595
|
+
scrollHeight: element?.scrollHeight ?? null,
|
|
1596
|
+
elementDimensions: dimensions,
|
|
1597
|
+
});
|
|
1598
|
+
// We are not interested what the mutation is, just that there is one.
|
|
1599
|
+
// Changes to the DOM can affect the scroll state of the element.
|
|
1600
|
+
elementMutations();
|
|
1601
|
+
if (!element || !dimensions.rect || !isRendered())
|
|
1602
|
+
return notScrollable();
|
|
1603
|
+
const { scrollWidth, scrollHeight } = element;
|
|
1604
|
+
const { width, height } = dimensions.rect;
|
|
1605
|
+
const canScrollHorizontally = scrollWidth > width;
|
|
1606
|
+
const canScrollVertically = scrollHeight > height;
|
|
1607
|
+
return {
|
|
1608
|
+
canScroll: canScrollHorizontally || canScrollVertically,
|
|
1609
|
+
canScrollHorizontally,
|
|
1610
|
+
canScrollVertically,
|
|
1611
|
+
scrollWidth,
|
|
1612
|
+
scrollHeight,
|
|
1613
|
+
elementDimensions: dimensions,
|
|
1614
|
+
};
|
|
1615
|
+
});
|
|
1616
|
+
};
|
|
1617
|
+
const signalHostElementScrollState = () => signalElementScrollState(inject(ElementRef));
|
|
1618
|
+
const signalElementIntersection = (el, options) => {
|
|
1619
|
+
const destroyRef = inject(DestroyRef);
|
|
1620
|
+
const elements = buildElementSignal(el);
|
|
1621
|
+
const zone = inject(NgZone);
|
|
1622
|
+
const isRendered = signalIsRendered();
|
|
1623
|
+
const elementIntersectionSignal = signal(null);
|
|
1624
|
+
const observer = new IntersectionObserver((e) => {
|
|
1625
|
+
if (!isRendered())
|
|
1626
|
+
return;
|
|
1627
|
+
const entry = e[0];
|
|
1628
|
+
if (entry) {
|
|
1629
|
+
zone.run(() => elementIntersectionSignal.set(entry));
|
|
1630
|
+
}
|
|
1631
|
+
}, options);
|
|
1632
|
+
effect(() => {
|
|
1633
|
+
const els = elements();
|
|
1634
|
+
elementIntersectionSignal.set(null);
|
|
1527
1635
|
if (els.previousElement) {
|
|
1528
|
-
observer.
|
|
1636
|
+
observer.disconnect();
|
|
1637
|
+
}
|
|
1638
|
+
if (els.currentElement) {
|
|
1639
|
+
observer.observe(els.currentElement);
|
|
1529
1640
|
}
|
|
1530
1641
|
}, { allowSignalWrites: true });
|
|
1531
1642
|
destroyRef.onDestroy(() => observer.disconnect());
|
|
1532
|
-
return
|
|
1643
|
+
return elementIntersectionSignal;
|
|
1533
1644
|
};
|
|
1534
|
-
const
|
|
1645
|
+
const signalHostElementIntersection = (options) => signalElementIntersection(inject(ElementRef), options);
|
|
1535
1646
|
|
|
1536
1647
|
const scrollBehaviorSupported = supportsScrollBehavior();
|
|
1537
1648
|
let _uniqueIdCounter = 0;
|
|
@@ -1733,15 +1844,15 @@ class AnimatableDirective {
|
|
|
1733
1844
|
.subscribe();
|
|
1734
1845
|
}
|
|
1735
1846
|
}
|
|
1736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1737
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1847
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1848
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1738
1849
|
{
|
|
1739
1850
|
provide: ANIMATABLE_TOKEN,
|
|
1740
1851
|
useExisting: AnimatableDirective,
|
|
1741
1852
|
},
|
|
1742
1853
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1743
1854
|
}
|
|
1744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1745
1856
|
type: Directive,
|
|
1746
1857
|
args: [{
|
|
1747
1858
|
selector: '[etAnimatable]',
|
|
@@ -1861,15 +1972,15 @@ class AnimatedLifecycleDirective {
|
|
|
1861
1972
|
_forceState(state) {
|
|
1862
1973
|
this._state$.next(state);
|
|
1863
1974
|
}
|
|
1864
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1865
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1975
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1976
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1866
1977
|
{
|
|
1867
1978
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1868
1979
|
useExisting: AnimatedLifecycleDirective,
|
|
1869
1980
|
},
|
|
1870
1981
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1871
1982
|
}
|
|
1872
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1873
1984
|
type: Directive,
|
|
1874
1985
|
args: [{
|
|
1875
1986
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -1906,15 +2017,15 @@ class AnimatedIfDirective {
|
|
|
1906
2017
|
.subscribe();
|
|
1907
2018
|
}
|
|
1908
2019
|
}
|
|
1909
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1910
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2020
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2021
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
|
|
1911
2022
|
{
|
|
1912
2023
|
provide: ANIMATED_IF_TOKEN,
|
|
1913
2024
|
useExisting: AnimatedIfDirective,
|
|
1914
2025
|
},
|
|
1915
|
-
],
|
|
2026
|
+
], ngImport: i0 }); }
|
|
1916
2027
|
}
|
|
1917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedIfDirective, decorators: [{
|
|
1918
2029
|
type: Directive,
|
|
1919
2030
|
args: [{
|
|
1920
2031
|
selector: '[etAnimatedIf]',
|
|
@@ -1925,7 +2036,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1925
2036
|
useExisting: AnimatedIfDirective,
|
|
1926
2037
|
},
|
|
1927
2038
|
],
|
|
1928
|
-
hostDirectives: [NgIf],
|
|
1929
2039
|
}]
|
|
1930
2040
|
}], propDecorators: { shouldRender: [{
|
|
1931
2041
|
type: Input,
|
|
@@ -1937,10 +2047,10 @@ class ClickObserverFactory {
|
|
|
1937
2047
|
create() {
|
|
1938
2048
|
return fromEvent(document, 'click');
|
|
1939
2049
|
}
|
|
1940
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1941
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2050
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2051
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1942
2052
|
}
|
|
1943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1944
2054
|
type: Injectable,
|
|
1945
2055
|
args: [{ providedIn: 'root' }]
|
|
1946
2056
|
}] });
|
|
@@ -1993,10 +2103,10 @@ class ClickObserverService {
|
|
|
1993
2103
|
this._observedElements.delete(element);
|
|
1994
2104
|
}
|
|
1995
2105
|
}
|
|
1996
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1997
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2107
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1998
2108
|
}
|
|
1999
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
2000
2110
|
type: Injectable,
|
|
2001
2111
|
args: [{ providedIn: 'root' }]
|
|
2002
2112
|
}] });
|
|
@@ -2006,10 +2116,10 @@ class MutationObserverFactory {
|
|
|
2006
2116
|
create(callback) {
|
|
2007
2117
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
2008
2118
|
}
|
|
2009
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2010
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2120
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
2011
2121
|
}
|
|
2012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
2013
2123
|
type: Injectable,
|
|
2014
2124
|
args: [{ providedIn: 'root' }]
|
|
2015
2125
|
}] });
|
|
@@ -2068,10 +2178,10 @@ class ContentObserverService {
|
|
|
2068
2178
|
this._observedElements.delete(element);
|
|
2069
2179
|
}
|
|
2070
2180
|
}
|
|
2071
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2072
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2182
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
2073
2183
|
}
|
|
2074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
2075
2185
|
type: Injectable,
|
|
2076
2186
|
args: [{ providedIn: 'root' }]
|
|
2077
2187
|
}] });
|
|
@@ -2097,25 +2207,25 @@ class FocusVisibleService {
|
|
|
2097
2207
|
onPointerDown() {
|
|
2098
2208
|
this._hadKeyboardEvent = false;
|
|
2099
2209
|
}
|
|
2100
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2101
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2210
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2211
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
2102
2212
|
}
|
|
2103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
2104
2214
|
type: Injectable,
|
|
2105
2215
|
args: [{
|
|
2106
2216
|
providedIn: 'root',
|
|
2107
2217
|
}]
|
|
2108
|
-
}], ctorParameters:
|
|
2218
|
+
}], ctorParameters: () => [] });
|
|
2109
2219
|
|
|
2110
2220
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
2111
2221
|
class IntersectionObserverFactory {
|
|
2112
2222
|
create(callback) {
|
|
2113
2223
|
return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
|
|
2114
2224
|
}
|
|
2115
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2116
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2226
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
|
|
2117
2227
|
}
|
|
2118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
|
|
2119
2229
|
type: Injectable,
|
|
2120
2230
|
args: [{ providedIn: 'root' }]
|
|
2121
2231
|
}] });
|
|
@@ -2170,10 +2280,10 @@ class IntersectionObserverService {
|
|
|
2170
2280
|
this._observedElements.delete(element);
|
|
2171
2281
|
}
|
|
2172
2282
|
}
|
|
2173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2174
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2283
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2284
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
|
|
2175
2285
|
}
|
|
2176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IntersectionObserverService, decorators: [{
|
|
2177
2287
|
type: Injectable,
|
|
2178
2288
|
args: [{ providedIn: 'root' }]
|
|
2179
2289
|
}] });
|
|
@@ -2183,10 +2293,10 @@ class ResizeObserverFactory {
|
|
|
2183
2293
|
create(callback) {
|
|
2184
2294
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
2185
2295
|
}
|
|
2186
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2187
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2297
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
2188
2298
|
}
|
|
2189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
2190
2300
|
type: Injectable,
|
|
2191
2301
|
args: [{ providedIn: 'root' }]
|
|
2192
2302
|
}] });
|
|
@@ -2241,10 +2351,10 @@ class ResizeObserverService {
|
|
|
2241
2351
|
this._observedElements.delete(element);
|
|
2242
2352
|
}
|
|
2243
2353
|
}
|
|
2244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2245
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2355
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
2246
2356
|
}
|
|
2247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
2248
2358
|
type: Injectable,
|
|
2249
2359
|
args: [{ providedIn: 'root' }]
|
|
2250
2360
|
}] });
|
|
@@ -2439,15 +2549,15 @@ class RouterStateService {
|
|
|
2439
2549
|
fragment,
|
|
2440
2550
|
};
|
|
2441
2551
|
}
|
|
2442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2552
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2553
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
2444
2554
|
}
|
|
2445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RouterStateService, decorators: [{
|
|
2446
2556
|
type: Injectable,
|
|
2447
2557
|
args: [{
|
|
2448
2558
|
providedIn: 'root',
|
|
2449
2559
|
}]
|
|
2450
|
-
}], ctorParameters:
|
|
2560
|
+
}], ctorParameters: () => [] });
|
|
2451
2561
|
|
|
2452
2562
|
class ViewportService {
|
|
2453
2563
|
get isXs$() {
|
|
@@ -2658,8 +2768,8 @@ class ViewportService {
|
|
|
2658
2768
|
}
|
|
2659
2769
|
return 'xs';
|
|
2660
2770
|
}
|
|
2661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2662
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2771
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2772
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2663
2773
|
}
|
|
2664
2774
|
__decorate([
|
|
2665
2775
|
Memo(),
|
|
@@ -2677,12 +2787,12 @@ __decorate([
|
|
|
2677
2787
|
__metadata("design:paramtypes", [Object]),
|
|
2678
2788
|
__metadata("design:returntype", void 0)
|
|
2679
2789
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ViewportService, decorators: [{
|
|
2681
2791
|
type: Injectable,
|
|
2682
2792
|
args: [{
|
|
2683
2793
|
providedIn: 'root',
|
|
2684
2794
|
}]
|
|
2685
|
-
}], ctorParameters:
|
|
2795
|
+
}], ctorParameters: () => [], propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
|
|
2686
2796
|
|
|
2687
2797
|
class ObserveResizeDirective {
|
|
2688
2798
|
constructor() {
|
|
@@ -2726,10 +2836,10 @@ class ObserveResizeDirective {
|
|
|
2726
2836
|
_unsubscribe() {
|
|
2727
2837
|
this._currentSubscription?.unsubscribe();
|
|
2728
2838
|
}
|
|
2729
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2730
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2840
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2731
2841
|
}
|
|
2732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2733
2843
|
type: Directive,
|
|
2734
2844
|
args: [{
|
|
2735
2845
|
selector: '[etObserveResize]',
|
|
@@ -2759,15 +2869,15 @@ class RootBoundaryDirective {
|
|
|
2759
2869
|
set boundaryElement(v) {
|
|
2760
2870
|
this._boundaryElement = v;
|
|
2761
2871
|
}
|
|
2762
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2763
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2872
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2873
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RootBoundaryDirective, isStandalone: true, selector: "[etRootBoundary]", providers: [
|
|
2764
2874
|
{
|
|
2765
2875
|
provide: ROOT_BOUNDARY_TOKEN,
|
|
2766
2876
|
useExisting: RootBoundaryDirective,
|
|
2767
2877
|
},
|
|
2768
2878
|
], ngImport: i0 }); }
|
|
2769
2879
|
}
|
|
2770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RootBoundaryDirective, decorators: [{
|
|
2771
2881
|
type: Directive,
|
|
2772
2882
|
args: [{
|
|
2773
2883
|
selector: '[etRootBoundary]',
|
|
@@ -3035,10 +3145,10 @@ class AnimatedOverlayDirective {
|
|
|
3035
3145
|
this._isUnmounting$.next(false);
|
|
3036
3146
|
this._afterClosed?.next();
|
|
3037
3147
|
}
|
|
3038
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3039
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3149
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", 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 }); }
|
|
3040
3150
|
}
|
|
3041
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
3042
3152
|
type: Directive,
|
|
3043
3153
|
args: [{
|
|
3044
3154
|
standalone: true,
|
|
@@ -3084,10 +3194,10 @@ class ClickOutsideDirective {
|
|
|
3084
3194
|
ngOnDestroy() {
|
|
3085
3195
|
this._subscription?.unsubscribe();
|
|
3086
3196
|
}
|
|
3087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3088
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3198
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
3089
3199
|
}
|
|
3090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
3091
3201
|
type: Directive,
|
|
3092
3202
|
args: [{
|
|
3093
3203
|
selector: '[etClickOutside]',
|
|
@@ -3241,10 +3351,10 @@ class CursorDragScrollDirective {
|
|
|
3241
3351
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
3242
3352
|
}
|
|
3243
3353
|
}
|
|
3244
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3245
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3355
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
3246
3356
|
}
|
|
3247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
3248
3358
|
type: Directive,
|
|
3249
3359
|
args: [{
|
|
3250
3360
|
selector: '[etCursorDragScroll]',
|
|
@@ -3277,15 +3387,15 @@ class DebugDirective {
|
|
|
3277
3387
|
set sDebug(value) {
|
|
3278
3388
|
this._debug.set(value);
|
|
3279
3389
|
}
|
|
3280
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3281
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3391
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: DebugDirective, isStandalone: true, selector: "[etDebug]", inputs: { sDebug: ["etDebug", "sDebug", booleanAttribute] }, providers: [
|
|
3282
3392
|
{
|
|
3283
3393
|
provide: DEBUG_TOKEN,
|
|
3284
3394
|
useExisting: DebugDirective,
|
|
3285
3395
|
},
|
|
3286
3396
|
], exportAs: ["etDebug"], ngImport: i0 }); }
|
|
3287
3397
|
}
|
|
3288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DebugDirective, decorators: [{
|
|
3289
3399
|
type: Directive,
|
|
3290
3400
|
args: [{
|
|
3291
3401
|
selector: '[etDebug]',
|
|
@@ -3332,15 +3442,15 @@ class DelayableDirective {
|
|
|
3332
3442
|
}
|
|
3333
3443
|
this._isDelayed$.next(val);
|
|
3334
3444
|
}
|
|
3335
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3336
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3445
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3446
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
3337
3447
|
{
|
|
3338
3448
|
provide: DELAYABLE_TOKEN,
|
|
3339
3449
|
useExisting: DelayableDirective,
|
|
3340
3450
|
},
|
|
3341
3451
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
3342
3452
|
}
|
|
3343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
3344
3454
|
type: Directive,
|
|
3345
3455
|
args: [{
|
|
3346
3456
|
selector: '[etDelayable]',
|
|
@@ -3361,15 +3471,15 @@ class IsActiveElementDirective {
|
|
|
3361
3471
|
this.elementRef = inject(ElementRef);
|
|
3362
3472
|
this.isActiveElement = false;
|
|
3363
3473
|
}
|
|
3364
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3365
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3475
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
3366
3476
|
{
|
|
3367
3477
|
provide: IS_ACTIVE_ELEMENT,
|
|
3368
3478
|
useExisting: IsActiveElementDirective,
|
|
3369
3479
|
},
|
|
3370
3480
|
], ngImport: i0 }); }
|
|
3371
3481
|
}
|
|
3372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
3373
3483
|
type: Directive,
|
|
3374
3484
|
args: [{
|
|
3375
3485
|
selector: '[etIsActiveElement]',
|
|
@@ -3392,15 +3502,15 @@ class IsElementDirective {
|
|
|
3392
3502
|
this.elementRef = inject(ElementRef);
|
|
3393
3503
|
this.isElement = false;
|
|
3394
3504
|
}
|
|
3395
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3396
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3505
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3506
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
3397
3507
|
{
|
|
3398
3508
|
provide: IS_ELEMENT,
|
|
3399
3509
|
useExisting: IsElementDirective,
|
|
3400
3510
|
},
|
|
3401
3511
|
], ngImport: i0 }); }
|
|
3402
3512
|
}
|
|
3403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
3404
3514
|
type: Directive,
|
|
3405
3515
|
args: [{
|
|
3406
3516
|
selector: '[etIsElement]',
|
|
@@ -3449,10 +3559,10 @@ class LetDirective {
|
|
|
3449
3559
|
}
|
|
3450
3560
|
}
|
|
3451
3561
|
}
|
|
3452
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3453
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3562
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3563
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
3454
3564
|
}
|
|
3455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LetDirective, decorators: [{
|
|
3456
3566
|
type: Directive,
|
|
3457
3567
|
args: [{
|
|
3458
3568
|
selector: '[etLet]',
|
|
@@ -3504,10 +3614,10 @@ class ObserveContentDirective {
|
|
|
3504
3614
|
_unsubscribe() {
|
|
3505
3615
|
this._currentSubscription?.unsubscribe();
|
|
3506
3616
|
}
|
|
3507
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3508
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3618
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
3509
3619
|
}
|
|
3510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
3511
3621
|
type: Directive,
|
|
3512
3622
|
args: [{
|
|
3513
3623
|
selector: '[etObserveContent]',
|
|
@@ -3530,10 +3640,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
3530
3640
|
constructor() {
|
|
3531
3641
|
this.isFirstElement = false;
|
|
3532
3642
|
}
|
|
3533
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3534
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3643
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3644
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
3535
3645
|
}
|
|
3536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
3537
3647
|
type: Directive,
|
|
3538
3648
|
args: [{
|
|
3539
3649
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -3549,10 +3659,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3549
3659
|
|
|
3550
3660
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
3551
3661
|
class ScrollObserverIgnoreTargetDirective {
|
|
3552
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3553
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3663
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
3554
3664
|
}
|
|
3555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
3556
3666
|
type: Directive,
|
|
3557
3667
|
args: [{
|
|
3558
3668
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -3568,10 +3678,10 @@ class ScrollObserverLastElementDirective {
|
|
|
3568
3678
|
constructor() {
|
|
3569
3679
|
this.isLastElement = false;
|
|
3570
3680
|
}
|
|
3571
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3572
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3681
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3682
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
|
|
3573
3683
|
}
|
|
3574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
3575
3685
|
type: Directive,
|
|
3576
3686
|
args: [{
|
|
3577
3687
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -3730,15 +3840,15 @@ class ObserveScrollStateDirective {
|
|
|
3730
3840
|
}
|
|
3731
3841
|
return element;
|
|
3732
3842
|
}
|
|
3733
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3734
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "
|
|
3843
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3844
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
3735
3845
|
{
|
|
3736
3846
|
provide: OBSERVE_SCROLL_STATE,
|
|
3737
3847
|
useExisting: ObserveScrollStateDirective,
|
|
3738
3848
|
},
|
|
3739
3849
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
3740
3850
|
}
|
|
3741
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
3742
3852
|
type: Directive,
|
|
3743
3853
|
args: [{
|
|
3744
3854
|
selector: '[etObserveScrollState]',
|
|
@@ -3808,15 +3918,15 @@ class ObserveVisibilityDirective {
|
|
|
3808
3918
|
}))
|
|
3809
3919
|
.subscribe();
|
|
3810
3920
|
}
|
|
3811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3812
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3921
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3922
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { classAttribute: "et-observe-visibility" }, providers: [
|
|
3813
3923
|
{
|
|
3814
3924
|
provide: OBSERVE_VISIBILITY_TOKEN,
|
|
3815
3925
|
useExisting: ObserveVisibilityDirective,
|
|
3816
3926
|
},
|
|
3817
3927
|
], ngImport: i0 }); }
|
|
3818
3928
|
}
|
|
3819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3929
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
|
|
3820
3930
|
type: Directive,
|
|
3821
3931
|
args: [{
|
|
3822
3932
|
selector: '[etObserveVisibility]',
|
|
@@ -3831,7 +3941,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3831
3941
|
class: 'et-observe-visibility',
|
|
3832
3942
|
},
|
|
3833
3943
|
}]
|
|
3834
|
-
}], ctorParameters:
|
|
3944
|
+
}], ctorParameters: () => [], propDecorators: { etObserveVisibility: [{
|
|
3835
3945
|
type: Output
|
|
3836
3946
|
}] } });
|
|
3837
3947
|
|
|
@@ -3854,16 +3964,16 @@ class RepeatDirective {
|
|
|
3854
3964
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3855
3965
|
}
|
|
3856
3966
|
}
|
|
3857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3858
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3967
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3968
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3859
3969
|
}
|
|
3860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3861
3971
|
type: Directive,
|
|
3862
3972
|
args: [{
|
|
3863
3973
|
selector: '[etRepeat]',
|
|
3864
3974
|
standalone: true,
|
|
3865
3975
|
}]
|
|
3866
|
-
}], ctorParameters:
|
|
3976
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }], propDecorators: { repeatCount: [{
|
|
3867
3977
|
type: Input,
|
|
3868
3978
|
args: ['etRepeat']
|
|
3869
3979
|
}] } });
|
|
@@ -4026,10 +4136,10 @@ class SeoDirective {
|
|
|
4026
4136
|
}
|
|
4027
4137
|
}
|
|
4028
4138
|
}
|
|
4029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4030
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4140
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
4031
4141
|
}
|
|
4032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: SeoDirective, decorators: [{
|
|
4033
4143
|
type: Directive,
|
|
4034
4144
|
args: [{
|
|
4035
4145
|
standalone: true,
|
|
@@ -4205,10 +4315,10 @@ class InferMimeTypePipe {
|
|
|
4205
4315
|
constructor() {
|
|
4206
4316
|
this.transform = inferMimeType;
|
|
4207
4317
|
}
|
|
4208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4209
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4319
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, isStandalone: true, name: "inferMimeType" }); }
|
|
4210
4320
|
}
|
|
4211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: InferMimeTypePipe, decorators: [{
|
|
4212
4322
|
type: Pipe,
|
|
4213
4323
|
args: [{
|
|
4214
4324
|
name: 'inferMimeType',
|
|
@@ -4254,10 +4364,10 @@ class NormalizeGameResultTypePipe {
|
|
|
4254
4364
|
constructor() {
|
|
4255
4365
|
this.transform = normalizeGameResultType;
|
|
4256
4366
|
}
|
|
4257
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4258
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4368
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
4259
4369
|
}
|
|
4260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
4261
4371
|
type: Pipe,
|
|
4262
4372
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
4263
4373
|
}] });
|
|
@@ -4285,10 +4395,10 @@ class NormalizeMatchStatePipe {
|
|
|
4285
4395
|
constructor() {
|
|
4286
4396
|
this.transform = normalizeMatchState;
|
|
4287
4397
|
}
|
|
4288
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4289
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4399
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
4290
4400
|
}
|
|
4291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
4292
4402
|
type: Pipe,
|
|
4293
4403
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
4294
4404
|
}] });
|
|
@@ -4343,10 +4453,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
4343
4453
|
constructor() {
|
|
4344
4454
|
this.transform = normalizeMatchParticipants;
|
|
4345
4455
|
}
|
|
4346
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4347
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4456
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4457
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
4348
4458
|
}
|
|
4349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
4350
4460
|
type: Pipe,
|
|
4351
4461
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
4352
4462
|
}] });
|
|
@@ -4480,10 +4590,10 @@ class NormalizeMatchScorePipe {
|
|
|
4480
4590
|
constructor() {
|
|
4481
4591
|
this.transform = normalizeMatchScore;
|
|
4482
4592
|
}
|
|
4483
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4484
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4593
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4594
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
4485
4595
|
}
|
|
4486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
4487
4597
|
type: Pipe,
|
|
4488
4598
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
4489
4599
|
}] });
|
|
@@ -4530,10 +4640,10 @@ class NormalizeMatchTypePipe {
|
|
|
4530
4640
|
constructor() {
|
|
4531
4641
|
this.transform = normalizeMatchType;
|
|
4532
4642
|
}
|
|
4533
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4534
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4643
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4644
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
4535
4645
|
}
|
|
4536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
4537
4647
|
type: Pipe,
|
|
4538
4648
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
4539
4649
|
}] });
|
|
@@ -4547,10 +4657,10 @@ class ToArrayPipe {
|
|
|
4547
4657
|
constructor() {
|
|
4548
4658
|
this.transform = toArray;
|
|
4549
4659
|
}
|
|
4550
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4551
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4660
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4661
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
4552
4662
|
}
|
|
4553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
4554
4664
|
type: Pipe,
|
|
4555
4665
|
args: [{ name: 'toArray', standalone: true }]
|
|
4556
4666
|
}] });
|
|
@@ -4638,5 +4748,5 @@ const Validators = {
|
|
|
4638
4748
|
* Generated bundle index. Do not edit.
|
|
4639
4749
|
*/
|
|
4640
4750
|
|
|
4641
|
-
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, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostStyles, signalStyles, signalVisibilityChangeClasses, switchQueryListChanges, toArray, toArrayTrackByFn };
|
|
4751
|
+
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 };
|
|
4642
4752
|
//# sourceMappingURL=ethlete-core.mjs.map
|