@saooti/octopus-sdk 37.0.51 → 37.0.53
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
|
@@ -47,9 +47,12 @@ export const getRubriqueChooser = () => import("./src/components/display/rubriqu
|
|
|
47
47
|
export const getCommentList = () => import("./src/components/display/comments/CommentList.vue");
|
|
48
48
|
export const getCommentInput = () => import("./src/components/display/comments/CommentInput.vue");
|
|
49
49
|
export const getPodcastPlaylistInlineList = () => import("./src/components/display/playlist/PodcastPlaylistInlineList.vue");
|
|
50
|
+
export const getLiveList = () => import("./src/components/display/live/LiveList.vue");
|
|
51
|
+
|
|
50
52
|
|
|
51
53
|
//Radio
|
|
52
54
|
export const getRadioCurrently = () => import("./src/components/display/live/RadioCurrently.vue");
|
|
55
|
+
export const getRadioPlanning = () => import("./src/components/display/live/RadioPlanning.vue");
|
|
53
56
|
|
|
54
57
|
|
|
55
58
|
//AdvancedSearch
|
package/package.json
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
:emission="e"
|
|
35
35
|
class="m-3 flex-shrink-0"
|
|
36
36
|
:class="mainRubriquage(e)"
|
|
37
|
+
:nb-podcasts="nbPodcasts"
|
|
37
38
|
:rubrique-name="rubriquesId(e)"
|
|
38
39
|
/>
|
|
39
40
|
</template>
|
|
@@ -85,6 +86,7 @@ export default defineComponent({
|
|
|
85
86
|
rubriqueId: { default: () => [], type: Array as () => Array<number> },
|
|
86
87
|
rubriquageId: { default: () => [], type: Array as () => Array<number> },
|
|
87
88
|
noRubriquageId: { default: () => [], type: Array as () => Array<number> },
|
|
89
|
+
nbPodcasts: { default: undefined, type: Number },
|
|
88
90
|
},
|
|
89
91
|
|
|
90
92
|
data() {
|