@ethlete/core 2.7.4 → 2.8.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 +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
- package/esm2022/lib/directives/let/let.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +37 -32
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
- package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/resize-observer.service.mjs +6 -6
- package/esm2022/lib/services/router-state.service.mjs +3 -3
- package/esm2022/lib/services/viewport.service.mjs +7 -7
- package/esm2022/lib/utils/cookie.util.mjs +7 -1
- package/esm2022/lib/utils/mutation-observable.util.mjs +37 -0
- package/esm2022/lib/utils/public-api.mjs +2 -1
- package/fesm2022/ethlete-core.mjs +178 -131
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/directives/observe-scroll-state/observe-scroll-state.directive.d.ts +3 -3
- package/lib/utils/mutation-observable.util.d.ts +7 -0
- package/lib/utils/public-api.d.ts +1 -0
- package/package.json +5 -5
|
@@ -26,10 +26,10 @@ class StructuredDataComponent {
|
|
|
26
26
|
const html = `<script type="application/ld+json">${json}</script>`;
|
|
27
27
|
return this._sanitizer.bypassSecurityTrustHtml(html);
|
|
28
28
|
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
30
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.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 }); }
|
|
31
31
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
|
|
33
33
|
type: Component,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: 'et-structured-data',
|
|
@@ -414,6 +414,12 @@ const getDomain = () => {
|
|
|
414
414
|
if (hostname.includes('localhost')) {
|
|
415
415
|
return 'localhost';
|
|
416
416
|
}
|
|
417
|
+
const hostIsIP = hostname.match(
|
|
418
|
+
// eslint-disable-next-line no-useless-escape
|
|
419
|
+
/^(\d{1,3}\.){3}\d{1,3}$/);
|
|
420
|
+
if (hostIsIP) {
|
|
421
|
+
return hostname;
|
|
422
|
+
}
|
|
417
423
|
const splitHost = hostname.split('.');
|
|
418
424
|
if (splitHost.length > 2) {
|
|
419
425
|
return `${splitHost[splitHost.length - 2]}.${splitHost[splitHost.length - 1]}`;
|
|
@@ -556,6 +562,42 @@ const createMediaQueryObservable = (query) => {
|
|
|
556
562
|
return observable;
|
|
557
563
|
};
|
|
558
564
|
|
|
565
|
+
const createMutationObservable = (config) => {
|
|
566
|
+
const elements = Array.isArray(config.elements) ? config.elements : [config.elements];
|
|
567
|
+
return new Observable((obs) => {
|
|
568
|
+
const observer = new MutationObserver((mutations) => {
|
|
569
|
+
if (config.options?.styleIgnoreList) {
|
|
570
|
+
const allowedMutations = [];
|
|
571
|
+
for (const mutation of mutations) {
|
|
572
|
+
if (mutation.type === 'attributes') {
|
|
573
|
+
const attributeName = mutation.attributeName;
|
|
574
|
+
if (!attributeName || attributeName !== 'style')
|
|
575
|
+
continue;
|
|
576
|
+
const oldValue = mutation.oldValue;
|
|
577
|
+
const newValue = mutation.target.getAttribute('style');
|
|
578
|
+
const oldValueStyles = oldValue?.split(';').map((s) => s.trim()) ?? [];
|
|
579
|
+
const newValueStyles = newValue?.split(';').map((s) => s.trim()) ?? [];
|
|
580
|
+
const changedStyles = newValueStyles.filter((s) => !oldValueStyles.includes(s));
|
|
581
|
+
if (changedStyles.some((s) => config.options?.styleIgnoreList?.includes(s.split(':')[0])))
|
|
582
|
+
continue;
|
|
583
|
+
allowedMutations.push(mutation);
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
if (allowedMutations.length) {
|
|
587
|
+
obs.next(allowedMutations);
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
else {
|
|
591
|
+
obs.next(mutations);
|
|
592
|
+
}
|
|
593
|
+
});
|
|
594
|
+
for (const element of elements) {
|
|
595
|
+
observer.observe(element, config.options);
|
|
596
|
+
}
|
|
597
|
+
return () => observer.disconnect();
|
|
598
|
+
});
|
|
599
|
+
};
|
|
600
|
+
|
|
559
601
|
const isAttributeRenderBinding = (value) => typeof value === 'boolean';
|
|
560
602
|
const isAttributeValueBinding = (value) => typeof value === 'object';
|
|
561
603
|
const createReactiveBindings = (...values) => {
|
|
@@ -1277,15 +1319,15 @@ class AnimatableDirective {
|
|
|
1277
1319
|
.subscribe();
|
|
1278
1320
|
}
|
|
1279
1321
|
}
|
|
1280
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1281
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
1322
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1323
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
|
|
1282
1324
|
{
|
|
1283
1325
|
provide: ANIMATABLE_TOKEN,
|
|
1284
1326
|
useExisting: AnimatableDirective,
|
|
1285
1327
|
},
|
|
1286
1328
|
], exportAs: ["etAnimatable"], ngImport: i0 }); }
|
|
1287
1329
|
}
|
|
1288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatableDirective, decorators: [{
|
|
1289
1331
|
type: Directive,
|
|
1290
1332
|
args: [{
|
|
1291
1333
|
selector: '[etAnimatable]',
|
|
@@ -1386,15 +1428,15 @@ class AnimatedLifecycleDirective {
|
|
|
1386
1428
|
}), takeUntil(this._destroy$), take(1))
|
|
1387
1429
|
.subscribe();
|
|
1388
1430
|
}
|
|
1389
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1390
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
1431
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1432
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
|
|
1391
1433
|
{
|
|
1392
1434
|
provide: ANIMATED_LIFECYCLE_TOKEN,
|
|
1393
1435
|
useExisting: AnimatedLifecycleDirective,
|
|
1394
1436
|
},
|
|
1395
1437
|
], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
|
|
1396
1438
|
}
|
|
1397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
|
|
1398
1440
|
type: Directive,
|
|
1399
1441
|
args: [{
|
|
1400
1442
|
selector: '[etAnimatedLifecycle]',
|
|
@@ -1415,10 +1457,10 @@ class ClickObserverFactory {
|
|
|
1415
1457
|
create() {
|
|
1416
1458
|
return fromEvent(document, 'click');
|
|
1417
1459
|
}
|
|
1418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1419
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1460
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1461
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
|
|
1420
1462
|
}
|
|
1421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
|
|
1422
1464
|
type: Injectable,
|
|
1423
1465
|
args: [{ providedIn: 'root' }]
|
|
1424
1466
|
}] });
|
|
@@ -1471,10 +1513,10 @@ class ClickObserverService {
|
|
|
1471
1513
|
this._observedElements.delete(element);
|
|
1472
1514
|
}
|
|
1473
1515
|
}
|
|
1474
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1475
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1517
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
|
|
1476
1518
|
}
|
|
1477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickObserverService, decorators: [{
|
|
1478
1520
|
type: Injectable,
|
|
1479
1521
|
args: [{ providedIn: 'root' }]
|
|
1480
1522
|
}] });
|
|
@@ -1484,10 +1526,10 @@ class MutationObserverFactory {
|
|
|
1484
1526
|
create(callback) {
|
|
1485
1527
|
return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
|
|
1486
1528
|
}
|
|
1487
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1488
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1529
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1530
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
|
|
1489
1531
|
}
|
|
1490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
|
|
1491
1533
|
type: Injectable,
|
|
1492
1534
|
args: [{ providedIn: 'root' }]
|
|
1493
1535
|
}] });
|
|
@@ -1546,10 +1588,10 @@ class ContentObserverService {
|
|
|
1546
1588
|
this._observedElements.delete(element);
|
|
1547
1589
|
}
|
|
1548
1590
|
}
|
|
1549
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1550
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1592
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
|
|
1551
1593
|
}
|
|
1552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ContentObserverService, decorators: [{
|
|
1553
1595
|
type: Injectable,
|
|
1554
1596
|
args: [{ providedIn: 'root' }]
|
|
1555
1597
|
}] });
|
|
@@ -1575,10 +1617,10 @@ class FocusVisibleService {
|
|
|
1575
1617
|
onPointerDown() {
|
|
1576
1618
|
this._hadKeyboardEvent = false;
|
|
1577
1619
|
}
|
|
1578
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1579
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1620
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1621
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
|
|
1580
1622
|
}
|
|
1581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: FocusVisibleService, decorators: [{
|
|
1582
1624
|
type: Injectable,
|
|
1583
1625
|
args: [{
|
|
1584
1626
|
providedIn: 'root',
|
|
@@ -1590,10 +1632,10 @@ class ResizeObserverFactory {
|
|
|
1590
1632
|
create(callback) {
|
|
1591
1633
|
return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
|
|
1592
1634
|
}
|
|
1593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1594
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1636
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
|
|
1595
1637
|
}
|
|
1596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
|
|
1597
1639
|
type: Injectable,
|
|
1598
1640
|
args: [{ providedIn: 'root' }]
|
|
1599
1641
|
}] });
|
|
@@ -1648,10 +1690,10 @@ class ResizeObserverService {
|
|
|
1648
1690
|
this._observedElements.delete(element);
|
|
1649
1691
|
}
|
|
1650
1692
|
}
|
|
1651
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1652
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1693
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1694
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
1653
1695
|
}
|
|
1654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
1655
1697
|
type: Injectable,
|
|
1656
1698
|
args: [{ providedIn: 'root' }]
|
|
1657
1699
|
}] });
|
|
@@ -1819,10 +1861,10 @@ class RouterStateService {
|
|
|
1819
1861
|
}
|
|
1820
1862
|
return changes;
|
|
1821
1863
|
}
|
|
1822
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
1823
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
1864
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1865
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
|
|
1824
1866
|
}
|
|
1825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
1867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: RouterStateService, decorators: [{
|
|
1826
1868
|
type: Injectable,
|
|
1827
1869
|
args: [{
|
|
1828
1870
|
providedIn: 'root',
|
|
@@ -1895,12 +1937,12 @@ class ViewportService {
|
|
|
1895
1937
|
this._is2Xl$ = new BehaviorSubject(false);
|
|
1896
1938
|
this._viewportSize$ = new BehaviorSubject(null);
|
|
1897
1939
|
this._scrollbarSize$ = new BehaviorSubject(null);
|
|
1898
|
-
this.currentViewport$ = combineLatest([this.isXs$, this.isSm$, this.isMd$, this.isLg$, this.isXl$, this.is2Xl$]).pipe(map((val) => this.getCurrentViewport(val)), shareReplay(1));
|
|
1940
|
+
this.currentViewport$ = combineLatest([this.isXs$, this.isSm$, this.isMd$, this.isLg$, this.isXl$, this.is2Xl$]).pipe(map((val) => this.getCurrentViewport(val)), debounceTime(0), shareReplay({ bufferSize: 1, refCount: true }));
|
|
1899
1941
|
this._observeDefaultBreakpoints();
|
|
1900
1942
|
}
|
|
1901
1943
|
observe(options) {
|
|
1902
1944
|
const mediaQuery = this._buildMediaQuery(options);
|
|
1903
|
-
return this._breakpointObserver.observe(mediaQuery).pipe(map((x) => x.matches), shareReplay(1));
|
|
1945
|
+
return this._breakpointObserver.observe(mediaQuery).pipe(map((x) => x.matches), shareReplay({ bufferSize: 1, refCount: true }));
|
|
1904
1946
|
}
|
|
1905
1947
|
isMatched(options) {
|
|
1906
1948
|
const mediaQuery = this._buildMediaQuery(options);
|
|
@@ -2032,8 +2074,8 @@ class ViewportService {
|
|
|
2032
2074
|
}
|
|
2033
2075
|
return 'xs';
|
|
2034
2076
|
}
|
|
2035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.
|
|
2077
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2078
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
|
|
2037
2079
|
}
|
|
2038
2080
|
__decorate([
|
|
2039
2081
|
Memo(),
|
|
@@ -2051,7 +2093,7 @@ __decorate([
|
|
|
2051
2093
|
__metadata("design:paramtypes", [Object]),
|
|
2052
2094
|
__metadata("design:returntype", void 0)
|
|
2053
2095
|
], ViewportService.prototype, "_buildMediaQuery", null);
|
|
2054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ViewportService, decorators: [{
|
|
2055
2097
|
type: Injectable,
|
|
2056
2098
|
args: [{
|
|
2057
2099
|
providedIn: 'root',
|
|
@@ -2100,10 +2142,10 @@ class ObserveResizeDirective {
|
|
|
2100
2142
|
_unsubscribe() {
|
|
2101
2143
|
this._currentSubscription?.unsubscribe();
|
|
2102
2144
|
}
|
|
2103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2104
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2146
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
|
|
2105
2147
|
}
|
|
2106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
|
|
2107
2149
|
type: Directive,
|
|
2108
2150
|
args: [{
|
|
2109
2151
|
selector: '[etObserveResize]',
|
|
@@ -2339,10 +2381,10 @@ class AnimatedOverlayDirective {
|
|
|
2339
2381
|
_reposition() {
|
|
2340
2382
|
this._popper?.update();
|
|
2341
2383
|
}
|
|
2342
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2343
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2384
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2385
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", allowedAutoPlacements: "allowedAutoPlacements", offset: "offset", arrowPadding: "arrowPadding" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
|
|
2344
2386
|
}
|
|
2345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
|
|
2346
2388
|
type: Directive,
|
|
2347
2389
|
args: [{
|
|
2348
2390
|
standalone: true,
|
|
@@ -2379,10 +2421,10 @@ class ClickOutsideDirective {
|
|
|
2379
2421
|
ngOnDestroy() {
|
|
2380
2422
|
this._subscription?.unsubscribe();
|
|
2381
2423
|
}
|
|
2382
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2383
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2424
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2425
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
|
|
2384
2426
|
}
|
|
2385
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
2386
2428
|
type: Directive,
|
|
2387
2429
|
args: [{
|
|
2388
2430
|
selector: '[etClickOutside]',
|
|
@@ -2536,10 +2578,10 @@ class CursorDragScrollDirective {
|
|
|
2536
2578
|
this._elementRef.nativeElement.style.cursor = 'default';
|
|
2537
2579
|
}
|
|
2538
2580
|
}
|
|
2539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2540
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2581
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2582
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
|
|
2541
2583
|
}
|
|
2542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
|
|
2543
2585
|
type: Directive,
|
|
2544
2586
|
args: [{
|
|
2545
2587
|
selector: '[etCursorDragScroll]',
|
|
@@ -2588,15 +2630,15 @@ class DelayableDirective {
|
|
|
2588
2630
|
}
|
|
2589
2631
|
this._isDelayed$.next(val);
|
|
2590
2632
|
}
|
|
2591
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2592
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2633
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2634
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
|
|
2593
2635
|
{
|
|
2594
2636
|
provide: DELAYABLE_TOKEN,
|
|
2595
2637
|
useExisting: DelayableDirective,
|
|
2596
2638
|
},
|
|
2597
2639
|
], exportAs: ["etDelayable"], ngImport: i0 }); }
|
|
2598
2640
|
}
|
|
2599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: DelayableDirective, decorators: [{
|
|
2600
2642
|
type: Directive,
|
|
2601
2643
|
args: [{
|
|
2602
2644
|
selector: '[etDelayable]',
|
|
@@ -2617,15 +2659,15 @@ class IsActiveElementDirective {
|
|
|
2617
2659
|
this.elementRef = inject(ElementRef);
|
|
2618
2660
|
this.isActiveElement = false;
|
|
2619
2661
|
}
|
|
2620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2621
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2663
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
|
|
2622
2664
|
{
|
|
2623
2665
|
provide: IS_ACTIVE_ELEMENT,
|
|
2624
2666
|
useExisting: IsActiveElementDirective,
|
|
2625
2667
|
},
|
|
2626
2668
|
], ngImport: i0 }); }
|
|
2627
2669
|
}
|
|
2628
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
|
|
2629
2671
|
type: Directive,
|
|
2630
2672
|
args: [{
|
|
2631
2673
|
selector: '[etIsActiveElement]',
|
|
@@ -2648,15 +2690,15 @@ class IsElementDirective {
|
|
|
2648
2690
|
this.elementRef = inject(ElementRef);
|
|
2649
2691
|
this.isElement = false;
|
|
2650
2692
|
}
|
|
2651
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2652
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2693
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2694
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
|
|
2653
2695
|
{
|
|
2654
2696
|
provide: IS_ELEMENT,
|
|
2655
2697
|
useExisting: IsElementDirective,
|
|
2656
2698
|
},
|
|
2657
2699
|
], ngImport: i0 }); }
|
|
2658
2700
|
}
|
|
2659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: IsElementDirective, decorators: [{
|
|
2660
2702
|
type: Directive,
|
|
2661
2703
|
args: [{
|
|
2662
2704
|
selector: '[etIsElement]',
|
|
@@ -2705,10 +2747,10 @@ class LetDirective {
|
|
|
2705
2747
|
}
|
|
2706
2748
|
}
|
|
2707
2749
|
}
|
|
2708
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2709
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2751
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
|
|
2710
2752
|
}
|
|
2711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: LetDirective, decorators: [{
|
|
2712
2754
|
type: Directive,
|
|
2713
2755
|
args: [{
|
|
2714
2756
|
selector: '[etLet]',
|
|
@@ -2760,10 +2802,10 @@ class ObserveContentDirective {
|
|
|
2760
2802
|
_unsubscribe() {
|
|
2761
2803
|
this._currentSubscription?.unsubscribe();
|
|
2762
2804
|
}
|
|
2763
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2764
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2805
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2806
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
|
|
2765
2807
|
}
|
|
2766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
|
|
2767
2809
|
type: Directive,
|
|
2768
2810
|
args: [{
|
|
2769
2811
|
selector: '[etObserveContent]',
|
|
@@ -2786,10 +2828,10 @@ class ScrollObserverFirstElementDirective {
|
|
|
2786
2828
|
constructor() {
|
|
2787
2829
|
this.isFirstElement = false;
|
|
2788
2830
|
}
|
|
2789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2790
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2831
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2832
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
|
|
2791
2833
|
}
|
|
2792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
|
|
2793
2835
|
type: Directive,
|
|
2794
2836
|
args: [{
|
|
2795
2837
|
selector: '[etScrollObserverFirstElement]',
|
|
@@ -2805,10 +2847,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.1", ngImpor
|
|
|
2805
2847
|
|
|
2806
2848
|
const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
|
|
2807
2849
|
class ScrollObserverIgnoreTargetDirective {
|
|
2808
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2809
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2851
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
|
|
2810
2852
|
}
|
|
2811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
|
|
2812
2854
|
type: Directive,
|
|
2813
2855
|
args: [{
|
|
2814
2856
|
selector: '[etScrollObserverIgnoreTarget]',
|
|
@@ -2824,10 +2866,10 @@ class ScrollObserverLastElementDirective {
|
|
|
2824
2866
|
constructor() {
|
|
2825
2867
|
this.isLastElement = false;
|
|
2826
2868
|
}
|
|
2827
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2828
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
2869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2870
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.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 }); }
|
|
2829
2871
|
}
|
|
2830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
2872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
|
|
2831
2873
|
type: Directive,
|
|
2832
2874
|
args: [{
|
|
2833
2875
|
selector: '[etScrollObserverLastElement]',
|
|
@@ -2854,12 +2896,8 @@ class ObserveScrollStateDirective {
|
|
|
2854
2896
|
this._elementRef = inject(ElementRef);
|
|
2855
2897
|
this._contentObserverService = inject(ContentObserverService);
|
|
2856
2898
|
this._resizeObserverService = inject(ResizeObserverService);
|
|
2857
|
-
this._observedChildren = {
|
|
2858
|
-
first: this._firstCurrentChild,
|
|
2859
|
-
last: this._lastCurrentChild,
|
|
2860
|
-
};
|
|
2861
2899
|
this.rootMargin = 0;
|
|
2862
|
-
this._threshold = [0.
|
|
2900
|
+
this._threshold = [0.99, 0.99999, 0.9999, 0.999, 1];
|
|
2863
2901
|
this._intersectionObserver = null;
|
|
2864
2902
|
this.valueChange = new EventEmitter();
|
|
2865
2903
|
}
|
|
@@ -2889,6 +2927,16 @@ class ObserveScrollStateDirective {
|
|
|
2889
2927
|
}
|
|
2890
2928
|
this._threshold = numberAttribute(value);
|
|
2891
2929
|
}
|
|
2930
|
+
get _observerElements() {
|
|
2931
|
+
const firstEl = this._elementRef.nativeElement.querySelector(`.${SCROLL_OBSERVER_FIRST_ELEMENT_CLASS}`);
|
|
2932
|
+
const lastEl = this._elementRef.nativeElement.querySelector(`.${SCROLL_OBSERVER_LAST_ELEMENT_CLASS}`);
|
|
2933
|
+
if (!firstEl || !lastEl)
|
|
2934
|
+
return null;
|
|
2935
|
+
return {
|
|
2936
|
+
first: firstEl,
|
|
2937
|
+
last: lastEl,
|
|
2938
|
+
};
|
|
2939
|
+
}
|
|
2892
2940
|
ngOnInit() {
|
|
2893
2941
|
this._contentObserverService
|
|
2894
2942
|
.observe(this._elementRef.nativeElement)
|
|
@@ -2914,8 +2962,7 @@ class ObserveScrollStateDirective {
|
|
|
2914
2962
|
!this._firstCurrentChild ||
|
|
2915
2963
|
!this._lastCurrentChild ||
|
|
2916
2964
|
!elementCanScroll(this._elementRef.nativeElement)) {
|
|
2917
|
-
this.
|
|
2918
|
-
this._unobserveChild('last');
|
|
2965
|
+
this._unobserve();
|
|
2919
2966
|
this.valueChange.emit({
|
|
2920
2967
|
isAtStart: true,
|
|
2921
2968
|
isAtEnd: true,
|
|
@@ -2924,15 +2971,16 @@ class ObserveScrollStateDirective {
|
|
|
2924
2971
|
}
|
|
2925
2972
|
else {
|
|
2926
2973
|
this._intersectionObserver = this._initiateIntersectionObserver();
|
|
2927
|
-
this.
|
|
2928
|
-
this._observeChild('last', this._lastCurrentChild);
|
|
2974
|
+
this._observe();
|
|
2929
2975
|
}
|
|
2930
2976
|
}
|
|
2931
2977
|
_initiateIntersectionObserver() {
|
|
2932
2978
|
const observer = new IntersectionObserver((entries) => {
|
|
2933
|
-
const
|
|
2934
|
-
|
|
2935
|
-
|
|
2979
|
+
const elements = this._observerElements;
|
|
2980
|
+
if (!elements)
|
|
2981
|
+
return;
|
|
2982
|
+
const isAtStart = entries.find((entry) => entry.target === elements.first)?.isIntersecting ?? false;
|
|
2983
|
+
const isAtEnd = entries.find((entry) => entry.target === elements.last)?.isIntersecting ?? false;
|
|
2936
2984
|
this.valueChange.emit({
|
|
2937
2985
|
isAtStart,
|
|
2938
2986
|
isAtEnd,
|
|
@@ -2945,24 +2993,23 @@ class ObserveScrollStateDirective {
|
|
|
2945
2993
|
});
|
|
2946
2994
|
return observer;
|
|
2947
2995
|
}
|
|
2948
|
-
|
|
2949
|
-
this.
|
|
2950
|
-
|
|
2951
|
-
if (child === 'first') {
|
|
2952
|
-
element.classList.add(SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS);
|
|
2953
|
-
}
|
|
2954
|
-
else {
|
|
2955
|
-
element.classList.add(SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS);
|
|
2956
|
-
}
|
|
2957
|
-
}
|
|
2958
|
-
_unobserveChild(child) {
|
|
2959
|
-
const observedChild = this._observedChildren[child];
|
|
2960
|
-
if (!observedChild) {
|
|
2996
|
+
_observe() {
|
|
2997
|
+
const elements = this._observerElements;
|
|
2998
|
+
if (!elements)
|
|
2961
2999
|
return;
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
3000
|
+
this._intersectionObserver?.observe(elements.first);
|
|
3001
|
+
this._intersectionObserver?.observe(elements.last);
|
|
3002
|
+
elements.first.classList.add(SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS);
|
|
3003
|
+
elements.last.classList.add(SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS);
|
|
3004
|
+
}
|
|
3005
|
+
_unobserve() {
|
|
3006
|
+
const elements = this._observerElements;
|
|
3007
|
+
if (!elements)
|
|
3008
|
+
return;
|
|
3009
|
+
this._intersectionObserver?.unobserve(elements.first);
|
|
3010
|
+
this._intersectionObserver?.unobserve(elements.last);
|
|
3011
|
+
elements.first.classList.remove(SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS);
|
|
3012
|
+
elements.last.classList.remove(SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS);
|
|
2966
3013
|
}
|
|
2967
3014
|
_clearIntersectionObserver() {
|
|
2968
3015
|
this._intersectionObserver?.disconnect();
|
|
@@ -2981,15 +3028,15 @@ class ObserveScrollStateDirective {
|
|
|
2981
3028
|
}
|
|
2982
3029
|
return element;
|
|
2983
3030
|
}
|
|
2984
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
2985
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
3031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3032
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
|
|
2986
3033
|
{
|
|
2987
3034
|
provide: OBSERVE_SCROLL_STATE,
|
|
2988
3035
|
useExisting: ObserveScrollStateDirective,
|
|
2989
3036
|
},
|
|
2990
3037
|
], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
|
|
2991
3038
|
}
|
|
2992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
|
|
2993
3040
|
type: Directive,
|
|
2994
3041
|
args: [{
|
|
2995
3042
|
selector: '[etObserveScrollState]',
|
|
@@ -3031,10 +3078,10 @@ class RepeatDirective {
|
|
|
3031
3078
|
this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
|
|
3032
3079
|
}
|
|
3033
3080
|
}
|
|
3034
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3035
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
3081
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3082
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
|
|
3036
3083
|
}
|
|
3037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: RepeatDirective, decorators: [{
|
|
3038
3085
|
type: Directive,
|
|
3039
3086
|
args: [{
|
|
3040
3087
|
selector: '[etRepeat]',
|
|
@@ -3203,10 +3250,10 @@ class SeoDirective {
|
|
|
3203
3250
|
}
|
|
3204
3251
|
}
|
|
3205
3252
|
}
|
|
3206
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3207
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
|
3253
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3254
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
|
|
3208
3255
|
}
|
|
3209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: SeoDirective, decorators: [{
|
|
3210
3257
|
type: Directive,
|
|
3211
3258
|
args: [{
|
|
3212
3259
|
standalone: true,
|
|
@@ -3252,10 +3299,10 @@ class NormalizeGameResultTypePipe {
|
|
|
3252
3299
|
constructor() {
|
|
3253
3300
|
this.transform = normalizeGameResultType;
|
|
3254
3301
|
}
|
|
3255
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3256
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3303
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
|
|
3257
3304
|
}
|
|
3258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
|
|
3259
3306
|
type: Pipe,
|
|
3260
3307
|
args: [{ name: 'etNormalizeGameResultType', standalone: true }]
|
|
3261
3308
|
}] });
|
|
@@ -3283,10 +3330,10 @@ class NormalizeMatchStatePipe {
|
|
|
3283
3330
|
constructor() {
|
|
3284
3331
|
this.transform = normalizeMatchState;
|
|
3285
3332
|
}
|
|
3286
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3287
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3334
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
|
|
3288
3335
|
}
|
|
3289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
|
|
3290
3337
|
type: Pipe,
|
|
3291
3338
|
args: [{ name: 'etNormalizeMatchState', standalone: true }]
|
|
3292
3339
|
}] });
|
|
@@ -3341,10 +3388,10 @@ class NormalizeMatchParticipantsPipe {
|
|
|
3341
3388
|
constructor() {
|
|
3342
3389
|
this.transform = normalizeMatchParticipants;
|
|
3343
3390
|
}
|
|
3344
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3345
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3392
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
|
|
3346
3393
|
}
|
|
3347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
|
|
3348
3395
|
type: Pipe,
|
|
3349
3396
|
args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
|
|
3350
3397
|
}] });
|
|
@@ -3478,10 +3525,10 @@ class NormalizeMatchScorePipe {
|
|
|
3478
3525
|
constructor() {
|
|
3479
3526
|
this.transform = normalizeMatchScore;
|
|
3480
3527
|
}
|
|
3481
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3482
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3528
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3529
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
|
|
3483
3530
|
}
|
|
3484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
|
|
3485
3532
|
type: Pipe,
|
|
3486
3533
|
args: [{ name: 'etNormalizeMatchScore', standalone: true }]
|
|
3487
3534
|
}] });
|
|
@@ -3528,10 +3575,10 @@ class NormalizeMatchTypePipe {
|
|
|
3528
3575
|
constructor() {
|
|
3529
3576
|
this.transform = normalizeMatchType;
|
|
3530
3577
|
}
|
|
3531
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3532
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3578
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3579
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
|
|
3533
3580
|
}
|
|
3534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
|
|
3535
3582
|
type: Pipe,
|
|
3536
3583
|
args: [{ name: 'etNormalizeMatchType', standalone: true }]
|
|
3537
3584
|
}] });
|
|
@@ -3545,10 +3592,10 @@ class ToArrayPipe {
|
|
|
3545
3592
|
constructor() {
|
|
3546
3593
|
this.transform = toArray;
|
|
3547
3594
|
}
|
|
3548
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
|
3549
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.
|
|
3595
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3596
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
|
|
3550
3597
|
}
|
|
3551
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
|
3598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.2", ngImport: i0, type: ToArrayPipe, decorators: [{
|
|
3552
3599
|
type: Pipe,
|
|
3553
3600
|
args: [{ name: 'toArray', standalone: true }]
|
|
3554
3601
|
}] });
|
|
@@ -3615,5 +3662,5 @@ const Validators = {
|
|
|
3615
3662
|
* Generated bundle index. Do not edit.
|
|
3616
3663
|
*/
|
|
3617
3664
|
|
|
3618
|
-
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, ActiveSelectionModel, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BehaviorSubjectWithSubscriberCount, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
|
|
3665
|
+
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, ActiveSelectionModel, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BehaviorSubjectWithSubscriberCount, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
|
|
3619
3666
|
//# sourceMappingURL=ethlete-core.mjs.map
|