@dcrackel/hematournamentui 1.0.641 → 1.0.643

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.641",
4
+ "version": "1.0.643",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTournamentUI-lib.umd.js",
7
7
  "module": "dist/HemaTournamentUI-lib.es.js",
@@ -13,9 +13,7 @@
13
13
  <section v-if="remainingBoutsCount > 0">
14
14
  <div class="md:border-b border-dropdownSelect md:mb-8"></div>
15
15
  <div class="w-full flex flex-col items-center">
16
-
17
- <BaseButton v-if="remainingBoutsCount === localBouts.length" label="Fencer List on scoreboard" type="primary" class="w-full md:w-3/4 my-1" @buttonClick="showFencerList" />
18
- <BaseButton v-if="remainingBoutsCount === 0" label="Fencer List on scoreboard" type="primary" class="w-full md:w-3/4 my-1" @buttonClick="showPoolGrid" />
16
+ <BaseButton v-if="remainingBoutsCount === localBouts.length" label="Fencer List on Scoreboard" type="primary" class="w-full md:w-3/4 my-1" @buttonClick="showFencerList" />
19
17
 
20
18
  <div v-if="fencerList" v-for="fencer in simpleFencerList" class="w-full md:w-3/4 my-1">
21
19
  <FencerFinalResultCard :result="fencer" />
@@ -49,7 +47,10 @@
49
47
 
50
48
  <!-- Completed -->
51
49
  <section v-if="hasCompletedBout > 0 && !fencerList">
52
- <div class="flex flex-row">
50
+ <div class="w-full flex flex-col items-center">
51
+ <BaseButton v-if="remainingBoutsCount === 0" label="Show Pool Results on Scoreboard" type="primary" class="w-full md:w-3/4 my-1" @buttonClick="showResultsGrid" />
52
+ </div>
53
+ <div class="flex flex-row">
53
54
  <BaseText v-if="remainingBoutsCount === 0" class="mt-8" color="primaryHighlight" size="md" text="All Bouts Are Complete" weight="bold" />
54
55
  <BaseText v-if="remainingBoutsCount > 0" class="mt-5" color="primaryHighlight" size="md" text="Completed" weight="bold"/>
55
56
  </div>