@geelato/web-vue 2.58.3 → 2.59.0

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.
Files changed (44) hide show
  1. package/dist/arco-vue.js +5 -1
  2. package/dist/arco-vue.js.map +1 -1
  3. package/dist/arco-vue.min.js +2 -2
  4. package/dist/arco-vue.min.js.map +1 -1
  5. package/dist/arco.css +10 -10
  6. package/dist/arco.min.css +1 -1
  7. package/es/_components/picker/input-range.d.ts +2 -2
  8. package/es/_components/picker/input.d.ts +1 -1
  9. package/es/_components/virtual-list-v2/virtual-list.d.ts +3 -3
  10. package/es/date-picker/index.d.ts +2 -2
  11. package/es/date-picker/picker.d.ts +1 -1
  12. package/es/date-picker/range-picker.d.ts +2 -2
  13. package/es/drawer/drawer.d.ts +1 -1
  14. package/es/drawer/index.d.ts +3 -3
  15. package/es/index.css +10 -10
  16. package/es/input-number/index.d.ts +15 -0
  17. package/es/input-number/input-number.d.ts +9 -0
  18. package/es/input-number/input-number.js +5 -1
  19. package/es/mention/index.d.ts +3 -3
  20. package/es/mention/mention.d.ts +1 -1
  21. package/es/message/message.d.ts +1 -1
  22. package/es/modal/index.d.ts +3 -3
  23. package/es/modal/modal.d.ts +1 -1
  24. package/es/pagination/page-jumper.d.ts +15 -0
  25. package/es/slider/index.d.ts +30 -0
  26. package/es/slider/slider-input.d.ts +15 -0
  27. package/es/slider/slider.d.ts +15 -0
  28. package/es/table/style/index.css +10 -10
  29. package/es/table/style/index.less +19 -6
  30. package/es/time-picker/index.d.ts +6 -6
  31. package/es/time-picker/time-picker.d.ts +3 -3
  32. package/es/tree/index.d.ts +6 -6
  33. package/es/tree/tree.d.ts +3 -3
  34. package/es/tree-select/index.d.ts +12 -12
  35. package/es/tree-select/panel.d.ts +6 -6
  36. package/es/tree-select/tree-select.d.ts +6 -6
  37. package/json/vetur-attributes.json +2925 -2921
  38. package/json/vetur-tags.json +806 -805
  39. package/json/web-types.json +4656 -4648
  40. package/lib/index.css +10 -10
  41. package/lib/input-number/input-number.js +5 -1
  42. package/lib/table/style/index.css +10 -10
  43. package/lib/table/style/index.less +19 -6
  44. package/package.json +1 -1
package/dist/arco-vue.js CHANGED
@@ -16356,6 +16356,10 @@
16356
16356
  },
16357
16357
  inputAttrs: {
16358
16358
  type: Object
16359
+ },
16360
+ keyboard: {
16361
+ type: Boolean,
16362
+ default: true
16359
16363
  }
16360
16364
  },
16361
16365
  emits: {
@@ -16537,7 +16541,7 @@
16537
16541
  }]]));
16538
16542
  const onKeyDown = (event) => {
16539
16543
  emit("keydown", event);
16540
- if (!event.defaultPrevented) {
16544
+ if (!event.defaultPrevented && props.keyboard) {
16541
16545
  keyDownHandler(event);
16542
16546
  }
16543
16547
  };