@saooti/octopus-sdk 36.0.27 → 36.0.28
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/general.scss +4 -0
- package/src/assets/share.scss +2 -1
- package/src/components/display/categories/CategoryFilter.vue +1 -1
- package/src/components/display/list/SwiperList.vue +3 -3
- package/src/components/display/live/RadioImage.vue +2 -2
- package/src/components/display/participant/ParticipantItem.vue +1 -0
- package/src/components/display/podcasts/PodcastImage.vue +2 -2
- package/src/components/display/podcasts/PodcastItem.vue +4 -4
- package/src/components/form/ClassicMultiselect.vue +2 -0
- package/src/components/form/ClassicSearch.vue +1 -0
- package/src/sass/_variables.scss +2 -1
- package/src/stores/ParamSdkStore.ts +1 -1
package/package.json
CHANGED
package/src/assets/general.scss
CHANGED
package/src/assets/share.scss
CHANGED
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
margin: 1em 0 0;
|
|
78
78
|
padding: 0;
|
|
79
79
|
display: grid; /* 1 */
|
|
80
|
-
grid-template-columns: repeat(auto-fill, $octopus-item-size); /* 2 */
|
|
80
|
+
grid-template-columns: repeat(auto-fill, $octopus-item-podcast-size); /* 2 */
|
|
81
81
|
grid-gap: 1rem; /* 3 */
|
|
82
82
|
justify-content: space-between; /* 4 */
|
|
83
83
|
@media (max-width: 960px) {
|
|
@@ -280,6 +280,7 @@
|
|
|
280
280
|
align-items: center;
|
|
281
281
|
justify-content: center;
|
|
282
282
|
z-index: 2;
|
|
283
|
+
width: fit-content;
|
|
283
284
|
|
|
284
285
|
&:hover {
|
|
285
286
|
background: #00000030;
|
|
@@ -50,7 +50,7 @@ export default defineComponent({
|
|
|
50
50
|
if (window.innerWidth <= 450) {
|
|
51
51
|
return 12.5;
|
|
52
52
|
}
|
|
53
|
-
return state.generalParameters.podcastItem ? state.generalParameters.podcastItem:
|
|
53
|
+
return state.generalParameters.podcastItem ? state.generalParameters.podcastItem: 13.5;
|
|
54
54
|
},
|
|
55
55
|
},
|
|
56
56
|
|
|
@@ -93,7 +93,7 @@ export default defineComponent({
|
|
|
93
93
|
.swiper-button-prev{
|
|
94
94
|
left: 0;
|
|
95
95
|
}
|
|
96
|
-
.swiper-slide-active{
|
|
96
|
+
/* .swiper-slide-active{
|
|
97
97
|
padding-left:27px;
|
|
98
98
|
@media (max-width: 550px) {
|
|
99
99
|
padding-left:0;
|
|
@@ -101,7 +101,7 @@ export default defineComponent({
|
|
|
101
101
|
}
|
|
102
102
|
.swiper-slide-next{
|
|
103
103
|
padding-right:27px;
|
|
104
|
-
}
|
|
104
|
+
} */
|
|
105
105
|
.swiper-button-lock{
|
|
106
106
|
display: flex;
|
|
107
107
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="img-box position-relative flex-shrink-0 mb-3 me-3 float-start">
|
|
2
|
+
<div class="img-box img-box-podcast position-relative flex-shrink-0 mb-3 me-3 float-start">
|
|
3
3
|
<img
|
|
4
4
|
v-lazy="radio.imageUrl ?proxyImageUrl(radio.imageUrl, '330') :'/img/emptyradio.webp'"
|
|
5
5
|
width="330"
|
|
6
6
|
height="330"
|
|
7
|
-
class="img-box"
|
|
7
|
+
class="img-box img-box-podcast"
|
|
8
8
|
:title="$t('Canal name image',{name:radio.name})"
|
|
9
9
|
:alt="$t('Canal name image',{name:radio.name})"
|
|
10
10
|
>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
v-if="podcast"
|
|
4
|
-
class="img-box mb-3 flex-column justify-content-start align-items-start position-relative flex-shrink-0 float-start"
|
|
4
|
+
class="img-box img-box-podcast mb-3 flex-column justify-content-start align-items-start position-relative flex-shrink-0 float-start"
|
|
5
5
|
>
|
|
6
6
|
<img
|
|
7
7
|
v-lazy="proxyImageUrl(podcast.imageUrl,'330')"
|
|
8
8
|
width="330"
|
|
9
9
|
height="330"
|
|
10
|
-
class="img-box"
|
|
10
|
+
class="img-box img-box-podcast"
|
|
11
11
|
:alt="$t('Episode name image', {name:podcast.title})"
|
|
12
12
|
>
|
|
13
13
|
<div
|
|
@@ -128,8 +128,8 @@ export default defineComponent({
|
|
|
128
128
|
border-radius: $octopus-borderradius;
|
|
129
129
|
list-style: none;
|
|
130
130
|
position: relative;
|
|
131
|
-
width: $octopus-item-size;
|
|
132
|
-
height:
|
|
131
|
+
width: $octopus-item-podcast-size;
|
|
132
|
+
height: 20.5rem;
|
|
133
133
|
overflow: hidden;
|
|
134
134
|
display: flex;
|
|
135
135
|
flex-direction: column;
|
|
@@ -142,12 +142,12 @@ export default defineComponent({
|
|
|
142
142
|
padding: 1rem;
|
|
143
143
|
color: #333;
|
|
144
144
|
background-color: rgba(255, 255, 255, 0.92);
|
|
145
|
-
height: $octopus-item-size;
|
|
145
|
+
height: $octopus-item-podcast-size;
|
|
146
146
|
overflow: hidden;
|
|
147
147
|
text-overflow: ellipsis;
|
|
148
148
|
font-size: 0.9em;
|
|
149
149
|
position: absolute;
|
|
150
|
-
width: $octopus-item-size;
|
|
150
|
+
width: $octopus-item-podcast-size;
|
|
151
151
|
word-break: break-word;
|
|
152
152
|
&.after-podcast-description:after {
|
|
153
153
|
content: '...';
|
|
@@ -167,6 +167,8 @@ import vSelect from "vue-select";
|
|
|
167
167
|
--vs-dropdown-option--active-bg: #ddd;
|
|
168
168
|
--vs-dropdown-option--active-color: black;
|
|
169
169
|
--vs-font-size:0.8rem;
|
|
170
|
+
--vs-border-width: 2px;
|
|
171
|
+
--vs-border-color: #dee2e6;
|
|
170
172
|
}
|
|
171
173
|
.octopus-app{
|
|
172
174
|
.vs__dropdown-option{
|
package/src/sass/_variables.scss
CHANGED
|
@@ -3,7 +3,8 @@ $font-family-sans-serif: sans-serif;
|
|
|
3
3
|
$font-size-base: 0.9rem;
|
|
4
4
|
$line-height-base: 1.6;
|
|
5
5
|
|
|
6
|
-
$octopus-item-size:
|
|
6
|
+
$octopus-item-size: 12.5rem !default;
|
|
7
|
+
$octopus-item-podcast-size: 13.5rem !default;
|
|
7
8
|
$octopus-mobile-item-size: 12.5rem !default;
|
|
8
9
|
$octopus-borderradius: 0.2rem !default;
|
|
9
10
|
|