@ethlete/cdk 4.62.0 → 4.63.1
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 +12 -5
- package/fesm2022/ethlete-cdk.mjs +1245 -1127
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +121 -61
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ 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
|
|
11
|
+
import * as _angular_common_module_d from '@angular/common/module.d';
|
|
12
12
|
import * as _ethlete_query from '@ethlete/query';
|
|
13
13
|
import { AnyQuery, AnyQueryCollection, EmptyObject, QueryResponseOf, QueryState, RequestError, ExperimentalQuery, SortDirection, Sort } from '@ethlete/query';
|
|
14
14
|
import * as i1 from '@ethlete/core';
|
|
@@ -19,7 +19,7 @@ import { Platform } from '@angular/cdk/platform';
|
|
|
19
19
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
20
20
|
import { ComponentType as ComponentType$1, ScrollStrategy, OverlayRef as OverlayRef$1, Overlay, PositionStrategy, ConnectedPosition } from '@angular/cdk/overlay';
|
|
21
21
|
import { Direction, Directionality } from '@angular/cdk/bidi';
|
|
22
|
-
import * as
|
|
22
|
+
import * as _angular_cdk_overlay_module_d from '@angular/cdk/overlay-module.d';
|
|
23
23
|
import { CdkDialogContainer, DialogRef as DialogRef$1, Dialog } from '@angular/cdk/dialog';
|
|
24
24
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
25
25
|
import { Location } from '@angular/common';
|
|
@@ -3576,6 +3576,9 @@ declare const createParticipantsMapBase: <TRoundData, TMatchData>(source: Bracke
|
|
|
3576
3576
|
type BracketRoundId = string & {
|
|
3577
3577
|
__brand: 'BracketRoundId';
|
|
3578
3578
|
};
|
|
3579
|
+
type BracketRoundShortId = string & {
|
|
3580
|
+
__brand: 'BracketRoundShortId';
|
|
3581
|
+
};
|
|
3579
3582
|
type BracketRoundPosition = number & {
|
|
3580
3583
|
__brand: 'BracketRoundPosition';
|
|
3581
3584
|
};
|
|
@@ -3612,6 +3615,7 @@ type NewBracketRoundBase<TRoundData> = {
|
|
|
3612
3615
|
logicalIndex: number;
|
|
3613
3616
|
type: BracketRoundType;
|
|
3614
3617
|
id: BracketRoundId;
|
|
3618
|
+
shortId: BracketRoundShortId;
|
|
3615
3619
|
data: TRoundData;
|
|
3616
3620
|
position: BracketRoundPosition;
|
|
3617
3621
|
name: string;
|
|
@@ -3644,6 +3648,9 @@ declare const createNewMatchParticipantBase: <TRoundData, TMatchData>(source: Br
|
|
|
3644
3648
|
type BracketMatchId = string & {
|
|
3645
3649
|
__brand: 'BracketMatchId';
|
|
3646
3650
|
};
|
|
3651
|
+
type BracketMatchShortId = string & {
|
|
3652
|
+
__brand: 'BracketMatchShortId';
|
|
3653
|
+
};
|
|
3647
3654
|
type BracketMatchPosition = number & {
|
|
3648
3655
|
__brand: 'BracketMatchPosition';
|
|
3649
3656
|
};
|
|
@@ -3652,6 +3659,7 @@ type NewBracketMatchBase<TMatchData> = {
|
|
|
3652
3659
|
data: TMatchData;
|
|
3653
3660
|
indexInRound: number;
|
|
3654
3661
|
id: BracketMatchId;
|
|
3662
|
+
shortId: BracketMatchShortId;
|
|
3655
3663
|
position: BracketMatchPosition;
|
|
3656
3664
|
winnerSide: MatchParticipantSide | null;
|
|
3657
3665
|
status: BracketMatchStatus;
|
|
@@ -3838,11 +3846,6 @@ declare class NewBracketDefaultRoundHeaderComponent<TRoundData = unknown, TMatch
|
|
|
3838
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>;
|
|
3839
3847
|
}
|
|
3840
3848
|
|
|
3841
|
-
type BracketGridDefinitions = {
|
|
3842
|
-
columnCount: number;
|
|
3843
|
-
rowCount: number;
|
|
3844
|
-
};
|
|
3845
|
-
|
|
3846
3849
|
type BracketRoundHeaderComponent<TRoundData, TMatchData> = ComponentType<{
|
|
3847
3850
|
bracketRound: InputSignal<NewBracketRound<TRoundData, TMatchData>>;
|
|
3848
3851
|
}>;
|
|
@@ -3855,8 +3858,10 @@ type BracketGridRoundItem<TRoundData, TMatchData> = {
|
|
|
3855
3858
|
layoutId: `${BracketRoundId}-layout`;
|
|
3856
3859
|
columnStart: number;
|
|
3857
3860
|
columnEnd: number;
|
|
3861
|
+
columnDefinitions: string;
|
|
3858
3862
|
rowStart: number;
|
|
3859
3863
|
rowEnd: number;
|
|
3864
|
+
rowDefinitions: string;
|
|
3860
3865
|
roundRelation: BracketRoundRelation<TRoundData, TMatchData>;
|
|
3861
3866
|
items: Map<BracketRoundId | BracketMatchId, BracketGridItem<TRoundData, TMatchData>>;
|
|
3862
3867
|
};
|
|
@@ -3890,12 +3895,62 @@ type BracketGridMatchItem<TRoundData, TMatchData> = {
|
|
|
3890
3895
|
};
|
|
3891
3896
|
type BracketGridItem<TRoundData, TMatchData> = BracketGridRoundHeaderItem<TRoundData, TMatchData> | BracketGridMatchItem<TRoundData, TMatchData>;
|
|
3892
3897
|
|
|
3898
|
+
type BracketGridDefinitions = {
|
|
3899
|
+
columnCount: number;
|
|
3900
|
+
rowCount: number;
|
|
3901
|
+
};
|
|
3902
|
+
|
|
3903
|
+
type DrawManDebugData = {
|
|
3904
|
+
position: BracketPosition;
|
|
3905
|
+
staticMeasurements: StaticMeasurements;
|
|
3906
|
+
};
|
|
3907
|
+
|
|
3908
|
+
type StaticMeasurements = {
|
|
3909
|
+
/** Width of one column */
|
|
3910
|
+
columnWidth: number;
|
|
3911
|
+
/** Height of one match */
|
|
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;
|
|
3932
|
+
};
|
|
3933
|
+
type BracketPosition = {
|
|
3934
|
+
inline: {
|
|
3935
|
+
start: number;
|
|
3936
|
+
end: number;
|
|
3937
|
+
center: number;
|
|
3938
|
+
};
|
|
3939
|
+
block: {
|
|
3940
|
+
start: number;
|
|
3941
|
+
end: number;
|
|
3942
|
+
center: number;
|
|
3943
|
+
};
|
|
3944
|
+
};
|
|
3945
|
+
|
|
3893
3946
|
declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
3894
3947
|
private domSanitizer;
|
|
3895
3948
|
private elementId;
|
|
3896
3949
|
source: i0.InputSignal<BracketDataSource<TRoundData, TMatchData>>;
|
|
3897
3950
|
columnWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3898
3951
|
matchHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3952
|
+
finalMatchHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3953
|
+
finalColumnWidth: i0.InputSignalWithTransform<number, unknown>;
|
|
3899
3954
|
roundHeaderHeight: i0.InputSignalWithTransform<number, unknown>;
|
|
3900
3955
|
columnGap: i0.InputSignalWithTransform<number, unknown>;
|
|
3901
3956
|
rowGap: i0.InputSignalWithTransform<number, unknown>;
|
|
@@ -3906,6 +3961,7 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3906
3961
|
lineDashArray: i0.InputSignalWithTransform<number, unknown>;
|
|
3907
3962
|
lineDashOffset: i0.InputSignalWithTransform<number, unknown>;
|
|
3908
3963
|
disableJourneyHighlight: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3964
|
+
debug: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3909
3965
|
layout: i0.InputSignal<BracketDataLayout>;
|
|
3910
3966
|
hideRoundHeaders: i0.InputSignalWithTransform<boolean, unknown>;
|
|
3911
3967
|
roundHeaderComponent: i0.InputSignal<BracketRoundHeaderComponent<TRoundData, TMatchData> | undefined>;
|
|
@@ -3916,12 +3972,16 @@ declare class NewBracketComponent<TRoundData = unknown, TMatchData = unknown> {
|
|
|
3916
3972
|
items: i0.Signal<Map<BracketRoundId, BracketGridRoundItem<TRoundData, TMatchData>>>;
|
|
3917
3973
|
definitions: i0.Signal<BracketGridDefinitions>;
|
|
3918
3974
|
firstRounds: i0.Signal<FirstRounds<TRoundData, TMatchData>>;
|
|
3919
|
-
drawManData: i0.Signal<
|
|
3975
|
+
drawManData: i0.Signal<{
|
|
3976
|
+
svg: string;
|
|
3977
|
+
debugMap: Record<BracketMatchId, DrawManDebugData>;
|
|
3978
|
+
}>;
|
|
3979
|
+
svgContent: i0.Signal<_angular_platform_browser.SafeHtml>;
|
|
3920
3980
|
journeyHighlight: i0.Signal<string | null>;
|
|
3921
3981
|
constructor();
|
|
3922
3982
|
private setupJourneyHighlight;
|
|
3923
3983
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewBracketComponent<any, any>, never>;
|
|
3924
|
-
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; }; "roundHeaderHeight": { "alias": "roundHeaderHeight"; "required": false; "isSignal": true; }; "columnGap": { "alias": "columnGap"; "required": false; "isSignal": true; }; "rowGap": { "alias": "rowGap"; "required": false; "isSignal": true; }; "upperLowerGap": { "alias": "upperLowerGap"; "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; }; "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>;
|
|
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; }; "upperLowerGap": { "alias": "upperLowerGap"; "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; }; "debug": { "alias": "debug"; "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>;
|
|
3925
3985
|
}
|
|
3926
3986
|
|
|
3927
3987
|
declare const index_d_BRACKET_DATA_LAYOUT: typeof BRACKET_DATA_LAYOUT;
|
|
@@ -3932,11 +3992,13 @@ type index_d_BracketMap<K, V> = BracketMap<K, V>;
|
|
|
3932
3992
|
declare const index_d_BracketMap: typeof BracketMap;
|
|
3933
3993
|
type index_d_BracketMatchId = BracketMatchId;
|
|
3934
3994
|
type index_d_BracketMatchPosition = BracketMatchPosition;
|
|
3995
|
+
type index_d_BracketMatchShortId = BracketMatchShortId;
|
|
3935
3996
|
type index_d_BracketMatchSource<TMatchData> = BracketMatchSource<TMatchData>;
|
|
3936
3997
|
type index_d_BracketMatchStatus = BracketMatchStatus;
|
|
3937
3998
|
type index_d_BracketRoundId = BracketRoundId;
|
|
3938
3999
|
type index_d_BracketRoundMirrorType = BracketRoundMirrorType;
|
|
3939
4000
|
type index_d_BracketRoundPosition = BracketRoundPosition;
|
|
4001
|
+
type index_d_BracketRoundShortId = BracketRoundShortId;
|
|
3940
4002
|
type index_d_BracketRoundSource<TRoundData> = BracketRoundSource<TRoundData>;
|
|
3941
4003
|
type index_d_BracketRoundType = BracketRoundType;
|
|
3942
4004
|
declare const index_d_COMMON_BRACKET_ROUND_TYPE: typeof COMMON_BRACKET_ROUND_TYPE;
|
|
@@ -3985,7 +4047,7 @@ declare const index_d_generateTournamentModeFormEthleteRounds: typeof generateTo
|
|
|
3985
4047
|
declare const index_d_generateTournamentModeFormGgData: typeof generateTournamentModeFormGgData;
|
|
3986
4048
|
declare namespace index_d {
|
|
3987
4049
|
export { index_d_BRACKET_DATA_LAYOUT as BRACKET_DATA_LAYOUT, index_d_BRACKET_ROUND_MIRROR_TYPE as BRACKET_ROUND_MIRROR_TYPE, index_d_BracketMap as BracketMap, index_d_COMMON_BRACKET_ROUND_TYPE as COMMON_BRACKET_ROUND_TYPE, index_d_DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE as DOUBLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_GROUP_BRACKET_ROUND_TYPE as GROUP_BRACKET_ROUND_TYPE, index_d_NewBracketComponent as NewBracketComponent, index_d_NewBracketDefaultMatchComponent as NewBracketDefaultMatchComponent, index_d_NewBracketDefaultRoundHeaderComponent as NewBracketDefaultRoundHeaderComponent, index_d_SINGLE_ELIMINATION_BRACKET_ROUND_TYPE as SINGLE_ELIMINATION_BRACKET_ROUND_TYPE, index_d_SWISS_BRACKET_ROUND_TYPE as SWISS_BRACKET_ROUND_TYPE, index_d_TOURNAMENT_MODE as TOURNAMENT_MODE, index_d_canRenderLayoutInTournamentMode as canRenderLayoutInTournamentMode, index_d_createMatchesMapBase as createMatchesMapBase, index_d_createNewBracketBase as createNewBracketBase, index_d_createNewMatchParticipantBase as createNewMatchParticipantBase, index_d_createParticipantsMapBase as createParticipantsMapBase, index_d_createRoundsMapBase as createRoundsMapBase, index_d_generateBracketDataForEthlete as generateBracketDataForEthlete, index_d_generateBracketDataForGg as generateBracketDataForGg, index_d_generateRoundTypeFromEthleteRoundType as generateRoundTypeFromEthleteRoundType, index_d_generateRoundTypeFromGgMatch as generateRoundTypeFromGgMatch, index_d_generateTournamentModeFormEthleteRounds as generateTournamentModeFormEthleteRounds, index_d_generateTournamentModeFormGgData as generateTournamentModeFormGgData };
|
|
3988
|
-
export type { index_d_BracketDataLayout as BracketDataLayout, index_d_BracketDataSource as BracketDataSource, index_d_BracketMatchId as BracketMatchId, index_d_BracketMatchPosition as BracketMatchPosition, index_d_BracketMatchSource as BracketMatchSource, index_d_BracketMatchStatus as BracketMatchStatus, index_d_BracketRoundId as BracketRoundId, index_d_BracketRoundMirrorType as BracketRoundMirrorType, index_d_BracketRoundPosition as BracketRoundPosition, index_d_BracketRoundSource as BracketRoundSource, index_d_BracketRoundType as BracketRoundType, index_d_CommonBracketRoundType as CommonBracketRoundType, index_d_DoubleEliminationBracketRoundType as DoubleEliminationBracketRoundType, index_d_GenerateBracketDataOptions as GenerateBracketDataOptions, index_d_GroupBracketRoundType as GroupBracketRoundType, index_d_MatchParticipantId as MatchParticipantId, index_d_MatchParticipantShortId as MatchParticipantShortId, index_d_MatchParticipantSide as MatchParticipantSide, index_d_NewBracketBase as NewBracketBase, index_d_NewBracketMatchBase as NewBracketMatchBase, index_d_NewBracketMatchParticipantBase as NewBracketMatchParticipantBase, index_d_NewBracketMatchParticipantWithRelationsBase as NewBracketMatchParticipantWithRelationsBase, index_d_NewBracketMatchWithRelationsBase as NewBracketMatchWithRelationsBase, index_d_NewBracketParticipantBase as NewBracketParticipantBase, index_d_NewBracketParticipantWithRelationsBase as NewBracketParticipantWithRelationsBase, index_d_NewBracketRoundBase as NewBracketRoundBase, index_d_NewBracketRoundWithRelationsBase as NewBracketRoundWithRelationsBase, index_d_ParticipantMatchResult as ParticipantMatchResult, index_d_SingleEliminationBracketRoundType as SingleEliminationBracketRoundType, index_d_SwissBracketRoundType as SwissBracketRoundType, index_d_TournamentMode as TournamentMode };
|
|
4050
|
+
export type { index_d_BracketDataLayout as BracketDataLayout, index_d_BracketDataSource as BracketDataSource, index_d_BracketMatchId as BracketMatchId, index_d_BracketMatchPosition as BracketMatchPosition, index_d_BracketMatchShortId as BracketMatchShortId, index_d_BracketMatchSource as BracketMatchSource, index_d_BracketMatchStatus as BracketMatchStatus, index_d_BracketRoundId as BracketRoundId, index_d_BracketRoundMirrorType as BracketRoundMirrorType, index_d_BracketRoundPosition as BracketRoundPosition, index_d_BracketRoundShortId as BracketRoundShortId, index_d_BracketRoundSource as BracketRoundSource, index_d_BracketRoundType as BracketRoundType, index_d_CommonBracketRoundType as CommonBracketRoundType, index_d_DoubleEliminationBracketRoundType as DoubleEliminationBracketRoundType, index_d_GenerateBracketDataOptions as GenerateBracketDataOptions, index_d_GroupBracketRoundType as GroupBracketRoundType, index_d_MatchParticipantId as MatchParticipantId, index_d_MatchParticipantShortId as MatchParticipantShortId, index_d_MatchParticipantSide as MatchParticipantSide, index_d_NewBracketBase as NewBracketBase, index_d_NewBracketMatchBase as NewBracketMatchBase, index_d_NewBracketMatchParticipantBase as NewBracketMatchParticipantBase, index_d_NewBracketMatchParticipantWithRelationsBase as NewBracketMatchParticipantWithRelationsBase, index_d_NewBracketMatchWithRelationsBase as NewBracketMatchWithRelationsBase, index_d_NewBracketParticipantBase as NewBracketParticipantBase, index_d_NewBracketParticipantWithRelationsBase as NewBracketParticipantWithRelationsBase, index_d_NewBracketRoundBase as NewBracketRoundBase, index_d_NewBracketRoundWithRelationsBase as NewBracketRoundWithRelationsBase, index_d_ParticipantMatchResult as ParticipantMatchResult, index_d_SingleEliminationBracketRoundType as SingleEliminationBracketRoundType, index_d_SwissBracketRoundType as SwissBracketRoundType, index_d_TournamentMode as TournamentMode };
|
|
3989
4051
|
}
|
|
3990
4052
|
|
|
3991
4053
|
declare const BRACKET_TOKEN: InjectionToken<BracketComponent>;
|
|
@@ -4061,7 +4123,7 @@ declare class QueryButtonDirective {
|
|
|
4061
4123
|
newQuery: {
|
|
4062
4124
|
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4063
4125
|
response: i0.Signal<any>;
|
|
4064
|
-
latestHttpEvent: i0.Signal<
|
|
4126
|
+
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4065
4127
|
loading: i0.Signal<{
|
|
4066
4128
|
executeTime: number;
|
|
4067
4129
|
progress: {
|
|
@@ -4073,14 +4135,14 @@ declare class QueryButtonDirective {
|
|
|
4073
4135
|
} | null;
|
|
4074
4136
|
} | null>;
|
|
4075
4137
|
error: i0.Signal<({
|
|
4076
|
-
raw:
|
|
4138
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4077
4139
|
retryState: {
|
|
4078
4140
|
retry: false;
|
|
4079
4141
|
} | {
|
|
4080
4142
|
retry: true;
|
|
4081
4143
|
delay: number;
|
|
4082
4144
|
};
|
|
4083
|
-
code:
|
|
4145
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4084
4146
|
} & ({
|
|
4085
4147
|
isList: true;
|
|
4086
4148
|
errors: {
|
|
@@ -4097,14 +4159,14 @@ declare class QueryButtonDirective {
|
|
|
4097
4159
|
executionState: i0.Signal<({
|
|
4098
4160
|
type: "failure";
|
|
4099
4161
|
error: {
|
|
4100
|
-
raw:
|
|
4162
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4101
4163
|
retryState: {
|
|
4102
4164
|
retry: false;
|
|
4103
4165
|
} | {
|
|
4104
4166
|
retry: true;
|
|
4105
4167
|
delay: number;
|
|
4106
4168
|
};
|
|
4107
|
-
code:
|
|
4169
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4108
4170
|
} & ({
|
|
4109
4171
|
isList: true;
|
|
4110
4172
|
errors: {
|
|
@@ -4157,7 +4219,7 @@ declare class QueryButtonDirective {
|
|
|
4157
4219
|
createSnapshot: () => {
|
|
4158
4220
|
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4159
4221
|
response: i0.Signal<any>;
|
|
4160
|
-
latestHttpEvent: i0.Signal<
|
|
4222
|
+
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4161
4223
|
loading: i0.Signal<{
|
|
4162
4224
|
executeTime: number;
|
|
4163
4225
|
progress: {
|
|
@@ -4169,14 +4231,14 @@ declare class QueryButtonDirective {
|
|
|
4169
4231
|
} | null;
|
|
4170
4232
|
} | null>;
|
|
4171
4233
|
error: i0.Signal<({
|
|
4172
|
-
raw:
|
|
4234
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4173
4235
|
retryState: {
|
|
4174
4236
|
retry: false;
|
|
4175
4237
|
} | {
|
|
4176
4238
|
retry: true;
|
|
4177
4239
|
delay: number;
|
|
4178
4240
|
};
|
|
4179
|
-
code:
|
|
4241
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4180
4242
|
} & ({
|
|
4181
4243
|
isList: true;
|
|
4182
4244
|
errors: {
|
|
@@ -4193,14 +4255,14 @@ declare class QueryButtonDirective {
|
|
|
4193
4255
|
executionState: i0.Signal<({
|
|
4194
4256
|
type: "failure";
|
|
4195
4257
|
error: {
|
|
4196
|
-
raw:
|
|
4258
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4197
4259
|
retryState: {
|
|
4198
4260
|
retry: false;
|
|
4199
4261
|
} | {
|
|
4200
4262
|
retry: true;
|
|
4201
4263
|
delay: number;
|
|
4202
4264
|
};
|
|
4203
|
-
code:
|
|
4265
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4204
4266
|
} & ({
|
|
4205
4267
|
isList: true;
|
|
4206
4268
|
errors: {
|
|
@@ -4249,14 +4311,14 @@ declare class QueryButtonDirective {
|
|
|
4249
4311
|
reset: () => void;
|
|
4250
4312
|
asReadonly: () => {
|
|
4251
4313
|
error: i0.Signal<({
|
|
4252
|
-
raw:
|
|
4314
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4253
4315
|
retryState: {
|
|
4254
4316
|
retry: false;
|
|
4255
4317
|
} | {
|
|
4256
4318
|
retry: true;
|
|
4257
4319
|
delay: number;
|
|
4258
4320
|
};
|
|
4259
|
-
code:
|
|
4321
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4260
4322
|
} & ({
|
|
4261
4323
|
isList: true;
|
|
4262
4324
|
errors: {
|
|
@@ -4281,19 +4343,19 @@ declare class QueryButtonDirective {
|
|
|
4281
4343
|
} | null;
|
|
4282
4344
|
} | null>;
|
|
4283
4345
|
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4284
|
-
latestHttpEvent: i0.Signal<
|
|
4346
|
+
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4285
4347
|
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4286
4348
|
executionState: i0.Signal<({
|
|
4287
4349
|
type: "failure";
|
|
4288
4350
|
error: {
|
|
4289
|
-
raw:
|
|
4351
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4290
4352
|
retryState: {
|
|
4291
4353
|
retry: false;
|
|
4292
4354
|
} | {
|
|
4293
4355
|
retry: true;
|
|
4294
4356
|
delay: number;
|
|
4295
4357
|
};
|
|
4296
|
-
code:
|
|
4358
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4297
4359
|
} & ({
|
|
4298
4360
|
isList: true;
|
|
4299
4361
|
errors: {
|
|
@@ -4339,7 +4401,7 @@ declare class QueryButtonDirective {
|
|
|
4339
4401
|
createSnapshot: () => {
|
|
4340
4402
|
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4341
4403
|
response: i0.Signal<any>;
|
|
4342
|
-
latestHttpEvent: i0.Signal<
|
|
4404
|
+
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4343
4405
|
loading: i0.Signal<{
|
|
4344
4406
|
executeTime: number;
|
|
4345
4407
|
progress: {
|
|
@@ -4351,14 +4413,14 @@ declare class QueryButtonDirective {
|
|
|
4351
4413
|
} | null;
|
|
4352
4414
|
} | null>;
|
|
4353
4415
|
error: i0.Signal<({
|
|
4354
|
-
raw:
|
|
4416
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4355
4417
|
retryState: {
|
|
4356
4418
|
retry: false;
|
|
4357
4419
|
} | {
|
|
4358
4420
|
retry: true;
|
|
4359
4421
|
delay: number;
|
|
4360
4422
|
};
|
|
4361
|
-
code:
|
|
4423
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4362
4424
|
} & ({
|
|
4363
4425
|
isList: true;
|
|
4364
4426
|
errors: {
|
|
@@ -4375,14 +4437,14 @@ declare class QueryButtonDirective {
|
|
|
4375
4437
|
executionState: i0.Signal<({
|
|
4376
4438
|
type: "failure";
|
|
4377
4439
|
error: {
|
|
4378
|
-
raw:
|
|
4440
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4379
4441
|
retryState: {
|
|
4380
4442
|
retry: false;
|
|
4381
4443
|
} | {
|
|
4382
4444
|
retry: true;
|
|
4383
4445
|
delay: number;
|
|
4384
4446
|
};
|
|
4385
|
-
code:
|
|
4447
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4386
4448
|
} & ({
|
|
4387
4449
|
isList: true;
|
|
4388
4450
|
errors: {
|
|
@@ -4448,14 +4510,14 @@ declare class QueryButtonDirective {
|
|
|
4448
4510
|
} | null;
|
|
4449
4511
|
} | null>;
|
|
4450
4512
|
error: i0.Signal<({
|
|
4451
|
-
raw:
|
|
4513
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4452
4514
|
retryState: {
|
|
4453
4515
|
retry: false;
|
|
4454
4516
|
} | {
|
|
4455
4517
|
retry: true;
|
|
4456
4518
|
delay: number;
|
|
4457
4519
|
};
|
|
4458
|
-
code:
|
|
4520
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4459
4521
|
} & ({
|
|
4460
4522
|
isList: true;
|
|
4461
4523
|
errors: {
|
|
@@ -4471,14 +4533,14 @@ declare class QueryButtonDirective {
|
|
|
4471
4533
|
currentEvent: i0.Signal<{
|
|
4472
4534
|
type: "error";
|
|
4473
4535
|
error: {
|
|
4474
|
-
raw:
|
|
4536
|
+
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4475
4537
|
retryState: {
|
|
4476
4538
|
retry: false;
|
|
4477
4539
|
} | {
|
|
4478
4540
|
retry: true;
|
|
4479
4541
|
delay: number;
|
|
4480
4542
|
};
|
|
4481
|
-
code:
|
|
4543
|
+
code: _angular_common_module_d.HttpStatusCode;
|
|
4482
4544
|
} & ({
|
|
4483
4545
|
isList: true;
|
|
4484
4546
|
errors: {
|
|
@@ -4490,7 +4552,7 @@ declare class QueryButtonDirective {
|
|
|
4490
4552
|
message: string;
|
|
4491
4553
|
};
|
|
4492
4554
|
});
|
|
4493
|
-
} |
|
|
4555
|
+
} | _angular_common_module_d.HttpEvent<any> | null>;
|
|
4494
4556
|
isStale: i0.Signal<boolean>;
|
|
4495
4557
|
} | null>;
|
|
4496
4558
|
destroyRef: i0.DestroyRef;
|
|
@@ -4500,14 +4562,14 @@ declare class QueryButtonDirective {
|
|
|
4500
4562
|
_arguments: Omit<any, "response">;
|
|
4501
4563
|
entity?: _ethlete_query.QueryEntityConfig<any, any, any, LegacyArgs, any> | undefined;
|
|
4502
4564
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4565
|
+
get rawState(): _ethlete_query.QueryState<any>;
|
|
4566
|
+
get isExpired(): boolean | undefined;
|
|
4567
|
+
get isInUse(): boolean;
|
|
4568
|
+
get isPolling(): boolean;
|
|
4569
|
+
get autoRefreshOnConfig(): Readonly<_ethlete_query.QueryAutoRefreshConfig>;
|
|
4570
|
+
get store(): null;
|
|
4571
|
+
get canBeCached(): boolean;
|
|
4572
|
+
get _isInMockMode(): boolean;
|
|
4511
4573
|
destroy(): void;
|
|
4512
4574
|
execute(options?: _ethlete_query.ExecuteQueryOptions): /*elided*/ any;
|
|
4513
4575
|
abort(): /*elided*/ any;
|
|
@@ -5547,13 +5609,11 @@ declare class RadioGroupDirective {
|
|
|
5547
5609
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective, never, ["etRadioGroup"], {}, {}, never, never, true, never>;
|
|
5548
5610
|
}
|
|
5549
5611
|
|
|
5550
|
-
type RadioValue = string | number | boolean | null;
|
|
5551
|
-
|
|
5552
5612
|
declare const RADIO_TOKEN: InjectionToken<RadioDirective>;
|
|
5553
5613
|
declare class RadioDirective {
|
|
5554
|
-
readonly input: InputDirective<
|
|
5555
|
-
get value():
|
|
5556
|
-
set value(value:
|
|
5614
|
+
readonly input: InputDirective<unknown, HTMLElement>;
|
|
5615
|
+
get value(): unknown;
|
|
5616
|
+
set value(value: unknown);
|
|
5557
5617
|
private _value$;
|
|
5558
5618
|
get disabled(): boolean;
|
|
5559
5619
|
set disabled(value: unknown);
|
|
@@ -5582,7 +5642,7 @@ declare class RadioComponent extends InputBase {
|
|
|
5582
5642
|
|
|
5583
5643
|
declare const RADIO_FIELD_TOKEN: InjectionToken<RadioFieldDirective>;
|
|
5584
5644
|
declare class RadioFieldDirective {
|
|
5585
|
-
readonly inputState: InputStateService<
|
|
5645
|
+
readonly inputState: InputStateService<unknown, HTMLElement>;
|
|
5586
5646
|
set radio(radio: TypedQueryList<RadioDirective>);
|
|
5587
5647
|
private _radio$;
|
|
5588
5648
|
readonly radioQueryList$: rxjs.Observable<TypedQueryList<RadioDirective> | null>;
|
|
@@ -6982,7 +7042,7 @@ declare const BottomSheetImports: readonly [typeof BottomSheetContainerComponent
|
|
|
6982
7042
|
* @deprecated Will be removed in v5.
|
|
6983
7043
|
*/
|
|
6984
7044
|
declare const provideBottomSheet: () => (typeof Dialog | {
|
|
6985
|
-
provide: i0.InjectionToken<() =>
|
|
7045
|
+
provide: i0.InjectionToken<() => _angular_cdk_overlay_module_d.ScrollStrategy>;
|
|
6986
7046
|
deps: typeof i0.Injector[];
|
|
6987
7047
|
useFactory: typeof BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY;
|
|
6988
7048
|
} | typeof BottomSheetService)[];
|
|
@@ -7331,7 +7391,7 @@ declare const DialogImports: readonly [typeof DialogContainerComponent, typeof D
|
|
|
7331
7391
|
* @deprecated Will be removed in v5.
|
|
7332
7392
|
*/
|
|
7333
7393
|
declare const provideDialog: () => (typeof Dialog | {
|
|
7334
|
-
provide: i0.InjectionToken<() =>
|
|
7394
|
+
provide: i0.InjectionToken<() => _angular_cdk_overlay_module_d.ScrollStrategy>;
|
|
7335
7395
|
deps: typeof i0.Injector[];
|
|
7336
7396
|
useFactory: typeof DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY;
|
|
7337
7397
|
} | typeof DialogService)[];
|
|
@@ -8362,7 +8422,7 @@ declare class OverlayPositionBuilder {
|
|
|
8362
8422
|
minHeight: undefined;
|
|
8363
8423
|
minWidth: undefined;
|
|
8364
8424
|
containerClass: string;
|
|
8365
|
-
positionStrategy: (origin?: HTMLElement) =>
|
|
8425
|
+
positionStrategy: (origin?: HTMLElement) => _angular_cdk_overlay_module_d.FlexibleConnectedPositionStrategy;
|
|
8366
8426
|
};
|
|
8367
8427
|
};
|
|
8368
8428
|
transformingBottomSheetToDialog(customConfig?: {
|
|
@@ -9404,14 +9464,14 @@ declare class QueryErrorDirective {
|
|
|
9404
9464
|
_arguments: Omit<any, "response">;
|
|
9405
9465
|
entity?: _ethlete_query.QueryEntityConfig<any, any, any, LegacyArgs, any> | undefined;
|
|
9406
9466
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
9407
|
-
|
|
9408
|
-
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
|
|
9413
|
-
|
|
9414
|
-
|
|
9467
|
+
get rawState(): _ethlete_query.QueryState<any>;
|
|
9468
|
+
get isExpired(): boolean | undefined;
|
|
9469
|
+
get isInUse(): boolean;
|
|
9470
|
+
get isPolling(): boolean;
|
|
9471
|
+
get autoRefreshOnConfig(): Readonly<_ethlete_query.QueryAutoRefreshConfig>;
|
|
9472
|
+
get store(): null;
|
|
9473
|
+
get canBeCached(): boolean;
|
|
9474
|
+
get _isInMockMode(): boolean;
|
|
9415
9475
|
destroy(): void;
|
|
9416
9476
|
execute(options?: _ethlete_query.ExecuteQueryOptions): /*elided*/ any;
|
|
9417
9477
|
abort(): /*elided*/ any;
|
|
@@ -10441,4 +10501,4 @@ declare const createNavigationDismissChecker: <T extends AbstractControl>(config
|
|
|
10441
10501
|
declare const injectRouterNavigationState: <T>() => T | null;
|
|
10442
10502
|
|
|
10443
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 };
|
|
10444
|
-
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,
|
|
10504
|
+
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/cdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.63.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@angular/animations": "20.
|
|
18
|
-
"@angular/cdk": "20.
|
|
19
|
-
"@angular/common": "20.
|
|
20
|
-
"@angular/core": "20.
|
|
21
|
-
"@angular/forms": "20.
|
|
22
|
-
"@angular/platform-browser": "20.
|
|
23
|
-
"@angular/router": "20.
|
|
17
|
+
"@angular/animations": "20.2.2",
|
|
18
|
+
"@angular/cdk": "20.2.1",
|
|
19
|
+
"@angular/common": "20.2.2",
|
|
20
|
+
"@angular/core": "20.2.2",
|
|
21
|
+
"@angular/forms": "20.2.2",
|
|
22
|
+
"@angular/platform-browser": "20.2.2",
|
|
23
|
+
"@angular/router": "20.2.2",
|
|
24
24
|
"@ethlete/core": "^4.0.3",
|
|
25
25
|
"@ethlete/query": "^5.0.3",
|
|
26
26
|
"@ethlete/types": "^1.6.2",
|
|
27
|
-
"@floating-ui/dom": "1.7.
|
|
27
|
+
"@floating-ui/dom": "1.7.4",
|
|
28
28
|
"date-fns": "4.1.0",
|
|
29
29
|
"rxjs": "7.8.2"
|
|
30
30
|
},
|