@dcrackel/hematournamentui 1.0.706 → 1.0.707

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 (330) hide show
  1. package/.prettierignore +7 -1
  2. package/.storybook/main.js +5 -12
  3. package/.storybook/preview-head.html +10 -3
  4. package/.storybook/preview.js +5 -13
  5. package/AGENTS.md +31 -1
  6. package/README.md +29 -22
  7. package/dist/HemaTournamentUI-lib.es.js +7189 -7467
  8. package/dist/HemaTournamentUI-lib.umd.js +27 -27
  9. package/dist/hematournamentui-tailwind.css +0 -24
  10. package/dist/hematournamentui.css +1 -1
  11. package/eslint.config.js +49 -23
  12. package/package.json +6 -2
  13. package/postcss.config.js +3 -3
  14. package/prettier.config.js +16 -10
  15. package/src/config/boutScreenConfigurations.js +52 -50
  16. package/src/main.js +1 -1
  17. package/src/mocks/EventQuestionsMock.js +43 -55
  18. package/src/mocks/assignments.js +180 -181
  19. package/src/mocks/clubGetAllMock.js +8143 -8143
  20. package/src/mocks/eventMock.js +205 -205
  21. package/src/mocks/eventPersonGetInitalPoolAssignmentsLivePools.js +541 -542
  22. package/src/mocks/eventPersonGetInitalPoolAssignmentsPreparing.js +522 -523
  23. package/src/mocks/eventPersonGetInitialPoolAssignments.js +386 -387
  24. package/src/mocks/eventPersonGetInitialPoolAssignments2.js +2267 -2268
  25. package/src/mocks/eventPersonGetInitialStaff.js +94 -95
  26. package/src/mocks/eventPersonGetPoolAssignmentEvent.js +161 -162
  27. package/src/mocks/eventRules.js +87 -86
  28. package/src/mocks/eventpersonGetEventById.js +1737 -1737
  29. package/src/mocks/getAllClubs.js +8143 -8143
  30. package/src/mocks/getAllStaffByTournamentId.js +74 -75
  31. package/src/mocks/getAllWeapons.js +81 -82
  32. package/src/mocks/getAttendance.js +43 -44
  33. package/src/mocks/getClub.js +43 -44
  34. package/src/mocks/getClubDisplayByClubId.js +104 -105
  35. package/src/mocks/getDEBouts-128Fencers.js +3247 -3248
  36. package/src/mocks/getDEBouts-42Fencers.js +3736 -3737
  37. package/src/mocks/getDEBouts-67Fencers.js +6684 -6690
  38. package/src/mocks/getDEBouts-DoubleElim.js +4198 -4199
  39. package/src/mocks/getDEWithBouts.js +628 -629
  40. package/src/mocks/getDeBouts-12fencers.js +1255 -1256
  41. package/src/mocks/getDeBouts-15fencers.js +925 -927
  42. package/src/mocks/getDeBouts-22fencers.js +1683 -1685
  43. package/src/mocks/getDeBouts-6fencers.js +818 -818
  44. package/src/mocks/getEventByTournamentId.js +47 -48
  45. package/src/mocks/getFinalEventResult.js +304 -305
  46. package/src/mocks/getPenaltiesByEvent.js +655 -656
  47. package/src/mocks/getPoolResults.js +1533 -1534
  48. package/src/mocks/getPoolsWithBouts.js +662 -663
  49. package/src/mocks/getPoolsWithBouts6PoolId139.js +885 -886
  50. package/src/mocks/getPoolsWithBoutsByPoolId.js +841 -841
  51. package/src/mocks/getPoolsWithBoutsClubColors.js +4 -4
  52. package/src/mocks/getPoolsWithBoutsComplete.js +919 -921
  53. package/src/mocks/locationMock.js +3213 -3214
  54. package/src/mocks/mockRoutes.js +3 -3
  55. package/src/mocks/personGetAllMock.js +2536 -2537
  56. package/src/mocks/personsMock.js +17569 -17570
  57. package/src/mocks/singleEventMock.js +249 -250
  58. package/src/mocks/tournamentMock.js +1988 -1927
  59. package/src/stories/Atoms/CheckBox/BaseCheckbox.stories.js +25 -23
  60. package/src/stories/Atoms/CheckBox/BaseCheckbox.vue +30 -24
  61. package/src/stories/Atoms/Icon/BaseIcon.stories.js +63 -64
  62. package/src/stories/Atoms/Icon/BaseIcon.test.js +67 -69
  63. package/src/stories/Atoms/Icon/BaseIcon.vue +2 -3
  64. package/src/stories/Atoms/Input/BaseInput.stories.js +18 -18
  65. package/src/stories/Atoms/Input/BaseInput.test.js +65 -67
  66. package/src/stories/Atoms/Input/BaseInput.vue +36 -31
  67. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.stories.js +21 -21
  68. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.test.js +31 -31
  69. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.vue +23 -18
  70. package/src/stories/Atoms/Tag/BaseTag.stories.js +21 -21
  71. package/src/stories/Atoms/Tag/BaseTag.test.js +26 -30
  72. package/src/stories/Atoms/Tag/BaseTag.vue +18 -19
  73. package/src/stories/Atoms/Text/BaseText.stories.js +54 -62
  74. package/src/stories/Atoms/Text/BaseText.test.js +152 -154
  75. package/src/stories/Atoms/Text/BaseText.vue +103 -81
  76. package/src/stories/Configure.mdx +5 -3
  77. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.stories.js +24 -24
  78. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.vue +33 -15
  79. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.stories.js +46 -48
  80. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.vue +38 -25
  81. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.stories.js +4 -4
  82. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.vue +9 -4
  83. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.stories.js +90 -90
  84. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.vue +51 -32
  85. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.stories.js +25 -25
  86. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.vue +47 -12
  87. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.stories.js +19 -19
  88. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.vue +25 -19
  89. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.stories.js +25 -28
  90. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.vue +7 -7
  91. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.stories.js +28 -29
  92. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.test.js +58 -58
  93. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.vue +15 -15
  94. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.stories.js +86 -86
  95. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.test.js +101 -103
  96. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +87 -24
  97. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.stories.js +31 -31
  98. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.vue +19 -21
  99. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.stories.js +57 -57
  100. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.test.js +64 -64
  101. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.vue +17 -16
  102. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.stories.js +19 -19
  103. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.vue +18 -7
  104. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.stories.js +16 -18
  105. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.vue +31 -13
  106. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.stories.js +27 -27
  107. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.vue +6 -5
  108. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.stories.js +35 -35
  109. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.vue +13 -8
  110. package/src/stories/Molecules/Inputs/Toggle/Toggle.stories.js +27 -27
  111. package/src/stories/Molecules/Inputs/Toggle/Toggle.vue +8 -5
  112. package/src/stories/Molecules/Menus/TabBar/TabBar.stories.js +18 -18
  113. package/src/stories/Molecules/Menus/TabBar/TabBar.vue +1 -2
  114. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplay.stories.js +36 -27
  115. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplayModal.vue +25 -15
  116. package/src/stories/Molecules/Modals/BaseModal/BaseModal.stories.js +66 -65
  117. package/src/stories/Molecules/Modals/BaseModal/BaseModal.vue +47 -9
  118. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.stories.js +23 -23
  119. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.vue +59 -11
  120. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.stories.js +37 -37
  121. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +27 -22
  122. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.stories.js +41 -41
  123. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.vue +27 -15
  124. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.stories.js +29 -30
  125. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.vue +18 -16
  126. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.stories.js +21 -21
  127. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.vue +7 -7
  128. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.stories.js +24 -24
  129. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.vue +30 -25
  130. package/src/stories/Molecules/Reorder/ReorderableShell.stories.js +81 -77
  131. package/src/stories/Molecules/Reorder/ReorderableShell.vue +46 -43
  132. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.stories.js +40 -40
  133. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.vue +23 -25
  134. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +34 -29
  135. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +69 -66
  136. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.stories.js +24 -22
  137. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.vue +53 -41
  138. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.stories.js +24 -37
  139. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.vue +88 -103
  140. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardReorder/BoutCardReorder.vue +13 -14
  141. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.stories.js +5 -5
  142. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.vue +22 -21
  143. package/src/stories/Organisms/Cards/ClubCard/ClubCard.stories.js +14 -17
  144. package/src/stories/Organisms/Cards/ClubCard/ClubCard.vue +25 -18
  145. package/src/stories/Organisms/Cards/Director/DirectorCard.stories.js +23 -23
  146. package/src/stories/Organisms/Cards/Director/DirectorCard.vue +159 -103
  147. package/src/stories/Organisms/Cards/EditBout/EditBout.stories.js +47 -47
  148. package/src/stories/Organisms/Cards/EditBout/EditBout.test.js +51 -0
  149. package/src/stories/Organisms/Cards/EditBout/EditBout.vue +82 -54
  150. package/src/stories/Organisms/Cards/EventCard/EventCard.stories.js +9 -10
  151. package/src/stories/Organisms/Cards/EventCard/EventCard.vue +83 -63
  152. package/src/stories/Organisms/Cards/FencerCard/FencerCard.stories.js +105 -105
  153. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +142 -58
  154. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.stories.js +14 -14
  155. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.vue +37 -26
  156. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResults.stories.js +24 -24
  157. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResultsCard.vue +95 -28
  158. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.stories.js +59 -60
  159. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.vue +13 -7
  160. package/src/stories/Organisms/Cards/KioskCard/KioskCard.stories.js +34 -34
  161. package/src/stories/Organisms/Cards/KioskCard/KioskCard.vue +149 -104
  162. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.stories.js +19 -20
  163. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.vue +207 -163
  164. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.stories.js +17 -17
  165. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.vue +88 -46
  166. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.stories.js +182 -182
  167. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.vue +21 -12
  168. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.stories.js +25 -28
  169. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +28 -22
  170. package/src/stories/Organisms/Cards/StaffCard/StaffCard.stories.js +62 -62
  171. package/src/stories/Organisms/Cards/StaffCard/StaffCard.vue +27 -22
  172. package/src/stories/Organisms/Cards/TableauBoutCard/SpacingConfig.js +103 -103
  173. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.stories.js +73 -73
  174. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.test.js +44 -0
  175. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.vue +69 -56
  176. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.stories.js +80 -81
  177. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.vue +39 -22
  178. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdmin.stories.js +20 -20
  179. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdminCard.vue +62 -33
  180. package/src/stories/Organisms/Cards/WaitlistFencerCard/WaitlistFencerCard.vue +44 -30
  181. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.stories.js +6 -7
  182. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.vue +7 -8
  183. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.stories.js +31 -31
  184. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.vue +30 -35
  185. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.stories.js +13 -16
  186. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.vue +68 -70
  187. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.stories.js +32 -34
  188. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +48 -25
  189. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.stories.js +21 -21
  190. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.vue +65 -38
  191. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.stories.js +19 -20
  192. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.vue +46 -21
  193. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.stories.js +22 -22
  194. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.vue +68 -23
  195. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.stories.js +13 -13
  196. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +25 -24
  197. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.stories.js +6 -10
  198. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.vue +112 -48
  199. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.stories.js +43 -44
  200. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.vue +30 -23
  201. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.stories.js +20 -20
  202. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.vue +12 -12
  203. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.stories.js +24 -25
  204. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.vue +112 -87
  205. package/src/stories/Organisms/Containers/Pool/Pool.stories.js +54 -54
  206. package/src/stories/Organisms/Containers/Pool/Pool.vue +64 -41
  207. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.stories.js +17 -19
  208. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.vue +189 -135
  209. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.stories.js +53 -54
  210. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.vue +107 -73
  211. package/src/stories/Organisms/Containers/Tableau/Tableau.stories.js +23 -24
  212. package/src/stories/Organisms/Containers/Tableau/Tableau.test.js +49 -10
  213. package/src/stories/Organisms/Containers/Tableau/Tableau.vue +96 -173
  214. package/src/stories/Organisms/Containers/TableauColumn/TabeauColumn.stories.js +26 -27
  215. package/src/stories/Organisms/Containers/TableauColumn/TableauColumn.vue +20 -17
  216. package/src/stories/Organisms/Containers/TableauLines/SpacingConfig.js +153 -103
  217. package/src/stories/Organisms/Containers/TableauLines/TableauLines.stories.js +13 -15
  218. package/src/stories/Organisms/Containers/TableauLines/TableauLines.vue +7 -8
  219. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.stories.js +26 -26
  220. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +130 -118
  221. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.stories.js +14 -15
  222. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.vue +94 -88
  223. package/src/stories/Organisms/Grids/GridContainer.stories.js +101 -101
  224. package/src/stories/Organisms/Grids/GridContainer.vue +160 -136
  225. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.stories.js +47 -47
  226. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.vue +65 -54
  227. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.stories.js +27 -27
  228. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.vue +38 -22
  229. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.stories.js +80 -80
  230. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.vue +14 -6
  231. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.stories.js +34 -34
  232. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.vue +36 -36
  233. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.stories.js +21 -21
  234. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +56 -29
  235. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.stories.js +38 -38
  236. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.vue +19 -20
  237. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.stories.js +12 -13
  238. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.vue +47 -41
  239. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.stories.js +12 -13
  240. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.vue +66 -37
  241. package/src/stories/Organisms/Skeletons/ClubManagement/ClubManagement.stories.js +6 -10
  242. package/src/stories/Organisms/Skeletons/ClubManagement/ClubMangementSkeleton.vue +2 -2
  243. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.stories.js +6 -10
  244. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.vue +2 -3
  245. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.stories.js +6 -10
  246. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.vue +1 -1
  247. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.stories.js +6 -9
  248. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.vue +2 -2
  249. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.stories.js +6 -10
  250. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.vue +10 -4
  251. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.stories.js +6 -10
  252. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.vue +2 -2
  253. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.stories.js +34 -34
  254. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.vue +106 -56
  255. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.stories.js +95 -95
  256. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.vue +129 -69
  257. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.stories.js +87 -88
  258. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.vue +105 -60
  259. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.stories.js +82 -82
  260. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.vue +150 -177
  261. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.stories.js +28 -28
  262. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.vue +96 -36
  263. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.stories.js +99 -99
  264. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.vue +115 -67
  265. package/src/stories/Templates/Assignment/Assignment.stories.js +22 -23
  266. package/src/stories/Templates/Assignment/Assignment.vue +210 -161
  267. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.stories.js +90 -90
  268. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.vue +68 -55
  269. package/src/stories/Templates/ClubManagement/ClubManagement.stories.js +87 -87
  270. package/src/stories/Templates/ClubManagement/ClubManagement.vue +167 -147
  271. package/src/stories/Templates/EventManagement/Bracket/Bracket.stories.js +82 -103
  272. package/src/stories/Templates/EventManagement/Bracket/Bracket.test.js +88 -43
  273. package/src/stories/Templates/EventManagement/Bracket/Bracket.vue +167 -200
  274. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.stories.js +49 -50
  275. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.vue +21 -21
  276. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.stories.js +105 -103
  277. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.vue +289 -226
  278. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.stories.js +30 -30
  279. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.vue +27 -22
  280. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.stories.js +44 -45
  281. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.vue +52 -43
  282. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.stories.js +28 -29
  283. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.vue +54 -39
  284. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +80 -111
  285. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.test.js +121 -0
  286. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +290 -255
  287. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.stories.js +109 -107
  288. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +144 -87
  289. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.stories.js +56 -57
  290. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.vue +132 -123
  291. package/src/stories/Templates/EventManagement/StaffList/StaffList.stories.js +56 -57
  292. package/src/stories/Templates/EventManagement/StaffList/StaffList.vue +84 -47
  293. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.stories.js +29 -29
  294. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.vue +71 -67
  295. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.stories.js +39 -40
  296. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.vue +79 -71
  297. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.stories.js +47 -47
  298. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.vue +39 -42
  299. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.stories.js +54 -54
  300. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.vue +27 -31
  301. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.stories.js +69 -69
  302. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.vue +78 -89
  303. package/src/stories/Templates/PersonManagement/Attendance/Attendance.stories.js +22 -22
  304. package/src/stories/Templates/PersonManagement/Attendance/Attendance.vue +61 -33
  305. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.stories.js +29 -29
  306. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.vue +80 -53
  307. package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +84 -86
  308. package/src/stories/Templates/PersonManagement/PersonManagement.vue +107 -82
  309. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.stories.js +31 -31
  310. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.vue +70 -51
  311. package/src/stories/Templates/TournamentManagement/TournamentManagement.stories.js +79 -79
  312. package/src/stories/Templates/TournamentManagement/TournamentManagement.vue +275 -230
  313. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.stories.js +113 -113
  314. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.vue +175 -146
  315. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.stories.js +77 -77
  316. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.vue +208 -185
  317. package/src/stories/Util/Validations/AddNewPersonModalValidation.js +23 -19
  318. package/src/stories/Util/Validations/ClubManagementValidations.js +17 -21
  319. package/src/stories/Util/Validations/PersonManagementValidations.js +26 -22
  320. package/src/stories/Util/Validations/TournamentFieldsValidations.js +20 -18
  321. package/src/stories/Util/seeding.js +131 -131
  322. package/src/stories/Util/tabs.js +75 -75
  323. package/tailwind/tailwind.css +5 -7
  324. package/tailwind.config.js +12 -15
  325. package/vite.config.js +3 -3
  326. package/src/mocks/getDirectors.js +0 -18
  327. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.stories.js +0 -45
  328. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.vue +0 -111
  329. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.stories.js +0 -45
  330. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.vue +0 -83
@@ -1,659 +1,658 @@
1
- const getPenaltiesByEvent =
1
+ const getPenaltiesByEvent = {
2
+ Event: {
3
+ EventId: 44,
4
+ EventName: 'Test with 42'
5
+ },
6
+ Penalties: [
2
7
  {
3
- "Event": {
4
- "EventId": 44,
5
- "EventName": "Test with 42"
8
+ PersonId: 53,
9
+ DisplayName: 'Jonathan Rose',
10
+ Images: [],
11
+ Penalties: [
12
+ {
13
+ PenaltyType: 'Black',
14
+ Notes: 'this is a penalty',
15
+ BoutId: 4228,
16
+ PoolName: 'Test with 42-DE',
17
+ IssuedBy: 'Dwain Crackel',
18
+ Confirmed: true
6
19
  },
7
- "Penalties": [
8
- {
9
- "PersonId": 53,
10
- "DisplayName": "Jonathan Rose",
11
- "Images": [],
12
- "Penalties": [
13
- {
14
- "PenaltyType": "Black",
15
- "Notes": "this is a penalty",
16
- "BoutId": 4228,
17
- "PoolName": "Test with 42-DE",
18
- "IssuedBy": "Dwain Crackel",
19
- "Confirmed": true
20
- },
21
- {
22
- "PenaltyType": "Medical",
23
- "Notes": "",
24
- "BoutId": 4228,
25
- "PoolName": "Test with 42-DE",
26
- "IssuedBy": "Dwain Crackel",
27
- "Confirmed": false
28
- }
29
- ]
30
- },
31
- {
32
- "PersonId": 25,
33
- "DisplayName": "Isabella Hernandez",
34
- "Images": [],
35
- "Penalties": [
36
- {
37
- "PenaltyType": "Red",
38
- "Notes": "asdf",
39
- "BoutId": 4231,
40
- "PoolName": "Test with 42-DE",
41
- "IssuedBy": "Dwain Crackel"
42
- }
43
- ]
44
- },
45
- {
46
- "PersonId": 96,
47
- "DisplayName": "Derek Maschmann ",
48
- "Images": [],
49
- "Penalties": [
50
- {
51
- "PenaltyType": "Red",
52
- "Notes": "RedCard",
53
- "BoutId": 4231,
54
- "PoolName": "Test with 42-DE",
55
- "IssuedBy": "Dwain Crackel"
56
- },
57
- {
58
- "PenaltyType": "Yellow",
59
- "Notes": "aerwsf",
60
- "BoutId": 4231,
61
- "PoolName": "Test with 42-DE",
62
- "IssuedBy": "Dwain Crackel"
63
- },
64
- {
65
- "PenaltyType": "Yellow",
66
- "Notes": "asdfd adsfdadsf",
67
- "BoutId": 4258,
68
- "PoolName": "Test with 42-DE",
69
- "IssuedBy": "Dwain Crackel"
70
- }
71
- ]
72
- },
73
- {
74
- "PersonId": 108,
75
- "DisplayName": "John Tse",
76
- "Images": [],
77
- "Penalties": [
78
- {
79
- "PenaltyType": "Yellow",
80
- "Notes": "adsfadsf",
81
- "BoutId": 4236,
82
- "PoolName": "Test with 42-DE",
83
- "IssuedBy": "Dwain Crackel"
84
- },
85
- {
86
- "PenaltyType": "Yellow",
87
- "Notes": "dasfasdfads",
88
- "BoutId": 4261,
89
- "PoolName": "Test with 42-DE",
90
- "IssuedBy": "Dwain Crackel"
91
- },
92
- {
93
- "PenaltyType": "Yellow",
94
- "Notes": "adsfadsf",
95
- "BoutId": 4261,
96
- "PoolName": "Test with 42-DE",
97
- "IssuedBy": "Dwain Crackel"
98
- }
99
- ]
100
- },
101
- {
102
- "PersonId": 11,
103
- "DisplayName": "Sylvia Lee",
104
- "Images": [],
105
- "Penalties": [
106
- {
107
- "PenaltyType": "Yellow",
108
- "Notes": "asdfasdf asdfasd",
109
- "BoutId": 4239,
110
- "PoolName": "Test with 42-DE",
111
- "IssuedBy": "Dwain Crackel"
112
- },
113
- {
114
- "PenaltyType": "Yellow",
115
- "Notes": "aasdf asdf ",
116
- "BoutId": 4239,
117
- "PoolName": "Test with 42-DE",
118
- "IssuedBy": "Dwain Crackel"
119
- }
120
- ]
121
- },
122
- {
123
- "PersonId": 107,
124
- "DisplayName": "Jason Roggenbuck",
125
- "Images": [],
126
- "Penalties": [
127
- {
128
- "PenaltyType": "Yellow",
129
- "Notes": "",
130
- "BoutId": 4244,
131
- "PoolName": "Test with 42-DE",
132
- "IssuedBy": "Dwain Crackel"
133
- },
134
- {
135
- "PenaltyType": "Yellow",
136
- "Notes": "this is a test",
137
- "BoutId": 4244,
138
- "PoolName": "Test with 42-DE",
139
- "IssuedBy": "Dwain Crackel"
140
- },
141
- {
142
- "PenaltyType": "Yellow",
143
- "Notes": "This is another card",
144
- "BoutId": 4265,
145
- "PoolName": "Test with 42-DE",
146
- "IssuedBy": "Dwain Crackel"
147
- }
148
- ]
149
- },
150
- {
151
- "PersonId": 3,
152
- "DisplayName": "Dave Larabee",
153
- "Images": [],
154
- "Penalties": [
155
- {
156
- "PenaltyType": "Yellow",
157
- "Notes": "This is a test",
158
- "BoutId": 4247,
159
- "PoolName": "Test with 42-DE",
160
- "IssuedBy": "Dwain Crackel"
161
- }
162
- ]
163
- },
164
- {
165
- "PersonId": 72,
166
- "DisplayName": "Tyler Indermuhle",
167
- "Images": [],
168
- "Penalties": [
169
- {
170
- "PenaltyType": "Yellow",
171
- "Notes": "asdf ads",
172
- "BoutId": 4252,
173
- "PoolName": "Test with 42-DE",
174
- "IssuedBy": "Dwain Crackel"
175
- },
176
- {
177
- "PenaltyType": "Yellow",
178
- "Notes": "adsfasdf",
179
- "BoutId": 4252,
180
- "PoolName": "Test with 42-DE",
181
- "IssuedBy": "Dwain Crackel"
182
- }
183
- ]
184
- },
185
- {
186
- "PersonId": 37,
187
- "DisplayName": "Brian Thiessen",
188
- "Images": [],
189
- "Penalties": [
190
- {
191
- "PenaltyType": "Red",
192
- "Notes": "",
193
- "BoutId": 4254,
194
- "PoolName": "Test with 42-DE",
195
- "IssuedBy": "Dwain Crackel"
196
- }
197
- ]
198
- },
199
- {
200
- "PersonId": 49,
201
- "DisplayName": "Jack Seyler",
202
- "Images": [],
203
- "Penalties": [
204
- {
205
- "PenaltyType": "Red",
206
- "Notes": "overly jack",
207
- "BoutId": 4256,
208
- "PoolName": "Test with 42-DE",
209
- "IssuedBy": "Dwain Crackel"
210
- }
211
- ]
212
- },
213
- {
214
- "PersonId": 71,
215
- "DisplayName": "Thomas Kesler",
216
- "Images": [],
217
- "Penalties": [
218
- {
219
- "PenaltyType": "Yellow",
220
- "Notes": "big cat head",
221
- "BoutId": 4256,
222
- "PoolName": "Test with 42-DE",
223
- "IssuedBy": "Dwain Crackel"
224
- }
225
- ]
226
- },
227
- {
228
- "PersonId": 61,
229
- "DisplayName": "Marten Dollinger",
230
- "Images": [],
231
- "Penalties": [
232
- {
233
- "PenaltyType": "Red",
234
- "Notes": "Red Card",
235
- "BoutId": 4259,
236
- "PoolName": "Test with 42-DE",
237
- "IssuedBy": "Dwain Crackel"
238
- },
239
- {
240
- "PenaltyType": "Yellow",
241
- "Notes": "Yellow card",
242
- "BoutId": 4259,
243
- "PoolName": "Test with 42-DE",
244
- "IssuedBy": "Dwain Crackel"
245
- },
246
- {
247
- "PenaltyType": "Yellow",
248
- "Notes": "adsfa adsf",
249
- "BoutId": 4259,
250
- "PoolName": "Test with 42-DE",
251
- "IssuedBy": "Dwain Crackel"
252
- }
253
- ]
254
- },
255
- {
256
- "PersonId": 110,
257
- "DisplayName": "Thomas Mueller",
258
- "Images": [],
259
- "Penalties": [
260
- {
261
- "PenaltyType": "Yellow",
262
- "Notes": "adsfadf",
263
- "BoutId": 4259,
264
- "PoolName": "Test with 42-DE",
265
- "IssuedBy": "Dwain Crackel"
266
- }
267
- ]
268
- },
269
- {
270
- "PersonId": 15,
271
- "DisplayName": "David Peters",
272
- "Images": [],
273
- "Penalties": [
274
- {
275
- "PenaltyType": "Yellow",
276
- "Notes": "Why?",
277
- "BoutId": 4260,
278
- "PoolName": "Test with 42-DE",
279
- "IssuedBy": "Dwain Crackel"
280
- }
281
- ]
282
- },
283
- {
284
- "PersonId": 68,
285
- "DisplayName": "Regina Mendicino",
286
- "Images": [],
287
- "Penalties": [
288
- {
289
- "PenaltyType": "Yellow",
290
- "Notes": "",
291
- "BoutId": 4262,
292
- "PoolName": "Test with 42-DE",
293
- "IssuedBy": "Dwain Crackel"
294
- },
295
- {
296
- "PenaltyType": "Yellow",
297
- "Notes": "this is a test",
298
- "BoutId": 4262,
299
- "PoolName": "Test with 42-DE",
300
- "IssuedBy": "Dwain Crackel"
301
- },
302
- {
303
- "PenaltyType": "Yellow",
304
- "Notes": "This is another card",
305
- "BoutId": 4274,
306
- "PoolName": "Test with 42-DE",
307
- "IssuedBy": "Dwain Crackel"
308
- }
309
- ]
310
- },
311
- {
312
- "PersonId": 34,
313
- "DisplayName": "Alex Beaudet",
314
- "Images": [],
315
- "Penalties": [
316
- {
317
- "PenaltyType": "Yellow",
318
- "Notes": "Yellow card",
319
- "BoutId": 4263,
320
- "PoolName": "Test with 42-DE",
321
- "IssuedBy": "Dwain Crackel"
322
- },
323
- {
324
- "PenaltyType": "Yellow",
325
- "Notes": "this is a test",
326
- "BoutId": 4263,
327
- "PoolName": "Test with 42-DE",
328
- "IssuedBy": "Dwain Crackel"
329
- }
330
- ]
331
- },
332
- {
333
- "PersonId": 70,
334
- "DisplayName": "Stephanie Eaton",
335
- "Images": [],
336
- "Penalties": [
337
- {
338
- "PenaltyType": "Yellow",
339
- "Notes": "This is a card",
340
- "BoutId": 4264,
341
- "PoolName": "Test with 42-DE",
342
- "IssuedBy": "Dwain Crackel"
343
- }
344
- ]
345
- },
346
- {
347
- "PersonId": 32,
348
- "DisplayName": "AJ Trefney",
349
- "Images": [],
350
- "Penalties": [
351
- {
352
- "PenaltyType": "Yellow",
353
- "Notes": "This is a card",
354
- "BoutId": 4265,
355
- "PoolName": "Test with 42-DE",
356
- "IssuedBy": "Dwain Crackel"
357
- }
358
- ]
359
- },
360
- {
361
- "PersonId": 10,
362
- "DisplayName": "Melissa Jones",
363
- "Images": [
364
- {
365
- "URL": "https://randomuser.me/api/portraits/women/9.jpg",
366
- "AltText": null
367
- }
368
- ],
369
- "Penalties": [
370
- {
371
- "PenaltyType": "Yellow",
372
- "Notes": "this is a card",
373
- "BoutId": 4266,
374
- "PoolName": "Test with 42-DE",
375
- "IssuedBy": "Dwain Crackel"
376
- }
377
- ]
378
- },
379
- {
380
- "PersonId": 89,
381
- "DisplayName": "Jesse May",
382
- "Images": [],
383
- "Penalties": [
384
- {
385
- "PenaltyType": "Yellow",
386
- "Notes": "adsfasf",
387
- "BoutId": 4267,
388
- "PoolName": "Test with 42-DE",
389
- "IssuedBy": "Dwain Crackel"
390
- }
391
- ]
392
- },
393
- {
394
- "PersonId": 60,
395
- "DisplayName": "Lucas Caldwell",
396
- "Images": [],
397
- "Penalties": [
398
- {
399
- "PenaltyType": "Yellow",
400
- "Notes": "Sheep",
401
- "BoutId": 4268,
402
- "PoolName": "Test with 42-DE",
403
- "IssuedBy": "Dwain Crackel"
404
- }
405
- ]
406
- },
407
- {
408
- "PersonId": 118,
409
- "DisplayName": "Trevor Pedersen",
410
- "Images": [],
411
- "Penalties": [
412
- {
413
- "PenaltyType": "Yellow",
414
- "Notes": "wins to much",
415
- "BoutId": 4269,
416
- "PoolName": "Test with 42-DE",
417
- "IssuedBy": "Dwain Crackel"
418
- }
419
- ]
420
- },
421
- {
422
- "PersonId": 80,
423
- "DisplayName": "Robin Steele ",
424
- "Images": [],
425
- "Penalties": [
426
- {
427
- "PenaltyType": "Red",
428
- "Notes": "eating a hot dog",
429
- "BoutId": 4270,
430
- "PoolName": "Test with 42-DE",
431
- "IssuedBy": "Dwain Crackel"
432
- }
433
- ]
434
- },
435
- {
436
- "PersonId": 43,
437
- "DisplayName": "Derek Ray",
438
- "Images": [],
439
- "Penalties": [
440
- {
441
- "PenaltyType": "Yellow",
442
- "Notes": "being too good",
443
- "BoutId": 4270,
444
- "PoolName": "Test with 42-DE",
445
- "IssuedBy": "Dwain Crackel"
446
- },
447
- {
448
- "PenaltyType": "Yellow",
449
- "Notes": "being super",
450
- "BoutId": 4282,
451
- "PoolName": "Test with 42-DE",
452
- "IssuedBy": "Dwain Crackel"
453
- },
454
- {
455
- "PenaltyType": "Yellow",
456
- "Notes": "asdf asdf",
457
- "BoutId": 4282,
458
- "PoolName": "Test with 42-DE",
459
- "IssuedBy": "Dwain Crackel"
460
- }
461
- ]
462
- },
463
- {
464
- "PersonId": 35,
465
- "DisplayName": "Branden Zipplinger",
466
- "Images": [],
467
- "Penalties": [
468
- {
469
- "PenaltyType": "Yellow",
470
- "Notes": "asdfdas ",
471
- "BoutId": 4273,
472
- "PoolName": "Test with 42-DE",
473
- "IssuedBy": "Dwain Crackel"
474
- },
475
- {
476
- "PenaltyType": "Yellow",
477
- "Notes": "adsfasd",
478
- "BoutId": 4273,
479
- "PoolName": "Test with 42-DE",
480
- "IssuedBy": "Dwain Crackel"
481
- }
482
- ]
483
- },
484
- {
485
- "PersonId": 6,
486
- "DisplayName": "Courtney Medina",
487
- "Images": [],
488
- "Penalties": [
489
- {
490
- "PenaltyType": "Yellow",
491
- "Notes": "asdfasf",
492
- "BoutId": 4282,
493
- "PoolName": "Test with 42-DE",
494
- "IssuedBy": "Dwain Crackel"
495
- }
496
- ]
497
- }
498
- ],
499
- "Summary": [
500
- {
501
- "FencerName": "Marten Dollinger",
502
- "Yellow": 2,
503
- "Red": 1,
504
- "Black": 0
505
- },
506
- {
507
- "FencerName": "Derek Maschmann ",
508
- "Yellow": 2,
509
- "Red": 1,
510
- "Black": 0
511
- },
512
- {
513
- "FencerName": "Isabella Hernandez",
514
- "Yellow": 0,
515
- "Red": 1,
516
- "Black": 0
517
- },
518
- {
519
- "FencerName": "Brian Thiessen",
520
- "Yellow": 0,
521
- "Red": 1,
522
- "Black": 0
523
- },
524
- {
525
- "FencerName": "Jack Seyler",
526
- "Yellow": 0,
527
- "Red": 1,
528
- "Black": 0
529
- },
530
- {
531
- "FencerName": "Robin Steele ",
532
- "Yellow": 0,
533
- "Red": 1,
534
- "Black": 0
535
- },
536
- {
537
- "FencerName": "Derek Ray",
538
- "Yellow": 3,
539
- "Red": 0,
540
- "Black": 0
541
- },
542
- {
543
- "FencerName": "Regina Mendicino",
544
- "Yellow": 3,
545
- "Red": 0,
546
- "Black": 0
547
- },
548
- {
549
- "FencerName": "Jason Roggenbuck",
550
- "Yellow": 3,
551
- "Red": 0,
552
- "Black": 0
553
- },
554
- {
555
- "FencerName": "John Tse",
556
- "Yellow": 3,
557
- "Red": 0,
558
- "Black": 0
559
- },
560
- {
561
- "FencerName": "Sylvia Lee",
562
- "Yellow": 2,
563
- "Red": 0,
564
- "Black": 0
565
- },
566
- {
567
- "FencerName": "Alex Beaudet",
568
- "Yellow": 2,
569
- "Red": 0,
570
- "Black": 0
571
- },
572
- {
573
- "FencerName": "Branden Zipplinger",
574
- "Yellow": 2,
575
- "Red": 0,
576
- "Black": 0
577
- },
578
- {
579
- "FencerName": "Jonathan Rose",
580
- "Yellow": 2,
581
- "Red": 0,
582
- "Black": 0
583
- },
584
- {
585
- "FencerName": "Tyler Indermuhle",
586
- "Yellow": 2,
587
- "Red": 0,
588
- "Black": 0
589
- },
590
- {
591
- "FencerName": "Dave Larabee",
592
- "Yellow": 1,
593
- "Red": 0,
594
- "Black": 0
595
- },
596
- {
597
- "FencerName": "Courtney Medina",
598
- "Yellow": 1,
599
- "Red": 0,
600
- "Black": 0
601
- },
602
- {
603
- "FencerName": "Melissa Jones",
604
- "Yellow": 1,
605
- "Red": 0,
606
- "Black": 0
607
- },
608
- {
609
- "FencerName": "David Peters",
610
- "Yellow": 1,
611
- "Red": 0,
612
- "Black": 0
613
- },
614
- {
615
- "FencerName": "AJ Trefney",
616
- "Yellow": 1,
617
- "Red": 0,
618
- "Black": 0
619
- },
620
- {
621
- "FencerName": "Lucas Caldwell",
622
- "Yellow": 1,
623
- "Red": 0,
624
- "Black": 0
625
- },
626
- {
627
- "FencerName": "Stephanie Eaton",
628
- "Yellow": 1,
629
- "Red": 0,
630
- "Black": 0
631
- },
632
- {
633
- "FencerName": "Thomas Kesler",
634
- "Yellow": 1,
635
- "Red": 0,
636
- "Black": 0
637
- },
638
- {
639
- "FencerName": "Jesse May",
640
- "Yellow": 1,
641
- "Red": 0,
642
- "Black": 0
643
- },
644
- {
645
- "FencerName": "Thomas Mueller",
646
- "Yellow": 1,
647
- "Red": 0,
648
- "Black": 0
649
- },
650
- {
651
- "FencerName": "Trevor Pedersen",
652
- "Yellow": 1,
653
- "Red": 0,
654
- "Black": 0
655
- }
656
- ]
657
- };
20
+ {
21
+ PenaltyType: 'Medical',
22
+ Notes: '',
23
+ BoutId: 4228,
24
+ PoolName: 'Test with 42-DE',
25
+ IssuedBy: 'Dwain Crackel',
26
+ Confirmed: false
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ PersonId: 25,
32
+ DisplayName: 'Isabella Hernandez',
33
+ Images: [],
34
+ Penalties: [
35
+ {
36
+ PenaltyType: 'Red',
37
+ Notes: 'asdf',
38
+ BoutId: 4231,
39
+ PoolName: 'Test with 42-DE',
40
+ IssuedBy: 'Dwain Crackel'
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ PersonId: 96,
46
+ DisplayName: 'Derek Maschmann ',
47
+ Images: [],
48
+ Penalties: [
49
+ {
50
+ PenaltyType: 'Red',
51
+ Notes: 'RedCard',
52
+ BoutId: 4231,
53
+ PoolName: 'Test with 42-DE',
54
+ IssuedBy: 'Dwain Crackel'
55
+ },
56
+ {
57
+ PenaltyType: 'Yellow',
58
+ Notes: 'aerwsf',
59
+ BoutId: 4231,
60
+ PoolName: 'Test with 42-DE',
61
+ IssuedBy: 'Dwain Crackel'
62
+ },
63
+ {
64
+ PenaltyType: 'Yellow',
65
+ Notes: 'asdfd adsfdadsf',
66
+ BoutId: 4258,
67
+ PoolName: 'Test with 42-DE',
68
+ IssuedBy: 'Dwain Crackel'
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ PersonId: 108,
74
+ DisplayName: 'John Tse',
75
+ Images: [],
76
+ Penalties: [
77
+ {
78
+ PenaltyType: 'Yellow',
79
+ Notes: 'adsfadsf',
80
+ BoutId: 4236,
81
+ PoolName: 'Test with 42-DE',
82
+ IssuedBy: 'Dwain Crackel'
83
+ },
84
+ {
85
+ PenaltyType: 'Yellow',
86
+ Notes: 'dasfasdfads',
87
+ BoutId: 4261,
88
+ PoolName: 'Test with 42-DE',
89
+ IssuedBy: 'Dwain Crackel'
90
+ },
91
+ {
92
+ PenaltyType: 'Yellow',
93
+ Notes: 'adsfadsf',
94
+ BoutId: 4261,
95
+ PoolName: 'Test with 42-DE',
96
+ IssuedBy: 'Dwain Crackel'
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ PersonId: 11,
102
+ DisplayName: 'Sylvia Lee',
103
+ Images: [],
104
+ Penalties: [
105
+ {
106
+ PenaltyType: 'Yellow',
107
+ Notes: 'asdfasdf asdfasd',
108
+ BoutId: 4239,
109
+ PoolName: 'Test with 42-DE',
110
+ IssuedBy: 'Dwain Crackel'
111
+ },
112
+ {
113
+ PenaltyType: 'Yellow',
114
+ Notes: 'aasdf asdf ',
115
+ BoutId: 4239,
116
+ PoolName: 'Test with 42-DE',
117
+ IssuedBy: 'Dwain Crackel'
118
+ }
119
+ ]
120
+ },
121
+ {
122
+ PersonId: 107,
123
+ DisplayName: 'Jason Roggenbuck',
124
+ Images: [],
125
+ Penalties: [
126
+ {
127
+ PenaltyType: 'Yellow',
128
+ Notes: '',
129
+ BoutId: 4244,
130
+ PoolName: 'Test with 42-DE',
131
+ IssuedBy: 'Dwain Crackel'
132
+ },
133
+ {
134
+ PenaltyType: 'Yellow',
135
+ Notes: 'this is a test',
136
+ BoutId: 4244,
137
+ PoolName: 'Test with 42-DE',
138
+ IssuedBy: 'Dwain Crackel'
139
+ },
140
+ {
141
+ PenaltyType: 'Yellow',
142
+ Notes: 'This is another card',
143
+ BoutId: 4265,
144
+ PoolName: 'Test with 42-DE',
145
+ IssuedBy: 'Dwain Crackel'
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ PersonId: 3,
151
+ DisplayName: 'Dave Larabee',
152
+ Images: [],
153
+ Penalties: [
154
+ {
155
+ PenaltyType: 'Yellow',
156
+ Notes: 'This is a test',
157
+ BoutId: 4247,
158
+ PoolName: 'Test with 42-DE',
159
+ IssuedBy: 'Dwain Crackel'
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ PersonId: 72,
165
+ DisplayName: 'Tyler Indermuhle',
166
+ Images: [],
167
+ Penalties: [
168
+ {
169
+ PenaltyType: 'Yellow',
170
+ Notes: 'asdf ads',
171
+ BoutId: 4252,
172
+ PoolName: 'Test with 42-DE',
173
+ IssuedBy: 'Dwain Crackel'
174
+ },
175
+ {
176
+ PenaltyType: 'Yellow',
177
+ Notes: 'adsfasdf',
178
+ BoutId: 4252,
179
+ PoolName: 'Test with 42-DE',
180
+ IssuedBy: 'Dwain Crackel'
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ PersonId: 37,
186
+ DisplayName: 'Brian Thiessen',
187
+ Images: [],
188
+ Penalties: [
189
+ {
190
+ PenaltyType: 'Red',
191
+ Notes: '',
192
+ BoutId: 4254,
193
+ PoolName: 'Test with 42-DE',
194
+ IssuedBy: 'Dwain Crackel'
195
+ }
196
+ ]
197
+ },
198
+ {
199
+ PersonId: 49,
200
+ DisplayName: 'Jack Seyler',
201
+ Images: [],
202
+ Penalties: [
203
+ {
204
+ PenaltyType: 'Red',
205
+ Notes: 'overly jack',
206
+ BoutId: 4256,
207
+ PoolName: 'Test with 42-DE',
208
+ IssuedBy: 'Dwain Crackel'
209
+ }
210
+ ]
211
+ },
212
+ {
213
+ PersonId: 71,
214
+ DisplayName: 'Thomas Kesler',
215
+ Images: [],
216
+ Penalties: [
217
+ {
218
+ PenaltyType: 'Yellow',
219
+ Notes: 'big cat head',
220
+ BoutId: 4256,
221
+ PoolName: 'Test with 42-DE',
222
+ IssuedBy: 'Dwain Crackel'
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ PersonId: 61,
228
+ DisplayName: 'Marten Dollinger',
229
+ Images: [],
230
+ Penalties: [
231
+ {
232
+ PenaltyType: 'Red',
233
+ Notes: 'Red Card',
234
+ BoutId: 4259,
235
+ PoolName: 'Test with 42-DE',
236
+ IssuedBy: 'Dwain Crackel'
237
+ },
238
+ {
239
+ PenaltyType: 'Yellow',
240
+ Notes: 'Yellow card',
241
+ BoutId: 4259,
242
+ PoolName: 'Test with 42-DE',
243
+ IssuedBy: 'Dwain Crackel'
244
+ },
245
+ {
246
+ PenaltyType: 'Yellow',
247
+ Notes: 'adsfa adsf',
248
+ BoutId: 4259,
249
+ PoolName: 'Test with 42-DE',
250
+ IssuedBy: 'Dwain Crackel'
251
+ }
252
+ ]
253
+ },
254
+ {
255
+ PersonId: 110,
256
+ DisplayName: 'Thomas Mueller',
257
+ Images: [],
258
+ Penalties: [
259
+ {
260
+ PenaltyType: 'Yellow',
261
+ Notes: 'adsfadf',
262
+ BoutId: 4259,
263
+ PoolName: 'Test with 42-DE',
264
+ IssuedBy: 'Dwain Crackel'
265
+ }
266
+ ]
267
+ },
268
+ {
269
+ PersonId: 15,
270
+ DisplayName: 'David Peters',
271
+ Images: [],
272
+ Penalties: [
273
+ {
274
+ PenaltyType: 'Yellow',
275
+ Notes: 'Why?',
276
+ BoutId: 4260,
277
+ PoolName: 'Test with 42-DE',
278
+ IssuedBy: 'Dwain Crackel'
279
+ }
280
+ ]
281
+ },
282
+ {
283
+ PersonId: 68,
284
+ DisplayName: 'Regina Mendicino',
285
+ Images: [],
286
+ Penalties: [
287
+ {
288
+ PenaltyType: 'Yellow',
289
+ Notes: '',
290
+ BoutId: 4262,
291
+ PoolName: 'Test with 42-DE',
292
+ IssuedBy: 'Dwain Crackel'
293
+ },
294
+ {
295
+ PenaltyType: 'Yellow',
296
+ Notes: 'this is a test',
297
+ BoutId: 4262,
298
+ PoolName: 'Test with 42-DE',
299
+ IssuedBy: 'Dwain Crackel'
300
+ },
301
+ {
302
+ PenaltyType: 'Yellow',
303
+ Notes: 'This is another card',
304
+ BoutId: 4274,
305
+ PoolName: 'Test with 42-DE',
306
+ IssuedBy: 'Dwain Crackel'
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ PersonId: 34,
312
+ DisplayName: 'Alex Beaudet',
313
+ Images: [],
314
+ Penalties: [
315
+ {
316
+ PenaltyType: 'Yellow',
317
+ Notes: 'Yellow card',
318
+ BoutId: 4263,
319
+ PoolName: 'Test with 42-DE',
320
+ IssuedBy: 'Dwain Crackel'
321
+ },
322
+ {
323
+ PenaltyType: 'Yellow',
324
+ Notes: 'this is a test',
325
+ BoutId: 4263,
326
+ PoolName: 'Test with 42-DE',
327
+ IssuedBy: 'Dwain Crackel'
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ PersonId: 70,
333
+ DisplayName: 'Stephanie Eaton',
334
+ Images: [],
335
+ Penalties: [
336
+ {
337
+ PenaltyType: 'Yellow',
338
+ Notes: 'This is a card',
339
+ BoutId: 4264,
340
+ PoolName: 'Test with 42-DE',
341
+ IssuedBy: 'Dwain Crackel'
342
+ }
343
+ ]
344
+ },
345
+ {
346
+ PersonId: 32,
347
+ DisplayName: 'AJ Trefney',
348
+ Images: [],
349
+ Penalties: [
350
+ {
351
+ PenaltyType: 'Yellow',
352
+ Notes: 'This is a card',
353
+ BoutId: 4265,
354
+ PoolName: 'Test with 42-DE',
355
+ IssuedBy: 'Dwain Crackel'
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ PersonId: 10,
361
+ DisplayName: 'Melissa Jones',
362
+ Images: [
363
+ {
364
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg',
365
+ AltText: null
366
+ }
367
+ ],
368
+ Penalties: [
369
+ {
370
+ PenaltyType: 'Yellow',
371
+ Notes: 'this is a card',
372
+ BoutId: 4266,
373
+ PoolName: 'Test with 42-DE',
374
+ IssuedBy: 'Dwain Crackel'
375
+ }
376
+ ]
377
+ },
378
+ {
379
+ PersonId: 89,
380
+ DisplayName: 'Jesse May',
381
+ Images: [],
382
+ Penalties: [
383
+ {
384
+ PenaltyType: 'Yellow',
385
+ Notes: 'adsfasf',
386
+ BoutId: 4267,
387
+ PoolName: 'Test with 42-DE',
388
+ IssuedBy: 'Dwain Crackel'
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ PersonId: 60,
394
+ DisplayName: 'Lucas Caldwell',
395
+ Images: [],
396
+ Penalties: [
397
+ {
398
+ PenaltyType: 'Yellow',
399
+ Notes: 'Sheep',
400
+ BoutId: 4268,
401
+ PoolName: 'Test with 42-DE',
402
+ IssuedBy: 'Dwain Crackel'
403
+ }
404
+ ]
405
+ },
406
+ {
407
+ PersonId: 118,
408
+ DisplayName: 'Trevor Pedersen',
409
+ Images: [],
410
+ Penalties: [
411
+ {
412
+ PenaltyType: 'Yellow',
413
+ Notes: 'wins to much',
414
+ BoutId: 4269,
415
+ PoolName: 'Test with 42-DE',
416
+ IssuedBy: 'Dwain Crackel'
417
+ }
418
+ ]
419
+ },
420
+ {
421
+ PersonId: 80,
422
+ DisplayName: 'Robin Steele ',
423
+ Images: [],
424
+ Penalties: [
425
+ {
426
+ PenaltyType: 'Red',
427
+ Notes: 'eating a hot dog',
428
+ BoutId: 4270,
429
+ PoolName: 'Test with 42-DE',
430
+ IssuedBy: 'Dwain Crackel'
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ PersonId: 43,
436
+ DisplayName: 'Derek Ray',
437
+ Images: [],
438
+ Penalties: [
439
+ {
440
+ PenaltyType: 'Yellow',
441
+ Notes: 'being too good',
442
+ BoutId: 4270,
443
+ PoolName: 'Test with 42-DE',
444
+ IssuedBy: 'Dwain Crackel'
445
+ },
446
+ {
447
+ PenaltyType: 'Yellow',
448
+ Notes: 'being super',
449
+ BoutId: 4282,
450
+ PoolName: 'Test with 42-DE',
451
+ IssuedBy: 'Dwain Crackel'
452
+ },
453
+ {
454
+ PenaltyType: 'Yellow',
455
+ Notes: 'asdf asdf',
456
+ BoutId: 4282,
457
+ PoolName: 'Test with 42-DE',
458
+ IssuedBy: 'Dwain Crackel'
459
+ }
460
+ ]
461
+ },
462
+ {
463
+ PersonId: 35,
464
+ DisplayName: 'Branden Zipplinger',
465
+ Images: [],
466
+ Penalties: [
467
+ {
468
+ PenaltyType: 'Yellow',
469
+ Notes: 'asdfdas ',
470
+ BoutId: 4273,
471
+ PoolName: 'Test with 42-DE',
472
+ IssuedBy: 'Dwain Crackel'
473
+ },
474
+ {
475
+ PenaltyType: 'Yellow',
476
+ Notes: 'adsfasd',
477
+ BoutId: 4273,
478
+ PoolName: 'Test with 42-DE',
479
+ IssuedBy: 'Dwain Crackel'
480
+ }
481
+ ]
482
+ },
483
+ {
484
+ PersonId: 6,
485
+ DisplayName: 'Courtney Medina',
486
+ Images: [],
487
+ Penalties: [
488
+ {
489
+ PenaltyType: 'Yellow',
490
+ Notes: 'asdfasf',
491
+ BoutId: 4282,
492
+ PoolName: 'Test with 42-DE',
493
+ IssuedBy: 'Dwain Crackel'
494
+ }
495
+ ]
496
+ }
497
+ ],
498
+ Summary: [
499
+ {
500
+ FencerName: 'Marten Dollinger',
501
+ Yellow: 2,
502
+ Red: 1,
503
+ Black: 0
504
+ },
505
+ {
506
+ FencerName: 'Derek Maschmann ',
507
+ Yellow: 2,
508
+ Red: 1,
509
+ Black: 0
510
+ },
511
+ {
512
+ FencerName: 'Isabella Hernandez',
513
+ Yellow: 0,
514
+ Red: 1,
515
+ Black: 0
516
+ },
517
+ {
518
+ FencerName: 'Brian Thiessen',
519
+ Yellow: 0,
520
+ Red: 1,
521
+ Black: 0
522
+ },
523
+ {
524
+ FencerName: 'Jack Seyler',
525
+ Yellow: 0,
526
+ Red: 1,
527
+ Black: 0
528
+ },
529
+ {
530
+ FencerName: 'Robin Steele ',
531
+ Yellow: 0,
532
+ Red: 1,
533
+ Black: 0
534
+ },
535
+ {
536
+ FencerName: 'Derek Ray',
537
+ Yellow: 3,
538
+ Red: 0,
539
+ Black: 0
540
+ },
541
+ {
542
+ FencerName: 'Regina Mendicino',
543
+ Yellow: 3,
544
+ Red: 0,
545
+ Black: 0
546
+ },
547
+ {
548
+ FencerName: 'Jason Roggenbuck',
549
+ Yellow: 3,
550
+ Red: 0,
551
+ Black: 0
552
+ },
553
+ {
554
+ FencerName: 'John Tse',
555
+ Yellow: 3,
556
+ Red: 0,
557
+ Black: 0
558
+ },
559
+ {
560
+ FencerName: 'Sylvia Lee',
561
+ Yellow: 2,
562
+ Red: 0,
563
+ Black: 0
564
+ },
565
+ {
566
+ FencerName: 'Alex Beaudet',
567
+ Yellow: 2,
568
+ Red: 0,
569
+ Black: 0
570
+ },
571
+ {
572
+ FencerName: 'Branden Zipplinger',
573
+ Yellow: 2,
574
+ Red: 0,
575
+ Black: 0
576
+ },
577
+ {
578
+ FencerName: 'Jonathan Rose',
579
+ Yellow: 2,
580
+ Red: 0,
581
+ Black: 0
582
+ },
583
+ {
584
+ FencerName: 'Tyler Indermuhle',
585
+ Yellow: 2,
586
+ Red: 0,
587
+ Black: 0
588
+ },
589
+ {
590
+ FencerName: 'Dave Larabee',
591
+ Yellow: 1,
592
+ Red: 0,
593
+ Black: 0
594
+ },
595
+ {
596
+ FencerName: 'Courtney Medina',
597
+ Yellow: 1,
598
+ Red: 0,
599
+ Black: 0
600
+ },
601
+ {
602
+ FencerName: 'Melissa Jones',
603
+ Yellow: 1,
604
+ Red: 0,
605
+ Black: 0
606
+ },
607
+ {
608
+ FencerName: 'David Peters',
609
+ Yellow: 1,
610
+ Red: 0,
611
+ Black: 0
612
+ },
613
+ {
614
+ FencerName: 'AJ Trefney',
615
+ Yellow: 1,
616
+ Red: 0,
617
+ Black: 0
618
+ },
619
+ {
620
+ FencerName: 'Lucas Caldwell',
621
+ Yellow: 1,
622
+ Red: 0,
623
+ Black: 0
624
+ },
625
+ {
626
+ FencerName: 'Stephanie Eaton',
627
+ Yellow: 1,
628
+ Red: 0,
629
+ Black: 0
630
+ },
631
+ {
632
+ FencerName: 'Thomas Kesler',
633
+ Yellow: 1,
634
+ Red: 0,
635
+ Black: 0
636
+ },
637
+ {
638
+ FencerName: 'Jesse May',
639
+ Yellow: 1,
640
+ Red: 0,
641
+ Black: 0
642
+ },
643
+ {
644
+ FencerName: 'Thomas Mueller',
645
+ Yellow: 1,
646
+ Red: 0,
647
+ Black: 0
648
+ },
649
+ {
650
+ FencerName: 'Trevor Pedersen',
651
+ Yellow: 1,
652
+ Red: 0,
653
+ Black: 0
654
+ }
655
+ ]
656
+ };
658
657
 
659
- export default getPenaltiesByEvent;
658
+ export default getPenaltiesByEvent;