@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.
- package/dist/arco-vue.js +5 -1
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +2 -2
- package/dist/arco-vue.min.js.map +1 -1
- package/dist/arco.css +10 -10
- package/dist/arco.min.css +1 -1
- package/es/_components/picker/input-range.d.ts +2 -2
- package/es/_components/picker/input.d.ts +1 -1
- package/es/_components/virtual-list-v2/virtual-list.d.ts +3 -3
- package/es/date-picker/index.d.ts +2 -2
- package/es/date-picker/picker.d.ts +1 -1
- package/es/date-picker/range-picker.d.ts +2 -2
- package/es/drawer/drawer.d.ts +1 -1
- package/es/drawer/index.d.ts +3 -3
- package/es/index.css +10 -10
- package/es/input-number/index.d.ts +15 -0
- package/es/input-number/input-number.d.ts +9 -0
- package/es/input-number/input-number.js +5 -1
- package/es/mention/index.d.ts +3 -3
- package/es/mention/mention.d.ts +1 -1
- package/es/message/message.d.ts +1 -1
- package/es/modal/index.d.ts +3 -3
- package/es/modal/modal.d.ts +1 -1
- package/es/pagination/page-jumper.d.ts +15 -0
- package/es/slider/index.d.ts +30 -0
- package/es/slider/slider-input.d.ts +15 -0
- package/es/slider/slider.d.ts +15 -0
- package/es/table/style/index.css +10 -10
- package/es/table/style/index.less +19 -6
- package/es/time-picker/index.d.ts +6 -6
- package/es/time-picker/time-picker.d.ts +3 -3
- package/es/tree/index.d.ts +6 -6
- package/es/tree/tree.d.ts +3 -3
- package/es/tree-select/index.d.ts +12 -12
- package/es/tree-select/panel.d.ts +6 -6
- package/es/tree-select/tree-select.d.ts +6 -6
- package/json/vetur-attributes.json +2925 -2921
- package/json/vetur-tags.json +806 -805
- package/json/web-types.json +4656 -4648
- package/lib/index.css +10 -10
- package/lib/input-number/input-number.js +5 -1
- package/lib/table/style/index.css +10 -10
- package/lib/table/style/index.less +19 -6
- 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
|
};
|