vue-devui 1.6.13 → 1.6.15
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/auto-complete/index.es.js +20 -39
- package/auto-complete/index.umd.js +10 -10
- package/breadcrumb/index.es.js +25 -39
- package/breadcrumb/index.umd.js +1 -1
- package/category-search/index.es.js +27 -41
- package/category-search/index.umd.js +13 -13
- package/category-search/style.css +1 -1
- package/checkbox/index.es.js +20 -39
- package/checkbox/index.umd.js +11 -11
- package/code-review/index.es.js +20 -39
- package/code-review/index.umd.js +17 -17
- package/data-grid/index.es.js +27 -41
- package/data-grid/index.umd.js +12 -12
- package/date-picker-pro/index.es.js +20 -39
- package/date-picker-pro/index.umd.js +13 -13
- package/dropdown/index.es.js +25 -39
- package/dropdown/index.umd.js +1 -1
- package/editable-select/index.es.js +20 -39
- package/editable-select/index.umd.js +14 -14
- package/editor-md/index.es.js +27 -41
- package/editor-md/index.umd.js +23 -23
- package/form/index.es.js +20 -39
- package/form/index.umd.js +12 -12
- package/input/index.es.js +20 -39
- package/input/index.umd.js +10 -10
- package/input-number/index.es.js +20 -39
- package/input-number/index.umd.js +18 -18
- package/mention/index.es.js +20 -39
- package/mention/index.umd.js +18 -18
- package/modal/index.es.js +18 -37
- package/modal/index.umd.js +2 -2
- package/overlay/index.es.js +18 -37
- package/overlay/index.umd.js +1 -1
- package/package.json +2 -2
- package/pagination/index.es.js +27 -41
- package/pagination/index.umd.js +13 -13
- package/popover/index.es.js +20 -39
- package/popover/index.umd.js +14 -14
- package/radio/index.es.js +20 -39
- package/radio/index.umd.js +17 -17
- package/search/index.es.js +20 -39
- package/search/index.umd.js +12 -12
- package/select/index.es.js +20 -39
- package/select/index.umd.js +16 -16
- package/splitter/index.es.js +20 -39
- package/splitter/index.umd.js +16 -16
- package/style.css +1 -1
- package/switch/index.es.js +20 -39
- package/switch/index.umd.js +12 -12
- package/table/index.es.js +27 -41
- package/table/index.umd.js +14 -14
- package/textarea/index.es.js +20 -39
- package/textarea/index.umd.js +15 -15
- package/time-picker/index.es.js +20 -39
- package/time-picker/index.umd.js +16 -16
- package/time-select/index.es.js +20 -39
- package/time-select/index.umd.js +10 -10
- package/tooltip/index.es.js +20 -39
- package/tooltip/index.umd.js +17 -17
- package/tree/index.es.js +20 -39
- package/tree/index.umd.js +12 -12
- package/types/dropdown/src/dropdown-types.d.ts +4 -0
- package/types/dropdown/src/dropdown.d.ts +9 -0
- package/types/tooltip/src/tooltip.d.ts +1 -1
- package/vue-devui.es.js +26 -40
- package/vue-devui.umd.js +63 -63
package/input/index.es.js
CHANGED
|
@@ -31,7 +31,7 @@ var __objRest = (source, exclude) => {
|
|
|
31
31
|
};
|
|
32
32
|
import { defineComponent, toRefs, computed, createVNode, resolveDynamicComponent, mergeProps, watch, provide, reactive, onUnmounted, Transition, ref, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, onMounted, Teleport, createTextVNode, onBeforeUnmount, getCurrentInstance, shallowRef, resolveDirective } from "vue";
|
|
33
33
|
import "clipboard";
|
|
34
|
-
import { offset,
|
|
34
|
+
import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
|
|
35
35
|
const DEFAULT_PREFIX = "icon";
|
|
36
36
|
const iconProps = {
|
|
37
37
|
name: {
|
|
@@ -4305,7 +4305,7 @@ var lodash = { exports: {} };
|
|
|
4305
4305
|
var delay = baseRest(function(func, wait, args) {
|
|
4306
4306
|
return baseDelay(func, toNumber(wait) || 0, args);
|
|
4307
4307
|
});
|
|
4308
|
-
function
|
|
4308
|
+
function flip2(func) {
|
|
4309
4309
|
return createWrap(func, WRAP_FLIP_FLAG);
|
|
4310
4310
|
}
|
|
4311
4311
|
function memoize(func, resolver) {
|
|
@@ -5429,7 +5429,7 @@ var lodash = { exports: {} };
|
|
|
5429
5429
|
lodash2.flatten = flatten;
|
|
5430
5430
|
lodash2.flattenDeep = flattenDeep;
|
|
5431
5431
|
lodash2.flattenDepth = flattenDepth;
|
|
5432
|
-
lodash2.flip =
|
|
5432
|
+
lodash2.flip = flip2;
|
|
5433
5433
|
lodash2.flow = flow;
|
|
5434
5434
|
lodash2.flowRight = flowRight;
|
|
5435
5435
|
lodash2.fromPairs = fromPairs;
|
|
@@ -6071,16 +6071,6 @@ const flexibleOverlayProps = {
|
|
|
6071
6071
|
default: false
|
|
6072
6072
|
}
|
|
6073
6073
|
};
|
|
6074
|
-
function getScrollParent(element) {
|
|
6075
|
-
const overflowRegex = /(auto|scroll|hidden)/;
|
|
6076
|
-
for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
|
|
6077
|
-
const style = window.getComputedStyle(parent);
|
|
6078
|
-
if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
|
|
6079
|
-
return parent;
|
|
6080
|
-
}
|
|
6081
|
-
}
|
|
6082
|
-
return window;
|
|
6083
|
-
}
|
|
6084
6074
|
function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
6085
6075
|
let { x, y } = point;
|
|
6086
6076
|
if (!isArrowCenter) {
|
|
@@ -6101,9 +6091,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
|
6101
6091
|
return { x, y };
|
|
6102
6092
|
}
|
|
6103
6093
|
function useOverlay(props, emit) {
|
|
6094
|
+
const { position, showArrow } = toRefs(props);
|
|
6104
6095
|
const overlayRef = ref();
|
|
6105
6096
|
const arrowRef = ref();
|
|
6106
|
-
let originParent = null;
|
|
6107
6097
|
const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
|
|
6108
6098
|
const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
|
|
6109
6099
|
const staticSide = {
|
|
@@ -6124,51 +6114,42 @@ function useOverlay(props, emit) {
|
|
|
6124
6114
|
const hostEl = props.origin;
|
|
6125
6115
|
const overlayEl = unref(overlayRef.value);
|
|
6126
6116
|
const arrowEl = unref(arrowRef.value);
|
|
6127
|
-
const
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
})
|
|
6133
|
-
];
|
|
6134
|
-
props.showArrow && middleware.push(arrow({ element: arrowEl }));
|
|
6135
|
-
props.shiftOffset !== void 0 && middleware.push(shift());
|
|
6136
|
-
if (!overlayEl) {
|
|
6137
|
-
return;
|
|
6117
|
+
const [mainPosition, ...fallbackPosition] = position.value;
|
|
6118
|
+
const middleware = [offset(props.offset)];
|
|
6119
|
+
middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
|
|
6120
|
+
if (showArrow.value) {
|
|
6121
|
+
middleware.push(arrow({ element: arrowRef.value }));
|
|
6138
6122
|
}
|
|
6139
6123
|
const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
|
|
6140
6124
|
strategy: "fixed",
|
|
6125
|
+
placement: mainPosition,
|
|
6141
6126
|
middleware
|
|
6142
6127
|
});
|
|
6143
6128
|
let applyX = x;
|
|
6144
6129
|
let applyY = y;
|
|
6145
|
-
if (props.shiftOffset !== void 0) {
|
|
6146
|
-
const { x: shiftX, y: shiftY } = middlewareData.shift;
|
|
6147
|
-
shiftX < 0 && (applyX -= props.shiftOffset);
|
|
6148
|
-
shiftX > 0 && (applyX += props.shiftOffset);
|
|
6149
|
-
shiftY < 0 && (applyY -= props.shiftOffset);
|
|
6150
|
-
shiftY > 0 && (applyY += props.shiftOffset);
|
|
6151
|
-
}
|
|
6152
6130
|
emit("positionChange", placement);
|
|
6153
6131
|
Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
|
|
6154
6132
|
props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
|
|
6155
6133
|
};
|
|
6134
|
+
const scrollCallback = (e) => {
|
|
6135
|
+
var _a, _b;
|
|
6136
|
+
const scrollElement = e.target;
|
|
6137
|
+
if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
|
|
6138
|
+
updatePosition();
|
|
6139
|
+
}
|
|
6140
|
+
};
|
|
6156
6141
|
watch(() => props.modelValue, () => {
|
|
6157
6142
|
if (props.modelValue && props.origin) {
|
|
6158
|
-
originParent = getScrollParent(props.origin);
|
|
6159
6143
|
nextTick(updatePosition);
|
|
6160
|
-
|
|
6161
|
-
originParent !== window && window.addEventListener("scroll", updatePosition);
|
|
6144
|
+
window.addEventListener("scroll", scrollCallback, true);
|
|
6162
6145
|
window.addEventListener("resize", updatePosition);
|
|
6163
6146
|
} else {
|
|
6164
|
-
|
|
6165
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
6147
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
6166
6148
|
window.removeEventListener("resize", updatePosition);
|
|
6167
6149
|
}
|
|
6168
6150
|
});
|
|
6169
6151
|
onUnmounted(() => {
|
|
6170
|
-
|
|
6171
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
6152
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
6172
6153
|
window.removeEventListener("resize", updatePosition);
|
|
6173
6154
|
});
|
|
6174
6155
|
return { arrowRef, overlayRef, updatePosition };
|