@saooti/octopus-sdk 41.0.7-SNAPSHOT → 41.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.
Files changed (58) hide show
  1. package/index.ts +2 -1
  2. package/package.json +3 -1
  3. package/plateform.conf +1 -1
  4. package/src/App.vue +3 -7
  5. package/src/api/classicApi.ts +1 -1
  6. package/src/components/composable/player/usePlayerLive.ts +3 -3
  7. package/src/components/composable/player/usePlayerVast.ts +7 -7
  8. package/src/components/composable/route/useAdvancedParamInit.ts +1 -1
  9. package/src/components/composable/route/useRouteUpdateParams.ts +4 -4
  10. package/src/components/composable/route/useSimplePageParam.ts +15 -8
  11. package/src/components/display/categories/CategoryChooser.vue +6 -0
  12. package/src/components/display/comments/CommentList.vue +1 -1
  13. package/src/components/display/emission/EmissionList.vue +5 -8
  14. package/src/components/display/filter/AdvancedSearch.vue +0 -3
  15. package/src/components/display/list/ListPaginate.vue +4 -12
  16. package/src/components/display/live/LiveItem.vue +2 -3
  17. package/src/components/display/participant/ParticipantList.vue +6 -9
  18. package/src/components/display/playlist/PlaylistList.vue +5 -8
  19. package/src/components/display/playlist/PodcastList.vue +16 -7
  20. package/src/components/display/podcasts/PodcastFilterList.vue +19 -8
  21. package/src/components/display/podcasts/PodcastList.vue +8 -9
  22. package/src/components/display/podcasts/PodcastPlayButton.vue +4 -1
  23. package/src/components/display/sharing/SharePlayerTypes.vue +1 -1
  24. package/src/components/display/sharing/SubscribeButtons.vue +4 -2
  25. package/src/components/form/ClassicInputText.vue +3 -0
  26. package/src/components/form/ClassicMultiselect.vue +36 -8
  27. package/src/components/misc/ClassicAccordion.vue +4 -4
  28. package/src/components/misc/ClassicPopover.vue +1 -1
  29. package/src/components/misc/ClassicSpinner.vue +1 -1
  30. package/src/components/misc/FooterSection.vue +0 -16
  31. package/src/components/misc/HomeDropdown.vue +3 -110
  32. package/src/components/misc/MobileMenu.vue +59 -64
  33. package/src/components/misc/TopBar.vue +4 -11
  34. package/src/components/misc/TopBarMainContent.vue +1 -2
  35. package/src/components/misc/UserButtonContent.vue +159 -0
  36. package/src/components/misc/player/elements/PlayerImage.vue +0 -1
  37. package/src/components/misc/player/video/PlayerVideo.vue +2 -2
  38. package/src/components/pages/EmissionPage.vue +14 -0
  39. package/src/components/pages/PageLogout.vue +1 -6
  40. package/src/components/pages/ParticipantPage.vue +14 -0
  41. package/src/components/pages/PlaylistPage.vue +17 -4
  42. package/src/components/pages/PodcastPage.vue +1 -1
  43. package/src/components/pages/VideoPage.vue +5 -2
  44. package/src/helper/loadScript.ts +4 -4
  45. package/src/locale/de.ts +2 -2
  46. package/src/locale/en.ts +2 -2
  47. package/src/locale/es.ts +2 -2
  48. package/src/locale/fr.ts +2 -2
  49. package/src/locale/it.ts +2 -2
  50. package/src/locale/sl.ts +2 -2
  51. package/src/router/router.ts +17 -4
  52. package/src/stores/AuthStore.ts +12 -12
  53. package/src/stores/FilterStore.ts +1 -1
  54. package/src/stores/PlayerStore.ts +5 -0
  55. package/src/stores/VastStore.ts +2 -2
  56. package/src/stores/class/conference/conference.ts +2 -0
  57. package/src/style/_variables.scss +3 -0
  58. package/src/style/general.scss +12 -0
@@ -8,6 +8,7 @@ export interface Conference {
8
8
  deletionAttempts?: number;
9
9
  directCode?: string;
10
10
  externalRtmpUrl?: ExternalRtmpUrl;
11
+ hlsIdentifier: string;
11
12
  hostname?: string;
12
13
  jingleDuration?: number;
13
14
  jingleFilePath?: string;
@@ -57,6 +58,7 @@ export function getEmptyConference(): Conference {
57
58
  export interface ConferencePublicInfo {
58
59
  status: string;
59
60
  videoProfile: string;
61
+ hlsIdentifier: string;
60
62
  }
61
63
 
62
64
  export interface ExternalRtmpUrl {
@@ -27,6 +27,9 @@
27
27
  --octopus-background-transparent: oklch(from var(--octopus-background) l c h / 40%);
28
28
  --octopus-tertiary-really-transparent: oklch(from var(--octopus-tertiary) l c h / 30%);
29
29
 
30
+ //Gradient
31
+ --octopus-gradient : linear-gradient(90deg,var(--octopus-primary) 0%, var(--octopus-tertiary) 100%);
32
+
30
33
  // Size
31
34
  --octopus-image-size: 12.5rem;
32
35
  --octopus-podcast-size: 13.5rem;
@@ -114,6 +114,11 @@ main, #app{
114
114
  background: var(--octopus-complementary-color) !important;
115
115
  }
116
116
 
117
+ .bg-gradient{
118
+ background: var(--octopus-primary);
119
+ background:var(--octopus-gradient);
120
+ }
121
+
117
122
  .text-blue-octopus{
118
123
  color: var(--octopus-tertiary) !important
119
124
  }
@@ -170,6 +175,13 @@ main, #app{
170
175
  }
171
176
  }
172
177
 
178
+ .show-small-screen{
179
+ display: none !important;
180
+ @media (width <= 500px) {
181
+ display: flex !important;
182
+ }
183
+ }
184
+
173
185
  .show-phone{
174
186
  display: none;
175
187