bkui-vue 0.0.1-beta.377 → 0.0.1-beta.379
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 +8 -8
- package/dist/index.esm.js +2 -0
- package/dist/index.umd.js +6 -6
- package/lib/input/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -9651,12 +9651,14 @@ var Component$x = defineComponent({
|
|
9651
9651
|
return;
|
9652
9652
|
const newVal = handleNumber(props2.step);
|
9653
9653
|
ctx.emit(EVENTS$2.UPDATE, newVal);
|
9654
|
+
ctx.emit(EVENTS$2.CHANGE, newVal);
|
9654
9655
|
}
|
9655
9656
|
function handleDec() {
|
9656
9657
|
if (props2.disabled)
|
9657
9658
|
return;
|
9658
9659
|
const newVal = handleNumber(props2.step, false);
|
9659
9660
|
ctx.emit(EVENTS$2.UPDATE, newVal);
|
9661
|
+
ctx.emit(EVENTS$2.CHANGE, newVal);
|
9660
9662
|
}
|
9661
9663
|
function getCls(name) {
|
9662
9664
|
return `${inputClsPrefix.value}--${name}`;
|