classcard-ui 0.2.321 → 0.2.324
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 +64 -66
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +64 -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/CButtonGroup/CButtonGroup.vue +1 -1
- package/src/components/CMultiselect/CMultiselect.vue +4 -6
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
:class="{
|
|
50
50
|
'rounded-r-md border-l-0': index == buttonObject.length - 1,
|
|
51
51
|
'rounded-l-md': index == 0,
|
|
52
|
-
'
|
|
52
|
+
'border-r-0': index == 0 && buttonObject.length != 2,
|
|
53
53
|
'px-4': button.label,
|
|
54
54
|
}"
|
|
55
55
|
@click="handleEvent(button.onClickAction)"
|
|
@@ -188,14 +188,12 @@ export default {
|
|
|
188
188
|
},
|
|
189
189
|
methods: {
|
|
190
190
|
fetchOptions(search, loaderSearching) {
|
|
191
|
-
this.localSearch = search;
|
|
192
191
|
this.$emit("getOptions", search, loaderSearching);
|
|
192
|
+
this.emitSearch(search);
|
|
193
193
|
},
|
|
194
|
-
emitSearch() {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
}, 500);
|
|
198
|
-
},
|
|
194
|
+
emitSearch: debounce((search) => {
|
|
195
|
+
this.$emit("search", search);
|
|
196
|
+
}, 500),
|
|
199
197
|
setSelectedOptions(params) {
|
|
200
198
|
this.value = params;
|
|
201
199
|
this.$emit("onSelectOptions", params);
|