vue-devui 1.6.15 → 1.6.17
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 +41 -4
- package/auto-complete/index.umd.js +12 -12
- package/breadcrumb/index.es.js +40 -3
- package/breadcrumb/index.umd.js +1 -1
- package/category-search/index.es.js +74 -6
- package/category-search/index.umd.js +21 -21
- package/checkbox/index.es.js +41 -4
- package/checkbox/index.umd.js +16 -16
- package/code-review/index.es.js +41 -4
- package/code-review/index.umd.js +17 -17
- package/data-grid/index.es.js +41 -4
- package/data-grid/index.umd.js +14 -14
- package/date-picker-pro/index.es.js +41 -4
- package/date-picker-pro/index.umd.js +8 -8
- package/dropdown/index.es.js +40 -3
- package/dropdown/index.umd.js +1 -1
- package/editable-select/index.es.js +48 -8
- package/editable-select/index.umd.js +15 -15
- package/editor-md/index.es.js +50 -6
- package/editor-md/index.umd.js +26 -26
- package/form/index.es.js +41 -4
- package/form/index.umd.js +14 -14
- package/input/index.es.js +40 -3
- package/input/index.umd.js +19 -19
- package/input-number/index.es.js +41 -4
- package/input-number/index.umd.js +18 -18
- package/mention/index.es.js +41 -4
- package/mention/index.umd.js +19 -19
- package/message/index.es.js +13 -13
- package/message/index.umd.js +1 -1
- package/modal/index.es.js +40 -3
- package/modal/index.umd.js +2 -2
- package/overlay/index.es.js +41 -4
- package/overlay/index.umd.js +1 -1
- package/package.json +2 -1
- package/pagination/index.es.js +58 -21
- package/pagination/index.umd.js +17 -17
- package/pagination/style.css +1 -1
- package/popover/index.es.js +41 -4
- package/popover/index.umd.js +9 -9
- package/radio/index.es.js +41 -4
- package/radio/index.umd.js +17 -17
- package/search/index.es.js +41 -4
- package/search/index.umd.js +17 -17
- package/select/index.es.js +58 -21
- package/select/index.umd.js +19 -19
- package/select/style.css +1 -1
- package/splitter/index.es.js +41 -4
- package/splitter/index.umd.js +15 -15
- package/style.css +1 -1
- package/switch/index.es.js +41 -4
- package/switch/index.umd.js +14 -14
- package/table/index.es.js +40 -3
- package/table/index.umd.js +15 -15
- package/textarea/index.es.js +41 -4
- package/textarea/index.umd.js +16 -16
- package/time-picker/index.es.js +40 -3
- package/time-picker/index.umd.js +15 -15
- package/time-select/index.es.js +58 -21
- package/time-select/index.umd.js +17 -17
- package/time-select/style.css +1 -1
- package/tooltip/index.es.js +41 -4
- package/tooltip/index.umd.js +12 -12
- package/tree/index.es.js +40 -3
- package/tree/index.umd.js +10 -10
- package/types/category-search/src/category-search-types.d.ts +5 -0
- package/types/editable-select/src/editable-select-types.d.ts +3 -0
- package/types/overlay/src/flexible-overlay/flexible-overlay-types.d.ts +5 -6
- package/types/overlay/src/flexible-overlay/index.d.ts +9 -0
- package/types/overlay/src/flexible-overlay/use-flexible-overlay.d.ts +11 -2
- package/types/select/src/composables/use-select-content.d.ts +21 -2
- package/types/select/src/select-types.d.ts +7 -44
- package/types/select/src/use-select.d.ts +26 -2
- package/vue-devui.es.js +122 -44
- package/vue-devui.umd.js +74 -74
|
@@ -33,7 +33,7 @@ var __publicField = (obj, key, value) => {
|
|
|
33
33
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
34
34
|
return value;
|
|
35
35
|
};
|
|
36
|
-
import { defineComponent, watch, provide, reactive, toRefs, createVNode, onUnmounted, Transition, mergeProps, ref, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode,
|
|
36
|
+
import { defineComponent, watch, provide, reactive, toRefs, createVNode, onUnmounted, Transition, mergeProps, ref, computed, unref, nextTick, withModifiers, Comment, Text, h, Fragment, inject, withDirectives, cloneVNode, onMounted, Teleport, createTextVNode, onBeforeUnmount, shallowRef, resolveDynamicComponent, getCurrentInstance, resolveDirective, onBeforeMount, isVNode, onUpdated, toRaw, watchEffect, render, resolveComponent, vShow, toRef, renderSlot, useSlots } from "vue";
|
|
37
37
|
import { onClickOutside } from "@vueuse/core";
|
|
38
38
|
import "clipboard";
|
|
39
39
|
import { offset, flip, arrow, computePosition } from "@floating-ui/dom";
|
|
@@ -6144,6 +6144,10 @@ const flexibleOverlayProps = {
|
|
|
6144
6144
|
clickEventBubble: {
|
|
6145
6145
|
type: Boolean,
|
|
6146
6146
|
default: false
|
|
6147
|
+
},
|
|
6148
|
+
fitOriginWidth: {
|
|
6149
|
+
type: Boolean,
|
|
6150
|
+
default: false
|
|
6147
6151
|
}
|
|
6148
6152
|
};
|
|
6149
6153
|
function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
@@ -6166,9 +6170,18 @@ function adjustArrowPosition(isArrowCenter, point, placement, originRect) {
|
|
|
6166
6170
|
return { x, y };
|
|
6167
6171
|
}
|
|
6168
6172
|
function useOverlay(props, emit) {
|
|
6169
|
-
const { position, showArrow } = toRefs(props);
|
|
6173
|
+
const { fitOriginWidth, position, showArrow } = toRefs(props);
|
|
6170
6174
|
const overlayRef = ref();
|
|
6171
6175
|
const arrowRef = ref();
|
|
6176
|
+
const overlayWidth = ref(0);
|
|
6177
|
+
let originObserver;
|
|
6178
|
+
const styles = computed(() => {
|
|
6179
|
+
if (fitOriginWidth.value) {
|
|
6180
|
+
return { width: overlayWidth.value + "px" };
|
|
6181
|
+
} else {
|
|
6182
|
+
return {};
|
|
6183
|
+
}
|
|
6184
|
+
});
|
|
6172
6185
|
const updateArrowPosition = (arrowEl, placement, point, overlayEl) => {
|
|
6173
6186
|
const { x, y } = adjustArrowPosition(props.isArrowCenter, point, placement, overlayEl.getBoundingClientRect());
|
|
6174
6187
|
const staticSide = {
|
|
@@ -6213,21 +6226,43 @@ function useOverlay(props, emit) {
|
|
|
6213
6226
|
updatePosition();
|
|
6214
6227
|
}
|
|
6215
6228
|
};
|
|
6229
|
+
const updateWidth = (originEl) => {
|
|
6230
|
+
overlayWidth.value = originEl.getBoundingClientRect().width;
|
|
6231
|
+
updatePosition();
|
|
6232
|
+
};
|
|
6233
|
+
const observeOrigin = () => {
|
|
6234
|
+
var _a, _b;
|
|
6235
|
+
if (fitOriginWidth.value && typeof window !== "undefined") {
|
|
6236
|
+
const originEl = (_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin;
|
|
6237
|
+
if (originEl) {
|
|
6238
|
+
originObserver = new window.ResizeObserver(() => updateWidth(originEl));
|
|
6239
|
+
originObserver.observe(originEl);
|
|
6240
|
+
}
|
|
6241
|
+
}
|
|
6242
|
+
};
|
|
6243
|
+
const unobserveOrigin = () => {
|
|
6244
|
+
var _a, _b;
|
|
6245
|
+
const originEl = (_b = (_a = props.origin) == null ? void 0 : _a.$el) != null ? _b : props.origin;
|
|
6246
|
+
originEl && (originObserver == null ? void 0 : originObserver.unobserve(originEl));
|
|
6247
|
+
};
|
|
6216
6248
|
watch(() => props.modelValue, () => {
|
|
6217
6249
|
if (props.modelValue && props.origin) {
|
|
6218
6250
|
nextTick(updatePosition);
|
|
6219
6251
|
window.addEventListener("scroll", scrollCallback, true);
|
|
6220
6252
|
window.addEventListener("resize", updatePosition);
|
|
6253
|
+
observeOrigin();
|
|
6221
6254
|
} else {
|
|
6222
6255
|
window.removeEventListener("scroll", scrollCallback, true);
|
|
6223
6256
|
window.removeEventListener("resize", updatePosition);
|
|
6257
|
+
unobserveOrigin();
|
|
6224
6258
|
}
|
|
6225
6259
|
});
|
|
6226
6260
|
onUnmounted(() => {
|
|
6227
6261
|
window.removeEventListener("scroll", scrollCallback, true);
|
|
6228
6262
|
window.removeEventListener("resize", updatePosition);
|
|
6263
|
+
unobserveOrigin();
|
|
6229
6264
|
});
|
|
6230
|
-
return { arrowRef, overlayRef, updatePosition };
|
|
6265
|
+
return { arrowRef, overlayRef, styles, updatePosition };
|
|
6231
6266
|
}
|
|
6232
6267
|
var flexibleOverlay = "";
|
|
6233
6268
|
const FlexibleOverlay = defineComponent({
|
|
@@ -6248,6 +6283,7 @@ const FlexibleOverlay = defineComponent({
|
|
|
6248
6283
|
const {
|
|
6249
6284
|
arrowRef,
|
|
6250
6285
|
overlayRef,
|
|
6286
|
+
styles,
|
|
6251
6287
|
updatePosition
|
|
6252
6288
|
} = useOverlay(props, emit);
|
|
6253
6289
|
expose({
|
|
@@ -6257,7 +6293,8 @@ const FlexibleOverlay = defineComponent({
|
|
|
6257
6293
|
var _a;
|
|
6258
6294
|
return props.modelValue && createVNode("div", mergeProps({
|
|
6259
6295
|
"ref": overlayRef,
|
|
6260
|
-
"class": ns2.b()
|
|
6296
|
+
"class": ns2.b(),
|
|
6297
|
+
"style": styles.value
|
|
6261
6298
|
}, attrs, {
|
|
6262
6299
|
"onClick": withModifiers(() => ({}), [clickEventBubble.value ? "" : "stop"]),
|
|
6263
6300
|
"onPointerup": withModifiers(() => ({}), ["stop"])
|