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

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.5",
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,128 @@ declare const injectRenderer: {
1132
1056
  };
1133
1057
  type AngularRenderer = NonNullable<ReturnType<typeof injectRenderer>>;
1134
1058
 
1059
+ declare const elementCanScroll: (element?: HTMLElement | null, direction?: "x" | "y") => boolean;
1060
+ type IsElementVisibleOptions = {
1061
+ /**
1062
+ * The element to check if it is visible inside a container.
1063
+ */
1064
+ element?: HTMLElement | null;
1065
+ /**
1066
+ * The container to check if the element is visible inside.
1067
+ * If null or undefined, uses the viewport as the container.
1068
+ * @default null (viewport)
1069
+ */
1070
+ container?: HTMLElement | null;
1071
+ /**
1072
+ * The container's rect to check if the element is visible inside. Can be supplied to reduce the amount of DOM reads.
1073
+ * Only used when container is provided and not null.
1074
+ * @default container.getBoundingClientRect()
1075
+ */
1076
+ containerRect?: DOMRect | null;
1077
+ /**
1078
+ * The element's rect. Can be supplied to reduce the amount of DOM reads.
1079
+ * @default element.getBoundingClientRect()
1080
+ */
1081
+ elementRect?: DOMRect | null;
1082
+ };
1083
+ type CurrentElementVisibility = {
1084
+ /**
1085
+ * Whether the element is visible in the inline direction.
1086
+ */
1087
+ inline: boolean;
1088
+ /**
1089
+ * Whether the element is visible in the block direction.
1090
+ */
1091
+ block: boolean;
1092
+ /**
1093
+ * The percentage of the element that is visible in the inline direction.
1094
+ */
1095
+ inlineIntersection: number;
1096
+ /**
1097
+ * The percentage of the element that is visible in the block direction.
1098
+ */
1099
+ blockIntersection: number;
1100
+ /**
1101
+ * Whether the element is intersecting the container.
1102
+ */
1103
+ isIntersecting: boolean;
1104
+ /**
1105
+ * The ratio of the element that is intersecting the container.
1106
+ */
1107
+ intersectionRatio: number;
1108
+ /**
1109
+ * The element that is being checked for visibility.
1110
+ */
1111
+ element: HTMLElement;
1112
+ /**
1113
+ * The container's rect used for the calculation.
1114
+ */
1115
+ containerRect: DOMRect;
1116
+ /**
1117
+ * The element's rect used for the calculation.
1118
+ */
1119
+ elementRect: DOMRect;
1120
+ };
1121
+ declare const isElementVisible: (options: IsElementVisibleOptions) => CurrentElementVisibility | null;
1122
+ declare const getElementScrollCoordinates: (options: ScrollToElementOptions) => ScrollToOptions;
1123
+ type ScrollToElementOptions = {
1124
+ /**
1125
+ * The element to scroll to.
1126
+ */
1127
+ element?: HTMLElement | null;
1128
+ /**
1129
+ * The scroll container to scroll to the element in.
1130
+ * Must be provided - cannot scroll the viewport programmatically with this function.
1131
+ */
1132
+ container?: HTMLElement | null;
1133
+ /**
1134
+ * The direction to scroll in.
1135
+ * @default 'both'
1136
+ */
1137
+ direction?: 'inline' | 'block' | 'both';
1138
+ /**
1139
+ * The origin of the element to scroll to.
1140
+ * @default 'nearest'
1141
+ */
1142
+ origin?: 'start' | 'end' | 'center' | 'nearest';
1143
+ /**
1144
+ * The scroll behavior.
1145
+ * @default 'smooth'
1146
+ */
1147
+ behavior?: ScrollBehavior;
1148
+ /**
1149
+ * The scroll inline-margin
1150
+ * @default 0
1151
+ */
1152
+ scrollInlineMargin?: number;
1153
+ /**
1154
+ * The scroll block-margin
1155
+ * @default 0
1156
+ */
1157
+ scrollBlockMargin?: number;
1158
+ };
1159
+ declare const scrollToElement: (options: ScrollToElementOptions) => void;
1160
+
1161
+ type ScrollSnapOrigin = 'auto' | 'start' | 'center' | 'end';
1162
+ type ScrollSnapTarget = {
1163
+ /** The element to snap to. */
1164
+ element: HTMLElement;
1165
+ /** The resolved alignment to use when scrolling to the element. */
1166
+ origin: 'start' | 'center' | 'end';
1167
+ } | null;
1168
+ declare const getScrollSnapTarget: (items: HTMLElement[], container: HTMLElement, direction: "horizontal" | "vertical", origin: ScrollSnapOrigin, margin?: number) => ScrollSnapTarget;
1169
+ type ScrollContainerTarget = {
1170
+ element: HTMLElement;
1171
+ origin: 'start' | 'end';
1172
+ } | null;
1173
+ declare const getScrollContainerTarget: (entries: IntersectionObserverEntry[], direction: "start" | "end") => ScrollContainerTarget;
1174
+ type ScrollItemTarget = {
1175
+ element: HTMLElement;
1176
+ index: number;
1177
+ origin: 'start' | 'end' | 'center';
1178
+ } | null;
1179
+ declare const getScrollItemTarget: (entries: IntersectionObserverEntry[], container: HTMLElement, direction: "start" | "end", scrollOrigin: "auto" | "center" | "start" | "end", axisDirection: "horizontal" | "vertical") => ScrollItemTarget;
1180
+
1135
1181
  declare const previousSignalValue: <T>(signal: Signal<T>) => Signal<T | undefined>;
1136
1182
  type SyncSignalOptions = {
1137
1183
  /**
@@ -1236,6 +1282,50 @@ declare const easeOutBack: (t: number) => number;
1236
1282
  /** Back easing function with more overshoot */
1237
1283
  declare const easeOutBackStrong: (t: number) => number;
1238
1284
 
1285
+ type BreakpointMap<T> = Partial<Record<Breakpoint, T>>;
1286
+ type BreakpointInput<T> = T | BreakpointMap<T>;
1287
+ declare const breakpointTransformBase: <T, WriteT = BreakpointInput<T>>(coerce: (value: WriteT) => T) => ((value: WriteT) => T);
1288
+ /**
1289
+ * Transform factory for boolean inputs.
1290
+ * Coerces plain values with `booleanAttribute`; resolves {@link BreakpointMap} mobile-first.
1291
+ *
1292
+ * @example
1293
+ * snap = input(false, { transform: boolBreakpointTransform() });
1294
+ * // Template: `snap` | `[snap]="true"` | `[snap]="{ xs: false, md: true }"`
1295
+ */
1296
+ declare const boolBreakpointTransform: () => ((value: BreakpointInput<boolean> | string) => boolean);
1297
+ /**
1298
+ * Transform factory for number inputs.
1299
+ * Coerces plain values with `numberAttribute`; resolves {@link BreakpointMap} mobile-first.
1300
+ *
1301
+ * @example
1302
+ * scrollMargin = input(0, { transform: numberBreakpointTransform() });
1303
+ * // Template: `[scrollMargin]="16"` | `[scrollMargin]="{ xs: 0, md: 16 }"`
1304
+ */
1305
+ declare const numberBreakpointTransform: () => ((value: BreakpointInput<number> | string) => number);
1306
+ /**
1307
+ * Transform factory for any typed input (string unions, arrays, objects, etc.).
1308
+ * Passes plain values through as-is; resolves {@link BreakpointMap} mobile-first.
1309
+ * A value is treated as a {@link BreakpointMap} only when all its keys are valid breakpoint names.
1310
+ *
1311
+ * @example
1312
+ * itemSize = input('auto', { transform: typedBreakpointTransform<ScrollableItemSize>() });
1313
+ * tags = input([], { transform: typedBreakpointTransform<string[]>() });
1314
+ * // Template: `[itemSize]="'third'"` | `[itemSize]="{ xs: 'full', md: 'third' }"`
1315
+ */
1316
+ declare const typedBreakpointTransform: <T>() => ((value: BreakpointInput<T>) => T);
1317
+ type BoolBreakpointSignal = InputSignalWithTransform<boolean, BreakpointInput<boolean> | string>;
1318
+ type NumberBreakpointSignal = InputSignalWithTransform<number, BreakpointInput<number> | string>;
1319
+ type TypedBreakpointSignal<T> = InputSignalWithTransform<T, BreakpointInput<T>>;
1320
+ declare const injectBreakpointInput: <T>(inputSignal: Signal<BreakpointInput<T>>, defaultValue: T) => Signal<T>;
1321
+ declare const booleanBreakpointAttribute: (value: unknown) => BreakpointInput<boolean>;
1322
+ declare const numberBreakpointAttribute: (value: unknown) => BreakpointInput<number>;
1323
+ declare const BREAKPOINT_INSTANCE_TOKEN: InjectionToken<unknown>;
1324
+ declare const provideBreakpointInstance: (componentClass: unknown) => {
1325
+ provide: InjectionToken<unknown>;
1326
+ useExisting: unknown;
1327
+ };
1328
+
1239
1329
  type ControlValueSignalOptions = {
1240
1330
  debounceTime?: number;
1241
1331
  /**
@@ -2163,5 +2253,5 @@ declare const injectTitleStore: {
2163
2253
  };
2164
2254
  declare const applyHeadTitleBinding: (binding: MaybeSignal<string | number | null | undefined>, options?: Omit<TitlePart, "text">) => void;
2165
2255
 
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 };
2256
+ 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, 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 };
2257
+ export type { AlternateLanguagesConfig, AlternateLink, AngularRenderer, AnimatedLifecycleState, AnimatedNumberSignal, AnimatedOverlayComponentBase, AnimatedOverlayMountConfig, AnimatedOverlayState, AnimationEndEvent, AnyTemplateType, ArticleConfig, BindPropsOptions, BoolBreakpointSignal, Breakpoint, BreakpointInput, BreakpointMap, 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, 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 };