@saooti/octopus-sdk 30.0.18 → 30.0.19

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
@@ -515,4 +515,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
515
515
  * 30.0.15 Améliorations css
516
516
  * 30.0.16 Change Aria-Label in title
517
517
  * 30.0.17 Oups
518
- * 30.0.18 Responsive select
518
+ * 30.0.18 Responsive select
519
+ * 30.0.19 Mise à jour Api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.18",
3
+ "version": "30.0.19",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -15,7 +15,7 @@
15
15
  "main": "./dist/octopus.common.js",
16
16
  "dependencies": {
17
17
  "@popperjs/core": "^2.11.0",
18
- "@saooti/octopus-api": "^0.30.2",
18
+ "@saooti/octopus-api": "^0.30.3",
19
19
  "@vue/cli": "^5.0.0-rc.1",
20
20
  "@vue/compat": "^3.2.26",
21
21
  "axios": "^0.24.0",
@@ -18,9 +18,6 @@
18
18
  border: 0;
19
19
  background: #f3f3f3;
20
20
  }
21
- @media (max-width: 450px) {
22
- margin: 0.5rem auto 0;
23
- }
24
21
  }
25
22
  .category-rubrique-item-plus {
26
23
  display: flex;
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
  <ClassicRadio
118
118
  v-model:textInit="sort"
119
- idRadio="sort-radio"
119
+ id-radio="sort-radio"
120
120
  :options="isSearchBar? [{title:$t('Sort score'), value:'SCORE'},
121
121
  {title:$t('Sort last'), value:isEmission?'LAST_PODCAST_DESC':'DATE'},
122
122
  {title:$t('Sort name'), value:'NAME'}]:
@@ -12,12 +12,12 @@
12
12
  {{ displayNextLiveMessage }}
13
13
  </h3>
14
14
  </div>
15
- <div
15
+ <template
16
16
  v-for="(live, indexLive) in livesArray"
17
17
  :key="live.status"
18
18
  >
19
19
  <template v-if="live.lives.length">
20
- <hr>
20
+ <hr class="w-100">
21
21
  <p class="live-list-category">
22
22
  {{ live.title }}
23
23
  </p>
@@ -30,7 +30,7 @@
30
30
  @deleteItem="deleteLive(indexLive, $event)"
31
31
  />
32
32
  </template>
33
- </div>
33
+ </template>
34
34
  </div>
35
35
  </template>
36
36