@bagelink/vue 1.15.43 → 1.15.45
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.
package/package.json
CHANGED
|
@@ -187,10 +187,10 @@ function getItemRef(i: number) {
|
|
|
187
187
|
/>
|
|
188
188
|
<div v-else />
|
|
189
189
|
<Btn
|
|
190
|
-
full-width align-txt="start" class="px-025 bg-transparent color-inherit" :ripple="false"
|
|
190
|
+
full-width align-txt="start" class="px-025 bg-transparent color-inherit w-100p overflow-hidden" :ripple="false"
|
|
191
191
|
:icon="minimizedItems[i] ? 'expand_more' : 'expand_less'" @click="toggleItem(i)"
|
|
192
192
|
>
|
|
193
|
-
<div class="flex align-items-center gap-05">
|
|
193
|
+
<div class="flex align-items-center gap-05 w-100p overflow-hidden">
|
|
194
194
|
<img
|
|
195
195
|
v-if="getItemThumbnail(items[i])"
|
|
196
196
|
:src="pathKeyToURL(getItemThumbnail(items[i])!)"
|
|
@@ -202,8 +202,7 @@ function getItemRef(i: number) {
|
|
|
202
202
|
</p>
|
|
203
203
|
</div>
|
|
204
204
|
</Btn>
|
|
205
|
-
|
|
206
|
-
<Btn v-if="allowDelete" v-tooltip="resolveI18n(deleteTooltip || 'Delete')" flat icon="delete" thin :confirm="resolveI18n('Are you sure you want to delete this item?')" @click="deleteItem(i)" />
|
|
205
|
+
<Btn v-if="allowDelete" v-tooltip="resolveI18n(deleteTooltip || 'Delete')" flat icon="delete" thin :confirm="resolveI18n('Are you sure you want to delete this item?')" @click="deleteItem(i)" icon-size="0.8" />
|
|
207
206
|
</div>
|
|
208
207
|
<Transition name="array-collapse">
|
|
209
208
|
<div v-if="!minimizedItems[i]" class="array-input-row grid align-items-center px-05">
|