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/dist/classcard-ui.common.js +54 -66
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.css +1 -1
- package/dist/classcard-ui.umd.js +54 -66
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CMultiselect/CMultiselect.vue +5 -17
package/package.json
CHANGED
|
@@ -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
|
-
|
|
333
|
+
.extra:hover {
|
|
334
|
+
color: white;
|
|
347
335
|
}
|
|
348
336
|
.vs__selected-options {
|
|
349
337
|
@apply pl-0;
|