@ethlete/cdk 4.47.0 → 4.48.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.
Files changed (29) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/esm2022/lib/components/bracket/components/new-bracket/bracket-new.mjs +170 -69
  3. package/esm2022/lib/components/bracket/components/new-bracket/draw-man.mjs +75 -32
  4. package/esm2022/lib/components/bracket/components/new-bracket/grid-placements.mjs +8 -3
  5. package/esm2022/lib/components/bracket/components/new-bracket/journey-highlight.mjs +18 -0
  6. package/esm2022/lib/components/bracket/components/new-bracket/new-bracket.component.mjs +47 -9
  7. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_DOUBLE_SYNC.mjs +1116 -0
  8. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SINGLE.mjs +2691 -0
  9. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SWISS.mjs +72479 -0
  10. package/esm2022/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATE_DOUBLE_ASYNC.mjs +1275 -0
  11. package/esm2022/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_DOUBLE.mjs +2453 -0
  12. package/esm2022/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_SINGLE.mjs +2570 -0
  13. package/esm2022/lib/components/bracket/stories/dummy-data/index.mjs +7 -0
  14. package/fesm2022/ethlete-cdk.mjs +315 -109
  15. package/fesm2022/ethlete-cdk.mjs.map +1 -1
  16. package/lib/components/bracket/components/new-bracket/bracket-new.d.ts +1632 -18
  17. package/lib/components/bracket/components/new-bracket/draw-man.d.ts +5 -3
  18. package/lib/components/bracket/components/new-bracket/grid-placements.d.ts +4 -0
  19. package/lib/components/bracket/components/new-bracket/journey-highlight.d.ts +2 -0
  20. package/lib/components/bracket/components/new-bracket/new-bracket.component.d.ts +7 -2
  21. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_DOUBLE_SYNC.d.ts +149 -0
  22. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SINGLE.d.ts +184 -0
  23. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATA_SWISS.d.ts +214 -0
  24. package/lib/components/bracket/stories/dummy-data/ET_DUMMY_DATE_DOUBLE_ASYNC.d.ts +149 -0
  25. package/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_DOUBLE.d.ts +1640 -0
  26. package/lib/components/bracket/stories/dummy-data/FIFA_DUMMY_DATA_SINGLE.d.ts +2388 -0
  27. package/lib/components/bracket/stories/dummy-data/index.d.ts +6 -0
  28. package/lib/components/query-error/directives/query-error/query-error.directive.d.ts +1 -1
  29. package/package.json +1 -1
@@ -0,0 +1,149 @@
1
+ export declare const ET_DUMMY_DATA_DOUBLE_ASYNC: ({
2
+ round: {
3
+ id: string;
4
+ status: string;
5
+ name: string;
6
+ number: number;
7
+ countMatches: number;
8
+ type: string;
9
+ };
10
+ matches: {
11
+ id: string;
12
+ status: string;
13
+ number: number;
14
+ type: string;
15
+ startTime: string;
16
+ home: null;
17
+ away: null;
18
+ games: {
19
+ id: string;
20
+ status: string;
21
+ match: string;
22
+ homePlayers: never[];
23
+ awayPlayers: never[];
24
+ homeScore: {
25
+ status: string;
26
+ score: number;
27
+ };
28
+ awayScore: {
29
+ status: string;
30
+ score: number;
31
+ };
32
+ judged: boolean;
33
+ resultType: string;
34
+ gameType: string;
35
+ platform: {
36
+ id: string;
37
+ title: string;
38
+ logo: null;
39
+ identifier: string;
40
+ };
41
+ }[];
42
+ judged: boolean;
43
+ homeScore: null;
44
+ awayScore: null;
45
+ tournamentGroup: {
46
+ id: string;
47
+ title: string;
48
+ shortTitle: string;
49
+ slug: string;
50
+ current: boolean;
51
+ season: {
52
+ id: string;
53
+ name: string;
54
+ identifier: string;
55
+ };
56
+ };
57
+ tournament: {
58
+ id: string;
59
+ title: string;
60
+ shortTitle: string;
61
+ slug: string;
62
+ status: string;
63
+ };
64
+ round: {
65
+ id: string;
66
+ date: string;
67
+ displayName: string;
68
+ number: number;
69
+ state: string;
70
+ };
71
+ winningSide: null;
72
+ matchType: string;
73
+ isCompletedByReferee: boolean;
74
+ }[];
75
+ } | {
76
+ round: {
77
+ id: string;
78
+ status: string;
79
+ name: string;
80
+ number: number;
81
+ countMatches: number;
82
+ type: string;
83
+ };
84
+ matches: {
85
+ id: string;
86
+ status: string;
87
+ number: number;
88
+ type: string;
89
+ startTime: string;
90
+ home: null;
91
+ away: null;
92
+ games: {
93
+ id: string;
94
+ status: string;
95
+ match: string;
96
+ homePlayers: never[];
97
+ awayPlayers: never[];
98
+ homeScore: {
99
+ status: null;
100
+ score: null;
101
+ };
102
+ awayScore: {
103
+ status: null;
104
+ score: null;
105
+ };
106
+ judged: boolean;
107
+ resultType: string;
108
+ gameType: string;
109
+ platform: {
110
+ id: string;
111
+ title: string;
112
+ logo: null;
113
+ identifier: string;
114
+ };
115
+ }[];
116
+ judged: boolean;
117
+ homeScore: null;
118
+ awayScore: null;
119
+ tournamentGroup: {
120
+ id: string;
121
+ title: string;
122
+ shortTitle: string;
123
+ slug: string;
124
+ current: boolean;
125
+ season: {
126
+ id: string;
127
+ name: string;
128
+ identifier: string;
129
+ };
130
+ };
131
+ tournament: {
132
+ id: string;
133
+ title: string;
134
+ shortTitle: string;
135
+ slug: string;
136
+ status: string;
137
+ };
138
+ round: {
139
+ id: string;
140
+ date: string;
141
+ displayName: string;
142
+ number: number;
143
+ state: string;
144
+ };
145
+ winningSide: null;
146
+ matchType: string;
147
+ isCompletedByReferee: boolean;
148
+ }[];
149
+ })[];