@ethlete/cdk 4.64.0 → 4.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/fesm2022/ethlete-cdk.mjs +8736 -8347
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +102 -19
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, TrackByFunction, InputSignal, Injector, ElementRef, OnInit, OnDestroy, Signal, AfterContentInit,
|
|
2
|
+
import { InjectionToken, TrackByFunction, InputSignal, TemplateRef, Injector, ElementRef, OnInit, OnDestroy, Signal, AfterContentInit, ViewContainerRef, EventEmitter, AfterViewInit, NgZone, OnChanges, SimpleChanges, Type, Optional, QueryList, StaticProvider, ComponentRef, Provider, AfterContentChecked, ChangeDetectorRef } from '@angular/core';
|
|
3
3
|
import { CdkPortal, ComponentType, ComponentPortal, TemplatePortal, CdkPortalOutlet } from '@angular/cdk/portal';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { BehaviorSubject, Observable, Subject, Subscriber, Subscription } from 'rxjs';
|
|
@@ -8,11 +8,12 @@ import { AnimationTriggerMetadata, AnimationEvent } from '@angular/animations';
|
|
|
8
8
|
import { MatchListView, RoundStageStructureView, RoundStageStructureWithMatchesView, RoundType, MatchListViewUnion } from '@ethlete/types';
|
|
9
9
|
import * as _ethlete_cdk from '@ethlete/cdk';
|
|
10
10
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
11
|
+
import * as i1 from '@ethlete/core';
|
|
12
|
+
import { ObserveVisibilityDirective, TypedQueryList, Primitive, SelectionModelBinding, SelectionModel, ActiveSelectionModel, AnimatedOverlayComponentBase, ClickOutsideDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, NgClassType, Breakpoint, RouterStateService, ViewportService, RootBoundaryDirective, AnimatedLifecycleState, ScrollObserverScrollState, ScrollToElementOptions } from '@ethlete/core';
|
|
13
|
+
import { OffsetOptions, Placement, Padding } from '@floating-ui/dom';
|
|
11
14
|
import * as _angular_common_module_d from '@angular/common/module.d';
|
|
12
15
|
import * as _ethlete_query from '@ethlete/query';
|
|
13
16
|
import { AnyQuery, AnyQueryCollection, EmptyObject, QueryResponseOf, QueryState, RequestError, ExperimentalQuery, SortDirection, Sort } from '@ethlete/query';
|
|
14
|
-
import * as i1 from '@ethlete/core';
|
|
15
|
-
import { ObserveVisibilityDirective, TypedQueryList, Primitive, SelectionModelBinding, SelectionModel, ActiveSelectionModel, AnimatedOverlayComponentBase, ClickOutsideDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, NgClassType, Breakpoint, RouterStateService, ViewportService, RootBoundaryDirective, AnimatedLifecycleState, ScrollObserverScrollState, ScrollToElementOptions } from '@ethlete/core';
|
|
16
17
|
import { FocusOrigin, FocusTrapFactory, InteractivityChecker, FocusMonitor, FocusableOption, FocusKeyManager } from '@angular/cdk/a11y';
|
|
17
18
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, FormGroup, FormControl } from '@angular/forms';
|
|
18
19
|
import { Platform } from '@angular/cdk/platform';
|
|
@@ -25,7 +26,6 @@ import { BooleanInput } from '@angular/cdk/coercion';
|
|
|
25
26
|
import { Location } from '@angular/common';
|
|
26
27
|
import * as i1$1 from '@angular/router';
|
|
27
28
|
import { Router, RouterLink, RouterLinkActive } from '@angular/router';
|
|
28
|
-
import { Placement, OffsetOptions, Padding } from '@floating-ui/dom';
|
|
29
29
|
import { RowOutlet, CdkTable, CdkCell, CdkCellDef, CdkColumnDef, CdkFooterCell, CdkFooterCellDef, CdkHeaderCell, CdkHeaderCellDef, CdkTextColumn, CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkNoDataRow, CdkRow, CdkRowDef } from '@angular/cdk/table';
|
|
30
30
|
import { DataSource } from '@angular/cdk/collections';
|
|
31
31
|
|
|
@@ -3545,8 +3545,6 @@ declare class BracketMap<K, V> extends Map<K, V> {
|
|
|
3545
3545
|
declare const TOURNAMENT_MODE: {
|
|
3546
3546
|
readonly SINGLE_ELIMINATION: "single-elimination";
|
|
3547
3547
|
readonly DOUBLE_ELIMINATION: "double-elimination";
|
|
3548
|
-
readonly GROUP: "group";
|
|
3549
|
-
readonly SWISS: "swiss";
|
|
3550
3548
|
readonly SWISS_WITH_ELIMINATION: "swiss-with-elimination";
|
|
3551
3549
|
};
|
|
3552
3550
|
type TournamentMode = (typeof TOURNAMENT_MODE)[keyof typeof TOURNAMENT_MODE];
|
|
@@ -3821,14 +3819,16 @@ type BracketRoundMapWithSwissData<TRoundData, TMatchData> = Map<BracketRoundId,
|
|
|
3821
3819
|
declare class NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3822
3820
|
bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3823
3821
|
bracketMatch: i0.InputSignal<NewBracketMatch<TRoundData, TMatchData>>;
|
|
3822
|
+
bracketRoundSwissGroup: i0.InputSignal<BracketRoundSwissGroup<TRoundData, TMatchData> | null>;
|
|
3824
3823
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketDefaultMatchComponent<any, any>, never>;
|
|
3825
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketDefaultMatchComponent<any, any>, "et-new-bracket-default-match", never, { "bracketRound": { "alias": "bracketRound"; "required": true; "isSignal": true; }; "bracketMatch": { "alias": "bracketMatch"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3824
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketDefaultMatchComponent<any, any>, "et-new-bracket-default-match", never, { "bracketRound": { "alias": "bracketRound"; "required": true; "isSignal": true; }; "bracketMatch": { "alias": "bracketMatch"; "required": true; "isSignal": true; }; "bracketRoundSwissGroup": { "alias": "bracketRoundSwissGroup"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3826
3825
|
}
|
|
3827
3826
|
|
|
3828
3827
|
declare class NewBracketDefaultRoundHeaderComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3829
3828
|
bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3829
|
+
bracketRoundSwissGroup: i0.InputSignal<BracketRoundSwissGroup<TRoundData, TMatchData> | null>;
|
|
3830
3830
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketDefaultRoundHeaderComponent<any, any>, never>;
|
|
3831
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketDefaultRoundHeaderComponent<any, any>, "et-new-bracket-default-round-header", never, { "bracketRound": { "alias": "bracketRound"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3831
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketDefaultRoundHeaderComponent<any, any>, "et-new-bracket-default-round-header", never, { "bracketRound": { "alias": "bracketRound"; "required": true; "isSignal": true; }; "bracketRoundSwissGroup": { "alias": "bracketRoundSwissGroup"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3832
3832
|
}
|
|
3833
3833
|
|
|
3834
3834
|
type Dimensions = {
|
|
@@ -3837,6 +3837,12 @@ type Dimensions = {
|
|
|
3837
3837
|
top: number;
|
|
3838
3838
|
left: number;
|
|
3839
3839
|
};
|
|
3840
|
+
type Spacing = {
|
|
3841
|
+
top: number;
|
|
3842
|
+
bottom: number;
|
|
3843
|
+
left: number;
|
|
3844
|
+
right: number;
|
|
3845
|
+
};
|
|
3840
3846
|
type BracketRoundHeaderComponent<TRoundData, TMatchData> = ComponentType<{
|
|
3841
3847
|
bracketRound: InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3842
3848
|
}>;
|
|
@@ -3882,12 +3888,14 @@ type HeaderBracketElementDetails<TRoundData, TMatchData> = {
|
|
|
3882
3888
|
type: 'header';
|
|
3883
3889
|
component: BracketRoundHeaderComponent<TRoundData, TMatchData>;
|
|
3884
3890
|
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3891
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3885
3892
|
};
|
|
3886
3893
|
type MatchBracketElementDetails<TRoundData, TMatchData> = {
|
|
3887
3894
|
type: 'match';
|
|
3888
3895
|
component: BracketMatchComponent<TRoundData, TMatchData>;
|
|
3889
3896
|
match: NewBracketMatch<TRoundData, TMatchData>;
|
|
3890
3897
|
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3898
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3891
3899
|
};
|
|
3892
3900
|
type GapBracketElementDetails = {
|
|
3893
3901
|
type: 'matchGap' | 'roundHeaderGap' | 'roundGap' | 'colGap';
|
|
@@ -3913,6 +3921,7 @@ type BracketMasterColumnSection<TRoundData, TMatchData> = {
|
|
|
3913
3921
|
type BracketMasterColumn<TRoundData, TMatchData> = {
|
|
3914
3922
|
sections: ReadonlyArray<BracketMasterColumnSection<TRoundData, TMatchData>>;
|
|
3915
3923
|
dimensions: Dimensions;
|
|
3924
|
+
padding: Spacing;
|
|
3916
3925
|
};
|
|
3917
3926
|
|
|
3918
3927
|
type BracketGrid<TRoundData, TMatchData> = {
|
|
@@ -3935,6 +3944,7 @@ type FinalizedHeaderBracketElement<TRoundData, TMatchData> = {
|
|
|
3935
3944
|
dimensions: Dimensions;
|
|
3936
3945
|
component: BracketRoundHeaderComponent<TRoundData, TMatchData>;
|
|
3937
3946
|
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3947
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3938
3948
|
};
|
|
3939
3949
|
type FinalizedMatchBracketElement<TRoundData, TMatchData> = {
|
|
3940
3950
|
type: 'match';
|
|
@@ -3942,6 +3952,7 @@ type FinalizedMatchBracketElement<TRoundData, TMatchData> = {
|
|
|
3942
3952
|
component: BracketMatchComponent<TRoundData, TMatchData>;
|
|
3943
3953
|
match: NewBracketMatch<TRoundData, TMatchData>;
|
|
3944
3954
|
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3955
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3945
3956
|
classes: string;
|
|
3946
3957
|
};
|
|
3947
3958
|
type FinalizedBracketElement<TRoundData = unknown, TMatchData = unknown> = FinalizedHeaderBracketElement<TRoundData, TMatchData> | FinalizedMatchBracketElement<TRoundData, TMatchData>;
|
|
@@ -3962,16 +3973,17 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3962
3973
|
finalMatchHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3963
3974
|
finalColumnWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3964
3975
|
roundHeaderHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3976
|
+
roundHeaderGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3965
3977
|
columnGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3966
3978
|
rowGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3967
|
-
|
|
3979
|
+
rowRoundGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3968
3980
|
lineStartingCurveAmount: i0.InputSignalWithTransform<number, unknown>;
|
|
3969
3981
|
lineEndingCurveAmount: i0.InputSignalWithTransform<number, unknown>;
|
|
3970
3982
|
lineWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3971
3983
|
lineDashArray: i0.InputSignalWithTransform<number, unknown>;
|
|
3972
3984
|
lineDashOffset: i0.InputSignalWithTransform<number, unknown>;
|
|
3973
3985
|
disableJourneyHighlight: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3974
|
-
|
|
3986
|
+
swissGroupPadding: i0.InputSignalWithTransform<number, unknown>;
|
|
3975
3987
|
layout: i0.InputSignal<BracketDataLayout>;
|
|
3976
3988
|
hideRoundHeaders: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3977
3989
|
roundHeaderComponent: i0.InputSignal<BracketRoundHeaderComponent<TRoundData, TMatchData> | undefined>;
|
|
@@ -3979,14 +3991,14 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3979
3991
|
finalMatchComponent: i0.InputSignal<BracketMatchComponent<TRoundData, TMatchData> | undefined>;
|
|
3980
3992
|
bracketData: i0.Signal<NewBracket<TRoundData, TMatchData>>;
|
|
3981
3993
|
swissGroups: i0.Signal<BracketRoundMapWithSwissData<TRoundData, TMatchData> | null>;
|
|
3982
|
-
bracketGrid: i0.Signal<ComputedBracketGrid<TRoundData, TMatchData
|
|
3994
|
+
bracketGrid: i0.Signal<ComputedBracketGrid<TRoundData, TMatchData>>;
|
|
3983
3995
|
drawManData: i0.Signal<string>;
|
|
3984
3996
|
svgContent: i0.Signal<_angular_platform_browser.SafeHtml>;
|
|
3985
3997
|
journeyHighlight: i0.Signal<string | null>;
|
|
3986
3998
|
constructor();
|
|
3987
3999
|
private setupJourneyHighlight;
|
|
3988
4000
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketComponent<any, any>, never>;
|
|
3989
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketComponent<any, any>, "et-new-bracket", never, { "source": { "alias": "source"; "required": true; "isSignal": true; }; "columnWidth": { "alias": "columnWidth"; "required": false; "isSignal": true; }; "matchHeight": { "alias": "matchHeight"; "required": false; "isSignal": true; }; "finalMatchHeight": { "alias": "finalMatchHeight"; "required": false; "isSignal": true; }; "finalColumnWidth": { "alias": "finalColumnWidth"; "required": false; "isSignal": true; }; "roundHeaderHeight": { "alias": "roundHeaderHeight"; "required": false; "isSignal": true; }; "columnGap": { "alias": "columnGap"; "required": false; "isSignal": true; }; "rowGap": { "alias": "rowGap"; "required": false; "isSignal": true; }; "
|
|
4001
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewBracketComponent<any, any>, "et-new-bracket", never, { "source": { "alias": "source"; "required": true; "isSignal": true; }; "columnWidth": { "alias": "columnWidth"; "required": false; "isSignal": true; }; "matchHeight": { "alias": "matchHeight"; "required": false; "isSignal": true; }; "finalMatchHeight": { "alias": "finalMatchHeight"; "required": false; "isSignal": true; }; "finalColumnWidth": { "alias": "finalColumnWidth"; "required": false; "isSignal": true; }; "roundHeaderHeight": { "alias": "roundHeaderHeight"; "required": false; "isSignal": true; }; "roundHeaderGap": { "alias": "roundHeaderGap"; "required": false; "isSignal": true; }; "columnGap": { "alias": "columnGap"; "required": false; "isSignal": true; }; "rowGap": { "alias": "rowGap"; "required": false; "isSignal": true; }; "rowRoundGap": { "alias": "rowRoundGap"; "required": false; "isSignal": true; }; "lineStartingCurveAmount": { "alias": "lineStartingCurveAmount"; "required": false; "isSignal": true; }; "lineEndingCurveAmount": { "alias": "lineEndingCurveAmount"; "required": false; "isSignal": true; }; "lineWidth": { "alias": "lineWidth"; "required": false; "isSignal": true; }; "lineDashArray": { "alias": "lineDashArray"; "required": false; "isSignal": true; }; "lineDashOffset": { "alias": "lineDashOffset"; "required": false; "isSignal": true; }; "disableJourneyHighlight": { "alias": "disableJourneyHighlight"; "required": false; "isSignal": true; }; "swissGroupPadding": { "alias": "swissGroupPadding"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "hideRoundHeaders": { "alias": "hideRoundHeaders"; "required": false; "isSignal": true; }; "roundHeaderComponent": { "alias": "roundHeaderComponent"; "required": false; "isSignal": true; }; "matchComponent": { "alias": "matchComponent"; "required": false; "isSignal": true; }; "finalMatchComponent": { "alias": "finalMatchComponent"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3990
4002
|
}
|
|
3991
4003
|
|
|
3992
4004
|
declare const index_d_BRACKET_DATA_LAYOUT: typeof BRACKET_DATA_LAYOUT;
|
|
@@ -4061,6 +4073,75 @@ declare const BRACKET_ROUND_ID_TOKEN: InjectionToken<string>;
|
|
|
4061
4073
|
declare const BRACKET_MATCH_ID_TOKEN: InjectionToken<string>;
|
|
4062
4074
|
declare const BRACKET_DEFAULT_CONFIG: BracketConfig;
|
|
4063
4075
|
|
|
4076
|
+
declare class BreadcrumbItemTemplateDirective {
|
|
4077
|
+
templateRef: i0.TemplateRef<unknown>;
|
|
4078
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemTemplateDirective, never>;
|
|
4079
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbItemTemplateDirective, "[etBreadcrumbItemTemplate]", never, {}, {}, never, never, true, never>;
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
declare class BreadcrumbComponent {
|
|
4083
|
+
breadcrumbItemTemplates: i0.Signal<readonly BreadcrumbItemTemplateDirective[]>;
|
|
4084
|
+
scrollState: i0.Signal<i1.ElementScrollState>;
|
|
4085
|
+
hostDimensions: i0.Signal<i1.NullableElementDimensions>;
|
|
4086
|
+
visibleElementCount: i0.WritableSignal<number>;
|
|
4087
|
+
offset: i0.InputSignal<OffsetOptions | null>;
|
|
4088
|
+
clientWidth: i0.Signal<number | undefined>;
|
|
4089
|
+
itemsToRender: i0.Signal<({
|
|
4090
|
+
type: string;
|
|
4091
|
+
item: BreadcrumbItemTemplateDirective | undefined;
|
|
4092
|
+
items?: undefined;
|
|
4093
|
+
} | {
|
|
4094
|
+
type: string;
|
|
4095
|
+
items: BreadcrumbItemTemplateDirective[];
|
|
4096
|
+
item?: undefined;
|
|
4097
|
+
})[] | null>;
|
|
4098
|
+
constructor();
|
|
4099
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
4100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "et-breadcrumb", never, { "offset": { "alias": "offset"; "required": false; "isSignal": true; }; }, {}, ["breadcrumbItemTemplates"], never, true, never>;
|
|
4101
|
+
}
|
|
4102
|
+
|
|
4103
|
+
declare class BreadcrumbOutletComponent {
|
|
4104
|
+
breadcrumbManager: {
|
|
4105
|
+
breadcrumbTemplate: i0.Signal<i0.TemplateRef<unknown> | null>;
|
|
4106
|
+
setBreadcrumbTemplate: (tpl: i0.TemplateRef<unknown> | null) => void;
|
|
4107
|
+
};
|
|
4108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbOutletComponent, never>;
|
|
4109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbOutletComponent, "et-breadcrumb-outlet", never, {}, {}, never, never, true, never>;
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
declare class BreadcrumbItemDirective {
|
|
4113
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemDirective, never>;
|
|
4114
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbItemDirective, "[etBreadcrumbItem]", never, {}, {}, never, never, true, never>;
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
declare class BreadcrumbTemplateDirective {
|
|
4118
|
+
templateRef: TemplateRef<any>;
|
|
4119
|
+
breadcrumbManager: {
|
|
4120
|
+
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4121
|
+
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4122
|
+
};
|
|
4123
|
+
constructor();
|
|
4124
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbTemplateDirective, never>;
|
|
4125
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbTemplateDirective, "ng-template[etBreadcrumbTemplate]", never, {}, {}, never, never, true, never>;
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
declare const BreadcrumbImports: readonly [typeof BreadcrumbOutletComponent, typeof BreadcrumbComponent, typeof BreadcrumbItemDirective, typeof BreadcrumbItemTemplateDirective, typeof BreadcrumbTemplateDirective];
|
|
4129
|
+
|
|
4130
|
+
declare const provideBreadcrumbManager: () => {
|
|
4131
|
+
provide: i0.InjectionToken<{
|
|
4132
|
+
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4133
|
+
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4134
|
+
}>;
|
|
4135
|
+
useFactory: () => {
|
|
4136
|
+
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4137
|
+
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4138
|
+
};
|
|
4139
|
+
};
|
|
4140
|
+
declare const injectBreadcrumbManager: () => {
|
|
4141
|
+
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4142
|
+
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4143
|
+
};
|
|
4144
|
+
|
|
4064
4145
|
type ButtonType = 'button' | 'submit' | 'reset' | 'menu';
|
|
4065
4146
|
declare class ButtonDirective {
|
|
4066
4147
|
readonly isButton: boolean;
|
|
@@ -5890,6 +5971,7 @@ declare class ComboboxDirective implements OnInit {
|
|
|
5890
5971
|
bodyMoreItemsHintComponent: InputSignal<ComponentType$1<unknown> | null | undefined>;
|
|
5891
5972
|
bodyMoreItemsHintComponentInputs: InputSignal<Record<string, unknown> | null | undefined>;
|
|
5892
5973
|
protected readonly filterChange: EventEmitter<string>;
|
|
5974
|
+
readonly optionClick: EventEmitter<unknown>;
|
|
5893
5975
|
private _shouldIgnoreNextBlurEvent;
|
|
5894
5976
|
private _deletedSearchWithKeyPress;
|
|
5895
5977
|
readonly selectBodyId$: BehaviorSubject<string | null>;
|
|
@@ -5972,7 +6054,7 @@ declare class ComboboxDirective implements OnInit {
|
|
|
5972
6054
|
private _debugValidateComboboxConfig;
|
|
5973
6055
|
private _debugValidateOptionAndInitialValueSchema;
|
|
5974
6056
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxDirective, never>;
|
|
5975
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ComboboxDirective, never, never, { "options": { "alias": "options"; "required": true; }; "initialValue": { "alias": "initialValue"; "required": false; }; "filterInternal": { "alias": "filterInternal"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "bodyEmptyText": { "alias": "bodyEmptyText"; "required": false; }; "bodyMoreItemsHintText": { "alias": "bodyMoreItemsHintText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindKey": { "alias": "bindKey"; "required": false; }; "bindDisabled": { "alias": "bindDisabled"; "required": false; }; "allowCustomValues": { "alias": "allowCustomValues"; "required": false; }; "showBodyMoreItemsHint": { "alias": "showBodyMoreItemsHint"; "required": false; }; "optionComponent": { "alias": "optionComponent"; "required": false; "isSignal": true; }; "optionComponentInputs": { "alias": "optionComponentInputs"; "required": false; "isSignal": true; }; "selectedOptionComponent": { "alias": "selectedOptionComponent"; "required": false; "isSignal": true; }; "bodyErrorComponentInputs": { "alias": "bodyErrorComponentInputs"; "required": false; "isSignal": true; }; "bodyErrorComponent": { "alias": "bodyErrorComponent"; "required": false; "isSignal": true; }; "selectedOptionComponentInputs": { "alias": "selectedOptionComponentInputs"; "required": false; "isSignal": true; }; "bodyLoadingComponent": { "alias": "bodyLoadingComponent"; "required": false; "isSignal": true; }; "bodyLoadingComponentInputs": { "alias": "bodyLoadingComponentInputs"; "required": false; "isSignal": true; }; "bodyEmptyComponent": { "alias": "bodyEmptyComponent"; "required": false; "isSignal": true; }; "bodyEmptyComponentInputs": { "alias": "bodyEmptyComponentInputs"; "required": false; "isSignal": true; }; "bodyMoreItemsHintComponent": { "alias": "bodyMoreItemsHintComponent"; "required": false; "isSignal": true; }; "bodyMoreItemsHintComponentInputs": { "alias": "bodyMoreItemsHintComponentInputs"; "required": false; "isSignal": true; }; }, { "filterChange": "filterChange"; }, ["optionTemplate", "selectedOptionTemplate", "bodyLoadingTemplate", "bodyErrorTemplate", "bodyEmptyTemplate", "bodyMoreItemsHintTemplate"], never, true, never>;
|
|
6057
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ComboboxDirective, never, never, { "options": { "alias": "options"; "required": true; }; "initialValue": { "alias": "initialValue"; "required": false; }; "filterInternal": { "alias": "filterInternal"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "bodyEmptyText": { "alias": "bodyEmptyText"; "required": false; }; "bodyMoreItemsHintText": { "alias": "bodyMoreItemsHintText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindKey": { "alias": "bindKey"; "required": false; }; "bindDisabled": { "alias": "bindDisabled"; "required": false; }; "allowCustomValues": { "alias": "allowCustomValues"; "required": false; }; "showBodyMoreItemsHint": { "alias": "showBodyMoreItemsHint"; "required": false; }; "optionComponent": { "alias": "optionComponent"; "required": false; "isSignal": true; }; "optionComponentInputs": { "alias": "optionComponentInputs"; "required": false; "isSignal": true; }; "selectedOptionComponent": { "alias": "selectedOptionComponent"; "required": false; "isSignal": true; }; "bodyErrorComponentInputs": { "alias": "bodyErrorComponentInputs"; "required": false; "isSignal": true; }; "bodyErrorComponent": { "alias": "bodyErrorComponent"; "required": false; "isSignal": true; }; "selectedOptionComponentInputs": { "alias": "selectedOptionComponentInputs"; "required": false; "isSignal": true; }; "bodyLoadingComponent": { "alias": "bodyLoadingComponent"; "required": false; "isSignal": true; }; "bodyLoadingComponentInputs": { "alias": "bodyLoadingComponentInputs"; "required": false; "isSignal": true; }; "bodyEmptyComponent": { "alias": "bodyEmptyComponent"; "required": false; "isSignal": true; }; "bodyEmptyComponentInputs": { "alias": "bodyEmptyComponentInputs"; "required": false; "isSignal": true; }; "bodyMoreItemsHintComponent": { "alias": "bodyMoreItemsHintComponent"; "required": false; "isSignal": true; }; "bodyMoreItemsHintComponentInputs": { "alias": "bodyMoreItemsHintComponentInputs"; "required": false; "isSignal": true; }; }, { "filterChange": "filterChange"; "optionClick": "optionClick"; }, ["optionTemplate", "selectedOptionTemplate", "bodyLoadingTemplate", "bodyErrorTemplate", "bodyEmptyTemplate", "bodyMoreItemsHintTemplate"], never, true, never>;
|
|
5976
6058
|
static ngAcceptInputType_showBodyMoreItemsHint: unknown;
|
|
5977
6059
|
}
|
|
5978
6060
|
|
|
@@ -5991,7 +6073,7 @@ declare class ComboboxComponent extends DecoratedInputBase {
|
|
|
5991
6073
|
protected readonly combobox: ComboboxDirective;
|
|
5992
6074
|
constructor();
|
|
5993
6075
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
|
|
5994
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "et-combobox", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]", "*"], true, [{ directive: typeof i1.AnimatedOverlayDirective; inputs: {}; outputs: {}; }, { directive: typeof OverlayCloseBlockerDirective; inputs: {}; outputs: {}; }, { directive: typeof InputDirective; inputs: { "placeholder": "placeholder"; }; outputs: {}; }, { directive: typeof ComboboxDirective; inputs: { "options": "options"; "initialValue": "initialValue"; "filterInternal": "filterInternal"; "loading": "loading"; "error": "error"; "emptyText": "emptyText"; "placeholder": "placeholder"; "multiple": "multiple"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "bindDisabled": "bindDisabled"; "allowCustomValues": "allowCustomValues"; "selectedOptionComponent": "selectedOptionComponent"; "optionComponent": "optionComponent"; "bodyErrorComponent": "bodyErrorComponent"; "bodyLoadingComponent": "bodyLoadingComponent"; "bodyEmptyComponent": "bodyEmptyComponent"; "bodyMoreItemsHintComponent": "bodyMoreItemsHintComponent"; "showBodyMoreItemsHint": "showBodyMoreItemsHint"; "bodyEmptyText": "bodyEmptyText"; "bodyMoreItemsHintText": "bodyMoreItemsHintText"; "optionComponentInputs": "optionComponentInputs"; "selectedOptionComponentInputs": "selectedOptionComponentInputs"; "bodyErrorComponentInputs": "bodyErrorComponentInputs"; "bodyLoadingComponentInputs": "bodyLoadingComponentInputs"; "bodyEmptyComponentInputs": "bodyEmptyComponentInputs"; "bodyMoreItemsHintComponentInputs": "bodyMoreItemsHintComponentInputs"; }; outputs: { "filterChange": "filterChange"; }; }]>;
|
|
6076
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "et-combobox", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]", "*"], true, [{ directive: typeof i1.AnimatedOverlayDirective; inputs: {}; outputs: {}; }, { directive: typeof OverlayCloseBlockerDirective; inputs: {}; outputs: {}; }, { directive: typeof InputDirective; inputs: { "placeholder": "placeholder"; }; outputs: {}; }, { directive: typeof ComboboxDirective; inputs: { "options": "options"; "initialValue": "initialValue"; "filterInternal": "filterInternal"; "loading": "loading"; "error": "error"; "emptyText": "emptyText"; "placeholder": "placeholder"; "multiple": "multiple"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "bindDisabled": "bindDisabled"; "allowCustomValues": "allowCustomValues"; "selectedOptionComponent": "selectedOptionComponent"; "optionComponent": "optionComponent"; "bodyErrorComponent": "bodyErrorComponent"; "bodyLoadingComponent": "bodyLoadingComponent"; "bodyEmptyComponent": "bodyEmptyComponent"; "bodyMoreItemsHintComponent": "bodyMoreItemsHintComponent"; "showBodyMoreItemsHint": "showBodyMoreItemsHint"; "bodyEmptyText": "bodyEmptyText"; "bodyMoreItemsHintText": "bodyMoreItemsHintText"; "optionComponentInputs": "optionComponentInputs"; "selectedOptionComponentInputs": "selectedOptionComponentInputs"; "bodyErrorComponentInputs": "bodyErrorComponentInputs"; "bodyLoadingComponentInputs": "bodyLoadingComponentInputs"; "bodyEmptyComponentInputs": "bodyEmptyComponentInputs"; "bodyMoreItemsHintComponentInputs": "bodyMoreItemsHintComponentInputs"; }; outputs: { "filterChange": "filterChange"; "optionClick": "optionClick"; }; }]>;
|
|
5995
6077
|
}
|
|
5996
6078
|
|
|
5997
6079
|
declare const COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN: InjectionToken<ComboboxBodyEmptyTemplateDirective>;
|
|
@@ -6364,6 +6446,7 @@ declare class SelectDirective<T extends SelectDirectiveBodyComponentBase> implem
|
|
|
6364
6446
|
readonly _activeSelectionModel: ActiveSelectionModel<SelectOptionDirective>;
|
|
6365
6447
|
set multiple(value: unknown);
|
|
6366
6448
|
emptyText?: string;
|
|
6449
|
+
readonly optionClick: EventEmitter<unknown>;
|
|
6367
6450
|
private set _selectOptionsQueryList(value);
|
|
6368
6451
|
private readonly _selectOptionsQueryList$;
|
|
6369
6452
|
readonly selectBodyId$: rxjs.Observable<string | null>;
|
|
@@ -6406,7 +6489,7 @@ declare class SelectDirective<T extends SelectDirectiveBodyComponentBase> implem
|
|
|
6406
6489
|
private _interpretKeyHandlerResult;
|
|
6407
6490
|
private _closeBodyOnDisable;
|
|
6408
6491
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectDirective<any>, never>;
|
|
6409
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectDirective<any>, never, never, { "multiple": { "alias": "multiple"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; }, {}, ["_selectOptionsQueryList"], never, true, [{ directive: typeof i1.AnimatedOverlayDirective; inputs: {}; outputs: {}; }, { directive: typeof OverlayCloseBlockerDirective; inputs: {}; outputs: {}; }]>;
|
|
6492
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectDirective<any>, never, never, { "multiple": { "alias": "multiple"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; }, { "optionClick": "optionClick"; }, ["_selectOptionsQueryList"], never, true, [{ directive: typeof i1.AnimatedOverlayDirective; inputs: {}; outputs: {}; }, { directive: typeof OverlayCloseBlockerDirective; inputs: {}; outputs: {}; }]>;
|
|
6410
6493
|
}
|
|
6411
6494
|
|
|
6412
6495
|
declare class SelectBodyComponent {
|
|
@@ -6425,7 +6508,7 @@ declare class SelectComponent extends DecoratedInputBase implements AfterViewIni
|
|
|
6425
6508
|
selectBodyTpl: TemplateRef<unknown> | null;
|
|
6426
6509
|
ngAfterViewInit(): void;
|
|
6427
6510
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
6428
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "et-select", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]", "*"], true, [{ directive: typeof InputDirective; inputs: {}; outputs: {}; }, { directive: typeof SelectDirective; inputs: { "multiple": "multiple"; "emptyText": "emptyText"; }; outputs: {}; }]>;
|
|
6511
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "et-select", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]", "*"], true, [{ directive: typeof InputDirective; inputs: {}; outputs: {}; }, { directive: typeof SelectDirective; inputs: { "multiple": "multiple"; "emptyText": "emptyText"; }; outputs: { "optionClick": "optionClick"; }; }]>;
|
|
6429
6512
|
}
|
|
6430
6513
|
|
|
6431
6514
|
declare class SelectOptionComponent {
|
|
@@ -7482,7 +7565,7 @@ declare class MenuComponent implements OnDestroy {
|
|
|
7482
7565
|
private set __menuItemList(value);
|
|
7483
7566
|
private readonly _menuItemList;
|
|
7484
7567
|
private set __orientation(value);
|
|
7485
|
-
readonly orientation: i0.WritableSignal<"
|
|
7568
|
+
readonly orientation: i0.WritableSignal<"horizontal" | "vertical">;
|
|
7486
7569
|
menuSearchTemplate: i0.Signal<MenuSearchTemplateDirective | undefined>;
|
|
7487
7570
|
searchInput: i0.Signal<InputDirective<unknown, HTMLElement> | undefined>;
|
|
7488
7571
|
hostClassBindings: {
|
|
@@ -7672,7 +7755,7 @@ declare class MenuStack {
|
|
|
7672
7755
|
length(): number;
|
|
7673
7756
|
peek(): MenuStackItem | undefined;
|
|
7674
7757
|
hasInlineMenu(): boolean;
|
|
7675
|
-
inlineMenuOrientation(): "
|
|
7758
|
+
inlineMenuOrientation(): "horizontal" | "vertical" | null;
|
|
7676
7759
|
setHasFocus(hasFocus: boolean): void;
|
|
7677
7760
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuStack, never>;
|
|
7678
7761
|
static ɵprov: i0.ɵɵInjectableDeclaration<MenuStack>;
|
|
@@ -10505,5 +10588,5 @@ declare const createNavigationDismissChecker: <T extends AbstractControl>(config
|
|
|
10505
10588
|
|
|
10506
10589
|
declare const injectRouterNavigationState: <T>() => T | null;
|
|
10507
10590
|
|
|
10508
|
-
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetState, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, Bracket, BracketComponent, BracketImports, BracketMatchComponent$1 as BracketMatchComponent, BracketMatchDirective, index_d as BracketNew, BracketRoundDirective, BracketRoundHeaderComponent$1 as BracketRoundHeaderComponent, 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, CDK_MENU, 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, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, 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, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogState, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_ANCHORED_DIALOG_CLASS, ET_OVERLAY_BOTTOM_SHEET_CLASS, ET_OVERLAY_CONFIG_CLASS_KEYS, ET_OVERLAY_DIALOG_CLASS, ET_OVERLAY_FULL_SCREEN_DIALOG_CLASS, ET_OVERLAY_LAYOUT_CLASSES, ET_OVERLAY_LEFT_SHEET_CLASS, ET_OVERLAY_RIGHT_SHEET_CLASS, ET_OVERLAY_TOP_SHEET_CLASS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FocusNext, 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_AIM, 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_STACK, MENU_TEMPLATE, MENU_TRIGGER, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuStack, 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_DEFAULT_CONFIG, OVERLAY_DEFAULT_OPTIONS, 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_SCROLL_STRATEGY, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OVERLAY_STATE, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayPositionBuilder, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlayService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PointerFocusTracker, ProgressSpinnerComponent, ProvideThemeDirective, 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, RecycleRowsDirective, 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, THEMES_TOKEN, THEME_PROVIDER, 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, TargetMenuAim, 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, accordionAnimations, createBottomSheetConfig, createBracketConfig, createComboboxConfig, createCssThemeName, createDialogConfig, createFormChangesTracker, createNavigationDismissChecker, createOverlayConfig, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createProvider, createRootThemeCss, createSwatchCss, createTailwindColorThemes, createTailwindCssVar, createTailwindRgbVar, createThemeStyle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, getClosestBottomSheet, getClosestDialog, getClosestOverlay, injectRouterNavigationState, isScrollableChildActive, isScrollableChildIgnored, isUpperBracketMatch, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideColorThemes, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialog, provideDialogDefaultConfig, provideFilterOverlayConfig, provideIcons, provideImageConfig, provideOverlay, provideOverlayDefaultConfig, provideOverlayRouterConfig, provideSidebarOverlayConfig, provideSort, provideSurfaceThemes, provideThemes, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
10591
|
+
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetState, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, 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, CDK_MENU, 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, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, 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, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogState, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_ANCHORED_DIALOG_CLASS, ET_OVERLAY_BOTTOM_SHEET_CLASS, ET_OVERLAY_CONFIG_CLASS_KEYS, ET_OVERLAY_DIALOG_CLASS, ET_OVERLAY_FULL_SCREEN_DIALOG_CLASS, ET_OVERLAY_LAYOUT_CLASSES, ET_OVERLAY_LEFT_SHEET_CLASS, ET_OVERLAY_RIGHT_SHEET_CLASS, ET_OVERLAY_TOP_SHEET_CLASS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FocusNext, 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_AIM, 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_STACK, MENU_TEMPLATE, MENU_TRIGGER, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuStack, 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_DEFAULT_CONFIG, OVERLAY_DEFAULT_OPTIONS, 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_SCROLL_STRATEGY, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OVERLAY_STATE, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayPositionBuilder, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlayService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PointerFocusTracker, ProgressSpinnerComponent, ProvideThemeDirective, 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, RecycleRowsDirective, 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, THEMES_TOKEN, THEME_PROVIDER, 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, TargetMenuAim, 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, accordionAnimations, createBottomSheetConfig, createBracketConfig, createComboboxConfig, createCssThemeName, createDialogConfig, createFormChangesTracker, createNavigationDismissChecker, createOverlayConfig, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createProvider, createRootThemeCss, createSwatchCss, createTailwindColorThemes, createTailwindCssVar, createTailwindRgbVar, createThemeStyle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, getClosestBottomSheet, getClosestDialog, getClosestOverlay, injectBreadcrumbManager, injectRouterNavigationState, isScrollableChildActive, isScrollableChildIgnored, isUpperBracketMatch, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideBreadcrumbManager, provideColorThemes, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialog, provideDialogDefaultConfig, provideFilterOverlayConfig, provideIcons, provideImageConfig, provideOverlay, provideOverlayDefaultConfig, provideOverlayRouterConfig, provideSidebarOverlayConfig, provideSort, provideSurfaceThemes, provideThemes, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
10509
10592
|
export type { AbstractComboboxBody, AbstractComboboxOption, ActiveTabUnderlineItem, ArrowViewState, ArrowViewStateTransition, BottomSheetAutoFocusTarget, BottomSheetConfig, BracketConfig, BracketMatch, BracketRound, CarouselTransitionDirection, CarouselTransitionType, CloseOptions, ComboboxConfig, ConnectedMatches, ContextMenuCoordinates, CreateFormChangesTrackerConfig, CreateNavigationDismissCheckerConfig, CreateOverlayDismissCheckerConfig, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, CreateProviderOptions, DefaultSubmitButtonConfigFnConfig, DialogAutoFocusTarget, DialogConfig, DialogPosition, DialogRole, DynamicOverlayConfig, DynamicOverlayRed, ExposeInputVarsContext, FilterOverlayConfig, FilterOverlayResult, FilterOverlaySubmitButtonConfig, FocusableElement, FormChangesTrackerRef, IconDefinition, InlineTabBodyOriginState, InlineTabBodyPositionState, InputTouchedFn, InputValueChangeFn, InputValueUpdateType, LegacyBottomSheetAnimationEvent, LegacyDialogAnimationEvent, MasonryDimensions, MaybeOverlayConsumerConfigWithData, Menu, MenuAim, MenuStackCloseEvent, MenuStackItem, NativeSelectOptionValue, NavigationDismissCheckerRef, OnThemeColorMap, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayBreakpointConfigEntry, OverlayCloseCallEvent, OverlayConfig, OverlayConsumerConfig, OverlayDismissCheckerRef, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayHeaderTemplates, OverlayLayout, OverlayPosition, OverlayRole, OverlayRoute, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterTransitionType, OverlayState, PaginateOptions, PaginatedTabHeaderItem, PaginationHeadServiceConfig, PaginationItem, PictureConfig, PictureSource, ProgressSpinnerDefaultOptions, ProgressSpinnerMode, QueryErrorItem, QueryErrorList, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableScrollMode, ScrollableScrollOrigin, SegmentedButtonGroupRenderAs, SidebarOverlayConfig, SortDefaultOptions, SortHeaderArrowPosition, SortHeaderColumnDef, Sortable, SwipeEndEvent, SwipeUpdateEvent, TabConfig, TabPaginationScrollDirection, TableDataSourcePageEvent, TableDataSourcePaginator, Theme, ThemeColor, ThemeColorMap, ThemeHSLColor, ThemeRGBColor, ThemeSwatch, Toggler, ToggletipConfig, TooltipConfig, ValidationErrorsServiceType, ValidatorErrors, _ActiveTabUnderlinePositioner };
|