@dcrackel/hematournamentui 1.0.626 → 1.0.627
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/dist/HemaTournamentUI-lib.es.js +6 -5
- package/package.json +1 -1
- package/src/mocks/getPoolsWithBoutsByPoolId.js +1 -1
- package/src/stories/Molecules/ScoreBoardSections/ScoreBoardTimer/ScoreBoardTimer.vue +4 -4
- package/src/stories/Organisms/ScoreBoardParts/ScoreBar/ScoreBar.stories.js +1 -1
- package/dist/HemaTournamentUI-lib.umd.js +0 -185
|
@@ -29942,7 +29942,7 @@ const oO = /* @__PURE__ */ oe(eO, [["render", rO]]), iO = {
|
|
|
29942
29942
|
beforeDestroy() {
|
|
29943
29943
|
this.stopTimer();
|
|
29944
29944
|
}
|
|
29945
|
-
}, sO = { class: "border rounded-lg px-10 text-center flex flex-col w-[50rem]" };
|
|
29945
|
+
}, sO = { class: "border rounded-lg px-10 text-center flex flex-col justify-between w-[50rem]" };
|
|
29946
29946
|
function aO(n, e, t, r, o, i) {
|
|
29947
29947
|
const a = w("BaseText");
|
|
29948
29948
|
return f(), I("div", sO, [
|
|
@@ -29951,21 +29951,22 @@ function aO(n, e, t, r, o, i) {
|
|
|
29951
29951
|
size: "5xl",
|
|
29952
29952
|
weight: "bold",
|
|
29953
29953
|
color: "neutral",
|
|
29954
|
-
class: "
|
|
29954
|
+
class: ""
|
|
29955
29955
|
}, null, 8, ["text"]),
|
|
29956
|
-
|
|
29956
|
+
t.initialTime > -1 ? (f(), $(a, {
|
|
29957
|
+
key: 0,
|
|
29957
29958
|
text: i.formattedTime,
|
|
29958
29959
|
weight: "bold",
|
|
29959
29960
|
color: "neutral",
|
|
29960
29961
|
class: "-mt-4",
|
|
29961
29962
|
size: "9xl"
|
|
29962
|
-
}, null, 8, ["text"]),
|
|
29963
|
+
}, null, 8, ["text"])) : Q("", !0),
|
|
29963
29964
|
h(a, {
|
|
29964
29965
|
text: t.directorName,
|
|
29965
29966
|
size: "2xl",
|
|
29966
29967
|
weight: "",
|
|
29967
29968
|
color: "neutral",
|
|
29968
|
-
class: "-mt-4"
|
|
29969
|
+
class: "-mt-4 pb-2"
|
|
29969
29970
|
}, null, 8, ["text"])
|
|
29970
29971
|
]);
|
|
29971
29972
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="border rounded-lg px-10 text-center flex flex-col w-[50rem]">
|
|
3
|
-
<BaseText :text="ringName" size="5xl" weight="bold" color="neutral" class="
|
|
4
|
-
<BaseText :text="formattedTime" weight="bold" color="neutral" class="-mt-4" size="9xl" />
|
|
5
|
-
<BaseText :text="directorName" size="2xl" weight="" color="neutral" class="-mt-4" />
|
|
2
|
+
<div class="border rounded-lg px-10 text-center flex flex-col justify-between w-[50rem]">
|
|
3
|
+
<BaseText :text="ringName" size="5xl" weight="bold" color="neutral" class="" />
|
|
4
|
+
<BaseText v-if="initialTime > -1" :text="formattedTime" weight="bold" color="neutral" class="-mt-4" size="9xl" />
|
|
5
|
+
<BaseText :text="directorName" size="2xl" weight="" color="neutral" class="-mt-4 pb-2" />
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
8
8
|
|