@saooti/octopus-sdk 32.0.6 → 32.0.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/README.md CHANGED
@@ -648,3 +648,4 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
648
648
  * 32.0.4 Correction erreur
649
649
  * 32.0.5 update icones
650
650
  * 32.0.6 Update icones
651
+ * 32.0.7 Améliorations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "32.0.6",
3
+ "version": "32.0.7",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -18,7 +18,7 @@
18
18
  "@vue/cli": "^5.0.8",
19
19
  "@vue/compat": "^3.2.37",
20
20
  "axios": "^0.24.0",
21
- "bootstrap": "5.1.3",
21
+ "bootstrap": "5.2.0",
22
22
  "core-js": "^3.23.5",
23
23
  "hls.js": "^1.1.5",
24
24
  "humanize-duration": "^3.27.2",
@@ -65,9 +65,11 @@
65
65
  margin: 0;
66
66
  background-color: #ccc;
67
67
  border-radius: 50%;
68
+ display: flex;
69
+ justify-content: center;
70
+ align-items: center;
68
71
  &:before{
69
- position: relative;
70
- top:2px;
72
+ font-size: 0.8rem;
71
73
  }
72
74
  @media (max-width: 450px) {
73
75
  top: 14px;
@@ -6,7 +6,7 @@
6
6
  >
7
7
  <div>{{ $t('Advanced filters') }}</div>
8
8
  <div
9
- class="h3 saooti-down m-0"
9
+ class="h3 saooti-down mx-1"
10
10
  :class="{ 'arrow-transform': showFilters }"
11
11
  />
12
12
  </button>
@@ -18,11 +18,13 @@
18
18
  :class="{
19
19
  'saooti-play': isPaused,
20
20
  'saooti-pause': isPlaying,
21
- 'spinner-border':!isPaused&&!isPlaying
21
+ '':!isPaused&&!isPlaying
22
22
  }"
23
23
  class="btn play-button-box text-light primary-bg"
24
24
  @click="switchPausePlay"
25
- />
25
+ >
26
+ <span v-if="!isPaused&&!isPlaying" class="spinner-border flex-shrink-0"></span>
27
+ </button>
26
28
  <div class="text-light player-grow-content">
27
29
  <div class="d-flex mb-1">
28
30
  <div
@@ -57,11 +57,13 @@
57
57
  :class="{
58
58
  'saooti-play': isPaused,
59
59
  'saooti-pause': isPlaying,
60
- 'spinner-border':!isPaused&&!isPlaying
60
+ '':!isPaused&&!isPlaying
61
61
  }"
62
62
  class="btn play-big-button-box text-light primary-bg"
63
63
  @click="switchPausePlay"
64
- />
64
+ >
65
+ <span v-if="!isPaused&&!isPlaying" class="spinner-border flex-shrink-0"></span>
66
+ </button>
65
67
  <button
66
68
  class="btn fs-1 bg-transparent text-light saooti-forward"
67
69
  @click="seekClick(15)"