bk-magic-vue 2.5.3-beta.5 → 2.5.3-beta.6
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/bk-magic-vue.js +1 -1
- package/dist/bk-magic-vue.min.js +1 -1
- package/dist/bk-magic-vue.min.js.gz +0 -0
- package/dist/bk-magic-vue.min.js.map +1 -1
- package/lib/card.js +1 -1
- package/lib/input.js +1 -1
- package/lib/pagination.js +1 -1
- package/lib/slider.js +1 -1
- package/lib/table.js +1 -1
- package/lib/transfer.js +1 -1
- package/package.json +1 -1
package/dist/bk-magic-vue.js
CHANGED
|
@@ -29474,7 +29474,7 @@
|
|
|
29474
29474
|
var target = event.currentTarget;
|
|
29475
29475
|
var value = target.value;
|
|
29476
29476
|
if (this.inputType === 'number') {
|
|
29477
|
-
if (this.validKeyCodeList.indexOf(keyCode) < 0 || event.shiftKey) {
|
|
29477
|
+
if (this.validKeyCodeList.indexOf(keyCode) < 0 || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) {
|
|
29478
29478
|
event.stopPropagation();
|
|
29479
29479
|
event.preventDefault();
|
|
29480
29480
|
return false;
|