@ethlete/core 2.2.0 → 2.3.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 (39) 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 +15 -6
  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/let/let.directive.mjs +3 -3
  10. package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
  11. package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
  12. package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
  13. package/esm2022/lib/directives/repeat/repeat.directive.mjs +3 -3
  14. package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
  15. package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
  16. package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
  17. package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
  18. package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
  19. package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
  20. package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
  21. package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
  22. package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
  23. package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
  24. package/esm2022/lib/services/click-observer.service.mjs +6 -6
  25. package/esm2022/lib/services/content-observer.service.mjs +6 -6
  26. package/esm2022/lib/services/focus-visible.service.mjs +3 -3
  27. package/esm2022/lib/services/resize-observer.service.mjs +6 -6
  28. package/esm2022/lib/services/router-state.service.mjs +3 -3
  29. package/esm2022/lib/services/viewport.service.mjs +3 -3
  30. package/esm2022/lib/utils/public-api.mjs +3 -1
  31. package/esm2022/lib/utils/runtime-error.utils.mjs +28 -0
  32. package/esm2022/lib/utils/selection-model.utils.mjs +292 -0
  33. package/fesm2022/ethlete-core.mjs +426 -99
  34. package/fesm2022/ethlete-core.mjs.map +1 -1
  35. package/lib/directives/animated-overlay/animated-overlay.directive.d.ts +3 -0
  36. package/lib/utils/public-api.d.ts +2 -0
  37. package/lib/utils/runtime-error.utils.d.ts +6 -0
  38. package/lib/utils/selection-model.utils.d.ts +72 -0
  39. package/package.json +5 -5
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, InjectionToken, assertInInjectionContext, DestroyRef, ElementRef, isDevMode, Directive, Injectable, Inject, Optional, NgZone, EventEmitter, Output, Injector, ViewContainerRef, Pipe, QueryList } from '@angular/core';
3
3
  import { DomSanitizer, Meta, Title } from '@angular/platform-browser';
4
- import { Observable, combineLatest, Subject, startWith, map, takeUntil, distinctUntilChanged, BehaviorSubject, skip, take, tap, debounceTime, merge, fromEvent, filter, switchMap, pairwise, shareReplay } from 'rxjs';
4
+ import { Observable, combineLatest, Subject, startWith, map, takeUntil, distinctUntilChanged, BehaviorSubject, shareReplay, skip, take, tap, debounceTime, merge, fromEvent, filter, switchMap, pairwise } from 'rxjs';
5
5
  import { coerceCssPixelValue, coerceElement, coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
6
6
  import { supportsScrollBehavior } from '@angular/cdk/platform';
7
7
  import { Overlay } from '@angular/cdk/overlay';
@@ -25,10 +25,10 @@ class StructuredDataComponent {
25
25
  const html = `<script type="application/ld+json">${json}</script>`;
26
26
  return this._sanitizer.bypassSecurityTrustHtml(html);
27
27
  }
28
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
29
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", 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 }); }
28
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: StructuredDataComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
29
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.2", type: StructuredDataComponent, isStandalone: true, selector: "et-structured-data", inputs: { data: "data" }, host: { properties: { "innerHTML": "this.jsonLD" }, styleAttribute: "display: none" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
30
30
  }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: StructuredDataComponent, decorators: [{
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: StructuredDataComponent, decorators: [{
32
32
  type: Component,
33
33
  args: [{
34
34
  selector: 'et-structured-data',
@@ -585,6 +585,33 @@ const createReactiveBindings = (...values) => {
585
585
  };
586
586
  };
587
587
 
588
+ class RuntimeError extends Error {
589
+ constructor(code, message, data = '__ET_NO_DATA__') {
590
+ super(formatRuntimeError(code, message));
591
+ this.code = code;
592
+ this.data = data;
593
+ if (data !== '__ET_NO_DATA__') {
594
+ try {
595
+ const _data = clone(data);
596
+ setTimeout(() => {
597
+ console.error(_data);
598
+ }, 1);
599
+ }
600
+ catch {
601
+ setTimeout(() => {
602
+ console.error(data);
603
+ }, 1);
604
+ }
605
+ }
606
+ }
607
+ }
608
+ function formatRuntimeError(code, message) {
609
+ // prefix code with zeros if it's less than 100
610
+ const codeWithZeros = code < 10 ? `00${code}` : code < 100 ? `0${code}` : code;
611
+ const fullCode = `ET${codeWithZeros}`;
612
+ return `${fullCode}${message ? ': ' + message : ''}`;
613
+ }
614
+
588
615
  /* eslint-disable @typescript-eslint/no-explicit-any */
589
616
  class BehaviorSubjectWithSubscriberCount extends BehaviorSubject {
590
617
  constructor() {
@@ -696,6 +723,297 @@ const scrollToElement = (options) => {
696
723
  });
697
724
  };
698
725
 
726
+ const isObject = (value) => {
727
+ return typeof value === 'object' && value !== null;
728
+ };
729
+ const getObjectProperty = (obj, prop) => {
730
+ const hasDotNotation = prop.includes('.');
731
+ if (!hasDotNotation)
732
+ return obj[prop];
733
+ const props = prop.split('.');
734
+ let value = obj;
735
+ for (const prop of props) {
736
+ if (!isObject(value))
737
+ return undefined;
738
+ value = value[prop];
739
+ }
740
+ return value;
741
+ };
742
+ class SelectionModel {
743
+ constructor() {
744
+ this._selection$ = new BehaviorSubject([]);
745
+ this._options$ = new BehaviorSubject([]);
746
+ this._valueBinding$ = new BehaviorSubject(null);
747
+ this._keyBinding$ = new BehaviorSubject(null);
748
+ this._labelBinding$ = new BehaviorSubject(null);
749
+ this._allowMultiple$ = new BehaviorSubject(false);
750
+ this._filter$ = new BehaviorSubject('');
751
+ this.value$ = combineLatest([this.selection$, this.valueBinding$, this.allowMultiple$]).pipe(map(([selection, valueBinding, allowMultiple]) => {
752
+ if (allowMultiple) {
753
+ return selection.map((option) => this.getOptionProperty(option, valueBinding));
754
+ }
755
+ const [option] = selection;
756
+ if (!option)
757
+ return null;
758
+ return this.getOptionProperty(option, valueBinding);
759
+ }));
760
+ this.filteredOptions$ = combineLatest([this.options$, this.filter$, this.labelBinding$]).pipe(map(([options, filter]) => this.getFilteredOptions(filter, options)), shareReplay({ bufferSize: 1, refCount: true }));
761
+ this._optionsAndSelection$ = combineLatest([this._options$, this._selection$]);
762
+ }
763
+ get selection$() {
764
+ return this._selection$.asObservable();
765
+ }
766
+ get selection() {
767
+ return this._selection$.value;
768
+ }
769
+ get options$() {
770
+ return this._options$.asObservable();
771
+ }
772
+ get options() {
773
+ return this._options$.value;
774
+ }
775
+ get valueBinding$() {
776
+ return this._valueBinding$.asObservable();
777
+ }
778
+ get valueBinding() {
779
+ return this._valueBinding$.value;
780
+ }
781
+ get keyBinding$() {
782
+ return combineLatest([this._keyBinding$, this.valueBinding$]).pipe(map(([keyBinding, valueBinding]) => keyBinding || valueBinding));
783
+ }
784
+ get keyBinding() {
785
+ return this._keyBinding$.value || this.valueBinding;
786
+ }
787
+ get labelBinding$() {
788
+ return this._labelBinding$.asObservable();
789
+ }
790
+ get labelBinding() {
791
+ return this._labelBinding$.value;
792
+ }
793
+ get allowMultiple$() {
794
+ return this._allowMultiple$.asObservable();
795
+ }
796
+ get allowMultiple() {
797
+ return this._allowMultiple$.value;
798
+ }
799
+ get filter$() {
800
+ return this._filter$.asObservable();
801
+ }
802
+ get filter() {
803
+ return this._filter$.value;
804
+ }
805
+ setSelection(selection) {
806
+ if (!Array.isArray(selection)) {
807
+ selection = [selection];
808
+ }
809
+ this._selection$.next(selection);
810
+ return this;
811
+ }
812
+ setValueBinding(propertyPath) {
813
+ this._valueBinding$.next(propertyPath);
814
+ return this;
815
+ }
816
+ setKeyBinding(propertyPath) {
817
+ this._keyBinding$.next(propertyPath);
818
+ return this;
819
+ }
820
+ setLabelBinding(propertyPath) {
821
+ this._labelBinding$.next(propertyPath);
822
+ return this;
823
+ }
824
+ setOptions(options) {
825
+ this._options$.next(options);
826
+ return this;
827
+ }
828
+ setAllowMultiple(allowMultiple) {
829
+ this._allowMultiple$.next(allowMultiple);
830
+ return this;
831
+ }
832
+ setFilter(filter) {
833
+ const sanitizedFilter = filter?.trim() || '';
834
+ this._filter$.next(sanitizedFilter);
835
+ }
836
+ reset() {
837
+ this._selection$.next([]);
838
+ this._options$.next([]);
839
+ this._valueBinding$.next(null);
840
+ this._keyBinding$.next(null);
841
+ this._labelBinding$.next(null);
842
+ this._allowMultiple$.next(false);
843
+ }
844
+ getOptionByValue$(value) {
845
+ return this._optionsAndSelection$.pipe(map(() => this.getOptionByValue(value)));
846
+ }
847
+ getOptionByLabel$(label) {
848
+ return this._optionsAndSelection$.pipe(map(() => this.getOptionByLabel(label)));
849
+ }
850
+ getOptionByKey$(key) {
851
+ return this._optionsAndSelection$.pipe(map(() => this.getOptionByKey(key)));
852
+ }
853
+ isSelected$(option) {
854
+ return this._selection$.pipe(map(() => this.isSelected(option)));
855
+ }
856
+ getLabel$(option) {
857
+ return this.labelBinding$.pipe(map((labelBinding) => this.getOptionProperty(option, labelBinding)));
858
+ }
859
+ getValue$(option) {
860
+ return this.valueBinding$.pipe(map((valueBinding) => this.getOptionProperty(option, valueBinding)));
861
+ }
862
+ getKey$(option) {
863
+ return this.keyBinding$.pipe(map((keyBinding) => this.getOptionProperty(option, keyBinding)));
864
+ }
865
+ getOptionByValue(value) {
866
+ return this.getOption(value, this.valueBinding);
867
+ }
868
+ getOptionByLabel(label) {
869
+ return this.getOption(label, this.labelBinding);
870
+ }
871
+ getOptionByKey(key) {
872
+ return this.getOption(key, this.keyBinding);
873
+ }
874
+ getOption(value, propertyPath = null, options = [...this.options, ...this.selection]) {
875
+ if (!propertyPath) {
876
+ return options.find((option) => option === value);
877
+ }
878
+ return options.find((option) => {
879
+ if (!isObject(option))
880
+ return false;
881
+ return getObjectProperty(option, propertyPath) === value;
882
+ });
883
+ }
884
+ getOptionByIndex(index, options = this.getFilteredOptions()) {
885
+ return options[index] || null;
886
+ }
887
+ getOptionByOffset(offset, index, options = this.getFilteredOptions(), config = { clamp: true }) {
888
+ const { loop, clamp } = config;
889
+ const newIndex = index + offset;
890
+ const remainingOffset = newIndex * -1;
891
+ if (newIndex < 0) {
892
+ if (loop) {
893
+ return this.getOptionByOffset(remainingOffset, options.length - 1, options, config);
894
+ }
895
+ if (clamp) {
896
+ return this.getFirstOption();
897
+ }
898
+ return null;
899
+ }
900
+ if (newIndex >= options.length) {
901
+ if (loop) {
902
+ return this.getOptionByOffset(remainingOffset, 0, options, config);
903
+ }
904
+ if (clamp) {
905
+ return this.getLastOption();
906
+ }
907
+ return null;
908
+ }
909
+ return this.getOptionByIndex(newIndex);
910
+ }
911
+ getFirstOption(options = this.options) {
912
+ return this.getOptionByIndex(0, options);
913
+ }
914
+ getLastOption(options = this.options) {
915
+ return this.getOptionByIndex(options.length - 1, options);
916
+ }
917
+ getOptionIndex(option, options = this.options) {
918
+ const key = this.getKey(option);
919
+ const index = options.findIndex((o) => this.getKey(o) === key);
920
+ return index === -1 ? null : index;
921
+ }
922
+ getNonMultipleSelectedOption() {
923
+ if (this.allowMultiple)
924
+ return null;
925
+ return this.selection[0] || null;
926
+ }
927
+ getNonMultipleSelectedOptionIndex() {
928
+ if (this.allowMultiple)
929
+ return null;
930
+ const opt = this.getNonMultipleSelectedOption();
931
+ if (!opt)
932
+ return null;
933
+ return this.getOptionIndex(opt);
934
+ }
935
+ getNonMultipleOptionByOffsetFromSelected(offset, config = { clamp: true }) {
936
+ if (this.allowMultiple)
937
+ return null;
938
+ const index = this.getNonMultipleSelectedOptionIndex();
939
+ if (index === null)
940
+ return null;
941
+ return this.getOptionByOffset(index, offset, this.getFilteredOptions(), config);
942
+ }
943
+ getLabel(option) {
944
+ return this.getOptionProperty(option, this.labelBinding);
945
+ }
946
+ getValue(option) {
947
+ return this.getOptionProperty(option, this.valueBinding);
948
+ }
949
+ getKey(option) {
950
+ return this.getOptionProperty(option, this.keyBinding);
951
+ }
952
+ getOptionProperty(option, propertyPath) {
953
+ if (!propertyPath || !isObject(option))
954
+ return option;
955
+ return getObjectProperty(option, propertyPath);
956
+ }
957
+ isSelected(option) {
958
+ const optionKey = this.getOptionProperty(option, this.keyBinding);
959
+ return this.getOption(optionKey, this.keyBinding, this.selection) !== undefined;
960
+ }
961
+ getFilteredOptions(filter = this.filter, options = this.options) {
962
+ if (!filter)
963
+ return options;
964
+ const splitFilter = filter.split(' ').filter((f) => f);
965
+ return options.filter((option) => {
966
+ const label = this.getLabel(option);
967
+ if (!label || typeof label !== 'string')
968
+ return false;
969
+ const splitLabel = label.split(' ').filter((l) => l);
970
+ return splitFilter.every((f) => splitLabel.some((l) => l.toLowerCase().includes(f.toLowerCase())));
971
+ });
972
+ }
973
+ addSelectedOption(option) {
974
+ if (this.allowMultiple) {
975
+ if (this.isSelected(option))
976
+ return;
977
+ this._selection$.next([...this.selection, option]);
978
+ }
979
+ else {
980
+ this._selection$.next([option]);
981
+ }
982
+ }
983
+ removeSelectedOption(option) {
984
+ const optionKey = this.getOptionProperty(option, this.keyBinding);
985
+ if (!this.isSelected(option))
986
+ return;
987
+ this._selection$.next(this.selection.filter((selectedOption) => {
988
+ const key = this.getOptionProperty(selectedOption, this.keyBinding);
989
+ return key !== optionKey;
990
+ }));
991
+ }
992
+ clearSelectedOptions() {
993
+ this._selection$.next([]);
994
+ }
995
+ toggleSelectedOption(option) {
996
+ if (this.isSelected(option)) {
997
+ this.removeSelectedOption(option);
998
+ }
999
+ else {
1000
+ this.addSelectedOption(option);
1001
+ }
1002
+ }
1003
+ toggleAllSelectedOptions() {
1004
+ const filteredOptions = this.getFilteredOptions();
1005
+ const unselectedOptions = filteredOptions.filter((option) => !this.isSelected(option));
1006
+ if (unselectedOptions.length) {
1007
+ const selection = unselectedOptions.filter((o) => !this.selection.some((s) => this.getKey(s) === this.getKey(o)));
1008
+ this._selection$.next([...this.selection, ...selection]);
1009
+ }
1010
+ else {
1011
+ const selection = this.selection.filter((s) => !filteredOptions.some((o) => this.getKey(o) === this.getKey(s)));
1012
+ this._selection$.next(selection);
1013
+ }
1014
+ }
1015
+ }
1016
+
699
1017
  const scrollBehaviorSupported = supportsScrollBehavior();
700
1018
  class SmartBlockScrollStrategy {
701
1019
  constructor(_viewportRuler, _routerState, document) {
@@ -850,15 +1168,15 @@ class AnimatableDirective {
850
1168
  .subscribe();
851
1169
  }
852
1170
  }
853
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
854
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
1171
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1172
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: AnimatableDirective, isStandalone: true, selector: "[etAnimatable]", inputs: { animatedElement: ["etAnimatable", "animatedElement"] }, providers: [
855
1173
  {
856
1174
  provide: ANIMATABLE_TOKEN,
857
1175
  useExisting: AnimatableDirective,
858
1176
  },
859
1177
  ], exportAs: ["etAnimatable"], ngImport: i0 }); }
860
1178
  }
861
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatableDirective, decorators: [{
1179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatableDirective, decorators: [{
862
1180
  type: Directive,
863
1181
  args: [{
864
1182
  selector: '[etAnimatable]',
@@ -958,15 +1276,15 @@ class AnimatedLifecycleDirective {
958
1276
  }), takeUntil(this._destroy$), take(1))
959
1277
  .subscribe();
960
1278
  }
961
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
962
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
1279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatedLifecycleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1280
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: AnimatedLifecycleDirective, isStandalone: true, selector: "[etAnimatedLifecycle]", providers: [
963
1281
  {
964
1282
  provide: ANIMATED_LIFECYCLE_TOKEN,
965
1283
  useExisting: AnimatedLifecycleDirective,
966
1284
  },
967
1285
  ], exportAs: ["etAnimatedLifecycle"], hostDirectives: [{ directive: AnimatableDirective }], ngImport: i0 }); }
968
1286
  }
969
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
1287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatedLifecycleDirective, decorators: [{
970
1288
  type: Directive,
971
1289
  args: [{
972
1290
  selector: '[etAnimatedLifecycle]',
@@ -987,10 +1305,10 @@ class ClickObserverFactory {
987
1305
  create() {
988
1306
  return fromEvent(document, 'click');
989
1307
  }
990
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
991
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
1308
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1309
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverFactory, providedIn: 'root' }); }
992
1310
  }
993
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverFactory, decorators: [{
1311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverFactory, decorators: [{
994
1312
  type: Injectable,
995
1313
  args: [{ providedIn: 'root' }]
996
1314
  }] });
@@ -1043,10 +1361,10 @@ class ClickObserverService {
1043
1361
  this._observedElements.delete(element);
1044
1362
  }
1045
1363
  }
1046
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverService, deps: [{ token: ClickObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1047
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1364
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverService, deps: [{ token: ClickObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1365
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverService, providedIn: 'root' }); }
1048
1366
  }
1049
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickObserverService, decorators: [{
1367
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickObserverService, decorators: [{
1050
1368
  type: Injectable,
1051
1369
  args: [{ providedIn: 'root' }]
1052
1370
  }], ctorParameters: function () { return [{ type: ClickObserverFactory }]; } });
@@ -1056,10 +1374,10 @@ class MutationObserverFactory {
1056
1374
  create(callback) {
1057
1375
  return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);
1058
1376
  }
1059
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1060
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1377
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: MutationObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1378
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: MutationObserverFactory, providedIn: 'root' }); }
1061
1379
  }
1062
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: MutationObserverFactory, decorators: [{
1380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: MutationObserverFactory, decorators: [{
1063
1381
  type: Injectable,
1064
1382
  args: [{ providedIn: 'root' }]
1065
1383
  }] });
@@ -1118,10 +1436,10 @@ class ContentObserverService {
1118
1436
  this._observedElements.delete(element);
1119
1437
  }
1120
1438
  }
1121
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ContentObserverService, deps: [{ token: MutationObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1122
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1439
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ContentObserverService, deps: [{ token: MutationObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1440
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ContentObserverService, providedIn: 'root' }); }
1123
1441
  }
1124
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ContentObserverService, decorators: [{
1442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ContentObserverService, decorators: [{
1125
1443
  type: Injectable,
1126
1444
  args: [{ providedIn: 'root' }]
1127
1445
  }], ctorParameters: function () { return [{ type: MutationObserverFactory }]; } });
@@ -1147,10 +1465,10 @@ class FocusVisibleService {
1147
1465
  onPointerDown() {
1148
1466
  this._hadKeyboardEvent = false;
1149
1467
  }
1150
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1151
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1468
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: FocusVisibleService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1469
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: FocusVisibleService, providedIn: 'root' }); }
1152
1470
  }
1153
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: FocusVisibleService, decorators: [{
1471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: FocusVisibleService, decorators: [{
1154
1472
  type: Injectable,
1155
1473
  args: [{
1156
1474
  providedIn: 'root',
@@ -1162,10 +1480,10 @@ class ResizeObserverFactory {
1162
1480
  create(callback) {
1163
1481
  return typeof ResizeObserver === 'undefined' ? null : new ResizeObserver(callback);
1164
1482
  }
1165
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1166
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1483
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1484
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverFactory, providedIn: 'root' }); }
1167
1485
  }
1168
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1486
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverFactory, decorators: [{
1169
1487
  type: Injectable,
1170
1488
  args: [{ providedIn: 'root' }]
1171
1489
  }] });
@@ -1220,10 +1538,10 @@ class ResizeObserverService {
1220
1538
  this._observedElements.delete(element);
1221
1539
  }
1222
1540
  }
1223
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverService, deps: [{ token: ResizeObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1224
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1541
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverService, deps: [{ token: ResizeObserverFactory }], target: i0.ɵɵFactoryTarget.Injectable }); }
1542
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
1225
1543
  }
1226
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ResizeObserverService, decorators: [{
1544
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ResizeObserverService, decorators: [{
1227
1545
  type: Injectable,
1228
1546
  args: [{ providedIn: 'root' }]
1229
1547
  }], ctorParameters: function () { return [{ type: ResizeObserverFactory }]; } });
@@ -1385,10 +1703,10 @@ class RouterStateService {
1385
1703
  }
1386
1704
  return changes;
1387
1705
  }
1388
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1389
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
1706
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: RouterStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1707
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: RouterStateService, providedIn: 'root' }); }
1390
1708
  }
1391
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RouterStateService, decorators: [{
1709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: RouterStateService, decorators: [{
1392
1710
  type: Injectable,
1393
1711
  args: [{
1394
1712
  providedIn: 'root',
@@ -1524,8 +1842,8 @@ class ViewportService {
1524
1842
  }
1525
1843
  return 'xs';
1526
1844
  }
1527
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ViewportService, deps: [{ token: VIEWPORT_CONFIG, optional: true }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
1528
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
1845
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ViewportService, deps: [{ token: VIEWPORT_CONFIG, optional: true }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
1846
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ViewportService, providedIn: 'root' }); }
1529
1847
  }
1530
1848
  __decorate([
1531
1849
  Memo(),
@@ -1543,7 +1861,7 @@ __decorate([
1543
1861
  __metadata("design:paramtypes", [Object]),
1544
1862
  __metadata("design:returntype", void 0)
1545
1863
  ], ViewportService.prototype, "_buildMediaQuery", null);
1546
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ViewportService, decorators: [{
1864
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ViewportService, decorators: [{
1547
1865
  type: Injectable,
1548
1866
  args: [{
1549
1867
  providedIn: 'root',
@@ -1597,10 +1915,10 @@ class ObserveResizeDirective {
1597
1915
  _unsubscribe() {
1598
1916
  this._currentSubscription?.unsubscribe();
1599
1917
  }
1600
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1601
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
1918
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveResizeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1919
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ObserveResizeDirective, isStandalone: true, selector: "[etObserveResize]", inputs: { disabled: ["etObserveResizeDisabled", "disabled"], debounce: ["etObserveResizeDebounce", "debounce"] }, outputs: { valueChange: "etObserveResize" }, exportAs: ["etObserveResize"], ngImport: i0 }); }
1602
1920
  }
1603
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveResizeDirective, decorators: [{
1921
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveResizeDirective, decorators: [{
1604
1922
  type: Directive,
1605
1923
  args: [{
1606
1924
  selector: '[etObserveResize]',
@@ -1635,6 +1953,7 @@ class AnimatedOverlayDirective {
1635
1953
  this._afterOpened = null;
1636
1954
  this._beforeClosed = null;
1637
1955
  this._afterClosed = null;
1956
+ this._isMounted$ = new BehaviorSubject(false);
1638
1957
  /**
1639
1958
  * The placement of the tooltip.
1640
1959
  * @default 'auto'
@@ -1653,7 +1972,10 @@ class AnimatedOverlayDirective {
1653
1972
  this.arrowPadding = null;
1654
1973
  }
1655
1974
  get isMounted() {
1656
- return !!this._componentRef;
1975
+ return this._isMounted$.value;
1976
+ }
1977
+ get isMounted$() {
1978
+ return this._isMounted$.asObservable();
1657
1979
  }
1658
1980
  get portal() {
1659
1981
  return this._portal;
@@ -1743,6 +2065,7 @@ class AnimatedOverlayDirective {
1743
2065
  }
1744
2066
  }), take(1), takeUntil(this._destroy$))
1745
2067
  .subscribe();
2068
+ this._isMounted$.next(true);
1746
2069
  });
1747
2070
  });
1748
2071
  return this._componentRef.instance;
@@ -1794,12 +2117,16 @@ class AnimatedOverlayDirective {
1794
2117
  this._componentRef.destroy();
1795
2118
  this._componentRef = null;
1796
2119
  }
2120
+ this._isMounted$.next(false);
1797
2121
  this._afterClosed?.next();
1798
2122
  }
1799
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1800
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", offset: "offset", arrowPadding: "arrowPadding" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
2123
+ _reposition() {
2124
+ this._popper?.update();
2125
+ }
2126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatedOverlayDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2127
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: AnimatedOverlayDirective, isStandalone: true, inputs: { placement: "placement", offset: "offset", arrowPadding: "arrowPadding" }, hostDirectives: [{ directive: ObserveResizeDirective }], ngImport: i0 }); }
1801
2128
  }
1802
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
2129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: AnimatedOverlayDirective, decorators: [{
1803
2130
  type: Directive,
1804
2131
  args: [{
1805
2132
  standalone: true,
@@ -1834,10 +2161,10 @@ class ClickOutsideDirective {
1834
2161
  ngOnDestroy() {
1835
2162
  this._subscription?.unsubscribe();
1836
2163
  }
1837
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1838
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
2164
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2165
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ClickOutsideDirective, isStandalone: true, selector: "[etClickOutside]", outputs: { etClickOutside: "etClickOutside" }, ngImport: i0 }); }
1839
2166
  }
1840
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ClickOutsideDirective, decorators: [{
2167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ClickOutsideDirective, decorators: [{
1841
2168
  type: Directive,
1842
2169
  args: [{
1843
2170
  selector: '[etClickOutside]',
@@ -1974,10 +2301,10 @@ class CursorDragScrollDirective {
1974
2301
  this._elementRef.nativeElement.style.cursor = 'default';
1975
2302
  }
1976
2303
  }
1977
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1978
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"] }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
2304
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: CursorDragScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2305
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: CursorDragScrollDirective, isStandalone: true, selector: "[etCursorDragScroll]", inputs: { enabled: ["etCursorDragScroll", "enabled"] }, exportAs: ["etCursorDragScroll"], ngImport: i0 }); }
1979
2306
  }
1980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
2307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: CursorDragScrollDirective, decorators: [{
1981
2308
  type: Directive,
1982
2309
  args: [{
1983
2310
  selector: '[etCursorDragScroll]',
@@ -2018,15 +2345,15 @@ class DelayableDirective {
2018
2345
  }
2019
2346
  this._isDelayed$.next(val);
2020
2347
  }
2021
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2022
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2348
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: DelayableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2349
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: DelayableDirective, isStandalone: true, selector: "[etDelayable]", providers: [
2023
2350
  {
2024
2351
  provide: DELAYABLE_TOKEN,
2025
2352
  useExisting: DelayableDirective,
2026
2353
  },
2027
2354
  ], exportAs: ["etDelayable"], ngImport: i0 }); }
2028
2355
  }
2029
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: DelayableDirective, decorators: [{
2356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: DelayableDirective, decorators: [{
2030
2357
  type: Directive,
2031
2358
  args: [{
2032
2359
  selector: '[etDelayable]',
@@ -2053,15 +2380,15 @@ class IsActiveElementDirective {
2053
2380
  set isActiveElement(value) {
2054
2381
  this._isActiveElement = coerceBooleanProperty(value);
2055
2382
  }
2056
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2057
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement"] }, providers: [
2383
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: IsActiveElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2384
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: IsActiveElementDirective, isStandalone: true, selector: "[etIsActiveElement]", inputs: { isActiveElement: ["etIsActiveElement", "isActiveElement"] }, providers: [
2058
2385
  {
2059
2386
  provide: IS_ACTIVE_ELEMENT,
2060
2387
  useExisting: IsActiveElementDirective,
2061
2388
  },
2062
2389
  ], ngImport: i0 }); }
2063
2390
  }
2064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: IsActiveElementDirective, decorators: [{
2065
2392
  type: Directive,
2066
2393
  args: [{
2067
2394
  selector: '[etIsActiveElement]',
@@ -2111,10 +2438,10 @@ class LetDirective {
2111
2438
  }
2112
2439
  }
2113
2440
  }
2114
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LetDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2115
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
2441
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: LetDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2442
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: LetDirective, isStandalone: true, selector: "[etLet]", inputs: { etLet: "etLet" }, ngImport: i0 }); }
2116
2443
  }
2117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: LetDirective, decorators: [{
2444
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: LetDirective, decorators: [{
2118
2445
  type: Directive,
2119
2446
  args: [{
2120
2447
  selector: '[etLet]',
@@ -2166,10 +2493,10 @@ class ObserveContentDirective {
2166
2493
  _unsubscribe() {
2167
2494
  this._currentSubscription?.unsubscribe();
2168
2495
  }
2169
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2170
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
2496
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2497
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ObserveContentDirective, isStandalone: true, selector: "[etObserveContent]", inputs: { disabled: ["etObserveContentDisabled", "disabled"], debounce: ["etObserveContentDebounce", "debounce"] }, outputs: { valueChange: "etObserveContent" }, exportAs: ["etObserveContent"], ngImport: i0 }); }
2171
2498
  }
2172
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveContentDirective, decorators: [{
2499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveContentDirective, decorators: [{
2173
2500
  type: Directive,
2174
2501
  args: [{
2175
2502
  selector: '[etObserveContent]',
@@ -2198,10 +2525,10 @@ class ScrollObserverFirstElementDirective {
2198
2525
  set isFirstElement(value) {
2199
2526
  this._isFirstElement = coerceBooleanProperty(value);
2200
2527
  }
2201
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2202
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement"] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
2528
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2529
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ScrollObserverFirstElementDirective, isStandalone: true, selector: "[etScrollObserverFirstElement]", inputs: { isFirstElement: ["etScrollObserverFirstElement", "isFirstElement"] }, host: { properties: { "class.et-scroll-observer-first-element": "this.isFirstElement" } }, ngImport: i0 }); }
2203
2530
  }
2204
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
2531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverFirstElementDirective, decorators: [{
2205
2532
  type: Directive,
2206
2533
  args: [{
2207
2534
  selector: '[etScrollObserverFirstElement]',
@@ -2217,10 +2544,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImpor
2217
2544
 
2218
2545
  const SCROLL_OBSERVER_IGNORE_TARGET_CLASS = 'et-scroll-observer-ignore-target';
2219
2546
  class ScrollObserverIgnoreTargetDirective {
2220
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2221
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
2547
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2548
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ScrollObserverIgnoreTargetDirective, isStandalone: true, selector: "[etScrollObserverIgnoreTarget]", host: { classAttribute: "et-scroll-observer-ignore-target" }, ngImport: i0 }); }
2222
2549
  }
2223
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
2550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverIgnoreTargetDirective, decorators: [{
2224
2551
  type: Directive,
2225
2552
  args: [{
2226
2553
  selector: '[etScrollObserverIgnoreTarget]',
@@ -2242,10 +2569,10 @@ class ScrollObserverLastElementDirective {
2242
2569
  set isLastElement(value) {
2243
2570
  this._isLastElement = coerceBooleanProperty(value);
2244
2571
  }
2245
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2246
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement"] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
2572
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2573
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ScrollObserverLastElementDirective, isStandalone: true, selector: "[etScrollObserverLastElement]", inputs: { isLastElement: ["etScrollObserverLastElement", "isLastElement"] }, host: { properties: { "class.et-scroll-observer-last-element": "this.isLastElement" }, classAttribute: "et-scroll-observer-last-element" }, ngImport: i0 }); }
2247
2574
  }
2248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
2575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ScrollObserverLastElementDirective, decorators: [{
2249
2576
  type: Directive,
2250
2577
  args: [{
2251
2578
  selector: '[etScrollObserverLastElement]',
@@ -2398,15 +2725,15 @@ class ObserveScrollStateDirective {
2398
2725
  }
2399
2726
  return element;
2400
2727
  }
2401
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2402
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { observerRootMargin: "observerRootMargin", observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
2728
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveScrollStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2729
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: ObserveScrollStateDirective, isStandalone: true, selector: "[etObserveScrollState]", inputs: { observerRootMargin: "observerRootMargin", observerThreshold: "observerThreshold" }, outputs: { valueChange: "etObserveScrollState" }, providers: [
2403
2730
  {
2404
2731
  provide: OBSERVE_SCROLL_STATE,
2405
2732
  useExisting: ObserveScrollStateDirective,
2406
2733
  },
2407
2734
  ], exportAs: ["etObserveScrollState"], ngImport: i0 }); }
2408
2735
  }
2409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
2736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ObserveScrollStateDirective, decorators: [{
2410
2737
  type: Directive,
2411
2738
  args: [{
2412
2739
  selector: '[etObserveScrollState]',
@@ -2447,10 +2774,10 @@ class RepeatDirective {
2447
2774
  this._viewContainerRef.createEmbeddedView(this._mainTemplateRef);
2448
2775
  }
2449
2776
  }
2450
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2451
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
2777
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: RepeatDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2778
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: RepeatDirective, isStandalone: true, selector: "[etRepeat]", inputs: { repeatCount: ["etRepeat", "repeatCount"] }, ngImport: i0 }); }
2452
2779
  }
2453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: RepeatDirective, decorators: [{
2780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: RepeatDirective, decorators: [{
2454
2781
  type: Directive,
2455
2782
  args: [{
2456
2783
  selector: '[etRepeat]',
@@ -2619,10 +2946,10 @@ class SeoDirective {
2619
2946
  }
2620
2947
  }
2621
2948
  }
2622
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2623
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
2949
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: SeoDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2950
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.2", type: SeoDirective, isStandalone: true, providers: [{ provide: SEO_DIRECTIVE_TOKEN, useExisting: SeoDirective }], ngImport: i0 }); }
2624
2951
  }
2625
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: SeoDirective, decorators: [{
2952
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: SeoDirective, decorators: [{
2626
2953
  type: Directive,
2627
2954
  args: [{
2628
2955
  standalone: true,
@@ -2668,10 +2995,10 @@ class NormalizeGameResultTypePipe {
2668
2995
  constructor() {
2669
2996
  this.transform = normalizeGameResultType;
2670
2997
  }
2671
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2672
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
2998
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2999
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, isStandalone: true, name: "etNormalizeGameResultType" }); }
2673
3000
  }
2674
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
3001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeGameResultTypePipe, decorators: [{
2675
3002
  type: Pipe,
2676
3003
  args: [{ name: 'etNormalizeGameResultType', standalone: true }]
2677
3004
  }] });
@@ -2699,10 +3026,10 @@ class NormalizeMatchStatePipe {
2699
3026
  constructor() {
2700
3027
  this.transform = normalizeMatchState;
2701
3028
  }
2702
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2703
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
3029
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchStatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3030
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchStatePipe, isStandalone: true, name: "etNormalizeMatchState" }); }
2704
3031
  }
2705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
3032
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchStatePipe, decorators: [{
2706
3033
  type: Pipe,
2707
3034
  args: [{ name: 'etNormalizeMatchState', standalone: true }]
2708
3035
  }] });
@@ -2757,10 +3084,10 @@ class NormalizeMatchParticipantsPipe {
2757
3084
  constructor() {
2758
3085
  this.transform = normalizeMatchParticipants;
2759
3086
  }
2760
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2761
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
3087
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3088
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, isStandalone: true, name: "etNormalizeMatchParticipants" }); }
2762
3089
  }
2763
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
3090
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchParticipantsPipe, decorators: [{
2764
3091
  type: Pipe,
2765
3092
  args: [{ name: 'etNormalizeMatchParticipants', standalone: true }]
2766
3093
  }] });
@@ -2894,10 +3221,10 @@ class NormalizeMatchScorePipe {
2894
3221
  constructor() {
2895
3222
  this.transform = normalizeMatchScore;
2896
3223
  }
2897
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2898
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
3224
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchScorePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3225
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchScorePipe, isStandalone: true, name: "etNormalizeMatchScore" }); }
2899
3226
  }
2900
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
3227
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchScorePipe, decorators: [{
2901
3228
  type: Pipe,
2902
3229
  args: [{ name: 'etNormalizeMatchScore', standalone: true }]
2903
3230
  }] });
@@ -2944,10 +3271,10 @@ class NormalizeMatchTypePipe {
2944
3271
  constructor() {
2945
3272
  this.transform = normalizeMatchType;
2946
3273
  }
2947
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2948
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
3274
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3275
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchTypePipe, isStandalone: true, name: "etNormalizeMatchType" }); }
2949
3276
  }
2950
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
3277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: NormalizeMatchTypePipe, decorators: [{
2951
3278
  type: Pipe,
2952
3279
  args: [{ name: 'etNormalizeMatchType', standalone: true }]
2953
3280
  }] });
@@ -2961,10 +3288,10 @@ class ToArrayPipe {
2961
3288
  constructor() {
2962
3289
  this.transform = toArray;
2963
3290
  }
2964
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
2965
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
3291
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ToArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3292
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.2", ngImport: i0, type: ToArrayPipe, isStandalone: true, name: "toArray" }); }
2966
3293
  }
2967
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: ToArrayPipe, decorators: [{
3294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.2", ngImport: i0, type: ToArrayPipe, decorators: [{
2968
3295
  type: Pipe,
2969
3296
  args: [{ name: 'toArray', standalone: true }]
2970
3297
  }] });
@@ -3031,5 +3358,5 @@ const Validators = {
3031
3358
  * Generated bundle index. Do not edit.
3032
3359
  */
3033
3360
 
3034
- export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BehaviorSubjectWithSubscriberCount, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, fromNextFrame, getCookie, getDomain, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
3361
+ export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AnimatableDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BehaviorSubjectWithSubscriberCount, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DELAYABLE_TOKEN, DelayableDirective, ET_PROPERTY_REMOVED, FocusVisibleService, IS_ACTIVE_ELEMENT, IS_ARRAY_NOT_EMPTY, IS_EMAIL, IsActiveElementDirective, IsArrayNotEmpty, 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, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SelectionModel, SeoDirective, SmartBlockScrollStrategy, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createDestroy, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isElementVisible, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, routerDisableScrollTop, scrollToElement, setCookie, toArray, toArrayTrackByFn };
3035
3362
  //# sourceMappingURL=ethlete-core.mjs.map