@ethlete/core 3.4.0 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
  2. package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
  3. package/esm2022/lib/directives/animated-if/animated-if.directive.mjs +54 -0
  4. package/esm2022/lib/directives/animated-if/public-api.mjs +2 -0
  5. package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +20 -4
  6. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
  7. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
  8. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
  9. package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
  10. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
  11. package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
  12. package/esm2022/lib/directives/let/let.directive.mjs +3 -3
  13. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  14. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  15. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  16. package/esm2022/lib/directives/observe-visibility/observe-visibility.directive.mjs +53 -0
  17. package/esm2022/lib/directives/observe-visibility/public-api.mjs +2 -0
  18. package/esm2022/lib/directives/public-api.mjs +3 -1
  19. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  20. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  21. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  22. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  23. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  24. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  25. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  26. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  27. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  28. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  29. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  30. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  31. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  32. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  33. package/esm2022/lib/services/intersection-observer.service.mjs +75 -0
  34. package/esm2022/lib/services/public-api.mjs +2 -1
  35. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  36. package/esm2022/lib/services/router-state.service.mjs +3 -3
  37. package/esm2022/lib/services/viewport.service.mjs +17 -17
  38. package/esm2022/lib/utils/form.utils.mjs +40 -0
  39. package/esm2022/lib/utils/public-api.mjs +3 -1
  40. package/esm2022/lib/utils/resize-observable.util.mjs +12 -0
  41. package/esm2022/lib/utils/scrollable.utils.mjs +8 -2
  42. package/esm2022/lib/utils/smart-block-scroll-strategy.utils.mjs +35 -17
  43. package/fesm2022/ethlete-core.mjs +388 -132
  44. package/fesm2022/ethlete-core.mjs.map +1 -1
  45. package/lib/directives/animated-if/animated-if.directive.d.ts +12 -0
  46. package/lib/directives/animated-if/public-api.d.ts +1 -0
  47. package/lib/directives/animated-lifecycle/animated-lifecycle.directive.d.ts +9 -4
  48. package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +13 -0
  49. package/lib/directives/observe-visibility/public-api.d.ts +1 -0
  50. package/lib/directives/public-api.d.ts +2 -0
  51. package/lib/services/intersection-observer.service.d.ts +20 -0
  52. package/lib/services/public-api.d.ts +1 -0
  53. package/lib/services/viewport.service.d.ts +1 -1
  54. package/lib/utils/form.utils.d.ts +2 -0
  55. package/lib/utils/public-api.d.ts +2 -0
  56. package/lib/utils/resize-observable.util.d.ts +5 -0
  57. package/lib/utils/scrollable.utils.d.ts +1 -1
  58. package/lib/utils/smart-block-scroll-strategy.utils.d.ts +2 -0
  59. package/package.json +6 -6
@@ -1,14 +1,16 @@
1
1
  import * as i0 from '@angular/core';
2
- import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isDevMode, Directive, Injectable, NgZone, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, Pipe, QueryList } from '@angular/core';
2
+ import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isDevMode, Directive, Injectable, NgZone, EventEmitter, booleanAttribute, numberAttribute, Output, Injector, ViewContainerRef, TemplateRef, signal, Pipe, QueryList } from '@angular/core';
3
3
  import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
4
- import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, Observable, combineLatest, timer, startWith, map, distinctUntilChanged, shareReplay, skip, take, debounceTime, merge, fromEvent, filter, pairwise, finalize } from 'rxjs';
4
+ import { Subject, BehaviorSubject, takeUntil, switchMap, of, tap, Observable, combineLatest, timer, startWith, map, distinctUntilChanged, shareReplay, skip, take, debounceTime, merge, fromEvent, filter, takeWhile, pairwise, finalize } from 'rxjs';
5
5
  import { END, HOME, PAGE_DOWN, PAGE_UP, UP_ARROW, DOWN_ARROW } from '@angular/cdk/keycodes';
6
+ import { FormGroup, FormArray, FormControl } from '@angular/forms';
6
7
  import { coerceCssPixelValue, coerceElement } from '@angular/cdk/coercion';
7
8
  import { supportsScrollBehavior } from '@angular/cdk/platform';
9
+ import * as i1 from '@angular/common';
10
+ import { NgIf, DOCUMENT } from '@angular/common';
8
11
  import { Overlay } from '@angular/cdk/overlay';
9
12
  import { ComponentPortal } from '@angular/cdk/portal';
10
13
  import { autoUpdate, computePosition, offset, flip, size, shift, limitShift, arrow, hide } from '@floating-ui/dom';
11
- import { DOCUMENT } from '@angular/common';
12
14
  import { Router, NavigationEnd } from '@angular/router';
13
15
  import { __decorate, __metadata } from 'tslib';
14
16
  import { BreakpointObserver } from '@angular/cdk/layout';
@@ -26,10 +28,10 @@ class StructuredDataComponent {
26
28
  const html = `<script type="application/ld+json">${json}</script>`;
27
29
  return this._sanitizer.bypassSecurityTrustHtml(html);
28
30
  }
29
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
30
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.3", 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
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
32
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
31
33
  }
32
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: StructuredDataComponent, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: StructuredDataComponent, decorators: [{
33
35
  type: Component,
34
36
  args: [{
35
37
  selector: 'et-structured-data',
@@ -545,6 +547,45 @@ const equal = (foo, bar) => {
545
547
  return foo !== foo && bar !== bar;
546
548
  };
547
549
 
550
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
551
+ const cloneFormGroup = (formGroup) => {
552
+ const cloneLevel = (group, cloneGroup) => {
553
+ Object.keys(group.controls).forEach((key) => {
554
+ const control = group.controls[key];
555
+ if (control instanceof FormGroup) {
556
+ const cloneControl = new FormGroup({}, control.validator, control.asyncValidator);
557
+ cloneGroup.addControl(key, cloneControl);
558
+ cloneLevel(control, cloneControl);
559
+ }
560
+ else if (control instanceof FormArray) {
561
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
562
+ const cloneArrayControl = new FormArray([], control.validator, control.asyncValidator);
563
+ control.controls.forEach((control) => {
564
+ if (control instanceof FormGroup) {
565
+ const cloneControl = new FormGroup({}, control.validator, control.asyncValidator);
566
+ const innerClone = cloneLevel(control, cloneControl);
567
+ cloneArrayControl.push(innerClone);
568
+ }
569
+ else {
570
+ const cloneControlItem = new FormControl({ value: control.value, disabled: control.disabled }, control.validator, control.asyncValidator);
571
+ cloneArrayControl.push(cloneControlItem);
572
+ }
573
+ });
574
+ cloneGroup.addControl(key, cloneArrayControl);
575
+ }
576
+ else {
577
+ const cloneControl = new FormControl({ value: control.value, disabled: control.disabled }, control.validator, control.asyncValidator);
578
+ cloneGroup.addControl(key, cloneControl);
579
+ }
580
+ });
581
+ return cloneGroup;
582
+ };
583
+ const clonedForm = cloneLevel(formGroup, new FormGroup({}));
584
+ clonedForm.setValue(formGroup.value);
585
+ clonedForm.updateValueAndValidity();
586
+ return clonedForm;
587
+ };
588
+
548
589
  class KeyPressManager {
549
590
  constructor(key) {
550
591
  this.key = key;
@@ -736,6 +777,17 @@ const createReactiveBindings = (...values) => {
736
777
  };
737
778
  };
738
779
 
780
+ const createResizeObservable = (config) => {
781
+ const elements = Array.isArray(config.elements) ? config.elements : [config.elements];
782
+ return new Observable((obs) => {
783
+ const observer = new ResizeObserver((entries) => obs.next(entries));
784
+ for (const element of elements) {
785
+ observer.observe(element, config.options);
786
+ }
787
+ return () => observer.disconnect();
788
+ });
789
+ };
790
+
739
791
  const round = (value, precision = 0) => {
740
792
  const multiplier = Math.pow(10, precision);
741
793
  return Math.round(value * multiplier) / multiplier;
@@ -771,8 +823,14 @@ function formatRuntimeError(code, message, devOnly) {
771
823
  return `${devOnlyText}${fullCode}${message ? ': ' + message : ''}`;
772
824
  }
773
825
 
774
- const elementCanScroll = (element) => {
826
+ const elementCanScroll = (element, direction) => {
775
827
  const { scrollHeight, clientHeight, scrollWidth, clientWidth } = element;
828
+ if (direction === 'x') {
829
+ return scrollWidth > clientWidth;
830
+ }
831
+ else if (direction === 'y') {
832
+ return scrollHeight > clientHeight;
833
+ }
776
834
  return scrollHeight > clientHeight || scrollWidth > clientWidth;
777
835
  };
778
836
  const isElementVisible = (options) => {
@@ -1180,14 +1238,19 @@ class SelectionModel {
1180
1238
  }
1181
1239
 
1182
1240
  const scrollBehaviorSupported = supportsScrollBehavior();
1241
+ let _uniqueIdCounter = 0;
1242
+ const BLOCK_CLASS = 'cdk-global-scrollblock';
1243
+ const OVERSCROLL_CLASS = 'et-global-no-overscroll';
1183
1244
  class SmartBlockScrollStrategy {
1184
1245
  constructor(_viewportRuler, _routerState, document) {
1185
1246
  this._viewportRuler = _viewportRuler;
1186
1247
  this._routerState = _routerState;
1248
+ this._id = _uniqueIdCounter++;
1187
1249
  this._previousHTMLStyles = { top: '', left: '' };
1188
1250
  this._previousScrollPosition = { top: 0, left: 0 };
1189
1251
  this._isEnabled = false;
1190
1252
  this._urlSubscription = null;
1253
+ this._resizeSubscription = null;
1191
1254
  this._didNavigate = false;
1192
1255
  this._document = document;
1193
1256
  }
@@ -1197,25 +1260,36 @@ class SmartBlockScrollStrategy {
1197
1260
  enable() {
1198
1261
  if (this._canBeEnabled()) {
1199
1262
  const root = this._document.documentElement;
1200
- this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();
1201
- this._didNavigate = false;
1202
- this._previousHTMLStyles.left = root.style.left || '';
1203
- this._previousHTMLStyles.top = root.style.top || '';
1204
- root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);
1205
- root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);
1206
- root.classList.add('cdk-global-scrollblock');
1207
- this._isEnabled = true;
1208
- this._urlSubscription = this._routerState.route$
1209
- .pipe(skip(1), take(1), tap(() => {
1210
- this._didNavigate = true;
1263
+ root.classList.add(OVERSCROLL_CLASS);
1264
+ this._resizeSubscription = createResizeObservable({ elements: root })
1265
+ .pipe(startWith(null), tap(() => {
1266
+ if (this._isEnabled || !elementCanScroll(root) || !this._canBeEnabled())
1267
+ return;
1268
+ this._isEnabled = true;
1269
+ this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();
1270
+ this._didNavigate = false;
1271
+ this._previousHTMLStyles.left = root.style.left || '';
1272
+ this._previousHTMLStyles.top = root.style.top || '';
1273
+ root.style.left = coerceCssPixelValue(-this._previousScrollPosition.left);
1274
+ root.style.top = coerceCssPixelValue(-this._previousScrollPosition.top);
1275
+ root.classList.add(BLOCK_CLASS);
1276
+ this._urlSubscription = this._routerState.route$
1277
+ .pipe(skip(1), take(1), tap(() => {
1278
+ this._didNavigate = true;
1279
+ }))
1280
+ .subscribe();
1211
1281
  }))
1212
1282
  .subscribe();
1213
1283
  }
1214
1284
  }
1215
1285
  disable() {
1286
+ this._urlSubscription?.unsubscribe();
1287
+ this._resizeSubscription?.unsubscribe();
1288
+ const html = this._document.documentElement;
1289
+ if (this._canBeEnabled()) {
1290
+ html.classList.remove(OVERSCROLL_CLASS);
1291
+ }
1216
1292
  if (this._isEnabled) {
1217
- this._urlSubscription?.unsubscribe();
1218
- const html = this._document.documentElement;
1219
1293
  const body = this._document.body;
1220
1294
  const htmlStyle = html.style;
1221
1295
  const bodyStyle = body.style;
@@ -1224,7 +1298,7 @@ class SmartBlockScrollStrategy {
1224
1298
  this._isEnabled = false;
1225
1299
  htmlStyle.left = this._previousHTMLStyles.left;
1226
1300
  htmlStyle.top = this._previousHTMLStyles.top;
1227
- html.classList.remove('cdk-global-scrollblock');
1301
+ html.classList.remove(BLOCK_CLASS);
1228
1302
  if (scrollBehaviorSupported) {
1229
1303
  htmlStyle.scrollBehavior = bodyStyle.scrollBehavior = 'auto';
1230
1304
  }
@@ -1239,7 +1313,7 @@ class SmartBlockScrollStrategy {
1239
1313
  }
1240
1314
  _canBeEnabled() {
1241
1315
  const html = this._document.documentElement;
1242
- if (html.classList.contains('cdk-global-scrollblock') || this._isEnabled) {
1316
+ if (html.classList.contains(BLOCK_CLASS) || this._isEnabled) {
1243
1317
  return false;
1244
1318
  }
1245
1319
  return true;
@@ -1355,15 +1429,15 @@ class AnimatableDirective {
1355
1429
  .subscribe();
1356
1430
  }
1357
1431
  }
1358
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1359
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1432
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1433
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1360
1434
  {
1361
1435
  provide: ANIMATABLE_TOKEN,
1362
1436
  useExisting: AnimatableDirective,
1363
1437
  },
1364
1438
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
1365
1439
  }
1366
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatableDirective, decorators: [{
1440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatableDirective, decorators: [{
1367
1441
  type: Directive,
1368
1442
  args: [{
1369
1443
  selector: '[etAnimatable]',
@@ -1396,6 +1470,7 @@ class AnimatedLifecycleDirective {
1396
1470
  this._elementRef = inject(ElementRef);
1397
1471
  this._animatable = inject(ANIMATABLE_TOKEN);
1398
1472
  this._classList = this._elementRef.nativeElement.classList;
1473
+ this._isConstructed = false;
1399
1474
  this._state$ = new BehaviorSubject('init');
1400
1475
  this.state$ = this._state$.asObservable();
1401
1476
  this._bindings = createReactiveBindings({
@@ -1407,7 +1482,15 @@ class AnimatedLifecycleDirective {
1407
1482
  get state() {
1408
1483
  return this._state$.value;
1409
1484
  }
1485
+ ngAfterViewInit() {
1486
+ this._isConstructed = true;
1487
+ }
1410
1488
  enter(config) {
1489
+ if (this.state === 'init' && !this._isConstructed) {
1490
+ // Force the state to entered so that the element is not animated when it is first rendered.
1491
+ this._forceState('entered');
1492
+ return;
1493
+ }
1411
1494
  if (this.state !== 'init' && this.state !== 'left' && isDevMode()) {
1412
1495
  console.warn('Tried to enter but the element is not in the initial state. This may result in unexpected behavior.', this);
1413
1496
  }
@@ -1433,6 +1516,10 @@ class AnimatedLifecycleDirective {
1433
1516
  .subscribe();
1434
1517
  }
1435
1518
  leave(config) {
1519
+ if (this.state === 'init') {
1520
+ this._state$.next('left');
1521
+ return;
1522
+ }
1436
1523
  if (this.state !== 'entered' && this.state !== 'entering' && isDevMode()) {
1437
1524
  console.warn('Tried to leave while already leaving or left. This may result in unexpected behavior.', this);
1438
1525
  }
@@ -1464,15 +1551,18 @@ class AnimatedLifecycleDirective {
1464
1551
  }), takeUntil(this._destroy$), take(1))
1465
1552
  .subscribe();
1466
1553
  }
1467
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1468
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1554
+ _forceState(state) {
1555
+ this._state$.next(state);
1556
+ }
1557
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1558
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1469
1559
  {
1470
1560
  provide: ANIMATED_LIFECYCLE_TOKEN,
1471
1561
  useExisting: AnimatedLifecycleDirective,
1472
1562
  },
1473
1563
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
1474
1564
  }
1475
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1476
1566
  type: Directive,
1477
1567
  args: [{
1478
1568
  selector: '[etAnimatedLifecycle]',
@@ -1488,15 +1578,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
1488
1578
  }]
1489
1579
  }] });
1490
1580
 
1581
+ const ANIMATED_IF_TOKEN = new InjectionToken('ANIMATED_IF_TOKEN');
1582
+ class AnimatedIfDirective {
1583
+ constructor() {
1584
+ this._destroy$ = createDestroy();
1585
+ this._ngIf = inject(NgIf);
1586
+ this._animatedLifecycle = inject(ANIMATED_LIFECYCLE_TOKEN);
1587
+ }
1588
+ set shouldRender(value) {
1589
+ if (value) {
1590
+ this._ngIf.ngIf = value;
1591
+ this._animatedLifecycle.enter();
1592
+ }
1593
+ else {
1594
+ this._animatedLifecycle.leave();
1595
+ this._animatedLifecycle.state$
1596
+ .pipe(takeUntil(this._destroy$), takeWhile((state) => state !== 'left', true), filter((state) => state === 'left'), tap(() => {
1597
+ this._ngIf.ngIf = value;
1598
+ }))
1599
+ .subscribe();
1600
+ }
1601
+ }
1602
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1603
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatedIfDirective, isStandalone: true, selector: "[etAnimatedIf]", inputs: { shouldRender: ["etAnimatedIf", "shouldRender"] }, providers: [
1604
+ {
1605
+ provide: ANIMATED_IF_TOKEN,
1606
+ useExisting: AnimatedIfDirective,
1607
+ },
1608
+ ], hostDirectives: [{ directive: i1.NgIf }], ngImport: i0 }); }
1609
+ }
1610
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedIfDirective, decorators: [{
1611
+ type: Directive,
1612
+ args: [{
1613
+ selector: '[etAnimatedIf]',
1614
+ standalone: true,
1615
+ providers: [
1616
+ {
1617
+ provide: ANIMATED_IF_TOKEN,
1618
+ useExisting: AnimatedIfDirective,
1619
+ },
1620
+ ],
1621
+ hostDirectives: [NgIf],
1622
+ }]
1623
+ }], propDecorators: { shouldRender: [{
1624
+ type: Input,
1625
+ args: ['etAnimatedIf']
1626
+ }] } });
1627
+
1491
1628
  /* eslint-disable @typescript-eslint/no-non-null-assertion */
1492
1629
  class ClickObserverFactory {
1493
1630
  create() {
1494
1631
  return fromEvent(document, 'click');
1495
1632
  }
1496
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1497
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1633
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1634
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1498
1635
  }
1499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverFactory, decorators: [{
1636
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverFactory, decorators: [{
1500
1637
  type: Injectable,
1501
1638
  args: [{ providedIn: 'root' }]
1502
1639
  }] });
@@ -1549,10 +1686,10 @@ class ClickObserverService {
1549
1686
  this._observedElements.delete(element);
1550
1687
  }
1551
1688
  }
1552
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1553
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1689
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1690
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1554
1691
  }
1555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickObserverService, decorators: [{
1692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickObserverService, decorators: [{
1556
1693
  type: Injectable,
1557
1694
  args: [{ providedIn: 'root' }]
1558
1695
  }] });
@@ -1562,10 +1699,10 @@ class MutationObserverFactory {
1562
1699
  create(callback) {
1563
1700
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
1564
1701
  }
1565
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1566
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1702
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1703
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1567
1704
  }
1568
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: MutationObserverFactory, decorators: [{
1705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: MutationObserverFactory, decorators: [{
1569
1706
  type: Injectable,
1570
1707
  args: [{ providedIn: 'root' }]
1571
1708
  }] });
@@ -1624,10 +1761,10 @@ class ContentObserverService {
1624
1761
  this._observedElements.delete(element);
1625
1762
  }
1626
1763
  }
1627
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1628
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1764
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1765
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1629
1766
  }
1630
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ContentObserverService, decorators: [{
1767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ContentObserverService, decorators: [{
1631
1768
  type: Injectable,
1632
1769
  args: [{ providedIn: 'root' }]
1633
1770
  }] });
@@ -1653,25 +1790,96 @@ class FocusVisibleService {
1653
1790
  onPointerDown() {
1654
1791
  this._hadKeyboardEvent = false;
1655
1792
  }
1656
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1657
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1793
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1794
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1658
1795
  }
1659
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: FocusVisibleService, decorators: [{
1796
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FocusVisibleService, decorators: [{
1660
1797
  type: Injectable,
1661
1798
  args: [{
1662
1799
  providedIn: 'root',
1663
1800
  }]
1664
1801
  }], ctorParameters: function () { return []; } });
1665
1802
 
1803
+ /* eslint-disable @typescript-eslint/no-non-null-assertion */
1804
+ class IntersectionObserverFactory {
1805
+ create(callback) {
1806
+ return typeof IntersectionObserver === 'undefined' ? null : new IntersectionObserver(callback);
1807
+ }
1808
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1809
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverFactory, providedIn: 'root' }); }
1810
+ }
1811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverFactory, decorators: [{
1812
+ type: Injectable,
1813
+ args: [{ providedIn: 'root' }]
1814
+ }] });
1815
+ class IntersectionObserverService {
1816
+ constructor() {
1817
+ this._intersectionObserverFactory = inject(IntersectionObserverFactory);
1818
+ this._observedElements = new Map();
1819
+ }
1820
+ ngOnDestroy() {
1821
+ this._observedElements.forEach((_, element) => this._cleanupObserver(element));
1822
+ }
1823
+ observe(elementOrRef) {
1824
+ const element = coerceElement(elementOrRef);
1825
+ return new Observable((observer) => {
1826
+ const stream = this._observeElement(element);
1827
+ const subscription = stream.subscribe(observer);
1828
+ return () => {
1829
+ subscription.unsubscribe();
1830
+ this._unobserveElement(element);
1831
+ };
1832
+ });
1833
+ }
1834
+ _observeElement(element) {
1835
+ if (!this._observedElements.has(element)) {
1836
+ const stream = new Subject();
1837
+ const observer = this._intersectionObserverFactory.create((mutations) => stream.next(mutations));
1838
+ if (observer) {
1839
+ observer.observe(element);
1840
+ }
1841
+ this._observedElements.set(element, { observer, stream, count: 1 });
1842
+ }
1843
+ else {
1844
+ this._observedElements.get(element).count++;
1845
+ }
1846
+ return this._observedElements.get(element).stream;
1847
+ }
1848
+ _unobserveElement(element) {
1849
+ if (this._observedElements.has(element)) {
1850
+ this._observedElements.get(element).count--;
1851
+ if (!this._observedElements.get(element).count) {
1852
+ this._cleanupObserver(element);
1853
+ }
1854
+ }
1855
+ }
1856
+ _cleanupObserver(element) {
1857
+ if (this._observedElements.has(element)) {
1858
+ const { observer, stream } = this._observedElements.get(element);
1859
+ if (observer) {
1860
+ observer.disconnect();
1861
+ }
1862
+ stream.complete();
1863
+ this._observedElements.delete(element);
1864
+ }
1865
+ }
1866
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1867
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverService, providedIn: 'root' }); }
1868
+ }
1869
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IntersectionObserverService, decorators: [{
1870
+ type: Injectable,
1871
+ args: [{ providedIn: 'root' }]
1872
+ }] });
1873
+
1666
1874
  /* eslint-disable @typescript-eslint/no-non-null-assertion */
1667
1875
  class ResizeObserverFactory {
1668
1876
  create(callback) {
1669
1877
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
1670
1878
  }
1671
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1672
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1879
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1880
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1673
1881
  }
1674
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1675
1883
  type: Injectable,
1676
1884
  args: [{ providedIn: 'root' }]
1677
1885
  }] });
@@ -1726,10 +1934,10 @@ class ResizeObserverService {
1726
1934
  this._observedElements.delete(element);
1727
1935
  }
1728
1936
  }
1729
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1730
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1937
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1938
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1731
1939
  }
1732
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ResizeObserverService, decorators: [{
1940
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ResizeObserverService, decorators: [{
1733
1941
  type: Injectable,
1734
1942
  args: [{ providedIn: 'root' }]
1735
1943
  }] });
@@ -1897,10 +2105,10 @@ class RouterStateService {
1897
2105
  }
1898
2106
  return changes;
1899
2107
  }
1900
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1901
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
2108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2109
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
1902
2110
  }
1903
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: RouterStateService, decorators: [{
2111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RouterStateService, decorators: [{
1904
2112
  type: Injectable,
1905
2113
  args: [{
1906
2114
  providedIn: 'root',
@@ -2041,15 +2249,7 @@ class ViewportService {
2041
2249
  this._viewportMonitorStop$.next();
2042
2250
  this._isViewportMonitorEnabled = false;
2043
2251
  }
2044
- _observeDefaultBreakpoints() {
2045
- this.observe({ max: 'xs' }).subscribe(this._isXs$);
2046
- this.observe({ min: 'sm', max: 'sm' }).subscribe(this._isSm$);
2047
- this.observe({ min: 'md', max: 'md' }).subscribe(this._isMd$);
2048
- this.observe({ min: 'lg', max: 'lg' }).subscribe(this._isLg$);
2049
- this.observe({ min: 'xl', max: 'xl' }).subscribe(this._isXl$);
2050
- this.observe({ min: '2xl' }).subscribe(this._is2Xl$);
2051
- }
2052
- _getViewportSize(type, option) {
2252
+ getBreakpointSize(type, option) {
2053
2253
  const index = option === 'min' ? 0 : 1;
2054
2254
  const size = this._viewportConfig.breakpoints[type][index];
2055
2255
  if (size === Infinity || size === 0) {
@@ -2063,6 +2263,14 @@ class ViewportService {
2063
2263
  // and thus not matching any of the default breakpoints.
2064
2264
  return size + 0.9;
2065
2265
  }
2266
+ _observeDefaultBreakpoints() {
2267
+ this.observe({ max: 'xs' }).subscribe(this._isXs$);
2268
+ this.observe({ min: 'sm', max: 'sm' }).subscribe(this._isSm$);
2269
+ this.observe({ min: 'md', max: 'md' }).subscribe(this._isMd$);
2270
+ this.observe({ min: 'lg', max: 'lg' }).subscribe(this._isLg$);
2271
+ this.observe({ min: 'xl', max: 'xl' }).subscribe(this._isXl$);
2272
+ this.observe({ min: '2xl' }).subscribe(this._is2Xl$);
2273
+ }
2066
2274
  _buildMediaQuery(options) {
2067
2275
  if (!options.min && !options.max) {
2068
2276
  throw new Error('At least one of min or max must be defined');
@@ -2073,7 +2281,7 @@ class ViewportService {
2073
2281
  mediaQueryParts.push(`(min-width: ${options.min}px)`);
2074
2282
  }
2075
2283
  else {
2076
- mediaQueryParts.push(`(min-width: ${this._getViewportSize(options.min, 'min')}px)`);
2284
+ mediaQueryParts.push(`(min-width: ${this.getBreakpointSize(options.min, 'min')}px)`);
2077
2285
  }
2078
2286
  }
2079
2287
  if (options.min && options.max) {
@@ -2084,7 +2292,7 @@ class ViewportService {
2084
2292
  mediaQueryParts.push(`(max-width: ${options.max}px)`);
2085
2293
  }
2086
2294
  else {
2087
- mediaQueryParts.push(`(max-width: ${this._getViewportSize(options.max, 'max')}px)`);
2295
+ mediaQueryParts.push(`(max-width: ${this.getBreakpointSize(options.max, 'max')}px)`);
2088
2296
  }
2089
2297
  }
2090
2298
  return mediaQueryParts.join(' ');
@@ -2110,15 +2318,15 @@ class ViewportService {
2110
2318
  }
2111
2319
  return 'xs';
2112
2320
  }
2113
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2114
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2321
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2322
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2115
2323
  }
2116
2324
  __decorate([
2117
2325
  Memo(),
2118
2326
  __metadata("design:type", Function),
2119
2327
  __metadata("design:paramtypes", [String, String]),
2120
2328
  __metadata("design:returntype", void 0)
2121
- ], ViewportService.prototype, "_getViewportSize", null);
2329
+ ], ViewportService.prototype, "getBreakpointSize", null);
2122
2330
  __decorate([
2123
2331
  Memo({
2124
2332
  resolver: (v) => {
@@ -2129,12 +2337,12 @@ __decorate([
2129
2337
  __metadata("design:paramtypes", [Object]),
2130
2338
  __metadata("design:returntype", void 0)
2131
2339
  ], ViewportService.prototype, "_buildMediaQuery", null);
2132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ViewportService, decorators: [{
2340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ViewportService, decorators: [{
2133
2341
  type: Injectable,
2134
2342
  args: [{
2135
2343
  providedIn: 'root',
2136
2344
  }]
2137
- }], ctorParameters: function () { return []; }, propDecorators: { _getViewportSize: [], _buildMediaQuery: [] } });
2345
+ }], ctorParameters: function () { return []; }, propDecorators: { getBreakpointSize: [], _buildMediaQuery: [] } });
2138
2346
 
2139
2347
  class ObserveResizeDirective {
2140
2348
  constructor() {
@@ -2178,10 +2386,10 @@ class ObserveResizeDirective {
2178
2386
  _unsubscribe() {
2179
2387
  this._currentSubscription?.unsubscribe();
2180
2388
  }
2181
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2182
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2389
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2390
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2183
2391
  }
2184
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2392
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2185
2393
  type: Directive,
2186
2394
  args: [{
2187
2395
  selector: '[etObserveResize]',
@@ -2435,10 +2643,10 @@ class AnimatedOverlayDirective {
2435
2643
  this._isUnmounting$.next(false);
2436
2644
  this._afterClosed?.next();
2437
2645
  }
2438
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2439
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", 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 }); }
2646
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2647
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
2440
2648
  }
2441
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
2649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
2442
2650
  type: Directive,
2443
2651
  args: [{
2444
2652
  standalone: true,
@@ -2484,10 +2692,10 @@ class ClickOutsideDirective {
2484
2692
  ngOnDestroy() {
2485
2693
  this._subscription?.unsubscribe();
2486
2694
  }
2487
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2488
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
2695
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2696
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
2489
2697
  }
2490
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ClickOutsideDirective, decorators: [{
2698
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ClickOutsideDirective, decorators: [{
2491
2699
  type: Directive,
2492
2700
  args: [{
2493
2701
  selector: '[etClickOutside]',
@@ -2641,10 +2849,10 @@ class CursorDragScrollDirective {
2641
2849
  this._elementRef.nativeElement.style.cursor = 'default';
2642
2850
  }
2643
2851
  }
2644
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2645
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
2852
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2853
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
2646
2854
  }
2647
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
2855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
2648
2856
  type: Directive,
2649
2857
  args: [{
2650
2858
  selector: '[etCursorDragScroll]',
@@ -2693,15 +2901,15 @@ class DelayableDirective {
2693
2901
  }
2694
2902
  this._isDelayed$.next(val);
2695
2903
  }
2696
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2697
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2904
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2905
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2698
2906
  {
2699
2907
  provide: DELAYABLE_TOKEN,
2700
2908
  useExisting: DelayableDirective,
2701
2909
  },
2702
2910
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
2703
2911
  }
2704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: DelayableDirective, decorators: [{
2912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: DelayableDirective, decorators: [{
2705
2913
  type: Directive,
2706
2914
  args: [{
2707
2915
  selector: '[etDelayable]',
@@ -2722,15 +2930,15 @@ class IsActiveElementDirective {
2722
2930
  this.elementRef = inject(ElementRef);
2723
2931
  this.isActiveElement = false;
2724
2932
  }
2725
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2726
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.3", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
2933
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2934
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
2727
2935
  {
2728
2936
  provide: IS_ACTIVE_ELEMENT,
2729
2937
  useExisting: IsActiveElementDirective,
2730
2938
  },
2731
2939
  ], ngImport: i0 }); }
2732
2940
  }
2733
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2734
2942
  type: Directive,
2735
2943
  args: [{
2736
2944
  selector: '[etIsActiveElement]',
@@ -2753,15 +2961,15 @@ class IsElementDirective {
2753
2961
  this.elementRef = inject(ElementRef);
2754
2962
  this.isElement = false;
2755
2963
  }
2756
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2757
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.3", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
2964
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2965
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
2758
2966
  {
2759
2967
  provide: IS_ELEMENT,
2760
2968
  useExisting: IsElementDirective,
2761
2969
  },
2762
2970
  ], ngImport: i0 }); }
2763
2971
  }
2764
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: IsElementDirective, decorators: [{
2972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: IsElementDirective, decorators: [{
2765
2973
  type: Directive,
2766
2974
  args: [{
2767
2975
  selector: '[etIsElement]',
@@ -2810,10 +3018,10 @@ class LetDirective {
2810
3018
  }
2811
3019
  }
2812
3020
  }
2813
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2814
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
3021
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3022
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
2815
3023
  }
2816
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: LetDirective, decorators: [{
3024
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: LetDirective, decorators: [{
2817
3025
  type: Directive,
2818
3026
  args: [{
2819
3027
  selector: '[etLet]',
@@ -2865,10 +3073,10 @@ class ObserveContentDirective {
2865
3073
  _unsubscribe() {
2866
3074
  this._currentSubscription?.unsubscribe();
2867
3075
  }
2868
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2869
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
3076
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3077
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
2870
3078
  }
2871
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveContentDirective, decorators: [{
3079
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveContentDirective, decorators: [{
2872
3080
  type: Directive,
2873
3081
  args: [{
2874
3082
  selector: '[etObserveContent]',
@@ -2891,10 +3099,10 @@ class ScrollObserverFirstElementDirective {
2891
3099
  constructor() {
2892
3100
  this.isFirstElement = false;
2893
3101
  }
2894
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2895
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.3", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
3102
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3103
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
2896
3104
  }
2897
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
3105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
2898
3106
  type: Directive,
2899
3107
  args: [{
2900
3108
  selector: '[etScrollObserverFirstElement]',
@@ -2910,10 +3118,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
2910
3118
 
2911
3119
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
2912
3120
  class ScrollObserverIgnoreTargetDirective {
2913
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2914
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
3121
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3122
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
2915
3123
  }
2916
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
3124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
2917
3125
  type: Directive,
2918
3126
  args: [{
2919
3127
  selector: '[etScrollObserverIgnoreTarget]',
@@ -2929,10 +3137,10 @@ class ScrollObserverLastElementDirective {
2929
3137
  constructor() {
2930
3138
  this.isLastElement = false;
2931
3139
  }
2932
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2933
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.3", 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 }); }
3140
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3141
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
2934
3142
  }
2935
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
3143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
2936
3144
  type: Directive,
2937
3145
  args: [{
2938
3146
  selector: '[etScrollObserverLastElement]',
@@ -3091,15 +3299,15 @@ class ObserveScrollStateDirective {
3091
3299
  }
3092
3300
  return element;
3093
3301
  }
3094
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3095
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.3", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3302
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3303
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "16.2.5", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3096
3304
  {
3097
3305
  provide: OBSERVE_SCROLL_STATE,
3098
3306
  useExisting: ObserveScrollStateDirective,
3099
3307
  },
3100
3308
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
3101
3309
  }
3102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3103
3311
  type: Directive,
3104
3312
  args: [{
3105
3313
  selector: '[etObserveScrollState]',
@@ -3122,6 +3330,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
3122
3330
  args: ['etObserveScrollState']
3123
3331
  }] } });
3124
3332
 
3333
+ const OBSERVE_VISIBILITY_TOKEN = new InjectionToken('OBSERVE_VISIBILITY_TOKEN');
3334
+ class ObserveVisibilityDirective {
3335
+ constructor() {
3336
+ this._destroy$ = createDestroy();
3337
+ this._elementRef = inject(ElementRef);
3338
+ this._intersectionObserverService = inject(IntersectionObserverService);
3339
+ this.isIntersecting = signal(false);
3340
+ this.etObserveVisibility = new EventEmitter();
3341
+ this._intersectionObserverService
3342
+ .observe(this._elementRef)
3343
+ .pipe(takeUntil(this._destroy$), tap((entries) => {
3344
+ const entry = entries[0];
3345
+ if (!entry) {
3346
+ return;
3347
+ }
3348
+ this.etObserveVisibility.emit(entry.isIntersecting);
3349
+ this.isIntersecting.set(entry.isIntersecting);
3350
+ }))
3351
+ .subscribe();
3352
+ }
3353
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveVisibilityDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3354
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: ObserveVisibilityDirective, isStandalone: true, selector: "[etObserveVisibility]", outputs: { etObserveVisibility: "etObserveVisibility" }, host: { properties: { "class.et-observe-visibility--is-visible": "isIntersecting" }, classAttribute: "et-observe-visibility" }, providers: [
3355
+ {
3356
+ provide: OBSERVE_VISIBILITY_TOKEN,
3357
+ useExisting: ObserveVisibilityDirective,
3358
+ },
3359
+ ], ngImport: i0 }); }
3360
+ }
3361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ObserveVisibilityDirective, decorators: [{
3362
+ type: Directive,
3363
+ args: [{
3364
+ selector: '[etObserveVisibility]',
3365
+ standalone: true,
3366
+ providers: [
3367
+ {
3368
+ provide: OBSERVE_VISIBILITY_TOKEN,
3369
+ useExisting: ObserveVisibilityDirective,
3370
+ },
3371
+ ],
3372
+ host: {
3373
+ class: 'et-observe-visibility',
3374
+ '[class.et-observe-visibility--is-visible]': 'isIntersecting',
3375
+ },
3376
+ }]
3377
+ }], ctorParameters: function () { return []; }, propDecorators: { etObserveVisibility: [{
3378
+ type: Output
3379
+ }] } });
3380
+
3125
3381
  class RepeatDirective {
3126
3382
  get repeatCount() {
3127
3383
  return this._repeatCount;
@@ -3141,10 +3397,10 @@ class RepeatDirective {
3141
3397
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
3142
3398
  }
3143
3399
  }
3144
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3145
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3400
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3401
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3146
3402
  }
3147
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: RepeatDirective, decorators: [{
3403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: RepeatDirective, decorators: [{
3148
3404
  type: Directive,
3149
3405
  args: [{
3150
3406
  selector: '[etRepeat]',
@@ -3313,10 +3569,10 @@ class SeoDirective {
3313
3569
  }
3314
3570
  }
3315
3571
  }
3316
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3317
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
3572
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3573
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
3318
3574
  }
3319
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: SeoDirective, decorators: [{
3575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: SeoDirective, decorators: [{
3320
3576
  type: Directive,
3321
3577
  args: [{
3322
3578
  standalone: true,
@@ -3362,10 +3618,10 @@ class NormalizeGameResultTypePipe {
3362
3618
  constructor() {
3363
3619
  this.transform = normalizeGameResultType;
3364
3620
  }
3365
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3366
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
3621
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3622
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
3367
3623
  }
3368
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
3624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
3369
3625
  type: Pipe,
3370
3626
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
3371
3627
  }] });
@@ -3393,10 +3649,10 @@ class NormalizeMatchStatePipe {
3393
3649
  constructor() {
3394
3650
  this.transform = normalizeMatchState;
3395
3651
  }
3396
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3397
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
3652
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3653
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
3398
3654
  }
3399
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
3655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
3400
3656
  type: Pipe,
3401
3657
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
3402
3658
  }] });
@@ -3451,10 +3707,10 @@ class NormalizeMatchParticipantsPipe {
3451
3707
  constructor() {
3452
3708
  this.transform = normalizeMatchParticipants;
3453
3709
  }
3454
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3455
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
3710
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3711
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
3456
3712
  }
3457
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
3713
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
3458
3714
  type: Pipe,
3459
3715
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
3460
3716
  }] });
@@ -3588,10 +3844,10 @@ class NormalizeMatchScorePipe {
3588
3844
  constructor() {
3589
3845
  this.transform = normalizeMatchScore;
3590
3846
  }
3591
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3592
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
3847
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3848
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
3593
3849
  }
3594
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
3850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
3595
3851
  type: Pipe,
3596
3852
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
3597
3853
  }] });
@@ -3638,10 +3894,10 @@ class NormalizeMatchTypePipe {
3638
3894
  constructor() {
3639
3895
  this.transform = normalizeMatchType;
3640
3896
  }
3641
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3642
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
3897
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3898
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
3643
3899
  }
3644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
3900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
3645
3901
  type: Pipe,
3646
3902
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
3647
3903
  }] });
@@ -3655,10 +3911,10 @@ class ToArrayPipe {
3655
3911
  constructor() {
3656
3912
  this.transform = toArray;
3657
3913
  }
3658
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3659
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
3914
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3915
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
3660
3916
  }
3661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: ToArrayPipe, decorators: [{
3917
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ToArrayPipe, decorators: [{
3662
3918
  type: Pipe,
3663
3919
  args: [{ name: 'toArray', standalone: true }]
3664
3920
  }] });
@@ -3746,5 +4002,5 @@ const Validators = {
3746
4002
  * Generated bundle index. Do not edit.
3747
4003
  */
3748
4004
 
3749
- export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsElementDirective, IsEmail, KeyPressManager, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
4005
+ export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, ActiveSelectionModel, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_ELEMENT, IS_EMAIL, 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, RUNTIME_ERROR_NO_DATA, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, RuntimeError, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_OBSERVING_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, ValidateAtLeastOneRequired, Validators, ViewportService, clamp, clone, cloneFormGroup, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createMutationObservable, createReactiveBindings, createResizeObservable, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementVisibleStates, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isEmptyArray, isGroupMatch, isKnockoutMatch, isObjectArray, isPrimitiveArray, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
3750
4006
  //# sourceMappingURL=ethlete-core.mjs.map