@fy-/fws-vue 2.1.41 → 2.1.42
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.
|
@@ -388,14 +388,14 @@ onUnmounted(() => {
|
|
|
388
388
|
</Dialog>
|
|
389
389
|
</TransitionRoot>
|
|
390
390
|
|
|
391
|
-
<
|
|
391
|
+
<div v-if="mode === 'grid' || mode === 'mason' || mode === 'custom'" class="min-h-[600px] lg:min-h-0">
|
|
392
392
|
<div
|
|
393
393
|
:class="{
|
|
394
|
-
'
|
|
394
|
+
' grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-start':
|
|
395
395
|
mode === 'mason',
|
|
396
|
-
'
|
|
396
|
+
' grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-center':
|
|
397
397
|
mode === 'grid',
|
|
398
|
-
'
|
|
398
|
+
' custom-grid': mode === 'custom',
|
|
399
399
|
}"
|
|
400
400
|
>
|
|
401
401
|
<slot name="thumbnail" />
|
|
@@ -464,7 +464,7 @@ onUnmounted(() => {
|
|
|
464
464
|
</div>
|
|
465
465
|
</template>
|
|
466
466
|
</div>
|
|
467
|
-
</
|
|
467
|
+
</div>
|
|
468
468
|
<button
|
|
469
469
|
v-if="mode === 'button'"
|
|
470
470
|
:class="`btn ${buttonType ? buttonType : 'primary'} defaults`"
|