@saooti/octopus-sdk 38.0.3 → 38.0.5
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/index.ts
CHANGED
|
@@ -24,6 +24,7 @@ export const getFooter = () => import("./src/components/misc/FooterSection.vue")
|
|
|
24
24
|
export const getPlayer = () => import("./src/components/misc/player/PlayerComponent.vue");
|
|
25
25
|
export const getSnackbar = () => import("./src/components/misc/SnackBar.vue");
|
|
26
26
|
export const getTopBar = () => import("./src/components/misc/TopBar.vue");
|
|
27
|
+
export const getMobileMenu = () => import("./src/components/misc/MobileMenu.vue");
|
|
27
28
|
export const getHomeDropdown = () => import("./src/components/misc/HomeDropdown.vue");
|
|
28
29
|
export const getMessageModal = () => import("./src/components/misc/modal/MessageModal.vue");
|
|
29
30
|
export const getErrorMessage = () => import("./src/components/misc/ErrorMessage.vue");
|
package/package.json
CHANGED
|
@@ -9,18 +9,20 @@
|
|
|
9
9
|
</div>
|
|
10
10
|
<div class="d-flex flex-column page-element">
|
|
11
11
|
<div class="module-box">
|
|
12
|
-
<div class="mb-
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
<div class="d-flex mb-2">
|
|
13
|
+
<div class="w-100">
|
|
14
|
+
<img
|
|
15
|
+
v-lazy="proxyImageUrl(emission.imageUrl, '250')"
|
|
16
|
+
width="250"
|
|
17
|
+
height="250"
|
|
18
|
+
:alt="$t('Emission name image', { name: name })"
|
|
19
|
+
class="img-box img-box-podcast mb-3 flex-column justify-content-start align-items-start position-relative flex-shrink-0 float-start me-3"
|
|
20
|
+
/>
|
|
21
|
+
<div class="text-uppercase h2 mb-3">{{ name }}</div>
|
|
22
|
+
<!-- eslint-disable vue/no-v-html -->
|
|
23
|
+
<p class="html-wysiwyg-content descriptionText" v-html="urlify(description)" />
|
|
24
|
+
<!-- eslint-enable -->
|
|
25
|
+
</div>
|
|
24
26
|
</div>
|
|
25
27
|
<EditBox
|
|
26
28
|
v-if="editRight && pageParameters.isEditBox"
|