@dcrackel/hematournamentui 1.0.57 → 1.0.58
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/package.json +1 -1
- package/src/stories/Organisms/Cards/EventCard/EventCard.stories.js +10 -3
- package/src/stories/Organisms/Cards/EventCard/EventCard.vue +1 -1
- package/src/stories/Templates/TournamentManagement/EditTournament/ListEvents/ListEvents.vue +2 -0
- package/dist/HemaTouranmentUI-lib.es.js +0 -28688
- package/dist/HemaTouranmentUI-lib.umd.js +0 -184
- package/dist/style.css +0 -9
package/package.json
CHANGED
|
@@ -4,16 +4,23 @@ export default {
|
|
|
4
4
|
title: 'Organisms/Cards/EventCard',
|
|
5
5
|
component: EventCard,
|
|
6
6
|
tags: ['autodocs'],
|
|
7
|
-
|
|
7
|
+
args: {
|
|
8
8
|
event: {
|
|
9
9
|
EventId: 1,
|
|
10
10
|
TournamentId: 8,
|
|
11
|
-
EventName: "Longsword
|
|
11
|
+
EventName: "Longsword Event For Everyone",
|
|
12
12
|
Date: "2024-05-03",
|
|
13
13
|
StartTime: "12:00:16",
|
|
14
14
|
NumberOfRings: 3,
|
|
15
|
-
WeaponId: 1
|
|
15
|
+
WeaponId: 1,
|
|
16
|
+
Status: "Active",
|
|
17
|
+
RuleSummary: "Pools -> DE -> 3rd Place Faceoff",
|
|
18
|
+
Present: "0",
|
|
19
|
+
Absent: "20",
|
|
20
|
+
Removed: "1",
|
|
16
21
|
}
|
|
22
|
+
},
|
|
23
|
+
argTypes: {
|
|
17
24
|
}
|
|
18
25
|
};
|
|
19
26
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="flex items-center p-4 border border-dropdownSelect rounded-lg shadow-md w-full mb-
|
|
2
|
+
<div class="flex items-center p-4 border border-dropdownSelect rounded-lg shadow-md w-full mb-6">
|
|
3
3
|
<div class="w-full flex flex-row justify-between">
|
|
4
4
|
<section class="flex flex-row justify-start">
|
|
5
5
|
<div class="flex flex-col pl-4">
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
+
<section class="mx-4">
|
|
2
3
|
<EditTournamentMenu currentTab="Events"></EditTournamentMenu>
|
|
3
4
|
<div class="w-full flex flex-row justify-center">
|
|
4
5
|
<section class="w-full">
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
</div>
|
|
24
25
|
</section>
|
|
25
26
|
</div>
|
|
27
|
+
</section>
|
|
26
28
|
</template>
|
|
27
29
|
|
|
28
30
|
<script>
|