@dcrackel/hematournamentui 1.0.118 → 1.0.120
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 +7 -3
- package/dist/HemaTournamentUI-lib.umd.js +1 -1
- package/package.json +1 -1
- package/src/mocks/eventPersonGetPoolAssignmentEvent.js +2 -0
- package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +7 -2
- package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +0 -1
|
@@ -29501,6 +29501,10 @@ const BP = /* @__PURE__ */ ye($T, [["render", AD]]), uD = {
|
|
|
29501
29501
|
},
|
|
29502
29502
|
numberOfRings() {
|
|
29503
29503
|
return this.event.NumberOfRings || 0;
|
|
29504
|
+
},
|
|
29505
|
+
boutsLeft() {
|
|
29506
|
+
const n = this.event.BoutsLeft || 0, e = this.event.TotalBouts || 0;
|
|
29507
|
+
return `${n}/${e}`;
|
|
29504
29508
|
}
|
|
29505
29509
|
},
|
|
29506
29510
|
methods: {
|
|
@@ -29623,11 +29627,11 @@ function SD(n, e, t, r, i, o) {
|
|
|
29623
29627
|
class: "text-right mr-2 w-2/3"
|
|
29624
29628
|
}),
|
|
29625
29629
|
y(a, {
|
|
29626
|
-
text:
|
|
29630
|
+
text: o.boutsLeft,
|
|
29627
29631
|
size: "sm",
|
|
29628
29632
|
color: "primaryHighlight",
|
|
29629
29633
|
class: "text-left mr-2 w-1/3"
|
|
29630
|
-
})
|
|
29634
|
+
}, null, 8, ["text"])
|
|
29631
29635
|
]),
|
|
29632
29636
|
v("div", wD, [
|
|
29633
29637
|
y(a, {
|
|
@@ -29637,7 +29641,7 @@ function SD(n, e, t, r, i, o) {
|
|
|
29637
29641
|
class: "text-right mr-2 w-2/3"
|
|
29638
29642
|
}),
|
|
29639
29643
|
y(a, {
|
|
29640
|
-
text: "
|
|
29644
|
+
text: "tbd",
|
|
29641
29645
|
size: "sm",
|
|
29642
29646
|
color: "primaryHighlight",
|
|
29643
29647
|
class: "text-left mr-2 w-1/3"
|