@saooti/octopus-sdk 40.1.16 → 40.1.17
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
|
@@ -95,7 +95,7 @@ import { ListClassicReturn } from "@/stores/class/general/listReturn";
|
|
|
95
95
|
const PodcastPlayBar = defineAsyncComponent(
|
|
96
96
|
() => import("../podcasts/PodcastPlayBar.vue"),
|
|
97
97
|
);
|
|
98
|
-
const PodcastPlayBasicButton = defineAsyncComponent(() => import("
|
|
98
|
+
const PodcastPlayBasicButton = defineAsyncComponent(() => import("../podcasts/PodcastPlayBasicButton.vue"));
|
|
99
99
|
export default defineComponent({
|
|
100
100
|
name: "EmissionPlayerItem",
|
|
101
101
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div>
|
|
2
|
+
<div class="podcast-item-info">
|
|
3
3
|
<time
|
|
4
4
|
:datetime="podcast.pubDate"
|
|
5
5
|
class="text-secondary h6 ms-2">
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
name: 'podcast',
|
|
11
11
|
params: { podcastId: podcast.podcastId },
|
|
12
12
|
}"
|
|
13
|
-
class="text-dark flex-grow-1
|
|
13
|
+
class="text-dark flex-grow-1 title-podcast-item basic-line-clamp three-line"
|
|
14
14
|
:podcast.title="$t('Episode name page', { name: podcast.title })"
|
|
15
15
|
>
|
|
16
16
|
{{ podcast.title }}
|
|
@@ -49,6 +49,7 @@ import {useOrgaComputed} from "../../composable/useOrgaComputed";
|
|
|
49
49
|
import dayjs from "dayjs";
|
|
50
50
|
import { defineAsyncComponent, defineComponent } from "vue";
|
|
51
51
|
import { Podcast } from "@/stores/class/general/podcast";
|
|
52
|
+
import { state } from "../../../stores/ParamSdkStore";
|
|
52
53
|
const PodcastPlayBar = defineAsyncComponent(
|
|
53
54
|
() => import("./PodcastPlayBar.vue"),
|
|
54
55
|
);
|
|
@@ -91,7 +92,7 @@ export default defineComponent({
|
|
|
91
92
|
|
|
92
93
|
<style lang="scss">
|
|
93
94
|
.octopus-app {
|
|
94
|
-
.
|
|
95
|
+
.title-podcast-item {
|
|
95
96
|
font-weight: 700;
|
|
96
97
|
margin: 0.25rem 0.5rem 0.5rem;
|
|
97
98
|
flex-grow: 1;
|