@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.
- package/index.ts +2 -1
- package/package.json +3 -1
- package/plateform.conf +1 -1
- package/src/App.vue +3 -7
- package/src/api/classicApi.ts +1 -1
- package/src/components/composable/player/usePlayerLive.ts +3 -3
- package/src/components/composable/player/usePlayerVast.ts +7 -7
- package/src/components/composable/route/useAdvancedParamInit.ts +1 -1
- package/src/components/composable/route/useRouteUpdateParams.ts +4 -4
- package/src/components/composable/route/useSimplePageParam.ts +15 -8
- package/src/components/display/categories/CategoryChooser.vue +6 -0
- package/src/components/display/comments/CommentList.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +5 -8
- package/src/components/display/filter/AdvancedSearch.vue +0 -3
- package/src/components/display/list/ListPaginate.vue +4 -12
- package/src/components/display/live/LiveItem.vue +2 -3
- package/src/components/display/participant/ParticipantList.vue +6 -9
- package/src/components/display/playlist/PlaylistList.vue +5 -8
- package/src/components/display/playlist/PodcastList.vue +16 -7
- package/src/components/display/podcasts/PodcastFilterList.vue +19 -8
- package/src/components/display/podcasts/PodcastList.vue +8 -9
- package/src/components/display/podcasts/PodcastPlayButton.vue +4 -1
- package/src/components/display/sharing/SharePlayerTypes.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +4 -2
- package/src/components/form/ClassicInputText.vue +3 -0
- package/src/components/form/ClassicMultiselect.vue +36 -8
- package/src/components/misc/ClassicAccordion.vue +4 -4
- package/src/components/misc/ClassicPopover.vue +1 -1
- package/src/components/misc/ClassicSpinner.vue +1 -1
- package/src/components/misc/FooterSection.vue +0 -16
- package/src/components/misc/HomeDropdown.vue +3 -110
- package/src/components/misc/MobileMenu.vue +59 -64
- package/src/components/misc/TopBar.vue +4 -11
- package/src/components/misc/TopBarMainContent.vue +1 -2
- package/src/components/misc/UserButtonContent.vue +159 -0
- package/src/components/misc/player/elements/PlayerImage.vue +0 -1
- package/src/components/misc/player/video/PlayerVideo.vue +2 -2
- package/src/components/pages/EmissionPage.vue +14 -0
- package/src/components/pages/PageLogout.vue +1 -6
- package/src/components/pages/ParticipantPage.vue +14 -0
- package/src/components/pages/PlaylistPage.vue +17 -4
- package/src/components/pages/PodcastPage.vue +1 -1
- package/src/components/pages/VideoPage.vue +5 -2
- package/src/helper/loadScript.ts +4 -4
- package/src/locale/de.ts +2 -2
- package/src/locale/en.ts +2 -2
- package/src/locale/es.ts +2 -2
- package/src/locale/fr.ts +2 -2
- package/src/locale/it.ts +2 -2
- package/src/locale/sl.ts +2 -2
- package/src/router/router.ts +17 -4
- package/src/stores/AuthStore.ts +12 -12
- package/src/stores/FilterStore.ts +1 -1
- package/src/stores/PlayerStore.ts +5 -0
- package/src/stores/VastStore.ts +2 -2
- package/src/stores/class/conference/conference.ts +2 -0
- package/src/style/_variables.scss +3 -0
- 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;
|
package/src/style/general.scss
CHANGED
|
@@ -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
|
|