@saooti/octopus-sdk 38.2.13 → 38.2.15

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.2.13",
3
+ "version": "38.2.15",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -99,7 +99,7 @@ body{
99
99
  margin: 0.5rem 0.5rem 0 0.5rem;
100
100
  border-radius: $octopus-borderradius;
101
101
  flex-grow: 1;
102
- overflow: auto;
102
+ //overflow: auto;
103
103
  border: 2px solid #eee;
104
104
  @media (max-width: 500px){
105
105
  margin: 0.3rem;
@@ -1,12 +1,12 @@
1
1
  <template>
2
2
  <div class="position-relative w-100">
3
3
  <template v-if="!isPhone">
4
- <button
4
+ <!-- <button
5
5
  v-show="isLoop"
6
6
  :title="$t('Display previous')"
7
7
  class="btn-transparent swiper-button-prev"
8
8
  @click="slidePrevButton()"
9
- ></button>
9
+ ></button> -->
10
10
  <swiper
11
11
  :slides-per-view="numberItem"
12
12
  :space-between="0"
@@ -37,7 +37,7 @@ export default defineComponent({
37
37
  position: relative;
38
38
  } */
39
39
  .page-element.page-element-podcastmaker {
40
- margin-top: 12rem;
40
+ margin-top: 11rem;
41
41
  }
42
42
  .page-element-title-container {
43
43
  background: black;
@@ -191,7 +191,7 @@ export default defineComponent({
191
191
  this.authenticated &&
192
192
  undefined !== this.podcast &&
193
193
  this.isProduction &&
194
- ((this.authOrganisation.attributes?.["openAi"] as
194
+ ((this.authOrganisation.attributes?.["openAi.active"] as
195
195
  | string
196
196
  | undefined) === "true" ??
197
197
  false)
@@ -46,12 +46,14 @@
46
46
  />
47
47
  <ClassicLazy :min-height="550">
48
48
  <PodcastInlineList
49
+ class="module-box"
49
50
  :podcast-id="podcastId"
50
51
  :title="$t('Suggested listening')"
51
52
  />
52
53
  </ClassicLazy>
53
54
  <ClassicLazy v-for="c in categories" :key="c.id" :min-height="550">
54
55
  <PodcastInlineList
56
+ class="module-box"
55
57
  :iab-id="c.id"
56
58
  :href="'/main/pub/category/' + c.id"
57
59
  :title="$t('More episodes of this category : ', { name: c.name })"