classcard-ui 0.2.310 → 0.2.314
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 +67 -63
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +67 -63
- 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/CButtonGroup/CButtonGroup.vue +2 -1
- package/src/components/CDatepicker/CDatepicker.vue +1 -0
- package/src/components/CSelect/CSelect.vue +1 -0
package/package.json
CHANGED
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
class="relative inline-flex items-center px-2 py-2 border-r border-l border-t border-b border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500"
|
|
49
49
|
:class="{
|
|
50
50
|
'rounded-r-md border-l-0': index == buttonObject.length - 1,
|
|
51
|
-
'rounded-l-md
|
|
51
|
+
'rounded-l-md': index == 0,
|
|
52
|
+
'rounded-l-md border-r-0': buttonObject.length > 2,
|
|
52
53
|
'px-4': button.label,
|
|
53
54
|
}"
|
|
54
55
|
@click="handleEvent(button.onClickAction)"
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
:class="classes"
|
|
27
27
|
class="focus:outline-none relative w-full cursor-pointer rounded-md py-2 pl-3 pr-10 text-left disabled:opacity-50 sm:text-sm"
|
|
28
28
|
:disabled="isDisabled"
|
|
29
|
+
autocomplete="off"
|
|
29
30
|
/>
|
|
30
31
|
|
|
31
32
|
<div class="pointer-events-none absolute top-2 left-3 flex">
|