@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,675 +1,674 @@
1
- const getPoolsWithBouts =
2
- [
1
+ const getPoolsWithBouts = [
2
+ {
3
+ TimerStatus: 'stopped',
4
+ RefName: 'Unassigned',
5
+ BoutId: 16725,
6
+ PoolId: 760,
7
+ EventId: 190,
8
+ OrderIndex: 0,
9
+ Person1Pos: 1,
10
+ Person2Pos: 2,
11
+ Person1Id: 158,
12
+ Person2Id: 409,
13
+ Status: 'Scheduled',
14
+ Score1: 0,
15
+ Score2: 0,
16
+ Started: null,
17
+ Ended: null,
18
+ TimeLeft: 0,
19
+ CurrentPass: 0,
20
+ MaxPasses: 0,
21
+ RoundLabel: null,
22
+ DEBoutId: null,
23
+ DENextBoutId: null,
24
+ LoserNextBoutId: null,
25
+ RefereeId: null,
26
+ createdAt: '2025-09-08T19:24:36.000Z',
27
+ updatedAt: '2025-09-08T19:24:36.000Z',
28
+ Person1: {
29
+ PersonId: 158,
30
+ DisplayName: 'Stevi Parker',
31
+ ClubId: 62,
32
+ ShowData: true,
33
+ Images: [],
34
+ Club: {
35
+ Name: 'Bucks Historical Longsword',
36
+ Color1: 'Red',
37
+ Color2: 'Gold'
38
+ },
39
+ EventPersons: [
3
40
  {
4
- "TimerStatus": "stopped",
5
- "RefName": "Unassigned",
6
- "BoutId": 16725,
7
- "PoolId": 760,
8
- "EventId": 190,
9
- "OrderIndex": 0,
10
- "Person1Pos": 1,
11
- "Person2Pos": 2,
12
- "Person1Id": 158,
13
- "Person2Id": 409,
14
- "Status": "Scheduled",
15
- "Score1": 0,
16
- "Score2": 0,
17
- "Started": null,
18
- "Ended": null,
19
- "TimeLeft": 0,
20
- "CurrentPass": 0,
21
- "MaxPasses": 0,
22
- "RoundLabel": null,
23
- "DEBoutId": null,
24
- "DENextBoutId": null,
25
- "LoserNextBoutId": null,
26
- "RefereeId": null,
27
- "createdAt": "2025-09-08T19:24:36.000Z",
28
- "updatedAt": "2025-09-08T19:24:36.000Z",
29
- "Person1": {
30
- "PersonId": 158,
31
- "DisplayName": "Stevi Parker",
32
- "ClubId": 62,
33
- "ShowData": true,
34
- "Images": [],
35
- "Club": {
36
- "Name": "Bucks Historical Longsword",
37
- "Color1": "Red",
38
- "Color2": "Gold"
39
- },
40
- "EventPersons": [
41
- {
42
- "DEPosition": null,
43
- "LastNote": null
44
- }
45
- ],
46
- "Penalties": []
47
- },
48
- "Person2": {
49
- "PersonId": 409,
50
- "DisplayName": "Neil Satterlund",
51
- "ClubId": 17,
52
- "ShowData": true,
53
- "Images": [],
54
- "Club": {
55
- "Name": "No Club Affiliation "
56
- },
57
- "EventPersons": [
58
- {
59
- "DEPosition": null,
60
- "LastNote": null
61
- }
62
- ],
63
- "Penalties": []
64
- },
65
- "Pool": {
66
- "RingName": "Ring 1"
67
- },
68
- "Metrics": []
69
- },
41
+ DEPosition: null,
42
+ LastNote: null
43
+ }
44
+ ],
45
+ Penalties: []
46
+ },
47
+ Person2: {
48
+ PersonId: 409,
49
+ DisplayName: 'Neil Satterlund',
50
+ ClubId: 17,
51
+ ShowData: true,
52
+ Images: [],
53
+ Club: {
54
+ Name: 'No Club Affiliation '
55
+ },
56
+ EventPersons: [
70
57
  {
71
- "TimerStatus": "stopped",
72
- "RefName": "Unassigned",
73
- "BoutId": 16726,
74
- "PoolId": 760,
75
- "EventId": 190,
76
- "OrderIndex": 1,
77
- "Person1Pos": 3,
78
- "Person2Pos": 4,
79
- "Person1Id": 79,
80
- "Person2Id": 357,
81
- "Status": "Scheduled",
82
- "Score1": 0,
83
- "Score2": 0,
84
- "Started": null,
85
- "Ended": null,
86
- "TimeLeft": 0,
87
- "CurrentPass": 0,
88
- "MaxPasses": 0,
89
- "RoundLabel": null,
90
- "DEBoutId": null,
91
- "DENextBoutId": null,
92
- "LoserNextBoutId": null,
93
- "RefereeId": null,
94
- "createdAt": "2025-09-08T19:24:36.000Z",
95
- "updatedAt": "2025-09-08T19:24:36.000Z",
96
- "Person1": {
97
- "PersonId": 79,
98
- "DisplayName": "Tom Testerlou",
99
- "ClubId": 10,
100
- "ShowData": true,
101
- "Images": [],
102
- "Club": {
103
- "Name": "Columbus United Fencing Club",
104
- "Color1": "navy",
105
- "Color2": "rose"
106
- },
107
- "EventPersons": [
108
- {
109
- "DEPosition": null,
110
- "LastNote": null
111
- }
112
- ],
113
- "Penalties": []
114
- },
115
- "Person2": {
116
- "PersonId": 357,
117
- "DisplayName": "Donna Kalteyer",
118
- "ClubId": 276,
119
- "ShowData": true,
120
- "Images": [],
121
- "Club": {
122
- "Name": "Round Table Fencing"
123
- },
124
- "EventPersons": [
125
- {
126
- "DEPosition": null,
127
- "LastNote": null
128
- }
129
- ],
130
- "Penalties": []
131
- },
132
- "Pool": {
133
- "RingName": "Ring 1"
134
- },
135
- "Metrics": []
136
- },
58
+ DEPosition: null,
59
+ LastNote: null
60
+ }
61
+ ],
62
+ Penalties: []
63
+ },
64
+ Pool: {
65
+ RingName: 'Ring 1'
66
+ },
67
+ Metrics: []
68
+ },
69
+ {
70
+ TimerStatus: 'stopped',
71
+ RefName: 'Unassigned',
72
+ BoutId: 16726,
73
+ PoolId: 760,
74
+ EventId: 190,
75
+ OrderIndex: 1,
76
+ Person1Pos: 3,
77
+ Person2Pos: 4,
78
+ Person1Id: 79,
79
+ Person2Id: 357,
80
+ Status: 'Scheduled',
81
+ Score1: 0,
82
+ Score2: 0,
83
+ Started: null,
84
+ Ended: null,
85
+ TimeLeft: 0,
86
+ CurrentPass: 0,
87
+ MaxPasses: 0,
88
+ RoundLabel: null,
89
+ DEBoutId: null,
90
+ DENextBoutId: null,
91
+ LoserNextBoutId: null,
92
+ RefereeId: null,
93
+ createdAt: '2025-09-08T19:24:36.000Z',
94
+ updatedAt: '2025-09-08T19:24:36.000Z',
95
+ Person1: {
96
+ PersonId: 79,
97
+ DisplayName: 'Tom Testerlou',
98
+ ClubId: 10,
99
+ ShowData: true,
100
+ Images: [],
101
+ Club: {
102
+ Name: 'Columbus United Fencing Club',
103
+ Color1: 'navy',
104
+ Color2: 'rose'
105
+ },
106
+ EventPersons: [
137
107
  {
138
- "TimerStatus": "stopped",
139
- "RefName": "Unassigned",
140
- "BoutId": 16727,
141
- "PoolId": 760,
142
- "EventId": 190,
143
- "OrderIndex": 2,
144
- "Person1Pos": 5,
145
- "Person2Pos": 1,
146
- "Person1Id": 243,
147
- "Person2Id": 158,
148
- "Status": "Scheduled",
149
- "Score1": 0,
150
- "Score2": 0,
151
- "Started": null,
152
- "Ended": null,
153
- "TimeLeft": 0,
154
- "CurrentPass": 0,
155
- "MaxPasses": 0,
156
- "RoundLabel": null,
157
- "DEBoutId": null,
158
- "DENextBoutId": null,
159
- "LoserNextBoutId": null,
160
- "RefereeId": null,
161
- "createdAt": "2025-09-08T19:24:36.000Z",
162
- "updatedAt": "2025-09-08T19:24:36.000Z",
163
- "Person1": {
164
- "PersonId": 243,
165
- "DisplayName": "Austin Straub",
166
- "ClubId": 62,
167
- "ShowData": true,
168
- "Images": [],
169
- "Club": {
170
- "Name": "Bucks Historical Longsword",
171
- "Color1": "Red",
172
- "Color2": "Gold"
173
- },
174
- "EventPersons": [
175
- {
176
- "DEPosition": null,
177
- "LastNote": null
178
- }
179
- ],
180
- "Penalties": []
181
- },
182
- "Person2": {
183
- "PersonId": 158,
184
- "DisplayName": "Stevi Parker",
185
- "ClubId": 62,
186
- "ShowData": true,
187
- "Images": [],
188
- "Club": {
189
- "Name": "Bucks Historical Longsword"
190
- },
191
- "EventPersons": [
192
- {
193
- "DEPosition": null,
194
- "LastNote": null
195
- }
196
- ],
197
- "Penalties": []
198
- },
199
- "Pool": {
200
- "RingName": "Ring 1"
201
- },
202
- "Metrics": []
203
- },
108
+ DEPosition: null,
109
+ LastNote: null
110
+ }
111
+ ],
112
+ Penalties: []
113
+ },
114
+ Person2: {
115
+ PersonId: 357,
116
+ DisplayName: 'Donna Kalteyer',
117
+ ClubId: 276,
118
+ ShowData: true,
119
+ Images: [],
120
+ Club: {
121
+ Name: 'Round Table Fencing'
122
+ },
123
+ EventPersons: [
204
124
  {
205
- "TimerStatus": "stopped",
206
- "RefName": "Unassigned",
207
- "BoutId": 16728,
208
- "PoolId": 760,
209
- "EventId": 190,
210
- "OrderIndex": 3,
211
- "Person1Pos": 2,
212
- "Person2Pos": 3,
213
- "Person1Id": 409,
214
- "Person2Id": 79,
215
- "Status": "Scheduled",
216
- "Score1": 0,
217
- "Score2": 0,
218
- "Started": null,
219
- "Ended": null,
220
- "TimeLeft": 0,
221
- "CurrentPass": 0,
222
- "MaxPasses": 0,
223
- "RoundLabel": null,
224
- "DEBoutId": null,
225
- "DENextBoutId": null,
226
- "LoserNextBoutId": null,
227
- "RefereeId": null,
228
- "createdAt": "2025-09-08T19:24:36.000Z",
229
- "updatedAt": "2025-09-08T19:24:36.000Z",
230
- "Person1": {
231
- "PersonId": 409,
232
- "DisplayName": "Neil Satterlund",
233
- "ClubId": 17,
234
- "ShowData": true,
235
- "Images": [],
236
- "Club": {
237
- "Name": "No Club Affiliation ",
238
- "Color1": "red",
239
- "Color2": "blue"
240
- },
241
- "EventPersons": [
242
- {
243
- "DEPosition": null,
244
- "LastNote": null
245
- }
246
- ],
247
- "Penalties": []
248
- },
249
- "Person2": {
250
- "PersonId": 79,
251
- "DisplayName": "Tom Testerlou",
252
- "ClubId": 10,
253
- "ShowData": true,
254
- "Images": [],
255
- "Club": {
256
- "Name": "Columbus United Fencing Club"
257
- },
258
- "EventPersons": [
259
- {
260
- "DEPosition": null,
261
- "LastNote": null
262
- }
263
- ],
264
- "Penalties": []
265
- },
266
- "Pool": {
267
- "RingName": "Ring 1"
268
- },
269
- "Metrics": []
270
- },
125
+ DEPosition: null,
126
+ LastNote: null
127
+ }
128
+ ],
129
+ Penalties: []
130
+ },
131
+ Pool: {
132
+ RingName: 'Ring 1'
133
+ },
134
+ Metrics: []
135
+ },
136
+ {
137
+ TimerStatus: 'stopped',
138
+ RefName: 'Unassigned',
139
+ BoutId: 16727,
140
+ PoolId: 760,
141
+ EventId: 190,
142
+ OrderIndex: 2,
143
+ Person1Pos: 5,
144
+ Person2Pos: 1,
145
+ Person1Id: 243,
146
+ Person2Id: 158,
147
+ Status: 'Scheduled',
148
+ Score1: 0,
149
+ Score2: 0,
150
+ Started: null,
151
+ Ended: null,
152
+ TimeLeft: 0,
153
+ CurrentPass: 0,
154
+ MaxPasses: 0,
155
+ RoundLabel: null,
156
+ DEBoutId: null,
157
+ DENextBoutId: null,
158
+ LoserNextBoutId: null,
159
+ RefereeId: null,
160
+ createdAt: '2025-09-08T19:24:36.000Z',
161
+ updatedAt: '2025-09-08T19:24:36.000Z',
162
+ Person1: {
163
+ PersonId: 243,
164
+ DisplayName: 'Austin Straub',
165
+ ClubId: 62,
166
+ ShowData: true,
167
+ Images: [],
168
+ Club: {
169
+ Name: 'Bucks Historical Longsword',
170
+ Color1: 'Red',
171
+ Color2: 'Gold'
172
+ },
173
+ EventPersons: [
271
174
  {
272
- "TimerStatus": "stopped",
273
- "RefName": "Unassigned",
274
- "BoutId": 16729,
275
- "PoolId": 760,
276
- "EventId": 190,
277
- "OrderIndex": 4,
278
- "Person1Pos": 5,
279
- "Person2Pos": 4,
280
- "Person1Id": 243,
281
- "Person2Id": 357,
282
- "Status": "Scheduled",
283
- "Score1": 0,
284
- "Score2": 0,
285
- "Started": null,
286
- "Ended": null,
287
- "TimeLeft": 0,
288
- "CurrentPass": 0,
289
- "MaxPasses": 0,
290
- "RoundLabel": null,
291
- "DEBoutId": null,
292
- "DENextBoutId": null,
293
- "LoserNextBoutId": null,
294
- "RefereeId": null,
295
- "createdAt": "2025-09-08T19:24:36.000Z",
296
- "updatedAt": "2025-09-08T19:24:36.000Z",
297
- "Person1": {
298
- "PersonId": 243,
299
- "DisplayName": "Austin Straub",
300
- "ClubId": 62,
301
- "ShowData": true,
302
- "Images": [],
303
- "Club": {
304
- "Name": "Bucks Historical Longsword",
305
- "Color1": "Red",
306
- "Color2": "Gold"
307
- },
308
- "EventPersons": [
309
- {
310
- "DEPosition": null,
311
- "LastNote": null
312
- }
313
- ],
314
- "Penalties": []
315
- },
316
- "Person2": {
317
- "PersonId": 357,
318
- "DisplayName": "Donna Kalteyer",
319
- "ClubId": 276,
320
- "ShowData": true,
321
- "Images": [],
322
- "Club": {
323
- "Name": "Round Table Fencing"
324
- },
325
- "EventPersons": [
326
- {
327
- "DEPosition": null,
328
- "LastNote": null
329
- }
330
- ],
331
- "Penalties": []
332
- },
333
- "Pool": {
334
- "RingName": "Ring 1"
335
- },
336
- "Metrics": []
337
- },
175
+ DEPosition: null,
176
+ LastNote: null
177
+ }
178
+ ],
179
+ Penalties: []
180
+ },
181
+ Person2: {
182
+ PersonId: 158,
183
+ DisplayName: 'Stevi Parker',
184
+ ClubId: 62,
185
+ ShowData: true,
186
+ Images: [],
187
+ Club: {
188
+ Name: 'Bucks Historical Longsword'
189
+ },
190
+ EventPersons: [
338
191
  {
339
- "TimerStatus": "stopped",
340
- "RefName": "Unassigned",
341
- "BoutId": 16730,
342
- "PoolId": 760,
343
- "EventId": 190,
344
- "OrderIndex": 5,
345
- "Person1Pos": 1,
346
- "Person2Pos": 3,
347
- "Person1Id": 158,
348
- "Person2Id": 79,
349
- "Status": "Scheduled",
350
- "Score1": 0,
351
- "Score2": 0,
352
- "Started": null,
353
- "Ended": null,
354
- "TimeLeft": 0,
355
- "CurrentPass": 0,
356
- "MaxPasses": 0,
357
- "RoundLabel": null,
358
- "DEBoutId": null,
359
- "DENextBoutId": null,
360
- "LoserNextBoutId": null,
361
- "RefereeId": null,
362
- "createdAt": "2025-09-08T19:24:36.000Z",
363
- "updatedAt": "2025-09-08T19:24:36.000Z",
364
- "Person1": {
365
- "PersonId": 158,
366
- "DisplayName": "Stevi Parker",
367
- "ClubId": 62,
368
- "ShowData": true,
369
- "Images": [],
370
- "Club": {
371
- "Name": "Bucks Historical Longsword",
372
- "Color1": "Red",
373
- "Color2": "Gold"
374
- },
375
- "EventPersons": [
376
- {
377
- "DEPosition": null,
378
- "LastNote": null
379
- }
380
- ],
381
- "Penalties": []
382
- },
383
- "Person2": {
384
- "PersonId": 79,
385
- "DisplayName": "Tom Testerlou",
386
- "ClubId": 10,
387
- "ShowData": true,
388
- "Images": [],
389
- "Club": {
390
- "Name": "Columbus United Fencing Club"
391
- },
392
- "EventPersons": [
393
- {
394
- "DEPosition": null,
395
- "LastNote": null
396
- }
397
- ],
398
- "Penalties": []
399
- },
400
- "Pool": {
401
- "RingName": "Ring 1"
402
- },
403
- "Metrics": []
404
- },
192
+ DEPosition: null,
193
+ LastNote: null
194
+ }
195
+ ],
196
+ Penalties: []
197
+ },
198
+ Pool: {
199
+ RingName: 'Ring 1'
200
+ },
201
+ Metrics: []
202
+ },
203
+ {
204
+ TimerStatus: 'stopped',
205
+ RefName: 'Unassigned',
206
+ BoutId: 16728,
207
+ PoolId: 760,
208
+ EventId: 190,
209
+ OrderIndex: 3,
210
+ Person1Pos: 2,
211
+ Person2Pos: 3,
212
+ Person1Id: 409,
213
+ Person2Id: 79,
214
+ Status: 'Scheduled',
215
+ Score1: 0,
216
+ Score2: 0,
217
+ Started: null,
218
+ Ended: null,
219
+ TimeLeft: 0,
220
+ CurrentPass: 0,
221
+ MaxPasses: 0,
222
+ RoundLabel: null,
223
+ DEBoutId: null,
224
+ DENextBoutId: null,
225
+ LoserNextBoutId: null,
226
+ RefereeId: null,
227
+ createdAt: '2025-09-08T19:24:36.000Z',
228
+ updatedAt: '2025-09-08T19:24:36.000Z',
229
+ Person1: {
230
+ PersonId: 409,
231
+ DisplayName: 'Neil Satterlund',
232
+ ClubId: 17,
233
+ ShowData: true,
234
+ Images: [],
235
+ Club: {
236
+ Name: 'No Club Affiliation ',
237
+ Color1: 'red',
238
+ Color2: 'blue'
239
+ },
240
+ EventPersons: [
405
241
  {
406
- "TimerStatus": "stopped",
407
- "RefName": "Unassigned",
408
- "BoutId": 16731,
409
- "PoolId": 760,
410
- "EventId": 190,
411
- "OrderIndex": 6,
412
- "Person1Pos": 2,
413
- "Person2Pos": 5,
414
- "Person1Id": 409,
415
- "Person2Id": 243,
416
- "Status": "Scheduled",
417
- "Score1": 0,
418
- "Score2": 0,
419
- "Started": null,
420
- "Ended": null,
421
- "TimeLeft": 0,
422
- "CurrentPass": 0,
423
- "MaxPasses": 0,
424
- "RoundLabel": null,
425
- "DEBoutId": null,
426
- "DENextBoutId": null,
427
- "LoserNextBoutId": null,
428
- "RefereeId": null,
429
- "createdAt": "2025-09-08T19:24:36.000Z",
430
- "updatedAt": "2025-09-08T19:24:36.000Z",
431
- "Person1": {
432
- "PersonId": 409,
433
- "DisplayName": "Neil Satterlund",
434
- "ClubId": 17,
435
- "ShowData": true,
436
- "Images": [],
437
- "Club": {
438
- "Name": "No Club Affiliation ",
439
- "Color1": "red",
440
- "Color2": "blue"
441
- },
442
- "EventPersons": [
443
- {
444
- "DEPosition": null,
445
- "LastNote": null
446
- }
447
- ],
448
- "Penalties": []
449
- },
450
- "Person2": {
451
- "PersonId": 243,
452
- "DisplayName": "Austin Straub",
453
- "ClubId": 62,
454
- "ShowData": true,
455
- "Images": [],
456
- "Club": {
457
- "Name": "Bucks Historical Longsword"
458
- },
459
- "EventPersons": [
460
- {
461
- "DEPosition": null,
462
- "LastNote": null
463
- }
464
- ],
465
- "Penalties": []
466
- },
467
- "Pool": {
468
- "RingName": "Ring 1"
469
- },
470
- "Metrics": []
471
- },
242
+ DEPosition: null,
243
+ LastNote: null
244
+ }
245
+ ],
246
+ Penalties: []
247
+ },
248
+ Person2: {
249
+ PersonId: 79,
250
+ DisplayName: 'Tom Testerlou',
251
+ ClubId: 10,
252
+ ShowData: true,
253
+ Images: [],
254
+ Club: {
255
+ Name: 'Columbus United Fencing Club'
256
+ },
257
+ EventPersons: [
472
258
  {
473
- "TimerStatus": "stopped",
474
- "RefName": "Unassigned",
475
- "BoutId": 16732,
476
- "PoolId": 760,
477
- "EventId": 190,
478
- "OrderIndex": 7,
479
- "Person1Pos": 4,
480
- "Person2Pos": 1,
481
- "Person1Id": 357,
482
- "Person2Id": 158,
483
- "Status": "Scheduled",
484
- "Score1": 0,
485
- "Score2": 0,
486
- "Started": null,
487
- "Ended": null,
488
- "TimeLeft": 0,
489
- "CurrentPass": 0,
490
- "MaxPasses": 0,
491
- "RoundLabel": null,
492
- "DEBoutId": null,
493
- "DENextBoutId": null,
494
- "LoserNextBoutId": null,
495
- "RefereeId": null,
496
- "createdAt": "2025-09-08T19:24:36.000Z",
497
- "updatedAt": "2025-09-08T19:24:36.000Z",
498
- "Person1": {
499
- "PersonId": 357,
500
- "DisplayName": "Donna Kalteyer",
501
- "ClubId": 276,
502
- "ShowData": true,
503
- "Images": [],
504
- "Club": {
505
- "Name": "Round Table Fencing",
506
- "Color1": "Black",
507
- "Color2": "Blue"
508
- },
509
- "EventPersons": [
510
- {
511
- "DEPosition": null,
512
- "LastNote": null
513
- }
514
- ],
515
- "Penalties": []
516
- },
517
- "Person2": {
518
- "PersonId": 158,
519
- "DisplayName": "Stevi Parker",
520
- "ClubId": 62,
521
- "ShowData": true,
522
- "Images": [],
523
- "Club": {
524
- "Name": "Bucks Historical Longsword"
525
- },
526
- "EventPersons": [
527
- {
528
- "DEPosition": null,
529
- "LastNote": null
530
- }
531
- ],
532
- "Penalties": []
533
- },
534
- "Pool": {
535
- "RingName": "Ring 1"
536
- },
537
- "Metrics": []
538
- },
259
+ DEPosition: null,
260
+ LastNote: null
261
+ }
262
+ ],
263
+ Penalties: []
264
+ },
265
+ Pool: {
266
+ RingName: 'Ring 1'
267
+ },
268
+ Metrics: []
269
+ },
270
+ {
271
+ TimerStatus: 'stopped',
272
+ RefName: 'Unassigned',
273
+ BoutId: 16729,
274
+ PoolId: 760,
275
+ EventId: 190,
276
+ OrderIndex: 4,
277
+ Person1Pos: 5,
278
+ Person2Pos: 4,
279
+ Person1Id: 243,
280
+ Person2Id: 357,
281
+ Status: 'Scheduled',
282
+ Score1: 0,
283
+ Score2: 0,
284
+ Started: null,
285
+ Ended: null,
286
+ TimeLeft: 0,
287
+ CurrentPass: 0,
288
+ MaxPasses: 0,
289
+ RoundLabel: null,
290
+ DEBoutId: null,
291
+ DENextBoutId: null,
292
+ LoserNextBoutId: null,
293
+ RefereeId: null,
294
+ createdAt: '2025-09-08T19:24:36.000Z',
295
+ updatedAt: '2025-09-08T19:24:36.000Z',
296
+ Person1: {
297
+ PersonId: 243,
298
+ DisplayName: 'Austin Straub',
299
+ ClubId: 62,
300
+ ShowData: true,
301
+ Images: [],
302
+ Club: {
303
+ Name: 'Bucks Historical Longsword',
304
+ Color1: 'Red',
305
+ Color2: 'Gold'
306
+ },
307
+ EventPersons: [
539
308
  {
540
- "TimerStatus": "stopped",
541
- "RefName": "Unassigned",
542
- "BoutId": 16733,
543
- "PoolId": 760,
544
- "EventId": 190,
545
- "OrderIndex": 8,
546
- "Person1Pos": 3,
547
- "Person2Pos": 5,
548
- "Person1Id": 79,
549
- "Person2Id": 243,
550
- "Status": "Scheduled",
551
- "Score1": 0,
552
- "Score2": 0,
553
- "Started": null,
554
- "Ended": null,
555
- "TimeLeft": 0,
556
- "CurrentPass": 0,
557
- "MaxPasses": 0,
558
- "RoundLabel": null,
559
- "DEBoutId": null,
560
- "DENextBoutId": null,
561
- "LoserNextBoutId": null,
562
- "RefereeId": null,
563
- "createdAt": "2025-09-08T19:24:36.000Z",
564
- "updatedAt": "2025-09-08T19:24:36.000Z",
565
- "Person1": {
566
- "PersonId": 79,
567
- "DisplayName": "Tom Testerlou",
568
- "ClubId": 10,
569
- "ShowData": true,
570
- "Images": [],
571
- "Club": {
572
- "Name": "Columbus United Fencing Club",
573
- "Color1": "navy",
574
- "Color2": "rose"
575
- },
576
- "EventPersons": [
577
- {
578
- "DEPosition": null,
579
- "LastNote": null
580
- }
581
- ],
582
- "Penalties": []
583
- },
584
- "Person2": {
585
- "PersonId": 243,
586
- "DisplayName": "Austin Straub",
587
- "ClubId": 62,
588
- "ShowData": true,
589
- "Images": [],
590
- "Club": {
591
- "Name": "Bucks Historical Longsword"
592
- },
593
- "EventPersons": [
594
- {
595
- "DEPosition": null,
596
- "LastNote": null
597
- }
598
- ],
599
- "Penalties": []
600
- },
601
- "Pool": {
602
- "RingName": "Ring 1"
603
- },
604
- "Metrics": []
605
- },
309
+ DEPosition: null,
310
+ LastNote: null
311
+ }
312
+ ],
313
+ Penalties: []
314
+ },
315
+ Person2: {
316
+ PersonId: 357,
317
+ DisplayName: 'Donna Kalteyer',
318
+ ClubId: 276,
319
+ ShowData: true,
320
+ Images: [],
321
+ Club: {
322
+ Name: 'Round Table Fencing'
323
+ },
324
+ EventPersons: [
325
+ {
326
+ DEPosition: null,
327
+ LastNote: null
328
+ }
329
+ ],
330
+ Penalties: []
331
+ },
332
+ Pool: {
333
+ RingName: 'Ring 1'
334
+ },
335
+ Metrics: []
336
+ },
337
+ {
338
+ TimerStatus: 'stopped',
339
+ RefName: 'Unassigned',
340
+ BoutId: 16730,
341
+ PoolId: 760,
342
+ EventId: 190,
343
+ OrderIndex: 5,
344
+ Person1Pos: 1,
345
+ Person2Pos: 3,
346
+ Person1Id: 158,
347
+ Person2Id: 79,
348
+ Status: 'Scheduled',
349
+ Score1: 0,
350
+ Score2: 0,
351
+ Started: null,
352
+ Ended: null,
353
+ TimeLeft: 0,
354
+ CurrentPass: 0,
355
+ MaxPasses: 0,
356
+ RoundLabel: null,
357
+ DEBoutId: null,
358
+ DENextBoutId: null,
359
+ LoserNextBoutId: null,
360
+ RefereeId: null,
361
+ createdAt: '2025-09-08T19:24:36.000Z',
362
+ updatedAt: '2025-09-08T19:24:36.000Z',
363
+ Person1: {
364
+ PersonId: 158,
365
+ DisplayName: 'Stevi Parker',
366
+ ClubId: 62,
367
+ ShowData: true,
368
+ Images: [],
369
+ Club: {
370
+ Name: 'Bucks Historical Longsword',
371
+ Color1: 'Red',
372
+ Color2: 'Gold'
373
+ },
374
+ EventPersons: [
375
+ {
376
+ DEPosition: null,
377
+ LastNote: null
378
+ }
379
+ ],
380
+ Penalties: []
381
+ },
382
+ Person2: {
383
+ PersonId: 79,
384
+ DisplayName: 'Tom Testerlou',
385
+ ClubId: 10,
386
+ ShowData: true,
387
+ Images: [],
388
+ Club: {
389
+ Name: 'Columbus United Fencing Club'
390
+ },
391
+ EventPersons: [
392
+ {
393
+ DEPosition: null,
394
+ LastNote: null
395
+ }
396
+ ],
397
+ Penalties: []
398
+ },
399
+ Pool: {
400
+ RingName: 'Ring 1'
401
+ },
402
+ Metrics: []
403
+ },
404
+ {
405
+ TimerStatus: 'stopped',
406
+ RefName: 'Unassigned',
407
+ BoutId: 16731,
408
+ PoolId: 760,
409
+ EventId: 190,
410
+ OrderIndex: 6,
411
+ Person1Pos: 2,
412
+ Person2Pos: 5,
413
+ Person1Id: 409,
414
+ Person2Id: 243,
415
+ Status: 'Scheduled',
416
+ Score1: 0,
417
+ Score2: 0,
418
+ Started: null,
419
+ Ended: null,
420
+ TimeLeft: 0,
421
+ CurrentPass: 0,
422
+ MaxPasses: 0,
423
+ RoundLabel: null,
424
+ DEBoutId: null,
425
+ DENextBoutId: null,
426
+ LoserNextBoutId: null,
427
+ RefereeId: null,
428
+ createdAt: '2025-09-08T19:24:36.000Z',
429
+ updatedAt: '2025-09-08T19:24:36.000Z',
430
+ Person1: {
431
+ PersonId: 409,
432
+ DisplayName: 'Neil Satterlund',
433
+ ClubId: 17,
434
+ ShowData: true,
435
+ Images: [],
436
+ Club: {
437
+ Name: 'No Club Affiliation ',
438
+ Color1: 'red',
439
+ Color2: 'blue'
440
+ },
441
+ EventPersons: [
442
+ {
443
+ DEPosition: null,
444
+ LastNote: null
445
+ }
446
+ ],
447
+ Penalties: []
448
+ },
449
+ Person2: {
450
+ PersonId: 243,
451
+ DisplayName: 'Austin Straub',
452
+ ClubId: 62,
453
+ ShowData: true,
454
+ Images: [],
455
+ Club: {
456
+ Name: 'Bucks Historical Longsword'
457
+ },
458
+ EventPersons: [
459
+ {
460
+ DEPosition: null,
461
+ LastNote: null
462
+ }
463
+ ],
464
+ Penalties: []
465
+ },
466
+ Pool: {
467
+ RingName: 'Ring 1'
468
+ },
469
+ Metrics: []
470
+ },
471
+ {
472
+ TimerStatus: 'stopped',
473
+ RefName: 'Unassigned',
474
+ BoutId: 16732,
475
+ PoolId: 760,
476
+ EventId: 190,
477
+ OrderIndex: 7,
478
+ Person1Pos: 4,
479
+ Person2Pos: 1,
480
+ Person1Id: 357,
481
+ Person2Id: 158,
482
+ Status: 'Scheduled',
483
+ Score1: 0,
484
+ Score2: 0,
485
+ Started: null,
486
+ Ended: null,
487
+ TimeLeft: 0,
488
+ CurrentPass: 0,
489
+ MaxPasses: 0,
490
+ RoundLabel: null,
491
+ DEBoutId: null,
492
+ DENextBoutId: null,
493
+ LoserNextBoutId: null,
494
+ RefereeId: null,
495
+ createdAt: '2025-09-08T19:24:36.000Z',
496
+ updatedAt: '2025-09-08T19:24:36.000Z',
497
+ Person1: {
498
+ PersonId: 357,
499
+ DisplayName: 'Donna Kalteyer',
500
+ ClubId: 276,
501
+ ShowData: true,
502
+ Images: [],
503
+ Club: {
504
+ Name: 'Round Table Fencing',
505
+ Color1: 'Black',
506
+ Color2: 'Blue'
507
+ },
508
+ EventPersons: [
509
+ {
510
+ DEPosition: null,
511
+ LastNote: null
512
+ }
513
+ ],
514
+ Penalties: []
515
+ },
516
+ Person2: {
517
+ PersonId: 158,
518
+ DisplayName: 'Stevi Parker',
519
+ ClubId: 62,
520
+ ShowData: true,
521
+ Images: [],
522
+ Club: {
523
+ Name: 'Bucks Historical Longsword'
524
+ },
525
+ EventPersons: [
526
+ {
527
+ DEPosition: null,
528
+ LastNote: null
529
+ }
530
+ ],
531
+ Penalties: []
532
+ },
533
+ Pool: {
534
+ RingName: 'Ring 1'
535
+ },
536
+ Metrics: []
537
+ },
538
+ {
539
+ TimerStatus: 'stopped',
540
+ RefName: 'Unassigned',
541
+ BoutId: 16733,
542
+ PoolId: 760,
543
+ EventId: 190,
544
+ OrderIndex: 8,
545
+ Person1Pos: 3,
546
+ Person2Pos: 5,
547
+ Person1Id: 79,
548
+ Person2Id: 243,
549
+ Status: 'Scheduled',
550
+ Score1: 0,
551
+ Score2: 0,
552
+ Started: null,
553
+ Ended: null,
554
+ TimeLeft: 0,
555
+ CurrentPass: 0,
556
+ MaxPasses: 0,
557
+ RoundLabel: null,
558
+ DEBoutId: null,
559
+ DENextBoutId: null,
560
+ LoserNextBoutId: null,
561
+ RefereeId: null,
562
+ createdAt: '2025-09-08T19:24:36.000Z',
563
+ updatedAt: '2025-09-08T19:24:36.000Z',
564
+ Person1: {
565
+ PersonId: 79,
566
+ DisplayName: 'Tom Testerlou',
567
+ ClubId: 10,
568
+ ShowData: true,
569
+ Images: [],
570
+ Club: {
571
+ Name: 'Columbus United Fencing Club',
572
+ Color1: 'navy',
573
+ Color2: 'rose'
574
+ },
575
+ EventPersons: [
576
+ {
577
+ DEPosition: null,
578
+ LastNote: null
579
+ }
580
+ ],
581
+ Penalties: []
582
+ },
583
+ Person2: {
584
+ PersonId: 243,
585
+ DisplayName: 'Austin Straub',
586
+ ClubId: 62,
587
+ ShowData: true,
588
+ Images: [],
589
+ Club: {
590
+ Name: 'Bucks Historical Longsword'
591
+ },
592
+ EventPersons: [
593
+ {
594
+ DEPosition: null,
595
+ LastNote: null
596
+ }
597
+ ],
598
+ Penalties: []
599
+ },
600
+ Pool: {
601
+ RingName: 'Ring 1'
602
+ },
603
+ Metrics: []
604
+ },
605
+ {
606
+ TimerStatus: 'stopped',
607
+ RefName: 'Unassigned',
608
+ BoutId: 16734,
609
+ PoolId: 760,
610
+ EventId: 190,
611
+ OrderIndex: 9,
612
+ Person1Pos: 4,
613
+ Person2Pos: 2,
614
+ Person1Id: 357,
615
+ Person2Id: 409,
616
+ Status: 'Scheduled',
617
+ Score1: 0,
618
+ Score2: 0,
619
+ Started: null,
620
+ Ended: null,
621
+ TimeLeft: 0,
622
+ CurrentPass: 0,
623
+ MaxPasses: 0,
624
+ RoundLabel: null,
625
+ DEBoutId: null,
626
+ DENextBoutId: null,
627
+ LoserNextBoutId: null,
628
+ RefereeId: null,
629
+ createdAt: '2025-09-08T19:24:36.000Z',
630
+ updatedAt: '2025-09-08T19:24:36.000Z',
631
+ Person1: {
632
+ PersonId: 357,
633
+ DisplayName: 'Donna Kalteyer',
634
+ ClubId: 276,
635
+ ShowData: true,
636
+ Images: [],
637
+ Club: {
638
+ Name: 'Round Table Fencing',
639
+ Color1: 'Black',
640
+ Color2: 'Blue'
641
+ },
642
+ EventPersons: [
643
+ {
644
+ DEPosition: null,
645
+ LastNote: null
646
+ }
647
+ ],
648
+ Penalties: []
649
+ },
650
+ Person2: {
651
+ PersonId: 409,
652
+ DisplayName: 'Neil Satterlund',
653
+ ClubId: 17,
654
+ ShowData: true,
655
+ Images: [],
656
+ Club: {
657
+ Name: 'No Club Affiliation '
658
+ },
659
+ EventPersons: [
606
660
  {
607
- "TimerStatus": "stopped",
608
- "RefName": "Unassigned",
609
- "BoutId": 16734,
610
- "PoolId": 760,
611
- "EventId": 190,
612
- "OrderIndex": 9,
613
- "Person1Pos": 4,
614
- "Person2Pos": 2,
615
- "Person1Id": 357,
616
- "Person2Id": 409,
617
- "Status": "Scheduled",
618
- "Score1": 0,
619
- "Score2": 0,
620
- "Started": null,
621
- "Ended": null,
622
- "TimeLeft": 0,
623
- "CurrentPass": 0,
624
- "MaxPasses": 0,
625
- "RoundLabel": null,
626
- "DEBoutId": null,
627
- "DENextBoutId": null,
628
- "LoserNextBoutId": null,
629
- "RefereeId": null,
630
- "createdAt": "2025-09-08T19:24:36.000Z",
631
- "updatedAt": "2025-09-08T19:24:36.000Z",
632
- "Person1": {
633
- "PersonId": 357,
634
- "DisplayName": "Donna Kalteyer",
635
- "ClubId": 276,
636
- "ShowData": true,
637
- "Images": [],
638
- "Club": {
639
- "Name": "Round Table Fencing",
640
- "Color1": "Black",
641
- "Color2": "Blue"
642
- },
643
- "EventPersons": [
644
- {
645
- "DEPosition": null,
646
- "LastNote": null
647
- }
648
- ],
649
- "Penalties": []
650
- },
651
- "Person2": {
652
- "PersonId": 409,
653
- "DisplayName": "Neil Satterlund",
654
- "ClubId": 17,
655
- "ShowData": true,
656
- "Images": [],
657
- "Club": {
658
- "Name": "No Club Affiliation "
659
- },
660
- "EventPersons": [
661
- {
662
- "DEPosition": null,
663
- "LastNote": null
664
- }
665
- ],
666
- "Penalties": []
667
- },
668
- "Pool": {
669
- "RingName": "Ring 1"
670
- },
671
- "Metrics": []
661
+ DEPosition: null,
662
+ LastNote: null
672
663
  }
673
- ];
664
+ ],
665
+ Penalties: []
666
+ },
667
+ Pool: {
668
+ RingName: 'Ring 1'
669
+ },
670
+ Metrics: []
671
+ }
672
+ ];
674
673
 
675
- export default getPoolsWithBouts;
674
+ export default getPoolsWithBouts;