@saooti/octopus-sdk 30.0.87 → 30.0.88
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/README.md
CHANGED
|
@@ -583,4 +583,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
583
583
|
* 30.0.84 Une émission non visible n'apparaît pas dans la page émission
|
|
584
584
|
* 30.0.85 PB en cliquant sur le bouton "tous les épisodes de l'organisation" dans la page d'un épisode
|
|
585
585
|
* 30.0.86 Podcastmaker newest
|
|
586
|
-
* 30.0.87 Podcastmaker newest (swiper list)
|
|
586
|
+
* 30.0.87 Podcastmaker newest (swiper list)
|
|
587
|
+
* 30.0.88 Podcastmaker newest (swiper list)
|
package/package.json
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
v-show="loaded"
|
|
22
22
|
:slides-per-view="numberItem"
|
|
23
23
|
:space-between="10"
|
|
24
|
-
:slides-per-group="numberItem"
|
|
25
24
|
:loop="true"
|
|
26
25
|
:navigation="true"
|
|
27
26
|
:modules="modules"
|
|
@@ -136,7 +135,7 @@ export default defineComponent({
|
|
|
136
135
|
handleResize(): void {
|
|
137
136
|
if (!this.$el) return;
|
|
138
137
|
const width = (this.$el as HTMLElement).offsetWidth;
|
|
139
|
-
const sixteen = domHelper.convertRemToPixels(this.sizeItem +
|
|
138
|
+
const sixteen = domHelper.convertRemToPixels(this.sizeItem + 2);
|
|
140
139
|
this.numberItem = Math.floor(width / sixteen);
|
|
141
140
|
},
|
|
142
141
|
async fetchNext(): Promise<void> {
|
|
@@ -183,7 +182,7 @@ export default defineComponent({
|
|
|
183
182
|
.swiper {
|
|
184
183
|
width: 100%;
|
|
185
184
|
height: 100%;
|
|
186
|
-
padding: 50px
|
|
185
|
+
padding: 50px 20px;
|
|
187
186
|
}
|
|
188
187
|
.swiper-button-next, .swiper-button-prev{
|
|
189
188
|
color: $octopus-primary-color !important;
|