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
package/radio/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, toRef, isVNode } 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 radioCommonProps = {
36
36
  modelValue: {
37
37
  type: [Number, String, Boolean],
@@ -4052,7 +4052,7 @@ var lodash = { exports: {} };
4052
4052
  var delay = baseRest(function(func, wait, args) {
4053
4053
  return baseDelay(func, toNumber(wait) || 0, args);
4054
4054
  });
4055
- function flip(func) {
4055
+ function flip2(func) {
4056
4056
  return createWrap(func, WRAP_FLIP_FLAG);
4057
4057
  }
4058
4058
  function memoize(func, resolver) {
@@ -5176,7 +5176,7 @@ var lodash = { exports: {} };
5176
5176
  lodash2.flatten = flatten;
5177
5177
  lodash2.flattenDeep = flattenDeep;
5178
5178
  lodash2.flattenDepth = flattenDepth;
5179
- lodash2.flip = flip;
5179
+ lodash2.flip = flip2;
5180
5180
  lodash2.flow = flow;
5181
5181
  lodash2.flowRight = flowRight;
5182
5182
  lodash2.fromPairs = fromPairs;
@@ -5884,16 +5884,6 @@ const flexibleOverlayProps = {
5884
5884
  default: false
5885
5885
  }
5886
5886
  };
5887
- function getScrollParent(element) {
5888
- const overflowRegex = /(auto|scroll|hidden)/;
5889
- for (let parent = element; parent = parent.parentElement; parent.parentElement !== document.body) {
5890
- const style = window.getComputedStyle(parent);
5891
- if (overflowRegex.test(style.overflow + style.overflowX + style.overflowY)) {
5892
- return parent;
5893
- }
5894
- }
5895
- return window;
5896
- }
5897
5887
  function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
5898
5888
  let { x, y } = point;
5899
5889
  if (!isArrowCenter) {
@@ -5914,9 +5904,9 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
5914
5904
  return { x, y };
5915
5905
  }
5916
5906
  function useOverlay(props, emit) {
5907
+ const { position, showArrow } = toRefs(props);
5917
5908
  const overlayRef = ref();
5918
5909
  const arrowRef = ref();
5919
- let originParent = null;
5920
5910
  const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
5921
5911
  const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
5922
5912
  const staticSide = {
@@ -5937,51 +5927,42 @@ function useOverlay(props, emit) {
5937
5927
  const hostEl = props.origin;
5938
5928
  const overlayEl = unref(overlayRef.value);
5939
5929
  const arrowEl = unref(arrowRef.value);
5940
- const middleware = [
5941
- offset(props.offset),
5942
- autoPlacement({
5943
- alignment: props.align,
5944
- allowedPlacements: props.position
5945
- })
5946
- ];
5947
- props.showArrow && middleware.push(arrow({ element: arrowEl }));
5948
- props.shiftOffset !== void 0 && middleware.push(shift());
5949
- if (!overlayEl) {
5950
- return;
5930
+ const [mainPosition, ...fallbackPosition] = position.value;
5931
+ const middleware = [offset(props.offset)];
5932
+ middleware.push(fallbackPosition.length ? flip({ fallbackPlacements: fallbackPosition }) : flip());
5933
+ if (showArrow.value) {
5934
+ middleware.push(arrow({ element: arrowRef.value }));
5951
5935
  }
5952
5936
  const { x, y, placement, middlewareData } = await computePosition(hostEl, overlayEl, {
5953
5937
  strategy: "fixed",
5938
+ placement: mainPosition,
5954
5939
  middleware
5955
5940
  });
5956
5941
  let applyX = x;
5957
5942
  let applyY = y;
5958
- if (props.shiftOffset !== void 0) {
5959
- const { x: shiftX, y: shiftY } = middlewareData.shift;
5960
- shiftX < 0 && (applyX -= props.shiftOffset);
5961
- shiftX > 0 && (applyX += props.shiftOffset);
5962
- shiftY < 0 && (applyY -= props.shiftOffset);
5963
- shiftY > 0 && (applyY += props.shiftOffset);
5964
- }
5965
5943
  emit("positionChange", placement);
5966
5944
  Object.assign(overlayEl.style, { top: `${applyY}px`, left: `${applyX}px` });
5967
5945
  props.showArrow && updateArrowPosition(arrowEl, placement, middlewareData.arrow, overlayEl);
5968
5946
  };
5947
+ const scrollCallback = (e) => {
5948
+ var _a, _b;
5949
+ const scrollElement = e.target;
5950
+ if (scrollElement == null ? void 0 : scrollElement.contains((_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin)) {
5951
+ updatePosition();
5952
+ }
5953
+ };
5969
5954
  watch(() => props.modelValue, () => {
5970
5955
  if (props.modelValue && props.origin) {
5971
- originParent = getScrollParent(props.origin);
5972
5956
  nextTick(updatePosition);
5973
- originParent == null ? void 0 : originParent.addEventListener("scroll", updatePosition);
5974
- originParent !== window && window.addEventListener("scroll", updatePosition);
5957
+ window.addEventListener("scroll", scrollCallback, true);
5975
5958
  window.addEventListener("resize", updatePosition);
5976
5959
  } else {
5977
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
5978
- originParent !== window && window.removeEventListener("scroll", updatePosition);
5960
+ window.removeEventListener("scroll", scrollCallback, true);
5979
5961
  window.removeEventListener("resize", updatePosition);
5980
5962
  }
5981
5963
  });
5982
5964
  onUnmounted(() => {
5983
- originParent == null ? void 0 : originParent.removeEventListener("scroll", updatePosition);
5984
- originParent !== window && window.removeEventListener("scroll", updatePosition);
5965
+ window.removeEventListener("scroll", scrollCallback, true);
5985
5966
  window.removeEventListener("resize", updatePosition);
5986
5967
  });
5987
5968
  return { arrowRef, overlayRef, updatePosition };