@dcrackel/hematournamentui 1.0.90 → 1.0.91
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/HemaTouranmentUI-lib.es.js +9 -6
- package/dist/HemaTouranmentUI-lib.umd.js +1 -1
- package/package.json +1 -1
- package/src/mocks/eventPersonGetInitialStaff.js +97 -34
- package/src/stories/Organisms/Containers/Pool/Pool.vue +1 -1
- package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +0 -2
- package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +4 -4
|
@@ -29535,10 +29535,10 @@ const kD = /* @__PURE__ */ ke(GT, [["render", aR]]), sR = {
|
|
|
29535
29535
|
},
|
|
29536
29536
|
computed: {
|
|
29537
29537
|
poolSize() {
|
|
29538
|
-
return
|
|
29538
|
+
return this.event.PoolSize || 0;
|
|
29539
29539
|
},
|
|
29540
29540
|
numberOfRings() {
|
|
29541
|
-
return
|
|
29541
|
+
return this.event.NumberOfRings || 0;
|
|
29542
29542
|
}
|
|
29543
29543
|
},
|
|
29544
29544
|
methods: {
|
|
@@ -29776,7 +29776,7 @@ const TR = /* @__PURE__ */ ke(vR, [["render", MR]]), RR = {
|
|
|
29776
29776
|
required: !0
|
|
29777
29777
|
},
|
|
29778
29778
|
poolInd: {
|
|
29779
|
-
type: String,
|
|
29779
|
+
type: [String, Number],
|
|
29780
29780
|
required: !0
|
|
29781
29781
|
},
|
|
29782
29782
|
pool: {
|
|
@@ -29890,7 +29890,10 @@ const JR = /* @__PURE__ */ ke(RR, [["render", FR]]), zR = {
|
|
|
29890
29890
|
},
|
|
29891
29891
|
props: {
|
|
29892
29892
|
event: Object,
|
|
29893
|
-
poolAssignments:
|
|
29893
|
+
poolAssignments: {
|
|
29894
|
+
type: Array,
|
|
29895
|
+
default: () => []
|
|
29896
|
+
},
|
|
29894
29897
|
mode: {
|
|
29895
29898
|
type: String,
|
|
29896
29899
|
required: !0,
|
|
@@ -29961,10 +29964,10 @@ const JR = /* @__PURE__ */ ke(RR, [["render", FR]]), zR = {
|
|
|
29961
29964
|
return e ? e.Person.DisplayName : "Unassigned";
|
|
29962
29965
|
},
|
|
29963
29966
|
swapFencers({ draggedPerson: n }) {
|
|
29964
|
-
|
|
29967
|
+
this.$emit("update:swapFencers", { draggedPerson: n });
|
|
29965
29968
|
},
|
|
29966
29969
|
setDirector(n) {
|
|
29967
|
-
|
|
29970
|
+
this.$emit("update:director", n);
|
|
29968
29971
|
}
|
|
29969
29972
|
}
|
|
29970
29973
|
}, HR = {
|