@ethlete/cdk 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/CHANGELOG.md +18 -0
- package/fesm2022/ethlete-cdk.mjs +134 -412
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ethlete-cdk.d.ts +34 -84
package/package.json
CHANGED
package/types/ethlete-cdk.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { AnimationTriggerMetadata, AnimationEvent } from '@angular/animations';
|
|
|
9
9
|
import { MatchListView, RoundStageStructureView, RoundStageStructureWithMatchesView, MatchListViewUnion, RoundType } from '@ethlete/types';
|
|
10
10
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
11
11
|
import * as _ethlete_core from '@ethlete/core';
|
|
12
|
-
import { IntersectionObserverEntryWithDetails, TypedQueryList, AnimatedOverlayComponentBase, ClickOutsideDirective, ProvideThemeDirective, AnimatedLifecycleDirective, NgClassType, AnimatedOverlayDirective,
|
|
12
|
+
import { IntersectionObserverEntryWithDetails, TypedQueryList, AnimatedOverlayComponentBase, ClickOutsideDirective, ProvideThemeDirective, AnimatedLifecycleDirective, NgClassType, AnimatedOverlayDirective, ScrollObserverDirective, Breakpoint, AngularRenderer, AnimatedLifecycleState, ScrollToElementOptions } from '@ethlete/core';
|
|
13
13
|
import { OffsetOptions, Placement, Padding } from '@floating-ui/dom';
|
|
14
14
|
import * as _ethlete_query from '@ethlete/query';
|
|
15
15
|
import { AnyV2Query, AnyLegacyQuery, AnyQueryCollection, EmptyObject, V2QueryState, QueryResponseOf, RequestError, SortDirection, Sort } from '@ethlete/query';
|
|
@@ -4292,6 +4292,7 @@ declare class CarouselDirective {
|
|
|
4292
4292
|
autoPlayTime: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4293
4293
|
pauseAutoPlayOnHover: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4294
4294
|
pauseAutoPlayOnFocus: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4295
|
+
pauseAutoPlayOnHidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4295
4296
|
transitionType: _angular_core.InputSignal<"mask-slide">;
|
|
4296
4297
|
transitionDuration: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4297
4298
|
activeIndex: _angular_core.WritableSignal<number>;
|
|
@@ -4301,6 +4302,8 @@ declare class CarouselDirective {
|
|
|
4301
4302
|
isAutoPlayPaused: _angular_core.WritableSignal<boolean>;
|
|
4302
4303
|
isAutoPlayPausedByInternalHover: _angular_core.WritableSignal<boolean>;
|
|
4303
4304
|
isAutoPlayPausedByInternalFocus: _angular_core.WritableSignal<boolean>;
|
|
4305
|
+
isAutoPlayPausedByInternalVisibility: _angular_core.WritableSignal<boolean>;
|
|
4306
|
+
private hostElementIntersection;
|
|
4304
4307
|
isNavigationLocked: _angular_core.Signal<boolean>;
|
|
4305
4308
|
items: _angular_core.Signal<readonly _ethlete_cdk.CarouselItemDirective[]>;
|
|
4306
4309
|
activeItem: _angular_core.Signal<_ethlete_cdk.CarouselItemDirective | null>;
|
|
@@ -4337,7 +4340,7 @@ declare class CarouselDirective {
|
|
|
4337
4340
|
stopAutoPlay(): void;
|
|
4338
4341
|
resumeAutoPlay(): void;
|
|
4339
4342
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CarouselDirective, never>;
|
|
4340
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CarouselDirective, never, never, { "loop": { "alias": "loop"; "required": false; "isSignal": true; }; "autoPlay": { "alias": "autoPlay"; "required": false; "isSignal": true; }; "autoPlayTime": { "alias": "autoPlayTime"; "required": false; "isSignal": true; }; "pauseAutoPlayOnHover": { "alias": "pauseAutoPlayOnHover"; "required": false; "isSignal": true; }; "pauseAutoPlayOnFocus": { "alias": "pauseAutoPlayOnFocus"; "required": false; "isSignal": true; }; "transitionType": { "alias": "transitionType"; "required": false; "isSignal": true; }; "transitionDuration": { "alias": "transitionDuration"; "required": false; "isSignal": true; }; }, {}, ["items"], never, true, never>;
|
|
4343
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CarouselDirective, never, never, { "loop": { "alias": "loop"; "required": false; "isSignal": true; }; "autoPlay": { "alias": "autoPlay"; "required": false; "isSignal": true; }; "autoPlayTime": { "alias": "autoPlayTime"; "required": false; "isSignal": true; }; "pauseAutoPlayOnHover": { "alias": "pauseAutoPlayOnHover"; "required": false; "isSignal": true; }; "pauseAutoPlayOnFocus": { "alias": "pauseAutoPlayOnFocus"; "required": false; "isSignal": true; }; "pauseAutoPlayOnHidden": { "alias": "pauseAutoPlayOnHidden"; "required": false; "isSignal": true; }; "transitionType": { "alias": "transitionType"; "required": false; "isSignal": true; }; "transitionDuration": { "alias": "transitionDuration"; "required": false; "isSignal": true; }; }, {}, ["items"], never, true, never>;
|
|
4341
4344
|
}
|
|
4342
4345
|
|
|
4343
4346
|
declare class CarouselComponent {
|
|
@@ -4345,7 +4348,7 @@ declare class CarouselComponent {
|
|
|
4345
4348
|
carouselItemsWrapper: _angular_core.Signal<ElementRef<HTMLElement>>;
|
|
4346
4349
|
constructor();
|
|
4347
4350
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CarouselComponent, never>;
|
|
4348
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselComponent, "et-carousel", never, {}, {}, never, ["et-carousel-item, [etCarouselItem]", "*"], true, [{ directive: typeof CarouselDirective; inputs: { "loop": "loop"; "autoPlay": "autoPlay"; "autoPlayTime": "autoPlayTime"; "pauseAutoPlayOnHover": "pauseAutoPlayOnHover"; "pauseAutoPlayOnFocus": "pauseAutoPlayOnFocus"; "transitionType": "transitionType"; "transitionDuration": "transitionDuration"; }; outputs: {}; }]>;
|
|
4351
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselComponent, "et-carousel", never, {}, {}, never, ["et-carousel-item, [etCarouselItem]", "*"], true, [{ directive: typeof CarouselDirective; inputs: { "loop": "loop"; "autoPlay": "autoPlay"; "autoPlayTime": "autoPlayTime"; "pauseAutoPlayOnHover": "pauseAutoPlayOnHover"; "pauseAutoPlayOnFocus": "pauseAutoPlayOnFocus"; "pauseAutoPlayOnHidden": "pauseAutoPlayOnHidden"; "transitionType": "transitionType"; "transitionDuration": "transitionDuration"; }; outputs: {}; }]>;
|
|
4349
4352
|
}
|
|
4350
4353
|
|
|
4351
4354
|
declare const CAROUSEL_ITEM_NAV_TOKEN: InjectionToken<CarouselItemNavDirective>;
|
|
@@ -6657,16 +6660,11 @@ declare class OverlayBodyComponent implements OnInit {
|
|
|
6657
6660
|
private overlayRef;
|
|
6658
6661
|
private elementRef;
|
|
6659
6662
|
private overlayManager;
|
|
6663
|
+
scrollObserver: ScrollObserverDirective;
|
|
6660
6664
|
dividers: _angular_core.InputSignal<OverlayBodyDividerType>;
|
|
6661
|
-
firstElement: _angular_core.Signal<ElementRef<HTMLElement> | null | undefined>;
|
|
6662
|
-
lastElement: _angular_core.Signal<ElementRef<HTMLElement> | null | undefined>;
|
|
6663
6665
|
dividersEnabled: _angular_core.Signal<boolean>;
|
|
6664
6666
|
dynamicDividersEnabled: _angular_core.Signal<boolean>;
|
|
6665
6667
|
containerScrollState: _angular_core.Signal<_ethlete_core.ElementScrollState>;
|
|
6666
|
-
firstElementIntersection: _angular_core.Signal<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
6667
|
-
firstElementVisibility: _angular_core.WritableSignal<CurrentElementVisibility | null>;
|
|
6668
|
-
lastElementIntersection: _angular_core.Signal<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
6669
|
-
lastElementVisibility: _angular_core.WritableSignal<CurrentElementVisibility | null>;
|
|
6670
6668
|
canScroll: _angular_core.Signal<boolean>;
|
|
6671
6669
|
isAtStart: _angular_core.Signal<boolean>;
|
|
6672
6670
|
isAtEnd: _angular_core.Signal<boolean>;
|
|
@@ -6682,7 +6680,7 @@ declare class OverlayBodyComponent implements OnInit {
|
|
|
6682
6680
|
ngOnInit(): void;
|
|
6683
6681
|
scrollToTop(behavior?: ScrollBehavior): void;
|
|
6684
6682
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayBodyComponent, never>;
|
|
6685
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlayBodyComponent, "[et-overlay-body], et-overlay-body", never, { "dividers": { "alias": "dividers"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true,
|
|
6683
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlayBodyComponent, "[et-overlay-body], et-overlay-body", never, { "dividers": { "alias": "dividers"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof _ethlete_core.ScrollObserverDirective; inputs: {}; outputs: {}; }]>;
|
|
6686
6684
|
}
|
|
6687
6685
|
|
|
6688
6686
|
declare class OverlayCloseDirective implements OnInit {
|
|
@@ -8325,48 +8323,45 @@ type ScrollableNavigationItem = {
|
|
|
8325
8323
|
activeOffset: number;
|
|
8326
8324
|
element: HTMLElement;
|
|
8327
8325
|
};
|
|
8326
|
+
type ScrollableNavigation = {
|
|
8327
|
+
items: ScrollableNavigationItem[];
|
|
8328
|
+
activeIndex: number;
|
|
8329
|
+
};
|
|
8328
8330
|
type ScrollableButtonPosition = 'inside' | 'footer';
|
|
8329
8331
|
type ScrollableScrollOrigin = 'auto' | 'center' | 'start' | 'end';
|
|
8330
8332
|
type ScrollableDirection = 'horizontal' | 'vertical';
|
|
8331
8333
|
type ScrollableItemSize = 'auto' | 'same' | 'half' | 'third' | 'quarter' | 'full';
|
|
8332
8334
|
type ScrollableLoadingTemplatePosition = 'start' | 'end';
|
|
8333
8335
|
declare class ScrollableComponent {
|
|
8334
|
-
private
|
|
8335
|
-
private _manualActiveNavigationIndex;
|
|
8336
|
+
private manualActiveNavigationIndex;
|
|
8336
8337
|
elementRef: ElementRef<HTMLElement>;
|
|
8337
|
-
itemSize: _angular_core.
|
|
8338
|
-
direction: _angular_core.
|
|
8338
|
+
itemSize: _angular_core.InputSignalWithTransform<ScrollableItemSize, _ethlete_core.BreakpointInput<ScrollableItemSize>>;
|
|
8339
|
+
direction: _angular_core.InputSignalWithTransform<ScrollableDirection, _ethlete_core.BreakpointInput<ScrollableDirection>>;
|
|
8339
8340
|
scrollableRole: _angular_core.InputSignal<string | null>;
|
|
8340
8341
|
scrollableClass: _angular_core.InputSignal<NgClassType>;
|
|
8341
|
-
renderNavigation: _angular_core.InputSignalWithTransform<boolean,
|
|
8342
|
-
renderMasks: _angular_core.InputSignalWithTransform<boolean,
|
|
8343
|
-
renderButtons: _angular_core.InputSignalWithTransform<boolean,
|
|
8344
|
-
buttonPosition: _angular_core.
|
|
8345
|
-
renderScrollbars: _angular_core.InputSignalWithTransform<boolean,
|
|
8346
|
-
stickyButtons: _angular_core.InputSignalWithTransform<boolean,
|
|
8347
|
-
cursorDragScroll: _angular_core.InputSignalWithTransform<boolean,
|
|
8348
|
-
disableActiveElementScrolling: _angular_core.InputSignalWithTransform<boolean,
|
|
8349
|
-
scrollMode: _angular_core.
|
|
8350
|
-
snap: _angular_core.InputSignalWithTransform<boolean,
|
|
8351
|
-
scrollMargin: _angular_core.InputSignalWithTransform<number,
|
|
8352
|
-
scrollOrigin: _angular_core.
|
|
8353
|
-
darkenNonIntersectingItems: _angular_core.InputSignalWithTransform<boolean,
|
|
8354
|
-
showLoadingTemplate: _angular_core.InputSignalWithTransform<boolean,
|
|
8355
|
-
loadingTemplatePosition: _angular_core.
|
|
8342
|
+
renderNavigation: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8343
|
+
renderMasks: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8344
|
+
renderButtons: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8345
|
+
buttonPosition: _angular_core.InputSignalWithTransform<ScrollableButtonPosition, _ethlete_core.BreakpointInput<ScrollableButtonPosition>>;
|
|
8346
|
+
renderScrollbars: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8347
|
+
stickyButtons: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8348
|
+
cursorDragScroll: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8349
|
+
disableActiveElementScrolling: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8350
|
+
scrollMode: _angular_core.InputSignalWithTransform<ScrollableScrollMode, _ethlete_core.BreakpointInput<ScrollableScrollMode>>;
|
|
8351
|
+
snap: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8352
|
+
scrollMargin: _angular_core.InputSignalWithTransform<number, string | _ethlete_core.BreakpointInput<number>>;
|
|
8353
|
+
scrollOrigin: _angular_core.InputSignalWithTransform<ScrollableScrollOrigin, _ethlete_core.BreakpointInput<ScrollableScrollOrigin>>;
|
|
8354
|
+
darkenNonIntersectingItems: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8355
|
+
showLoadingTemplate: _angular_core.InputSignalWithTransform<boolean, string | _ethlete_core.BreakpointInput<boolean>>;
|
|
8356
|
+
loadingTemplatePosition: _angular_core.InputSignalWithTransform<ScrollableLoadingTemplatePosition, _ethlete_core.BreakpointInput<ScrollableLoadingTemplatePosition>>;
|
|
8356
8357
|
scrollable: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
8357
|
-
|
|
8358
|
-
lastElement: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
8358
|
+
scrollObserver: _angular_core.Signal<ScrollObserverDirective>;
|
|
8359
8359
|
activeElementList: _angular_core.Signal<readonly _ethlete_cdk.ScrollableIsActiveChildDirective[]>;
|
|
8360
8360
|
navigationDotsContainer: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
8361
8361
|
firstNavigationDot: _angular_core.Signal<ElementRef<HTMLButtonElement> | undefined>;
|
|
8362
8362
|
loadingTemplate: _angular_core.Signal<_ethlete_cdk.ScrollableLoadingTemplateDirective | undefined>;
|
|
8363
|
-
scrollableAttributeMutations: _angular_core.Signal<MutationRecord | null>;
|
|
8364
8363
|
scrollableDimensions: _angular_core.Signal<_ethlete_core.NullableElementDimensions>;
|
|
8365
8364
|
navigationDotDimensions: _angular_core.Signal<_ethlete_core.NullableElementDimensions>;
|
|
8366
|
-
isRendered: {
|
|
8367
|
-
state: _angular_core.WritableSignal<boolean>;
|
|
8368
|
-
bind: () => _angular_core.EffectRef;
|
|
8369
|
-
};
|
|
8370
8365
|
canAnimate: {
|
|
8371
8366
|
state: _angular_core.Signal<boolean>;
|
|
8372
8367
|
};
|
|
@@ -8377,21 +8372,19 @@ declare class ScrollableComponent {
|
|
|
8377
8372
|
y: number;
|
|
8378
8373
|
}>;
|
|
8379
8374
|
};
|
|
8380
|
-
isCursorDragging$: rxjs.Observable<boolean>;
|
|
8381
8375
|
renderButtonsInside: _angular_core.Signal<boolean>;
|
|
8382
8376
|
renderButtonsInFooter: _angular_core.Signal<boolean>;
|
|
8383
8377
|
containerScrollState: _angular_core.Signal<_ethlete_core.ElementScrollState>;
|
|
8384
|
-
firstElementIntersection: _angular_core.Signal<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
8385
|
-
lastElementIntersection: _angular_core.Signal<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
8386
8378
|
allScrollableChildren: _angular_core.Signal<HTMLElement[]>;
|
|
8387
8379
|
scrollableChildren: _angular_core.Signal<HTMLElement[]>;
|
|
8388
8380
|
scrollableContentIntersections: _angular_core.Signal<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
8389
8381
|
scrollableContentIntersections$: rxjs.Observable<_ethlete_core.IntersectionObserverEntryWithDetails[]>;
|
|
8382
|
+
maxVisibleItemCount: _angular_core.Signal<number>;
|
|
8390
8383
|
nonScrollableIntersections: _angular_core.Signal<HTMLElement[]>;
|
|
8391
8384
|
isAtStart: _angular_core.Signal<boolean>;
|
|
8392
8385
|
isAtEnd: _angular_core.Signal<boolean>;
|
|
8393
8386
|
canScroll: _angular_core.Signal<boolean>;
|
|
8394
|
-
scrollableNavigation: _angular_core.Signal<
|
|
8387
|
+
scrollableNavigation: _angular_core.Signal<ScrollableNavigation>;
|
|
8395
8388
|
activeIndex: _angular_core.Signal<number>;
|
|
8396
8389
|
gapValue: _angular_core.Signal<string | null>;
|
|
8397
8390
|
intersectionChange: _angular_core.OutputRef<ScrollableIntersectionChange[]>;
|
|
@@ -8455,8 +8448,6 @@ declare class ScrollableComponent {
|
|
|
8455
8448
|
protected scrollToElementViaNavigation(elementIndex: number): void;
|
|
8456
8449
|
protected scrollToStartDirection(): void;
|
|
8457
8450
|
protected scrollToEndDirection(): void;
|
|
8458
|
-
private _enableSnapping;
|
|
8459
|
-
private _disableSnapping;
|
|
8460
8451
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollableComponent, never>;
|
|
8461
8452
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScrollableComponent, "et-scrollable", never, { "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "scrollableRole": { "alias": "scrollableRole"; "required": false; "isSignal": true; }; "scrollableClass": { "alias": "scrollableClass"; "required": false; "isSignal": true; }; "renderNavigation": { "alias": "renderNavigation"; "required": false; "isSignal": true; }; "renderMasks": { "alias": "renderMasks"; "required": false; "isSignal": true; }; "renderButtons": { "alias": "renderButtons"; "required": false; "isSignal": true; }; "buttonPosition": { "alias": "buttonPosition"; "required": false; "isSignal": true; }; "renderScrollbars": { "alias": "renderScrollbars"; "required": false; "isSignal": true; }; "stickyButtons": { "alias": "stickyButtons"; "required": false; "isSignal": true; }; "cursorDragScroll": { "alias": "cursorDragScroll"; "required": false; "isSignal": true; }; "disableActiveElementScrolling": { "alias": "disableActiveElementScrolling"; "required": false; "isSignal": true; }; "scrollMode": { "alias": "scrollMode"; "required": false; "isSignal": true; }; "snap": { "alias": "snap"; "required": false; "isSignal": true; }; "scrollMargin": { "alias": "scrollMargin"; "required": false; "isSignal": true; }; "scrollOrigin": { "alias": "scrollOrigin"; "required": false; "isSignal": true; }; "darkenNonIntersectingItems": { "alias": "darkenNonIntersectingItems"; "required": false; "isSignal": true; }; "showLoadingTemplate": { "alias": "showLoadingTemplate"; "required": false; "isSignal": true; }; "loadingTemplatePosition": { "alias": "loadingTemplatePosition"; "required": false; "isSignal": true; }; }, { "intersectionChange": "intersectionChange"; "scrollStateChange": "scrollStateChange"; }, ["activeElementList", "loadingTemplate"], ["*"], true, never>;
|
|
8462
8453
|
}
|
|
@@ -8532,47 +8523,6 @@ declare class ScrollablePlaceholderOverlayTemplateDirective {
|
|
|
8532
8523
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ScrollablePlaceholderOverlayTemplateDirective, "ng-template[etScrollablePlaceholderOverlayTemplate]", never, {}, {}, never, never, true, never>;
|
|
8533
8524
|
}
|
|
8534
8525
|
|
|
8535
|
-
declare const getIntersectionInfo: (intersections: IntersectionObserverEntry[]) => {
|
|
8536
|
-
partial: {
|
|
8537
|
-
hasAny: boolean;
|
|
8538
|
-
hasMultiple: boolean;
|
|
8539
|
-
first: {
|
|
8540
|
-
intersection: IntersectionObserverEntry;
|
|
8541
|
-
index: number;
|
|
8542
|
-
};
|
|
8543
|
-
last: {
|
|
8544
|
-
intersection: IntersectionObserverEntry;
|
|
8545
|
-
index: number;
|
|
8546
|
-
};
|
|
8547
|
-
biggest: {
|
|
8548
|
-
intersection: IntersectionObserverEntry;
|
|
8549
|
-
index: number;
|
|
8550
|
-
};
|
|
8551
|
-
};
|
|
8552
|
-
full: {
|
|
8553
|
-
hasAny: boolean;
|
|
8554
|
-
hasMultiple: boolean;
|
|
8555
|
-
first: {
|
|
8556
|
-
index: number;
|
|
8557
|
-
intersection: IntersectionObserverEntry | undefined;
|
|
8558
|
-
};
|
|
8559
|
-
last: {
|
|
8560
|
-
index: number;
|
|
8561
|
-
intersection: IntersectionObserverEntry | undefined;
|
|
8562
|
-
};
|
|
8563
|
-
};
|
|
8564
|
-
none: {
|
|
8565
|
-
first: {
|
|
8566
|
-
index: number;
|
|
8567
|
-
intersection: IntersectionObserverEntry | undefined;
|
|
8568
|
-
};
|
|
8569
|
-
last: {
|
|
8570
|
-
index: number;
|
|
8571
|
-
intersection: IntersectionObserverEntry | undefined;
|
|
8572
|
-
};
|
|
8573
|
-
};
|
|
8574
|
-
} | null;
|
|
8575
|
-
|
|
8576
8526
|
declare const ScrollableImports: readonly [typeof ScrollableComponent, typeof ScrollableIsActiveChildDirective, typeof ScrollableIgnoreChildDirective, typeof ScrollableLoadingTemplateDirective, typeof ScrollablePlaceholderItemTemplateDirective, typeof ScrollablePlaceholderOverlayTemplateDirective, typeof ScrollablePlaceholderComponent];
|
|
8577
8527
|
|
|
8578
8528
|
declare class SkeletonComponent {
|
|
@@ -9293,5 +9243,5 @@ declare const createNavigationDismissChecker: <T extends AbstractControl>(config
|
|
|
9293
9243
|
|
|
9294
9244
|
declare const injectRouterNavigationState: <T>() => T | null;
|
|
9295
9245
|
|
|
9296
|
-
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, Bracket, BracketComponent, BracketImports, BracketMatchComponent$1 as BracketMatchComponent, BracketMatchDirective, index_d as BracketNew, BracketRoundDirective, BracketRoundHeaderComponent$1 as BracketRoundHeaderComponent, BreadcrumbComponent, BreadcrumbImports, BreadcrumbItemDirective, BreadcrumbItemTemplateDirective, BreadcrumbOutletComponent, BreadcrumbTemplateDirective, ButtonComponent, ButtonDirective, ButtonImports, CAROUSEL_ITEM_NAV_TOKEN, CAROUSEL_ITEM_TOKEN, CAROUSEL_NEXT_BUTTON_TOKEN, CAROUSEL_PREVIOUS_BUTTON_TOKEN, CAROUSEL_TOGGLE_AUTO_PLAY_BUTTON_TOKEN, CAROUSEL_TOKEN, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, CHEVRON_ICON, COLOR_INPUT_TOKEN, COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, COMBOBOX_BODY_MORE_ITEMS_HINT_TEMPLATE_TOKEN, COMBOBOX_BODY_TOKEN, COMBOBOX_CONFIG_TOKEN, COMBOBOX_DEFAULT_CONFIG, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_OPTION_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CarouselComponent, CarouselDirective, CarouselImports, CarouselItemComponent, CarouselItemDirective, CarouselItemNavComponent, CarouselItemNavDirective, CarouselNextButtonDirective, CarouselPreviousButtonDirective, CarouselToggleAutoPlayButtonDirective, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DATE_TIME_INPUT_FORMAT_TOKEN, DATE_TIME_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DEFAULT_DATE_TIME_INPUT_FORMAT, DEFAULT_TIME_INPUT_FORMAT, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DynamicFormFieldDirective, DynamicFormGroupDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_CONFIG_CLASS_KEYS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, IMAGE_CONFIG_TOKEN, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconDirective, IconImports, IfInputEmptyDirective, IfInputFilledDirective, IfSupportsShowPickerDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU, MENU_CHECKBOX_GROUP_TOKEN, MENU_CONTAINER, MENU_GROUP_TITLE_TOKEN, MENU_GROUP_TOKEN, MENU_ITEM_TOKEN, MENU_RADIO_GROUP_TOKEN, MENU_SEARCH_TEMPLATE_TOKEN, MENU_TEMPLATE, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuTriggerDirective, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NewBracketComponent, NewBracketDefaultMatchComponent, NewBracketDefaultRoundHeaderComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CLOSE_BLOCKER_TOKEN, OVERLAY_CONFIG, OVERLAY_DATA, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, ProgressSpinnerComponent, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RICH_FILTER_BUTTON_SLOT_TOKEN, RICH_FILTER_BUTTON_TOKEN, RICH_FILTER_CONTENT_TOKEN, RICH_FILTER_TOP_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RichFilterButtonDirective, RichFilterButtonSlotDirective, RichFilterContentDirective, RichFilterHostComponent, RichFilterImports, RichFilterTopDirective, RowComponent, RowDefDirective, SCROLLABLE_IGNORE_CHILD_ATTRIBUTE, SCROLLABLE_IGNORE_CHILD_TOKEN, SCROLLABLE_IS_ACTIVE_CHILD_ATTRIBUTE, SCROLLABLE_IS_ACTIVE_CHILD_TOKEN, SCROLLABLE_LOADING_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_ITEM_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_OVERLAY_TEMPLATE_TOKEN, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SHOW_PICKER_TRIGGER_TOKEN, SIDEBAR_OVERLAY_CONFIG, SLIDER_THUMB_CONTENT_TEMPLATE_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableIgnoreChildDirective, ScrollableImports, ScrollableIsActiveChildDirective, ScrollableLoadingTemplateDirective, ScrollablePlaceholderComponent, ScrollablePlaceholderItemTemplateDirective, ScrollablePlaceholderOverlayTemplateDirective, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, ShowPickerTriggerDirective, SidebarOverlayService, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SliderThumbContentTemplateDirective, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEL_INPUT_TOKEN, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, TIMES_ICON, TIME_INPUT_FORMAT_TOKEN, TIME_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TelInputComponent, TelInputDirective, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, TimeInputComponent, TimeInputDirective, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, abortFullscreenAnimation, accordionAnimations, anchoredDialogOverlayStrategy, bottomSheetOverlayStrategy, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, createBracketConfig, createComboboxConfig, createFormChangesTracker, createNavigationDismissChecker, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, dialogOverlayStrategy, enableDragToDismiss, exactMatchOptions, extractFirstImageUrl, findNextRelevantHtmlElement, fullScreenDialogOverlayStrategy, getClosestOverlay, getIntersectionInfo, getOriginCoordinatesAndDimensions, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectBreadcrumbManager, injectDialogStrategy, injectDialogStrategyDefaults, injectFocusRegistry, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectOverlayManager, injectOverlayScrollBlocker, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectRouterNavigationState, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isEmptyArray, isHtmlElement, isObjectArray, isPointerEvent, isPrimitiveArray, isScrollableChildActive, isScrollableChildIgnored, isTouchEvent, isUpperBracketMatch, leftSheetOverlayStrategy, mergeOverlayBreakpointConfigs, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideBracketConfig, provideBreadcrumbManager, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialogStrategy, provideDialogStrategyDefaults, provideFilterOverlayConfig, provideFocusRegistry, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideIcons, provideImageConfig, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideOverlay, provideOverlayManager, provideOverlayRouterConfig, provideOverlayScrollBlocker, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlayConfig, provideSort, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, provideValidatorErrorsService, rightSheetOverlayStrategy, signalVisibilityChangeClasses, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, subsetMatchOptions, tabAnimations, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
|
|
9246
|
+
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, Bracket, BracketComponent, BracketImports, BracketMatchComponent$1 as BracketMatchComponent, BracketMatchDirective, index_d as BracketNew, BracketRoundDirective, BracketRoundHeaderComponent$1 as BracketRoundHeaderComponent, BreadcrumbComponent, BreadcrumbImports, BreadcrumbItemDirective, BreadcrumbItemTemplateDirective, BreadcrumbOutletComponent, BreadcrumbTemplateDirective, ButtonComponent, ButtonDirective, ButtonImports, CAROUSEL_ITEM_NAV_TOKEN, CAROUSEL_ITEM_TOKEN, CAROUSEL_NEXT_BUTTON_TOKEN, CAROUSEL_PREVIOUS_BUTTON_TOKEN, CAROUSEL_TOGGLE_AUTO_PLAY_BUTTON_TOKEN, CAROUSEL_TOKEN, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, CHEVRON_ICON, COLOR_INPUT_TOKEN, COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, COMBOBOX_BODY_MORE_ITEMS_HINT_TEMPLATE_TOKEN, COMBOBOX_BODY_TOKEN, COMBOBOX_CONFIG_TOKEN, COMBOBOX_DEFAULT_CONFIG, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_OPTION_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CarouselComponent, CarouselDirective, CarouselImports, CarouselItemComponent, CarouselItemDirective, CarouselItemNavComponent, CarouselItemNavDirective, CarouselNextButtonDirective, CarouselPreviousButtonDirective, CarouselToggleAutoPlayButtonDirective, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DATE_TIME_INPUT_FORMAT_TOKEN, DATE_TIME_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DEFAULT_DATE_TIME_INPUT_FORMAT, DEFAULT_TIME_INPUT_FORMAT, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DynamicFormFieldDirective, DynamicFormGroupDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_CONFIG_CLASS_KEYS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, IMAGE_CONFIG_TOKEN, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconDirective, IconImports, IfInputEmptyDirective, IfInputFilledDirective, IfSupportsShowPickerDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU, MENU_CHECKBOX_GROUP_TOKEN, MENU_CONTAINER, MENU_GROUP_TITLE_TOKEN, MENU_GROUP_TOKEN, MENU_ITEM_TOKEN, MENU_RADIO_GROUP_TOKEN, MENU_SEARCH_TEMPLATE_TOKEN, MENU_TEMPLATE, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuTriggerDirective, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NewBracketComponent, NewBracketDefaultMatchComponent, NewBracketDefaultRoundHeaderComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CLOSE_BLOCKER_TOKEN, OVERLAY_CONFIG, OVERLAY_DATA, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, ProgressSpinnerComponent, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RICH_FILTER_BUTTON_SLOT_TOKEN, RICH_FILTER_BUTTON_TOKEN, RICH_FILTER_CONTENT_TOKEN, RICH_FILTER_TOP_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RichFilterButtonDirective, RichFilterButtonSlotDirective, RichFilterContentDirective, RichFilterHostComponent, RichFilterImports, RichFilterTopDirective, RowComponent, RowDefDirective, SCROLLABLE_IGNORE_CHILD_ATTRIBUTE, SCROLLABLE_IGNORE_CHILD_TOKEN, SCROLLABLE_IS_ACTIVE_CHILD_ATTRIBUTE, SCROLLABLE_IS_ACTIVE_CHILD_TOKEN, SCROLLABLE_LOADING_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_ITEM_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_OVERLAY_TEMPLATE_TOKEN, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SHOW_PICKER_TRIGGER_TOKEN, SIDEBAR_OVERLAY_CONFIG, SLIDER_THUMB_CONTENT_TEMPLATE_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableIgnoreChildDirective, ScrollableImports, ScrollableIsActiveChildDirective, ScrollableLoadingTemplateDirective, ScrollablePlaceholderComponent, ScrollablePlaceholderItemTemplateDirective, ScrollablePlaceholderOverlayTemplateDirective, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, ShowPickerTriggerDirective, SidebarOverlayService, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SliderThumbContentTemplateDirective, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEL_INPUT_TOKEN, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, TIMES_ICON, TIME_INPUT_FORMAT_TOKEN, TIME_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TelInputComponent, TelInputDirective, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, TimeInputComponent, TimeInputDirective, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, abortFullscreenAnimation, accordionAnimations, anchoredDialogOverlayStrategy, bottomSheetOverlayStrategy, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, createBracketConfig, createComboboxConfig, createFormChangesTracker, createNavigationDismissChecker, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, dialogOverlayStrategy, enableDragToDismiss, exactMatchOptions, extractFirstImageUrl, findNextRelevantHtmlElement, fullScreenDialogOverlayStrategy, getClosestOverlay, getOriginCoordinatesAndDimensions, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectBreadcrumbManager, injectDialogStrategy, injectDialogStrategyDefaults, injectFocusRegistry, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectOverlayManager, injectOverlayScrollBlocker, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectRouterNavigationState, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isEmptyArray, isHtmlElement, isObjectArray, isPointerEvent, isPrimitiveArray, isScrollableChildActive, isScrollableChildIgnored, isTouchEvent, isUpperBracketMatch, leftSheetOverlayStrategy, mergeOverlayBreakpointConfigs, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideBracketConfig, provideBreadcrumbManager, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialogStrategy, provideDialogStrategyDefaults, provideFilterOverlayConfig, provideFocusRegistry, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideIcons, provideImageConfig, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideOverlay, provideOverlayManager, provideOverlayRouterConfig, provideOverlayScrollBlocker, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlayConfig, provideSort, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, provideValidatorErrorsService, rightSheetOverlayStrategy, signalVisibilityChangeClasses, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, subsetMatchOptions, tabAnimations, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
|
|
9297
9247
|
export type { AbstractComboboxBody, AbstractComboboxOption, ActiveTabUnderlineItem, ArrowViewState, ArrowViewStateTransition, BracketConfig, BracketMatch, BracketRound, CarouselTransitionDirection, CarouselTransitionType, ComboboxConfig, ConnectedMatches, CreateFormChangesTrackerConfig, CreateNavigationDismissCheckerConfig, CreateOverlayDismissCheckerConfig, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DefaultSubmitButtonConfigFnConfig, DragToDismissContext, DragToDismissRef, ExposeInputVarsContext, FilterOverlayConfig, FilterOverlayResult, FilterOverlaySubmitButtonConfig, FocusElementRegistryEntry, FormChangesTrackerRef, FullscreenAnimationDeps, FullscreenAnimationState, IconDefinition, InlineTabBodyOriginState, InlineTabBodyPositionState, InputTouchedFn, InputValueChangeFn, InputValueUpdateType, MasonryDimensions, MaybeOverlayConsumerConfigWithData, NativeSelectOptionValue, NavigationDismissCheckerRef, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayCloseCallEvent, OverlayConfig, OverlayConsumerConfig, OverlayDismissCheckerRef, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayHeaderTemplates, OverlayLayout, OverlayPosition, OverlayRole, OverlayRoute, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterTransitionType, OverlayStrategy, OverlayStrategyBreakpoint, OverlayStrategyContext, PaginateOptions, PaginatedTabHeaderItem, PaginationHeadServiceConfig, PaginationItem, PictureConfig, PictureSource, Primitive, ProgressSpinnerDefaultOptions, ProgressSpinnerMode, QueryErrorItem, QueryErrorList, Reference, ScrollObserverScrollState, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableScrollMode, ScrollableScrollOrigin, SegmentedButtonGroupRenderAs, SidebarOverlayConfig, SortDefaultOptions, SortHeaderArrowPosition, SortHeaderColumnDef, Sortable, SwipeEndEvent, SwipeUpdateEvent, TabConfig, TabPaginationScrollDirection, TableDataSourcePageEvent, TableDataSourcePaginator, ToggletipConfig, TooltipConfig, ValidationErrorsServiceType, ValidatorErrors, ViewportTransformData, _ActiveTabUnderlinePositioner };
|