@dcrackel/hematournamentui 1.0.166 → 1.0.168
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 +2524 -2516
- package/dist/HemaTournamentUI-lib.umd.js +1 -1
- package/package.json +1 -1
- package/src/stories/Templates/TournamentManagement/EditTournament/EditBasic/EditTournamentBasicInfo.vue +6 -2
- package/src/stories/Templates/TournamentManagement/EditTournament/EditDetails/EditTournamentDetails.vue +5 -1
package/package.json
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</div>
|
|
47
47
|
<div class="flex flex-row justify-center my-10">
|
|
48
48
|
<BaseButton class="w-1/2 ml-1" color="neutral" label="Cancel" size="sm" type="primary" @click="handleCancel"/>
|
|
49
|
-
<BaseButton class="w-1/2 mr-1" color="neutral" label="
|
|
49
|
+
<BaseButton class="w-1/2 mr-1" color="neutral" :label="saveButtonLabel" selected=selected size="sm" type="primary"
|
|
50
50
|
@click="handleSubmit"/>
|
|
51
51
|
</div>
|
|
52
52
|
</section>
|
|
@@ -86,6 +86,10 @@ export default {
|
|
|
86
86
|
locations: {
|
|
87
87
|
type: Array,
|
|
88
88
|
required: true
|
|
89
|
+
},
|
|
90
|
+
saveButtonLabel: {
|
|
91
|
+
type: String,
|
|
92
|
+
default: 'Save'
|
|
89
93
|
}
|
|
90
94
|
},
|
|
91
95
|
emits: ['tab:menu-click', 'manageEvent', 'editEvent', 'addEvent', 'image:upload'],
|
|
@@ -154,7 +158,7 @@ export default {
|
|
|
154
158
|
this.$emit('update:cancel')
|
|
155
159
|
},
|
|
156
160
|
handleUpdateUrl(url) {
|
|
157
|
-
|
|
161
|
+
this.$emit('image:upload', url)
|
|
158
162
|
}
|
|
159
163
|
}
|
|
160
164
|
}
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
</div>
|
|
59
59
|
<div class="flex flex-row justify-center">
|
|
60
60
|
<BaseButton class="w-1/2 ml-1" color="neutral" label="Cancel" size="sm" type="primary" @click="handleCancel"/>
|
|
61
|
-
<BaseButton class="w-1/2 mr-1" color="neutral" label="
|
|
61
|
+
<BaseButton class="w-1/2 mr-1" color="neutral" :label="saveButtonLabel" selected=selected size="sm" type="primary" @click="handleSubmit"/>
|
|
62
62
|
</div>
|
|
63
63
|
</section>
|
|
64
64
|
</div>
|
|
@@ -101,6 +101,10 @@ export default {
|
|
|
101
101
|
persons: {
|
|
102
102
|
type: Array,
|
|
103
103
|
required: true
|
|
104
|
+
},
|
|
105
|
+
saveButtonLabel: {
|
|
106
|
+
type: String,
|
|
107
|
+
default: 'Save'
|
|
104
108
|
}
|
|
105
109
|
},
|
|
106
110
|
data() {
|