@saooti/octopus-sdk 40.1.12 → 40.1.13
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/composable/player/usePlayerLogic.ts +2 -2
- package/src/components/display/emission/EmissionInlineList.vue +1 -1
- package/src/components/display/participant/ParticipantInlineList.vue +1 -1
- package/src/components/display/podcasts/PodcastFilterList.vue +1 -1
- package/src/components/display/podcasts/PodcastSwiperList.vue +1 -1
- package/src/components/display/sharing/ShareButtons.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +1 -0
package/package.json
CHANGED
|
@@ -85,9 +85,9 @@ export const usePlayerLogic = (forceHide: Ref<boolean, boolean>)=>{
|
|
|
85
85
|
document.querySelector("#audio-player");
|
|
86
86
|
if (!audioPlayer) return;
|
|
87
87
|
if (playerStore.playerLive && !hlsReady.value) {
|
|
88
|
-
audioPlayer.pause();
|
|
88
|
+
/* audioPlayer.pause();
|
|
89
89
|
percentLiveProgress.value = 0;
|
|
90
|
-
durationLivePosition.value = 0;
|
|
90
|
+
durationLivePosition.value = 0; */
|
|
91
91
|
return;
|
|
92
92
|
}
|
|
93
93
|
if ("PAUSED" === playerStore.playerStatus && playerStore.playerRadio) {
|
|
@@ -91,7 +91,7 @@ export default defineComponent({
|
|
|
91
91
|
path: "emission/search",
|
|
92
92
|
parameters: {
|
|
93
93
|
first: 0,
|
|
94
|
-
size:
|
|
94
|
+
size: 12,
|
|
95
95
|
organisationId: this.organisationId,
|
|
96
96
|
rubriqueId: this.rubriqueId ? [this.rubriqueId] : [],
|
|
97
97
|
rubriquageId: this.rubriquageId ? [this.rubriquageId] : [],
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{{ titleFilter }}
|
|
5
5
|
</h3>
|
|
6
6
|
<div class="d-flex align-items-center flex-wrap mb-2">
|
|
7
|
-
<div class="w-50-responsive pe-3">
|
|
7
|
+
<div id="podcast-filter-list-category-chooser" class="w-50-responsive pe-3">
|
|
8
8
|
<CategoryChooser
|
|
9
9
|
:defaultanswer="$t('No category filter')"
|
|
10
10
|
@selected="onCategorySelected"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<section v-if="!isLoading && (authOrgaId || !noSharing)" class="module-box">
|
|
2
|
+
<section id="share-buttons-podcast-section" v-if="!isLoading && (authOrgaId || !noSharing)" class="module-box">
|
|
3
3
|
<div class="share-buttons-display">
|
|
4
4
|
<div v-if="!isGarRole && !noSharing" class="d-flex flex-column me-2">
|
|
5
5
|
<h3 class="mb-2">
|