@fy-/fws-vue 2.0.60 → 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,9 +366,12 @@ 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"
|
|
374
|
+
:show-likes="true"
|
|
370
375
|
/>
|
|
371
376
|
</div>
|
|
372
377
|
</template>
|
|
@@ -386,9 +391,12 @@ onUnmounted(() => {
|
|
|
386
391
|
:image="getThumbnailUrl(images[i - 1]).image"
|
|
387
392
|
:variant="getThumbnailUrl(images[i - 1]).variant"
|
|
388
393
|
:alt="getThumbnailUrl(images[i - 1]).alt"
|
|
389
|
-
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
|
+
)}`"
|
|
390
397
|
@click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
|
|
391
398
|
:likes="modelValueSrc.likes"
|
|
399
|
+
:show-likes="true"
|
|
392
400
|
/>
|
|
393
401
|
</div>
|
|
394
402
|
</template>
|