itube-specs 0.0.533 → 0.0.535

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.
@@ -38,7 +38,7 @@
38
38
  type="button"
39
39
  @click="$emit('back')"
40
40
  >
41
- <SIcon name="angle-left" size="24" />
41
+ <SIcon name="angle-left" size="20" />
42
42
  </button>
43
43
  <div
44
44
  v-if="$slots.title"
@@ -51,7 +51,7 @@
51
51
  type="button"
52
52
  @click="close"
53
53
  >
54
- <SIcon name="close" size="24" />
54
+ <SIcon name="close" size="20" />
55
55
  </button>
56
56
  </header>
57
57
  <div
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.533",
4
+ "version": "0.0.535",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -7,4 +7,5 @@ export const cleanCategoryCard = (card: IRawCategoryCard): ICategoryCard => ({
7
7
  videosCount: card.videosCount || 0,
8
8
  thumbUrl: card.video_thumb_urls?.webp?.[ThumbSize.Big] || '',
9
9
  guid: card.guid || '',
10
+ description: card.description || '',
10
11
  })
@@ -6,4 +6,5 @@ export interface ICategoryCard {
6
6
  guid: string;
7
7
  isTop?: boolean,
8
8
  icon?: string;
9
+ description?: string,
9
10
  }
@@ -17,7 +17,7 @@ export interface IRawCategoryCard {
17
17
  video_guid: string; // unused
18
18
  video_md5: string; // unused
19
19
  thumb_number: number; // unused
20
- description: string; // unused
20
+ description: string;
21
21
  header: string; // unused
22
22
  video_thumb_urls: IThumbUrls; // ✅ used (для card.videoThumbUrls.webp['480X270'])
23
23
  files?: Record<string, string>;