@saooti/octopus-sdk 38.3.5 → 38.3.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "38.3.5",
3
+ "version": "38.3.7",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -18,7 +18,7 @@
18
18
  class="btn m-1 admin-button hide-small-screen saooti-user text-blue-octopus"
19
19
  :title="$t('User menu')"
20
20
  />
21
- <teleport to=".octopus-app">
21
+ <teleport to=".octopus-app" :disabled="scrolled">
22
22
  <ClassicPopover
23
23
  target="home-dropdown"
24
24
  :only-click="true"
@@ -90,6 +90,7 @@ export default defineComponent({
90
90
  props: {
91
91
  isEducation: { default: false, type: Boolean },
92
92
  mobileMenuDisplay: { default: false, type: Boolean },
93
+ scrolled: { default: false, type: Boolean },
93
94
  },
94
95
  computed: {
95
96
  ...mapState(useAuthStore, ["authProfile", "isGarRole"]),
@@ -60,7 +60,7 @@ export default defineComponent({
60
60
  computed: {
61
61
  ...mapState(useGeneralStore, ["contentToDisplay"]),
62
62
  isContentToDisplay(): boolean {
63
- return "podcast" === this.$route.name || "emission" === this.$route.name;
63
+ return "podcast" === this.$route.name || "emission" === this.$route.name || "playlist" === this.$route.name|| "radio" === this.$route.name;
64
64
  },
65
65
  backgroundDisplay(): string {
66
66
  if (!this.contentToDisplay) {
@@ -110,6 +110,7 @@
110
110
  <HomeDropdown
111
111
  :is-education="isEducation"
112
112
  :mobile-menu-display="mobileMenuDisplay"
113
+ :scrolled="scrolled"
113
114
  />
114
115
  <router-link
115
116
  v-show="!isPhone && !inContentDisplayPage"