itube-specs 0.0.818 → 0.0.820
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.
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
<template>
|
|
3
3
|
<div class="player-info">
|
|
4
4
|
<p class="player-info__meta">
|
|
5
|
-
<span class="player-info__item">
|
|
6
|
-
<UiIcon
|
|
7
|
-
name="time"
|
|
8
|
-
size="16"
|
|
9
|
-
/>
|
|
10
|
-
{{ duration }}
|
|
11
|
-
</span>
|
|
12
5
|
<span class="player-info__item">
|
|
13
6
|
<UiIcon
|
|
14
7
|
name="show"
|
|
@@ -30,7 +23,6 @@
|
|
|
30
23
|
<script setup lang="ts">
|
|
31
24
|
|
|
32
25
|
const props = defineProps<{
|
|
33
|
-
duration: string
|
|
34
26
|
views: string | number
|
|
35
27
|
created: number
|
|
36
28
|
}>();
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
:dislikes="data.dislikes"
|
|
9
9
|
/>
|
|
10
10
|
<PlayerInfo
|
|
11
|
-
:duration="getDuration(data.duration)"
|
|
12
11
|
:created="data.created"
|
|
13
12
|
:views="data.views"
|
|
14
13
|
class="_from-sm"
|
|
@@ -88,7 +87,6 @@
|
|
|
88
87
|
|
|
89
88
|
<script setup lang="ts">
|
|
90
89
|
import type { IVideoData } from '../../types';
|
|
91
|
-
import { getDuration } from '../../runtime';
|
|
92
90
|
import { AuthorizationApiService } from '../../services/api/authorization.service';
|
|
93
91
|
|
|
94
92
|
const props = defineProps<{
|