@ethlete/core 5.0.0-next.4 → 5.0.0-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/core",
3
- "version": "5.0.0-next.4",
3
+ "version": "5.0.0-next.6",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { InjectionToken, AfterViewInit, Signal, ComponentRef, StaticProvider, EmbeddedViewRef, Provider, InjectOptions, TemplateRef, QueryList, InputSignal, InputSignalWithTransform, PipeTransform, TrackByFunction, ElementRef, WritableSignal, DestroyRef, Injector, RendererStyleFlags2, OnInit, OnDestroy } from '@angular/core';
2
+ import { InjectionToken, AfterViewInit, Signal, ComponentRef, StaticProvider, EmbeddedViewRef, ElementRef, Provider, InjectOptions, TemplateRef, QueryList, InputSignal, InputSignalWithTransform, PipeTransform, TrackByFunction, WritableSignal, DestroyRef, Injector, RendererStyleFlags2, OnInit, OnDestroy } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, BehaviorSubject, Subject } from 'rxjs';
5
5
  import * as _ethlete_core from '@ethlete/core';
@@ -335,6 +335,37 @@ declare class RepeatDirective {
335
335
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RepeatDirective, "[etRepeat]", never, { "repeatCount": { "alias": "etRepeat"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
336
336
  }
337
337
 
338
+ declare class ScrollObserverEndDirective {
339
+ private elementRef;
340
+ private host;
341
+ constructor();
342
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollObserverEndDirective, never>;
343
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScrollObserverEndDirective, "[etScrollObserverEnd]", never, {}, {}, never, never, true, never>;
344
+ }
345
+
346
+ declare class ScrollObserverStartDirective {
347
+ private elementRef;
348
+ private host;
349
+ constructor();
350
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollObserverStartDirective, never>;
351
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScrollObserverStartDirective, "[etScrollObserverStart]", never, {}, {}, never, never, true, never>;
352
+ }
353
+
354
+ declare class ScrollObserverDirective {
355
+ private elementRef;
356
+ enabled: _angular_core.ModelSignal<boolean>;
357
+ private _startEl;
358
+ private _endEl;
359
+ private _startIntersection;
360
+ private _endIntersection;
361
+ isAtStart: Signal<boolean>;
362
+ isAtEnd: Signal<boolean>;
363
+ _registerStart(el: ElementRef<HTMLElement>): void;
364
+ _registerEnd(el: ElementRef<HTMLElement>): void;
365
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollObserverDirective, never>;
366
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScrollObserverDirective, "[etScrollObserver]", ["etScrollObserver"], { "enabled": { "alias": "enabled"; "required": false; "isSignal": true; }; }, { "enabled": "enabledChange"; }, never, never, true, never>;
367
+ }
368
+
338
369
  declare const createComponentId: (prefix: string) => string;
339
370
 
340
371
  declare const createDestroy: () => rxjs.Observable<boolean>;
@@ -492,114 +523,6 @@ declare class RuntimeError<T extends number> extends Error {
492
523
  }
493
524
  declare function formatRuntimeError<T extends number>(code: T, message: null | false | string, devOnly: boolean): string;
494
525
 
495
- /**
496
- * Checks if an element or the viewport can scroll in a given direction.
497
- * @param element The element to check. If null/undefined, checks if the viewport can scroll.
498
- * @param direction The direction to check. If not provided, checks both directions.
499
- * @returns true if the element or viewport can scroll in the given direction.
500
- */
501
- declare const elementCanScroll: (element?: HTMLElement | null, direction?: "x" | "y") => boolean;
502
- type IsElementVisibleOptions = {
503
- /**
504
- * The element to check if it is visible inside a container.
505
- */
506
- element?: HTMLElement | null;
507
- /**
508
- * The container to check if the element is visible inside.
509
- * If null or undefined, uses the viewport as the container.
510
- * @default null (viewport)
511
- */
512
- container?: HTMLElement | null;
513
- /**
514
- * The container's rect to check if the element is visible inside. Can be supplied to reduce the amount of DOM reads.
515
- * Only used when container is provided and not null.
516
- * @default container.getBoundingClientRect()
517
- */
518
- containerRect?: DOMRect | null;
519
- /**
520
- * The element's rect. Can be supplied to reduce the amount of DOM reads.
521
- * @default element.getBoundingClientRect()
522
- */
523
- elementRect?: DOMRect | null;
524
- };
525
- type CurrentElementVisibility = {
526
- /**
527
- * Whether the element is visible in the inline direction.
528
- */
529
- inline: boolean;
530
- /**
531
- * Whether the element is visible in the block direction.
532
- */
533
- block: boolean;
534
- /**
535
- * The percentage of the element that is visible in the inline direction.
536
- */
537
- inlineIntersection: number;
538
- /**
539
- * The percentage of the element that is visible in the block direction.
540
- */
541
- blockIntersection: number;
542
- /**
543
- * Whether the element is intersecting the container.
544
- */
545
- isIntersecting: boolean;
546
- /**
547
- * The ratio of the element that is intersecting the container.
548
- */
549
- intersectionRatio: number;
550
- /**
551
- * The element that is being checked for visibility.
552
- */
553
- element: HTMLElement;
554
- /**
555
- * The container's rect used for the calculation.
556
- */
557
- containerRect: DOMRect;
558
- /**
559
- * The element's rect used for the calculation.
560
- */
561
- elementRect: DOMRect;
562
- };
563
- declare const isElementVisible: (options: IsElementVisibleOptions) => CurrentElementVisibility | null;
564
- declare const getElementScrollCoordinates: (options: ScrollToElementOptions) => ScrollToOptions;
565
- type ScrollToElementOptions = {
566
- /**
567
- * The element to scroll to.
568
- */
569
- element?: HTMLElement | null;
570
- /**
571
- * The scroll container to scroll to the element in.
572
- * Must be provided - cannot scroll the viewport programmatically with this function.
573
- */
574
- container?: HTMLElement | null;
575
- /**
576
- * The direction to scroll in.
577
- * @default 'both'
578
- */
579
- direction?: 'inline' | 'block' | 'both';
580
- /**
581
- * The origin of the element to scroll to.
582
- * @default 'nearest'
583
- */
584
- origin?: 'start' | 'end' | 'center' | 'nearest';
585
- /**
586
- * The scroll behavior.
587
- * @default 'smooth'
588
- */
589
- behavior?: ScrollBehavior;
590
- /**
591
- * The scroll inline-margin
592
- * @default 0
593
- */
594
- scrollInlineMargin?: number;
595
- /**
596
- * The scroll block-margin
597
- * @default 0
598
- */
599
- scrollBlockMargin?: number;
600
- };
601
- declare const scrollToElement: (options: ScrollToElementOptions) => void;
602
-
603
526
  declare class NormalizeGameResultTypePipe implements PipeTransform {
604
527
  transform: (type: string | null) => NormalizedGameResultType | null;
605
528
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NormalizeGameResultTypePipe, never>;
@@ -946,6 +869,7 @@ type ViewportConfig = {
946
869
  };
947
870
  };
948
871
  type Breakpoint = keyof ViewportConfig['breakpoints'];
872
+ declare const BREAKPOINT_ORDER: Breakpoint[];
949
873
  /**
950
874
  * Default viewport config based on Tailwind CSS.
951
875
  * @see https://tailwindcss.com/docs/screens
@@ -1132,6 +1056,163 @@ declare const injectRenderer: {
1132
1056
  };
1133
1057
  type AngularRenderer = NonNullable<ReturnType<typeof injectRenderer>>;
1134
1058
 
1059
+ interface ConsentHandler {
1060
+ /** Signal that is `true` when consent has been granted. */
1061
+ isGranted: Signal<boolean>;
1062
+ /** Grants consent and writes the decision back to the source. */
1063
+ grant: () => void;
1064
+ /** Revokes consent and writes the decision back to the source. */
1065
+ revoke?: () => void;
1066
+ }
1067
+ type CreateUserConsentProviderOptions = {
1068
+ /** The provider result returned by `createStaticProvider` that this consent provider should be associated with. */
1069
+ for: InjectionToken<ConsentHandler | null>;
1070
+ /**
1071
+ * Factory executed inside the injection context that returns a `Signal<boolean>`.
1072
+ *
1073
+ * @example
1074
+ * isGranted: () => inject(CookieService).hasMediaConsent
1075
+ */
1076
+ isGranted: () => Signal<boolean>;
1077
+ /**
1078
+ * Factory executed inside the injection context that returns the grant function.
1079
+ *
1080
+ * @example
1081
+ * grant: () => () => inject(CookieService).acceptAll()
1082
+ */
1083
+ grant: () => () => void;
1084
+ /**
1085
+ * Factory executed inside the injection context that returns the revoke function.
1086
+ *
1087
+ * @example
1088
+ * revoke : () => () => inject(CookieService).revokeAll()
1089
+ */
1090
+ revoke?: () => () => void;
1091
+ };
1092
+ declare const createUserConsentProvider: (options: CreateUserConsentProviderOptions) => Provider;
1093
+
1094
+ declare const elementCanScroll: (element?: HTMLElement | null, direction?: "x" | "y") => boolean;
1095
+ type IsElementVisibleOptions = {
1096
+ /**
1097
+ * The element to check if it is visible inside a container.
1098
+ */
1099
+ element?: HTMLElement | null;
1100
+ /**
1101
+ * The container to check if the element is visible inside.
1102
+ * If null or undefined, uses the viewport as the container.
1103
+ * @default null (viewport)
1104
+ */
1105
+ container?: HTMLElement | null;
1106
+ /**
1107
+ * The container's rect to check if the element is visible inside. Can be supplied to reduce the amount of DOM reads.
1108
+ * Only used when container is provided and not null.
1109
+ * @default container.getBoundingClientRect()
1110
+ */
1111
+ containerRect?: DOMRect | null;
1112
+ /**
1113
+ * The element's rect. Can be supplied to reduce the amount of DOM reads.
1114
+ * @default element.getBoundingClientRect()
1115
+ */
1116
+ elementRect?: DOMRect | null;
1117
+ };
1118
+ type CurrentElementVisibility = {
1119
+ /**
1120
+ * Whether the element is visible in the inline direction.
1121
+ */
1122
+ inline: boolean;
1123
+ /**
1124
+ * Whether the element is visible in the block direction.
1125
+ */
1126
+ block: boolean;
1127
+ /**
1128
+ * The percentage of the element that is visible in the inline direction.
1129
+ */
1130
+ inlineIntersection: number;
1131
+ /**
1132
+ * The percentage of the element that is visible in the block direction.
1133
+ */
1134
+ blockIntersection: number;
1135
+ /**
1136
+ * Whether the element is intersecting the container.
1137
+ */
1138
+ isIntersecting: boolean;
1139
+ /**
1140
+ * The ratio of the element that is intersecting the container.
1141
+ */
1142
+ intersectionRatio: number;
1143
+ /**
1144
+ * The element that is being checked for visibility.
1145
+ */
1146
+ element: HTMLElement;
1147
+ /**
1148
+ * The container's rect used for the calculation.
1149
+ */
1150
+ containerRect: DOMRect;
1151
+ /**
1152
+ * The element's rect used for the calculation.
1153
+ */
1154
+ elementRect: DOMRect;
1155
+ };
1156
+ declare const isElementVisible: (options: IsElementVisibleOptions) => CurrentElementVisibility | null;
1157
+ declare const getElementScrollCoordinates: (options: ScrollToElementOptions) => ScrollToOptions;
1158
+ type ScrollToElementOptions = {
1159
+ /**
1160
+ * The element to scroll to.
1161
+ */
1162
+ element?: HTMLElement | null;
1163
+ /**
1164
+ * The scroll container to scroll to the element in.
1165
+ * Must be provided - cannot scroll the viewport programmatically with this function.
1166
+ */
1167
+ container?: HTMLElement | null;
1168
+ /**
1169
+ * The direction to scroll in.
1170
+ * @default 'both'
1171
+ */
1172
+ direction?: 'inline' | 'block' | 'both';
1173
+ /**
1174
+ * The origin of the element to scroll to.
1175
+ * @default 'nearest'
1176
+ */
1177
+ origin?: 'start' | 'end' | 'center' | 'nearest';
1178
+ /**
1179
+ * The scroll behavior.
1180
+ * @default 'smooth'
1181
+ */
1182
+ behavior?: ScrollBehavior;
1183
+ /**
1184
+ * The scroll inline-margin
1185
+ * @default 0
1186
+ */
1187
+ scrollInlineMargin?: number;
1188
+ /**
1189
+ * The scroll block-margin
1190
+ * @default 0
1191
+ */
1192
+ scrollBlockMargin?: number;
1193
+ };
1194
+ declare const scrollToElement: (options: ScrollToElementOptions) => void;
1195
+
1196
+ type ScrollSnapOrigin = 'auto' | 'start' | 'center' | 'end';
1197
+ type ScrollSnapTarget = {
1198
+ /** The element to snap to. */
1199
+ element: HTMLElement;
1200
+ /** The resolved alignment to use when scrolling to the element. */
1201
+ origin: 'start' | 'center' | 'end';
1202
+ } | null;
1203
+ declare const getScrollSnapTarget: (items: HTMLElement[], container: HTMLElement, direction: "horizontal" | "vertical", origin: ScrollSnapOrigin, margin?: number) => ScrollSnapTarget;
1204
+ type ScrollContainerTarget = {
1205
+ element: HTMLElement;
1206
+ origin: 'start' | 'end';
1207
+ } | null;
1208
+ declare const getScrollContainerTarget: (entries: IntersectionObserverEntry[], direction: "start" | "end") => ScrollContainerTarget;
1209
+ type ScrollItemTarget = {
1210
+ element: HTMLElement;
1211
+ index: number;
1212
+ origin: 'start' | 'end' | 'center';
1213
+ } | null;
1214
+ declare const getScrollItemTarget: (entries: IntersectionObserverEntry[], container: HTMLElement, direction: "start" | "end", scrollOrigin: "auto" | "center" | "start" | "end", axisDirection: "horizontal" | "vertical") => ScrollItemTarget;
1215
+
1135
1216
  declare const previousSignalValue: <T>(signal: Signal<T>) => Signal<T | undefined>;
1136
1217
  type SyncSignalOptions = {
1137
1218
  /**
@@ -1236,6 +1317,50 @@ declare const easeOutBack: (t: number) => number;
1236
1317
  /** Back easing function with more overshoot */
1237
1318
  declare const easeOutBackStrong: (t: number) => number;
1238
1319
 
1320
+ type BreakpointMap<T> = Partial<Record<Breakpoint, T>>;
1321
+ type BreakpointInput<T> = T | BreakpointMap<T>;
1322
+ declare const breakpointTransformBase: <T, WriteT = BreakpointInput<T>>(coerce: (value: WriteT) => T) => ((value: WriteT) => T);
1323
+ /**
1324
+ * Transform factory for boolean inputs.
1325
+ * Coerces plain values with `booleanAttribute`; resolves {@link BreakpointMap} mobile-first.
1326
+ *
1327
+ * @example
1328
+ * snap = input(false, { transform: boolBreakpointTransform() });
1329
+ * // Template: `snap` | `[snap]="true"` | `[snap]="{ xs: false, md: true }"`
1330
+ */
1331
+ declare const boolBreakpointTransform: () => ((value: BreakpointInput<boolean> | string) => boolean);
1332
+ /**
1333
+ * Transform factory for number inputs.
1334
+ * Coerces plain values with `numberAttribute`; resolves {@link BreakpointMap} mobile-first.
1335
+ *
1336
+ * @example
1337
+ * scrollMargin = input(0, { transform: numberBreakpointTransform() });
1338
+ * // Template: `[scrollMargin]="16"` | `[scrollMargin]="{ xs: 0, md: 16 }"`
1339
+ */
1340
+ declare const numberBreakpointTransform: () => ((value: BreakpointInput<number> | string) => number);
1341
+ /**
1342
+ * Transform factory for any typed input (string unions, arrays, objects, etc.).
1343
+ * Passes plain values through as-is; resolves {@link BreakpointMap} mobile-first.
1344
+ * A value is treated as a {@link BreakpointMap} only when all its keys are valid breakpoint names.
1345
+ *
1346
+ * @example
1347
+ * itemSize = input('auto', { transform: typedBreakpointTransform<ScrollableItemSize>() });
1348
+ * tags = input([], { transform: typedBreakpointTransform<string[]>() });
1349
+ * // Template: `[itemSize]="'third'"` | `[itemSize]="{ xs: 'full', md: 'third' }"`
1350
+ */
1351
+ declare const typedBreakpointTransform: <T>() => ((value: BreakpointInput<T>) => T);
1352
+ type BoolBreakpointSignal = InputSignalWithTransform<boolean, BreakpointInput<boolean> | string>;
1353
+ type NumberBreakpointSignal = InputSignalWithTransform<number, BreakpointInput<number> | string>;
1354
+ type TypedBreakpointSignal<T> = InputSignalWithTransform<T, BreakpointInput<T>>;
1355
+ declare const injectBreakpointInput: <T>(inputSignal: Signal<BreakpointInput<T>>, defaultValue: T) => Signal<T>;
1356
+ declare const booleanBreakpointAttribute: (value: unknown) => BreakpointInput<boolean>;
1357
+ declare const numberBreakpointAttribute: (value: unknown) => BreakpointInput<number>;
1358
+ declare const BREAKPOINT_INSTANCE_TOKEN: InjectionToken<unknown>;
1359
+ declare const provideBreakpointInstance: (componentClass: unknown) => {
1360
+ provide: InjectionToken<unknown>;
1361
+ useExisting: unknown;
1362
+ };
1363
+
1239
1364
  type ControlValueSignalOptions = {
1240
1365
  debounceTime?: number;
1241
1366
  /**
@@ -2163,5 +2288,5 @@ declare const injectTitleStore: {
2163
2288
  };
2164
2289
  declare const applyHeadTitleBinding: (binding: MaybeSignal<string | number | null | undefined>, options?: Omit<TitlePart, "text">) => void;
2165
2290
 
2166
- export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BOUNDARY_ELEMENT_TOKEN, ClickOutsideDirective, DEFAULT_MULTI_INSTANCE_RELS, DEFAULT_MULTI_INSTANCE_TAGS, DEFAULT_VIEWPORT_CONFIG, DISABLE_LOGGER_PARAM, ET_DISABLE_SCROLL_TOP, ET_DISABLE_SCROLL_TOP_AS_RETURN_ROUTE, ET_DISABLE_SCROLL_TOP_ON_PATH_PARAM_CHANGE, ET_PROPERTY_REMOVED, FOCUS_VISIBLE_TRACKER_TOKEN, IS_ARRAY_NOT_EMPTY, IS_EMAIL, InferMimeTypePipe, IsArrayNotEmpty, IsEmail, jsonLd_d as JsonLD, KeyPressManager, MUST_MATCH, MatchStateType, MustMatch, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, PropsDirective, ProvideThemeDirective, RUNTIME_ERROR_NO_DATA, RepeatDirective, RuntimeError, SEO_DIRECTIVE_TOKEN, SeoDirective, StructuredDataComponent, THEME_PROVIDER, ToArrayPipe, TypedQueryList, ValidateAtLeastOneRequired, Validators, applyAlternateBinding, applyAlternateLanguagesBindings, applyArticleBindings, applyAuthorBinding, applyCanonicalBinding, applyDescriptionBinding, applyHeadBinding, applyHeadTitleBinding, applyHostListener, applyHostListeners, applyKeywordsBinding, applyLinkBinding, applyMetaBinding, applyNextBinding, applyOgBinding, applyOpenGraphBindings, applyPrevBinding, applyResourceHintsBindings, applyRobotsBinding, applySocialMediaBindings, applyStructuredDataBinding, applyTwitterCardBindings, areScrollStatesEqual, bindProps, boundingClientRectToElementRect, buildElementSignal, buildSignalEffects, clamp, clone, cloneFormGroup, computedTillFalsy, computedTillTruthy, controlValueSignal, controlValueSignalWithPrevious, createArrayPropertyBinding, createBulkPropertyBinding, createCanAnimateSignal, createComponentId, createCssThemeName, createDependencyStash, createDestroy, createDocumentElementSignal, createElementDictionary, createElementDimensions, createEmptyElementSignal, createFlipAnimation, createFlipAnimationGroup, createHostProps, createIsRenderedSignal, createLogger, createPropHandlers, createPropertyBinding, createProps, createProvider, createRootProvider, createRootThemeCss, createRxHostListener, createSetup, createStaticProvider, createStaticRootProvider, createSwatchCss, createTailwindColorThemes, createTailwindCssVar, createTailwindRgbVar, createThemeStyle, deferredSignal, deleteCookie, easeElastic, easeIn, easeInOut, easeLinear, easeOut, easeOutBack, easeOutBackStrong, elementCanScroll, equal, firstElementSignal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, getObjectProperty, hasCookie, inferMimeType, injectAngularRootElement, injectBoundaryElement, injectBreakpointIsMatched, injectBreakpointObserver, injectCanHover, injectColorThemes, injectCurrentBreakpoint, injectDeviceInputType, injectDisplayOrientation, injectFocusVisibleTracker, injectFragment, injectHasPrecisionInput, injectHasTouchInput, injectHostElement, injectIs2Xl, injectIsLandscape, injectIsLg, injectIsMd, injectIsPortrait, injectIsRouterInitialized, injectIsSm, injectIsXl, injectIsXs, injectLinkStore, injectLinkStoreConfig, injectLocale, injectMediaQueryIsMatched, injectMetaConfig, injectMetaStore, injectObserveBreakpoint, injectObserveMediaQuery, injectPathParam, injectPathParamChanges, injectPathParams, injectQueryParam, injectQueryParamChanges, injectQueryParams, injectRenderer, injectRoute, injectRouteData, injectRouteDataItem, injectRouteTitle, injectRouterEvent, injectRouterState, injectScrollbarDimensions, injectStructuredDataConfig, injectStructuredDataStore, injectTemplateRef, injectThemesPrefix, injectTitleConfig, injectTitleStore, injectUrl, injectViewportConfig, injectViewportDimensions, isArray, isElementSignal, isElementVisible, isGroupMatch, isKnockoutMatch, isObject, maybeSignalValue, memoizeSignal, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, previousSignalValue, provideBoundaryElement, provideBreakpointObserver, provideColorThemes, provideColorThemesWithTailwind4, provideFocusVisibleTracker, provideLinkStore, provideLinkStoreConfig, provideLocale, provideMetaConfig, provideMetaStore, provideRenderer, provideStructuredDataConfig, provideStructuredDataStore, provideTitleConfig, provideTitleStore, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, setInputSignal, setupScrollRestoration, signalAnimatedNumber, signalAttributes, signalClasses, signalElementChildren, signalElementDimensions, signalElementIntersection, signalElementLastScrollDirection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementLastScrollDirection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, switchQueryListChanges, syncSignal, templateComputed, toArray, toArrayTrackByFn, toStringBinding, transformOrReturn, unbindProps, useCursorDragScroll, writeScrollbarSizeToCssVariables, writeViewportSizeToCssVariables, ɵProvideColorThemes, ɵProvideThemesPrefix };
2167
- export type { AlternateLanguagesConfig, AlternateLink, AngularRenderer, AnimatedLifecycleState, AnimatedNumberSignal, AnimatedOverlayComponentBase, AnimatedOverlayMountConfig, AnimatedOverlayState, AnimationEndEvent, AnyTemplateType, ArticleConfig, BindPropsOptions, Breakpoint, BuildMediaQueryOptions, BuildSignalEffectsConfig, ComponentTemplate, ComponentTypeWithInputs, ControlValueSignalOptions, CreateLoggerConfig, CreatePropsOptions, CreateProviderOptions, CurrentElementVisibility, CursorDragScrollDirection, CursorDragScrollOptions, ElementDimensions, ElementLastScrollDirection, ElementLastScrollDirectionType, ElementRect, ElementScrollState, ElementSignal, ElementSignalValue, ElementSize, FacebookCard, FlipAnimationConfig, HeadBinding, HostProps, InjectQueryParamConfig, InjectUtilConfig, InjectUtilTransformConfig, IntersectionObserverEntryWithDetails, IsElementVisibleOptions, LinkConfig, LinkStoreConfig, LogicalSize, MaybeObservable, MaybeSignal, MetaConfig, MetaTagConfig, NgClassType, NgTemplateTemplate, NormalizedGameResultType, NormalizedMatchParticipant, NormalizedMatchParticipants, NormalizedMatchScore, NullableElementDimensions, OnThemeColorMap, OpenGraph, OpenGraphConfig, PropHandlers, Props, PropsAttachedElements, PropsAttachedElementsInternal, PropsInternal, ProviderResult, ResourceHintsConfig, RobotsConfig, RootProviderResult, RouterDisableScrollTopConfig, RouterState, ScrollToElementOptions, SeoConfig, SetupScrollRestorationConfig, SignalAnimatedNumberOptions, SignalElementBindingComplexType, SignalElementBindingType, SignalElementIntersectionOptions, SignalElementScrollStateOptions, SocialMediaConfig, StaticProviderResult, StringTemplate, StructuredDataConfig, SyncSignalOptions, TemplateRefWithContext, Theme, ThemeColor, ThemeColorMap, ThemeHSLColor, ThemeRGBColor, ThemeSwatch, TitleConfig, TitlePart, Translatable, TwitterCard, TwitterCardConfig, UnbindPropsOptions, ValidateAtLeastOneRequiredConfig, Vec2, ViewportConfig };
2291
+ export { ANIMATABLE_TOKEN, ANIMATED_IF_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AT_LEAST_ONE_REQUIRED, AnimatableDirective, AnimatedIfDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, BOUNDARY_ELEMENT_TOKEN, BREAKPOINT_INSTANCE_TOKEN, BREAKPOINT_ORDER, ClickOutsideDirective, DEFAULT_MULTI_INSTANCE_RELS, DEFAULT_MULTI_INSTANCE_TAGS, DEFAULT_VIEWPORT_CONFIG, DISABLE_LOGGER_PARAM, ET_DISABLE_SCROLL_TOP, ET_DISABLE_SCROLL_TOP_AS_RETURN_ROUTE, ET_DISABLE_SCROLL_TOP_ON_PATH_PARAM_CHANGE, ET_PROPERTY_REMOVED, FOCUS_VISIBLE_TRACKER_TOKEN, IS_ARRAY_NOT_EMPTY, IS_EMAIL, InferMimeTypePipe, IsArrayNotEmpty, IsEmail, jsonLd_d as JsonLD, KeyPressManager, MUST_MATCH, MatchStateType, MustMatch, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, PropsDirective, ProvideThemeDirective, RUNTIME_ERROR_NO_DATA, RepeatDirective, RuntimeError, SEO_DIRECTIVE_TOKEN, ScrollObserverDirective, ScrollObserverEndDirective, ScrollObserverStartDirective, SeoDirective, StructuredDataComponent, THEME_PROVIDER, ToArrayPipe, TypedQueryList, ValidateAtLeastOneRequired, Validators, applyAlternateBinding, applyAlternateLanguagesBindings, applyArticleBindings, applyAuthorBinding, applyCanonicalBinding, applyDescriptionBinding, applyHeadBinding, applyHeadTitleBinding, applyHostListener, applyHostListeners, applyKeywordsBinding, applyLinkBinding, applyMetaBinding, applyNextBinding, applyOgBinding, applyOpenGraphBindings, applyPrevBinding, applyResourceHintsBindings, applyRobotsBinding, applySocialMediaBindings, applyStructuredDataBinding, applyTwitterCardBindings, areScrollStatesEqual, bindProps, boolBreakpointTransform, booleanBreakpointAttribute, boundingClientRectToElementRect, breakpointTransformBase, buildElementSignal, buildSignalEffects, clamp, clone, cloneFormGroup, computedTillFalsy, computedTillTruthy, controlValueSignal, controlValueSignalWithPrevious, createArrayPropertyBinding, createBulkPropertyBinding, createCanAnimateSignal, createComponentId, createCssThemeName, createDependencyStash, createDestroy, createDocumentElementSignal, createElementDictionary, createElementDimensions, createEmptyElementSignal, createFlipAnimation, createFlipAnimationGroup, createHostProps, createIsRenderedSignal, createLogger, createPropHandlers, createPropertyBinding, createProps, createProvider, createRootProvider, createRootThemeCss, createRxHostListener, createSetup, createStaticProvider, createStaticRootProvider, createSwatchCss, createTailwindColorThemes, createTailwindCssVar, createTailwindRgbVar, createThemeStyle, createUserConsentProvider, deferredSignal, deleteCookie, easeElastic, easeIn, easeInOut, easeLinear, easeOut, easeOutBack, easeOutBackStrong, elementCanScroll, equal, firstElementSignal, forceReflow, formatRuntimeError, fromNextFrame, getCookie, getDomain, getElementScrollCoordinates, getFormGroupValue, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, getObjectProperty, getScrollContainerTarget, getScrollItemTarget, getScrollSnapTarget, hasCookie, inferMimeType, injectAngularRootElement, injectBoundaryElement, injectBreakpointInput, injectBreakpointIsMatched, injectBreakpointObserver, injectCanHover, injectColorThemes, injectCurrentBreakpoint, injectDeviceInputType, injectDisplayOrientation, injectFocusVisibleTracker, injectFragment, injectHasPrecisionInput, injectHasTouchInput, injectHostElement, injectIs2Xl, injectIsLandscape, injectIsLg, injectIsMd, injectIsPortrait, injectIsRouterInitialized, injectIsSm, injectIsXl, injectIsXs, injectLinkStore, injectLinkStoreConfig, injectLocale, injectMediaQueryIsMatched, injectMetaConfig, injectMetaStore, injectObserveBreakpoint, injectObserveMediaQuery, injectPathParam, injectPathParamChanges, injectPathParams, injectQueryParam, injectQueryParamChanges, injectQueryParams, injectRenderer, injectRoute, injectRouteData, injectRouteDataItem, injectRouteTitle, injectRouterEvent, injectRouterState, injectScrollbarDimensions, injectStructuredDataConfig, injectStructuredDataStore, injectTemplateRef, injectThemesPrefix, injectTitleConfig, injectTitleStore, injectUrl, injectViewportConfig, injectViewportDimensions, isArray, isElementSignal, isElementVisible, isGroupMatch, isKnockoutMatch, isObject, maybeSignalValue, memoizeSignal, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, numberBreakpointAttribute, numberBreakpointTransform, previousSignalValue, provideBoundaryElement, provideBreakpointInstance, provideBreakpointObserver, provideColorThemes, provideColorThemesWithTailwind4, provideFocusVisibleTracker, provideLinkStore, provideLinkStoreConfig, provideLocale, provideMetaConfig, provideMetaStore, provideRenderer, provideStructuredDataConfig, provideStructuredDataStore, provideTitleConfig, provideTitleStore, provideViewportConfig, round, routerDisableScrollTop, scrollToElement, setCookie, setInputSignal, setupScrollRestoration, signalAnimatedNumber, signalAttributes, signalClasses, signalElementChildren, signalElementDimensions, signalElementIntersection, signalElementLastScrollDirection, signalElementMutations, signalElementScrollState, signalHostAttributes, signalHostClasses, signalHostElementDimensions, signalHostElementIntersection, signalHostElementLastScrollDirection, signalHostElementMutations, signalHostElementScrollState, signalHostStyles, signalIsRendered, signalStyles, switchQueryListChanges, syncSignal, templateComputed, toArray, toArrayTrackByFn, toStringBinding, transformOrReturn, typedBreakpointTransform, unbindProps, useCursorDragScroll, writeScrollbarSizeToCssVariables, writeViewportSizeToCssVariables, ɵProvideColorThemes, ɵProvideThemesPrefix };
2292
+ export type { AlternateLanguagesConfig, AlternateLink, AngularRenderer, AnimatedLifecycleState, AnimatedNumberSignal, AnimatedOverlayComponentBase, AnimatedOverlayMountConfig, AnimatedOverlayState, AnimationEndEvent, AnyTemplateType, ArticleConfig, BindPropsOptions, BoolBreakpointSignal, Breakpoint, BreakpointInput, BreakpointMap, BuildMediaQueryOptions, BuildSignalEffectsConfig, ComponentTemplate, ComponentTypeWithInputs, ConsentHandler, ControlValueSignalOptions, CreateLoggerConfig, CreatePropsOptions, CreateProviderOptions, CreateUserConsentProviderOptions, CurrentElementVisibility, CursorDragScrollDirection, CursorDragScrollOptions, ElementDimensions, ElementLastScrollDirection, ElementLastScrollDirectionType, ElementRect, ElementScrollState, ElementSignal, ElementSignalValue, ElementSize, FacebookCard, FlipAnimationConfig, HeadBinding, HostProps, InjectQueryParamConfig, InjectUtilConfig, InjectUtilTransformConfig, IntersectionObserverEntryWithDetails, IsElementVisibleOptions, LinkConfig, LinkStoreConfig, LogicalSize, MaybeObservable, MaybeSignal, MetaConfig, MetaTagConfig, NgClassType, NgTemplateTemplate, NormalizedGameResultType, NormalizedMatchParticipant, NormalizedMatchParticipants, NormalizedMatchScore, NullableElementDimensions, NumberBreakpointSignal, OnThemeColorMap, OpenGraph, OpenGraphConfig, PropHandlers, Props, PropsAttachedElements, PropsAttachedElementsInternal, PropsInternal, ProviderResult, ResourceHintsConfig, RobotsConfig, RootProviderResult, RouterDisableScrollTopConfig, RouterState, ScrollContainerTarget, ScrollItemTarget, ScrollSnapOrigin, ScrollSnapTarget, ScrollToElementOptions, SeoConfig, SetupScrollRestorationConfig, SignalAnimatedNumberOptions, SignalElementBindingComplexType, SignalElementBindingType, SignalElementIntersectionOptions, SignalElementScrollStateOptions, SocialMediaConfig, StaticProviderResult, StringTemplate, StructuredDataConfig, SyncSignalOptions, TemplateRefWithContext, Theme, ThemeColor, ThemeColorMap, ThemeHSLColor, ThemeRGBColor, ThemeSwatch, TitleConfig, TitlePart, Translatable, TwitterCard, TwitterCardConfig, TypedBreakpointSignal, UnbindPropsOptions, ValidateAtLeastOneRequiredConfig, Vec2, ViewportConfig };