srcdev-nuxt-components 2.5.14 → 2.5.15

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.
@@ -14,7 +14,7 @@
14
14
  <div v-show="item.stylist !== ''" class="author" :class="item.textBrightness">{{ item.stylist }}</div>
15
15
  <div v-show="item.title !== ''" class="title" :class="item.textBrightness">{{ item.title }}</div>
16
16
  <div v-show="item.category !== ''" class="topic" :class="item.textBrightness">{{ item.category }}</div>
17
- <div v-show="item.description !== ''" class="des" :class="item.textBrightness">{{ item.description }}</div>
17
+ <div v-show="item.description !== ''" class="description" :class="item.textBrightness">{{ item.description }}</div>
18
18
  <div class="buttons" :class="item.textBrightness">
19
19
  <button>SEE MORE</button>
20
20
  </div>
@@ -345,7 +345,7 @@ onBeforeUnmount(() => {
345
345
  .author,
346
346
  .title,
347
347
  .topic,
348
- .des,
348
+ .description,
349
349
  .buttons {
350
350
  transform: translateY(50px);
351
351
  filter: blur(20px);
@@ -359,7 +359,7 @@ onBeforeUnmount(() => {
359
359
  .topic {
360
360
  animation-delay: 1.4s !important;
361
361
  }
362
- .des {
362
+ .description {
363
363
  animation-delay: 1.6s !important;
364
364
  }
365
365
  .buttons {
@@ -639,7 +639,7 @@ onBeforeUnmount(() => {
639
639
  .author,
640
640
  .title,
641
641
  .topic,
642
- .des,
642
+ .description,
643
643
  .buttons {
644
644
  animation: contentOut 1.5s linear 1 forwards !important;
645
645
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "2.5.14",
4
+ "version": "2.5.15",
5
5
  "main": "nuxt.config.ts",
6
6
  "scripts": {
7
7
  "clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",