@dcrackel/hematournamentui 1.0.252 → 1.0.253
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 +8 -8
- package/dist/HemaTournamentUI-lib.umd.js +2 -2
- package/package.json +1 -1
- package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.vue +0 -4
- package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.vue +1 -2
- package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.vue +4 -4
|
@@ -10031,9 +10031,8 @@ const Hl = /* @__PURE__ */ re(av, [["render", dv]]), gv = {
|
|
|
10031
10031
|
selectedItem: "M2 - MeyerSquared"
|
|
10032
10032
|
};
|
|
10033
10033
|
},
|
|
10034
|
-
computed: {},
|
|
10035
10034
|
mounted() {
|
|
10036
|
-
this.localEventConfig = { ...this.eventConfig };
|
|
10035
|
+
console.log("PoolConfiguration.vue: computed: eventConfig: ", this.eventConfig), this.localEventConfig = { ...this.eventConfig };
|
|
10037
10036
|
},
|
|
10038
10037
|
watch: {
|
|
10039
10038
|
eventConfig: {
|
|
@@ -10646,7 +10645,7 @@ const pw = /* @__PURE__ */ re(nw, [["render", hw]]), fw = {
|
|
|
10646
10645
|
methods: {
|
|
10647
10646
|
handleBasicValueChange(n) {
|
|
10648
10647
|
const [e, t] = Object.entries(n)[0];
|
|
10649
|
-
|
|
10648
|
+
e === "EventName" && (this.localEvent.EventName = t), e === "Date " && (this.localEvent.Date = this.formatDateToYYYYMMDD(t)), e === "StartTime " && (this.localEvent.Date = this.formatTimeToHHMMSS(t)), e === "NumberOfRings " && (this.NumberOfRings = t), e === "WeaponId" && (this.localEvent.WeaponId = t.link);
|
|
10650
10649
|
},
|
|
10651
10650
|
handleValueChange(n) {
|
|
10652
10651
|
const [e, t] = Object.entries(n)[0];
|
|
@@ -10681,7 +10680,7 @@ const pw = /* @__PURE__ */ re(nw, [["render", hw]]), fw = {
|
|
|
10681
10680
|
}));
|
|
10682
10681
|
},
|
|
10683
10682
|
handleSubmit() {
|
|
10684
|
-
this.localEvent.rules = this.convertEventConfigToRules(this.eventConfig),
|
|
10683
|
+
this.localEvent.rules = this.convertEventConfigToRules(this.eventConfig), this.$emit("update:submit", this.localEvent);
|
|
10685
10684
|
},
|
|
10686
10685
|
handleCancel() {
|
|
10687
10686
|
this.$emit("update:cancel");
|
|
@@ -36021,8 +36020,8 @@ const OY = /* @__PURE__ */ re(YL, [["render", qL]]), zL = {
|
|
|
36021
36020
|
handleTabMenuClick(n) {
|
|
36022
36021
|
this.$emit("tab:menu-click", n);
|
|
36023
36022
|
},
|
|
36024
|
-
|
|
36025
|
-
this
|
|
36023
|
+
handleSubmit(n) {
|
|
36024
|
+
this.$emit("update:submit", n);
|
|
36026
36025
|
}
|
|
36027
36026
|
}
|
|
36028
36027
|
}, UL = { class: "w-full flex flex-row justify-center mt-3" };
|
|
@@ -36038,8 +36037,9 @@ function jL(n, e, t, r, i, o) {
|
|
|
36038
36037
|
p(s, {
|
|
36039
36038
|
event: t.event,
|
|
36040
36039
|
rules: t.rules,
|
|
36041
|
-
weapons: t.weapons
|
|
36042
|
-
|
|
36040
|
+
weapons: t.weapons,
|
|
36041
|
+
"onUpdate:submit": o.handleSubmit
|
|
36042
|
+
}, null, 8, ["event", "rules", "weapons", "onUpdate:submit"])
|
|
36043
36043
|
])
|
|
36044
36044
|
]);
|
|
36045
36045
|
}
|