bkui-vue 0.0.1-beta.395 → 0.0.1-beta.397
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/index.cjs.js +2 -2
- package/dist/index.esm.js +4 -1
- package/dist/index.umd.js +2 -2
- package/lib/date-picker/index.js +1 -1
- package/lib/search-select/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -26435,7 +26435,7 @@ var TimeRangePanel = defineComponent({
|
|
26435
26435
|
width: `${this.width * 2}px`
|
26436
26436
|
}
|
26437
26437
|
}, [createVNode("div", {
|
26438
|
-
"class": [resolveClassName("picker-panel-content", resolveClassName("picker-panel-content-left")
|
26438
|
+
"class": [resolveClassName("picker-panel-content"), resolveClassName("picker-panel-content-left")],
|
26439
26439
|
"style": {
|
26440
26440
|
width: `${this.width}px`
|
26441
26441
|
}
|
@@ -38873,6 +38873,9 @@ var SearchSelectInput = defineComponent({
|
|
38873
38873
|
return;
|
38874
38874
|
}
|
38875
38875
|
usingItem.value.addValue(item);
|
38876
|
+
if (usingItem.value.multiple) {
|
38877
|
+
keyword.value = "";
|
38878
|
+
}
|
38876
38879
|
const res = await validateUsingItemValues(item);
|
38877
38880
|
if (!res)
|
38878
38881
|
return;
|