@fy-/fws-vue 2.0.61 → 2.0.63

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.
@@ -322,7 +322,9 @@ onUnmounted(() => {
322
322
  :image="getThumbnailUrl(images[i - 1]).image"
323
323
  :variant="getThumbnailUrl(images[i - 1]).variant"
324
324
  :alt="getThumbnailUrl(images[i - 1]).alt"
325
- class="h-auto max-w-full rounded-lg cursor-pointer shadow"
325
+ :class="`h-auto max-w-full rounded-lg cursor-pointer shadow ${getBorderColor(
326
+ images[i - 1],
327
+ )}`"
326
328
  />
327
329
  </div>
328
330
  </div>
@@ -364,7 +366,9 @@ onUnmounted(() => {
364
366
  :image="getThumbnailUrl(images[i + j - 2]).image"
365
367
  :variant="getThumbnailUrl(images[i + j - 2]).variant"
366
368
  :alt="getThumbnailUrl(images[i + j - 2]).alt"
367
- class="h-auto max-w-full rounded-lg cursor-pointer"
369
+ :class="`h-auto max-w-full rounded-lg cursor-pointer ${getBorderColor(
370
+ images[i + j - 2],
371
+ )}`"
368
372
  @click="$eventBus.emit(`${id}GalleryImage`, i + j - 2)"
369
373
  :likes="modelValueSrc.likes"
370
374
  :show-likes="true"
@@ -387,7 +391,9 @@ onUnmounted(() => {
387
391
  :image="getThumbnailUrl(images[i - 1]).image"
388
392
  :variant="getThumbnailUrl(images[i - 1]).variant"
389
393
  :alt="getThumbnailUrl(images[i - 1]).alt"
390
- class="h-auto max-w-full rounded-lg cursor-pointer"
394
+ :class="`h-auto max-w-full rounded-lg cursor-pointer ${getBorderColor(
395
+ images[i - 1],
396
+ )}`"
391
397
  @click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
392
398
  :likes="modelValueSrc.likes"
393
399
  :show-likes="true"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.61",
3
+ "version": "2.0.63",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {