@dcrackel/hematournamentui 1.0.183 → 1.0.184
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 +4 -4
- package/dist/HemaTournamentUI-lib.umd.js +2 -2
- package/package.json +1 -1
- package/src/mocks/getClubDisplayByClubId.js +107 -0
- package/src/mocks/getEventByTournamentId.js +50 -0
- package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +2 -2
- package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplay.stories.js +47 -0
- package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplayModal.vue +56 -0
- package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +1 -2
- package/src/stories/Organisms/Cards/DisplayCard/DisplayCard.stories.js +47 -0
- package/src/stories/Organisms/Cards/DisplayCard/DisplayCard.vue +97 -0
- package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +1 -1
- package/src/stories/Organisms/Containers/ClubDisplayContainer/ClubDisplayContainer.stories.js +30 -0
- package/src/stories/Organisms/Containers/ClubDisplayContainer/ClubDisplayContainer.vue +106 -0
- package/src/stories/Organisms/Form/AddDisplay/AddDisplay.stories.js +36 -0
- package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +132 -0
- package/src/stories/Organisms/ScoreBoardParts/FencerNameBar/FencerNameBar.vue +1 -1
- package/src/stories/Templates/EventManagement/ClubDisplay/ClubDisplay.stories.js +44 -0
- package/src/stories/Templates/EventManagement/ClubDisplay/ClubDisplay.vue +88 -0
|
@@ -566,7 +566,7 @@ const B4 = /* @__PURE__ */ le(Fp, [["render", Up]]), jp = {
|
|
|
566
566
|
"3xl": "text-3xl",
|
|
567
567
|
"4xl": "text-4xl"
|
|
568
568
|
}[n.size], o = {
|
|
569
|
-
primary: `mx-1 p-2 items-center gap-2.5 text-center rounded-md shadow border border-dropdownSelect justify-center hover:bg-tertiary ${n.selected ? "bg-dropdownSelect" : "bg-neutral"}`,
|
|
569
|
+
primary: `mx-1 p-2 items-center gap-2.5 text-center rounded-md shadow border border-dropdownSelect justify-center hover:bg-tertiary ${n.selected ? "bg-dropdownSelect shadow-md" : "bg-neutral"}`,
|
|
570
570
|
secondary: `px-2.5 items-center gap-2.5 text-center my-1 p-3 w-full rounded-lg flex flex-row justify-center hover:bg-primaryHighlight ${n.selected ? "bg-secondary" : "bg-primary"}`,
|
|
571
571
|
tertiary: `px-2.5 py-0.5 items-center gap-2.5 rounded-md text-center justify-center border border-dropdownSelect hover:bg-dropdownSelect ${n.selected ? "bg-primary" : "bg-tertiary"}`,
|
|
572
572
|
bright: `px-3 py-1 items-center gap-2.5 rounded-md text-center justify-center hover:bg-primary text-neutral ${n.selected ? "bg-primary" : "bg-bright"}`,
|
|
@@ -586,7 +586,7 @@ const B4 = /* @__PURE__ */ le(Fp, [["render", Up]]), jp = {
|
|
|
586
586
|
});
|
|
587
587
|
return {
|
|
588
588
|
textColor: ne(() => ({
|
|
589
|
-
primary: "
|
|
589
|
+
primary: "quinary",
|
|
590
590
|
secondary: "neutral",
|
|
591
591
|
tertiary: "quinary",
|
|
592
592
|
bright: "neutral",
|
|
@@ -826,7 +826,7 @@ function aC(n, e, t, r, i, o) {
|
|
|
826
826
|
class: re(["flex flex-row w-full relative", [t.alignEnd ? "justify-end" : ""]])
|
|
827
827
|
}, [
|
|
828
828
|
f("div", {
|
|
829
|
-
class: re(["z-10 rounded-lg px-2 py-2 flex flex-row justify-between border border-dropdownSelect", t.width]),
|
|
829
|
+
class: re(["z-10 rounded-lg px-2 py-2 flex flex-row justify-between border border-dropdownSelect bg-white", t.width]),
|
|
830
830
|
onClick: e[0] || (e[0] = (a) => o.handleDropDown())
|
|
831
831
|
}, [
|
|
832
832
|
t.label.length > 1 ? (I(), ge(s, {
|
|
@@ -28598,7 +28598,7 @@ function ZS(n, e, t, r, i, o) {
|
|
|
28598
28598
|
}, null, 8, ["fullName", "club", "assignedColor"]),
|
|
28599
28599
|
p(s, {
|
|
28600
28600
|
fullName: t.bout.Person2.DisplayName,
|
|
28601
|
-
club: t.bout.
|
|
28601
|
+
club: t.bout.Person2.Club.Name,
|
|
28602
28602
|
assignedColor: t.hostingClubColors.Color2,
|
|
28603
28603
|
fencer1: !1
|
|
28604
28604
|
}, null, 8, ["fullName", "club", "assignedColor"])
|