@saooti/octopus-sdk 33.2.9 → 33.2.10
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 +1 -1
- package/src/components/display/emission/EmissionItem.vue +2 -0
- package/src/components/display/emission/EmissionPlayerItem.vue +2 -0
- package/src/components/display/organisation/OrganisationChooser.vue +4 -0
- package/src/components/display/participant/ParticipantItem.vue +2 -0
- package/src/components/display/playlist/PlaylistItem.vue +2 -0
- package/src/components/display/podcasts/PodcastImage.vue +2 -0
- package/src/components/display/podcasts/TagList.vue +2 -0
- package/src/components/misc/Accordion.vue +2 -0
- package/src/components/misc/Footer.vue +2 -0
- package/src/components/misc/player/PlayerCompact.vue +2 -0
- package/src/components/misc/player/PlayerLarge.vue +2 -0
- package/src/components/pages/Emission.vue +2 -0
- package/src/components/pages/Error403Page.vue +4 -0
- package/src/components/pages/Participant.vue +2 -0
- package/src/components/pages/Playlist.vue +2 -0
package/package.json
CHANGED
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
<template #singleLabel="{ option }">
|
|
45
45
|
<div class="multiselect-octopus-proposition">
|
|
46
46
|
<img
|
|
47
|
+
width="32"
|
|
48
|
+
height="32"
|
|
47
49
|
v-if="!light"
|
|
48
50
|
v-lazy="proxyImageUrl(option.imageUrl, '32')"
|
|
49
51
|
class="option__image"
|
|
@@ -64,6 +66,8 @@
|
|
|
64
66
|
"
|
|
65
67
|
>
|
|
66
68
|
<img
|
|
69
|
+
width="32"
|
|
70
|
+
height="32"
|
|
67
71
|
v-if="!light"
|
|
68
72
|
v-lazy="proxyImageUrl(option.imageUrl, '32')"
|
|
69
73
|
class="option__image"
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
class="img-box d-flex flex-column justify-content-start align-items-start position-relative justify rounded-lg flex-shrink-0 float-start"
|
|
5
5
|
>
|
|
6
6
|
<img
|
|
7
|
+
width="260"
|
|
8
|
+
height="260"
|
|
7
9
|
v-lazy="proxyImageUrl(podcast.imageUrl,'260')"
|
|
8
10
|
class="img-box"
|
|
9
11
|
:alt="$t('Episode name image', {name:podcast.title})"
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
<div class="not-auth-content d-flex-column justify-content-between">
|
|
4
4
|
<div class="d-flex flex-column justify-content-around">
|
|
5
5
|
<img
|
|
6
|
+
width="250"
|
|
7
|
+
height="auto"
|
|
6
8
|
class="logo-octopus"
|
|
7
9
|
src="/img/logo_octopus_final.svg"
|
|
8
10
|
:alt="$t('Logo of main page')"
|
|
@@ -10,6 +12,8 @@
|
|
|
10
12
|
<h2>{{ $t('You do not have the right to access this page' ) }}</h2>
|
|
11
13
|
</div>
|
|
12
14
|
<img
|
|
15
|
+
width="600"
|
|
16
|
+
height="auto"
|
|
13
17
|
class="stop-octopus-img"
|
|
14
18
|
src="/img/403.webp"
|
|
15
19
|
:alt="$t('You do not have the right to access this page')"
|