@saooti/octopus-sdk 36.0.21 → 36.0.23

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": "36.0.21",
3
+ "version": "36.0.23",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -3,13 +3,13 @@
3
3
  -webkit-box-sizing: border-box;
4
4
  box-sizing: border-box;
5
5
  }
6
+ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs__"]), optgroup, textarea {
7
+ margin: 0;
8
+ font-family: inherit;
9
+ font-size: inherit;
10
+ line-height: inherit;
11
+ }
6
12
  .octopus-app{
7
- input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs__"]), optgroup, textarea {
8
- margin: 0;
9
- font-family: inherit;
10
- font-size: inherit;
11
- line-height: inherit;
12
- }
13
13
  button {
14
14
  cursor: pointer;
15
15
  }
@@ -22,7 +22,7 @@
22
22
  }
23
23
  margin-top: 0;
24
24
  margin-bottom:0;
25
- font-weight: 400;
25
+ font-weight: 600;
26
26
  line-height: 1.2;
27
27
  }
28
28
  h1,.h1{
@@ -69,7 +69,7 @@
69
69
  }
70
70
  .btn{
71
71
  display: inline-block;
72
- padding: 0.375rem 0.75rem;
72
+ padding: 0.5rem;
73
73
  line-height: 1.5;
74
74
  color: #212529;
75
75
  text-align: center;
@@ -99,7 +99,7 @@
99
99
  &.btn-underline{
100
100
  background: none;
101
101
  padding: 0;
102
- margin: 0 2rem 1rem 0;
102
+ margin: 0.5rem 2rem 1rem 0;
103
103
  border-radius: 0;
104
104
  font-size: 0.9rem;
105
105
  @media (max-width: 600px) {
@@ -184,6 +184,7 @@ export default defineComponent({
184
184
  display: flex;
185
185
  min-height: 15rem;
186
186
  background-size: cover;
187
+ background-position: center;
187
188
  h1{
188
189
  margin: 2rem 1rem auto;
189
190
  font-size: 2rem;
@@ -158,6 +158,7 @@ export default defineComponent({
158
158
  .participant-producer {
159
159
  font-weight: 300;
160
160
  font-size: 0.6rem;
161
+ margin-top: 0.5rem;
161
162
  }
162
163
  @media (max-width: 960px) {
163
164
  margin: 0;
@@ -222,7 +222,7 @@ export default defineComponent({
222
222
  select{
223
223
  width: auto;
224
224
  border-radius: $octopus-borderradius;
225
- margin: 0.2rem;
225
+ margin: 0.25rem;
226
226
  font-size: 0.6rem;
227
227
  padding: 0.5rem;
228
228
  }
@@ -68,6 +68,11 @@
68
68
  id-checkbox="display-transcript-checkbox"
69
69
  :label="$t('If the transcript is available, show it')"
70
70
  />
71
+ <ClassicCheckbox
72
+ v-model:textInit="displayWave"
73
+ id-checkbox="display-wave-checkbox"
74
+ :label="$t('Show animated wave')"
75
+ />
71
76
  </template>
72
77
 
73
78
  <script lang="ts">
@@ -84,7 +89,7 @@ export default defineComponent({
84
89
  displayTranscriptParam: {default: false, type: Boolean},
85
90
  displayArticleParam: {default: false, type: Boolean},
86
91
  },
87
- emits: ['episodeNumbers', 'proceedReading', 'isVisible', 'iFrameNumber', 'displayArticle', 'displayTranscript'],
92
+ emits: ['episodeNumbers', 'proceedReading', 'isVisible', 'iFrameNumber', 'displayArticle', 'displayTranscript', 'displayWave'],
88
93
 
89
94
  data() {
90
95
  return {
@@ -94,6 +99,7 @@ export default defineComponent({
94
99
  isVisibleTemp: this.isVisible,
95
100
  displayArticle: true as boolean,
96
101
  displayTranscript:true as boolean,
102
+ displayWave:true as boolean,
97
103
  };
98
104
  },
99
105
  computed: {
@@ -130,6 +136,9 @@ export default defineComponent({
130
136
  },
131
137
  displayTranscript(): void{
132
138
  this.$emit('displayTranscript', this.displayTranscript);
139
+ },
140
+ displayWave(): void{
141
+ this.$emit('displayWave', this.displayWave);
133
142
  }
134
143
  },
135
144
  })
@@ -51,6 +51,7 @@
51
51
  :display-article-param="displayArticleParam"
52
52
  @displayArticle="displayArticle = $event"
53
53
  @displayTranscript="displayTranscript = $event"
54
+ @displayWave="displayWave=$event"
54
55
  @episodeNumbers="episodeNumbers = $event"
55
56
  @proceedReading="proceedReading = $event"
56
57
  @isVisible="isVisible = $event"
@@ -127,6 +128,7 @@ export default defineComponent({
127
128
  isVisible: false as boolean,
128
129
  displayArticle: true as boolean,
129
130
  displayTranscript: true as boolean,
131
+ displayWave: true as boolean,
130
132
  orgaAttributes: undefined as{[key: string]:string|number|boolean|undefined}|undefined,
131
133
  };
132
134
  },
@@ -280,6 +282,9 @@ export default defineComponent({
280
282
  if(!this.displayTranscript){
281
283
  url.push('&transcript=false');
282
284
  }
285
+ if(!this.displayWave){
286
+ url.push('&wave=false');
287
+ }
283
288
  if (this.isVisible) {
284
289
  url.push('&key=' + window.btoa(this.dataTitle.toString()));
285
290
  }
@@ -117,7 +117,6 @@ export default defineComponent({
117
117
  },
118
118
  routerBackoffice(){
119
119
  return [
120
- {title:this.$t('My space'),class:"show-phone octopus-dropdown-item", path:'/main/priv/backoffice', condition: true},
121
120
  {title:this.$t('Edit my profile'),class:"octopus-dropdown-item", path:'/main/priv/edit/profile', condition: true},
122
121
  {title:this.$t('Edit my organisation'),class:"octopus-dropdown-item", path:'/main/priv/edit/organisation', condition: (state.generalParameters.isOrganisation as boolean) || 1<this.organisationsAvailable.length}];
123
122
  },
package/src/locale/de.ts CHANGED
@@ -325,4 +325,5 @@ export default{
325
325
  "Program":"Programm",
326
326
  "No programming":"Nicht programmieren",
327
327
  'Canal name image': 'Kanalbild {name}',
328
+ "Show animated wave":"Animierte Welle anzeigen",
328
329
  }
package/src/locale/en.ts CHANGED
@@ -332,4 +332,5 @@ export default{
332
332
  "Program":"Program",
333
333
  "No programming":"No programming",
334
334
  'Canal name image': 'Channel image {name}',
335
+ "Show animated wave":"Show animated wave",
335
336
  };
package/src/locale/es.ts CHANGED
@@ -325,4 +325,5 @@ export default{
325
325
  "Program":"Programa",
326
326
  "No programming":"No programa",
327
327
  'Canal name image': 'Imagen del canal {name}',
328
+ "Show animated wave":"Mostrar onda animada",
328
329
  }
package/src/locale/fr.ts CHANGED
@@ -332,4 +332,5 @@ export default{
332
332
  "Program":"Programme",
333
333
  "No programming":"Aucune programmation",
334
334
  'Canal name image': 'Image du canal {name}',
335
+ "Show animated wave":"Afficher la vague animée",
335
336
  };
package/src/locale/it.ts CHANGED
@@ -322,4 +322,5 @@ export default{
322
322
  "Program":"Programma",
323
323
  "No programming":"Non programmazione",
324
324
  'Canal name image': 'Immagine del canale {name}',
325
+ "Show animated wave":"Mostra onda animata",
325
326
  };
package/src/locale/sl.ts CHANGED
@@ -325,4 +325,5 @@ export default{
325
325
  "Program":"Program",
326
326
  "No programming":"Ne programiranje",
327
327
  'Canal name image': 'Slika kanala {name}',
328
+ "Show animated wave":"Prikaži animirani val",
328
329
  }