@christianriedl/media 1.0.156 → 1.0.158

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christianriedl/media",
3
- "version": "1.0.156",
3
+ "version": "1.0.158",
4
4
  "description": "RIC media interfaces",
5
5
 
6
6
  "main": "dist/index.js",
@@ -114,7 +114,7 @@
114
114
  :subtitle="item.subTitle" @click="listItem(item)">
115
115
  <template v-slot:prepend>
116
116
  <v-avatar rounded="0" size="x-large" v-if="item.thumbnailUrl">
117
- <v-img :src="item.thumbnailUrl"></v-img>
117
+ <v-img :src="item.thumbnailUrl" :cover="false"></v-img>
118
118
  </v-avatar>
119
119
  </template>
120
120
  </v-list-item>
@@ -151,7 +151,7 @@
151
151
  <v-list-item v-for="item in items" :key="item.dlnaid" :title="item.title" :subtitle="item.subTitle" @click="listItem(item)">
152
152
  <template v-slot:prepend>
153
153
  <v-avatar rounded="0" size="x-large" v-if="item.thumbnailUrl">
154
- <v-img :src="item.thumbnailUrl"></v-img>
154
+ <v-img :src="item.thumbnailUrl" :cover="false"></v-img>
155
155
  </v-avatar>
156
156
  </template>
157
157
  </v-list-item>
@@ -120,12 +120,12 @@
120
120
  <v-row v-if="mediaAppConfig.showThumbnailText" dense align="center" >
121
121
  <v-col :cols="numColsPerImage" class="bg-grey-darken-2 thumbnail" v-for="(image, index) in photos" :key="index">
122
122
  <div v-if="image.title" class="text-caption text-no-wrap">{{image.title!.substring(0, textTrim)}}</div>
123
- <div v-else class="text-caption bg-grey-darken-2">|</div>
123
+ <div v-else class="text-caption text-grey-darken-2">|</div>
124
124
  <v-img :src="getThumbnailUrl(image)" :height="height" @click="onClick(image)" :class="{selected: image.selected}" />
125
125
  <v-row dense align="center">
126
126
  <v-col cols="12">
127
127
  <v-icon v-if="image.rating >= 1" icon="$star" size="x-small" style="float:left"></v-icon>
128
- <div v-else class="bg-grey-darken-2" style="float:left">|</div>
128
+ <v-icon v-else icon="$star" size="x-small" class="text-grey-darken-2" style="float:left"></v-icon>
129
129
  <v-icon v-if="image.rating >= 2" icon="$star" size="x-small" style="float:left"></v-icon>
130
130
  <v-icon v-if="image.flags & EPictureFlags.Has_Gps" icon="$gps" size="x-small" style="float:right"></v-icon>
131
131
  </v-col>