@saooti/octopus-sdk 40.2.3 → 40.2.4

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": "40.2.3",
3
+ "version": "40.2.4",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -175,5 +175,9 @@ export default defineComponent({
175
175
  margin-right: -18px;
176
176
  animation: fadein 1s;
177
177
  }
178
+ @keyframes fadein {
179
+ from { opacity: 0; }
180
+ to { opacity: 1; }
181
+ }
178
182
  }
179
183
  </style>
@@ -213,6 +213,7 @@ export default defineComponent({
213
213
  display: flex;
214
214
  flex-direction: column;
215
215
  flex-grow: 1;
216
+ width: 100%;
216
217
  }
217
218
  .header-additional-content, .header-opacity{
218
219
  background: oklch(0 0 0 / 0.5);
@@ -29,7 +29,7 @@
29
29
  :class="platformEducation ? 'education-logo' : ''"
30
30
  />
31
31
  </router-link>
32
- <h1 v-if="titleIsDisplayed" class="text-fadein text-truncate m-0 align-self-center">
32
+ <h1 v-if="titleIsDisplayed" class="text-truncate m-0 align-self-center">
33
33
  {{ titleDisplay }}
34
34
  </h1>
35
35
  <div
@@ -73,7 +73,6 @@
73
73
  <nav role="navigation" :aria-label="$t('Site menu')">
74
74
  <ul class="d-flex">
75
75
  <template v-for="link in routerLinkArray" :key="link.routeName">
76
- <transition name="fade">
77
76
  <li v-if="link.condition" class="li-style-none">
78
77
  <router-link
79
78
  v-show="!isPhone"
@@ -86,7 +85,6 @@
86
85
  {{ link.title }}
87
86
  </router-link>
88
87
  </li>
89
- </transition>
90
88
  </template>
91
89
  </ul>
92
90
  </nav>
@@ -342,18 +340,6 @@ export default defineComponent({
342
340
  max-width: 30px !important;
343
341
  }
344
342
  }
345
- .text-fadein{
346
- animation: fadein 0.3s ease-in-out;
347
- }
348
- .fade-enter-active, .fade-leave-active {
349
- transition: opacity 0.3s;
350
- @starting-style {
351
- opacity: 0;
352
- }
353
- }
354
- .fade-enter, .fade-leave-to {
355
- opacity: 0;
356
- }
357
343
  }
358
344
  }
359
345
  </style>
@@ -84,8 +84,4 @@
84
84
  }
85
85
 
86
86
  }
87
- @keyframes fadein {
88
- from { opacity: 0; }
89
- to { opacity: 1; }
90
- }
91
87
  }