ninemoon-ui 0.1.3 → 0.1.5
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/dist/directives/index.d.ts +10 -0
- package/dist/index.css +1033 -14
- package/dist/index.d.ts +9 -2
- package/dist/index.es.js +39 -32
- package/dist/index.umd.js +1341 -284
- package/dist/js/date/datepicker.js +1 -1
- package/dist/js/date/datepickerRange.js +1 -1
- package/dist/js/image/image.js +1 -101
- package/dist/js/index/index.js +329 -38
- package/dist/js/popover/popover.js +1 -99
- package/dist/js/scrollBar/scrollBar.js +1 -1
- package/dist/js/select/select.js +1 -59
- package/package.json +1 -1
- /package/dist/{components/scrollloading → directives}/scrolllead.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, defineAsyncComponent, computed, ref, openBlock, createBlock, unref, withCtx, createElementVNode, createVNode, normalizeClass, withKeys, createElementBlock, createCommentVNode, toDisplayString, withDirectives, vShow, TransitionGroup, Fragment, renderList, nextTick } from "vue";
|
|
2
|
-
import { g as getNewArray,
|
|
2
|
+
import { g as getNewArray, e as checkinputDate, f as formatDate } from "../index/index.js";
|
|
3
3
|
import { g as getMonthDays, C as Calendar, A as Arrow, a as addZero } from "../calendar/calendar.js";
|
|
4
4
|
import { A as ArrowPlug } from "../dateArrowplus/dateArrowplus.js";
|
|
5
5
|
const _hoisted_1 = { class: "flex items-center justify-between p-3" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, defineAsyncComponent, computed, ref, openBlock, createBlock, unref, withCtx, createElementVNode, createVNode, normalizeClass, toDisplayString, createTextVNode, createElementBlock, Fragment, renderList, nextTick } from "vue";
|
|
2
|
-
import { f as formatDate, g as getNewArray,
|
|
2
|
+
import { f as formatDate, g as getNewArray, e as checkinputDate } from "../index/index.js";
|
|
3
3
|
import { g as getMonthDays, C as Calendar, A as Arrow, a as addZero } from "../calendar/calendar.js";
|
|
4
4
|
import { A as ArrowPlug } from "../dateArrowplus/dateArrowplus.js";
|
|
5
5
|
const _hoisted_1 = { class: "flex justify-between items-center p-3" };
|
package/dist/js/image/image.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { openBlock, createElementBlock, createElementVNode, defineComponent, ref, watch, Fragment, createVNode, createCommentVNode, renderSlot, createBlock, Teleport, Transition, withCtx, withDirectives, withModifiers, normalizeStyle, normalizeClass, unref } from "vue";
|
|
2
|
-
import { _ as _export_sfc,
|
|
2
|
+
import { _ as _export_sfc, b as createDraggableDirective, d as createWheelDirective } from "../index/index.js";
|
|
3
3
|
import { d as delIcon } from "../delete/delete.js";
|
|
4
4
|
const _sfc_main$3 = {};
|
|
5
5
|
const _hoisted_1$3 = {
|
|
@@ -48,106 +48,6 @@ function _sfc_render(_ctx, _cache) {
|
|
|
48
48
|
]));
|
|
49
49
|
}
|
|
50
50
|
const turnRightIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render]]);
|
|
51
|
-
const DEFAULT_THROTTLE_WAIT = 60;
|
|
52
|
-
const createDraggableDirective = (options) => {
|
|
53
|
-
const config = {
|
|
54
|
-
throttleWait: DEFAULT_THROTTLE_WAIT,
|
|
55
|
-
resetOnEnd: false,
|
|
56
|
-
onDrag: () => {
|
|
57
|
-
},
|
|
58
|
-
// default implementation
|
|
59
|
-
...options
|
|
60
|
-
};
|
|
61
|
-
const bindEvents = (el, binding) => {
|
|
62
|
-
if (el.__draggable_handlers__)
|
|
63
|
-
return;
|
|
64
|
-
let startX = 0;
|
|
65
|
-
let startY = 0;
|
|
66
|
-
let initialX = 0;
|
|
67
|
-
let initialY = 0;
|
|
68
|
-
const handleMove = throttle((e) => {
|
|
69
|
-
e.preventDefault();
|
|
70
|
-
const deltaX = e.pageX - startX;
|
|
71
|
-
const deltaY = e.pageY - startY;
|
|
72
|
-
config.onDrag({
|
|
73
|
-
x: deltaX + initialX,
|
|
74
|
-
y: deltaY + initialY
|
|
75
|
-
});
|
|
76
|
-
}, config.throttleWait);
|
|
77
|
-
const handleDown = (e) => {
|
|
78
|
-
var _a;
|
|
79
|
-
e.preventDefault();
|
|
80
|
-
const rect = el.getBoundingClientRect();
|
|
81
|
-
initialX = rect.left + window.scrollX;
|
|
82
|
-
initialY = rect.top + window.scrollY;
|
|
83
|
-
startX = e.pageX;
|
|
84
|
-
startY = e.pageY;
|
|
85
|
-
(_a = config.onDragStart) == null ? void 0 : _a.call(config, { x: initialX, y: initialY });
|
|
86
|
-
window.addEventListener("mousemove", handleMove);
|
|
87
|
-
window.addEventListener("mouseup", handleUp);
|
|
88
|
-
};
|
|
89
|
-
const handleUp = () => {
|
|
90
|
-
var _a;
|
|
91
|
-
window.removeEventListener("mousemove", handleMove);
|
|
92
|
-
window.removeEventListener("mouseup", handleUp);
|
|
93
|
-
if (config.resetOnEnd) {
|
|
94
|
-
config.onDrag({ x: initialX, y: initialY });
|
|
95
|
-
}
|
|
96
|
-
(_a = config.onDragEnd) == null ? void 0 : _a.call(config, { x: initialX, y: initialY });
|
|
97
|
-
};
|
|
98
|
-
el.__draggable_handlers__ = {
|
|
99
|
-
move: handleMove,
|
|
100
|
-
up: handleUp
|
|
101
|
-
};
|
|
102
|
-
el.addEventListener("mousedown", handleDown);
|
|
103
|
-
};
|
|
104
|
-
const unbindEvents = (el) => {
|
|
105
|
-
if (el.__draggable_handlers__) {
|
|
106
|
-
window.removeEventListener("mousemove", el.__draggable_handlers__.move);
|
|
107
|
-
window.removeEventListener("mouseup", el.__draggable_handlers__.up);
|
|
108
|
-
delete el.__draggable_handlers__;
|
|
109
|
-
}
|
|
110
|
-
};
|
|
111
|
-
return {
|
|
112
|
-
mounted(el, binding) {
|
|
113
|
-
bindEvents(el);
|
|
114
|
-
},
|
|
115
|
-
beforeUnmount(el) {
|
|
116
|
-
unbindEvents(el);
|
|
117
|
-
}
|
|
118
|
-
};
|
|
119
|
-
};
|
|
120
|
-
const createWheelDirective = (options) => {
|
|
121
|
-
const config = {
|
|
122
|
-
onWheel: () => {
|
|
123
|
-
},
|
|
124
|
-
...options
|
|
125
|
-
};
|
|
126
|
-
const bindEvents = (el, binding) => {
|
|
127
|
-
const wheelHandler = (e) => {
|
|
128
|
-
e.preventDefault();
|
|
129
|
-
config.onWheel(e);
|
|
130
|
-
};
|
|
131
|
-
el._wheel_handlers_ = {
|
|
132
|
-
wheel: wheelHandler
|
|
133
|
-
};
|
|
134
|
-
el.addEventListener("wheel", wheelHandler);
|
|
135
|
-
};
|
|
136
|
-
const unbindEvents = (el) => {
|
|
137
|
-
if (el._wheel_handlers_) {
|
|
138
|
-
el.removeEventListener("wheel", el._wheel_handlers_.wheel);
|
|
139
|
-
delete el._wheel_handlers_;
|
|
140
|
-
}
|
|
141
|
-
};
|
|
142
|
-
return {
|
|
143
|
-
mounted(el, binding) {
|
|
144
|
-
bindEvents(el);
|
|
145
|
-
},
|
|
146
|
-
beforeUnmount(el) {
|
|
147
|
-
unbindEvents(el);
|
|
148
|
-
}
|
|
149
|
-
};
|
|
150
|
-
};
|
|
151
51
|
const _hoisted_1 = { class: "relative inline-block h-full w-full" };
|
|
152
52
|
const _hoisted_2 = ["src"];
|
|
153
53
|
const _hoisted_3 = { key: 0 };
|
package/dist/js/index/index.js
CHANGED
|
@@ -577,6 +577,64 @@ function cleanupLoadingState(el, container, modifiers) {
|
|
|
577
577
|
}
|
|
578
578
|
delete el.__loading_instance__;
|
|
579
579
|
}
|
|
580
|
+
const directionMap = {
|
|
581
|
+
ArrowUp: "up",
|
|
582
|
+
Up: "up",
|
|
583
|
+
// IE/Edge 兼容
|
|
584
|
+
ArrowDown: "down",
|
|
585
|
+
Down: "down",
|
|
586
|
+
// IE/Edge 兼容
|
|
587
|
+
ArrowLeft: "left",
|
|
588
|
+
Left: "left",
|
|
589
|
+
// IE/Edge 兼容
|
|
590
|
+
ArrowRight: "right",
|
|
591
|
+
Right: "right"
|
|
592
|
+
// IE/Edge 兼容
|
|
593
|
+
};
|
|
594
|
+
const createArrowKeysDirective = (options) => {
|
|
595
|
+
const config = {
|
|
596
|
+
// 默认配置
|
|
597
|
+
up: () => {
|
|
598
|
+
},
|
|
599
|
+
down: () => {
|
|
600
|
+
},
|
|
601
|
+
left: () => {
|
|
602
|
+
},
|
|
603
|
+
right: () => {
|
|
604
|
+
},
|
|
605
|
+
...options
|
|
606
|
+
};
|
|
607
|
+
const bindEvents = (el, binding) => {
|
|
608
|
+
const handler = (e) => {
|
|
609
|
+
var _a;
|
|
610
|
+
const direction = directionMap[e.key];
|
|
611
|
+
if (direction && config[direction]) {
|
|
612
|
+
e.preventDefault();
|
|
613
|
+
(_a = config[direction]) == null ? void 0 : _a.call(config, e);
|
|
614
|
+
}
|
|
615
|
+
};
|
|
616
|
+
el._arrowKeysHandler = handler;
|
|
617
|
+
document.addEventListener("keydown", handler);
|
|
618
|
+
};
|
|
619
|
+
const unbindEvents = (el) => {
|
|
620
|
+
if (el._arrowKeysHandler) {
|
|
621
|
+
document.removeEventListener("keydown", el._arrowKeysHandler);
|
|
622
|
+
}
|
|
623
|
+
delete el._arrowKeysHandler;
|
|
624
|
+
};
|
|
625
|
+
return {
|
|
626
|
+
mounted(el, binding) {
|
|
627
|
+
bindEvents(el);
|
|
628
|
+
},
|
|
629
|
+
updated(el, binding) {
|
|
630
|
+
unbindEvents(el);
|
|
631
|
+
bindEvents(el);
|
|
632
|
+
},
|
|
633
|
+
unmounted(el) {
|
|
634
|
+
unbindEvents(el);
|
|
635
|
+
}
|
|
636
|
+
};
|
|
637
|
+
};
|
|
580
638
|
function debounce(func, wait) {
|
|
581
639
|
let timeout;
|
|
582
640
|
return function() {
|
|
@@ -785,11 +843,131 @@ const useResizeObserver = (callback) => {
|
|
|
785
843
|
};
|
|
786
844
|
return { observe, unobserve };
|
|
787
845
|
};
|
|
788
|
-
const
|
|
846
|
+
const DEFAULT_THROTTLE_WAIT = 60;
|
|
847
|
+
const createDraggableDirective = (options) => {
|
|
848
|
+
const config = {
|
|
849
|
+
throttleWait: DEFAULT_THROTTLE_WAIT,
|
|
850
|
+
resetOnEnd: false,
|
|
851
|
+
onDrag: () => {
|
|
852
|
+
},
|
|
853
|
+
// default implementation
|
|
854
|
+
...options
|
|
855
|
+
};
|
|
856
|
+
const bindEvents = (el, binding) => {
|
|
857
|
+
if (el.__draggable_handlers__)
|
|
858
|
+
return;
|
|
859
|
+
let startX = 0;
|
|
860
|
+
let startY = 0;
|
|
861
|
+
let initialX = 0;
|
|
862
|
+
let initialY = 0;
|
|
863
|
+
const handleMove = throttle((e) => {
|
|
864
|
+
e.preventDefault();
|
|
865
|
+
const deltaX = e.pageX - startX;
|
|
866
|
+
const deltaY = e.pageY - startY;
|
|
867
|
+
config.onDrag({
|
|
868
|
+
x: deltaX + initialX,
|
|
869
|
+
y: deltaY + initialY
|
|
870
|
+
});
|
|
871
|
+
}, config.throttleWait);
|
|
872
|
+
const handleDown = (e) => {
|
|
873
|
+
var _a;
|
|
874
|
+
e.preventDefault();
|
|
875
|
+
const rect = el.getBoundingClientRect();
|
|
876
|
+
initialX = rect.left + window.scrollX;
|
|
877
|
+
initialY = rect.top + window.scrollY;
|
|
878
|
+
startX = e.pageX;
|
|
879
|
+
startY = e.pageY;
|
|
880
|
+
(_a = config.onDragStart) == null ? void 0 : _a.call(config, { x: initialX, y: initialY });
|
|
881
|
+
window.addEventListener("mousemove", handleMove);
|
|
882
|
+
window.addEventListener("mouseup", handleUp);
|
|
883
|
+
};
|
|
884
|
+
const handleUp = () => {
|
|
885
|
+
var _a;
|
|
886
|
+
window.removeEventListener("mousemove", handleMove);
|
|
887
|
+
window.removeEventListener("mouseup", handleUp);
|
|
888
|
+
if (config.resetOnEnd) {
|
|
889
|
+
config.onDrag({ x: initialX, y: initialY });
|
|
890
|
+
}
|
|
891
|
+
(_a = config.onDragEnd) == null ? void 0 : _a.call(config, { x: initialX, y: initialY });
|
|
892
|
+
};
|
|
893
|
+
el.__draggable_handlers__ = {
|
|
894
|
+
move: handleMove,
|
|
895
|
+
up: handleUp
|
|
896
|
+
};
|
|
897
|
+
el.addEventListener("mousedown", handleDown);
|
|
898
|
+
};
|
|
899
|
+
const unbindEvents = (el) => {
|
|
900
|
+
if (el.__draggable_handlers__) {
|
|
901
|
+
window.removeEventListener("mousemove", el.__draggable_handlers__.move);
|
|
902
|
+
window.removeEventListener("mouseup", el.__draggable_handlers__.up);
|
|
903
|
+
delete el.__draggable_handlers__;
|
|
904
|
+
}
|
|
905
|
+
};
|
|
906
|
+
return {
|
|
907
|
+
mounted(el, binding) {
|
|
908
|
+
bindEvents(el);
|
|
909
|
+
},
|
|
910
|
+
beforeUnmount(el) {
|
|
911
|
+
unbindEvents(el);
|
|
912
|
+
}
|
|
913
|
+
};
|
|
914
|
+
};
|
|
915
|
+
const DEFAULT_DEBOUNCE_WAIT$2 = 100;
|
|
916
|
+
const createBgClickDirective = (options) => {
|
|
917
|
+
const config = {
|
|
918
|
+
debounceWait: DEFAULT_DEBOUNCE_WAIT$2,
|
|
919
|
+
moveModel: false,
|
|
920
|
+
onCheckOut: () => {
|
|
921
|
+
},
|
|
922
|
+
...options
|
|
923
|
+
};
|
|
924
|
+
const bindEvents = (el, binding) => {
|
|
925
|
+
if (el._checkout_handlers_)
|
|
926
|
+
return;
|
|
927
|
+
const clickDom = debounce((e) => {
|
|
928
|
+
e.preventDefault();
|
|
929
|
+
config.onCheckOut(e, el);
|
|
930
|
+
}, config.debounceWait);
|
|
931
|
+
el._checkout_handlers_ = {
|
|
932
|
+
click: clickDom
|
|
933
|
+
};
|
|
934
|
+
if (config.moveModel) {
|
|
935
|
+
document.addEventListener("mousemove", clickDom);
|
|
936
|
+
} else {
|
|
937
|
+
document.addEventListener("click", clickDom);
|
|
938
|
+
}
|
|
939
|
+
};
|
|
940
|
+
const unbindEvents = (el) => {
|
|
941
|
+
if (el._checkout_handlers_) {
|
|
942
|
+
if (config.moveModel) {
|
|
943
|
+
document.removeEventListener("mousemove", el._checkout_handlers_.click);
|
|
944
|
+
} else {
|
|
945
|
+
document.removeEventListener("click", el._checkout_handlers_.click);
|
|
946
|
+
}
|
|
947
|
+
delete el._checkout_handlers_;
|
|
948
|
+
}
|
|
949
|
+
};
|
|
950
|
+
return {
|
|
951
|
+
mounted(el, binding) {
|
|
952
|
+
bindEvents(el);
|
|
953
|
+
},
|
|
954
|
+
beforeUnmount(el) {
|
|
955
|
+
unbindEvents(el);
|
|
956
|
+
},
|
|
957
|
+
// 添加 updated 钩子处理配置变化
|
|
958
|
+
updated(el, binding) {
|
|
959
|
+
if (binding.value !== binding.oldValue) {
|
|
960
|
+
unbindEvents(el);
|
|
961
|
+
bindEvents(el);
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
const DEFAULT_DEBOUNCE_WAIT$1 = 100;
|
|
789
967
|
const DEFAULT_HOLD = 0;
|
|
790
968
|
const createLoadingDirective = (options) => {
|
|
791
969
|
const config = {
|
|
792
|
-
throttleTime: DEFAULT_DEBOUNCE_WAIT,
|
|
970
|
+
throttleTime: DEFAULT_DEBOUNCE_WAIT$1,
|
|
793
971
|
threshold: DEFAULT_HOLD,
|
|
794
972
|
edge: "bottom",
|
|
795
973
|
onWheel: () => {
|
|
@@ -853,6 +1031,115 @@ const createLoadingDirective = (options) => {
|
|
|
853
1031
|
}
|
|
854
1032
|
};
|
|
855
1033
|
};
|
|
1034
|
+
const DEFAULT_DEBOUNCE_WAIT = 50;
|
|
1035
|
+
const createScrollDirective = (options) => {
|
|
1036
|
+
const config = {
|
|
1037
|
+
debounceWait: DEFAULT_DEBOUNCE_WAIT,
|
|
1038
|
+
onMove: () => {
|
|
1039
|
+
},
|
|
1040
|
+
...options
|
|
1041
|
+
};
|
|
1042
|
+
const bindEvents = (el, binding) => {
|
|
1043
|
+
if (el._watchwindow_handlers_) {
|
|
1044
|
+
return;
|
|
1045
|
+
}
|
|
1046
|
+
const moveDom = debounce((e) => {
|
|
1047
|
+
e.preventDefault();
|
|
1048
|
+
config.onMove();
|
|
1049
|
+
}, config.debounceWait);
|
|
1050
|
+
el._watchwindow_handlers_ = {
|
|
1051
|
+
move: moveDom
|
|
1052
|
+
};
|
|
1053
|
+
window.addEventListener("resize", el._watchwindow_handlers_.move);
|
|
1054
|
+
const scrollContainer = typeof config.scrollContainerId === "string" ? document.querySelector(config.scrollContainerId) || window : window;
|
|
1055
|
+
scrollContainer.addEventListener("scroll", el._watchwindow_handlers_.move);
|
|
1056
|
+
};
|
|
1057
|
+
const unbindEvents = (el) => {
|
|
1058
|
+
if (el._watchwindow_handlers_) {
|
|
1059
|
+
window.removeEventListener("resize", el._watchwindow_handlers_.move);
|
|
1060
|
+
const scrollContainer = typeof config.scrollContainerId === "string" ? document.querySelector(config.scrollContainerId) || window : window;
|
|
1061
|
+
scrollContainer.removeEventListener("scroll", el._watchwindow_handlers_.move);
|
|
1062
|
+
delete el._watchwindow_handlers_;
|
|
1063
|
+
}
|
|
1064
|
+
};
|
|
1065
|
+
return {
|
|
1066
|
+
mounted(el, binding) {
|
|
1067
|
+
bindEvents(el);
|
|
1068
|
+
},
|
|
1069
|
+
beforeUnmount(el) {
|
|
1070
|
+
unbindEvents(el);
|
|
1071
|
+
},
|
|
1072
|
+
// 添加 updated 钩子处理配置变化
|
|
1073
|
+
updated(el, binding) {
|
|
1074
|
+
if (binding.value !== binding.oldValue) {
|
|
1075
|
+
unbindEvents(el);
|
|
1076
|
+
bindEvents(el);
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
};
|
|
1080
|
+
};
|
|
1081
|
+
const createWheelDirective = (options) => {
|
|
1082
|
+
const config = {
|
|
1083
|
+
onWheel: () => {
|
|
1084
|
+
},
|
|
1085
|
+
...options
|
|
1086
|
+
};
|
|
1087
|
+
const bindEvents = (el, binding) => {
|
|
1088
|
+
const wheelHandler = (e) => {
|
|
1089
|
+
e.preventDefault();
|
|
1090
|
+
config.onWheel(e);
|
|
1091
|
+
};
|
|
1092
|
+
el._wheel_handlers_ = {
|
|
1093
|
+
wheel: wheelHandler
|
|
1094
|
+
};
|
|
1095
|
+
el.addEventListener("wheel", wheelHandler);
|
|
1096
|
+
};
|
|
1097
|
+
const unbindEvents = (el) => {
|
|
1098
|
+
if (el._wheel_handlers_) {
|
|
1099
|
+
el.removeEventListener("wheel", el._wheel_handlers_.wheel);
|
|
1100
|
+
delete el._wheel_handlers_;
|
|
1101
|
+
}
|
|
1102
|
+
};
|
|
1103
|
+
return {
|
|
1104
|
+
mounted(el, binding) {
|
|
1105
|
+
bindEvents(el);
|
|
1106
|
+
},
|
|
1107
|
+
beforeUnmount(el) {
|
|
1108
|
+
unbindEvents(el);
|
|
1109
|
+
}
|
|
1110
|
+
};
|
|
1111
|
+
};
|
|
1112
|
+
const createBgClickeDirective = (options) => {
|
|
1113
|
+
const config = {
|
|
1114
|
+
onBgPicture: () => {
|
|
1115
|
+
},
|
|
1116
|
+
...options
|
|
1117
|
+
};
|
|
1118
|
+
const bindEvents = (el, binding) => {
|
|
1119
|
+
const bgPictureHandler = (e) => {
|
|
1120
|
+
e.preventDefault();
|
|
1121
|
+
config.onBgPicture(e);
|
|
1122
|
+
};
|
|
1123
|
+
el._bgPicture_handlers_ = {
|
|
1124
|
+
bgPicture: bgPictureHandler
|
|
1125
|
+
};
|
|
1126
|
+
el.addEventListener("click", bgPictureHandler);
|
|
1127
|
+
};
|
|
1128
|
+
const unbindEvents = (el) => {
|
|
1129
|
+
if (el._bgPicture_handlers_) {
|
|
1130
|
+
el.removeEventListener("click", el._bgPicture_handlers_.bgPicture);
|
|
1131
|
+
delete el._bgPicture_handlers_;
|
|
1132
|
+
}
|
|
1133
|
+
};
|
|
1134
|
+
return {
|
|
1135
|
+
mounted(el, binding) {
|
|
1136
|
+
bindEvents(el);
|
|
1137
|
+
},
|
|
1138
|
+
beforeUnmount(el) {
|
|
1139
|
+
unbindEvents(el);
|
|
1140
|
+
}
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
856
1143
|
const tailwind = "";
|
|
857
1144
|
const LibDialog = defineAsyncComponent(() => import("../dialog/dialog.js"));
|
|
858
1145
|
const LibForm = defineAsyncComponent(() => import("../form/form.js"));
|
|
@@ -913,48 +1200,52 @@ const index = {
|
|
|
913
1200
|
}
|
|
914
1201
|
};
|
|
915
1202
|
export {
|
|
916
|
-
|
|
917
|
-
|
|
1203
|
+
LibBadge as A,
|
|
1204
|
+
LibPopover as B,
|
|
918
1205
|
CloseIcon as C,
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
1206
|
+
LibNumberInput as D,
|
|
1207
|
+
LibRadioBox as E,
|
|
1208
|
+
LibRadioGroup as F,
|
|
1209
|
+
LibCheckGroup as G,
|
|
1210
|
+
LibCheckBox as H,
|
|
1211
|
+
LibUpload as I,
|
|
1212
|
+
LibTabs as J,
|
|
1213
|
+
LibTabsPane as K,
|
|
927
1214
|
LibDialog as L,
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
1215
|
+
LibScrollBar as M,
|
|
1216
|
+
MessageClass as N,
|
|
1217
|
+
AlertFunction as O,
|
|
1218
|
+
LibLoad as P,
|
|
1219
|
+
LibCarousel as Q,
|
|
1220
|
+
LibCarouselItem as R,
|
|
1221
|
+
LibSwitch as S,
|
|
1222
|
+
createLoadingDirective as T,
|
|
1223
|
+
createBgClickeDirective as U,
|
|
933
1224
|
_export_sfc as _,
|
|
934
|
-
|
|
935
|
-
|
|
1225
|
+
createArrowKeysDirective as a,
|
|
1226
|
+
createDraggableDirective as b,
|
|
936
1227
|
createEscapeDirective as c,
|
|
937
|
-
|
|
938
|
-
|
|
1228
|
+
createWheelDirective as d,
|
|
1229
|
+
checkinputDate as e,
|
|
939
1230
|
formatDate as f,
|
|
940
1231
|
getNewArray as g,
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1232
|
+
createScrollDirective as h,
|
|
1233
|
+
createBgClickDirective as i,
|
|
1234
|
+
off as j,
|
|
1235
|
+
useResizeObserver as k,
|
|
1236
|
+
index as l,
|
|
1237
|
+
LibForm as m,
|
|
1238
|
+
LibFormLabel as n,
|
|
948
1239
|
on as o,
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
1240
|
+
LibInput as p,
|
|
1241
|
+
LibSelect as q,
|
|
1242
|
+
LibSelectOption as r,
|
|
1243
|
+
LibTable as s,
|
|
1244
|
+
LibTableItem as t,
|
|
954
1245
|
usePotion as u,
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
1246
|
+
LibImage as v,
|
|
1247
|
+
LibDatePicker as w,
|
|
1248
|
+
LibDatePickerRange as x,
|
|
1249
|
+
LibMenu as y,
|
|
1250
|
+
LibPagination as z
|
|
960
1251
|
};
|
|
@@ -1,103 +1,5 @@
|
|
|
1
1
|
import { defineComponent, h, normalizeClass, normalizeStyle, ref, computed, nextTick, getCurrentInstance, openBlock, createElementBlock, withModifiers, renderSlot, createBlock, Teleport, createVNode, Transition, withCtx, withDirectives, unref, createCommentVNode, vShow } from "vue";
|
|
2
|
-
import {
|
|
3
|
-
const DEFAULT_DEBOUNCE_WAIT$1 = 100;
|
|
4
|
-
const createBgClickDirective = (options) => {
|
|
5
|
-
const config = {
|
|
6
|
-
debounceWait: DEFAULT_DEBOUNCE_WAIT$1,
|
|
7
|
-
moveModel: false,
|
|
8
|
-
onCheckOut: () => {
|
|
9
|
-
},
|
|
10
|
-
...options
|
|
11
|
-
};
|
|
12
|
-
const bindEvents = (el, binding) => {
|
|
13
|
-
if (el._checkout_handlers_)
|
|
14
|
-
return;
|
|
15
|
-
const clickDom = debounce((e) => {
|
|
16
|
-
e.preventDefault();
|
|
17
|
-
config.onCheckOut(e, el);
|
|
18
|
-
}, config.debounceWait);
|
|
19
|
-
el._checkout_handlers_ = {
|
|
20
|
-
click: clickDom
|
|
21
|
-
};
|
|
22
|
-
if (config.moveModel) {
|
|
23
|
-
document.addEventListener("mousemove", clickDom);
|
|
24
|
-
} else {
|
|
25
|
-
document.addEventListener("click", clickDom);
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
const unbindEvents = (el) => {
|
|
29
|
-
if (el._checkout_handlers_) {
|
|
30
|
-
if (config.moveModel) {
|
|
31
|
-
document.removeEventListener("mousemove", el._checkout_handlers_.click);
|
|
32
|
-
} else {
|
|
33
|
-
document.removeEventListener("click", el._checkout_handlers_.click);
|
|
34
|
-
}
|
|
35
|
-
delete el._checkout_handlers_;
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
return {
|
|
39
|
-
mounted(el, binding) {
|
|
40
|
-
bindEvents(el);
|
|
41
|
-
},
|
|
42
|
-
beforeUnmount(el) {
|
|
43
|
-
unbindEvents(el);
|
|
44
|
-
},
|
|
45
|
-
// 添加 updated 钩子处理配置变化
|
|
46
|
-
updated(el, binding) {
|
|
47
|
-
if (binding.value !== binding.oldValue) {
|
|
48
|
-
unbindEvents(el);
|
|
49
|
-
bindEvents(el);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
const DEFAULT_DEBOUNCE_WAIT = 50;
|
|
55
|
-
const createScrollDirective = (options) => {
|
|
56
|
-
const config = {
|
|
57
|
-
debounceWait: DEFAULT_DEBOUNCE_WAIT,
|
|
58
|
-
onMove: () => {
|
|
59
|
-
},
|
|
60
|
-
...options
|
|
61
|
-
};
|
|
62
|
-
const bindEvents = (el, binding) => {
|
|
63
|
-
if (el._watchwindow_handlers_) {
|
|
64
|
-
return;
|
|
65
|
-
}
|
|
66
|
-
const moveDom = debounce((e) => {
|
|
67
|
-
e.preventDefault();
|
|
68
|
-
config.onMove();
|
|
69
|
-
}, config.debounceWait);
|
|
70
|
-
el._watchwindow_handlers_ = {
|
|
71
|
-
move: moveDom
|
|
72
|
-
};
|
|
73
|
-
window.addEventListener("resize", el._watchwindow_handlers_.move);
|
|
74
|
-
const scrollContainer = typeof config.scrollContainerId === "string" ? document.querySelector(config.scrollContainerId) || window : window;
|
|
75
|
-
scrollContainer.addEventListener("scroll", el._watchwindow_handlers_.move);
|
|
76
|
-
};
|
|
77
|
-
const unbindEvents = (el) => {
|
|
78
|
-
if (el._watchwindow_handlers_) {
|
|
79
|
-
window.removeEventListener("resize", el._watchwindow_handlers_.move);
|
|
80
|
-
const scrollContainer = typeof config.scrollContainerId === "string" ? document.querySelector(config.scrollContainerId) || window : window;
|
|
81
|
-
scrollContainer.removeEventListener("scroll", el._watchwindow_handlers_.move);
|
|
82
|
-
delete el._watchwindow_handlers_;
|
|
83
|
-
}
|
|
84
|
-
};
|
|
85
|
-
return {
|
|
86
|
-
mounted(el, binding) {
|
|
87
|
-
bindEvents(el);
|
|
88
|
-
},
|
|
89
|
-
beforeUnmount(el) {
|
|
90
|
-
unbindEvents(el);
|
|
91
|
-
},
|
|
92
|
-
// 添加 updated 钩子处理配置变化
|
|
93
|
-
updated(el, binding) {
|
|
94
|
-
if (binding.value !== binding.oldValue) {
|
|
95
|
-
unbindEvents(el);
|
|
96
|
-
bindEvents(el);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
};
|
|
100
|
-
};
|
|
2
|
+
import { u as usePotion, h as createScrollDirective, i as createBgClickDirective, c as createEscapeDirective } from "../index/index.js";
|
|
101
3
|
const PLACEMENT_GROUPS = {
|
|
102
4
|
top: ["topleft", "topmiddle", "topright"],
|
|
103
5
|
bottom: ["bottomleft", "bottommiddle", "bottomright"],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, onMounted, onUnmounted, renderSlot, createBlock, createCommentVNode } from "vue";
|
|
2
|
-
import { o as on,
|
|
2
|
+
import { o as on, j as off, k as useResizeObserver } from "../index/index.js";
|
|
3
3
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
4
4
|
__name: "movebar",
|
|
5
5
|
props: {
|