@saooti/octopus-sdk 33.2.13 → 33.2.14
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.
package/package.json
CHANGED
|
@@ -38,21 +38,37 @@
|
|
|
38
38
|
@click="play"
|
|
39
39
|
>
|
|
40
40
|
<div
|
|
41
|
-
|
|
41
|
+
v-if="!isLiveToBeRecorded"
|
|
42
42
|
class="icon-container"
|
|
43
|
-
:class="{
|
|
44
|
-
'saooti-play text-primary': !playingPodcast,
|
|
45
|
-
'special-icon-play-button': !classicPodcastPlay,
|
|
46
|
-
iconName:!classicPodcastPlay || isLiveToBeRecorded,
|
|
47
|
-
'bloc-paddle':playingPodcast,
|
|
48
|
-
'error-icon':isLiveToBeRecorded
|
|
49
|
-
}"
|
|
50
43
|
>
|
|
51
|
-
<
|
|
44
|
+
<div
|
|
45
|
+
v-if="!playingPodcast"
|
|
46
|
+
:title="$t('Play')"
|
|
47
|
+
class="saooti-play text-primary"
|
|
48
|
+
/>
|
|
49
|
+
<div
|
|
50
|
+
v-if="!classicPodcastPlay"
|
|
51
|
+
class="special-icon-play-button"
|
|
52
|
+
:class="iconName"
|
|
53
|
+
/>
|
|
54
|
+
<div
|
|
55
|
+
v-if="playingPodcast"
|
|
56
|
+
class="bloc-paddle"
|
|
57
|
+
>
|
|
52
58
|
<span class="paddle1" />
|
|
53
59
|
<span class="paddle2" />
|
|
54
60
|
<span class="paddle3" />
|
|
55
|
-
</
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<div
|
|
64
|
+
v-else
|
|
65
|
+
class="icon-container error-icon"
|
|
66
|
+
>
|
|
67
|
+
<div
|
|
68
|
+
:title="textVisible"
|
|
69
|
+
class="big-icon-error"
|
|
70
|
+
:class="iconName"
|
|
71
|
+
/>
|
|
56
72
|
</div>
|
|
57
73
|
<div
|
|
58
74
|
v-if="!classicPodcastPlay"
|
|
@@ -293,20 +309,6 @@ export default defineComponent({
|
|
|
293
309
|
cursor: pointer;
|
|
294
310
|
z-index: 3;
|
|
295
311
|
}
|
|
296
|
-
.special-icon-play-button {
|
|
297
|
-
width: 30px;
|
|
298
|
-
height: 30px;
|
|
299
|
-
background-color: #ffd663;
|
|
300
|
-
border-radius: 50%;
|
|
301
|
-
position: absolute;
|
|
302
|
-
right: 4.5rem;
|
|
303
|
-
top: 6rem;
|
|
304
|
-
font-size: 0.9rem;
|
|
305
|
-
font-weight: bold;
|
|
306
|
-
display: flex;
|
|
307
|
-
align-items: center;
|
|
308
|
-
justify-content: center;
|
|
309
|
-
}
|
|
310
312
|
.transparent-background {
|
|
311
313
|
background-color: rgba(255, 255, 255, 0.5);
|
|
312
314
|
}
|
|
@@ -344,12 +346,30 @@ export default defineComponent({
|
|
|
344
346
|
&:hover {
|
|
345
347
|
background: #00000030;
|
|
346
348
|
}
|
|
347
|
-
|
|
349
|
+
.saooti-play {
|
|
348
350
|
font-size: 2em;
|
|
349
351
|
position: relative;
|
|
350
352
|
right: -0.2rem;
|
|
351
353
|
}
|
|
354
|
+
.big-icon-error {
|
|
355
|
+
font-size: 2em;
|
|
356
|
+
position: relative;
|
|
357
|
+
}
|
|
352
358
|
}
|
|
353
359
|
}
|
|
360
|
+
.special-icon-play-button {
|
|
361
|
+
width: 30px;
|
|
362
|
+
height: 30px;
|
|
363
|
+
background-color: #ffd663;
|
|
364
|
+
border-radius: 50%;
|
|
365
|
+
position: absolute;
|
|
366
|
+
right: 4.5rem;
|
|
367
|
+
top: 6rem;
|
|
368
|
+
font-size: 0.9rem;
|
|
369
|
+
font-weight: bold;
|
|
370
|
+
display: flex;
|
|
371
|
+
align-items: center;
|
|
372
|
+
justify-content: center;
|
|
373
|
+
}
|
|
354
374
|
}
|
|
355
375
|
</style>
|
|
@@ -14,8 +14,6 @@
|
|
|
14
14
|
@click="onDisplayMenu(true)"
|
|
15
15
|
>
|
|
16
16
|
<img
|
|
17
|
-
width="160"
|
|
18
|
-
height="50"
|
|
19
17
|
:src="!filterOrga || '' === imgUrl ? logoUrl : proxyImageUrl(imgUrl, '', '50')"
|
|
20
18
|
:alt="!filterOrga || '' === imgUrl ? $t('Logo of main page') : $t('Visual', {name: $store.state.filter?.name})"
|
|
21
19
|
:class="isEducation ? 'educationLogo' : ''"
|