vue-devui 1.6.14 → 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 +18 -37
- package/breadcrumb/index.umd.js +1 -1
- package/category-search/index.es.js +20 -39
- package/category-search/index.umd.js +12 -12
- 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 +20 -39
- package/data-grid/index.umd.js +9 -9
- package/date-picker-pro/index.es.js +20 -39
- package/date-picker-pro/index.umd.js +13 -13
- package/dropdown/index.es.js +18 -37
- 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 +20 -39
- package/editor-md/index.umd.js +22 -22
- 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 +20 -39
- package/pagination/index.umd.js +10 -10
- 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/switch/index.es.js +20 -39
- package/switch/index.umd.js +12 -12
- package/table/index.es.js +20 -39
- package/table/index.umd.js +10 -10
- 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/vue-devui.es.js +19 -38
- package/vue-devui.umd.js +63 -63
package/textarea/index.es.js
CHANGED
|
@@ -31,7 +31,7 @@ var __objRest = (source, exclude) => {
|
|
|
31
31
|
};
|
|
32
32
|
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 } from "vue";
|
|
33
33
|
import "clipboard";
|
|
34
|
-
import { offset,
|
|
34
|
+
import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
|
|
35
35
|
const formProps = {
|
|
36
36
|
data: {
|
|
37
37
|
type: Object,
|
|
@@ -3989,7 +3989,7 @@ var lodash = { exports: {} };
|
|
|
3989
3989
|
var delay = baseRest(function(func, wait, args) {
|
|
3990
3990
|
return baseDelay(func, toNumber(wait) || 0, args);
|
|
3991
3991
|
});
|
|
3992
|
-
function
|
|
3992
|
+
function flip2(func) {
|
|
3993
3993
|
return createWrap(func, WRAP_FLIP_FLAG);
|
|
3994
3994
|
}
|
|
3995
3995
|
function memoize(func, resolver) {
|
|
@@ -5113,7 +5113,7 @@ var lodash = { exports: {} };
|
|
|
5113
5113
|
lodash2.flatten = flatten;
|
|
5114
5114
|
lodash2.flattenDeep = flattenDeep;
|
|
5115
5115
|
lodash2.flattenDepth = flattenDepth;
|
|
5116
|
-
lodash2.flip =
|
|
5116
|
+
lodash2.flip = flip2;
|
|
5117
5117
|
lodash2.flow = flow;
|
|
5118
5118
|
lodash2.flowRight = flowRight;
|
|
5119
5119
|
lodash2.fromPairs = fromPairs;
|
|
@@ -5821,16 +5821,6 @@ const flexibleOverlayProps = {
|
|
|
5821
5821
|
default: false
|
|
5822
5822
|
}
|
|
5823
5823
|
};
|
|
5824
|
-
function getScrollParent(element) {
|
|
5825
|
-
const overflowRegex = /(auto|scroll|hidden)/;
|
|
5826
|
-
for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
|
|
5827
|
-
const style = window.getComputedStyle(parent);
|
|
5828
|
-
if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
|
|
5829
|
-
return parent;
|
|
5830
|
-
}
|
|
5831
|
-
}
|
|
5832
|
-
return window;
|
|
5833
|
-
}
|
|
5834
5824
|
function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
5835
5825
|
let { x, y } = point;
|
|
5836
5826
|
if (!isArrowCenter) {
|
|
@@ -5851,9 +5841,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
|
5851
5841
|
return { x, y };
|
|
5852
5842
|
}
|
|
5853
5843
|
function useOverlay(props, emit) {
|
|
5844
|
+
const { position, showArrow } = toRefs(props);
|
|
5854
5845
|
const overlayRef = ref();
|
|
5855
5846
|
const arrowRef = ref();
|
|
5856
|
-
let originParent = null;
|
|
5857
5847
|
const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
|
|
5858
5848
|
const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
|
|
5859
5849
|
const staticSide = {
|
|
@@ -5874,51 +5864,42 @@ function useOverlay(props, emit) {
|
|
|
5874
5864
|
const hostEl = props.origin;
|
|
5875
5865
|
const overlayEl = unref(overlayRef.value);
|
|
5876
5866
|
const arrowEl = unref(arrowRef.value);
|
|
5877
|
-
const
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
})
|
|
5883
|
-
];
|
|
5884
|
-
props.showArrow && middleware.push(arrow({ element: arrowEl }));
|
|
5885
|
-
props.shiftOffset !== void 0 && middleware.push(shift());
|
|
5886
|
-
if (!overlayEl) {
|
|
5887
|
-
return;
|
|
5867
|
+
const [mainPosition, ...fallbackPosition] = position.value;
|
|
5868
|
+
const middleware = [offset(props.offset)];
|
|
5869
|
+
middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
|
|
5870
|
+
if (showArrow.value) {
|
|
5871
|
+
middleware.push(arrow({ element: arrowRef.value }));
|
|
5888
5872
|
}
|
|
5889
5873
|
const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
|
|
5890
5874
|
strategy: "fixed",
|
|
5875
|
+
placement: mainPosition,
|
|
5891
5876
|
middleware
|
|
5892
5877
|
});
|
|
5893
5878
|
let applyX = x;
|
|
5894
5879
|
let applyY = y;
|
|
5895
|
-
if (props.shiftOffset !== void 0) {
|
|
5896
|
-
const { x: shiftX, y: shiftY } = middlewareData.shift;
|
|
5897
|
-
shiftX < 0 && (applyX -= props.shiftOffset);
|
|
5898
|
-
shiftX > 0 && (applyX += props.shiftOffset);
|
|
5899
|
-
shiftY < 0 && (applyY -= props.shiftOffset);
|
|
5900
|
-
shiftY > 0 && (applyY += props.shiftOffset);
|
|
5901
|
-
}
|
|
5902
5880
|
emit("positionChange", placement);
|
|
5903
5881
|
Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
|
|
5904
5882
|
props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
|
|
5905
5883
|
};
|
|
5884
|
+
const scrollCallback = (e) => {
|
|
5885
|
+
var _a, _b;
|
|
5886
|
+
const scrollElement = e.target;
|
|
5887
|
+
if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
|
|
5888
|
+
updatePosition();
|
|
5889
|
+
}
|
|
5890
|
+
};
|
|
5906
5891
|
watch(() => props.modelValue, () => {
|
|
5907
5892
|
if (props.modelValue && props.origin) {
|
|
5908
|
-
originParent = getScrollParent(props.origin);
|
|
5909
5893
|
nextTick(updatePosition);
|
|
5910
|
-
|
|
5911
|
-
originParent !== window && window.addEventListener("scroll", updatePosition);
|
|
5894
|
+
window.addEventListener("scroll", scrollCallback, true);
|
|
5912
5895
|
window.addEventListener("resize", updatePosition);
|
|
5913
5896
|
} else {
|
|
5914
|
-
|
|
5915
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
5897
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
5916
5898
|
window.removeEventListener("resize", updatePosition);
|
|
5917
5899
|
}
|
|
5918
5900
|
});
|
|
5919
5901
|
onUnmounted(() => {
|
|
5920
|
-
|
|
5921
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
5902
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
5922
5903
|
window.removeEventListener("resize", updatePosition);
|
|
5923
5904
|
});
|
|
5924
5905
|
return { arrowRef, overlayRef, updatePosition };
|