@ethlete/core 3.0.1 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) 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-lifecycle/animated-lifecycle.directive.mjs +3 -3
  4. package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
  5. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
  6. package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
  7. package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
  8. package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
  9. package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
  10. package/esm2022/lib/directives/let/let.directive.mjs +3 -3
  11. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  12. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  13. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  14. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  15. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  16. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  17. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  18. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  19. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  20. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  21. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  22. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  23. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  24. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  25. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  26. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  27. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  28. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  29. package/esm2022/lib/services/router-state.service.mjs +3 -3
  30. package/esm2022/lib/services/viewport.service.mjs +3 -3
  31. package/esm2022/lib/types/public-api.mjs +2 -1
  32. package/esm2022/lib/types/value.types.mjs +2 -0
  33. package/esm2022/lib/utils/public-api.mjs +2 -1
  34. package/esm2022/lib/utils/runtime-error.utils.mjs +9 -6
  35. package/esm2022/lib/utils/selection-model.utils.mjs +27 -19
  36. package/esm2022/lib/utils/value.utils.mjs +22 -0
  37. package/esm2022/lib/validators/at-least-one-required.validator.mjs +20 -0
  38. package/esm2022/lib/validators/public-api.mjs +4 -1
  39. package/fesm2022/ethlete-core.mjs +177 -123
  40. package/fesm2022/ethlete-core.mjs.map +1 -1
  41. package/lib/types/public-api.d.ts +1 -0
  42. package/lib/types/value.types.d.ts +2 -0
  43. package/lib/utils/public-api.d.ts +1 -0
  44. package/lib/utils/runtime-error.utils.d.ts +4 -2
  45. package/lib/utils/selection-model.utils.d.ts +27 -12
  46. package/lib/utils/value.utils.d.ts +4 -0
  47. package/lib/validators/at-least-one-required.validator.d.ts +14 -0
  48. package/lib/validators/public-api.d.ts +2 -0
  49. package/package.json +6 -6
@@ -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.7", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
30
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", 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 }); }
29
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
30
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
31
31
  }
32
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: StructuredDataComponent, decorators: [{
32
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: StructuredDataComponent, decorators: [{
33
33
  type: Component,
34
34
  args: [{
35
35
  selector: 'et-structured-data',
@@ -712,12 +712,14 @@ const round = (value, precision = 0) => {
712
712
  return Math.round(value * multiplier) / multiplier;
713
713
  };
714
714
 
715
+ const RUNTIME_ERROR_NO_DATA = '__ET_NO_DATA__';
715
716
  class RuntimeError extends Error {
716
- constructor(code, message, data = '__ET_NO_DATA__') {
717
- super(formatRuntimeError(code, message));
717
+ constructor(code, message, devOnly = false, data = RUNTIME_ERROR_NO_DATA) {
718
+ super(formatRuntimeError(code, message, devOnly));
718
719
  this.code = code;
720
+ this.devOnly = devOnly;
719
721
  this.data = data;
720
- if (data !== '__ET_NO_DATA__') {
722
+ if (data !== RUNTIME_ERROR_NO_DATA) {
721
723
  try {
722
724
  const _data = clone(data);
723
725
  setTimeout(() => {
@@ -732,11 +734,12 @@ class RuntimeError extends Error {
732
734
  }
733
735
  }
734
736
  }
735
- function formatRuntimeError(code, message) {
737
+ function formatRuntimeError(code, message, devOnly) {
736
738
  // prefix code with zeros if it's less than 100
737
739
  const codeWithZeros = code < 10 ? `00${code}` : code < 100 ? `0${code}` : code;
738
740
  const fullCode = `ET${codeWithZeros}`;
739
- return `${fullCode}${message ? ': ' + message : ''}`;
741
+ const devOnlyText = devOnly ? ' [DEV ONLY] ' : '';
742
+ return `${devOnlyText}${fullCode}${message ? ': ' + message : ''}`;
740
743
  }
741
744
 
742
745
  const elementCanScroll = (element) => {
@@ -875,12 +878,12 @@ class SelectionModel {
875
878
  this._filter$ = new BehaviorSubject('');
876
879
  this.value$ = combineLatest([this.selection$, this.valueBinding$, this.allowMultiple$]).pipe(map(([selection, valueBinding, allowMultiple]) => {
877
880
  if (allowMultiple) {
878
- return selection.map((option) => this.getOptionProperty(option, valueBinding));
881
+ return selection.map((option) => this.execFnOrGetOptionProperty(option, valueBinding));
879
882
  }
880
883
  const [option] = selection;
881
884
  if (!option)
882
885
  return null;
883
- return this.getOptionProperty(option, valueBinding);
886
+ return this.execFnOrGetOptionProperty(option, valueBinding);
884
887
  }));
885
888
  this.filteredOptions$ = combineLatest([this.options$, this.filter$, this.labelBinding$]).pipe(map(([options, filter]) => this.getFilteredOptions(filter, options)), shareReplay({ bufferSize: 1, refCount: true }));
886
889
  this._optionsAndSelection$ = combineLatest([this._options$, this._selection$]);
@@ -934,16 +937,16 @@ class SelectionModel {
934
937
  this._selection$.next(selection);
935
938
  return this;
936
939
  }
937
- setValueBinding(propertyPath) {
938
- this._valueBinding$.next(propertyPath);
940
+ setValueBinding(fnOrPropertyPath) {
941
+ this._valueBinding$.next(fnOrPropertyPath);
939
942
  return this;
940
943
  }
941
- setKeyBinding(propertyPath) {
942
- this._keyBinding$.next(propertyPath);
944
+ setKeyBinding(fnOrPropertyPath) {
945
+ this._keyBinding$.next(fnOrPropertyPath);
943
946
  return this;
944
947
  }
945
- setLabelBinding(propertyPath) {
946
- this._labelBinding$.next(propertyPath);
948
+ setLabelBinding(fnOrPropertyPath) {
949
+ this._labelBinding$.next(fnOrPropertyPath);
947
950
  return this;
948
951
  }
949
952
  setOptions(options) {
@@ -979,13 +982,13 @@ class SelectionModel {
979
982
  return this._selection$.pipe(map(() => this.isSelected(option)));
980
983
  }
981
984
  getLabel$(option) {
982
- return this.labelBinding$.pipe(map((labelBinding) => this.getOptionProperty(option, labelBinding)));
985
+ return this.labelBinding$.pipe(map((labelBinding) => this.execFnOrGetOptionProperty(option, labelBinding)));
983
986
  }
984
987
  getValue$(option) {
985
- return this.valueBinding$.pipe(map((valueBinding) => this.getOptionProperty(option, valueBinding)));
988
+ return this.valueBinding$.pipe(map((valueBinding) => this.execFnOrGetOptionProperty(option, valueBinding)));
986
989
  }
987
990
  getKey$(option) {
988
- return this.keyBinding$.pipe(map((keyBinding) => this.getOptionProperty(option, keyBinding)));
991
+ return this.keyBinding$.pipe(map((keyBinding) => this.execFnOrGetOptionProperty(option, keyBinding)));
989
992
  }
990
993
  getOptionByValue(value) {
991
994
  return this.getOption(value, this.valueBinding);
@@ -1003,7 +1006,7 @@ class SelectionModel {
1003
1006
  return options.find((option) => {
1004
1007
  if (!isObject(option))
1005
1008
  return false;
1006
- return getObjectProperty(option, propertyPath) === value;
1009
+ return this.execFnOrGetOptionProperty(option, propertyPath) === value;
1007
1010
  });
1008
1011
  }
1009
1012
  getOptionByIndex(index, options = this.getFilteredOptions()) {
@@ -1066,13 +1069,21 @@ class SelectionModel {
1066
1069
  return this.getOptionByOffset(index, offset, this.getFilteredOptions(), config);
1067
1070
  }
1068
1071
  getLabel(option) {
1069
- return this.getOptionProperty(option, this.labelBinding);
1072
+ return this.execFnOrGetOptionProperty(option, this.labelBinding);
1070
1073
  }
1071
1074
  getValue(option) {
1072
- return this.getOptionProperty(option, this.valueBinding);
1075
+ return this.execFnOrGetOptionProperty(option, this.valueBinding);
1073
1076
  }
1074
1077
  getKey(option) {
1075
- return this.getOptionProperty(option, this.keyBinding);
1078
+ return this.execFnOrGetOptionProperty(option, this.keyBinding);
1079
+ }
1080
+ execFnOrGetOptionProperty(option, fnOrPropertyPath) {
1081
+ if (!fnOrPropertyPath || !isObject(option))
1082
+ return option;
1083
+ if (typeof fnOrPropertyPath === 'function') {
1084
+ return fnOrPropertyPath(option);
1085
+ }
1086
+ return getObjectProperty(option, fnOrPropertyPath);
1076
1087
  }
1077
1088
  getOptionProperty(option, propertyPath) {
1078
1089
  if (!propertyPath || !isObject(option))
@@ -1080,7 +1091,7 @@ class SelectionModel {
1080
1091
  return getObjectProperty(option, propertyPath);
1081
1092
  }
1082
1093
  isSelected(option) {
1083
- const optionKey = this.getOptionProperty(option, this.keyBinding);
1094
+ const optionKey = this.execFnOrGetOptionProperty(option, this.keyBinding);
1084
1095
  return this.getOption(optionKey, this.keyBinding, this.selection) !== undefined;
1085
1096
  }
1086
1097
  getFilteredOptions(filter = this.filter, options = this.options) {
@@ -1106,11 +1117,11 @@ class SelectionModel {
1106
1117
  }
1107
1118
  }
1108
1119
  removeSelectedOption(option) {
1109
- const optionKey = this.getOptionProperty(option, this.keyBinding);
1120
+ const optionKey = this.execFnOrGetOptionProperty(option, this.keyBinding);
1110
1121
  if (!this.isSelected(option))
1111
1122
  return;
1112
1123
  this._selection$.next(this.selection.filter((selectedOption) => {
1113
- const key = this.getOptionProperty(selectedOption, this.keyBinding);
1124
+ const key = this.execFnOrGetOptionProperty(selectedOption, this.keyBinding);
1114
1125
  return key !== optionKey;
1115
1126
  }));
1116
1127
  }
@@ -1206,6 +1217,28 @@ class SmartBlockScrollStrategy {
1206
1217
  }
1207
1218
  }
1208
1219
 
1220
+ const isPrimitiveArray = (value) => {
1221
+ if (!Array.isArray(value))
1222
+ return false;
1223
+ const first = value[0];
1224
+ const last = value[value.length - 1];
1225
+ if (!first || !last)
1226
+ return false;
1227
+ return typeof first !== 'object' && typeof last !== 'object';
1228
+ };
1229
+ const isObjectArray = (value) => {
1230
+ if (!Array.isArray(value))
1231
+ return false;
1232
+ const first = value[0];
1233
+ const last = value[value.length - 1];
1234
+ if (!first || !last)
1235
+ return false;
1236
+ return typeof first === 'object' && typeof last === 'object' && !Array.isArray(first) && !Array.isArray(last);
1237
+ };
1238
+ const isEmptyArray = (value) => {
1239
+ return Array.isArray(value) && value.length === 0;
1240
+ };
1241
+
1209
1242
  const provideViewportConfig = (viewportConfig) => {
1210
1243
  return { provide: VIEWPORT_CONFIG, useValue: viewportConfig };
1211
1244
  };
@@ -1293,15 +1326,15 @@ class AnimatableDirective {
1293
1326
  .subscribe();
1294
1327
  }
1295
1328
  }
1296
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1297
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1329
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1330
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1298
1331
  {
1299
1332
  provide: ANIMATABLE_TOKEN,
1300
1333
  useExisting: AnimatableDirective,
1301
1334
  },
1302
1335
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
1303
1336
  }
1304
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatableDirective, decorators: [{
1337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatableDirective, decorators: [{
1305
1338
  type: Directive,
1306
1339
  args: [{
1307
1340
  selector: '[etAnimatable]',
@@ -1402,15 +1435,15 @@ class AnimatedLifecycleDirective {
1402
1435
  }), takeUntil(this._destroy$), take(1))
1403
1436
  .subscribe();
1404
1437
  }
1405
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1406
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1438
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1439
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1407
1440
  {
1408
1441
  provide: ANIMATED_LIFECYCLE_TOKEN,
1409
1442
  useExisting: AnimatedLifecycleDirective,
1410
1443
  },
1411
1444
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
1412
1445
  }
1413
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1414
1447
  type: Directive,
1415
1448
  args: [{
1416
1449
  selector: '[etAnimatedLifecycle]',
@@ -1431,10 +1464,10 @@ class ClickObserverFactory {
1431
1464
  create() {
1432
1465
  return fromEvent(document, 'click');
1433
1466
  }
1434
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1435
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1468
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1436
1469
  }
1437
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverFactory, decorators: [{
1470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverFactory, decorators: [{
1438
1471
  type: Injectable,
1439
1472
  args: [{ providedIn: 'root' }]
1440
1473
  }] });
@@ -1487,10 +1520,10 @@ class ClickObserverService {
1487
1520
  this._observedElements.delete(element);
1488
1521
  }
1489
1522
  }
1490
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1491
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1524
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1492
1525
  }
1493
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickObserverService, decorators: [{
1526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickObserverService, decorators: [{
1494
1527
  type: Injectable,
1495
1528
  args: [{ providedIn: 'root' }]
1496
1529
  }] });
@@ -1500,10 +1533,10 @@ class MutationObserverFactory {
1500
1533
  create(callback) {
1501
1534
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
1502
1535
  }
1503
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1504
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1536
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1537
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1505
1538
  }
1506
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MutationObserverFactory, decorators: [{
1539
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: MutationObserverFactory, decorators: [{
1507
1540
  type: Injectable,
1508
1541
  args: [{ providedIn: 'root' }]
1509
1542
  }] });
@@ -1562,10 +1595,10 @@ class ContentObserverService {
1562
1595
  this._observedElements.delete(element);
1563
1596
  }
1564
1597
  }
1565
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1566
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1598
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1599
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1567
1600
  }
1568
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ContentObserverService, decorators: [{
1601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ContentObserverService, decorators: [{
1569
1602
  type: Injectable,
1570
1603
  args: [{ providedIn: 'root' }]
1571
1604
  }] });
@@ -1591,10 +1624,10 @@ class FocusVisibleService {
1591
1624
  onPointerDown() {
1592
1625
  this._hadKeyboardEvent = false;
1593
1626
  }
1594
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1595
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1627
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1628
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1596
1629
  }
1597
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FocusVisibleService, decorators: [{
1630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: FocusVisibleService, decorators: [{
1598
1631
  type: Injectable,
1599
1632
  args: [{
1600
1633
  providedIn: 'root',
@@ -1606,10 +1639,10 @@ class ResizeObserverFactory {
1606
1639
  create(callback) {
1607
1640
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
1608
1641
  }
1609
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1610
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1642
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1643
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1611
1644
  }
1612
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1613
1646
  type: Injectable,
1614
1647
  args: [{ providedIn: 'root' }]
1615
1648
  }] });
@@ -1664,10 +1697,10 @@ class ResizeObserverService {
1664
1697
  this._observedElements.delete(element);
1665
1698
  }
1666
1699
  }
1667
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1668
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1700
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1701
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1669
1702
  }
1670
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ResizeObserverService, decorators: [{
1703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ResizeObserverService, decorators: [{
1671
1704
  type: Injectable,
1672
1705
  args: [{ providedIn: 'root' }]
1673
1706
  }] });
@@ -1835,10 +1868,10 @@ class RouterStateService {
1835
1868
  }
1836
1869
  return changes;
1837
1870
  }
1838
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1839
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
1871
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1872
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
1840
1873
  }
1841
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterStateService, decorators: [{
1874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RouterStateService, decorators: [{
1842
1875
  type: Injectable,
1843
1876
  args: [{
1844
1877
  providedIn: 'root',
@@ -2048,8 +2081,8 @@ class ViewportService {
2048
2081
  }
2049
2082
  return 'xs';
2050
2083
  }
2051
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2052
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2084
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2085
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
2053
2086
  }
2054
2087
  __decorate([
2055
2088
  Memo(),
@@ -2067,7 +2100,7 @@ __decorate([
2067
2100
  __metadata("design:paramtypes", [Object]),
2068
2101
  __metadata("design:returntype", void 0)
2069
2102
  ], ViewportService.prototype, "_buildMediaQuery", null);
2070
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ViewportService, decorators: [{
2103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ViewportService, decorators: [{
2071
2104
  type: Injectable,
2072
2105
  args: [{
2073
2106
  providedIn: 'root',
@@ -2116,10 +2149,10 @@ class ObserveResizeDirective {
2116
2149
  _unsubscribe() {
2117
2150
  this._currentSubscription?.unsubscribe();
2118
2151
  }
2119
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2120
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2152
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2153
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
2121
2154
  }
2122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveResizeDirective, decorators: [{
2123
2156
  type: Directive,
2124
2157
  args: [{
2125
2158
  selector: '[etObserveResize]',
@@ -2373,10 +2406,10 @@ class AnimatedOverlayDirective {
2373
2406
  this._isUnmounting$.next(false);
2374
2407
  this._afterClosed?.next();
2375
2408
  }
2376
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2377
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", 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 }); }
2409
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2410
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", fallbackPlacements: "fallbackPlacements", offset: "offset", arrowPadding: "arrowPadding", viewportPadding: "viewportPadding", autoResize: "autoResize", autoHide: "autoHide" }, host: { classAttribute: "et-animated-overlay" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
2378
2411
  }
2379
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
2412
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
2380
2413
  type: Directive,
2381
2414
  args: [{
2382
2415
  standalone: true,
@@ -2422,10 +2455,10 @@ class ClickOutsideDirective {
2422
2455
  ngOnDestroy() {
2423
2456
  this._subscription?.unsubscribe();
2424
2457
  }
2425
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2426
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
2458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2459
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
2427
2460
  }
2428
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ClickOutsideDirective, decorators: [{
2461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ClickOutsideDirective, decorators: [{
2429
2462
  type: Directive,
2430
2463
  args: [{
2431
2464
  selector: '[etClickOutside]',
@@ -2579,10 +2612,10 @@ class CursorDragScrollDirective {
2579
2612
  this._elementRef.nativeElement.style.cursor = 'default';
2580
2613
  }
2581
2614
  }
2582
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2583
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
2615
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2616
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"], allowedDirection: "allowedDirection" }, outputs: { cursorDragStart: "cursorDragStart", cursorDragMove: "cursorDragMove", cursorDragEnd: "cursorDragEnd" }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
2584
2617
  }
2585
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
2618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
2586
2619
  type: Directive,
2587
2620
  args: [{
2588
2621
  selector: '[etCursorDragScroll]',
@@ -2631,15 +2664,15 @@ class DelayableDirective {
2631
2664
  }
2632
2665
  this._isDelayed$.next(val);
2633
2666
  }
2634
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2635
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2667
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2668
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2636
2669
  {
2637
2670
  provide: DELAYABLE_TOKEN,
2638
2671
  useExisting: DelayableDirective,
2639
2672
  },
2640
2673
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
2641
2674
  }
2642
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DelayableDirective, decorators: [{
2675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: DelayableDirective, decorators: [{
2643
2676
  type: Directive,
2644
2677
  args: [{
2645
2678
  selector: '[etDelayable]',
@@ -2660,15 +2693,15 @@ class IsActiveElementDirective {
2660
2693
  this.elementRef = inject(ElementRef);
2661
2694
  this.isActiveElement = false;
2662
2695
  }
2663
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2664
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
2696
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2697
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement", booleanAttribute] }, providers: [
2665
2698
  {
2666
2699
  provide: IS_ACTIVE_ELEMENT,
2667
2700
  useExisting: IsActiveElementDirective,
2668
2701
  },
2669
2702
  ], ngImport: i0 }); }
2670
2703
  }
2671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2672
2705
  type: Directive,
2673
2706
  args: [{
2674
2707
  selector: '[etIsActiveElement]',
@@ -2691,15 +2724,15 @@ class IsElementDirective {
2691
2724
  this.elementRef = inject(ElementRef);
2692
2725
  this.isElement = false;
2693
2726
  }
2694
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2695
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
2727
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2728
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: IsElementDirective, isStandalone: true, selector: "[etIsElement]", inputs: { isElement: ["etIsElement", "isElement", booleanAttribute] }, providers: [
2696
2729
  {
2697
2730
  provide: IS_ELEMENT,
2698
2731
  useExisting: IsElementDirective,
2699
2732
  },
2700
2733
  ], ngImport: i0 }); }
2701
2734
  }
2702
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IsElementDirective, decorators: [{
2735
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: IsElementDirective, decorators: [{
2703
2736
  type: Directive,
2704
2737
  args: [{
2705
2738
  selector: '[etIsElement]',
@@ -2748,10 +2781,10 @@ class LetDirective {
2748
2781
  }
2749
2782
  }
2750
2783
  }
2751
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2752
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
2784
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: LetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2785
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
2753
2786
  }
2754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LetDirective, decorators: [{
2787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: LetDirective, decorators: [{
2755
2788
  type: Directive,
2756
2789
  args: [{
2757
2790
  selector: '[etLet]',
@@ -2803,10 +2836,10 @@ class ObserveContentDirective {
2803
2836
  _unsubscribe() {
2804
2837
  this._currentSubscription?.unsubscribe();
2805
2838
  }
2806
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2807
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
2839
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2840
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
2808
2841
  }
2809
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveContentDirective, decorators: [{
2842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveContentDirective, decorators: [{
2810
2843
  type: Directive,
2811
2844
  args: [{
2812
2845
  selector: '[etObserveContent]',
@@ -2829,10 +2862,10 @@ class ScrollObserverFirstElementDirective {
2829
2862
  constructor() {
2830
2863
  this.isFirstElement = false;
2831
2864
  }
2832
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2833
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
2865
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2866
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
2834
2867
  }
2835
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
2868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
2836
2869
  type: Directive,
2837
2870
  args: [{
2838
2871
  selector: '[etScrollObserverFirstElement]',
@@ -2848,10 +2881,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
2848
2881
 
2849
2882
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
2850
2883
  class ScrollObserverIgnoreTargetDirective {
2851
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2852
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
2884
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2885
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
2853
2886
  }
2854
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
2887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
2855
2888
  type: Directive,
2856
2889
  args: [{
2857
2890
  selector: '[etScrollObserverIgnoreTarget]',
@@ -2867,10 +2900,10 @@ class ScrollObserverLastElementDirective {
2867
2900
  constructor() {
2868
2901
  this.isLastElement = false;
2869
2902
  }
2870
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2871
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", 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 }); }
2903
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2904
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement", booleanAttribute] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
2872
2905
  }
2873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
2906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
2874
2907
  type: Directive,
2875
2908
  args: [{
2876
2909
  selector: '[etScrollObserverLastElement]',
@@ -3029,15 +3062,15 @@ class ObserveScrollStateDirective {
3029
3062
  }
3030
3063
  return element;
3031
3064
  }
3032
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3033
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3065
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3066
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { rootMargin: ["rootMargin", "rootMargin", numberAttribute], observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
3034
3067
  {
3035
3068
  provide: OBSERVE_SCROLL_STATE,
3036
3069
  useExisting: ObserveScrollStateDirective,
3037
3070
  },
3038
3071
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
3039
3072
  }
3040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
3041
3074
  type: Directive,
3042
3075
  args: [{
3043
3076
  selector: '[etObserveScrollState]',
@@ -3079,10 +3112,10 @@ class RepeatDirective {
3079
3112
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
3080
3113
  }
3081
3114
  }
3082
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3083
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3115
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3116
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
3084
3117
  }
3085
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RepeatDirective, decorators: [{
3118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: RepeatDirective, decorators: [{
3086
3119
  type: Directive,
3087
3120
  args: [{
3088
3121
  selector: '[etRepeat]',
@@ -3251,10 +3284,10 @@ class SeoDirective {
3251
3284
  }
3252
3285
  }
3253
3286
  }
3254
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3255
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
3287
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3288
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.1", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
3256
3289
  }
3257
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SeoDirective, decorators: [{
3290
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SeoDirective, decorators: [{
3258
3291
  type: Directive,
3259
3292
  args: [{
3260
3293
  standalone: true,
@@ -3300,10 +3333,10 @@ class NormalizeGameResultTypePipe {
3300
3333
  constructor() {
3301
3334
  this.transform = normalizeGameResultType;
3302
3335
  }
3303
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3304
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
3336
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3337
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
3305
3338
  }
3306
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
3339
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
3307
3340
  type: Pipe,
3308
3341
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
3309
3342
  }] });
@@ -3331,10 +3364,10 @@ class NormalizeMatchStatePipe {
3331
3364
  constructor() {
3332
3365
  this.transform = normalizeMatchState;
3333
3366
  }
3334
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3335
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
3367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3368
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
3336
3369
  }
3337
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
3370
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
3338
3371
  type: Pipe,
3339
3372
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
3340
3373
  }] });
@@ -3389,10 +3422,10 @@ class NormalizeMatchParticipantsPipe {
3389
3422
  constructor() {
3390
3423
  this.transform = normalizeMatchParticipants;
3391
3424
  }
3392
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3393
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
3425
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3426
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
3394
3427
  }
3395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
3428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
3396
3429
  type: Pipe,
3397
3430
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
3398
3431
  }] });
@@ -3526,10 +3559,10 @@ class NormalizeMatchScorePipe {
3526
3559
  constructor() {
3527
3560
  this.transform = normalizeMatchScore;
3528
3561
  }
3529
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3530
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
3562
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3563
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
3531
3564
  }
3532
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
3565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
3533
3566
  type: Pipe,
3534
3567
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
3535
3568
  }] });
@@ -3576,10 +3609,10 @@ class NormalizeMatchTypePipe {
3576
3609
  constructor() {
3577
3610
  this.transform = normalizeMatchType;
3578
3611
  }
3579
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3580
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
3612
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3613
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
3581
3614
  }
3582
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
3615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
3583
3616
  type: Pipe,
3584
3617
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
3585
3618
  }] });
@@ -3593,10 +3626,10 @@ class ToArrayPipe {
3593
3626
  constructor() {
3594
3627
  this.transform = toArray;
3595
3628
  }
3596
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3597
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
3629
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3630
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
3598
3631
  }
3599
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ToArrayPipe, decorators: [{
3632
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ToArrayPipe, decorators: [{
3600
3633
  type: Pipe,
3601
3634
  args: [{ name: 'toArray', standalone: true }]
3602
3635
  }] });
@@ -3615,6 +3648,26 @@ class TypedQueryList extends QueryList {
3615
3648
  }
3616
3649
  }
3617
3650
 
3651
+ const AT_LEAST_ONE_REQUIRED = 'atLeastOneRequired';
3652
+ const ValidateAtLeastOneRequired = (config) => {
3653
+ return (formGroup) => {
3654
+ const { keys, checkFalse } = config;
3655
+ if (!formGroup) {
3656
+ return { [AT_LEAST_ONE_REQUIRED]: true };
3657
+ }
3658
+ const controlValues = keys.map((key) => formGroup.get(key)?.value);
3659
+ const areAllFalsy = controlValues.every((value) => value === null ||
3660
+ value === undefined ||
3661
+ value === '' ||
3662
+ (Array.isArray(value) && value.length === 0) ||
3663
+ (checkFalse && value === false));
3664
+ if (areAllFalsy) {
3665
+ return { [AT_LEAST_ONE_REQUIRED]: true };
3666
+ }
3667
+ return null;
3668
+ };
3669
+ };
3670
+
3618
3671
  const IS_ARRAY_NOT_EMPTY = 'isArrayNotEmpty';
3619
3672
  const IsArrayNotEmpty = (control) => {
3620
3673
  const value = control.value;
@@ -3657,11 +3710,12 @@ const Validators = {
3657
3710
  MustMatch,
3658
3711
  IsEmail,
3659
3712
  IsArrayNotEmpty,
3713
+ ValidateAtLeastOneRequired,
3660
3714
  };
3661
3715
 
3662
3716
  /**
3663
3717
  * Generated bundle index. Do not edit.
3664
3718
  */
3665
3719
 
3666
- export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, 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, 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 };
3720
+ 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, 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 };
3667
3721
  //# sourceMappingURL=ethlete-core.mjs.map