itube-specs 0.0.313 → 0.0.315

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.
@@ -14,6 +14,7 @@
14
14
  :key="`video-${item.guid}`"
15
15
  :top-chips="topChips"
16
16
  :playlist-id="playlistId"
17
+ :playlist="playlist"
17
18
  />
18
19
  <slot></slot>
19
20
  </div>
@@ -27,6 +28,7 @@ defineProps<{
27
28
  hideFirstRow?: boolean
28
29
  priority?: boolean
29
30
  related?: boolean
31
+ playlist?: boolean
30
32
  playlistId?: string
31
33
  topChips?: string[]
32
34
  }>()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.313",
4
+ "version": "0.0.315",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -0,0 +1,7 @@
1
+ export interface IBurgerMenuItem {
2
+ title: string,
3
+ link: string,
4
+ new?: boolean,
5
+ icon: string,
6
+ featureFlag?: string,
7
+ }