@saooti/octopus-sdk 39.0.32 → 39.0.34
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/form.scss +5 -1
- package/src/assets/general.scss +3 -0
- package/src/components/display/podcasts/PodcastSwiperList.vue +1 -3
- package/src/components/form/ClassicInputText.vue +4 -1
- package/src/components/form/ClassicMultiselect.vue +1 -0
- package/src/components/form/ClassicSelect.vue +2 -2
- package/src/components/misc/ClassicAccordion.vue +11 -8
- package/src/components/misc/TopBarMainContent.vue +4 -0
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
package/src/assets/general.scss
CHANGED
|
@@ -90,7 +90,6 @@ export default defineComponent({
|
|
|
90
90
|
},
|
|
91
91
|
watch: {
|
|
92
92
|
watchVariable(): void {
|
|
93
|
-
this.reset();
|
|
94
93
|
this.fetchNext();
|
|
95
94
|
},
|
|
96
95
|
},
|
|
@@ -138,6 +137,7 @@ export default defineComponent({
|
|
|
138
137
|
},
|
|
139
138
|
true,
|
|
140
139
|
);
|
|
140
|
+
this.reset();
|
|
141
141
|
this.allPodcasts = this.allPodcasts.concat(
|
|
142
142
|
data.result.filter((pod: Podcast | null) => null !== pod),
|
|
143
143
|
);
|
|
@@ -146,13 +146,11 @@ export default defineComponent({
|
|
|
146
146
|
sortPopular(): void {
|
|
147
147
|
if (this.popularSort) return;
|
|
148
148
|
this.popularSort = true;
|
|
149
|
-
this.reset();
|
|
150
149
|
this.fetchNext();
|
|
151
150
|
},
|
|
152
151
|
sortChrono(): void {
|
|
153
152
|
if (!this.popularSort) return;
|
|
154
153
|
this.popularSort = false;
|
|
155
|
-
this.reset();
|
|
156
154
|
this.fetchNext();
|
|
157
155
|
},
|
|
158
156
|
reset(): void {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="my-
|
|
3
|
+
class="my-4"
|
|
4
4
|
:class="[
|
|
5
5
|
displayAccordion ? 'octopus-accordion' : '',
|
|
6
6
|
isOpen ? 'octopus-accordion-open' : '',
|
|
@@ -67,16 +67,22 @@ export default defineComponent({
|
|
|
67
67
|
background: white;
|
|
68
68
|
min-height: 50px;
|
|
69
69
|
color: $octopus-primary-color;
|
|
70
|
+
font-size:0.9rem;
|
|
70
71
|
border: 1px solid transparent;
|
|
72
|
+
border-bottom-color: #b8b8b8;
|
|
73
|
+
font-weight: bold;
|
|
71
74
|
&:hover {
|
|
72
|
-
border
|
|
75
|
+
border-bottom-color: #535353;
|
|
73
76
|
}
|
|
74
77
|
}
|
|
75
78
|
&.octopus-accordion-open {
|
|
76
|
-
border:
|
|
79
|
+
border-radius: $octopus-borderradius;
|
|
80
|
+
border: 1px solid #e0e0e0;
|
|
77
81
|
> button {
|
|
78
|
-
|
|
79
|
-
|
|
82
|
+
border-radius: $octopus-borderradius 0 0;
|
|
83
|
+
background: #e9e9e9;
|
|
84
|
+
border-color: transparent;
|
|
85
|
+
color: black;
|
|
80
86
|
}
|
|
81
87
|
}
|
|
82
88
|
.img-accordion {
|
|
@@ -88,8 +94,5 @@ export default defineComponent({
|
|
|
88
94
|
justify-content: center;
|
|
89
95
|
align-items: center;
|
|
90
96
|
}
|
|
91
|
-
.body {
|
|
92
|
-
border-top: 1px solid $octopus-primary-color;
|
|
93
|
-
}
|
|
94
97
|
}
|
|
95
98
|
</style>
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
v-else
|
|
24
24
|
:src="proxyImageUrl(imgUrl, '', '80')"
|
|
25
25
|
:alt="$t('Visual', { name: filterName })"
|
|
26
|
+
class="client-logo"
|
|
26
27
|
:class="isEducation ? 'educationLogo' : ''"
|
|
27
28
|
/>
|
|
28
29
|
</router-link>
|
|
@@ -285,6 +286,9 @@ export default defineComponent({
|
|
|
285
286
|
text-underline-offset: 8px;
|
|
286
287
|
}
|
|
287
288
|
}
|
|
289
|
+
.client-logo{
|
|
290
|
+
border-radius: $octopus-borderradius;
|
|
291
|
+
}
|
|
288
292
|
.top-bar-logo img {
|
|
289
293
|
max-width: 140px !important;
|
|
290
294
|
max-height: 4rem;
|