@saooti/octopus-sdk 30.0.57 → 30.0.58

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.
Files changed (39) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
  3. package/src/components/display/categories/CategoryFilter.vue +10 -8
  4. package/src/components/display/categories/CategoryList.vue +25 -23
  5. package/src/components/display/comments/CommentInput.vue +21 -19
  6. package/src/components/display/comments/CommentList.vue +2 -0
  7. package/src/components/display/comments/CommentPlayer.vue +2 -0
  8. package/src/components/display/emission/EmissionList.vue +1 -3
  9. package/src/components/display/filter/AdvancedSearch.vue +2 -0
  10. package/src/components/display/filter/ProductorSearch.vue +2 -1
  11. package/src/components/display/live/LiveItem.vue +2 -1
  12. package/src/components/display/live/LiveList.vue +2 -0
  13. package/src/components/display/organisation/OrganisationChooserLight.vue +2 -0
  14. package/src/components/display/participant/ParticipantItem.vue +2 -0
  15. package/src/components/display/participant/ParticipantList.vue +2 -0
  16. package/src/components/display/playlist/PodcastList.vue +2 -0
  17. package/src/components/display/podcasts/AnimatorsItem.vue +2 -0
  18. package/src/components/display/podcasts/PodcastImage.vue +2 -1
  19. package/src/components/display/podcasts/PodcastItem.vue +2 -0
  20. package/src/components/display/podcasts/PodcastPlayBar.vue +2 -0
  21. package/src/components/display/podcasts/TagList.vue +2 -0
  22. package/src/components/display/rubriques/RubriqueList.vue +2 -0
  23. package/src/components/display/sharing/PlayerParameters.vue +2 -0
  24. package/src/components/display/sharing/ShareDistribution.vue +2 -0
  25. package/src/components/display/sharing/SharePlayer.vue +2 -0
  26. package/src/components/form/ClassicSearch.vue +2 -0
  27. package/src/components/misc/ErrorMessage.vue +2 -0
  28. package/src/components/misc/Footer.vue +2 -0
  29. package/src/components/misc/LeftMenu.vue +2 -0
  30. package/src/components/misc/Player.vue +2 -0
  31. package/src/components/misc/PlayerButtons.vue +2 -1
  32. package/src/components/misc/PlayerClockAndTimeline.vue +2 -0
  33. package/src/components/misc/PlayerProgressBar.vue +2 -0
  34. package/src/components/misc/Popover.vue +2 -0
  35. package/src/components/misc/Snackbar.vue +2 -0
  36. package/src/components/misc/TopBar.vue +2 -0
  37. package/src/components/misc/modal/NewsletterModal.vue +2 -0
  38. package/src/components/misc/modal/ShareModalPlayer.vue +2 -0
  39. package/src/components/pages/Participant.vue +2 -0
package/README.md CHANGED
@@ -553,4 +553,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
553
553
  * 30.0.54 Multiselect not reload on close
554
554
  * 30.0.55 Align participant img
555
555
  * 30.0.56 Popover title
556
- * 30.0.57 podcastmaker Le soir améliorations
556
+ * 30.0.57 podcastmaker Le soir améliorations
557
+ * 30.0.58 Prefix css dans component par octopus-app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.57",
3
+ "version": "30.0.58",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -162,13 +162,15 @@ export default defineComponent({
162
162
  })
163
163
  </script>
164
164
  <style lang="scss">
165
- .categary-filter-no-filter{
166
- position: absolute;
167
- top: 0;
168
- bottom: 0;
169
- right: 0;
170
- left: 0;
171
- background: white;
172
- z-index: -1;
165
+ .octopus-app{
166
+ .categary-filter-no-filter{
167
+ position: absolute;
168
+ top: 0;
169
+ bottom: 0;
170
+ right: 0;
171
+ left: 0;
172
+ background: white;
173
+ z-index: -1;
174
+ }
173
175
  }
174
176
  </style>
@@ -178,29 +178,31 @@ export default defineComponent({
178
178
  </script>
179
179
  <style lang="scss">
180
180
  @import '../../../sass/_variables.scss';
181
- .category-list-container {
182
- display: inline-flex;
183
- justify-content: flex-start;
184
- overflow: hidden;
185
- flex-grow: 1;
186
- width: 0;
187
- padding: 0 4rem;
188
- }
189
- .category-item {
190
- font-size: 0.6rem;
191
- margin: 0.2rem;
192
- padding: 0.5rem;
193
- display: block;
194
- height: 1.5rem;
195
- border-radius: 1.5rem;
196
- border: 0;
197
- display: flex;
198
- align-items: center;
199
- justify-content: center;
200
- white-space: nowrap;
201
- flex-shrink: 0;
202
- .router-link-active,&:hover {
203
- background: $octopus-secondary-color !important;
181
+ .octopus-app{
182
+ .category-list-container {
183
+ display: inline-flex;
184
+ justify-content: flex-start;
185
+ overflow: hidden;
186
+ flex-grow: 1;
187
+ width: 0;
188
+ padding: 0 4rem;
189
+ }
190
+ .category-item {
191
+ font-size: 0.6rem;
192
+ margin: 0.2rem;
193
+ padding: 0.5rem;
194
+ display: block;
195
+ height: 1.5rem;
196
+ border-radius: 1.5rem;
197
+ border: 0;
198
+ display: flex;
199
+ align-items: center;
200
+ justify-content: center;
201
+ white-space: nowrap;
202
+ flex-shrink: 0;
203
+ .router-link-active,&:hover {
204
+ background: $octopus-secondary-color !important;
205
+ }
204
206
  }
205
207
  }
206
208
  </style>
@@ -320,25 +320,27 @@ export default defineComponent({
320
320
 
321
321
  <style lang="scss">
322
322
  @import '../../../sass/_variables.scss';
323
- .comment-input-container {
324
- textarea::placeholder {
325
- color: $octopus-primary-dark;
326
- }
327
- textarea:focus::placeholder {
328
- color: black;
329
- }
330
- textarea {
331
- outline-width: 0 !important;
332
- border-top: 0;
333
- border-right: 0;
334
- border-left: 0;
335
- border-bottom: 0.1rem solid #ddd !important;
336
- overflow: hidden !important;
337
- box-shadow: unset !important;
338
- background: transparent !important;
339
- height: 50px;
340
- &.short{
341
- max-height: 38px;
323
+ .octopus-app{
324
+ .comment-input-container {
325
+ textarea::placeholder {
326
+ color: $octopus-primary-dark;
327
+ }
328
+ textarea:focus::placeholder {
329
+ color: black;
330
+ }
331
+ textarea {
332
+ outline-width: 0 !important;
333
+ border-top: 0;
334
+ border-right: 0;
335
+ border-left: 0;
336
+ border-bottom: 0.1rem solid #ddd !important;
337
+ overflow: hidden !important;
338
+ box-shadow: unset !important;
339
+ background: transparent !important;
340
+ height: 50px;
341
+ &.short{
342
+ max-height: 38px;
343
+ }
342
344
  }
343
345
  }
344
346
  }
@@ -248,6 +248,7 @@ export default defineComponent({
248
248
 
249
249
  <style lang="scss">
250
250
  @import '../../../sass/_variables.scss';
251
+ .octopus-app{
251
252
  .my-transition-list-comments {
252
253
  position: relative;
253
254
  .comment-list-enter-active,
@@ -284,4 +285,5 @@ export default defineComponent({
284
285
  background-color: $primaryColorReallyTransparent;
285
286
  }
286
287
  }
288
+ }
287
289
  </style>
@@ -75,6 +75,7 @@ export default defineComponent({
75
75
  </script>
76
76
 
77
77
  <style lang="scss">
78
+ .octopus-app{
78
79
  .comment-player-container {
79
80
  position: relative;
80
81
  width: 100%;
@@ -96,4 +97,5 @@ export default defineComponent({
96
97
  position: absolute;
97
98
  }
98
99
  }
100
+ }
99
101
  </style>
@@ -234,6 +234,4 @@ export default defineComponent({
234
234
  },
235
235
  },
236
236
  })
237
- </script>
238
-
239
- <style lang="scss"></style>
237
+ </script>
@@ -330,6 +330,7 @@ export default defineComponent({
330
330
  </script>
331
331
 
332
332
  <style lang="scss">
333
+ .octopus-app{
333
334
  .advanced-search-container {
334
335
  background: #fff;
335
336
  border-radius: 0.8rem;
@@ -360,4 +361,5 @@ export default defineComponent({
360
361
  padding-right: 40px;
361
362
  }
362
363
  }
364
+ }
363
365
  </style>
@@ -143,7 +143,7 @@ export default defineComponent({
143
143
 
144
144
  <style lang="scss">
145
145
  @import '../../../sass/_variables.scss';
146
-
146
+ .octopus-app{
147
147
  .filter-speech-bubble {
148
148
  position: absolute;
149
149
  background: $octopus-primary-dark;
@@ -208,4 +208,5 @@ export default defineComponent({
208
208
  margin-right: 0;
209
209
  }
210
210
  }
211
+ }
211
212
  </style>
@@ -273,6 +273,7 @@ export default defineComponent({
273
273
  </script>
274
274
 
275
275
  <style lang="scss">
276
+ .octopus-app{
276
277
  .live-date-box {
277
278
  width: 200px;
278
279
  display: flex;
@@ -304,5 +305,5 @@ export default defineComponent({
304
305
  width: 0;
305
306
  flex-grow: 1;
306
307
  }
307
-
308
+ }
308
309
  </style>
@@ -238,9 +238,11 @@ export default defineComponent({
238
238
  </script>
239
239
 
240
240
  <style lang="scss">
241
+ .octopus-app{
241
242
  .live-list-category {
242
243
  align-self: flex-start;
243
244
  text-transform: uppercase;
244
245
  font-weight: bold;
245
246
  }
247
+ }
246
248
  </style>
@@ -83,9 +83,11 @@ export default defineComponent({
83
83
  </script>
84
84
 
85
85
  <style lang="scss">
86
+ .octopus-app{
86
87
  .organisation-chooser-light select {
87
88
  -webkit-appearance: none;
88
89
  -moz-appearance: none;
89
90
  appearance: none;
90
91
  }
92
+ }
91
93
  </style>
@@ -134,6 +134,7 @@ export default defineComponent({
134
134
  })
135
135
  </script>
136
136
  <style lang="scss">
137
+ .octopus-app{
137
138
  .participant-item-container {
138
139
  list-style: none;
139
140
  border-radius: 2rem;
@@ -184,4 +185,5 @@ export default defineComponent({
184
185
  margin: 1rem 0 0;
185
186
  }
186
187
  }
188
+ }
187
189
  </style>
@@ -125,6 +125,7 @@ export default defineComponent({
125
125
  </script>
126
126
 
127
127
  <style lang="scss">
128
+ .octopus-app{
128
129
  .participant-list {
129
130
  align-self: stretch;
130
131
  flex-grow: 1;
@@ -147,4 +148,5 @@ export default defineComponent({
147
148
  grid-gap: 0;
148
149
  }
149
150
  }
151
+ }
150
152
  </style>
@@ -173,10 +173,12 @@ export default defineComponent({
173
173
 
174
174
 
175
175
  <style lang="scss">
176
+ .octopus-app{
176
177
  .width-600 {
177
178
  width: 600px;
178
179
  @media (max-width: 600px) {
179
180
  width: 100%;
180
181
  }
181
182
  }
183
+ }
182
184
  </style>
@@ -48,6 +48,7 @@ export default defineComponent({
48
48
  </script>
49
49
 
50
50
  <style lang="scss">
51
+ .octopus-app{
51
52
  .podcast-item-animator {
52
53
  display: flex;
53
54
  align-items: flex-start;
@@ -58,4 +59,5 @@ export default defineComponent({
58
59
  text-transform: capitalize;
59
60
  margin: 00.25rem 0.5rem 0;
60
61
  }
62
+ }
61
63
  </style>
@@ -286,6 +286,7 @@ export default defineComponent({
286
286
 
287
287
 
288
288
  <style lang="scss">
289
+ .octopus-app{
289
290
  .live-image-status {
290
291
  text-align: center;
291
292
  width: 100%;
@@ -363,5 +364,5 @@ export default defineComponent({
363
364
  z-index: 2;
364
365
  }
365
366
  }
366
-
367
+ }
367
368
  </style>
@@ -243,6 +243,7 @@ export default defineComponent({
243
243
  </script>
244
244
 
245
245
  <style lang="scss">
246
+ .octopus-app{
246
247
  .podcast-item-container {
247
248
  border-radius: 0.8rem;
248
249
  list-style: none;
@@ -308,4 +309,5 @@ export default defineComponent({
308
309
  margin: 0.5rem !important;
309
310
  }
310
311
  }
312
+ }
311
313
  </style>
@@ -84,6 +84,7 @@ export default defineComponent({
84
84
  </script>
85
85
 
86
86
  <style lang="scss">
87
+ .octopus-app{
87
88
  .podcast-play-bar {
88
89
  .progress{
89
90
  height: 6px;
@@ -97,4 +98,5 @@ export default defineComponent({
97
98
  position: absolute;
98
99
  }
99
100
  }
101
+ }
100
102
  </style>
@@ -51,6 +51,7 @@ export default defineComponent({
51
51
  </script>
52
52
 
53
53
  <style lang="scss">
54
+ .octopus-app{
54
55
  .tag-list-component{
55
56
  .ouest-france-logo{
56
57
  width: 20px;
@@ -65,4 +66,5 @@ export default defineComponent({
65
66
  border-radius: 0.5rem;
66
67
  }
67
68
  }
69
+ }
68
70
  </style>
@@ -179,6 +179,7 @@ export default defineComponent({
179
179
  </script>
180
180
 
181
181
  <style lang="scss">
182
+ .octopus-app{
182
183
  #rubrique-list-container {
183
184
  display: flex;
184
185
  justify-content: flex-start;
@@ -210,4 +211,5 @@ export default defineComponent({
210
211
  background: #eee !important;
211
212
  }
212
213
  }
214
+ }
213
215
  </style>
@@ -157,9 +157,11 @@ export default defineComponent({
157
157
  </script>
158
158
 
159
159
  <style lang="scss">
160
+ .octopus-app{
160
161
  .input-share-player {
161
162
  border: 1px solid #ddd;
162
163
  border-radius: 50px;
163
164
  width: 60px;
164
165
  }
166
+ }
165
167
  </style>
@@ -156,6 +156,7 @@ export default defineComponent({
156
156
  </script>
157
157
 
158
158
  <style lang="scss">
159
+ .octopus-app{
159
160
  .sharing-distribution-container {
160
161
  border: 0.05rem solid #dee2e6;
161
162
  border-radius: 0.3rem;
@@ -193,4 +194,5 @@ export default defineComponent({
193
194
  margin: 0.2rem 0.5rem;
194
195
  }
195
196
  }
197
+ }
196
198
  </style>
@@ -364,6 +364,7 @@ export default defineComponent({
364
364
 
365
365
  <style lang="scss">
366
366
  @import '../../../sass/_variables.scss';
367
+ .octopus-app{
367
368
  .sticker {
368
369
  align-self: center;
369
370
  background: $octopus-primary-dark;
@@ -385,4 +386,5 @@ export default defineComponent({
385
386
  .max-iframe {
386
387
  max-width: 300px;
387
388
  }
389
+ }
388
390
  </style>
@@ -61,6 +61,7 @@ export default defineComponent({
61
61
  });
62
62
  </script>
63
63
  <style lang="scss">
64
+ .octopus-app{
64
65
  .champs-searchPage{
65
66
  input {
66
67
  border: 2px solid #dee2e6;
@@ -81,4 +82,5 @@ export default defineComponent({
81
82
  margin: 1rem;
82
83
  }
83
84
  }
85
+ }
84
86
  </style>
@@ -28,10 +28,12 @@ export default defineComponent({
28
28
  </script>
29
29
 
30
30
  <style lang="scss">
31
+ .octopus-app{
31
32
  .bg-error-message {
32
33
  background-color: #ffd84a9c;
33
34
  }
34
35
  .alert-text{
35
36
  color: darkred;
36
37
  }
38
+ }
37
39
  </style>
@@ -201,6 +201,7 @@ export default defineComponent({
201
201
  </script>
202
202
 
203
203
  <style lang="scss">
204
+ .octopus-app{
204
205
  #footer{
205
206
  font-size: 0.7rem;
206
207
  .acpm_image {
@@ -221,4 +222,5 @@ export default defineComponent({
221
222
  }
222
223
  }
223
224
  }
225
+ }
224
226
  </style>
@@ -195,6 +195,7 @@ export default defineComponent({
195
195
  </script>
196
196
 
197
197
  <style lang="scss">
198
+ .octopus-app{
198
199
  .left-menu-container {
199
200
  position: fixed;
200
201
  top: 3rem;
@@ -225,4 +226,5 @@ export default defineComponent({
225
226
  width: 94%;
226
227
  }
227
228
  }
229
+ }
228
230
  </style>
@@ -485,6 +485,7 @@ reject('There is an error while reading media content');
485
485
  </script>
486
486
 
487
487
  <style lang="scss">
488
+ .octopus-app{
488
489
  .player-container {
489
490
  position: fixed;
490
491
  overflow: hidden;
@@ -509,4 +510,5 @@ reject('There is an error while reading media content');
509
510
  }
510
511
  }
511
512
  }
513
+ }
512
514
  </style>
@@ -115,6 +115,7 @@ export default defineComponent({
115
115
  </script>
116
116
 
117
117
  <style lang="scss">
118
+ .octopus-app{
118
119
  .player-image {
119
120
  border-radius: 0.2rem;
120
121
  height: 2.4rem;
@@ -138,5 +139,5 @@ export default defineComponent({
138
139
  flex-shrink: 0;
139
140
  cursor: pointer;
140
141
  }
141
-
142
+ }
142
143
  </style>
@@ -61,6 +61,7 @@ export default defineComponent({
61
61
  </script>
62
62
  <style lang="scss">
63
63
  @import '../../sass/_variables.scss';
64
+ .octopus-app{
64
65
  .player-container {
65
66
  .timeline-button {
66
67
  background: black;
@@ -82,4 +83,5 @@ export default defineComponent({
82
83
  }
83
84
  }
84
85
  }
86
+ }
85
87
  </style>
@@ -146,6 +146,7 @@ export default defineComponent({
146
146
  </script>
147
147
 
148
148
  <style lang="scss">
149
+ .octopus-app{
149
150
  .player-grow-content {
150
151
  display: flex;
151
152
  flex-direction: column;
@@ -165,4 +166,5 @@ export default defineComponent({
165
166
  position: absolute;
166
167
  }
167
168
  }
169
+ }
168
170
  </style>
@@ -106,6 +106,7 @@ export default defineComponent({
106
106
  })
107
107
  </script>
108
108
  <style lang="scss">
109
+ .octopus-app{
109
110
  .popover{
110
111
  max-height: 80vh;
111
112
  overflow: auto;
@@ -113,4 +114,5 @@ export default defineComponent({
113
114
  width: 100px;
114
115
  }
115
116
  }
117
+ }
116
118
  </style>
@@ -160,7 +160,9 @@ export default defineComponent({
160
160
  })
161
161
  </script>
162
162
  <style lang="scss">
163
+ .octopus-app{
163
164
  .snack-bar-wrap{
164
165
  bottom: 0px;
165
166
  }
167
+ }
166
168
  </style>
@@ -257,6 +257,7 @@ export default defineComponent({
257
257
  </script>
258
258
 
259
259
  <style lang="scss">
260
+ .octopus-app{
260
261
  .top-bar-container {
261
262
  position: sticky;
262
263
  top: 0;
@@ -336,4 +337,5 @@ export default defineComponent({
336
337
  }
337
338
  }
338
339
  }
340
+ }
339
341
  </style>
@@ -314,6 +314,7 @@ export default defineComponent({
314
314
  </script>
315
315
 
316
316
  <style lang="scss">
317
+ .octopus-app{
317
318
  #newsletter-modal {
318
319
  textarea {
319
320
  border: 2px solid #eee;
@@ -329,4 +330,5 @@ export default defineComponent({
329
330
  max-width: 60%;
330
331
  }
331
332
  }
333
+ }
332
334
  </style>
@@ -139,6 +139,7 @@ export default defineComponent({
139
139
  </script>
140
140
 
141
141
  <style lang="scss">
142
+ .octopus-app{
142
143
  .share-modal-border {
143
144
  border-right: solid 1px rgb(222, 226, 230);
144
145
  border-left: solid 1px rgb(222, 226, 230);
@@ -178,4 +179,5 @@ export default defineComponent({
178
179
  align-self: center;
179
180
  }
180
181
  }
182
+ }
181
183
  </style>
@@ -194,10 +194,12 @@ export default defineComponent({
194
194
  </script>
195
195
 
196
196
  <style lang="scss">
197
+ .octopus-app{
197
198
  @media (min-width: 950px) {
198
199
  .participant-desc {
199
200
  max-width: 50%;
200
201
  line-height: 1.5em;
201
202
  }
202
203
  }
204
+ }
203
205
  </style>