bk-magic-vue 2.5.3-beta.5 → 2.5.3-beta.7

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.
@@ -28371,7 +28371,7 @@
28371
28371
  interactive: true,
28372
28372
  boundary: 'window',
28373
28373
  content: '',
28374
- allowHTML: false,
28374
+ allowHTML: true,
28375
28375
  extCls: ''
28376
28376
  };
28377
28377
  var validPlacements$2 = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];
@@ -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;