@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "39.0.32",
3
+ "version": "39.0.34",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -12,7 +12,11 @@
12
12
  padding: 0.5rem 0 0;
13
13
  color: black;
14
14
  font-weight: bold;
15
- margin-bottom: 0.2rem;
15
+ font-size: 0.9rem;
16
+ margin-bottom: 0.5rem;
17
+ }
18
+ .form-margin{
19
+ margin-bottom: 1rem;
16
20
  }
17
21
  .counter-align-right{
18
22
  flex-grow: 1;
@@ -231,6 +231,9 @@ body{
231
231
  .word-break-word{
232
232
  word-break: break-word;
233
233
  }
234
+ .border{
235
+ border-radius: $octopus-borderradius;
236
+ }
234
237
 
235
238
  .html-wysiwyg-content{
236
239
  h3,h4{
@@ -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,5 +1,8 @@
1
1
  <template>
2
- <div class="d-flex flex-column classic-input-text">
2
+ <div
3
+ class="d-flex flex-column classic-input-text"
4
+ :class="{'form-margin':displayLabel}"
5
+ >
3
6
  <div class="d-flex">
4
7
  <label
5
8
  class="form-label"
@@ -3,6 +3,7 @@
3
3
  :class="{
4
4
  'multiselect-in-modal': inModal,
5
5
  'multiselect-no-deselect': noDeselect,
6
+ 'form-margin':displayLabel
6
7
  }"
7
8
  :style="{ width: width }"
8
9
  >
@@ -1,8 +1,8 @@
1
1
  <template>
2
- <div class="classic-select">
2
+ <div class="classic-select" :class="{'form-margin':displayLabel}">
3
3
  <label
4
4
  :for="idSelect"
5
- class="form-label mt-2"
5
+ class="form-label"
6
6
  :class="displayLabel ? '' : 'd-none'"
7
7
  >{{ label }}</label
8
8
  >
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- class="my-2"
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: 1px solid $octopus-primary-color;
75
+ border-bottom-color: #535353;
73
76
  }
74
77
  }
75
78
  &.octopus-accordion-open {
76
- border: 1px solid $octopus-primary-color;
79
+ border-radius: $octopus-borderradius;
80
+ border: 1px solid #e0e0e0;
77
81
  > button {
78
- background: $octopus-primary-color;
79
- color: white;
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;