bkui-vue 0.0.1-beta.207 → 0.0.1-beta.208
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/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/input/index.js +1 -1
- package/lib/resize-layout/resize-layout.css +3 -3
- package/lib/resize-layout/resize-layout.less +3 -3
- package/lib/resize-layout/resize-layout.variable.css +3 -3
- package/lib/select/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -9435,7 +9435,9 @@ var Component$y = defineComponent({
|
|
9435
9435
|
ctx.emit(EVENTS$2.UPDATE, val);
|
9436
9436
|
ctx.emit(EVENTS$2.CHANGE, val);
|
9437
9437
|
}
|
9438
|
-
(
|
9438
|
+
if (props2.withValidate) {
|
9439
|
+
(_a2 = formItem == null ? void 0 : formItem.validate) == null ? void 0 : _a2.call(formItem, "blur");
|
9440
|
+
}
|
9439
9441
|
}
|
9440
9442
|
function eventHandler(eventName) {
|
9441
9443
|
return (e) => {
|
@@ -15627,6 +15629,7 @@ var Component$j = defineComponent({
|
|
15627
15629
|
"disabled": this.isDisabled,
|
15628
15630
|
"behavior": this.behavior,
|
15629
15631
|
"size": this.size,
|
15632
|
+
"withValidate": false,
|
15630
15633
|
"onInput": this.handleInputChange,
|
15631
15634
|
"onEnter": this.handleInputEnter
|
15632
15635
|
}, {
|