@fy-/fws-vue 0.3.55 → 0.3.56

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.
@@ -314,9 +314,9 @@ onUnmounted(() => {
314
314
  <component
315
315
  v-else
316
316
  :is="imageComponent"
317
- :image="getThumbnailUrl(images[i - 1].image)"
318
- :variant="getThumbnailUrl(images[i - 1].variant)"
319
- :alt="getThumbnailUrl(images[i - 1].alt)"
317
+ :image="getThumbnailUrl(images[i - 1]).image"
318
+ :variant="getThumbnailUrl(images[i - 1]).variant"
319
+ :alt="getThumbnailUrl(images[i - 1]).alt"
320
320
  class="h-auto max-w-full rounded-lg cursor-pointer shadow"
321
321
  />
322
322
  </div>
@@ -353,9 +353,9 @@ onUnmounted(() => {
353
353
  <component
354
354
  v-else-if="i + j - 2 < images.length"
355
355
  :is="imageComponent"
356
- :image="getThumbnailUrl(images[i + j - 2].image)"
357
- :variant="getThumbnailUrl(images[i + j - 2].variant)"
358
- :alt="getThumbnailUrl(images[i + j - 2].alt)"
356
+ :image="getThumbnailUrl(images[i + j - 2]).image"
357
+ :variant="getThumbnailUrl(images[i + j - 2]).variant"
358
+ :alt="getThumbnailUrl(images[i + j - 2]).alt"
359
359
  class="h-auto max-w-full rounded-lg cursor-pointer"
360
360
  />
361
361
  </div>
@@ -372,9 +372,9 @@ onUnmounted(() => {
372
372
  <component
373
373
  v-else-if="imageComponent"
374
374
  :is="imageComponent"
375
- :image="getThumbnailUrl(images[i - 1].image)"
376
- :variant="getThumbnailUrl(images[i - 1].variant)"
377
- :alt="getThumbnailUrl(images[i - 1].alt)"
375
+ :image="getThumbnailUrl(images[i - 1]).image"
376
+ :variant="getThumbnailUrl(images[i - 1]).variant"
377
+ :alt="getThumbnailUrl(images[i - 1]).alt"
378
378
  class="h-auto max-w-full rounded-lg cursor-pointer"
379
379
  />
380
380
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.55",
3
+ "version": "0.3.56",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {