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
@@ -31,7 +31,7 @@ var __objRest = (source, exclude) => {
31
31
  };
32
32
  import { createVNode, defineComponent, watch, provide, reactive, toRefs, onUnmounted, Transition, mergeProps, ref, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, computed, onMounted, Teleport, createTextVNode, onBeforeUnmount } from "vue";
33
33
  import "clipboard";
34
- import { offset, autoPlacement, arrow, shift, computePosition } from "@floating-ui/dom";
34
+ import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
35
35
  const inputNumberProps = {
36
36
  placeholder: {
37
37
  type: String
@@ -4095,7 +4095,7 @@ var lodash = { exports: {} };
4095
4095
  var delay = baseRest(function(func, wait, args) {
4096
4096
  return baseDelay(func, toNumber(wait) || 0, args);
4097
4097
  });
4098
- function flip(func) {
4098
+ function flip2(func) {
4099
4099
  return createWrap(func, WRAP_FLIP_FLAG);
4100
4100
  }
4101
4101
  function memoize(func, resolver) {
@@ -5219,7 +5219,7 @@ var lodash = { exports: {} };
5219
5219
  lodash2.flatten = flatten;
5220
5220
  lodash2.flattenDeep = flattenDeep;
5221
5221
  lodash2.flattenDepth = flattenDepth;
5222
- lodash2.flip = flip;
5222
+ lodash2.flip = flip2;
5223
5223
  lodash2.flow = flow;
5224
5224
  lodash2.flowRight = flowRight;
5225
5225
  lodash2.fromPairs = fromPairs;
@@ -5904,16 +5904,6 @@ const flexibleOverlayProps = {
5904
5904
  default: false
5905
5905
  }
5906
5906
  };
5907
- function getScrollParent(element) {
5908
- const overflowRegex = /(auto|scroll|hidden)/;
5909
- for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
5910
- const style = window.getComputedStyle(parent);
5911
- if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
5912
- return parent;
5913
- }
5914
- }
5915
- return window;
5916
- }
5917
5907
  function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
5918
5908
  let { x, y } = point;
5919
5909
  if (!isArrowCenter) {
@@ -5934,9 +5924,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
5934
5924
  return { x, y };
5935
5925
  }
5936
5926
  function useOverlay(props, emit) {
5927
+ const { position, showArrow } = toRefs(props);
5937
5928
  const overlayRef = ref();
5938
5929
  const arrowRef = ref();
5939
- let originParent = null;
5940
5930
  const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
5941
5931
  const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
5942
5932
  const staticSide = {
@@ -5957,51 +5947,42 @@ function useOverlay(props, emit) {
5957
5947
  const hostEl = props.origin;
5958
5948
  const overlayEl = unref(overlayRef.value);
5959
5949
  const arrowEl = unref(arrowRef.value);
5960
- const middleware = [
5961
- offset(props.offset),
5962
- autoPlacement({
5963
- alignment: props.align,
5964
- allowedPlacements: props.position
5965
- })
5966
- ];
5967
- props.showArrow && middleware.push(arrow({ element: arrowEl }));
5968
- props.shiftOffset !== void 0 && middleware.push(shift());
5969
- if (!overlayEl) {
5970
- return;
5950
+ const [mainPosition, ...fallbackPosition] = position.value;
5951
+ const middleware = [offset(props.offset)];
5952
+ middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
5953
+ if (showArrow.value) {
5954
+ middleware.push(arrow({ element: arrowRef.value }));
5971
5955
  }
5972
5956
  const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
5973
5957
  strategy: "fixed",
5958
+ placement: mainPosition,
5974
5959
  middleware
5975
5960
  });
5976
5961
  let applyX = x;
5977
5962
  let applyY = y;
5978
- if (props.shiftOffset !== void 0) {
5979
- const { x: shiftX, y: shiftY } = middlewareData.shift;
5980
- shiftX < 0 && (applyX -= props.shiftOffset);
5981
- shiftX > 0 && (applyX += props.shiftOffset);
5982
- shiftY < 0 && (applyY -= props.shiftOffset);
5983
- shiftY > 0 && (applyY += props.shiftOffset);
5984
- }
5985
5963
  emit("positionChange", placement);
5986
5964
  Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
5987
5965
  props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
5988
5966
  };
5967
+ const scrollCallback = (e) => {
5968
+ var _a, _b;
5969
+ const scrollElement = e.target;
5970
+ if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
5971
+ updatePosition();
5972
+ }
5973
+ };
5989
5974
  watch(() => props.modelValue, () => {
5990
5975
  if (props.modelValue && props.origin) {
5991
- originParent = getScrollParent(props.origin);
5992
5976
  nextTick(updatePosition);
5993
- originParent == null ? void 0 : originParent.addEventListener("scroll", updatePosition);
5994
- originParent !== window && window.addEventListener("scroll", updatePosition);
5977
+ window.addEventListener("scroll", scrollCallback, true);
5995
5978
  window.addEventListener("resize", updatePosition);
5996
5979
  } else {
5997
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
5998
- originParent !== window && window.removeEventListener("scroll", updatePosition);
5980
+ window.removeEventListener("scroll", scrollCallback, true);
5999
5981
  window.removeEventListener("resize", updatePosition);
6000
5982
  }
6001
5983
  });
6002
5984
  onUnmounted(() => {
6003
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
6004
- originParent !== window && window.removeEventListener("scroll", updatePosition);
5985
+ window.removeEventListener("scroll", scrollCallback, true);
6005
5986
  window.removeEventListener("resize", updatePosition);
6006
5987
  });
6007
5988
  return { arrowRef, overlayRef, updatePosition };