classcard-ui 0.2.708 → 0.2.709
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 +56 -54
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +56 -54
- 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/CSelect/CSelect.vue +4 -2
package/package.json
CHANGED
|
@@ -118,8 +118,10 @@
|
|
|
118
118
|
role="option"
|
|
119
119
|
:ref="`option-${String(index)}`"
|
|
120
120
|
@mousedown="handleSelect($event, option)"
|
|
121
|
-
class="
|
|
122
|
-
:class="
|
|
121
|
+
class="cursor-pointer select-none py-2 pl-3 pr-9 text-gray-900 hover:bg-indigo-700 hover:text-white"
|
|
122
|
+
:class="`${
|
|
123
|
+
option.isDisabled ? 'pointer-events-none opacity-50' : ''
|
|
124
|
+
} ${isDropDownRelative ? 'relative' : ''}`"
|
|
123
125
|
>
|
|
124
126
|
<span class="flex items-center">
|
|
125
127
|
<div v-if="option.showImage">
|