@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 +1 -1
- package/src/assets/bootstrap.scss +9 -9
- package/src/components/display/categories/CategoryFilter.vue +1 -0
- package/src/components/display/participant/ParticipantItem.vue +1 -0
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/display/sharing/PlayerParameters.vue +10 -1
- package/src/components/display/sharing/SharePlayer.vue +5 -0
- package/src/components/misc/HomeDropdown.vue +0 -1
- package/src/locale/de.ts +1 -0
- package/src/locale/en.ts +1 -0
- package/src/locale/es.ts +1 -0
- package/src/locale/fr.ts +1 -0
- package/src/locale/it.ts +1 -0
- package/src/locale/sl.ts +1 -0
package/package.json
CHANGED
|
@@ -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:
|
|
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.
|
|
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) {
|
|
@@ -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
package/src/locale/en.ts
CHANGED
package/src/locale/es.ts
CHANGED
package/src/locale/fr.ts
CHANGED
package/src/locale/it.ts
CHANGED