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
|
@@ -36,7 +36,7 @@ var __publicField = (obj, key, value) => {
|
|
|
36
36
|
import { defineComponent, watch, provide, reactive, toRefs, createVNode, onUnmounted, Transition, mergeProps, ref, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, computed, onMounted, Teleport, createTextVNode, onBeforeUnmount, shallowRef, resolveDynamicComponent, getCurrentInstance, resolveDirective, onBeforeMount, isVNode, onUpdated, toRaw, watchEffect, render, resolveComponent, vShow, toRef, renderSlot, useSlots } from "vue";
|
|
37
37
|
import { onClickOutside } from "@vueuse/core";
|
|
38
38
|
import "clipboard";
|
|
39
|
-
import { offset,
|
|
39
|
+
import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
|
|
40
40
|
const datePickerProCommonProps = {
|
|
41
41
|
format: {
|
|
42
42
|
type: String
|
|
@@ -4314,7 +4314,7 @@ var lodash = { exports: {} };
|
|
|
4314
4314
|
var delay = baseRest(function(func, wait, args) {
|
|
4315
4315
|
return baseDelay(func, toNumber(wait) || 0, args);
|
|
4316
4316
|
});
|
|
4317
|
-
function
|
|
4317
|
+
function flip2(func) {
|
|
4318
4318
|
return createWrap(func, WRAP_FLIP_FLAG);
|
|
4319
4319
|
}
|
|
4320
4320
|
function memoize(func, resolver) {
|
|
@@ -5438,7 +5438,7 @@ var lodash = { exports: {} };
|
|
|
5438
5438
|
lodash2.flatten = flatten;
|
|
5439
5439
|
lodash2.flattenDeep = flattenDeep;
|
|
5440
5440
|
lodash2.flattenDepth = flattenDepth;
|
|
5441
|
-
lodash2.flip =
|
|
5441
|
+
lodash2.flip = flip2;
|
|
5442
5442
|
lodash2.flow = flow;
|
|
5443
5443
|
lodash2.flowRight = flowRight;
|
|
5444
5444
|
lodash2.fromPairs = fromPairs;
|
|
@@ -6146,16 +6146,6 @@ const flexibleOverlayProps = {
|
|
|
6146
6146
|
default: false
|
|
6147
6147
|
}
|
|
6148
6148
|
};
|
|
6149
|
-
function getScrollParent(element) {
|
|
6150
|
-
const overflowRegex = /(auto|scroll|hidden)/;
|
|
6151
|
-
for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
|
|
6152
|
-
const style = window.getComputedStyle(parent);
|
|
6153
|
-
if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
|
|
6154
|
-
return parent;
|
|
6155
|
-
}
|
|
6156
|
-
}
|
|
6157
|
-
return window;
|
|
6158
|
-
}
|
|
6159
6149
|
function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
6160
6150
|
let { x, y } = point;
|
|
6161
6151
|
if (!isArrowCenter) {
|
|
@@ -6176,9 +6166,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
|
6176
6166
|
return { x, y };
|
|
6177
6167
|
}
|
|
6178
6168
|
function useOverlay(props, emit) {
|
|
6169
|
+
const { position, showArrow } = toRefs(props);
|
|
6179
6170
|
const overlayRef = ref();
|
|
6180
6171
|
const arrowRef = ref();
|
|
6181
|
-
let originParent = null;
|
|
6182
6172
|
const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
|
|
6183
6173
|
const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
|
|
6184
6174
|
const staticSide = {
|
|
@@ -6199,51 +6189,42 @@ function useOverlay(props, emit) {
|
|
|
6199
6189
|
const hostEl = props.origin;
|
|
6200
6190
|
const overlayEl = unref(overlayRef.value);
|
|
6201
6191
|
const arrowEl = unref(arrowRef.value);
|
|
6202
|
-
const
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
})
|
|
6208
|
-
];
|
|
6209
|
-
props.showArrow && middleware.push(arrow({ element: arrowEl }));
|
|
6210
|
-
props.shiftOffset !== void 0 && middleware.push(shift());
|
|
6211
|
-
if (!overlayEl) {
|
|
6212
|
-
return;
|
|
6192
|
+
const [mainPosition, ...fallbackPosition] = position.value;
|
|
6193
|
+
const middleware = [offset(props.offset)];
|
|
6194
|
+
middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
|
|
6195
|
+
if (showArrow.value) {
|
|
6196
|
+
middleware.push(arrow({ element: arrowRef.value }));
|
|
6213
6197
|
}
|
|
6214
6198
|
const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
|
|
6215
6199
|
strategy: "fixed",
|
|
6200
|
+
placement: mainPosition,
|
|
6216
6201
|
middleware
|
|
6217
6202
|
});
|
|
6218
6203
|
let applyX = x;
|
|
6219
6204
|
let applyY = y;
|
|
6220
|
-
if (props.shiftOffset !== void 0) {
|
|
6221
|
-
const { x: shiftX, y: shiftY } = middlewareData.shift;
|
|
6222
|
-
shiftX < 0 && (applyX -= props.shiftOffset);
|
|
6223
|
-
shiftX > 0 && (applyX += props.shiftOffset);
|
|
6224
|
-
shiftY < 0 && (applyY -= props.shiftOffset);
|
|
6225
|
-
shiftY > 0 && (applyY += props.shiftOffset);
|
|
6226
|
-
}
|
|
6227
6205
|
emit("positionChange", placement);
|
|
6228
6206
|
Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
|
|
6229
6207
|
props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
|
|
6230
6208
|
};
|
|
6209
|
+
const scrollCallback = (e) => {
|
|
6210
|
+
var _a, _b;
|
|
6211
|
+
const scrollElement = e.target;
|
|
6212
|
+
if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
|
|
6213
|
+
updatePosition();
|
|
6214
|
+
}
|
|
6215
|
+
};
|
|
6231
6216
|
watch(() => props.modelValue, () => {
|
|
6232
6217
|
if (props.modelValue && props.origin) {
|
|
6233
|
-
originParent = getScrollParent(props.origin);
|
|
6234
6218
|
nextTick(updatePosition);
|
|
6235
|
-
|
|
6236
|
-
originParent !== window && window.addEventListener("scroll", updatePosition);
|
|
6219
|
+
window.addEventListener("scroll", scrollCallback, true);
|
|
6237
6220
|
window.addEventListener("resize", updatePosition);
|
|
6238
6221
|
} else {
|
|
6239
|
-
|
|
6240
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
6222
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
6241
6223
|
window.removeEventListener("resize", updatePosition);
|
|
6242
6224
|
}
|
|
6243
6225
|
});
|
|
6244
6226
|
onUnmounted(() => {
|
|
6245
|
-
|
|
6246
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
6227
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
6247
6228
|
window.removeEventListener("resize", updatePosition);
|
|
6248
6229
|
});
|
|
6249
6230
|
return { arrowRef, overlayRef, updatePosition };
|