@fy-/fws-vue 2.3.20 → 2.3.21

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.
@@ -623,24 +623,21 @@ onUnmounted(() => {
623
623
  </template>
624
624
  <template v-else>
625
625
  <img
626
- v-if="modelValueSrc"
626
+ v-if="modelValueSrc && imageComponent === 'img'"
627
627
  class="shadow max-w-full gallery-image"
628
628
  :src="modelValueSrc"
629
629
  :alt="`Gallery image ${modelValue + 1}`"
630
630
  @load="updateImageSizes"
631
631
  >
632
- <!-- <component
632
+ <component
633
633
  :is="imageComponent"
634
634
  v-else-if="modelValueSrc && imageComponent"
635
+
636
+ class="shadow max-w-full gallery-image"
635
637
  :image="modelValueSrc.image"
636
638
  :variant="modelValueSrc.variant"
637
639
  :alt="modelValueSrc.alt"
638
- class="shadow max-w-full gallery-image"
639
- :likes="modelValueSrc.likes"
640
- :show-likes="modelValueSrc.showLikes"
641
- :is-author="modelValueSrc.isAuthor"
642
- :user-uuid="modelValueSrc.userUUID"
643
- /> -->
640
+ />
644
641
  </template>
645
642
  </div>
646
643
  </transition>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.3.20",
3
+ "version": "2.3.21",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",