@dcrackel/meyersquaredui 1.0.115 → 1.0.117

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 (24) hide show
  1. package/dist/meyersquaredui.es.js +808 -709
  2. package/dist/meyersquaredui.umd.js +4 -4
  3. package/package.json +1 -1
  4. package/src/index.js +3 -2
  5. package/src/mocks/getPoolsWithBouts.js +413 -0
  6. package/src/mocks/getPoolsWithBoutsByPoolId.js +1178 -0
  7. package/src/stories/Molecules/BreadCrumbs/BreadCrumbs.stories.js +22 -0
  8. package/src/stories/Molecules/BreadCrumbs/BreadCrumbs.vue +57 -0
  9. package/src/stories/Molecules/ProgressTracker/ProgressTracker.stories.js +3 -2
  10. package/src/stories/Molecules/ProgressTracker/ProgressTracker.vue +14 -9
  11. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +81 -0
  12. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +199 -0
  13. package/src/stories/Organisms/{GridLayout → Grids/GridLayout}/GridLayout.stories.js +6 -6
  14. package/src/stories/Organisms/{GridLayout → Grids/GridLayout}/GridLayout.vue +3 -3
  15. package/src/stories/Organisms/Grids/GridPool/GridPool.stories.js +30 -0
  16. package/src/stories/Organisms/Grids/GridPool/GridPool.vue +195 -0
  17. package/src/stories/Organisms/{GridTabs → Grids/GridTabs}/GridTabs.stories.js +2 -2
  18. package/src/stories/Organisms/{GridTabs → Grids/GridTabs}/GridTabs.vue +5 -5
  19. package/src/stories/Templates/ClubDetailPage/ClubDetailPage.vue +1 -1
  20. package/src/stories/Templates/ClubListPage/ClubListPage.vue +1 -1
  21. package/src/stories/Templates/HomePage/HomePage.vue +1 -1
  22. package/src/stories/Templates/Leaderboard/Leaderboard.vue +1 -1
  23. package/src/stories/Templates/TournamentDetailPage/TournamentDetailPage.vue +1 -1
  24. package/src/stories/Templates/TournamentListPage/TournamentListPage.vue +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/meyersquaredui",
3
3
  "private": false,
4
- "version": "1.0.115",
4
+ "version": "1.0.117",
5
5
  "type": "module",
6
6
  "main": "dist/meyersquaredui.cjs.js",
7
7
  "module": "dist/meyersquaredui.esm.js",
package/src/index.js CHANGED
@@ -7,6 +7,7 @@ export { default as SearchBox } from './stories/Molecules/Searchbox/SearchBox.vu
7
7
  export { default as Calendar } from './stories/Molecules/Calendar/Calendar.vue';
8
8
  export { default as Mapbox } from './stories/Molecules/Mapbox/Mapbox.vue';
9
9
  export { default as ProgressTracker } from './stories/Molecules/ProgressTracker/ProgressTracker.vue';
10
+ export { default as BreadCrumbs } from './stories/Molecules/BreadCrumbs/BreadCrumbs.vue';
10
11
 
11
12
  export { default as PageHeader } from './stories/Organisms/Headers/PageHeader/PageHeader.vue'
12
13
  export { default as HostColumn } from './stories/Organisms/Column/HostColumn.vue'
@@ -16,7 +17,7 @@ export { default as ScrollNav } from './stories/Organisms/Headers/ScrollNav/Scro
16
17
  export { default as TournamentDetailsBanner } from './stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.vue'
17
18
  export { default as TournamentBanner } from './stories/Organisms/HeroBanners/Tournaments/TournamentBanner.vue'
18
19
  export { default as ContactUsForm } from './stories/Organisms/Forms/ContactUsForm/ContactUsForm.vue'
19
- export { default as GridTabs } from './stories/Organisms/GridTabs/GridTabs.vue'
20
+ export { default as GridTabs } from './stories/Organisms/Grids/GridTabs/GridTabs.vue'
20
21
 
21
22
 
22
23
  export { default as ArticleCard } from './stories/Organisms/Cards/ArticleCard/ArticleCard.vue'
@@ -33,7 +34,7 @@ export { default as TournamentDetails } from './stories/Organisms/Cards/Tourname
33
34
  export { default as TournamentListCard } from './stories/Organisms/Cards/TournamentListCard/TournamentListCard.vue'
34
35
  export { default as HeroBanner } from './stories/Organisms/HeroBanners/HomePage/HeroBanner.vue'
35
36
  export { default as LeaderboardHeader } from './stories/Organisms/Headers/LeaderboardHeader/LeaderboardHeader.vue'
36
- export { default as GridLayout } from './stories/Organisms/GridLayout/GridLayout.vue'
37
+ export { default as GridLayout } from './stories/Organisms/Grids/GridLayout/GridLayout.vue'
37
38
  export { default as SingleButtonBanner } from './stories/Organisms/SectionBanners/SingleButtonBanner/SingleButtonBanner.vue'
38
39
  export { default as DoubleButtonBanner } from './stories/Organisms/SectionBanners/DoubleButtonBanner/DoubleButtonBanner.vue'
39
40
  export { default as Footer } from './stories/Organisms/Footer/Footer.vue'
@@ -0,0 +1,413 @@
1
+ const getPoolsWithBouts =
2
+ [
3
+ {
4
+ "BoutId": 1823,
5
+ "PoolId": 137,
6
+ "EventId": 5,
7
+ "Person1Id": 10,
8
+ "Person2Id": 1,
9
+ "Status": "Active",
10
+ "Score1": 7,
11
+ "Score2": 5,
12
+ "CurrentPass": 1,
13
+ "Started": null,
14
+ "Ended": null,
15
+ "TimerStatus": "stopped",
16
+ "TimeLeft": 60,
17
+ "RoundLabel": null,
18
+ "DEBoutId": null,
19
+ "DENextBoutId": null,
20
+ "RefereeId": null,
21
+ "RingName": "Ring1",
22
+ "createdAt": "2024-06-15T06:45:39.000Z",
23
+ "updatedAt": "2024-06-15T06:45:39.000Z",
24
+ "Person1": {
25
+ "PersonId": 10,
26
+ "DisplayName": "Melissa Jones",
27
+ "ClubId": 4,
28
+ "Images": [],
29
+ "Club": {
30
+ "Name": "Guardians of the Guard"
31
+ }
32
+ },
33
+ "Person2": {
34
+ "PersonId": 1,
35
+ "DisplayName": "Dave Smith",
36
+ "ClubId": 4,
37
+ "Images": [
38
+ {
39
+ "ImageId": 7,
40
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
41
+ }
42
+ ],
43
+ "Club": {
44
+ "Name": "Cat's Cutlass Club of Canton"
45
+ }
46
+ }
47
+ },
48
+ {
49
+ "BoutId": 1824,
50
+ "PoolId": 137,
51
+ "EventId": 5,
52
+ "Person1Id": 14,
53
+ "Person2Id": 6,
54
+ "Status": "Completed",
55
+ "Score1": 7,
56
+ "Score2": 4,
57
+ "CurrentPass": 1,
58
+ "Started": null,
59
+ "Ended": null,
60
+ "TimerStatus": "stopped",
61
+ "TimeLeft": 0,
62
+ "RoundLabel": null,
63
+ "DEBoutId": null,
64
+ "DENextBoutId": null,
65
+ "RefereeId": null,
66
+ "createdAt": "2024-06-15T06:45:39.000Z",
67
+ "updatedAt": "2024-06-15T06:45:39.000Z",
68
+ "Person1": {
69
+ "PersonId": 14,
70
+ "DisplayName": "Jordan Allen",
71
+ "ClubId": 5,
72
+ "Images": [],
73
+ "Club": {
74
+ "Name": "Fechtastic Fighters"
75
+ }
76
+ },
77
+ "Person2": {
78
+ "PersonId": 6,
79
+ "DisplayName": "Courtney Medina",
80
+ "ClubId": 3,
81
+ "Images": [],
82
+ "Club": {
83
+ "Name": "Sword & Blade of Callie"
84
+ }
85
+ }
86
+ },
87
+ {
88
+ "BoutId": 1825,
89
+ "PoolId": 137,
90
+ "EventId": 5,
91
+ "Person1Id": 7,
92
+ "Person2Id": 10,
93
+ "Status": "Completed",
94
+ "Score1": 3,
95
+ "Score2": 7,
96
+ "Started": null,
97
+ "Ended": null,
98
+ "TimerStatus": "stopped",
99
+ "TimeLeft": 0,
100
+ "RoundLabel": null,
101
+ "DEBoutId": null,
102
+ "DENextBoutId": null,
103
+ "RefereeId": null,
104
+ "RingName": "Ring1",
105
+ "createdAt": "2024-06-15T06:45:39.000Z",
106
+ "updatedAt": "2024-06-15T06:45:39.000Z",
107
+ "Person1": {
108
+ "PersonId": 7,
109
+ "DisplayName": "Emily Carlson",
110
+ "ClubId": 4,
111
+ "Images": [],
112
+ "Club": {
113
+ "Name": "Guardians of the Guard"
114
+ }
115
+ },
116
+ "Person2": {
117
+ "PersonId": 10,
118
+ "DisplayName": "Melissa Jones",
119
+ "ClubId": 4,
120
+ "Images": [],
121
+ "Club": {
122
+ "Name": "Guardians of the Guard"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "BoutId": 1826,
128
+ "PoolId": 137,
129
+ "EventId": 5,
130
+ "Person1Id": 1,
131
+ "Person2Id": 14,
132
+ "Status": "Completed",
133
+ "Score1": 7,
134
+ "Score2": 5,
135
+ "Started": null,
136
+ "Ended": null,
137
+ "TimerStatus": "stopped",
138
+ "TimeLeft": 0,
139
+ "RoundLabel": null,
140
+ "DEBoutId": null,
141
+ "DENextBoutId": null,
142
+ "RefereeId": null,
143
+ "RingName": "Ring1",
144
+ "createdAt": "2024-06-15T06:45:39.000Z",
145
+ "updatedAt": "2024-06-15T06:45:39.000Z",
146
+ "Person1": {
147
+ "PersonId": 1,
148
+ "DisplayName": "Dave Smith",
149
+ "ClubId": 4,
150
+ "Images": [
151
+ {
152
+ "ImageId": 7,
153
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
154
+ }
155
+ ],
156
+ "Club": {
157
+ "Name": "Guardians of the Guard"
158
+ }
159
+ },
160
+ "Person2": {
161
+ "PersonId": 14,
162
+ "DisplayName": "Jordan Allen",
163
+ "ClubId": 5,
164
+ "Images": [],
165
+ "Club": {
166
+ "Name": "Fechtastic Fighters"
167
+ }
168
+ }
169
+ },
170
+ {
171
+ "BoutId": 1827,
172
+ "PoolId": 137,
173
+ "EventId": 5,
174
+ "Person1Id": 7,
175
+ "Person2Id": 6,
176
+ "Status": "Scheduled",
177
+ "Score1": 0,
178
+ "Score2": 0,
179
+ "Started": null,
180
+ "Ended": null,
181
+ "TimerStatus": "stopped",
182
+ "TimeLeft": 120,
183
+ "RoundLabel": null,
184
+ "DEBoutId": null,
185
+ "DENextBoutId": null,
186
+ "RefereeId": null,
187
+ "RingName": "Ring1",
188
+ "createdAt": "2024-06-15T06:45:39.000Z",
189
+ "updatedAt": "2024-06-15T06:45:39.000Z",
190
+ "Person1": {
191
+ "PersonId": 7,
192
+ "DisplayName": "Emily Carlson",
193
+ "ClubId": 4,
194
+ "Images": [],
195
+ "Club": {
196
+ "Name": "Guardians of the Guard"
197
+ }
198
+ },
199
+ "Person2": {
200
+ "PersonId": 6,
201
+ "DisplayName": "Courtney Medina",
202
+ "ClubId": 3,
203
+ "Images": [],
204
+ "Club": {
205
+ "Name": "Sword & Blade of Callie"
206
+ }
207
+ }
208
+ },
209
+ {
210
+ "BoutId": 1828,
211
+ "PoolId": 137,
212
+ "EventId": 5,
213
+ "Person1Id": 10,
214
+ "Person2Id": 14,
215
+ "Status": "Completed",
216
+ "Score1": 7,
217
+ "Score2": 4,
218
+ "Started": null,
219
+ "Ended": null,
220
+ "TimerStatus": "stopped",
221
+ "TimeLeft": 0,
222
+ "RoundLabel": null,
223
+ "DEBoutId": null,
224
+ "DENextBoutId": null,
225
+ "RefereeId": null,
226
+ "RingName": "Ring1",
227
+ "createdAt": "2024-06-15T06:45:39.000Z",
228
+ "updatedAt": "2024-06-15T06:45:39.000Z",
229
+ "Person1": {
230
+ "PersonId": 10,
231
+ "DisplayName": "Melissa Jones",
232
+ "ClubId": 4,
233
+ "Images": [],
234
+ "Club": {
235
+ "Name": "Guardians of the Guard"
236
+ }
237
+ },
238
+ "Person2": {
239
+ "PersonId": 14,
240
+ "DisplayName": "Jordan Allen",
241
+ "ClubId": 5,
242
+ "Images": [],
243
+ "Club": {
244
+ "Name": "Fechtastic Fighters"
245
+ }
246
+ }
247
+ },
248
+ {
249
+ "BoutId": 1829,
250
+ "PoolId": 137,
251
+ "EventId": 5,
252
+ "Person1Id": 1,
253
+ "Person2Id": 7,
254
+ "Status": "Active",
255
+ "Score1": 0,
256
+ "Score2": 0,
257
+ "Started": null,
258
+ "Ended": null,
259
+ "TimerStatus": "stopped",
260
+ "TimeLeft": 0,
261
+ "RoundLabel": null,
262
+ "DEBoutId": null,
263
+ "DENextBoutId": null,
264
+ "RefereeId": null,
265
+ "RingName": "Ring1",
266
+ "createdAt": "2024-06-15T06:45:39.000Z",
267
+ "updatedAt": "2024-06-15T06:45:39.000Z",
268
+ "Person1": {
269
+ "PersonId": 1,
270
+ "DisplayName": "Dave Smith",
271
+ "ClubId": 4,
272
+ "Images": [
273
+ {
274
+ "ImageId": 7,
275
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
276
+ }
277
+ ],
278
+ "Club": {
279
+ "Name": "Guardians of the Guard"
280
+ }
281
+ },
282
+ "Person2": {
283
+ "PersonId": 7,
284
+ "DisplayName": "Emily Carlson",
285
+ "ClubId": 4,
286
+ "Images": [],
287
+ "Club": {
288
+ "Name": "Guardians of the Guard"
289
+ }
290
+ }
291
+ },
292
+ {
293
+ "BoutId": 1830,
294
+ "PoolId": 137,
295
+ "EventId": 5,
296
+ "Person1Id": 6,
297
+ "Person2Id": 10,
298
+ "Status": "Scheduled",
299
+ "Score1": 0,
300
+ "Score2": 0,
301
+ "Started": null,
302
+ "Ended": null,
303
+ "TimerStatus": "stopped",
304
+ "TimeLeft": 0,
305
+ "RoundLabel": null,
306
+ "DEBoutId": null,
307
+ "DENextBoutId": null,
308
+ "RefereeId": null,
309
+ "createdAt": "2024-06-15T06:45:39.000Z",
310
+ "updatedAt": "2024-06-15T06:45:39.000Z",
311
+ "Person1": {
312
+ "PersonId": 6,
313
+ "DisplayName": "Courtney Medina",
314
+ "ClubId": 3,
315
+ "Images": [],
316
+ "Club": {
317
+ "Name": "Sword & Blade of Callie"
318
+ }
319
+ },
320
+ "Person2": {
321
+ "PersonId": 10,
322
+ "DisplayName": "Melissa Jones",
323
+ "ClubId": 4,
324
+ "Images": [],
325
+ "Club": {
326
+ "Name": "Guardians of the Guard"
327
+ }
328
+ }
329
+ },
330
+ {
331
+ "BoutId": 1831,
332
+ "PoolId": 137,
333
+ "EventId": 5,
334
+ "Person1Id": 14,
335
+ "Person2Id": 7,
336
+ "Status": "Scheduled",
337
+ "Score1": 0,
338
+ "Score2": 0,
339
+ "Started": null,
340
+ "Ended": null,
341
+ "TimerStatus": "stopped",
342
+ "TimeLeft": 0,
343
+ "RoundLabel": null,
344
+ "DEBoutId": null,
345
+ "DENextBoutId": null,
346
+ "RefereeId": null,
347
+ "createdAt": "2024-06-15T06:45:39.000Z",
348
+ "updatedAt": "2024-06-15T06:45:39.000Z",
349
+ "Person1": {
350
+ "PersonId": 14,
351
+ "DisplayName": "Jordan Allen",
352
+ "ClubId": 5,
353
+ "Images": [],
354
+ "Club": {
355
+ "Name": "Fechtastic Fighters"
356
+ }
357
+ },
358
+ "Person2": {
359
+ "PersonId": 7,
360
+ "DisplayName": "Emily Carlson",
361
+ "ClubId": 4,
362
+ "Images": [],
363
+ "Club": {
364
+ "Name": "Guardians of the Guard"
365
+ }
366
+ }
367
+ },
368
+ {
369
+ "BoutId": 1832,
370
+ "PoolId": 137,
371
+ "EventId": 5,
372
+ "Person1Id": 6,
373
+ "Person2Id": 1,
374
+ "Status": "Scheduled",
375
+ "Score1": 0,
376
+ "Score2": 0,
377
+ "Started": null,
378
+ "Ended": null,
379
+ "TimerStatus": "stopped",
380
+ "TimeLeft": 0,
381
+ "RoundLabel": null,
382
+ "DEBoutId": null,
383
+ "DENextBoutId": null,
384
+ "RefereeId": null,
385
+ "createdAt": "2024-06-15T06:45:39.000Z",
386
+ "updatedAt": "2024-06-15T06:45:39.000Z",
387
+ "Person1": {
388
+ "PersonId": 6,
389
+ "DisplayName": "Courtney Medina",
390
+ "ClubId": 3,
391
+ "Images": [],
392
+ "Club": {
393
+ "Name": "Sword & Blade of Callie"
394
+ }
395
+ },
396
+ "Person2": {
397
+ "PersonId": 1,
398
+ "DisplayName": "Dave Smith",
399
+ "ClubId": 4,
400
+ "Images": [
401
+ {
402
+ "ImageId": 7,
403
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
404
+ }
405
+ ],
406
+ "Club": {
407
+ "Name": "Guardians of the Guard"
408
+ }
409
+ }
410
+ }
411
+ ];
412
+
413
+ export default getPoolsWithBouts;