@dcrackel/hematournamentui 1.0.443 → 1.0.445

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.443",
4
+ "version": "1.0.445",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTournamentUI-lib.umd.js",
7
7
  "module": "dist/HemaTournamentUI-lib.es.js",
@@ -29,6 +29,7 @@
29
29
  <DatePicker :invalid="validation.StartTime" :setDate="localEvent.StartTime" pickerMode="time" @update:selectedDate="handleTimeUpdate"/>
30
30
  </div>
31
31
  <div class="mb-4 grow">
32
+ {{getWeapons}}
32
33
  <BaseText :color="'quinary'" :invalid="validation.WeaponId" :size="'sm'" :text="'Weapon Form'"
33
34
  :weight="'normal'" class="mb-1" data-testid="text-start-date"/>
34
35
  <DropDownMenu :label="selectedWeapon" :items="getWeapons" :selected-item="selectedWeapon" :alignEnd="false" :width="'w-full'" @update:selectedItem="handleWeaponChange" />
@@ -122,6 +123,7 @@ export default {
122
123
  return rule?.RuleValue || '';
123
124
  },
124
125
  getWeapons() {
126
+ console.log(this.localWeapons);
125
127
  return this.localWeapons?.map((weapon) => {
126
128
  return {
127
129
  text: weapon.Name,
@@ -1,5 +1,6 @@
1
1
  <template>
2
2
  <div class="p-4">
3
+ BasicEventInfo = {{localWeapons}}
3
4
  <BasicEventInfo
4
5
  v-if="currentStep === 1"
5
6
  :event="localEvent"