itube-specs 0.0.550 → 0.0.551

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.
@@ -5,20 +5,20 @@
5
5
  :title="card.title"
6
6
  :to="link ? generateLink(`/playlists/${prefix}/${card.id}`) : null"
7
7
  >
8
- <div class="s-video-mini-card__img-wrapper">
9
- <SImg
10
- class="s-video-mini-card__img"
11
- sizes="140px"
12
- :src="currentPoster"
13
- width="1600"
14
- height="900"
15
- :alt="card.title"
16
- @error="onPosterError"
17
- />
8
+ <SImg
9
+ class="s-video-mini-card__img"
10
+ sizes="140px"
11
+ :src="currentPoster"
12
+ width="1600"
13
+ height="900"
14
+ :alt="card.title"
15
+ @error="onPosterError"
16
+ />
17
+ <div class="s-video-mini-card__wrapper">
18
+ <p class="s-video-mini-card__title _truncate">{{ card.title }}</p>
19
+ <span v-if="card.channelName" class="s-video-mini-card__channel _truncate">{{ card.channelName }}</span>
20
+ <span class="s-video-mini-card__duration">{{ duration }}</span>
18
21
  </div>
19
- <p class="s-video-mini-card__description _truncate">{{ card.title }}</p>
20
- <span class="s-video-mini-card__channel">{{ card.channelName }}</span>
21
- <span class="s-video-mini-card__duration">{{ duration }}</span>
22
22
  </component>
23
23
  </template>
24
24
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.550",
4
+ "version": "0.0.551",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {