bkui-vue 0.0.1-beta.150 → 0.0.1-beta.151
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 +1 -1
- package/dist/index.esm.js +6 -3
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/select/index.d.ts +3 -3
- package/lib/select/index.js +1 -1
- package/lib/select/select.css +16 -4
- package/lib/select/select.d.ts +1 -1
- package/lib/select/select.less +13 -4
- package/lib/select/select.variable.css +16 -4
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -14014,8 +14014,10 @@ var BkOption = defineComponent({
|
|
14014
14014
|
"onClick": this.handleOptionClick,
|
14015
14015
|
"onMouseenter": this.handleMouseEnter
|
14016
14016
|
}, [(_c = (_b = (_a = this.$slots).default) == null ? void 0 : _b.call(_a)) != null ? _c : createVNode("span", {
|
14017
|
-
"class": "bk-select-option-item"
|
14017
|
+
"class": "bk-select-option-item",
|
14018
|
+
"title": this.label
|
14018
14019
|
}, [this.label, this.multiple && this.selected && createVNode(done, {
|
14020
|
+
"class": "done-icon",
|
14019
14021
|
"width": 22,
|
14020
14022
|
"height": 22
|
14021
14023
|
}, null)])]), [[vShow, this.visible]]);
|
@@ -14675,7 +14677,7 @@ var Component$i = defineComponent({
|
|
14675
14677
|
"size": "mini"
|
14676
14678
|
}, null);
|
14677
14679
|
}
|
14678
|
-
if (this.clearable && this.isHover && this.selected.length) {
|
14680
|
+
if (this.clearable && this.isHover && this.selected.length && !this.isDisabled) {
|
14679
14681
|
return createVNode(close$1, {
|
14680
14682
|
"class": "clear-icon",
|
14681
14683
|
"onClick": this.handleClear
|
@@ -14717,7 +14719,8 @@ var Component$i = defineComponent({
|
|
14717
14719
|
"size": this.size,
|
14718
14720
|
"onFocus": this.handleFocus,
|
14719
14721
|
"onInput": this.handleInputChange,
|
14720
|
-
"onEnter": this.handleInputEnter
|
14722
|
+
"onEnter": this.handleInputEnter,
|
14723
|
+
"onKeydown": (_2, e) => this.handleKeydown(e)
|
14721
14724
|
}, {
|
14722
14725
|
prefix: () => {
|
14723
14726
|
var _a, _b;
|