@ethlete/cdk 4.63.2 → 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 +16 -0
- package/fesm2022/ethlete-cdk.mjs +10720 -9704
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +204 -116
- 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];
|
|
@@ -3803,21 +3801,6 @@ type NewBracketMatchParticipant<TRoundData, TMatchData> = NewBracketMatchPartici
|
|
|
3803
3801
|
matches: BracketMap<BracketMatchId, NewBracketMatch<TRoundData, TMatchData>>;
|
|
3804
3802
|
};
|
|
3805
3803
|
|
|
3806
|
-
declare const FIRST_ROUNDS_TYPE: {
|
|
3807
|
-
readonly SINGLE: "single";
|
|
3808
|
-
readonly DOUBLE: "double";
|
|
3809
|
-
};
|
|
3810
|
-
type FirstSingleRounds<TRoundData, TMatchData> = {
|
|
3811
|
-
type: typeof FIRST_ROUNDS_TYPE.SINGLE;
|
|
3812
|
-
first: NewBracketRound<TRoundData, TMatchData>;
|
|
3813
|
-
};
|
|
3814
|
-
type FirstDoubleRounds<TRoundData, TMatchData> = {
|
|
3815
|
-
type: typeof FIRST_ROUNDS_TYPE.DOUBLE;
|
|
3816
|
-
upper: NewBracketRound<TRoundData, TMatchData>;
|
|
3817
|
-
lower: NewBracketRound<TRoundData, TMatchData>;
|
|
3818
|
-
};
|
|
3819
|
-
type FirstRounds<TRoundData, TMatchData> = FirstSingleRounds<TRoundData, TMatchData> | FirstDoubleRounds<TRoundData, TMatchData>;
|
|
3820
|
-
|
|
3821
3804
|
type BracketRoundSwissGroupId = string & {
|
|
3822
3805
|
__brand: 'BracketRoundSwissGroupId';
|
|
3823
3806
|
};
|
|
@@ -3836,16 +3819,30 @@ type BracketRoundMapWithSwissData<TRoundData, TMatchData> = Map<BracketRoundId,
|
|
|
3836
3819
|
declare class NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3837
3820
|
bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3838
3821
|
bracketMatch: i0.InputSignal<NewBracketMatch<TRoundData, TMatchData>>;
|
|
3822
|
+
bracketRoundSwissGroup: i0.InputSignal<BracketRoundSwissGroup<TRoundData, TMatchData> | null>;
|
|
3839
3823
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketDefaultMatchComponent<any, any>, never>;
|
|
3840
|
-
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>;
|
|
3841
3825
|
}
|
|
3842
3826
|
|
|
3843
3827
|
declare class NewBracketDefaultRoundHeaderComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3844
3828
|
bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3829
|
+
bracketRoundSwissGroup: i0.InputSignal<BracketRoundSwissGroup<TRoundData, TMatchData> | null>;
|
|
3845
3830
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketDefaultRoundHeaderComponent<any, any>, never>;
|
|
3846
|
-
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>;
|
|
3847
3832
|
}
|
|
3848
3833
|
|
|
3834
|
+
type Dimensions = {
|
|
3835
|
+
width: number;
|
|
3836
|
+
height: number;
|
|
3837
|
+
top: number;
|
|
3838
|
+
left: number;
|
|
3839
|
+
};
|
|
3840
|
+
type Spacing = {
|
|
3841
|
+
top: number;
|
|
3842
|
+
bottom: number;
|
|
3843
|
+
left: number;
|
|
3844
|
+
right: number;
|
|
3845
|
+
};
|
|
3849
3846
|
type BracketRoundHeaderComponent<TRoundData, TMatchData> = ComponentType<{
|
|
3850
3847
|
bracketRound: InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3851
3848
|
}>;
|
|
@@ -3853,94 +3850,118 @@ type BracketMatchComponent<TRoundData, TMatchData> = ComponentType<{
|
|
|
3853
3850
|
bracketRound: InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3854
3851
|
bracketMatch: InputSignal<NewBracketMatch<TRoundData, TMatchData>>;
|
|
3855
3852
|
}>;
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
rowStart: number;
|
|
3863
|
-
rowEnd: number;
|
|
3864
|
-
rowDefinitions: string;
|
|
3865
|
-
roundRelation: BracketRoundRelation<TRoundData, TMatchData>;
|
|
3866
|
-
items: Map<BracketRoundId | BracketMatchId, BracketGridItem<TRoundData, TMatchData>>;
|
|
3853
|
+
|
|
3854
|
+
/**
|
|
3855
|
+
* A row is a part of an element.
|
|
3856
|
+
*/
|
|
3857
|
+
type BracketElementPart = {
|
|
3858
|
+
dimensions: Dimensions;
|
|
3867
3859
|
};
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3860
|
+
|
|
3861
|
+
/**
|
|
3862
|
+
* An element is a slice of a section.
|
|
3863
|
+
* It can be a match, a header, a gap, etc.
|
|
3864
|
+
*/
|
|
3865
|
+
type BracketElementBase = {
|
|
3866
|
+
area: string;
|
|
3867
|
+
/** The dimensions of the actual element */
|
|
3868
|
+
dimensions: Dimensions;
|
|
3869
|
+
/** The dimensions of the container that holds the element */
|
|
3870
|
+
containerDimensions: Dimensions;
|
|
3871
|
+
parts: ReadonlyArray<BracketElementPart>;
|
|
3872
|
+
span?: BracketElementSpanCoordinates;
|
|
3873
|
+
isHidden?: boolean;
|
|
3874
|
+
};
|
|
3875
|
+
type HeaderBracketElement<TRoundData, TMatchData> = BracketElementBase & HeaderBracketElementDetails<TRoundData, TMatchData>;
|
|
3876
|
+
type MatchBracketElement<TRoundData, TMatchData> = BracketElementBase & MatchBracketElementDetails<TRoundData, TMatchData>;
|
|
3877
|
+
type GapBracketElement = BracketElementBase & GapBracketElementDetails;
|
|
3878
|
+
type BracketElement<TRoundData, TMatchData> = HeaderBracketElement<TRoundData, TMatchData> | MatchBracketElement<TRoundData, TMatchData> | GapBracketElement;
|
|
3879
|
+
type BracketElementSpanCoordinates = {
|
|
3880
|
+
masterColumnStart: number;
|
|
3881
|
+
masterColumnEnd: number;
|
|
3882
|
+
sectionStart: number;
|
|
3883
|
+
sectionEnd: number;
|
|
3884
|
+
subColumnStart: number;
|
|
3885
|
+
subColumnEnd: number;
|
|
3886
|
+
};
|
|
3887
|
+
type HeaderBracketElementDetails<TRoundData, TMatchData> = {
|
|
3888
|
+
type: 'header';
|
|
3875
3889
|
component: BracketRoundHeaderComponent<TRoundData, TMatchData>;
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
bracketRound: NewBracketRound<TRoundData, TMatchData>;
|
|
3879
|
-
};
|
|
3890
|
+
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3891
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3880
3892
|
};
|
|
3881
|
-
type
|
|
3893
|
+
type MatchBracketElementDetails<TRoundData, TMatchData> = {
|
|
3882
3894
|
type: 'match';
|
|
3883
|
-
id: BracketMatchId;
|
|
3884
|
-
layoutId: `${BracketMatchId}-layout`;
|
|
3885
|
-
rowStart: number;
|
|
3886
|
-
rowEnd: number;
|
|
3887
|
-
className: string;
|
|
3888
3895
|
component: BracketMatchComponent<TRoundData, TMatchData>;
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3896
|
+
match: NewBracketMatch<TRoundData, TMatchData>;
|
|
3897
|
+
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3898
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3899
|
+
};
|
|
3900
|
+
type GapBracketElementDetails = {
|
|
3901
|
+
type: 'matchGap' | 'roundHeaderGap' | 'roundGap' | 'colGap';
|
|
3895
3902
|
};
|
|
3896
|
-
type BracketGridItem<TRoundData, TMatchData> = BracketGridRoundHeaderItem<TRoundData, TMatchData> | BracketGridMatchItem<TRoundData, TMatchData>;
|
|
3897
3903
|
|
|
3898
|
-
type
|
|
3899
|
-
|
|
3900
|
-
|
|
3904
|
+
type BracketSubColumn<TRoundData, TMatchData> = {
|
|
3905
|
+
dimensions: Dimensions;
|
|
3906
|
+
elements: ReadonlyArray<BracketElement<TRoundData, TMatchData>>;
|
|
3907
|
+
span: BracketSubColumnSpan;
|
|
3908
|
+
};
|
|
3909
|
+
type BracketSubColumnSpan = {
|
|
3910
|
+
isStart: boolean;
|
|
3911
|
+
isEnd: boolean;
|
|
3901
3912
|
};
|
|
3902
3913
|
|
|
3903
|
-
type
|
|
3904
|
-
|
|
3905
|
-
|
|
3914
|
+
type BracketMasterColumnSectionType = 'round' | 'gap';
|
|
3915
|
+
type BracketMasterColumnSection<TRoundData, TMatchData> = {
|
|
3916
|
+
subColumns: ReadonlyArray<BracketSubColumn<TRoundData, TMatchData>>;
|
|
3917
|
+
dimensions: Dimensions;
|
|
3918
|
+
type: BracketMasterColumnSectionType;
|
|
3906
3919
|
};
|
|
3907
3920
|
|
|
3908
|
-
type
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
matchHeight: number;
|
|
3913
|
-
/** Gap between rows */
|
|
3914
|
-
rowGap: number;
|
|
3915
|
-
/** Gap between columns */
|
|
3916
|
-
columnGap: number;
|
|
3917
|
-
/**
|
|
3918
|
-
* Offset from the top.
|
|
3919
|
-
* Will be 0 if e.g. there is no round header and we are displaying a single elimination bracket.
|
|
3920
|
-
* Will be some value if there is a round header or if we want to display the lower bracket of a double elimination bracket.
|
|
3921
|
-
*/
|
|
3922
|
-
baseOffsetY: number;
|
|
3923
|
-
/**
|
|
3924
|
-
* The number of matches in the first round.
|
|
3925
|
-
* For double elimination brackets, this is the number of matches in the upper bracket or the lower bracket.
|
|
3926
|
-
* For double elimination matches after the upper and lower bracket have been merged, this is the sum of matches in the first round of the upper and lower bracket.
|
|
3927
|
-
*/
|
|
3928
|
-
baseRoundMatchCount: number;
|
|
3929
|
-
/** Gap between the upper and lower bracket in a double elimination bracket */
|
|
3930
|
-
upperLowerGap: number;
|
|
3931
|
-
includeUpperLowerGap: boolean;
|
|
3921
|
+
type BracketMasterColumn<TRoundData, TMatchData> = {
|
|
3922
|
+
sections: ReadonlyArray<BracketMasterColumnSection<TRoundData, TMatchData>>;
|
|
3923
|
+
dimensions: Dimensions;
|
|
3924
|
+
padding: Spacing;
|
|
3932
3925
|
};
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3926
|
+
|
|
3927
|
+
type BracketGrid<TRoundData, TMatchData> = {
|
|
3928
|
+
masterColumns: ReadonlyArray<BracketMasterColumn<TRoundData, TMatchData>>;
|
|
3929
|
+
dimensions: Dimensions;
|
|
3930
|
+
};
|
|
3931
|
+
type MutableBracketGrid<TRoundData, TMatchData> = {
|
|
3932
|
+
grid: BracketGrid<TRoundData, TMatchData>;
|
|
3933
|
+
pushMasterColumn: (...masterColumns: BracketMasterColumn<TRoundData, TMatchData>[]) => void;
|
|
3934
|
+
calculateDimensions: () => void;
|
|
3935
|
+
setupElementSpans: () => void;
|
|
3936
|
+
};
|
|
3937
|
+
|
|
3938
|
+
type FinalizedBracketColumn<TRoundData = unknown, TMatchData = unknown> = {
|
|
3939
|
+
dimensions: Dimensions;
|
|
3940
|
+
elements: FinalizedBracketElement<TRoundData, TMatchData>[];
|
|
3941
|
+
};
|
|
3942
|
+
type FinalizedHeaderBracketElement<TRoundData, TMatchData> = {
|
|
3943
|
+
type: 'header';
|
|
3944
|
+
dimensions: Dimensions;
|
|
3945
|
+
component: BracketRoundHeaderComponent<TRoundData, TMatchData>;
|
|
3946
|
+
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3947
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3948
|
+
};
|
|
3949
|
+
type FinalizedMatchBracketElement<TRoundData, TMatchData> = {
|
|
3950
|
+
type: 'match';
|
|
3951
|
+
dimensions: Dimensions;
|
|
3952
|
+
component: BracketMatchComponent<TRoundData, TMatchData>;
|
|
3953
|
+
match: NewBracketMatch<TRoundData, TMatchData>;
|
|
3954
|
+
round: NewBracketRound<TRoundData, TMatchData>;
|
|
3955
|
+
roundSwissGroup: BracketRoundSwissGroup<TRoundData, TMatchData> | null;
|
|
3956
|
+
classes: string;
|
|
3957
|
+
};
|
|
3958
|
+
type FinalizedBracketElement<TRoundData = unknown, TMatchData = unknown> = FinalizedHeaderBracketElement<TRoundData, TMatchData> | FinalizedMatchBracketElement<TRoundData, TMatchData>;
|
|
3959
|
+
type FinalizedBracketMatchElementMap<TRoundData, TMatchData> = BracketMap<string, FinalizedMatchBracketElement<TRoundData, TMatchData>>;
|
|
3960
|
+
|
|
3961
|
+
type ComputedBracketGrid<TRoundData, TMatchData> = {
|
|
3962
|
+
raw: MutableBracketGrid<TRoundData, TMatchData>;
|
|
3963
|
+
columns: FinalizedBracketColumn<TRoundData, TMatchData>[];
|
|
3964
|
+
matchElementMap: FinalizedBracketMatchElementMap<TRoundData, TMatchData>;
|
|
3944
3965
|
};
|
|
3945
3966
|
|
|
3946
3967
|
declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
@@ -3952,16 +3973,17 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3952
3973
|
finalMatchHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3953
3974
|
finalColumnWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3954
3975
|
roundHeaderHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3976
|
+
roundHeaderGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3955
3977
|
columnGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3956
3978
|
rowGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3957
|
-
|
|
3979
|
+
rowRoundGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3958
3980
|
lineStartingCurveAmount: i0.InputSignalWithTransform<number, unknown>;
|
|
3959
3981
|
lineEndingCurveAmount: i0.InputSignalWithTransform<number, unknown>;
|
|
3960
3982
|
lineWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3961
3983
|
lineDashArray: i0.InputSignalWithTransform<number, unknown>;
|
|
3962
3984
|
lineDashOffset: i0.InputSignalWithTransform<number, unknown>;
|
|
3963
3985
|
disableJourneyHighlight: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3964
|
-
|
|
3986
|
+
swissGroupPadding: i0.InputSignalWithTransform<number, unknown>;
|
|
3965
3987
|
layout: i0.InputSignal<BracketDataLayout>;
|
|
3966
3988
|
hideRoundHeaders: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3967
3989
|
roundHeaderComponent: i0.InputSignal<BracketRoundHeaderComponent<TRoundData, TMatchData> | undefined>;
|
|
@@ -3969,19 +3991,14 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3969
3991
|
finalMatchComponent: i0.InputSignal<BracketMatchComponent<TRoundData, TMatchData> | undefined>;
|
|
3970
3992
|
bracketData: i0.Signal<NewBracket<TRoundData, TMatchData>>;
|
|
3971
3993
|
swissGroups: i0.Signal<BracketRoundMapWithSwissData<TRoundData, TMatchData> | null>;
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
firstRounds: i0.Signal<FirstRounds<TRoundData, TMatchData>>;
|
|
3975
|
-
drawManData: i0.Signal<{
|
|
3976
|
-
svg: string;
|
|
3977
|
-
debugMap: Record<BracketMatchId, DrawManDebugData>;
|
|
3978
|
-
}>;
|
|
3994
|
+
bracketGrid: i0.Signal<ComputedBracketGrid<TRoundData, TMatchData>>;
|
|
3995
|
+
drawManData: i0.Signal<string>;
|
|
3979
3996
|
svgContent: i0.Signal<_angular_platform_browser.SafeHtml>;
|
|
3980
3997
|
journeyHighlight: i0.Signal<string | null>;
|
|
3981
3998
|
constructor();
|
|
3982
3999
|
private setupJourneyHighlight;
|
|
3983
4000
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketComponent<any, any>, never>;
|
|
3984
|
-
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>;
|
|
3985
4002
|
}
|
|
3986
4003
|
|
|
3987
4004
|
declare const index_d_BRACKET_DATA_LAYOUT: typeof BRACKET_DATA_LAYOUT;
|
|
@@ -4056,6 +4073,75 @@ declare const BRACKET_ROUND_ID_TOKEN: InjectionToken<string>;
|
|
|
4056
4073
|
declare const BRACKET_MATCH_ID_TOKEN: InjectionToken<string>;
|
|
4057
4074
|
declare const BRACKET_DEFAULT_CONFIG: BracketConfig;
|
|
4058
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
|
+
|
|
4059
4145
|
type ButtonType = 'button' | 'submit' | 'reset' | 'menu';
|
|
4060
4146
|
declare class ButtonDirective {
|
|
4061
4147
|
readonly isButton: boolean;
|
|
@@ -5885,6 +5971,7 @@ declare class ComboboxDirective implements OnInit {
|
|
|
5885
5971
|
bodyMoreItemsHintComponent: InputSignal<ComponentType$1<unknown> | null | undefined>;
|
|
5886
5972
|
bodyMoreItemsHintComponentInputs: InputSignal<Record<string, unknown> | null | undefined>;
|
|
5887
5973
|
protected readonly filterChange: EventEmitter<string>;
|
|
5974
|
+
readonly optionClick: EventEmitter<unknown>;
|
|
5888
5975
|
private _shouldIgnoreNextBlurEvent;
|
|
5889
5976
|
private _deletedSearchWithKeyPress;
|
|
5890
5977
|
readonly selectBodyId$: BehaviorSubject<string | null>;
|
|
@@ -5967,7 +6054,7 @@ declare class ComboboxDirective implements OnInit {
|
|
|
5967
6054
|
private _debugValidateComboboxConfig;
|
|
5968
6055
|
private _debugValidateOptionAndInitialValueSchema;
|
|
5969
6056
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxDirective, never>;
|
|
5970
|
-
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>;
|
|
5971
6058
|
static ngAcceptInputType_showBodyMoreItemsHint: unknown;
|
|
5972
6059
|
}
|
|
5973
6060
|
|
|
@@ -5986,7 +6073,7 @@ declare class ComboboxComponent extends DecoratedInputBase {
|
|
|
5986
6073
|
protected readonly combobox: ComboboxDirective;
|
|
5987
6074
|
constructor();
|
|
5988
6075
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
|
|
5989
|
-
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"; }; }]>;
|
|
5990
6077
|
}
|
|
5991
6078
|
|
|
5992
6079
|
declare const COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN: InjectionToken<ComboboxBodyEmptyTemplateDirective>;
|
|
@@ -6359,6 +6446,7 @@ declare class SelectDirective<T extends SelectDirectiveBodyComponentBase> implem
|
|
|
6359
6446
|
readonly _activeSelectionModel: ActiveSelectionModel<SelectOptionDirective>;
|
|
6360
6447
|
set multiple(value: unknown);
|
|
6361
6448
|
emptyText?: string;
|
|
6449
|
+
readonly optionClick: EventEmitter<unknown>;
|
|
6362
6450
|
private set _selectOptionsQueryList(value);
|
|
6363
6451
|
private readonly _selectOptionsQueryList$;
|
|
6364
6452
|
readonly selectBodyId$: rxjs.Observable<string | null>;
|
|
@@ -6401,7 +6489,7 @@ declare class SelectDirective<T extends SelectDirectiveBodyComponentBase> implem
|
|
|
6401
6489
|
private _interpretKeyHandlerResult;
|
|
6402
6490
|
private _closeBodyOnDisable;
|
|
6403
6491
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectDirective<any>, never>;
|
|
6404
|
-
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: {}; }]>;
|
|
6405
6493
|
}
|
|
6406
6494
|
|
|
6407
6495
|
declare class SelectBodyComponent {
|
|
@@ -6420,7 +6508,7 @@ declare class SelectComponent extends DecoratedInputBase implements AfterViewIni
|
|
|
6420
6508
|
selectBodyTpl: TemplateRef<unknown> | null;
|
|
6421
6509
|
ngAfterViewInit(): void;
|
|
6422
6510
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
6423
|
-
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"; }; }]>;
|
|
6424
6512
|
}
|
|
6425
6513
|
|
|
6426
6514
|
declare class SelectOptionComponent {
|
|
@@ -7477,7 +7565,7 @@ declare class MenuComponent implements OnDestroy {
|
|
|
7477
7565
|
private set __menuItemList(value);
|
|
7478
7566
|
private readonly _menuItemList;
|
|
7479
7567
|
private set __orientation(value);
|
|
7480
|
-
readonly orientation: i0.WritableSignal<"
|
|
7568
|
+
readonly orientation: i0.WritableSignal<"horizontal" | "vertical">;
|
|
7481
7569
|
menuSearchTemplate: i0.Signal<MenuSearchTemplateDirective | undefined>;
|
|
7482
7570
|
searchInput: i0.Signal<InputDirective<unknown, HTMLElement> | undefined>;
|
|
7483
7571
|
hostClassBindings: {
|
|
@@ -7667,7 +7755,7 @@ declare class MenuStack {
|
|
|
7667
7755
|
length(): number;
|
|
7668
7756
|
peek(): MenuStackItem | undefined;
|
|
7669
7757
|
hasInlineMenu(): boolean;
|
|
7670
|
-
inlineMenuOrientation(): "
|
|
7758
|
+
inlineMenuOrientation(): "horizontal" | "vertical" | null;
|
|
7671
7759
|
setHasFocus(hasFocus: boolean): void;
|
|
7672
7760
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuStack, never>;
|
|
7673
7761
|
static ɵprov: i0.ɵɵInjectableDeclaration<MenuStack>;
|
|
@@ -10500,5 +10588,5 @@ declare const createNavigationDismissChecker: <T extends AbstractControl>(config
|
|
|
10500
10588
|
|
|
10501
10589
|
declare const injectRouterNavigationState: <T>() => T | null;
|
|
10502
10590
|
|
|
10503
|
-
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 };
|
|
10504
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 };
|