itube-specs 0.0.623 → 0.0.625

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.
@@ -54,5 +54,4 @@ function onTouchMove(e: TouchEvent) {
54
54
  </script>
55
55
 
56
56
  <style lang="scss">
57
- @use '@vueform/slider/themes/default.scss';
58
57
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.623",
4
+ "version": "0.0.625",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -2,7 +2,7 @@ export interface INavigationItems {
2
2
  title: string
3
3
  link?: string
4
4
  icon?: string
5
- accent?: string
5
+ accent?: boolean
6
6
  top?: boolean
7
7
  featureFlag?: string
8
8
  childs?: {
@@ -1,81 +0,0 @@
1
- import { FeatureFlags } from '~/config/featureFlags.config';
2
-
3
- export function useNavigationItems() {
4
- const navigationItems = computed(() => {
5
- const favLink = '/favorites';
6
-
7
- return [
8
- {
9
- title: 'videos',
10
- link: '/',
11
- icon: 'video-camera',
12
- },
13
- {
14
- title: 'categories',
15
- link: '/categories',
16
- icon: 'grid',
17
- },
18
- {
19
- title: 'channels',
20
- link: '/channels',
21
- icon: 'play-circle',
22
- },
23
- {
24
- title: 'gay_models',
25
- link: '/models',
26
- icon: 'user',
27
- },
28
- {
29
- title: 'playlists',
30
- link: '/playlists',
31
- icon: 'list',
32
- },
33
- ...(FeatureFlags.FeatureLiveEnabled ? [{
34
- title: 'live_sex',
35
- link: '/2257',
36
- icon: 'photo-cam',
37
- accent: true,
38
- }] : []),
39
- ...(FeatureFlags.FeatureHistoryEnabled ? [{
40
- title: 'history',
41
- link: '/2257',
42
- icon: 'time',
43
- top: true,
44
- }] : []),
45
- ...(FeatureFlags.FeatureFavoritesEnabled ? [{
46
- title: 'favorites',
47
- icon: 'heart',
48
- top: true,
49
- childs: [
50
- {
51
- title: 'videos',
52
- icon: 'video-camera',
53
- link: favLink,
54
- },
55
- {
56
- title: 'watch_later',
57
- icon: 'time',
58
- link: '/2257',
59
- },
60
- {
61
- title: 'playlists',
62
- icon: 'list',
63
- link: '/2257',
64
- },
65
- {
66
- title: 'models',
67
- icon: 'user',
68
- link: '/2257',
69
- },
70
- {
71
- title: 'channels',
72
- icon: 'play-circle',
73
- link: '/2257',
74
- },
75
- ],
76
- }] : []),
77
- ];
78
- });
79
-
80
- return { navigationItems };
81
- }