vue-devui 1.0.0-rc.16 → 1.0.0-rc.17
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/README.md +2 -0
- package/auto-complete/index.es.js +3 -1
- package/auto-complete/index.umd.js +1 -1
- package/auto-complete/style.css +1 -1
- package/button/style.css +1 -1
- package/checkbox/index.es.js +3 -1
- package/checkbox/index.umd.js +1 -1
- package/date-picker-pro/index.es.js +16 -12
- package/date-picker-pro/index.umd.js +9 -9
- package/date-picker-pro/style.css +1 -1
- package/drawer/index.es.js +1 -1
- package/drawer/index.umd.js +1 -1
- package/dropdown/index.es.js +2 -9
- package/dropdown/index.umd.js +1 -1
- package/editable-select/style.css +1 -1
- package/form/index.es.js +3 -1
- package/form/index.umd.js +1 -1
- package/input/index.es.js +3 -1
- package/input/index.umd.js +4 -4
- package/loading/style.css +1 -1
- package/mention/index.d.ts +7 -0
- package/mention/index.es.js +8326 -0
- package/mention/index.umd.js +47 -0
- package/mention/package.json +7 -0
- package/mention/style.css +1 -0
- package/menu/index.d.ts +7 -0
- package/menu/index.es.js +927 -0
- package/menu/index.umd.js +1 -0
- package/menu/package.json +7 -0
- package/menu/style.css +1 -0
- package/message/index.es.js +0 -1
- package/message/index.umd.js +1 -1
- package/message/style.css +1 -1
- package/modal/index.es.js +3 -1
- package/modal/index.umd.js +1 -1
- package/nuxt/components/Mention.js +3 -0
- package/nuxt/components/Menu.js +3 -0
- package/nuxt/components/MenuItem.js +3 -0
- package/nuxt/components/SubMenu.js +3 -0
- package/nuxt/components/mentionProps.js +3 -0
- package/nuxt/components/treeNodeProps.js +3 -0
- package/package.json +2 -2
- package/popover/index.es.js +3 -1
- package/popover/index.umd.js +6 -6
- package/radio/index.es.js +3 -1
- package/radio/index.umd.js +7 -7
- package/search/index.es.js +3 -1
- package/search/index.umd.js +8 -8
- package/select/index.es.js +3 -1
- package/select/index.umd.js +1 -1
- package/style.css +1 -1
- package/switch/index.es.js +3 -1
- package/switch/index.umd.js +1 -1
- package/switch/style.css +1 -1
- package/table/index.es.js +9 -11
- package/table/index.umd.js +3 -3
- package/table/style.css +1 -1
- package/textarea/index.es.js +5 -2
- package/textarea/index.umd.js +16 -16
- package/time-picker/index.es.js +3 -1
- package/time-picker/index.umd.js +1 -1
- package/time-picker/style.css +1 -1
- package/time-select/index.es.js +3 -1
- package/time-select/index.umd.js +5 -5
- package/tree/index.es.js +11097 -9839
- package/tree/index.umd.js +27 -27
- package/tree/style.css +1 -1
- package/vue-devui.es.js +11745 -9417
- package/vue-devui.umd.js +29 -28
package/input/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, toRefs, computed, createVNode, resolveDynamicComponent, mergeProps, watch, provide, reactive, onUnmounted, Transition, ref, nextTick, unref, Comment, Text, Fragment, h, inject, withDirectives, cloneVNode, onMounted, Teleport, createTextVNode, onBeforeUnmount, getCurrentInstance, shallowRef } from "vue";
|
|
1
|
+
import { defineComponent, toRefs, computed, createVNode, resolveDynamicComponent, mergeProps, watch, provide, reactive, onUnmounted, Transition, ref, nextTick, unref, Comment, Text, Fragment, h, inject, withDirectives, cloneVNode, onMounted, Teleport, withModifiers, createTextVNode, onBeforeUnmount, getCurrentInstance, shallowRef } from "vue";
|
|
2
2
|
import { offset, autoPlacement, arrow, shift, computePosition } from "@floating-ui/dom";
|
|
3
3
|
const DEFAULT_PREFIX = "icon";
|
|
4
4
|
const iconProps = {
|
|
@@ -6452,6 +6452,8 @@ var Popover = defineComponent({
|
|
|
6452
6452
|
"style": overlayStyles.value
|
|
6453
6453
|
}, attrs, {
|
|
6454
6454
|
"onPositionChange": handlePositionChange,
|
|
6455
|
+
"onClick": withModifiers(() => ({}), ["stop"]),
|
|
6456
|
+
"onPointerup": withModifiers(() => ({}), ["stop"]),
|
|
6455
6457
|
"onMouseenter": onMouseenter,
|
|
6456
6458
|
"onMouseleave": onMouseleave
|
|
6457
6459
|
}), {
|