@dcrackel/hematournamentui 1.0.321 → 1.0.322
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 +10 -2
- package/dist/HemaTournamentUI-lib.umd.js +2 -2
- package/package.json +1 -1
- package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +1 -1
- package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +9 -1
- package/src/stories/Templates/EventManagement/ClubDisplay/ClubDisplay.stories.js +12 -1
|
@@ -863,7 +863,7 @@ function Zf(n, e, t, r, A, i) {
|
|
|
863
863
|
default: Re(() => [
|
|
864
864
|
A.isDropDownOpen ? (I(), m("div", {
|
|
865
865
|
key: 0,
|
|
866
|
-
class: re(["flex flex-col shadow-lg mt-9 z-20 rounded-b-xl absolute bg-neutral border border-dropdownSelect overflow-y-auto max-h-44", t.dropDownWidth])
|
|
866
|
+
class: re(["w-full flex flex-col shadow-lg mt-9 z-20 rounded-b-xl absolute bg-neutral border border-dropdownSelect overflow-y-auto max-h-44", t.dropDownWidth])
|
|
867
867
|
}, [
|
|
868
868
|
(I(!0), m(Ce, null, we(t.items, (s) => (I(), m("a", {
|
|
869
869
|
key: s.id,
|
|
@@ -36702,6 +36702,14 @@ const b2 = /* @__PURE__ */ Ae(h2, [["render", w2]]), x2 = {
|
|
|
36702
36702
|
]
|
|
36703
36703
|
};
|
|
36704
36704
|
},
|
|
36705
|
+
computed: {
|
|
36706
|
+
formattedClubs() {
|
|
36707
|
+
return this.clubs.map((n) => ({
|
|
36708
|
+
text: n.Name,
|
|
36709
|
+
link: n.ClubId.toString()
|
|
36710
|
+
}));
|
|
36711
|
+
}
|
|
36712
|
+
},
|
|
36705
36713
|
methods: {
|
|
36706
36714
|
handleDisplayNameChange(n) {
|
|
36707
36715
|
this.localDisplay.displayName = n;
|
|
@@ -36796,7 +36804,7 @@ function N2(n, e, t, r, A, i) {
|
|
|
36796
36804
|
}),
|
|
36797
36805
|
p(l, {
|
|
36798
36806
|
label: A.selectedClub,
|
|
36799
|
-
items:
|
|
36807
|
+
items: i.formattedClubs,
|
|
36800
36808
|
"selected-item": A.selectedClub,
|
|
36801
36809
|
alignEnd: !1,
|
|
36802
36810
|
width: "w-full",
|