@saooti/octopus-sdk 31.0.29 → 31.0.30

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
@@ -616,3 +616,4 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
616
616
  * 31.0.27 Snackbar chose holdtime
617
617
  * 31.0.28 Mixins orgComputed
618
618
  * 31.0.29 Changement css
619
+ * 31.0.30 Changement css
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "31.0.29",
3
+ "version": "31.0.30",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -49,20 +49,20 @@
49
49
  background: $octopus-primary-dark;
50
50
  border: 1px solid $octopus-primary-dark;
51
51
  border-radius: 4px !important;
52
- color: white;
52
+ color: white !important;
53
53
  font-weight: bold;
54
54
  &:focus,
55
55
  &:hover,
56
56
  &:active,
57
57
  &.active {
58
58
  background: transparent;
59
- color: $octopus-primary-dark;
59
+ color: $octopus-primary-dark !important;
60
60
  }
61
61
  &:disabled{
62
62
  background-color: #cccccc;
63
63
  border: black;
64
64
  cursor: default;
65
- color: gray;
65
+ color: gray !important;
66
66
  }
67
67
  @media (max-width: 500px){
68
68
  margin: 0.3rem;
@@ -9,7 +9,7 @@
9
9
  <div class="w-100">
10
10
  <PodcastImage
11
11
  :class="[
12
- !isLiveReadyToRecord
12
+ !isLiveReadyToRecord
13
13
  ? 'shadow-element'
14
14
  : '',
15
15
  isLiveReadyToRecord &&
@@ -10,8 +10,14 @@
10
10
  class="input-no-outline"
11
11
  @change="$emit('update:iFrameModel',$event.target.value)"
12
12
  >
13
- <template v-for="option in optionsSelect" :key="option.value">
14
- <option v-if="option.condition" :value="option.value">
13
+ <template
14
+ v-for="option in optionsSelect"
15
+ :key="option.value"
16
+ >
17
+ <option
18
+ v-if="option.condition"
19
+ :value="option.value"
20
+ >
15
21
  {{ option.name }}
16
22
  </option>
17
23
  </template>