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.
Files changed (61) hide show
  1. package/auto-complete/index.es.js +20 -39
  2. package/auto-complete/index.umd.js +10 -10
  3. package/breadcrumb/index.es.js +18 -37
  4. package/breadcrumb/index.umd.js +1 -1
  5. package/category-search/index.es.js +20 -39
  6. package/category-search/index.umd.js +12 -12
  7. package/checkbox/index.es.js +20 -39
  8. package/checkbox/index.umd.js +11 -11
  9. package/code-review/index.es.js +20 -39
  10. package/code-review/index.umd.js +17 -17
  11. package/data-grid/index.es.js +20 -39
  12. package/data-grid/index.umd.js +9 -9
  13. package/date-picker-pro/index.es.js +20 -39
  14. package/date-picker-pro/index.umd.js +13 -13
  15. package/dropdown/index.es.js +18 -37
  16. package/dropdown/index.umd.js +1 -1
  17. package/editable-select/index.es.js +20 -39
  18. package/editable-select/index.umd.js +14 -14
  19. package/editor-md/index.es.js +20 -39
  20. package/editor-md/index.umd.js +22 -22
  21. package/form/index.es.js +20 -39
  22. package/form/index.umd.js +12 -12
  23. package/input/index.es.js +20 -39
  24. package/input/index.umd.js +10 -10
  25. package/input-number/index.es.js +20 -39
  26. package/input-number/index.umd.js +18 -18
  27. package/mention/index.es.js +20 -39
  28. package/mention/index.umd.js +18 -18
  29. package/modal/index.es.js +18 -37
  30. package/modal/index.umd.js +2 -2
  31. package/overlay/index.es.js +18 -37
  32. package/overlay/index.umd.js +1 -1
  33. package/package.json +2 -2
  34. package/pagination/index.es.js +20 -39
  35. package/pagination/index.umd.js +10 -10
  36. package/popover/index.es.js +20 -39
  37. package/popover/index.umd.js +14 -14
  38. package/radio/index.es.js +20 -39
  39. package/radio/index.umd.js +17 -17
  40. package/search/index.es.js +20 -39
  41. package/search/index.umd.js +12 -12
  42. package/select/index.es.js +20 -39
  43. package/select/index.umd.js +16 -16
  44. package/splitter/index.es.js +20 -39
  45. package/splitter/index.umd.js +16 -16
  46. package/switch/index.es.js +20 -39
  47. package/switch/index.umd.js +12 -12
  48. package/table/index.es.js +20 -39
  49. package/table/index.umd.js +10 -10
  50. package/textarea/index.es.js +20 -39
  51. package/textarea/index.umd.js +15 -15
  52. package/time-picker/index.es.js +20 -39
  53. package/time-picker/index.umd.js +16 -16
  54. package/time-select/index.es.js +20 -39
  55. package/time-select/index.umd.js +10 -10
  56. package/tooltip/index.es.js +20 -39
  57. package/tooltip/index.umd.js +17 -17
  58. package/tree/index.es.js +20 -39
  59. package/tree/index.umd.js +12 -12
  60. package/vue-devui.es.js +19 -38
  61. package/vue-devui.umd.js +63 -63
@@ -35,7 +35,7 @@ var __publicField = (obj, key, value) => {
35
35
  };
36
36
  import { ref, nextTick, defineComponent, watch, provide, reactive, toRefs, createVNode, onUnmounted, Transition, mergeProps, unref, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, computed, onMounted, Teleport, createTextVNode, onBeforeUnmount, render, getCurrentInstance, resolveDirective, vShow, resolveDynamicComponent, isVNode } from "vue";
37
37
  import "clipboard";
38
- import { offset, autoPlacement, arrow, shift, computePosition } from "@floating-ui/dom";
38
+ import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
39
39
  const defaultFormatter = (item) => {
40
40
  if (typeof item === "string") {
41
41
  return item;
@@ -4389,7 +4389,7 @@ var lodash = { exports: {} };
4389
4389
  var delay = baseRest(function(func, wait, args) {
4390
4390
  return baseDelay(func, toNumber(wait) || 0, args);
4391
4391
  });
4392
- function flip(func) {
4392
+ function flip2(func) {
4393
4393
  return createWrap(func, WRAP_FLIP_FLAG);
4394
4394
  }
4395
4395
  function memoize(func, resolver) {
@@ -5513,7 +5513,7 @@ var lodash = { exports: {} };
5513
5513
  lodash2.flatten = flatten;
5514
5514
  lodash2.flattenDeep = flattenDeep;
5515
5515
  lodash2.flattenDepth = flattenDepth;
5516
- lodash2.flip = flip;
5516
+ lodash2.flip = flip2;
5517
5517
  lodash2.flow = flow;
5518
5518
  lodash2.flowRight = flowRight;
5519
5519
  lodash2.fromPairs = fromPairs;
@@ -6221,16 +6221,6 @@ const flexibleOverlayProps = {
6221
6221
  default: false
6222
6222
  }
6223
6223
  };
6224
- function getScrollParent(element) {
6225
- const overflowRegex = /(auto|scroll|hidden)/;
6226
- for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
6227
- const style = window.getComputedStyle(parent);
6228
- if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
6229
- return parent;
6230
- }
6231
- }
6232
- return window;
6233
- }
6234
6224
  function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
6235
6225
  let { x, y } = point;
6236
6226
  if (!isArrowCenter) {
@@ -6251,9 +6241,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
6251
6241
  return { x, y };
6252
6242
  }
6253
6243
  function useOverlay(props, emit) {
6244
+ const { position, showArrow } = toRefs(props);
6254
6245
  const overlayRef = ref();
6255
6246
  const arrowRef = ref();
6256
- let originParent = null;
6257
6247
  const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
6258
6248
  const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
6259
6249
  const staticSide = {
@@ -6274,51 +6264,42 @@ function useOverlay(props, emit) {
6274
6264
  const hostEl = props.origin;
6275
6265
  const overlayEl = unref(overlayRef.value);
6276
6266
  const arrowEl = unref(arrowRef.value);
6277
- const middleware = [
6278
- offset(props.offset),
6279
- autoPlacement({
6280
- alignment: props.align,
6281
- allowedPlacements: props.position
6282
- })
6283
- ];
6284
- props.showArrow && middleware.push(arrow({ element: arrowEl }));
6285
- props.shiftOffset !== void 0 && middleware.push(shift());
6286
- if (!overlayEl) {
6287
- return;
6267
+ const [mainPosition, ...fallbackPosition] = position.value;
6268
+ const middleware = [offset(props.offset)];
6269
+ middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
6270
+ if (showArrow.value) {
6271
+ middleware.push(arrow({ element: arrowRef.value }));
6288
6272
  }
6289
6273
  const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
6290
6274
  strategy: "fixed",
6275
+ placement: mainPosition,
6291
6276
  middleware
6292
6277
  });
6293
6278
  let applyX = x;
6294
6279
  let applyY = y;
6295
- if (props.shiftOffset !== void 0) {
6296
- const { x: shiftX, y: shiftY } = middlewareData.shift;
6297
- shiftX < 0 && (applyX -= props.shiftOffset);
6298
- shiftX > 0 && (applyX += props.shiftOffset);
6299
- shiftY < 0 && (applyY -= props.shiftOffset);
6300
- shiftY > 0 && (applyY += props.shiftOffset);
6301
- }
6302
6280
  emit("positionChange", placement);
6303
6281
  Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
6304
6282
  props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
6305
6283
  };
6284
+ const scrollCallback = (e) => {
6285
+ var _a, _b;
6286
+ const scrollElement = e.target;
6287
+ if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
6288
+ updatePosition();
6289
+ }
6290
+ };
6306
6291
  watch(() => props.modelValue, () => {
6307
6292
  if (props.modelValue && props.origin) {
6308
- originParent = getScrollParent(props.origin);
6309
6293
  nextTick(updatePosition);
6310
- originParent == null ? void 0 : originParent.addEventListener("scroll", updatePosition);
6311
- originParent !== window && window.addEventListener("scroll", updatePosition);
6294
+ window.addEventListener("scroll", scrollCallback, true);
6312
6295
  window.addEventListener("resize", updatePosition);
6313
6296
  } else {
6314
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
6315
- originParent !== window && window.removeEventListener("scroll", updatePosition);
6297
+ window.removeEventListener("scroll", scrollCallback, true);
6316
6298
  window.removeEventListener("resize", updatePosition);
6317
6299
  }
6318
6300
  });
6319
6301
  onUnmounted(() => {
6320
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
6321
- originParent !== window && window.removeEventListener("scroll", updatePosition);
6302
+ window.removeEventListener("scroll", scrollCallback, true);
6322
6303
  window.removeEventListener("resize", updatePosition);
6323
6304
  });
6324
6305
  return { arrowRef, overlayRef, updatePosition };