classcard-ui 0.2.746 → 0.2.748

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": "classcard-ui",
3
- "version": "0.2.746",
3
+ "version": "0.2.748",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -82,7 +82,7 @@
82
82
 
83
83
  <template v-if="showOptionImage" v-slot:option="option">
84
84
  <div
85
- :class="`flex w-full ${
85
+ :class="`flex h-full w-full hover:text-white ${
86
86
  option.description ? 'items-start' : 'items-center'
87
87
  }`"
88
88
  >
@@ -102,20 +102,8 @@
102
102
  :rounded="true"
103
103
  class="mr-2"
104
104
  ></c-avatar>
105
- <div class="w-full">
106
- <p>
107
- {{ option[optionLabel] }}
108
- {{ option.details ? option.details : "" }}
109
- </p>
110
- <!-- <div class="flex items-center">
111
- <p>{{ option[optionLabel] }}</p>
112
- <p
113
- class="ml-2 text-gray-500 hover:text-white"
114
- v-if="option.details"
115
- >
116
- {{ option.details }}
117
- </p>
118
- </div> -->
105
+ <div class="w-full hover:text-white">
106
+ <p>{{ option[optionLabel] }}</p>
119
107
  <p class="text-xs" v-if="option.description">
120
108
  {{ option.description }}
121
109
  </p>
@@ -342,8 +330,8 @@ export default {
342
330
  @apply m-0 mr-1 border-none py-0 pl-1.5 pr-1.5;
343
331
  margin-bottom: 2px;
344
332
  }
345
- .extra {
346
- @apply hover:text-white;
333
+ .extra:hover {
334
+ color: white;
347
335
  }
348
336
  .vs__selected-options {
349
337
  @apply pl-0;