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/code-review/index.es.js
CHANGED
|
@@ -15,7 +15,7 @@ var __spreadValues = (a, b) => {
|
|
|
15
15
|
return a;
|
|
16
16
|
};
|
|
17
17
|
import { watch, onUnmounted, defineComponent, toRefs, createVNode, Transition, mergeProps, ref, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, computed, onMounted, provide, Teleport, createTextVNode, vShow } from "vue";
|
|
18
|
-
import { offset,
|
|
18
|
+
import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
|
|
19
19
|
import Clipboard from "clipboard";
|
|
20
20
|
import * as Diff2Html from "diff2html";
|
|
21
21
|
import { Diff2HtmlUI } from "diff2html/lib/ui/js/diff2html-ui";
|
|
@@ -162,16 +162,6 @@ const flexibleOverlayProps = {
|
|
|
162
162
|
default: false
|
|
163
163
|
}
|
|
164
164
|
};
|
|
165
|
-
function getScrollParent(element) {
|
|
166
|
-
const overflowRegex = /(auto|scroll|hidden)/;
|
|
167
|
-
for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
|
|
168
|
-
const style = window.getComputedStyle(parent);
|
|
169
|
-
if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
|
|
170
|
-
return parent;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
return window;
|
|
174
|
-
}
|
|
175
165
|
function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
176
166
|
let { x, y } = point;
|
|
177
167
|
if (!isArrowCenter) {
|
|
@@ -192,9 +182,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
|
192
182
|
return { x, y };
|
|
193
183
|
}
|
|
194
184
|
function useOverlay(props, emit) {
|
|
185
|
+
const { position, showArrow } = toRefs(props);
|
|
195
186
|
const overlayRef = ref();
|
|
196
187
|
const arrowRef = ref();
|
|
197
|
-
let originParent = null;
|
|
198
188
|
const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
|
|
199
189
|
const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
|
|
200
190
|
const staticSide = {
|
|
@@ -215,51 +205,42 @@ function useOverlay(props, emit) {
|
|
|
215
205
|
const hostEl = props.origin;
|
|
216
206
|
const overlayEl = unref(overlayRef.value);
|
|
217
207
|
const arrowEl = unref(arrowRef.value);
|
|
218
|
-
const
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
})
|
|
224
|
-
];
|
|
225
|
-
props.showArrow && middleware.push(arrow({ element: arrowEl }));
|
|
226
|
-
props.shiftOffset !== void 0 && middleware.push(shift());
|
|
227
|
-
if (!overlayEl) {
|
|
228
|
-
return;
|
|
208
|
+
const [mainPosition, ...fallbackPosition] = position.value;
|
|
209
|
+
const middleware = [offset(props.offset)];
|
|
210
|
+
middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
|
|
211
|
+
if (showArrow.value) {
|
|
212
|
+
middleware.push(arrow({ element: arrowRef.value }));
|
|
229
213
|
}
|
|
230
214
|
const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
|
|
231
215
|
strategy: "fixed",
|
|
216
|
+
placement: mainPosition,
|
|
232
217
|
middleware
|
|
233
218
|
});
|
|
234
219
|
let applyX = x;
|
|
235
220
|
let applyY = y;
|
|
236
|
-
if (props.shiftOffset !== void 0) {
|
|
237
|
-
const { x: shiftX, y: shiftY } = middlewareData.shift;
|
|
238
|
-
shiftX < 0 && (applyX -= props.shiftOffset);
|
|
239
|
-
shiftX > 0 && (applyX += props.shiftOffset);
|
|
240
|
-
shiftY < 0 && (applyY -= props.shiftOffset);
|
|
241
|
-
shiftY > 0 && (applyY += props.shiftOffset);
|
|
242
|
-
}
|
|
243
221
|
emit("positionChange", placement);
|
|
244
222
|
Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
|
|
245
223
|
props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
|
|
246
224
|
};
|
|
225
|
+
const scrollCallback = (e) => {
|
|
226
|
+
var _a, _b;
|
|
227
|
+
const scrollElement = e.target;
|
|
228
|
+
if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
|
|
229
|
+
updatePosition();
|
|
230
|
+
}
|
|
231
|
+
};
|
|
247
232
|
watch(() => props.modelValue, () => {
|
|
248
233
|
if (props.modelValue && props.origin) {
|
|
249
|
-
originParent = getScrollParent(props.origin);
|
|
250
234
|
nextTick(updatePosition);
|
|
251
|
-
|
|
252
|
-
originParent !== window && window.addEventListener("scroll", updatePosition);
|
|
235
|
+
window.addEventListener("scroll", scrollCallback, true);
|
|
253
236
|
window.addEventListener("resize", updatePosition);
|
|
254
237
|
} else {
|
|
255
|
-
|
|
256
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
238
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
257
239
|
window.removeEventListener("resize", updatePosition);
|
|
258
240
|
}
|
|
259
241
|
});
|
|
260
242
|
onUnmounted(() => {
|
|
261
|
-
|
|
262
|
-
originParent !== window && window.removeEventListener("scroll", updatePosition);
|
|
243
|
+
window.removeEventListener("scroll", scrollCallback, true);
|
|
263
244
|
window.removeEventListener("resize", updatePosition);
|
|
264
245
|
});
|
|
265
246
|
return { arrowRef, overlayRef, updatePosition };
|
|
@@ -4253,7 +4234,7 @@ var lodash = { exports: {} };
|
|
|
4253
4234
|
var delay = baseRest(function(func, wait, args) {
|
|
4254
4235
|
return baseDelay(func, toNumber(wait) || 0, args);
|
|
4255
4236
|
});
|
|
4256
|
-
function
|
|
4237
|
+
function flip2(func) {
|
|
4257
4238
|
return createWrap(func, WRAP_FLIP_FLAG);
|
|
4258
4239
|
}
|
|
4259
4240
|
function memoize(func, resolver) {
|
|
@@ -5377,7 +5358,7 @@ var lodash = { exports: {} };
|
|
|
5377
5358
|
lodash2.flatten = flatten;
|
|
5378
5359
|
lodash2.flattenDeep = flattenDeep;
|
|
5379
5360
|
lodash2.flattenDepth = flattenDepth;
|
|
5380
|
-
lodash2.flip =
|
|
5361
|
+
lodash2.flip = flip2;
|
|
5381
5362
|
lodash2.flow = flow;
|
|
5382
5363
|
lodash2.flowRight = flowRight;
|
|
5383
5364
|
lodash2.fromPairs = fromPairs;
|