@fy-/fws-vue 2.3.18 → 2.3.20

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,13 +623,13 @@ onUnmounted(() => {
623
623
  </template>
624
624
  <template v-else>
625
625
  <img
626
- v-if="modelValueSrc && imageComponent === 'img'"
626
+ v-if="modelValueSrc"
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
635
  :image="modelValueSrc.image"
@@ -640,7 +640,7 @@ onUnmounted(() => {
640
640
  :show-likes="modelValueSrc.showLikes"
641
641
  :is-author="modelValueSrc.isAuthor"
642
642
  :user-uuid="modelValueSrc.userUUID"
643
- />
643
+ /> -->
644
644
  </template>
645
645
  </div>
646
646
  </transition>
@@ -702,7 +702,7 @@ onUnmounted(() => {
702
702
  <div
703
703
  v-if="sidePanel"
704
704
  ref="sidePanelRef"
705
- class="side-panel hidden lg:block absolute right-0 top-0 bottom-0 w-64 bg-fv-neutral-800/90 backdrop-blur-md overflow-y-auto z-40 cool-scroll pt-[calc(var(--controls-height)+8px)]"
705
+ class="side-panel hidden lg:block absolute right-0 top-0 bottom-0 w-64 backdrop-blur-md overflow-y-auto z-40 cool-scroll pt-[calc(var(--controls-height)+8px)]"
706
706
  >
707
707
  <!-- Paging Controls if needed -->
708
708
  <div v-if="paging" class="flex items-center justify-center pt-2">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.3.18",
3
+ "version": "2.3.20",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",