@fy-/fws-vue 2.0.61 → 2.0.64
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,10 +366,13 @@ 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"
|
|
375
|
+
:user-uuid="modelValueSrc.userUUID"
|
|
371
376
|
/>
|
|
372
377
|
</div>
|
|
373
378
|
</template>
|
|
@@ -387,10 +392,13 @@ onUnmounted(() => {
|
|
|
387
392
|
:image="getThumbnailUrl(images[i - 1]).image"
|
|
388
393
|
:variant="getThumbnailUrl(images[i - 1]).variant"
|
|
389
394
|
:alt="getThumbnailUrl(images[i - 1]).alt"
|
|
390
|
-
class="h-auto max-w-full rounded-lg cursor-pointer
|
|
395
|
+
:class="`h-auto max-w-full rounded-lg cursor-pointer ${getBorderColor(
|
|
396
|
+
images[i - 1],
|
|
397
|
+
)}`"
|
|
391
398
|
@click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
|
|
392
399
|
:likes="modelValueSrc.likes"
|
|
393
400
|
:show-likes="true"
|
|
401
|
+
:user-uuid="modelValueSrc.userUUID"
|
|
394
402
|
/>
|
|
395
403
|
</div>
|
|
396
404
|
</template>
|