@saooti/octopus-sdk 37.0.1 → 37.0.2
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/sharing/ShareDistribution.vue +0 -1
- package/src/components/display/sharing/SubscribeButtons.vue +0 -1
- package/src/components/form/ClassicDatePicker.vue +1 -1
- package/src/components/pages/Emission.vue +1 -1
- package/src/components/pages/Podcast.vue +1 -1
package/package.json
CHANGED
|
@@ -74,7 +74,6 @@ export default defineComponent({
|
|
|
74
74
|
{url:this.getUrl('PodcastAddict'), icon:'saooti-podcast-addict', title:'Podcast Addict'},
|
|
75
75
|
{url:this.getUrl('radioline'), icon:'saooti-radioline', title:'Radioline'},
|
|
76
76
|
{url:this.getUrl('spotify'), icon:'saooti-spotify', title:'Spotify'},
|
|
77
|
-
{url:this.getUrl('Stitcher'), icon:'saooti-stitcher-logo', title:'Stitcher'},
|
|
78
77
|
{url:this.getUrl('tuneIn'), icon:'saooti-tunin', title:'TuneIn'}];
|
|
79
78
|
}
|
|
80
79
|
},
|
|
@@ -44,7 +44,6 @@ export default defineComponent({
|
|
|
44
44
|
{name:'podcastAddict', icon: 'saooti-podcast-addict', title:'Podcast Addict', url : this.getUrl('podcastAddict')},
|
|
45
45
|
{name:'radioline', icon:'saooti-radioline',title:'Radioline', url : this.getUrl('radioline')},
|
|
46
46
|
{name:'spotify', icon:'saooti-spotify',title:'Spotify', url : this.getUrl('spotify')},
|
|
47
|
-
{name:'stitcher', icon:'saooti-stitcher-logo', title:'Stitcher', url : this.getUrl('stitcher')},
|
|
48
47
|
{name:'tunein', icon:'saooti-tunin',title:'TuneIn', url : this.getUrl('tunein')}
|
|
49
48
|
];
|
|
50
49
|
return sub.filter(item=> item.url);
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
<DatePicker
|
|
3
3
|
ref="datePicker"
|
|
4
4
|
:model-value="undefined!==range ? range : date"
|
|
5
|
+
:model-modifiers="{ range:undefined!==range }"
|
|
5
6
|
:mode="mode"
|
|
6
7
|
color="green"
|
|
7
8
|
is24hr
|
|
8
|
-
:is-range="undefined!==range"
|
|
9
9
|
:max-date="isMaxDate ? now : undefined"
|
|
10
10
|
:min-date="isMinDate ? now : undefined"
|
|
11
11
|
:columns="columnNumber"
|
|
@@ -161,7 +161,7 @@ export default defineComponent({
|
|
|
161
161
|
},
|
|
162
162
|
countLink(): number {
|
|
163
163
|
const platformShare = ['amazon','googlePodcasts','applePodcast', 'deezer', 'spotify', 'tunein',
|
|
164
|
-
'radioline', 'podcastAddict', 'playerFm', '
|
|
164
|
+
'radioline', 'podcastAddict', 'playerFm', 'pocketCasts'];
|
|
165
165
|
let count = 0;
|
|
166
166
|
for (let i = 0, len = platformShare.length; i < len; i++) {
|
|
167
167
|
if (undefined !== this.emission?.annotations?.[platformShare[i]]) count++;
|
|
@@ -175,7 +175,7 @@ export default defineComponent({
|
|
|
175
175
|
},
|
|
176
176
|
countLink(): number {
|
|
177
177
|
const platformShare = ['amazon','googlePodcasts','applePodcast', 'deezer', 'spotify', 'tunein',
|
|
178
|
-
'radioline', 'podcastAddict', 'playerFm', '
|
|
178
|
+
'radioline', 'podcastAddict', 'playerFm', 'pocketCasts'];
|
|
179
179
|
let count = 0;
|
|
180
180
|
for (let i = 0, len = platformShare.length; i < len; i++) {
|
|
181
181
|
if (undefined !== this.podcast?.emission?.annotations?.[platformShare[i]]) count++;
|