@ethlete/cdk 4.67.0 → 4.69.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/index.d.ts CHANGED
@@ -3726,7 +3726,9 @@ type BracketRoundRelationTwoToNothing<TRoundData, TMatchData> = {
3726
3726
  lowerRootRoundMatchFactor: number;
3727
3727
  };
3728
3728
  type BracketRoundRelation<TRoundData, TMatchData> = BracketRoundRelationNothingToOne<TRoundData, TMatchData> | BracketRoundRelationOneToNothing<TRoundData, TMatchData> | BracketRoundRelationOneToOne<TRoundData, TMatchData> | BracketRoundRelationTwoToOne<TRoundData, TMatchData> | BracketRoundRelationTwoToNothing<TRoundData, TMatchData>;
3729
+ declare const generateRoundRelationsNew: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketRoundRelation<TRoundData, TMatchData>[];
3729
3730
 
3731
+ type BracketMatchFactor = number;
3730
3732
  type BracketMatchRelationOneToOne<TRoundData, TMatchData> = {
3731
3733
  type: 'one-to-one';
3732
3734
  currentMatch: NewBracketMatch<TRoundData, TMatchData>;
@@ -3771,6 +3773,14 @@ type BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = {
3771
3773
  previousLowerRound: NewBracketRound<TRoundData, TMatchData>;
3772
3774
  };
3773
3775
  type BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData> | BracketMatchRelationTwoToOne<TRoundData, TMatchData> | BracketMatchRelationNothingToOne<TRoundData, TMatchData> | BracketMatchRelationOneToNothing<TRoundData, TMatchData> | BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
3776
+ type MatchPositionMaps<TRoundData, TMatchData> = Map<BracketRoundId, Map<BracketMatchPosition, NewBracketMatch<TRoundData, TMatchData>>>;
3777
+ declare const generateMatchPosition: (match: NewBracketMatch<unknown, unknown>, factor: BracketMatchFactor) => BracketMatchPosition;
3778
+ declare const generateMatchRelationPositions: <TRoundData, TMatchData>(relation: BracketRoundRelation<TRoundData, TMatchData>, match: NewBracketMatch<TRoundData, TMatchData>) => {
3779
+ nextRoundMatchPosition: BracketMatchPosition;
3780
+ previousUpperRoundMatchPosition: BracketMatchPosition;
3781
+ previousLowerRoundMatchPosition: BracketMatchPosition;
3782
+ };
3783
+ declare const generateMatchRelationsNew: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketMatchRelation<TRoundData, TMatchData>[];
3774
3784
 
3775
3785
  type NewBracket<TRoundData, TMatchData> = {
3776
3786
  rounds: BracketMap<BracketRoundId, NewBracketRound<TRoundData, TMatchData>>;
@@ -3800,6 +3810,9 @@ type NewBracketParticipant<TRoundData, TMatchData> = NewBracketParticipantBase &
3800
3810
  type NewBracketMatchParticipant<TRoundData, TMatchData> = NewBracketMatchParticipantBase & {
3801
3811
  matches: BracketMap<BracketMatchId, NewBracketMatch<TRoundData, TMatchData>>;
3802
3812
  };
3813
+ declare const createNewBracket: <TRoundData, TMatchData>(source: BracketDataSource<TRoundData, TMatchData>, options: GenerateBracketDataOptions) => NewBracket<TRoundData, TMatchData>;
3814
+
3815
+ declare const logRoundRelations: (bracketData: NewBracket<unknown, unknown>) => void;
3803
3816
 
3804
3817
  type BracketRoundSwissGroupId = string & {
3805
3818
  __brand: 'BracketRoundSwissGroupId';
@@ -3815,6 +3828,12 @@ type BracketRoundSwissData<TRoundData, TMatchData> = {
3815
3828
  groups: BracketRoundSwissGroupMap<TRoundData, TMatchData>;
3816
3829
  };
3817
3830
  type BracketRoundMapWithSwissData<TRoundData, TMatchData> = Map<BracketRoundId, BracketRoundSwissData<TRoundData, TMatchData>>;
3831
+ declare const getAvailableSwissGroupsForRound: (roundNumber: number, totalMatchesInRound: number) => {
3832
+ id: BracketRoundSwissGroupId;
3833
+ name: string;
3834
+ matchesInGroup: number;
3835
+ }[];
3836
+ declare const generateBracketRoundSwissGroupMaps: <TRoundData, TMatchData>(bracketData: NewBracket<TRoundData, TMatchData>) => BracketRoundMapWithSwissData<TRoundData, TMatchData> | null;
3818
3837
 
3819
3838
  declare class NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData = unknown> {
3820
3839
  bracketRound: i0.InputSignal<NewBracketRound<TRoundData, TMatchData>>;
@@ -4007,16 +4026,34 @@ type index_d_BracketDataLayout = BracketDataLayout;
4007
4026
  type index_d_BracketDataSource<TRoundData, TMatchData> = BracketDataSource<TRoundData, TMatchData>;
4008
4027
  type index_d_BracketMap<K, V> = BracketMap<K, V>;
4009
4028
  declare const index_d_BracketMap: typeof BracketMap;
4029
+ type index_d_BracketMatchFactor = BracketMatchFactor;
4010
4030
  type index_d_BracketMatchId = BracketMatchId;
4011
4031
  type index_d_BracketMatchPosition = BracketMatchPosition;
4032
+ type index_d_BracketMatchRelation<TRoundData, TMatchData> = BracketMatchRelation<TRoundData, TMatchData>;
4033
+ type index_d_BracketMatchRelationNothingToOne<TRoundData, TMatchData> = BracketMatchRelationNothingToOne<TRoundData, TMatchData>;
4034
+ type index_d_BracketMatchRelationOneToNothing<TRoundData, TMatchData> = BracketMatchRelationOneToNothing<TRoundData, TMatchData>;
4035
+ type index_d_BracketMatchRelationOneToOne<TRoundData, TMatchData> = BracketMatchRelationOneToOne<TRoundData, TMatchData>;
4036
+ type index_d_BracketMatchRelationTwoToNothing<TRoundData, TMatchData> = BracketMatchRelationTwoToNothing<TRoundData, TMatchData>;
4037
+ type index_d_BracketMatchRelationTwoToOne<TRoundData, TMatchData> = BracketMatchRelationTwoToOne<TRoundData, TMatchData>;
4012
4038
  type index_d_BracketMatchShortId = BracketMatchShortId;
4013
4039
  type index_d_BracketMatchSource<TMatchData> = BracketMatchSource<TMatchData>;
4014
4040
  type index_d_BracketMatchStatus = BracketMatchStatus;
4015
4041
  type index_d_BracketRoundId = BracketRoundId;
4042
+ type index_d_BracketRoundMapWithSwissData<TRoundData, TMatchData> = BracketRoundMapWithSwissData<TRoundData, TMatchData>;
4016
4043
  type index_d_BracketRoundMirrorType = BracketRoundMirrorType;
4017
4044
  type index_d_BracketRoundPosition = BracketRoundPosition;
4045
+ type index_d_BracketRoundRelation<TRoundData, TMatchData> = BracketRoundRelation<TRoundData, TMatchData>;
4046
+ type index_d_BracketRoundRelationNothingToOne<TRoundData, TMatchData> = BracketRoundRelationNothingToOne<TRoundData, TMatchData>;
4047
+ type index_d_BracketRoundRelationOneToNothing<TRoundData, TMatchData> = BracketRoundRelationOneToNothing<TRoundData, TMatchData>;
4048
+ type index_d_BracketRoundRelationOneToOne<TRoundData, TMatchData> = BracketRoundRelationOneToOne<TRoundData, TMatchData>;
4049
+ type index_d_BracketRoundRelationTwoToNothing<TRoundData, TMatchData> = BracketRoundRelationTwoToNothing<TRoundData, TMatchData>;
4050
+ type index_d_BracketRoundRelationTwoToOne<TRoundData, TMatchData> = BracketRoundRelationTwoToOne<TRoundData, TMatchData>;
4018
4051
  type index_d_BracketRoundShortId = BracketRoundShortId;
4019
4052
  type index_d_BracketRoundSource<TRoundData> = BracketRoundSource<TRoundData>;
4053
+ type index_d_BracketRoundSwissData<TRoundData, TMatchData> = BracketRoundSwissData<TRoundData, TMatchData>;
4054
+ type index_d_BracketRoundSwissGroup<TRoundData, TMatchData> = BracketRoundSwissGroup<TRoundData, TMatchData>;
4055
+ type index_d_BracketRoundSwissGroupId = BracketRoundSwissGroupId;
4056
+ type index_d_BracketRoundSwissGroupMap<TRoundData, TMatchData> = BracketRoundSwissGroupMap<TRoundData, TMatchData>;
4020
4057
  type index_d_BracketRoundType = BracketRoundType;
4021
4058
  declare const index_d_COMMON_BRACKET_ROUND_TYPE: typeof COMMON_BRACKET_ROUND_TYPE;
4022
4059
  type index_d_CommonBracketRoundType = CommonBracketRoundType;
@@ -4028,6 +4065,8 @@ type index_d_GroupBracketRoundType = GroupBracketRoundType;
4028
4065
  type index_d_MatchParticipantId = MatchParticipantId;
4029
4066
  type index_d_MatchParticipantShortId = MatchParticipantShortId;
4030
4067
  type index_d_MatchParticipantSide = MatchParticipantSide;
4068
+ type index_d_MatchPositionMaps<TRoundData, TMatchData> = MatchPositionMaps<TRoundData, TMatchData>;
4069
+ type index_d_NewBracket<TRoundData, TMatchData> = NewBracket<TRoundData, TMatchData>;
4031
4070
  type index_d_NewBracketBase<TRoundData, TMatchData> = NewBracketBase<TRoundData, TMatchData>;
4032
4071
  type index_d_NewBracketComponent<TRoundData = unknown, TMatchData = unknown> = NewBracketComponent<TRoundData, TMatchData>;
4033
4072
  declare const index_d_NewBracketComponent: typeof NewBracketComponent;
@@ -4035,12 +4074,17 @@ type index_d_NewBracketDefaultMatchComponent<TRoundData = unknown, TMatchData =
4035
4074
  declare const index_d_NewBracketDefaultMatchComponent: typeof NewBracketDefaultMatchComponent;
4036
4075
  type index_d_NewBracketDefaultRoundHeaderComponent<TRoundData = unknown, TMatchData = unknown> = NewBracketDefaultRoundHeaderComponent<TRoundData, TMatchData>;
4037
4076
  declare const index_d_NewBracketDefaultRoundHeaderComponent: typeof NewBracketDefaultRoundHeaderComponent;
4077
+ type index_d_NewBracketMatch<TRoundData, TMatchData> = NewBracketMatch<TRoundData, TMatchData>;
4038
4078
  type index_d_NewBracketMatchBase<TMatchData> = NewBracketMatchBase<TMatchData>;
4079
+ type index_d_NewBracketMatchParticipant<TRoundData, TMatchData> = NewBracketMatchParticipant<TRoundData, TMatchData>;
4039
4080
  type index_d_NewBracketMatchParticipantBase = NewBracketMatchParticipantBase;
4040
4081
  type index_d_NewBracketMatchParticipantWithRelationsBase = NewBracketMatchParticipantWithRelationsBase;
4041
4082
  type index_d_NewBracketMatchWithRelationsBase<TMatchData> = NewBracketMatchWithRelationsBase<TMatchData>;
4083
+ type index_d_NewBracketParticipant<TRoundData, TMatchData> = NewBracketParticipant<TRoundData, TMatchData>;
4042
4084
  type index_d_NewBracketParticipantBase = NewBracketParticipantBase;
4085
+ type index_d_NewBracketParticipantMatch<TRoundData, TMatchData> = NewBracketParticipantMatch<TRoundData, TMatchData>;
4043
4086
  type index_d_NewBracketParticipantWithRelationsBase = NewBracketParticipantWithRelationsBase;
4087
+ type index_d_NewBracketRound<TRoundData, TMatchData> = NewBracketRound<TRoundData, TMatchData>;
4044
4088
  type index_d_NewBracketRoundBase<TRoundData> = NewBracketRoundBase<TRoundData>;
4045
4089
  type index_d_NewBracketRoundWithRelationsBase<TRoundData> = NewBracketRoundWithRelationsBase<TRoundData>;
4046
4090
  type index_d_ParticipantMatchResult = ParticipantMatchResult;
@@ -4052,19 +4096,27 @@ declare const index_d_TOURNAMENT_MODE: typeof TOURNAMENT_MODE;
4052
4096
  type index_d_TournamentMode = TournamentMode;
4053
4097
  declare const index_d_canRenderLayoutInTournamentMode: typeof canRenderLayoutInTournamentMode;
4054
4098
  declare const index_d_createMatchesMapBase: typeof createMatchesMapBase;
4099
+ declare const index_d_createNewBracket: typeof createNewBracket;
4055
4100
  declare const index_d_createNewBracketBase: typeof createNewBracketBase;
4056
4101
  declare const index_d_createNewMatchParticipantBase: typeof createNewMatchParticipantBase;
4057
4102
  declare const index_d_createParticipantsMapBase: typeof createParticipantsMapBase;
4058
4103
  declare const index_d_createRoundsMapBase: typeof createRoundsMapBase;
4059
4104
  declare const index_d_generateBracketDataForEthlete: typeof generateBracketDataForEthlete;
4060
4105
  declare const index_d_generateBracketDataForGg: typeof generateBracketDataForGg;
4106
+ declare const index_d_generateBracketRoundSwissGroupMaps: typeof generateBracketRoundSwissGroupMaps;
4107
+ declare const index_d_generateMatchPosition: typeof generateMatchPosition;
4108
+ declare const index_d_generateMatchRelationPositions: typeof generateMatchRelationPositions;
4109
+ declare const index_d_generateMatchRelationsNew: typeof generateMatchRelationsNew;
4110
+ declare const index_d_generateRoundRelationsNew: typeof generateRoundRelationsNew;
4061
4111
  declare const index_d_generateRoundTypeFromEthleteRoundType: typeof generateRoundTypeFromEthleteRoundType;
4062
4112
  declare const index_d_generateRoundTypeFromGgMatch: typeof generateRoundTypeFromGgMatch;
4063
4113
  declare const index_d_generateTournamentModeFormEthleteRounds: typeof generateTournamentModeFormEthleteRounds;
4064
4114
  declare const index_d_generateTournamentModeFormGgData: typeof generateTournamentModeFormGgData;
4115
+ declare const index_d_getAvailableSwissGroupsForRound: typeof getAvailableSwissGroupsForRound;
4116
+ declare const index_d_logRoundRelations: typeof logRoundRelations;
4065
4117
  declare namespace index_d {
4066
- 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 };
4067
- 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 };
4118
+ 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_createNewBracket as createNewBracket, 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_generateBracketRoundSwissGroupMaps as generateBracketRoundSwissGroupMaps, index_d_generateMatchPosition as generateMatchPosition, index_d_generateMatchRelationPositions as generateMatchRelationPositions, index_d_generateMatchRelationsNew as generateMatchRelationsNew, index_d_generateRoundRelationsNew as generateRoundRelationsNew, index_d_generateRoundTypeFromEthleteRoundType as generateRoundTypeFromEthleteRoundType, index_d_generateRoundTypeFromGgMatch as generateRoundTypeFromGgMatch, index_d_generateTournamentModeFormEthleteRounds as generateTournamentModeFormEthleteRounds, index_d_generateTournamentModeFormGgData as generateTournamentModeFormGgData, index_d_getAvailableSwissGroupsForRound as getAvailableSwissGroupsForRound, index_d_logRoundRelations as logRoundRelations };
4119
+ export type { index_d_BracketDataLayout as BracketDataLayout, index_d_BracketDataSource as BracketDataSource, index_d_BracketMatchFactor as BracketMatchFactor, index_d_BracketMatchId as BracketMatchId, index_d_BracketMatchPosition as BracketMatchPosition, index_d_BracketMatchRelation as BracketMatchRelation, index_d_BracketMatchRelationNothingToOne as BracketMatchRelationNothingToOne, index_d_BracketMatchRelationOneToNothing as BracketMatchRelationOneToNothing, index_d_BracketMatchRelationOneToOne as BracketMatchRelationOneToOne, index_d_BracketMatchRelationTwoToNothing as BracketMatchRelationTwoToNothing, index_d_BracketMatchRelationTwoToOne as BracketMatchRelationTwoToOne, index_d_BracketMatchShortId as BracketMatchShortId, index_d_BracketMatchSource as BracketMatchSource, index_d_BracketMatchStatus as BracketMatchStatus, index_d_BracketRoundId as BracketRoundId, index_d_BracketRoundMapWithSwissData as BracketRoundMapWithSwissData, index_d_BracketRoundMirrorType as BracketRoundMirrorType, index_d_BracketRoundPosition as BracketRoundPosition, index_d_BracketRoundRelation as BracketRoundRelation, index_d_BracketRoundRelationNothingToOne as BracketRoundRelationNothingToOne, index_d_BracketRoundRelationOneToNothing as BracketRoundRelationOneToNothing, index_d_BracketRoundRelationOneToOne as BracketRoundRelationOneToOne, index_d_BracketRoundRelationTwoToNothing as BracketRoundRelationTwoToNothing, index_d_BracketRoundRelationTwoToOne as BracketRoundRelationTwoToOne, index_d_BracketRoundShortId as BracketRoundShortId, index_d_BracketRoundSource as BracketRoundSource, index_d_BracketRoundSwissData as BracketRoundSwissData, index_d_BracketRoundSwissGroup as BracketRoundSwissGroup, index_d_BracketRoundSwissGroupId as BracketRoundSwissGroupId, index_d_BracketRoundSwissGroupMap as BracketRoundSwissGroupMap, 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_MatchPositionMaps as MatchPositionMaps, index_d_NewBracket as NewBracket, index_d_NewBracketBase as NewBracketBase, index_d_NewBracketMatch as NewBracketMatch, index_d_NewBracketMatchBase as NewBracketMatchBase, index_d_NewBracketMatchParticipant as NewBracketMatchParticipant, index_d_NewBracketMatchParticipantBase as NewBracketMatchParticipantBase, index_d_NewBracketMatchParticipantWithRelationsBase as NewBracketMatchParticipantWithRelationsBase, index_d_NewBracketMatchWithRelationsBase as NewBracketMatchWithRelationsBase, index_d_NewBracketParticipant as NewBracketParticipant, index_d_NewBracketParticipantBase as NewBracketParticipantBase, index_d_NewBracketParticipantMatch as NewBracketParticipantMatch, index_d_NewBracketParticipantWithRelationsBase as NewBracketParticipantWithRelationsBase, index_d_NewBracketRound as NewBracketRound, 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 };
4068
4120
  }
4069
4121
 
4070
4122
  declare const BRACKET_TOKEN: InjectionToken<BracketComponent>;
@@ -9487,6 +9539,7 @@ declare class PictureComponent {
9487
9539
  imgError: i0.OutputRef<boolean>;
9488
9540
  sourcesWithConfig: i0.Signal<PictureSource[]>;
9489
9541
  defaultSourceWithConfig: i0.Signal<PictureSource | null>;
9542
+ defaultSrcFallbackUrl: i0.Signal<string | null>;
9490
9543
  _combineWithConfig(src: PictureSource): PictureSource;
9491
9544
  static ɵfac: i0.ɵɵFactoryDeclaration<PictureComponent, never>;
9492
9545
  static ɵcmp: i0.ɵɵComponentDeclaration<PictureComponent, "et-picture", never, { "sources": { "alias": "sources"; "required": false; "isSignal": true; }; "hasPriority": { "alias": "hasPriority"; "required": false; "isSignal": true; }; "imgClass": { "alias": "imgClass"; "required": false; "isSignal": true; }; "figureClass": { "alias": "figureClass"; "required": false; "isSignal": true; }; "figcaptionClass": { "alias": "figcaptionClass"; "required": false; "isSignal": true; }; "pictureClass": { "alias": "pictureClass"; "required": false; "isSignal": true; }; "defaultSrc": { "alias": "defaultSrc"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "figcaption": { "alias": "figcaption"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "sizes": { "alias": "sizes"; "required": false; "isSignal": true; }; }, { "imgLoaded": "imgLoaded"; "imgError": "imgError"; }, never, never, true, never>;
@@ -9497,6 +9550,7 @@ declare const provideImageConfig: (config?: Partial<PictureConfig> | null | unde
9497
9550
  provide: InjectionToken<PictureConfig>;
9498
9551
  useValue: Partial<PictureConfig> | null;
9499
9552
  };
9553
+ declare const extractFirstImageUrl: (source: string | PictureSource | null) => string | null;
9500
9554
  declare const normalizePictureSource: (source: string | PictureSource) => PictureSource;
9501
9555
  declare const normalizePictureSizes: (sizes: string | string[] | null) => string | null;
9502
9556
 
@@ -10591,5 +10645,5 @@ declare const createNavigationDismissChecker: <T extends AbstractControl>(config
10591
10645
 
10592
10646
  declare const injectRouterNavigationState: <T>() => T | null;
10593
10647
 
10594
- 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 };
10648
+ 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, extractFirstImageUrl, 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 };
10595
10649
  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.67.0",
3
+ "version": "4.69.0",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -14,13 +14,13 @@
14
14
  }
15
15
  },
16
16
  "peerDependencies": {
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",
17
+ "@angular/animations": "20.3.0",
18
+ "@angular/cdk": "20.2.2",
19
+ "@angular/common": "20.3.0",
20
+ "@angular/core": "20.3.0",
21
+ "@angular/forms": "20.3.0",
22
+ "@angular/platform-browser": "20.3.0",
23
+ "@angular/router": "20.3.0",
24
24
  "@ethlete/core": "^4.0.3",
25
25
  "@ethlete/query": "^5.0.3",
26
26
  "@ethlete/types": "^1.6.2",