gy-ui-plus 1.0.13 → 1.0.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.
- package/dist/gy-ui-plus.es.js +4660 -0
- package/dist/gy-ui-plus.umd.js +2 -0
- package/dist/packages/button/index.d.ts +109 -0
- package/dist/packages/button/src/index.vue.d.ts +52 -0
- package/dist/packages/button/src/type.d.ts +11 -0
- package/dist/packages/core/withInstall.d.ts +5 -0
- package/dist/packages/gy-ui-plus/__VLS_types.d.ts +124 -0
- package/dist/packages/gy-ui-plus/vite.config.d.ts +2 -0
- package/dist/packages/index.d.ts +9 -0
- package/dist/packages/layout-page/index.d.ts +84 -0
- package/dist/packages/layout-page/src/index.vue.d.ts +49 -0
- package/dist/packages/layout-page/style/index.d.ts +1 -0
- package/dist/packages/table/index.d.ts +616 -0
- package/dist/packages/table/src/ColumnSet.vue.d.ts +52 -0
- package/dist/packages/table/src/GyTableColumn.vue.d.ts +46 -0
- package/dist/packages/table/src/index.vue.d.ts +344 -0
- package/dist/packages/table/src/operator.vue.d.ts +41 -0
- package/dist/packages/table/src/renderCol.vue.d.ts +20 -0
- package/dist/packages/table/src/renderHeader.vue.d.ts +16 -0
- package/dist/packages/table/src/singleEdit.vue.d.ts +96 -0
- package/dist/packages/table/src/singleEditCell.vue.d.ts +97 -0
- package/dist/packages/table/src/tableProps.d.ts +128 -0
- package/dist/packages/table/src/useExpose.d.ts +16 -0
- package/dist/packages/table/src/useVirtualized.d.ts +10 -0
- package/dist/packages/table/style/index.d.ts +1 -0
- package/package.json +10 -10
|
@@ -0,0 +1,4660 @@
|
|
|
1
|
+
import { defineComponent as re, ref as U, resolveComponent as ne, createBlock as A, openBlock as h, mergeProps as z, withCtx as I, createVNode as le, renderSlot as W, createElementBlock as C, createElementVNode as ie, getCurrentInstance as yt, inject as ht, computed as x, unref as O, readonly as Cr, getCurrentScope as Tr, onScopeDispose as Dr, watch as Me, onMounted as Rt, isRef as At, warn as kr, provide as _r, normalizeClass as xe, Transition as To, withDirectives as An, normalizeStyle as ot, createTextVNode as Ae, toDisplayString as q, vShow as Do, shallowReactive as ko, createCommentVNode as k, resolveDynamicComponent as Pe, Fragment as ee, withModifiers as _o, nextTick as Bn, isVNode as Oo, render as eo, toHandlers as gt, createSlots as _e, renderList as Te, useSlots as Rn, withKeys as Or, normalizeProps as We, guardReactiveProps as Lt, useAttrs as Io, reactive as No, onBeforeUnmount as Ir, onUpdated as Nr, resolveDirective as xr, onActivated as Pr } from "vue";
|
|
2
|
+
const $r = /* @__PURE__ */ re({
|
|
3
|
+
name: "GyButton",
|
|
4
|
+
__name: "index",
|
|
5
|
+
props: {
|
|
6
|
+
time: { default: 1e3 },
|
|
7
|
+
tip: { default: "" },
|
|
8
|
+
placement: { default: "top" },
|
|
9
|
+
tipProps: { default: () => ({}) },
|
|
10
|
+
isDebounce: { type: Boolean, default: !0 }
|
|
11
|
+
},
|
|
12
|
+
emits: ["click"],
|
|
13
|
+
setup(e, { emit: t }) {
|
|
14
|
+
const n = e, o = t, r = U(0), a = () => {
|
|
15
|
+
if (!n.isDebounce) return o("click");
|
|
16
|
+
const l = /* @__PURE__ */ new Date();
|
|
17
|
+
l.getTime() - r.value > n.time && o("click"), r.value = l.getTime();
|
|
18
|
+
};
|
|
19
|
+
return (l, i) => {
|
|
20
|
+
const u = ne("el-button"), f = ne("el-tooltip");
|
|
21
|
+
return e.tip ? (h(), A(f, z({
|
|
22
|
+
key: 0,
|
|
23
|
+
content: e.tip,
|
|
24
|
+
placement: e.placement
|
|
25
|
+
}, e.tipProps), {
|
|
26
|
+
default: I(() => [
|
|
27
|
+
le(u, z(l.$attrs, {
|
|
28
|
+
class: "gy-button-tip",
|
|
29
|
+
onClick: a
|
|
30
|
+
}), {
|
|
31
|
+
default: I(() => [
|
|
32
|
+
W(l.$slots, "default")
|
|
33
|
+
]),
|
|
34
|
+
_: 3
|
|
35
|
+
}, 16)
|
|
36
|
+
]),
|
|
37
|
+
_: 3
|
|
38
|
+
}, 16, ["content", "placement"])) : (h(), A(u, z({ key: 1 }, l.$attrs, { onClick: a }), {
|
|
39
|
+
default: I(() => [
|
|
40
|
+
W(l.$slots, "default")
|
|
41
|
+
]),
|
|
42
|
+
_: 3
|
|
43
|
+
}, 16));
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
}), Ar = (e, t) => (e.install = (n) => {
|
|
47
|
+
for (const o of [e, ...Object.values({})])
|
|
48
|
+
n.component(o.name, o);
|
|
49
|
+
}, e), Br = Ar($r);
|
|
50
|
+
var Rr = /* @__PURE__ */ re({
|
|
51
|
+
name: "ArrowDown",
|
|
52
|
+
__name: "arrow-down",
|
|
53
|
+
setup(e) {
|
|
54
|
+
return (t, n) => (h(), C("svg", {
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
viewBox: "0 0 1024 1024"
|
|
57
|
+
}, [
|
|
58
|
+
ie("path", {
|
|
59
|
+
fill: "currentColor",
|
|
60
|
+
d: "M831.872 340.864 512 652.672 192.128 340.864a30.59 30.59 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.59 30.59 0 0 0-42.752 0z"
|
|
61
|
+
})
|
|
62
|
+
]));
|
|
63
|
+
}
|
|
64
|
+
}), Lr = Rr, jr = /* @__PURE__ */ re({
|
|
65
|
+
name: "CaretTop",
|
|
66
|
+
__name: "caret-top",
|
|
67
|
+
setup(e) {
|
|
68
|
+
return (t, n) => (h(), C("svg", {
|
|
69
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
70
|
+
viewBox: "0 0 1024 1024"
|
|
71
|
+
}, [
|
|
72
|
+
ie("path", {
|
|
73
|
+
fill: "currentColor",
|
|
74
|
+
d: "M512 320 192 704h639.936z"
|
|
75
|
+
})
|
|
76
|
+
]));
|
|
77
|
+
}
|
|
78
|
+
}), Mr = jr, Fr = /* @__PURE__ */ re({
|
|
79
|
+
name: "CircleCloseFilled",
|
|
80
|
+
__name: "circle-close-filled",
|
|
81
|
+
setup(e) {
|
|
82
|
+
return (t, n) => (h(), C("svg", {
|
|
83
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
84
|
+
viewBox: "0 0 1024 1024"
|
|
85
|
+
}, [
|
|
86
|
+
ie("path", {
|
|
87
|
+
fill: "currentColor",
|
|
88
|
+
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"
|
|
89
|
+
})
|
|
90
|
+
]));
|
|
91
|
+
}
|
|
92
|
+
}), zr = Fr, Vr = /* @__PURE__ */ re({
|
|
93
|
+
name: "Close",
|
|
94
|
+
__name: "close",
|
|
95
|
+
setup(e) {
|
|
96
|
+
return (t, n) => (h(), C("svg", {
|
|
97
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98
|
+
viewBox: "0 0 1024 1024"
|
|
99
|
+
}, [
|
|
100
|
+
ie("path", {
|
|
101
|
+
fill: "currentColor",
|
|
102
|
+
d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
|
|
103
|
+
})
|
|
104
|
+
]));
|
|
105
|
+
}
|
|
106
|
+
}), Hr = Vr, Gr = /* @__PURE__ */ re({
|
|
107
|
+
name: "Edit",
|
|
108
|
+
__name: "edit",
|
|
109
|
+
setup(e) {
|
|
110
|
+
return (t, n) => (h(), C("svg", {
|
|
111
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
112
|
+
viewBox: "0 0 1024 1024"
|
|
113
|
+
}, [
|
|
114
|
+
ie("path", {
|
|
115
|
+
fill: "currentColor",
|
|
116
|
+
d: "M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"
|
|
117
|
+
}),
|
|
118
|
+
ie("path", {
|
|
119
|
+
fill: "currentColor",
|
|
120
|
+
d: "m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"
|
|
121
|
+
})
|
|
122
|
+
]));
|
|
123
|
+
}
|
|
124
|
+
}), Ur = Gr, Yr = /* @__PURE__ */ re({
|
|
125
|
+
name: "InfoFilled",
|
|
126
|
+
__name: "info-filled",
|
|
127
|
+
setup(e) {
|
|
128
|
+
return (t, n) => (h(), C("svg", {
|
|
129
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
130
|
+
viewBox: "0 0 1024 1024"
|
|
131
|
+
}, [
|
|
132
|
+
ie("path", {
|
|
133
|
+
fill: "currentColor",
|
|
134
|
+
d: "M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.99 12.99 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"
|
|
135
|
+
})
|
|
136
|
+
]));
|
|
137
|
+
}
|
|
138
|
+
}), to = Yr, Kr = /* @__PURE__ */ re({
|
|
139
|
+
name: "Rank",
|
|
140
|
+
__name: "rank",
|
|
141
|
+
setup(e) {
|
|
142
|
+
return (t, n) => (h(), C("svg", {
|
|
143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
144
|
+
viewBox: "0 0 1024 1024"
|
|
145
|
+
}, [
|
|
146
|
+
ie("path", {
|
|
147
|
+
fill: "currentColor",
|
|
148
|
+
d: "m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544z"
|
|
149
|
+
})
|
|
150
|
+
]));
|
|
151
|
+
}
|
|
152
|
+
}), Xr = Kr, Wr = /* @__PURE__ */ re({
|
|
153
|
+
name: "SuccessFilled",
|
|
154
|
+
__name: "success-filled",
|
|
155
|
+
setup(e) {
|
|
156
|
+
return (t, n) => (h(), C("svg", {
|
|
157
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
158
|
+
viewBox: "0 0 1024 1024"
|
|
159
|
+
}, [
|
|
160
|
+
ie("path", {
|
|
161
|
+
fill: "currentColor",
|
|
162
|
+
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.27 38.27 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
|
|
163
|
+
})
|
|
164
|
+
]));
|
|
165
|
+
}
|
|
166
|
+
}), qr = Wr, Jr = /* @__PURE__ */ re({
|
|
167
|
+
name: "WarningFilled",
|
|
168
|
+
__name: "warning-filled",
|
|
169
|
+
setup(e) {
|
|
170
|
+
return (t, n) => (h(), C("svg", {
|
|
171
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
172
|
+
viewBox: "0 0 1024 1024"
|
|
173
|
+
}, [
|
|
174
|
+
ie("path", {
|
|
175
|
+
fill: "currentColor",
|
|
176
|
+
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.43 58.43 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.43 58.43 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"
|
|
177
|
+
})
|
|
178
|
+
]));
|
|
179
|
+
}
|
|
180
|
+
}), Zr = Jr;
|
|
181
|
+
const xo = /* @__PURE__ */ Symbol(), Xt = "el", Qr = "is-", Qe = (e, t, n, o, r) => {
|
|
182
|
+
let a = `${e}-${t}`;
|
|
183
|
+
return n && (a += `-${n}`), o && (a += `__${o}`), r && (a += `--${r}`), a;
|
|
184
|
+
}, Po = /* @__PURE__ */ Symbol("namespaceContextKey"), ea = (e) => {
|
|
185
|
+
const t = e || (yt() ? ht(Po, U(Xt)) : U(Xt));
|
|
186
|
+
return x(() => O(t) || Xt);
|
|
187
|
+
}, Ln = (e, t) => {
|
|
188
|
+
const n = ea(t);
|
|
189
|
+
return {
|
|
190
|
+
namespace: n,
|
|
191
|
+
b: (p = "") => Qe(n.value, e, p, "", ""),
|
|
192
|
+
e: (p) => p ? Qe(n.value, e, "", p, "") : "",
|
|
193
|
+
m: (p) => p ? Qe(n.value, e, "", "", p) : "",
|
|
194
|
+
be: (p, L) => p && L ? Qe(n.value, e, p, L, "") : "",
|
|
195
|
+
em: (p, L) => p && L ? Qe(n.value, e, "", p, L) : "",
|
|
196
|
+
bm: (p, L) => p && L ? Qe(n.value, e, p, "", L) : "",
|
|
197
|
+
bem: (p, L, _) => p && L && _ ? Qe(n.value, e, p, L, _) : "",
|
|
198
|
+
is: (p, ...L) => {
|
|
199
|
+
const _ = L.length >= 1 ? L[0] : !0;
|
|
200
|
+
return p && _ ? `${Qr}${p}` : "";
|
|
201
|
+
},
|
|
202
|
+
cssVar: (p) => {
|
|
203
|
+
const L = {};
|
|
204
|
+
for (const _ in p)
|
|
205
|
+
p[_] && (L[`--${n.value}-${_}`] = p[_]);
|
|
206
|
+
return L;
|
|
207
|
+
},
|
|
208
|
+
cssVarName: (p) => `--${n.value}-${p}`,
|
|
209
|
+
cssVarBlock: (p) => {
|
|
210
|
+
const L = {};
|
|
211
|
+
for (const _ in p)
|
|
212
|
+
p[_] && (L[`--${n.value}-${e}-${_}`] = p[_]);
|
|
213
|
+
return L;
|
|
214
|
+
},
|
|
215
|
+
cssVarBlockName: (p) => `--${n.value}-${e}-${p}`
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
process.env.NODE_ENV !== "production" && Object.freeze({});
|
|
219
|
+
process.env.NODE_ENV !== "production" && Object.freeze([]);
|
|
220
|
+
const ta = Object.prototype.hasOwnProperty, Dn = (e, t) => ta.call(e, t), na = Array.isArray, en = (e) => typeof e == "function", Et = (e) => typeof e == "string", $o = (e) => e !== null && typeof e == "object";
|
|
221
|
+
var oa = typeof global == "object" && global && global.Object === Object && global, ra = typeof self == "object" && self && self.Object === Object && self, jn = oa || ra || Function("return this")(), vt = jn.Symbol, Ao = Object.prototype, aa = Ao.hasOwnProperty, la = Ao.toString, Dt = vt ? vt.toStringTag : void 0;
|
|
222
|
+
function ia(e) {
|
|
223
|
+
var t = aa.call(e, Dt), n = e[Dt];
|
|
224
|
+
try {
|
|
225
|
+
e[Dt] = void 0;
|
|
226
|
+
var o = !0;
|
|
227
|
+
} catch {
|
|
228
|
+
}
|
|
229
|
+
var r = la.call(e);
|
|
230
|
+
return o && (t ? e[Dt] = n : delete e[Dt]), r;
|
|
231
|
+
}
|
|
232
|
+
var sa = Object.prototype, ua = sa.toString;
|
|
233
|
+
function ca(e) {
|
|
234
|
+
return ua.call(e);
|
|
235
|
+
}
|
|
236
|
+
var da = "[object Null]", fa = "[object Undefined]", no = vt ? vt.toStringTag : void 0;
|
|
237
|
+
function Bo(e) {
|
|
238
|
+
return e == null ? e === void 0 ? fa : da : no && no in Object(e) ? ia(e) : ca(e);
|
|
239
|
+
}
|
|
240
|
+
function pa(e) {
|
|
241
|
+
return e != null && typeof e == "object";
|
|
242
|
+
}
|
|
243
|
+
var ha = "[object Symbol]";
|
|
244
|
+
function Mn(e) {
|
|
245
|
+
return typeof e == "symbol" || pa(e) && Bo(e) == ha;
|
|
246
|
+
}
|
|
247
|
+
function ga(e, t) {
|
|
248
|
+
for (var n = -1, o = e == null ? 0 : e.length, r = Array(o); ++n < o; )
|
|
249
|
+
r[n] = t(e[n], n, e);
|
|
250
|
+
return r;
|
|
251
|
+
}
|
|
252
|
+
var Fn = Array.isArray, oo = vt ? vt.prototype : void 0, ro = oo ? oo.toString : void 0;
|
|
253
|
+
function Ro(e) {
|
|
254
|
+
if (typeof e == "string")
|
|
255
|
+
return e;
|
|
256
|
+
if (Fn(e))
|
|
257
|
+
return ga(e, Ro) + "";
|
|
258
|
+
if (Mn(e))
|
|
259
|
+
return ro ? ro.call(e) : "";
|
|
260
|
+
var t = e + "";
|
|
261
|
+
return t == "0" && 1 / e == -1 / 0 ? "-0" : t;
|
|
262
|
+
}
|
|
263
|
+
function Lo(e) {
|
|
264
|
+
var t = typeof e;
|
|
265
|
+
return e != null && (t == "object" || t == "function");
|
|
266
|
+
}
|
|
267
|
+
var ma = "[object AsyncFunction]", ba = "[object Function]", ya = "[object GeneratorFunction]", va = "[object Proxy]";
|
|
268
|
+
function wa(e) {
|
|
269
|
+
if (!Lo(e))
|
|
270
|
+
return !1;
|
|
271
|
+
var t = Bo(e);
|
|
272
|
+
return t == ba || t == ya || t == ma || t == va;
|
|
273
|
+
}
|
|
274
|
+
var hn = jn["__core-js_shared__"], ao = (function() {
|
|
275
|
+
var e = /[^.]+$/.exec(hn && hn.keys && hn.keys.IE_PROTO || "");
|
|
276
|
+
return e ? "Symbol(src)_1." + e : "";
|
|
277
|
+
})();
|
|
278
|
+
function Ea(e) {
|
|
279
|
+
return !!ao && ao in e;
|
|
280
|
+
}
|
|
281
|
+
var Sa = Function.prototype, Ca = Sa.toString;
|
|
282
|
+
function Ta(e) {
|
|
283
|
+
if (e != null) {
|
|
284
|
+
try {
|
|
285
|
+
return Ca.call(e);
|
|
286
|
+
} catch {
|
|
287
|
+
}
|
|
288
|
+
try {
|
|
289
|
+
return e + "";
|
|
290
|
+
} catch {
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return "";
|
|
294
|
+
}
|
|
295
|
+
var Da = /[\\^$.*+?()[\]{}|]/g, ka = /^\[object .+?Constructor\]$/, _a = Function.prototype, Oa = Object.prototype, Ia = _a.toString, Na = Oa.hasOwnProperty, xa = RegExp(
|
|
296
|
+
"^" + Ia.call(Na).replace(Da, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
|
297
|
+
);
|
|
298
|
+
function Pa(e) {
|
|
299
|
+
if (!Lo(e) || Ea(e))
|
|
300
|
+
return !1;
|
|
301
|
+
var t = wa(e) ? xa : ka;
|
|
302
|
+
return t.test(Ta(e));
|
|
303
|
+
}
|
|
304
|
+
function $a(e, t) {
|
|
305
|
+
return e?.[t];
|
|
306
|
+
}
|
|
307
|
+
function jo(e, t) {
|
|
308
|
+
var n = $a(e, t);
|
|
309
|
+
return Pa(n) ? n : void 0;
|
|
310
|
+
}
|
|
311
|
+
function Aa(e, t) {
|
|
312
|
+
return e === t || e !== e && t !== t;
|
|
313
|
+
}
|
|
314
|
+
var Ba = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, Ra = /^\w*$/;
|
|
315
|
+
function La(e, t) {
|
|
316
|
+
if (Fn(e))
|
|
317
|
+
return !1;
|
|
318
|
+
var n = typeof e;
|
|
319
|
+
return n == "number" || n == "symbol" || n == "boolean" || e == null || Mn(e) ? !0 : Ra.test(e) || !Ba.test(e) || t != null && e in Object(t);
|
|
320
|
+
}
|
|
321
|
+
var Bt = jo(Object, "create");
|
|
322
|
+
function ja() {
|
|
323
|
+
this.__data__ = Bt ? Bt(null) : {}, this.size = 0;
|
|
324
|
+
}
|
|
325
|
+
function Ma(e) {
|
|
326
|
+
var t = this.has(e) && delete this.__data__[e];
|
|
327
|
+
return this.size -= t ? 1 : 0, t;
|
|
328
|
+
}
|
|
329
|
+
var Fa = "__lodash_hash_undefined__", za = Object.prototype, Va = za.hasOwnProperty;
|
|
330
|
+
function Ha(e) {
|
|
331
|
+
var t = this.__data__;
|
|
332
|
+
if (Bt) {
|
|
333
|
+
var n = t[e];
|
|
334
|
+
return n === Fa ? void 0 : n;
|
|
335
|
+
}
|
|
336
|
+
return Va.call(t, e) ? t[e] : void 0;
|
|
337
|
+
}
|
|
338
|
+
var Ga = Object.prototype, Ua = Ga.hasOwnProperty;
|
|
339
|
+
function Ya(e) {
|
|
340
|
+
var t = this.__data__;
|
|
341
|
+
return Bt ? t[e] !== void 0 : Ua.call(t, e);
|
|
342
|
+
}
|
|
343
|
+
var Ka = "__lodash_hash_undefined__";
|
|
344
|
+
function Xa(e, t) {
|
|
345
|
+
var n = this.__data__;
|
|
346
|
+
return this.size += this.has(e) ? 0 : 1, n[e] = Bt && t === void 0 ? Ka : t, this;
|
|
347
|
+
}
|
|
348
|
+
function rt(e) {
|
|
349
|
+
var t = -1, n = e == null ? 0 : e.length;
|
|
350
|
+
for (this.clear(); ++t < n; ) {
|
|
351
|
+
var o = e[t];
|
|
352
|
+
this.set(o[0], o[1]);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
rt.prototype.clear = ja;
|
|
356
|
+
rt.prototype.delete = Ma;
|
|
357
|
+
rt.prototype.get = Ha;
|
|
358
|
+
rt.prototype.has = Ya;
|
|
359
|
+
rt.prototype.set = Xa;
|
|
360
|
+
function Wa() {
|
|
361
|
+
this.__data__ = [], this.size = 0;
|
|
362
|
+
}
|
|
363
|
+
function un(e, t) {
|
|
364
|
+
for (var n = e.length; n--; )
|
|
365
|
+
if (Aa(e[n][0], t))
|
|
366
|
+
return n;
|
|
367
|
+
return -1;
|
|
368
|
+
}
|
|
369
|
+
var qa = Array.prototype, Ja = qa.splice;
|
|
370
|
+
function Za(e) {
|
|
371
|
+
var t = this.__data__, n = un(t, e);
|
|
372
|
+
if (n < 0)
|
|
373
|
+
return !1;
|
|
374
|
+
var o = t.length - 1;
|
|
375
|
+
return n == o ? t.pop() : Ja.call(t, n, 1), --this.size, !0;
|
|
376
|
+
}
|
|
377
|
+
function Qa(e) {
|
|
378
|
+
var t = this.__data__, n = un(t, e);
|
|
379
|
+
return n < 0 ? void 0 : t[n][1];
|
|
380
|
+
}
|
|
381
|
+
function el(e) {
|
|
382
|
+
return un(this.__data__, e) > -1;
|
|
383
|
+
}
|
|
384
|
+
function tl(e, t) {
|
|
385
|
+
var n = this.__data__, o = un(n, e);
|
|
386
|
+
return o < 0 ? (++this.size, n.push([e, t])) : n[o][1] = t, this;
|
|
387
|
+
}
|
|
388
|
+
function St(e) {
|
|
389
|
+
var t = -1, n = e == null ? 0 : e.length;
|
|
390
|
+
for (this.clear(); ++t < n; ) {
|
|
391
|
+
var o = e[t];
|
|
392
|
+
this.set(o[0], o[1]);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
St.prototype.clear = Wa;
|
|
396
|
+
St.prototype.delete = Za;
|
|
397
|
+
St.prototype.get = Qa;
|
|
398
|
+
St.prototype.has = el;
|
|
399
|
+
St.prototype.set = tl;
|
|
400
|
+
var nl = jo(jn, "Map");
|
|
401
|
+
function ol() {
|
|
402
|
+
this.size = 0, this.__data__ = {
|
|
403
|
+
hash: new rt(),
|
|
404
|
+
map: new (nl || St)(),
|
|
405
|
+
string: new rt()
|
|
406
|
+
};
|
|
407
|
+
}
|
|
408
|
+
function rl(e) {
|
|
409
|
+
var t = typeof e;
|
|
410
|
+
return t == "string" || t == "number" || t == "symbol" || t == "boolean" ? e !== "__proto__" : e === null;
|
|
411
|
+
}
|
|
412
|
+
function cn(e, t) {
|
|
413
|
+
var n = e.__data__;
|
|
414
|
+
return rl(t) ? n[typeof t == "string" ? "string" : "hash"] : n.map;
|
|
415
|
+
}
|
|
416
|
+
function al(e) {
|
|
417
|
+
var t = cn(this, e).delete(e);
|
|
418
|
+
return this.size -= t ? 1 : 0, t;
|
|
419
|
+
}
|
|
420
|
+
function ll(e) {
|
|
421
|
+
return cn(this, e).get(e);
|
|
422
|
+
}
|
|
423
|
+
function il(e) {
|
|
424
|
+
return cn(this, e).has(e);
|
|
425
|
+
}
|
|
426
|
+
function sl(e, t) {
|
|
427
|
+
var n = cn(this, e), o = n.size;
|
|
428
|
+
return n.set(e, t), this.size += n.size == o ? 0 : 1, this;
|
|
429
|
+
}
|
|
430
|
+
function it(e) {
|
|
431
|
+
var t = -1, n = e == null ? 0 : e.length;
|
|
432
|
+
for (this.clear(); ++t < n; ) {
|
|
433
|
+
var o = e[t];
|
|
434
|
+
this.set(o[0], o[1]);
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
it.prototype.clear = ol;
|
|
438
|
+
it.prototype.delete = al;
|
|
439
|
+
it.prototype.get = ll;
|
|
440
|
+
it.prototype.has = il;
|
|
441
|
+
it.prototype.set = sl;
|
|
442
|
+
var ul = "Expected a function";
|
|
443
|
+
function zn(e, t) {
|
|
444
|
+
if (typeof e != "function" || t != null && typeof t != "function")
|
|
445
|
+
throw new TypeError(ul);
|
|
446
|
+
var n = function() {
|
|
447
|
+
var o = arguments, r = t ? t.apply(this, o) : o[0], a = n.cache;
|
|
448
|
+
if (a.has(r))
|
|
449
|
+
return a.get(r);
|
|
450
|
+
var l = e.apply(this, o);
|
|
451
|
+
return n.cache = a.set(r, l) || a, l;
|
|
452
|
+
};
|
|
453
|
+
return n.cache = new (zn.Cache || it)(), n;
|
|
454
|
+
}
|
|
455
|
+
zn.Cache = it;
|
|
456
|
+
var cl = 500;
|
|
457
|
+
function dl(e) {
|
|
458
|
+
var t = zn(e, function(o) {
|
|
459
|
+
return n.size === cl && n.clear(), o;
|
|
460
|
+
}), n = t.cache;
|
|
461
|
+
return t;
|
|
462
|
+
}
|
|
463
|
+
var fl = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, pl = /\\(\\)?/g, hl = dl(function(e) {
|
|
464
|
+
var t = [];
|
|
465
|
+
return e.charCodeAt(0) === 46 && t.push(""), e.replace(fl, function(n, o, r, a) {
|
|
466
|
+
t.push(r ? a.replace(pl, "$1") : o || n);
|
|
467
|
+
}), t;
|
|
468
|
+
});
|
|
469
|
+
function gl(e) {
|
|
470
|
+
return e == null ? "" : Ro(e);
|
|
471
|
+
}
|
|
472
|
+
function ml(e, t) {
|
|
473
|
+
return Fn(e) ? e : La(e, t) ? [e] : hl(gl(e));
|
|
474
|
+
}
|
|
475
|
+
function bl(e) {
|
|
476
|
+
if (typeof e == "string" || Mn(e))
|
|
477
|
+
return e;
|
|
478
|
+
var t = e + "";
|
|
479
|
+
return t == "0" && 1 / e == -1 / 0 ? "-0" : t;
|
|
480
|
+
}
|
|
481
|
+
function yl(e, t) {
|
|
482
|
+
t = ml(t, e);
|
|
483
|
+
for (var n = 0, o = t.length; e != null && n < o; )
|
|
484
|
+
e = e[bl(t[n++])];
|
|
485
|
+
return n && n == o ? e : void 0;
|
|
486
|
+
}
|
|
487
|
+
function vl(e, t, n) {
|
|
488
|
+
var o = e == null ? void 0 : yl(e, t);
|
|
489
|
+
return o === void 0 ? n : o;
|
|
490
|
+
}
|
|
491
|
+
function wl(e) {
|
|
492
|
+
for (var t = -1, n = e == null ? 0 : e.length, o = {}; ++t < n; ) {
|
|
493
|
+
var r = e[t];
|
|
494
|
+
o[r[0]] = r[1];
|
|
495
|
+
}
|
|
496
|
+
return o;
|
|
497
|
+
}
|
|
498
|
+
const gn = (e) => typeof e == "boolean", at = (e) => typeof e == "number", El = (e) => typeof Element > "u" ? !1 : e instanceof Element, Sl = (e) => Et(e) ? !Number.isNaN(Number(e)) : !1;
|
|
499
|
+
function Vn(e) {
|
|
500
|
+
return Tr() ? (Dr(e), !0) : !1;
|
|
501
|
+
}
|
|
502
|
+
function Hn(e) {
|
|
503
|
+
return typeof e == "function" ? e() : O(e);
|
|
504
|
+
}
|
|
505
|
+
const Ct = typeof window < "u" && typeof document < "u";
|
|
506
|
+
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
507
|
+
const Cl = Object.prototype.toString, Tl = (e) => Cl.call(e) === "[object Object]", Dl = () => {
|
|
508
|
+
};
|
|
509
|
+
function kl(e, t, n = {}) {
|
|
510
|
+
const {
|
|
511
|
+
immediate: o = !0
|
|
512
|
+
} = n, r = U(!1);
|
|
513
|
+
let a = null;
|
|
514
|
+
function l() {
|
|
515
|
+
a && (clearTimeout(a), a = null);
|
|
516
|
+
}
|
|
517
|
+
function i() {
|
|
518
|
+
r.value = !1, l();
|
|
519
|
+
}
|
|
520
|
+
function u(...f) {
|
|
521
|
+
l(), r.value = !0, a = setTimeout(() => {
|
|
522
|
+
r.value = !1, a = null, e(...f);
|
|
523
|
+
}, Hn(t));
|
|
524
|
+
}
|
|
525
|
+
return o && (r.value = !0, Ct && u()), Vn(i), {
|
|
526
|
+
isPending: Cr(r),
|
|
527
|
+
start: u,
|
|
528
|
+
stop: i
|
|
529
|
+
};
|
|
530
|
+
}
|
|
531
|
+
function kn(e) {
|
|
532
|
+
var t;
|
|
533
|
+
const n = Hn(e);
|
|
534
|
+
return (t = n?.$el) != null ? t : n;
|
|
535
|
+
}
|
|
536
|
+
const Mo = Ct ? window : void 0;
|
|
537
|
+
function _l(...e) {
|
|
538
|
+
let t, n, o, r;
|
|
539
|
+
if (typeof e[0] == "string" || Array.isArray(e[0]) ? ([n, o, r] = e, t = Mo) : [t, n, o, r] = e, !t)
|
|
540
|
+
return Dl;
|
|
541
|
+
Array.isArray(n) || (n = [n]), Array.isArray(o) || (o = [o]);
|
|
542
|
+
const a = [], l = () => {
|
|
543
|
+
a.forEach((g) => g()), a.length = 0;
|
|
544
|
+
}, i = (g, d, S, D) => (g.addEventListener(d, S, D), () => g.removeEventListener(d, S, D)), u = Me(
|
|
545
|
+
() => [kn(t), Hn(r)],
|
|
546
|
+
([g, d]) => {
|
|
547
|
+
if (l(), !g)
|
|
548
|
+
return;
|
|
549
|
+
const S = Tl(d) ? { ...d } : d;
|
|
550
|
+
a.push(
|
|
551
|
+
...n.flatMap((D) => o.map((b) => i(g, D, b, S)))
|
|
552
|
+
);
|
|
553
|
+
},
|
|
554
|
+
{ immediate: !0, flush: "post" }
|
|
555
|
+
), f = () => {
|
|
556
|
+
u(), l();
|
|
557
|
+
};
|
|
558
|
+
return Vn(f), f;
|
|
559
|
+
}
|
|
560
|
+
function Ol() {
|
|
561
|
+
const e = U(!1), t = yt();
|
|
562
|
+
return t && Rt(() => {
|
|
563
|
+
e.value = !0;
|
|
564
|
+
}, t), e;
|
|
565
|
+
}
|
|
566
|
+
function Il(e) {
|
|
567
|
+
const t = Ol();
|
|
568
|
+
return x(() => (t.value, !!e()));
|
|
569
|
+
}
|
|
570
|
+
function Nl(e, t, n = {}) {
|
|
571
|
+
const { window: o = Mo, ...r } = n;
|
|
572
|
+
let a;
|
|
573
|
+
const l = Il(() => o && "ResizeObserver" in o), i = () => {
|
|
574
|
+
a && (a.disconnect(), a = void 0);
|
|
575
|
+
}, u = x(() => Array.isArray(e) ? e.map((d) => kn(d)) : [kn(e)]), f = Me(
|
|
576
|
+
u,
|
|
577
|
+
(d) => {
|
|
578
|
+
if (i(), l.value && o) {
|
|
579
|
+
a = new ResizeObserver(t);
|
|
580
|
+
for (const S of d)
|
|
581
|
+
S && a.observe(S, r);
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
{ immediate: !0, flush: "post" }
|
|
585
|
+
), g = () => {
|
|
586
|
+
i(), f();
|
|
587
|
+
};
|
|
588
|
+
return Vn(g), {
|
|
589
|
+
isSupported: l,
|
|
590
|
+
stop: g
|
|
591
|
+
};
|
|
592
|
+
}
|
|
593
|
+
class xl extends Error {
|
|
594
|
+
constructor(t) {
|
|
595
|
+
super(t), this.name = "ElementPlusError";
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
function jt(e, t) {
|
|
599
|
+
if (process.env.NODE_ENV !== "production") {
|
|
600
|
+
const n = Et(e) ? new xl(`[${e}] ${t}`) : e;
|
|
601
|
+
console.warn(n);
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
const lo = {
|
|
605
|
+
current: 0
|
|
606
|
+
}, io = U(0), Fo = 2e3, so = /* @__PURE__ */ Symbol("elZIndexContextKey"), zo = /* @__PURE__ */ Symbol("zIndexContextKey"), Pl = (e) => {
|
|
607
|
+
const t = yt() ? ht(so, lo) : lo, n = e || (yt() ? ht(zo, void 0) : void 0), o = x(() => {
|
|
608
|
+
const l = O(n);
|
|
609
|
+
return at(l) ? l : Fo;
|
|
610
|
+
}), r = x(() => o.value + io.value), a = () => (t.current++, io.value = t.current, r.value);
|
|
611
|
+
return !Ct && !ht(so) && jt(
|
|
612
|
+
"ZIndexInjection",
|
|
613
|
+
`Looks like you are using server rendering, you must provide a z-index provider to ensure the hydration process to be succeed
|
|
614
|
+
usage: app.provide(ZINDEX_INJECTION_KEY, { current: 0 })`
|
|
615
|
+
), {
|
|
616
|
+
initialZIndex: o,
|
|
617
|
+
currentZIndex: r,
|
|
618
|
+
nextZIndex: a
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
var $l = {
|
|
622
|
+
name: "en",
|
|
623
|
+
el: {
|
|
624
|
+
breadcrumb: {
|
|
625
|
+
label: "Breadcrumb"
|
|
626
|
+
},
|
|
627
|
+
colorpicker: {
|
|
628
|
+
confirm: "OK",
|
|
629
|
+
clear: "Clear",
|
|
630
|
+
defaultLabel: "color picker",
|
|
631
|
+
description: "current color is {color}. press enter to select a new color.",
|
|
632
|
+
alphaLabel: "pick alpha value",
|
|
633
|
+
alphaDescription: "alpha {alpha}, current color is {color}",
|
|
634
|
+
hueLabel: "pick hue value",
|
|
635
|
+
hueDescription: "hue {hue}, current color is {color}",
|
|
636
|
+
svLabel: "pick saturation and brightness value",
|
|
637
|
+
svDescription: "saturation {saturation}, brightness {brightness}, current color is {color}",
|
|
638
|
+
predefineDescription: "select {value} as the color"
|
|
639
|
+
},
|
|
640
|
+
datepicker: {
|
|
641
|
+
now: "Now",
|
|
642
|
+
today: "Today",
|
|
643
|
+
cancel: "Cancel",
|
|
644
|
+
clear: "Clear",
|
|
645
|
+
confirm: "OK",
|
|
646
|
+
dateTablePrompt: "Use the arrow keys and enter to select the day of the month",
|
|
647
|
+
monthTablePrompt: "Use the arrow keys and enter to select the month",
|
|
648
|
+
yearTablePrompt: "Use the arrow keys and enter to select the year",
|
|
649
|
+
selectedDate: "Selected date",
|
|
650
|
+
selectDate: "Select date",
|
|
651
|
+
selectTime: "Select time",
|
|
652
|
+
startDate: "Start Date",
|
|
653
|
+
startTime: "Start Time",
|
|
654
|
+
endDate: "End Date",
|
|
655
|
+
endTime: "End Time",
|
|
656
|
+
prevYear: "Previous Year",
|
|
657
|
+
nextYear: "Next Year",
|
|
658
|
+
prevMonth: "Previous Month",
|
|
659
|
+
nextMonth: "Next Month",
|
|
660
|
+
year: "",
|
|
661
|
+
month1: "January",
|
|
662
|
+
month2: "February",
|
|
663
|
+
month3: "March",
|
|
664
|
+
month4: "April",
|
|
665
|
+
month5: "May",
|
|
666
|
+
month6: "June",
|
|
667
|
+
month7: "July",
|
|
668
|
+
month8: "August",
|
|
669
|
+
month9: "September",
|
|
670
|
+
month10: "October",
|
|
671
|
+
month11: "November",
|
|
672
|
+
month12: "December",
|
|
673
|
+
weeks: {
|
|
674
|
+
sun: "Sun",
|
|
675
|
+
mon: "Mon",
|
|
676
|
+
tue: "Tue",
|
|
677
|
+
wed: "Wed",
|
|
678
|
+
thu: "Thu",
|
|
679
|
+
fri: "Fri",
|
|
680
|
+
sat: "Sat"
|
|
681
|
+
},
|
|
682
|
+
weeksFull: {
|
|
683
|
+
sun: "Sunday",
|
|
684
|
+
mon: "Monday",
|
|
685
|
+
tue: "Tuesday",
|
|
686
|
+
wed: "Wednesday",
|
|
687
|
+
thu: "Thursday",
|
|
688
|
+
fri: "Friday",
|
|
689
|
+
sat: "Saturday"
|
|
690
|
+
},
|
|
691
|
+
months: {
|
|
692
|
+
jan: "Jan",
|
|
693
|
+
feb: "Feb",
|
|
694
|
+
mar: "Mar",
|
|
695
|
+
apr: "Apr",
|
|
696
|
+
may: "May",
|
|
697
|
+
jun: "Jun",
|
|
698
|
+
jul: "Jul",
|
|
699
|
+
aug: "Aug",
|
|
700
|
+
sep: "Sep",
|
|
701
|
+
oct: "Oct",
|
|
702
|
+
nov: "Nov",
|
|
703
|
+
dec: "Dec"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
inputNumber: {
|
|
707
|
+
decrease: "decrease number",
|
|
708
|
+
increase: "increase number"
|
|
709
|
+
},
|
|
710
|
+
select: {
|
|
711
|
+
loading: "Loading",
|
|
712
|
+
noMatch: "No matching data",
|
|
713
|
+
noData: "No data",
|
|
714
|
+
placeholder: "Select"
|
|
715
|
+
},
|
|
716
|
+
mention: {
|
|
717
|
+
loading: "Loading"
|
|
718
|
+
},
|
|
719
|
+
dropdown: {
|
|
720
|
+
toggleDropdown: "Toggle Dropdown"
|
|
721
|
+
},
|
|
722
|
+
cascader: {
|
|
723
|
+
noMatch: "No matching data",
|
|
724
|
+
loading: "Loading",
|
|
725
|
+
placeholder: "Select",
|
|
726
|
+
noData: "No data"
|
|
727
|
+
},
|
|
728
|
+
pagination: {
|
|
729
|
+
goto: "Go to",
|
|
730
|
+
pagesize: "/page",
|
|
731
|
+
total: "Total {total}",
|
|
732
|
+
pageClassifier: "",
|
|
733
|
+
page: "Page",
|
|
734
|
+
prev: "Go to previous page",
|
|
735
|
+
next: "Go to next page",
|
|
736
|
+
currentPage: "page {pager}",
|
|
737
|
+
prevPages: "Previous {pager} pages",
|
|
738
|
+
nextPages: "Next {pager} pages",
|
|
739
|
+
deprecationWarning: "Deprecated usages detected, please refer to the el-pagination documentation for more details"
|
|
740
|
+
},
|
|
741
|
+
dialog: {
|
|
742
|
+
close: "Close this dialog"
|
|
743
|
+
},
|
|
744
|
+
drawer: {
|
|
745
|
+
close: "Close this dialog"
|
|
746
|
+
},
|
|
747
|
+
messagebox: {
|
|
748
|
+
title: "Message",
|
|
749
|
+
confirm: "OK",
|
|
750
|
+
cancel: "Cancel",
|
|
751
|
+
error: "Illegal input",
|
|
752
|
+
close: "Close this dialog"
|
|
753
|
+
},
|
|
754
|
+
upload: {
|
|
755
|
+
deleteTip: "press delete to remove",
|
|
756
|
+
delete: "Delete",
|
|
757
|
+
preview: "Preview",
|
|
758
|
+
continue: "Continue"
|
|
759
|
+
},
|
|
760
|
+
slider: {
|
|
761
|
+
defaultLabel: "slider between {min} and {max}",
|
|
762
|
+
defaultRangeStartLabel: "pick start value",
|
|
763
|
+
defaultRangeEndLabel: "pick end value"
|
|
764
|
+
},
|
|
765
|
+
table: {
|
|
766
|
+
emptyText: "No Data",
|
|
767
|
+
confirmFilter: "Confirm",
|
|
768
|
+
resetFilter: "Reset",
|
|
769
|
+
clearFilter: "All",
|
|
770
|
+
sumText: "Sum",
|
|
771
|
+
selectAllLabel: "Select all rows",
|
|
772
|
+
selectRowLabel: "Select this row",
|
|
773
|
+
expandRowLabel: "Expand this row",
|
|
774
|
+
collapseRowLabel: "Collapse this row",
|
|
775
|
+
sortLabel: "Sort by {column}",
|
|
776
|
+
filterLabel: "Filter by {column}"
|
|
777
|
+
},
|
|
778
|
+
tag: {
|
|
779
|
+
close: "Close this tag"
|
|
780
|
+
},
|
|
781
|
+
tour: {
|
|
782
|
+
next: "Next",
|
|
783
|
+
previous: "Previous",
|
|
784
|
+
finish: "Finish",
|
|
785
|
+
close: "Close this dialog"
|
|
786
|
+
},
|
|
787
|
+
tree: {
|
|
788
|
+
emptyText: "No Data"
|
|
789
|
+
},
|
|
790
|
+
transfer: {
|
|
791
|
+
noMatch: "No matching data",
|
|
792
|
+
noData: "No data",
|
|
793
|
+
titles: ["List 1", "List 2"],
|
|
794
|
+
filterPlaceholder: "Enter keyword",
|
|
795
|
+
noCheckedFormat: "{total} items",
|
|
796
|
+
hasCheckedFormat: "{checked}/{total} checked"
|
|
797
|
+
},
|
|
798
|
+
image: {
|
|
799
|
+
error: "FAILED"
|
|
800
|
+
},
|
|
801
|
+
pageHeader: {
|
|
802
|
+
title: "Back"
|
|
803
|
+
},
|
|
804
|
+
popconfirm: {
|
|
805
|
+
confirmButtonText: "Yes",
|
|
806
|
+
cancelButtonText: "No"
|
|
807
|
+
},
|
|
808
|
+
carousel: {
|
|
809
|
+
leftArrow: "Carousel arrow left",
|
|
810
|
+
rightArrow: "Carousel arrow right",
|
|
811
|
+
indicator: "Carousel switch to index {index}"
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
};
|
|
815
|
+
const Al = (e) => (t, n) => Bl(t, n, O(e)), Bl = (e, t, n) => vl(n, e, e).replace(
|
|
816
|
+
/\{(\w+)\}/g,
|
|
817
|
+
(o, r) => {
|
|
818
|
+
var a;
|
|
819
|
+
return `${(a = t?.[r]) != null ? a : `{${r}}`}`;
|
|
820
|
+
}
|
|
821
|
+
), Rl = (e) => {
|
|
822
|
+
const t = x(() => O(e).name), n = At(e) ? e : U(e);
|
|
823
|
+
return {
|
|
824
|
+
lang: t,
|
|
825
|
+
locale: n,
|
|
826
|
+
t: Al(e)
|
|
827
|
+
};
|
|
828
|
+
}, Vo = /* @__PURE__ */ Symbol("localeContextKey"), Ll = (e) => {
|
|
829
|
+
const t = e || ht(Vo, U());
|
|
830
|
+
return Rl(x(() => t.value || $l));
|
|
831
|
+
}, Ho = "__epPropKey", Ce = (e) => e, jl = (e) => $o(e) && !!e[Ho], Go = (e, t) => {
|
|
832
|
+
if (!$o(e) || jl(e))
|
|
833
|
+
return e;
|
|
834
|
+
const { values: n, required: o, default: r, type: a, validator: l } = e, u = {
|
|
835
|
+
type: a,
|
|
836
|
+
required: !!o,
|
|
837
|
+
validator: n || l ? (f) => {
|
|
838
|
+
let g = !1, d = [];
|
|
839
|
+
if (n && (d = Array.from(n), Dn(e, "default") && d.push(r), g || (g = d.includes(f))), l && (g || (g = l(f))), !g && d.length > 0) {
|
|
840
|
+
const S = [...new Set(d)].map((D) => JSON.stringify(D)).join(", ");
|
|
841
|
+
kr(
|
|
842
|
+
`Invalid prop: validation failed${t ? ` for prop "${t}"` : ""}. Expected one of [${S}], got value ${JSON.stringify(
|
|
843
|
+
f
|
|
844
|
+
)}.`
|
|
845
|
+
);
|
|
846
|
+
}
|
|
847
|
+
return g;
|
|
848
|
+
} : void 0,
|
|
849
|
+
[Ho]: !0
|
|
850
|
+
};
|
|
851
|
+
return Dn(e, "default") && (u.default = r), u;
|
|
852
|
+
}, Mt = (e) => wl(
|
|
853
|
+
Object.entries(e).map(([t, n]) => [
|
|
854
|
+
t,
|
|
855
|
+
Go(n, t)
|
|
856
|
+
])
|
|
857
|
+
), Ml = ["", "default", "small", "large"], Fl = Go({
|
|
858
|
+
type: String,
|
|
859
|
+
values: Ml,
|
|
860
|
+
required: !1
|
|
861
|
+
}), zl = /* @__PURE__ */ Symbol("size"), Vl = /* @__PURE__ */ Symbol("emptyValuesContextKey"), Hl = Mt({
|
|
862
|
+
emptyValues: Array,
|
|
863
|
+
valueOnClear: {
|
|
864
|
+
type: Ce([
|
|
865
|
+
String,
|
|
866
|
+
Number,
|
|
867
|
+
Boolean,
|
|
868
|
+
Function
|
|
869
|
+
]),
|
|
870
|
+
default: void 0,
|
|
871
|
+
validator: (e) => (e = en(e) ? e() : e, na(e) ? e.every((t) => !t) : !e)
|
|
872
|
+
}
|
|
873
|
+
}), uo = (e) => Object.keys(e), tn = U();
|
|
874
|
+
function Uo(e, t = void 0) {
|
|
875
|
+
return yt() ? ht(xo, tn) : tn;
|
|
876
|
+
}
|
|
877
|
+
function Gl(e, t) {
|
|
878
|
+
const n = Uo(), o = Ln(
|
|
879
|
+
e,
|
|
880
|
+
x(() => {
|
|
881
|
+
var i;
|
|
882
|
+
return ((i = n.value) == null ? void 0 : i.namespace) || Xt;
|
|
883
|
+
})
|
|
884
|
+
), r = Ll(x(() => {
|
|
885
|
+
var i;
|
|
886
|
+
return (i = n.value) == null ? void 0 : i.locale;
|
|
887
|
+
})), a = Pl(
|
|
888
|
+
x(() => {
|
|
889
|
+
var i;
|
|
890
|
+
return ((i = n.value) == null ? void 0 : i.zIndex) || Fo;
|
|
891
|
+
})
|
|
892
|
+
), l = x(() => {
|
|
893
|
+
var i;
|
|
894
|
+
return O(t) || ((i = n.value) == null ? void 0 : i.size) || "";
|
|
895
|
+
});
|
|
896
|
+
return Yo(x(() => O(n) || {})), {
|
|
897
|
+
ns: o,
|
|
898
|
+
locale: r,
|
|
899
|
+
zIndex: a,
|
|
900
|
+
size: l
|
|
901
|
+
};
|
|
902
|
+
}
|
|
903
|
+
const Yo = (e, t, n = !1) => {
|
|
904
|
+
var o;
|
|
905
|
+
const r = !!yt(), a = r ? Uo() : void 0, l = (o = void 0) != null ? o : r ? _r : void 0;
|
|
906
|
+
if (!l) {
|
|
907
|
+
jt(
|
|
908
|
+
"provideGlobalConfig",
|
|
909
|
+
"provideGlobalConfig() can only be used inside setup()."
|
|
910
|
+
);
|
|
911
|
+
return;
|
|
912
|
+
}
|
|
913
|
+
const i = x(() => {
|
|
914
|
+
const u = O(e);
|
|
915
|
+
return a?.value ? Ul(a.value, u) : u;
|
|
916
|
+
});
|
|
917
|
+
return l(xo, i), l(
|
|
918
|
+
Vo,
|
|
919
|
+
x(() => i.value.locale)
|
|
920
|
+
), l(
|
|
921
|
+
Po,
|
|
922
|
+
x(() => i.value.namespace)
|
|
923
|
+
), l(
|
|
924
|
+
zo,
|
|
925
|
+
x(() => i.value.zIndex)
|
|
926
|
+
), l(zl, {
|
|
927
|
+
size: x(() => i.value.size || "")
|
|
928
|
+
}), l(
|
|
929
|
+
Vl,
|
|
930
|
+
x(() => ({
|
|
931
|
+
emptyValues: i.value.emptyValues,
|
|
932
|
+
valueOnClear: i.value.valueOnClear
|
|
933
|
+
}))
|
|
934
|
+
), (n || !tn.value) && (tn.value = i.value), i;
|
|
935
|
+
}, Ul = (e, t) => {
|
|
936
|
+
const n = [.../* @__PURE__ */ new Set([...uo(e), ...uo(t)])], o = {};
|
|
937
|
+
for (const r of n)
|
|
938
|
+
o[r] = t[r] !== void 0 ? t[r] : e[r];
|
|
939
|
+
return o;
|
|
940
|
+
};
|
|
941
|
+
var Gn = (e, t) => {
|
|
942
|
+
const n = e.__vccOpts || e;
|
|
943
|
+
for (const [o, r] of t)
|
|
944
|
+
n[o] = r;
|
|
945
|
+
return n;
|
|
946
|
+
};
|
|
947
|
+
const Ko = (e, t) => (e.install = (n) => {
|
|
948
|
+
for (const o of [e, ...Object.values({})])
|
|
949
|
+
n.component(o.name, o);
|
|
950
|
+
}, e), Yl = (e, t) => (e.install = (n) => {
|
|
951
|
+
e._context = n._context, n.config.globalProperties[t] = e;
|
|
952
|
+
}, e), Kl = "utils/dom/style";
|
|
953
|
+
function _n(e, t = "px") {
|
|
954
|
+
if (!e && e !== 0)
|
|
955
|
+
return "";
|
|
956
|
+
if (at(e) || Sl(e))
|
|
957
|
+
return `${e}${t}`;
|
|
958
|
+
if (Et(e))
|
|
959
|
+
return e;
|
|
960
|
+
jt(Kl, "binding value must be a string or number");
|
|
961
|
+
}
|
|
962
|
+
const Xl = Mt({
|
|
963
|
+
size: {
|
|
964
|
+
type: Ce([Number, String])
|
|
965
|
+
},
|
|
966
|
+
color: {
|
|
967
|
+
type: String
|
|
968
|
+
}
|
|
969
|
+
}), Wl = re({
|
|
970
|
+
name: "ElIcon",
|
|
971
|
+
inheritAttrs: !1,
|
|
972
|
+
__name: "icon",
|
|
973
|
+
props: Xl,
|
|
974
|
+
setup(e) {
|
|
975
|
+
const t = e, n = Ln("icon"), o = x(() => {
|
|
976
|
+
const { size: r, color: a } = t, l = _n(r);
|
|
977
|
+
return !l && !a ? {} : {
|
|
978
|
+
fontSize: l,
|
|
979
|
+
"--color": a
|
|
980
|
+
};
|
|
981
|
+
});
|
|
982
|
+
return (r, a) => (h(), C(
|
|
983
|
+
"i",
|
|
984
|
+
z({
|
|
985
|
+
class: O(n).b(),
|
|
986
|
+
style: o.value
|
|
987
|
+
}, r.$attrs),
|
|
988
|
+
[
|
|
989
|
+
W(r.$slots, "default")
|
|
990
|
+
],
|
|
991
|
+
16
|
|
992
|
+
));
|
|
993
|
+
}
|
|
994
|
+
});
|
|
995
|
+
var ql = /* @__PURE__ */ Gn(Wl, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/icon/src/icon.vue"]]);
|
|
996
|
+
const co = Ko(ql), Jl = Ce([
|
|
997
|
+
String,
|
|
998
|
+
Object,
|
|
999
|
+
Function
|
|
1000
|
+
]), Zl = {
|
|
1001
|
+
Close: Hr
|
|
1002
|
+
}, fo = {
|
|
1003
|
+
primary: to,
|
|
1004
|
+
success: qr,
|
|
1005
|
+
warning: Zr,
|
|
1006
|
+
error: zr,
|
|
1007
|
+
info: to
|
|
1008
|
+
}, Ql = () => Ct && /android/i.test(window.navigator.userAgent), ei = (e) => e, On = {
|
|
1009
|
+
tab: "Tab",
|
|
1010
|
+
enter: "Enter",
|
|
1011
|
+
space: "Space",
|
|
1012
|
+
left: "ArrowLeft",
|
|
1013
|
+
up: "ArrowUp",
|
|
1014
|
+
right: "ArrowRight",
|
|
1015
|
+
down: "ArrowDown",
|
|
1016
|
+
esc: "Escape",
|
|
1017
|
+
delete: "Delete",
|
|
1018
|
+
backspace: "Backspace",
|
|
1019
|
+
numpadEnter: "NumpadEnter",
|
|
1020
|
+
pageUp: "PageUp",
|
|
1021
|
+
pageDown: "PageDown",
|
|
1022
|
+
home: "Home",
|
|
1023
|
+
end: "End"
|
|
1024
|
+
}, ti = (e) => {
|
|
1025
|
+
if (e.code && e.code !== "Unidentified")
|
|
1026
|
+
return e.code;
|
|
1027
|
+
const t = ni(e);
|
|
1028
|
+
return t ? Object.values(On).includes(t) ? t : t === " " ? On.space : "" : "";
|
|
1029
|
+
}, ni = (e) => {
|
|
1030
|
+
let t = e.key && e.key !== "Unidentified" ? e.key : "";
|
|
1031
|
+
if (!t && e.type === "keyup" && Ql()) {
|
|
1032
|
+
const n = e.target;
|
|
1033
|
+
t = n.value.charAt(n.selectionStart - 1);
|
|
1034
|
+
}
|
|
1035
|
+
return t;
|
|
1036
|
+
}, oi = Mt({
|
|
1037
|
+
value: {
|
|
1038
|
+
type: [String, Number],
|
|
1039
|
+
default: ""
|
|
1040
|
+
},
|
|
1041
|
+
max: {
|
|
1042
|
+
type: Number,
|
|
1043
|
+
default: 99
|
|
1044
|
+
},
|
|
1045
|
+
isDot: Boolean,
|
|
1046
|
+
hidden: Boolean,
|
|
1047
|
+
type: {
|
|
1048
|
+
type: String,
|
|
1049
|
+
values: ["primary", "success", "warning", "info", "danger"],
|
|
1050
|
+
default: "danger"
|
|
1051
|
+
},
|
|
1052
|
+
showZero: {
|
|
1053
|
+
type: Boolean,
|
|
1054
|
+
default: !0
|
|
1055
|
+
},
|
|
1056
|
+
color: String,
|
|
1057
|
+
badgeStyle: {
|
|
1058
|
+
type: Ce([String, Object, Array])
|
|
1059
|
+
},
|
|
1060
|
+
offset: {
|
|
1061
|
+
type: Ce(Array),
|
|
1062
|
+
default: [0, 0]
|
|
1063
|
+
},
|
|
1064
|
+
badgeClass: {
|
|
1065
|
+
type: String
|
|
1066
|
+
}
|
|
1067
|
+
}), ri = re({
|
|
1068
|
+
name: "ElBadge",
|
|
1069
|
+
__name: "badge",
|
|
1070
|
+
props: oi,
|
|
1071
|
+
setup(e, { expose: t }) {
|
|
1072
|
+
const n = e, o = Ln("badge"), r = x(() => n.isDot ? "" : at(n.value) && at(n.max) ? n.max < n.value ? `${n.max}+` : `${n.value}` : `${n.value}`), a = x(() => {
|
|
1073
|
+
var l;
|
|
1074
|
+
return [
|
|
1075
|
+
{
|
|
1076
|
+
backgroundColor: n.color,
|
|
1077
|
+
marginRight: _n(-n.offset[0]),
|
|
1078
|
+
marginTop: _n(n.offset[1])
|
|
1079
|
+
},
|
|
1080
|
+
(l = n.badgeStyle) != null ? l : {}
|
|
1081
|
+
];
|
|
1082
|
+
});
|
|
1083
|
+
return t({
|
|
1084
|
+
content: r
|
|
1085
|
+
}), (l, i) => (h(), C(
|
|
1086
|
+
"div",
|
|
1087
|
+
{
|
|
1088
|
+
class: xe(O(o).b())
|
|
1089
|
+
},
|
|
1090
|
+
[
|
|
1091
|
+
W(l.$slots, "default"),
|
|
1092
|
+
le(To, {
|
|
1093
|
+
name: `${O(o).namespace.value}-zoom-in-center`,
|
|
1094
|
+
persisted: ""
|
|
1095
|
+
}, {
|
|
1096
|
+
default: I(() => [
|
|
1097
|
+
An(ie(
|
|
1098
|
+
"sup",
|
|
1099
|
+
{
|
|
1100
|
+
class: xe([
|
|
1101
|
+
O(o).e("content"),
|
|
1102
|
+
O(o).em("content", l.type),
|
|
1103
|
+
O(o).is("fixed", !!l.$slots.default),
|
|
1104
|
+
O(o).is("dot", l.isDot),
|
|
1105
|
+
O(o).is("hide-zero", !l.showZero && l.value === 0),
|
|
1106
|
+
l.badgeClass
|
|
1107
|
+
]),
|
|
1108
|
+
style: ot(a.value)
|
|
1109
|
+
},
|
|
1110
|
+
[
|
|
1111
|
+
W(l.$slots, "content", { value: r.value }, () => [
|
|
1112
|
+
Ae(
|
|
1113
|
+
q(r.value),
|
|
1114
|
+
1
|
|
1115
|
+
)
|
|
1116
|
+
])
|
|
1117
|
+
],
|
|
1118
|
+
6
|
|
1119
|
+
), [
|
|
1120
|
+
[Do, !l.hidden && (r.value || l.isDot || l.$slots.content)]
|
|
1121
|
+
])
|
|
1122
|
+
]),
|
|
1123
|
+
_: 3
|
|
1124
|
+
}, 8, ["name"])
|
|
1125
|
+
],
|
|
1126
|
+
2
|
|
1127
|
+
));
|
|
1128
|
+
}
|
|
1129
|
+
});
|
|
1130
|
+
var ai = /* @__PURE__ */ Gn(ri, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/badge/src/badge.vue"]]);
|
|
1131
|
+
const li = Ko(ai), ii = Mt({
|
|
1132
|
+
a11y: {
|
|
1133
|
+
type: Boolean,
|
|
1134
|
+
default: !0
|
|
1135
|
+
},
|
|
1136
|
+
locale: {
|
|
1137
|
+
type: Ce(Object)
|
|
1138
|
+
},
|
|
1139
|
+
size: Fl,
|
|
1140
|
+
button: {
|
|
1141
|
+
type: Ce(Object)
|
|
1142
|
+
},
|
|
1143
|
+
card: {
|
|
1144
|
+
type: Ce(Object)
|
|
1145
|
+
},
|
|
1146
|
+
dialog: {
|
|
1147
|
+
type: Ce(Object)
|
|
1148
|
+
},
|
|
1149
|
+
link: {
|
|
1150
|
+
type: Ce(Object)
|
|
1151
|
+
},
|
|
1152
|
+
experimentalFeatures: {
|
|
1153
|
+
type: Ce(Object)
|
|
1154
|
+
},
|
|
1155
|
+
keyboardNavigation: {
|
|
1156
|
+
type: Boolean,
|
|
1157
|
+
default: !0
|
|
1158
|
+
},
|
|
1159
|
+
message: {
|
|
1160
|
+
type: Ce(Object)
|
|
1161
|
+
},
|
|
1162
|
+
zIndex: Number,
|
|
1163
|
+
namespace: {
|
|
1164
|
+
type: String,
|
|
1165
|
+
default: "el"
|
|
1166
|
+
},
|
|
1167
|
+
...Hl
|
|
1168
|
+
}), me = {
|
|
1169
|
+
placement: "top"
|
|
1170
|
+
};
|
|
1171
|
+
re({
|
|
1172
|
+
name: "ElConfigProvider",
|
|
1173
|
+
props: ii,
|
|
1174
|
+
setup(e, { slots: t }) {
|
|
1175
|
+
const n = Yo(e);
|
|
1176
|
+
return Me(
|
|
1177
|
+
() => e.message,
|
|
1178
|
+
(o) => {
|
|
1179
|
+
var r, a;
|
|
1180
|
+
Object.assign(me, (a = (r = n?.value) == null ? void 0 : r.message) != null ? a : {}, o ?? {});
|
|
1181
|
+
},
|
|
1182
|
+
{ immediate: !0, deep: !0 }
|
|
1183
|
+
), () => W(t, "default", { config: n?.value });
|
|
1184
|
+
}
|
|
1185
|
+
});
|
|
1186
|
+
const Xo = [
|
|
1187
|
+
"primary",
|
|
1188
|
+
"success",
|
|
1189
|
+
"info",
|
|
1190
|
+
"warning",
|
|
1191
|
+
"error"
|
|
1192
|
+
], Wo = [
|
|
1193
|
+
"top",
|
|
1194
|
+
"top-left",
|
|
1195
|
+
"top-right",
|
|
1196
|
+
"bottom",
|
|
1197
|
+
"bottom-left",
|
|
1198
|
+
"bottom-right"
|
|
1199
|
+
], mt = "top", ge = ei({
|
|
1200
|
+
customClass: "",
|
|
1201
|
+
dangerouslyUseHTMLString: !1,
|
|
1202
|
+
duration: 3e3,
|
|
1203
|
+
icon: void 0,
|
|
1204
|
+
id: "",
|
|
1205
|
+
message: "",
|
|
1206
|
+
onClose: void 0,
|
|
1207
|
+
showClose: !1,
|
|
1208
|
+
type: "info",
|
|
1209
|
+
plain: !1,
|
|
1210
|
+
offset: 16,
|
|
1211
|
+
placement: void 0,
|
|
1212
|
+
zIndex: 0,
|
|
1213
|
+
grouping: !1,
|
|
1214
|
+
repeatNum: 1,
|
|
1215
|
+
appendTo: Ct ? document.body : void 0
|
|
1216
|
+
}), si = Mt({
|
|
1217
|
+
customClass: {
|
|
1218
|
+
type: String,
|
|
1219
|
+
default: ge.customClass
|
|
1220
|
+
},
|
|
1221
|
+
dangerouslyUseHTMLString: {
|
|
1222
|
+
type: Boolean,
|
|
1223
|
+
default: ge.dangerouslyUseHTMLString
|
|
1224
|
+
},
|
|
1225
|
+
duration: {
|
|
1226
|
+
type: Number,
|
|
1227
|
+
default: ge.duration
|
|
1228
|
+
},
|
|
1229
|
+
icon: {
|
|
1230
|
+
type: Jl,
|
|
1231
|
+
default: ge.icon
|
|
1232
|
+
},
|
|
1233
|
+
id: {
|
|
1234
|
+
type: String,
|
|
1235
|
+
default: ge.id
|
|
1236
|
+
},
|
|
1237
|
+
message: {
|
|
1238
|
+
type: Ce([
|
|
1239
|
+
String,
|
|
1240
|
+
Object,
|
|
1241
|
+
Function
|
|
1242
|
+
]),
|
|
1243
|
+
default: ge.message
|
|
1244
|
+
},
|
|
1245
|
+
onClose: {
|
|
1246
|
+
type: Ce(Function),
|
|
1247
|
+
default: ge.onClose
|
|
1248
|
+
},
|
|
1249
|
+
showClose: {
|
|
1250
|
+
type: Boolean,
|
|
1251
|
+
default: ge.showClose
|
|
1252
|
+
},
|
|
1253
|
+
type: {
|
|
1254
|
+
type: String,
|
|
1255
|
+
values: Xo,
|
|
1256
|
+
default: ge.type
|
|
1257
|
+
},
|
|
1258
|
+
plain: {
|
|
1259
|
+
type: Boolean,
|
|
1260
|
+
default: ge.plain
|
|
1261
|
+
},
|
|
1262
|
+
offset: {
|
|
1263
|
+
type: Number,
|
|
1264
|
+
default: ge.offset
|
|
1265
|
+
},
|
|
1266
|
+
placement: {
|
|
1267
|
+
type: String,
|
|
1268
|
+
values: Wo,
|
|
1269
|
+
default: ge.placement
|
|
1270
|
+
},
|
|
1271
|
+
zIndex: {
|
|
1272
|
+
type: Number,
|
|
1273
|
+
default: ge.zIndex
|
|
1274
|
+
},
|
|
1275
|
+
grouping: {
|
|
1276
|
+
type: Boolean,
|
|
1277
|
+
default: ge.grouping
|
|
1278
|
+
},
|
|
1279
|
+
repeatNum: {
|
|
1280
|
+
type: Number,
|
|
1281
|
+
default: ge.repeatNum
|
|
1282
|
+
}
|
|
1283
|
+
}), ui = {
|
|
1284
|
+
destroy: () => !0
|
|
1285
|
+
}, Be = ko(
|
|
1286
|
+
{}
|
|
1287
|
+
), ci = (e) => (Be[e] || (Be[e] = ko([])), Be[e]), di = (e, t) => {
|
|
1288
|
+
const n = Be[t] || [], o = n.findIndex((l) => l.id === e), r = n[o];
|
|
1289
|
+
let a;
|
|
1290
|
+
return o > 0 && (a = n[o - 1]), { current: r, prev: a };
|
|
1291
|
+
}, fi = (e, t) => {
|
|
1292
|
+
const { prev: n } = di(e, t);
|
|
1293
|
+
return n ? n.vm.exposed.bottom.value : 0;
|
|
1294
|
+
}, pi = (e, t, n) => (Be[n] || []).findIndex((a) => a.id === e) > 0 ? 16 : t, hi = ["id"], gi = ["innerHTML"], mi = re({
|
|
1295
|
+
name: "ElMessage",
|
|
1296
|
+
__name: "message",
|
|
1297
|
+
props: si,
|
|
1298
|
+
emits: ui,
|
|
1299
|
+
setup(e, { expose: t, emit: n }) {
|
|
1300
|
+
const { Close: o } = Zl, r = e, a = n, l = U(!1), { ns: i, zIndex: u } = Gl("message"), { currentZIndex: f, nextZIndex: g } = u, d = U(), S = U(!1), D = U(0);
|
|
1301
|
+
let b;
|
|
1302
|
+
const p = x(
|
|
1303
|
+
() => r.type ? r.type === "error" ? "danger" : r.type : "info"
|
|
1304
|
+
), L = x(() => {
|
|
1305
|
+
const F = r.type;
|
|
1306
|
+
return { [i.bm("icon", F)]: F && fo[F] };
|
|
1307
|
+
}), _ = x(
|
|
1308
|
+
() => r.icon || fo[r.type] || ""
|
|
1309
|
+
), $ = x(() => r.placement || mt), v = x(() => fi(r.id, $.value)), T = x(() => pi(r.id, r.offset, $.value) + v.value), N = x(() => D.value + T.value), G = x(() => $.value.includes("left") ? i.is("left") : $.value.includes("right") ? i.is("right") : i.is("center")), m = x(
|
|
1310
|
+
() => $.value.startsWith("top") ? "top" : "bottom"
|
|
1311
|
+
), w = x(() => ({
|
|
1312
|
+
[m.value]: `${T.value}px`,
|
|
1313
|
+
zIndex: f.value
|
|
1314
|
+
}));
|
|
1315
|
+
function V() {
|
|
1316
|
+
r.duration !== 0 && ({ stop: b } = kl(() => {
|
|
1317
|
+
K();
|
|
1318
|
+
}, r.duration));
|
|
1319
|
+
}
|
|
1320
|
+
function P() {
|
|
1321
|
+
b?.();
|
|
1322
|
+
}
|
|
1323
|
+
function K() {
|
|
1324
|
+
S.value = !1, Bn(() => {
|
|
1325
|
+
var F;
|
|
1326
|
+
l.value || ((F = r.onClose) == null || F.call(r), a("destroy"));
|
|
1327
|
+
});
|
|
1328
|
+
}
|
|
1329
|
+
function se(F) {
|
|
1330
|
+
ti(F) === On.esc && K();
|
|
1331
|
+
}
|
|
1332
|
+
return Rt(() => {
|
|
1333
|
+
V(), g(), S.value = !0;
|
|
1334
|
+
}), Me(
|
|
1335
|
+
() => r.repeatNum,
|
|
1336
|
+
() => {
|
|
1337
|
+
P(), V();
|
|
1338
|
+
}
|
|
1339
|
+
), _l(document, "keydown", se), Nl(d, () => {
|
|
1340
|
+
D.value = d.value.getBoundingClientRect().height;
|
|
1341
|
+
}), t({
|
|
1342
|
+
visible: S,
|
|
1343
|
+
bottom: N,
|
|
1344
|
+
close: K
|
|
1345
|
+
}), (F, Q) => (h(), A(To, {
|
|
1346
|
+
name: O(i).b("fade"),
|
|
1347
|
+
onBeforeEnter: Q[0] || (Q[0] = (ze) => l.value = !0),
|
|
1348
|
+
onBeforeLeave: F.onClose,
|
|
1349
|
+
onAfterLeave: Q[1] || (Q[1] = (ze) => F.$emit("destroy")),
|
|
1350
|
+
persisted: ""
|
|
1351
|
+
}, {
|
|
1352
|
+
default: I(() => [
|
|
1353
|
+
An(ie("div", {
|
|
1354
|
+
id: F.id,
|
|
1355
|
+
ref_key: "messageRef",
|
|
1356
|
+
ref: d,
|
|
1357
|
+
class: xe([
|
|
1358
|
+
O(i).b(),
|
|
1359
|
+
{ [O(i).m(F.type)]: F.type },
|
|
1360
|
+
O(i).is("closable", F.showClose),
|
|
1361
|
+
O(i).is("plain", F.plain),
|
|
1362
|
+
O(i).is("bottom", m.value === "bottom"),
|
|
1363
|
+
G.value,
|
|
1364
|
+
F.customClass
|
|
1365
|
+
]),
|
|
1366
|
+
style: ot(w.value),
|
|
1367
|
+
role: "alert",
|
|
1368
|
+
onMouseenter: P,
|
|
1369
|
+
onMouseleave: V
|
|
1370
|
+
}, [
|
|
1371
|
+
F.repeatNum > 1 ? (h(), A(O(li), {
|
|
1372
|
+
key: 0,
|
|
1373
|
+
value: F.repeatNum,
|
|
1374
|
+
type: p.value,
|
|
1375
|
+
class: xe(O(i).e("badge"))
|
|
1376
|
+
}, null, 8, ["value", "type", "class"])) : k("v-if", !0),
|
|
1377
|
+
_.value ? (h(), A(O(co), {
|
|
1378
|
+
key: 1,
|
|
1379
|
+
class: xe([O(i).e("icon"), L.value])
|
|
1380
|
+
}, {
|
|
1381
|
+
default: I(() => [
|
|
1382
|
+
(h(), A(Pe(_.value)))
|
|
1383
|
+
]),
|
|
1384
|
+
_: 1
|
|
1385
|
+
}, 8, ["class"])) : k("v-if", !0),
|
|
1386
|
+
W(F.$slots, "default", {}, () => [
|
|
1387
|
+
F.dangerouslyUseHTMLString ? (h(), C(
|
|
1388
|
+
ee,
|
|
1389
|
+
{ key: 1 },
|
|
1390
|
+
[
|
|
1391
|
+
k(" Caution here, message could've been compromised, never use user's input as message "),
|
|
1392
|
+
ie("p", {
|
|
1393
|
+
class: xe(O(i).e("content")),
|
|
1394
|
+
innerHTML: F.message
|
|
1395
|
+
}, null, 10, gi)
|
|
1396
|
+
],
|
|
1397
|
+
2112
|
|
1398
|
+
)) : (h(), C(
|
|
1399
|
+
"p",
|
|
1400
|
+
{
|
|
1401
|
+
key: 0,
|
|
1402
|
+
class: xe(O(i).e("content"))
|
|
1403
|
+
},
|
|
1404
|
+
q(F.message),
|
|
1405
|
+
3
|
|
1406
|
+
))
|
|
1407
|
+
]),
|
|
1408
|
+
F.showClose ? (h(), A(O(co), {
|
|
1409
|
+
key: 2,
|
|
1410
|
+
class: xe(O(i).e("closeBtn")),
|
|
1411
|
+
onClick: _o(K, ["stop"])
|
|
1412
|
+
}, {
|
|
1413
|
+
default: I(() => [
|
|
1414
|
+
le(O(o))
|
|
1415
|
+
]),
|
|
1416
|
+
_: 1
|
|
1417
|
+
}, 8, ["class"])) : k("v-if", !0)
|
|
1418
|
+
], 46, hi), [
|
|
1419
|
+
[Do, S.value]
|
|
1420
|
+
])
|
|
1421
|
+
]),
|
|
1422
|
+
_: 3
|
|
1423
|
+
}, 8, ["name", "onBeforeLeave"]));
|
|
1424
|
+
}
|
|
1425
|
+
});
|
|
1426
|
+
var bi = /* @__PURE__ */ Gn(mi, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/message/src/message.vue"]]);
|
|
1427
|
+
let yi = 1;
|
|
1428
|
+
const vi = (e) => {
|
|
1429
|
+
if (!e.appendTo)
|
|
1430
|
+
e.appendTo = document.body;
|
|
1431
|
+
else if (Et(e.appendTo)) {
|
|
1432
|
+
let n = document.querySelector(e.appendTo);
|
|
1433
|
+
El(n) || (jt(
|
|
1434
|
+
"ElMessage",
|
|
1435
|
+
"the appendTo option is not an HTMLElement. Falling back to document.body."
|
|
1436
|
+
), n = document.body), e.appendTo = n;
|
|
1437
|
+
}
|
|
1438
|
+
}, wi = (e) => {
|
|
1439
|
+
!e.placement && Et(me.placement) && me.placement && (e.placement = me.placement), e.placement || (e.placement = mt), Wo.includes(e.placement) || (jt(
|
|
1440
|
+
"ElMessage",
|
|
1441
|
+
`Invalid placement: ${e.placement}. Falling back to '${mt}'.`
|
|
1442
|
+
), e.placement = mt);
|
|
1443
|
+
}, qo = (e) => {
|
|
1444
|
+
const t = !e || Et(e) || Oo(e) || en(e) ? { message: e } : e, n = {
|
|
1445
|
+
...ge,
|
|
1446
|
+
...t
|
|
1447
|
+
};
|
|
1448
|
+
return vi(n), wi(n), gn(me.grouping) && !n.grouping && (n.grouping = me.grouping), at(me.duration) && n.duration === 3e3 && (n.duration = me.duration), at(me.offset) && n.offset === 16 && (n.offset = me.offset), gn(me.showClose) && !n.showClose && (n.showClose = me.showClose), gn(me.plain) && !n.plain && (n.plain = me.plain), n;
|
|
1449
|
+
}, Ei = (e) => {
|
|
1450
|
+
const t = e.props.placement || mt, n = Be[t], o = n.indexOf(e);
|
|
1451
|
+
if (o === -1)
|
|
1452
|
+
return;
|
|
1453
|
+
n.splice(o, 1);
|
|
1454
|
+
const { handler: r } = e;
|
|
1455
|
+
r.close();
|
|
1456
|
+
}, Si = ({ appendTo: e, ...t }, n) => {
|
|
1457
|
+
const o = `message_${yi++}`, r = t.onClose, a = document.createElement("div"), l = {
|
|
1458
|
+
...t,
|
|
1459
|
+
id: o,
|
|
1460
|
+
onClose: () => {
|
|
1461
|
+
r?.(), Ei(g);
|
|
1462
|
+
},
|
|
1463
|
+
onDestroy: () => {
|
|
1464
|
+
eo(null, a);
|
|
1465
|
+
}
|
|
1466
|
+
}, i = le(
|
|
1467
|
+
bi,
|
|
1468
|
+
l,
|
|
1469
|
+
en(l.message) || Oo(l.message) ? {
|
|
1470
|
+
default: en(l.message) ? l.message : () => l.message
|
|
1471
|
+
} : null
|
|
1472
|
+
);
|
|
1473
|
+
i.appContext = n || lt._context, eo(i, a), e.appendChild(a.firstElementChild);
|
|
1474
|
+
const u = i.component, g = {
|
|
1475
|
+
id: o,
|
|
1476
|
+
vnode: i,
|
|
1477
|
+
vm: u,
|
|
1478
|
+
handler: {
|
|
1479
|
+
close: () => {
|
|
1480
|
+
u.exposed.close();
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
props: i.component.props
|
|
1484
|
+
};
|
|
1485
|
+
return g;
|
|
1486
|
+
}, lt = (e = {}, t) => {
|
|
1487
|
+
if (!Ct)
|
|
1488
|
+
return { close: () => {
|
|
1489
|
+
} };
|
|
1490
|
+
const n = qo(e), o = ci(
|
|
1491
|
+
n.placement || mt
|
|
1492
|
+
);
|
|
1493
|
+
if (n.grouping && o.length) {
|
|
1494
|
+
const a = o.find(
|
|
1495
|
+
({ vnode: l }) => {
|
|
1496
|
+
var i;
|
|
1497
|
+
return ((i = l.props) == null ? void 0 : i.message) === n.message;
|
|
1498
|
+
}
|
|
1499
|
+
);
|
|
1500
|
+
if (a)
|
|
1501
|
+
return a.props.repeatNum += 1, a.props.type = n.type, a.handler;
|
|
1502
|
+
}
|
|
1503
|
+
if (at(me.max) && o.length >= me.max)
|
|
1504
|
+
return { close: () => {
|
|
1505
|
+
} };
|
|
1506
|
+
const r = Si(n, t);
|
|
1507
|
+
return o.push(r), r.handler;
|
|
1508
|
+
};
|
|
1509
|
+
Xo.forEach((e) => {
|
|
1510
|
+
lt[e] = (t = {}, n) => {
|
|
1511
|
+
const o = qo(t);
|
|
1512
|
+
return lt({ ...o, type: e }, n);
|
|
1513
|
+
};
|
|
1514
|
+
});
|
|
1515
|
+
function Ci(e) {
|
|
1516
|
+
for (const t in Be)
|
|
1517
|
+
if (Dn(Be, t)) {
|
|
1518
|
+
const n = [...Be[t]];
|
|
1519
|
+
for (const o of n)
|
|
1520
|
+
(!e || e === o.props.type) && o.handler.close();
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
function Ti(e) {
|
|
1524
|
+
if (!Be[e])
|
|
1525
|
+
return;
|
|
1526
|
+
[...Be[e]].forEach((n) => n.handler.close());
|
|
1527
|
+
}
|
|
1528
|
+
lt.closeAll = Ci;
|
|
1529
|
+
lt.closeAllByPlacement = Ti;
|
|
1530
|
+
lt._context = null;
|
|
1531
|
+
const po = Yl(lt, "$message");
|
|
1532
|
+
function ho(e, t) {
|
|
1533
|
+
var n = Object.keys(e);
|
|
1534
|
+
if (Object.getOwnPropertySymbols) {
|
|
1535
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
1536
|
+
t && (o = o.filter(function(r) {
|
|
1537
|
+
return Object.getOwnPropertyDescriptor(e, r).enumerable;
|
|
1538
|
+
})), n.push.apply(n, o);
|
|
1539
|
+
}
|
|
1540
|
+
return n;
|
|
1541
|
+
}
|
|
1542
|
+
function Fe(e) {
|
|
1543
|
+
for (var t = 1; t < arguments.length; t++) {
|
|
1544
|
+
var n = arguments[t] != null ? arguments[t] : {};
|
|
1545
|
+
t % 2 ? ho(Object(n), !0).forEach(function(o) {
|
|
1546
|
+
Di(e, o, n[o]);
|
|
1547
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : ho(Object(n)).forEach(function(o) {
|
|
1548
|
+
Object.defineProperty(e, o, Object.getOwnPropertyDescriptor(n, o));
|
|
1549
|
+
});
|
|
1550
|
+
}
|
|
1551
|
+
return e;
|
|
1552
|
+
}
|
|
1553
|
+
function Wt(e) {
|
|
1554
|
+
"@babel/helpers - typeof";
|
|
1555
|
+
return typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? Wt = function(t) {
|
|
1556
|
+
return typeof t;
|
|
1557
|
+
} : Wt = function(t) {
|
|
1558
|
+
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
1559
|
+
}, Wt(e);
|
|
1560
|
+
}
|
|
1561
|
+
function Di(e, t, n) {
|
|
1562
|
+
return t in e ? Object.defineProperty(e, t, {
|
|
1563
|
+
value: n,
|
|
1564
|
+
enumerable: !0,
|
|
1565
|
+
configurable: !0,
|
|
1566
|
+
writable: !0
|
|
1567
|
+
}) : e[t] = n, e;
|
|
1568
|
+
}
|
|
1569
|
+
function Ge() {
|
|
1570
|
+
return Ge = Object.assign || function(e) {
|
|
1571
|
+
for (var t = 1; t < arguments.length; t++) {
|
|
1572
|
+
var n = arguments[t];
|
|
1573
|
+
for (var o in n)
|
|
1574
|
+
Object.prototype.hasOwnProperty.call(n, o) && (e[o] = n[o]);
|
|
1575
|
+
}
|
|
1576
|
+
return e;
|
|
1577
|
+
}, Ge.apply(this, arguments);
|
|
1578
|
+
}
|
|
1579
|
+
function ki(e, t) {
|
|
1580
|
+
if (e == null) return {};
|
|
1581
|
+
var n = {}, o = Object.keys(e), r, a;
|
|
1582
|
+
for (a = 0; a < o.length; a++)
|
|
1583
|
+
r = o[a], !(t.indexOf(r) >= 0) && (n[r] = e[r]);
|
|
1584
|
+
return n;
|
|
1585
|
+
}
|
|
1586
|
+
function _i(e, t) {
|
|
1587
|
+
if (e == null) return {};
|
|
1588
|
+
var n = ki(e, t), o, r;
|
|
1589
|
+
if (Object.getOwnPropertySymbols) {
|
|
1590
|
+
var a = Object.getOwnPropertySymbols(e);
|
|
1591
|
+
for (r = 0; r < a.length; r++)
|
|
1592
|
+
o = a[r], !(t.indexOf(o) >= 0) && Object.prototype.propertyIsEnumerable.call(e, o) && (n[o] = e[o]);
|
|
1593
|
+
}
|
|
1594
|
+
return n;
|
|
1595
|
+
}
|
|
1596
|
+
var Oi = "1.15.0";
|
|
1597
|
+
function He(e) {
|
|
1598
|
+
if (typeof window < "u" && window.navigator)
|
|
1599
|
+
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
1600
|
+
}
|
|
1601
|
+
var Ue = He(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), Ft = He(/Edge/i), go = He(/firefox/i), It = He(/safari/i) && !He(/chrome/i) && !He(/android/i), Jo = He(/iP(ad|od|hone)/i), Zo = He(/chrome/i) && He(/android/i), Qo = {
|
|
1602
|
+
capture: !1,
|
|
1603
|
+
passive: !1
|
|
1604
|
+
};
|
|
1605
|
+
function X(e, t, n) {
|
|
1606
|
+
e.addEventListener(t, n, !Ue && Qo);
|
|
1607
|
+
}
|
|
1608
|
+
function Y(e, t, n) {
|
|
1609
|
+
e.removeEventListener(t, n, !Ue && Qo);
|
|
1610
|
+
}
|
|
1611
|
+
function nn(e, t) {
|
|
1612
|
+
if (t) {
|
|
1613
|
+
if (t[0] === ">" && (t = t.substring(1)), e)
|
|
1614
|
+
try {
|
|
1615
|
+
if (e.matches)
|
|
1616
|
+
return e.matches(t);
|
|
1617
|
+
if (e.msMatchesSelector)
|
|
1618
|
+
return e.msMatchesSelector(t);
|
|
1619
|
+
if (e.webkitMatchesSelector)
|
|
1620
|
+
return e.webkitMatchesSelector(t);
|
|
1621
|
+
} catch {
|
|
1622
|
+
return !1;
|
|
1623
|
+
}
|
|
1624
|
+
return !1;
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
function Ii(e) {
|
|
1628
|
+
return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
|
|
1629
|
+
}
|
|
1630
|
+
function Le(e, t, n, o) {
|
|
1631
|
+
if (e) {
|
|
1632
|
+
n = n || document;
|
|
1633
|
+
do {
|
|
1634
|
+
if (t != null && (t[0] === ">" ? e.parentNode === n && nn(e, t) : nn(e, t)) || o && e === n)
|
|
1635
|
+
return e;
|
|
1636
|
+
if (e === n) break;
|
|
1637
|
+
} while (e = Ii(e));
|
|
1638
|
+
}
|
|
1639
|
+
return null;
|
|
1640
|
+
}
|
|
1641
|
+
var mo = /\s+/g;
|
|
1642
|
+
function De(e, t, n) {
|
|
1643
|
+
if (e && t)
|
|
1644
|
+
if (e.classList)
|
|
1645
|
+
e.classList[n ? "add" : "remove"](t);
|
|
1646
|
+
else {
|
|
1647
|
+
var o = (" " + e.className + " ").replace(mo, " ").replace(" " + t + " ", " ");
|
|
1648
|
+
e.className = (o + (n ? " " + t : "")).replace(mo, " ");
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
function B(e, t, n) {
|
|
1652
|
+
var o = e && e.style;
|
|
1653
|
+
if (o) {
|
|
1654
|
+
if (n === void 0)
|
|
1655
|
+
return document.defaultView && document.defaultView.getComputedStyle ? n = document.defaultView.getComputedStyle(e, "") : e.currentStyle && (n = e.currentStyle), t === void 0 ? n : n[t];
|
|
1656
|
+
!(t in o) && t.indexOf("webkit") === -1 && (t = "-webkit-" + t), o[t] = n + (typeof n == "string" ? "" : "px");
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
function bt(e, t) {
|
|
1660
|
+
var n = "";
|
|
1661
|
+
if (typeof e == "string")
|
|
1662
|
+
n = e;
|
|
1663
|
+
else
|
|
1664
|
+
do {
|
|
1665
|
+
var o = B(e, "transform");
|
|
1666
|
+
o && o !== "none" && (n = o + " " + n);
|
|
1667
|
+
} while (!t && (e = e.parentNode));
|
|
1668
|
+
var r = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix || window.MSCSSMatrix;
|
|
1669
|
+
return r && new r(n);
|
|
1670
|
+
}
|
|
1671
|
+
function er(e, t, n) {
|
|
1672
|
+
if (e) {
|
|
1673
|
+
var o = e.getElementsByTagName(t), r = 0, a = o.length;
|
|
1674
|
+
if (n)
|
|
1675
|
+
for (; r < a; r++)
|
|
1676
|
+
n(o[r], r);
|
|
1677
|
+
return o;
|
|
1678
|
+
}
|
|
1679
|
+
return [];
|
|
1680
|
+
}
|
|
1681
|
+
function je() {
|
|
1682
|
+
var e = document.scrollingElement;
|
|
1683
|
+
return e || document.documentElement;
|
|
1684
|
+
}
|
|
1685
|
+
function ce(e, t, n, o, r) {
|
|
1686
|
+
if (!(!e.getBoundingClientRect && e !== window)) {
|
|
1687
|
+
var a, l, i, u, f, g, d;
|
|
1688
|
+
if (e !== window && e.parentNode && e !== je() ? (a = e.getBoundingClientRect(), l = a.top, i = a.left, u = a.bottom, f = a.right, g = a.height, d = a.width) : (l = 0, i = 0, u = window.innerHeight, f = window.innerWidth, g = window.innerHeight, d = window.innerWidth), (t || n) && e !== window && (r = r || e.parentNode, !Ue))
|
|
1689
|
+
do
|
|
1690
|
+
if (r && r.getBoundingClientRect && (B(r, "transform") !== "none" || n && B(r, "position") !== "static")) {
|
|
1691
|
+
var S = r.getBoundingClientRect();
|
|
1692
|
+
l -= S.top + parseInt(B(r, "border-top-width")), i -= S.left + parseInt(B(r, "border-left-width")), u = l + a.height, f = i + a.width;
|
|
1693
|
+
break;
|
|
1694
|
+
}
|
|
1695
|
+
while (r = r.parentNode);
|
|
1696
|
+
if (o && e !== window) {
|
|
1697
|
+
var D = bt(r || e), b = D && D.a, p = D && D.d;
|
|
1698
|
+
D && (l /= p, i /= b, d /= b, g /= p, u = l + g, f = i + d);
|
|
1699
|
+
}
|
|
1700
|
+
return {
|
|
1701
|
+
top: l,
|
|
1702
|
+
left: i,
|
|
1703
|
+
bottom: u,
|
|
1704
|
+
right: f,
|
|
1705
|
+
width: d,
|
|
1706
|
+
height: g
|
|
1707
|
+
};
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
function bo(e, t, n) {
|
|
1711
|
+
for (var o = qe(e, !0), r = ce(e)[t]; o; ) {
|
|
1712
|
+
var a = ce(o)[n], l = void 0;
|
|
1713
|
+
if (l = r >= a, !l) return o;
|
|
1714
|
+
if (o === je()) break;
|
|
1715
|
+
o = qe(o, !1);
|
|
1716
|
+
}
|
|
1717
|
+
return !1;
|
|
1718
|
+
}
|
|
1719
|
+
function wt(e, t, n, o) {
|
|
1720
|
+
for (var r = 0, a = 0, l = e.children; a < l.length; ) {
|
|
1721
|
+
if (l[a].style.display !== "none" && l[a] !== R.ghost && (o || l[a] !== R.dragged) && Le(l[a], n.draggable, e, !1)) {
|
|
1722
|
+
if (r === t)
|
|
1723
|
+
return l[a];
|
|
1724
|
+
r++;
|
|
1725
|
+
}
|
|
1726
|
+
a++;
|
|
1727
|
+
}
|
|
1728
|
+
return null;
|
|
1729
|
+
}
|
|
1730
|
+
function Un(e, t) {
|
|
1731
|
+
for (var n = e.lastElementChild; n && (n === R.ghost || B(n, "display") === "none" || t && !nn(n, t)); )
|
|
1732
|
+
n = n.previousElementSibling;
|
|
1733
|
+
return n || null;
|
|
1734
|
+
}
|
|
1735
|
+
function Ne(e, t) {
|
|
1736
|
+
var n = 0;
|
|
1737
|
+
if (!e || !e.parentNode)
|
|
1738
|
+
return -1;
|
|
1739
|
+
for (; e = e.previousElementSibling; )
|
|
1740
|
+
e.nodeName.toUpperCase() !== "TEMPLATE" && e !== R.clone && (!t || nn(e, t)) && n++;
|
|
1741
|
+
return n;
|
|
1742
|
+
}
|
|
1743
|
+
function yo(e) {
|
|
1744
|
+
var t = 0, n = 0, o = je();
|
|
1745
|
+
if (e)
|
|
1746
|
+
do {
|
|
1747
|
+
var r = bt(e), a = r.a, l = r.d;
|
|
1748
|
+
t += e.scrollLeft * a, n += e.scrollTop * l;
|
|
1749
|
+
} while (e !== o && (e = e.parentNode));
|
|
1750
|
+
return [t, n];
|
|
1751
|
+
}
|
|
1752
|
+
function Ni(e, t) {
|
|
1753
|
+
for (var n in e)
|
|
1754
|
+
if (e.hasOwnProperty(n)) {
|
|
1755
|
+
for (var o in t)
|
|
1756
|
+
if (t.hasOwnProperty(o) && t[o] === e[n][o]) return Number(n);
|
|
1757
|
+
}
|
|
1758
|
+
return -1;
|
|
1759
|
+
}
|
|
1760
|
+
function qe(e, t) {
|
|
1761
|
+
if (!e || !e.getBoundingClientRect) return je();
|
|
1762
|
+
var n = e, o = !1;
|
|
1763
|
+
do
|
|
1764
|
+
if (n.clientWidth < n.scrollWidth || n.clientHeight < n.scrollHeight) {
|
|
1765
|
+
var r = B(n);
|
|
1766
|
+
if (n.clientWidth < n.scrollWidth && (r.overflowX == "auto" || r.overflowX == "scroll") || n.clientHeight < n.scrollHeight && (r.overflowY == "auto" || r.overflowY == "scroll")) {
|
|
1767
|
+
if (!n.getBoundingClientRect || n === document.body) return je();
|
|
1768
|
+
if (o || t) return n;
|
|
1769
|
+
o = !0;
|
|
1770
|
+
}
|
|
1771
|
+
}
|
|
1772
|
+
while (n = n.parentNode);
|
|
1773
|
+
return je();
|
|
1774
|
+
}
|
|
1775
|
+
function xi(e, t) {
|
|
1776
|
+
if (e && t)
|
|
1777
|
+
for (var n in t)
|
|
1778
|
+
t.hasOwnProperty(n) && (e[n] = t[n]);
|
|
1779
|
+
return e;
|
|
1780
|
+
}
|
|
1781
|
+
function mn(e, t) {
|
|
1782
|
+
return Math.round(e.top) === Math.round(t.top) && Math.round(e.left) === Math.round(t.left) && Math.round(e.height) === Math.round(t.height) && Math.round(e.width) === Math.round(t.width);
|
|
1783
|
+
}
|
|
1784
|
+
var Nt;
|
|
1785
|
+
function tr(e, t) {
|
|
1786
|
+
return function() {
|
|
1787
|
+
if (!Nt) {
|
|
1788
|
+
var n = arguments, o = this;
|
|
1789
|
+
n.length === 1 ? e.call(o, n[0]) : e.apply(o, n), Nt = setTimeout(function() {
|
|
1790
|
+
Nt = void 0;
|
|
1791
|
+
}, t);
|
|
1792
|
+
}
|
|
1793
|
+
};
|
|
1794
|
+
}
|
|
1795
|
+
function Pi() {
|
|
1796
|
+
clearTimeout(Nt), Nt = void 0;
|
|
1797
|
+
}
|
|
1798
|
+
function nr(e, t, n) {
|
|
1799
|
+
e.scrollLeft += t, e.scrollTop += n;
|
|
1800
|
+
}
|
|
1801
|
+
function or(e) {
|
|
1802
|
+
var t = window.Polymer, n = window.jQuery || window.Zepto;
|
|
1803
|
+
return t && t.dom ? t.dom(e).cloneNode(!0) : n ? n(e).clone(!0)[0] : e.cloneNode(!0);
|
|
1804
|
+
}
|
|
1805
|
+
var Oe = "Sortable" + (/* @__PURE__ */ new Date()).getTime();
|
|
1806
|
+
function $i() {
|
|
1807
|
+
var e = [], t;
|
|
1808
|
+
return {
|
|
1809
|
+
captureAnimationState: function() {
|
|
1810
|
+
if (e = [], !!this.options.animation) {
|
|
1811
|
+
var o = [].slice.call(this.el.children);
|
|
1812
|
+
o.forEach(function(r) {
|
|
1813
|
+
if (!(B(r, "display") === "none" || r === R.ghost)) {
|
|
1814
|
+
e.push({
|
|
1815
|
+
target: r,
|
|
1816
|
+
rect: ce(r)
|
|
1817
|
+
});
|
|
1818
|
+
var a = Fe({}, e[e.length - 1].rect);
|
|
1819
|
+
if (r.thisAnimationDuration) {
|
|
1820
|
+
var l = bt(r, !0);
|
|
1821
|
+
l && (a.top -= l.f, a.left -= l.e);
|
|
1822
|
+
}
|
|
1823
|
+
r.fromRect = a;
|
|
1824
|
+
}
|
|
1825
|
+
});
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
addAnimationState: function(o) {
|
|
1829
|
+
e.push(o);
|
|
1830
|
+
},
|
|
1831
|
+
removeAnimationState: function(o) {
|
|
1832
|
+
e.splice(Ni(e, {
|
|
1833
|
+
target: o
|
|
1834
|
+
}), 1);
|
|
1835
|
+
},
|
|
1836
|
+
animateAll: function(o) {
|
|
1837
|
+
var r = this;
|
|
1838
|
+
if (!this.options.animation) {
|
|
1839
|
+
clearTimeout(t), typeof o == "function" && o();
|
|
1840
|
+
return;
|
|
1841
|
+
}
|
|
1842
|
+
var a = !1, l = 0;
|
|
1843
|
+
e.forEach(function(i) {
|
|
1844
|
+
var u = 0, f = i.target, g = f.fromRect, d = ce(f), S = f.prevFromRect, D = f.prevToRect, b = i.rect, p = bt(f, !0);
|
|
1845
|
+
p && (d.top -= p.f, d.left -= p.e), f.toRect = d, f.thisAnimationDuration && mn(S, d) && !mn(g, d) && // Make sure animatingRect is on line between toRect & fromRect
|
|
1846
|
+
(b.top - d.top) / (b.left - d.left) === (g.top - d.top) / (g.left - d.left) && (u = Bi(b, S, D, r.options)), mn(d, g) || (f.prevFromRect = g, f.prevToRect = d, u || (u = r.options.animation), r.animate(f, b, d, u)), u && (a = !0, l = Math.max(l, u), clearTimeout(f.animationResetTimer), f.animationResetTimer = setTimeout(function() {
|
|
1847
|
+
f.animationTime = 0, f.prevFromRect = null, f.fromRect = null, f.prevToRect = null, f.thisAnimationDuration = null;
|
|
1848
|
+
}, u), f.thisAnimationDuration = u);
|
|
1849
|
+
}), clearTimeout(t), a ? t = setTimeout(function() {
|
|
1850
|
+
typeof o == "function" && o();
|
|
1851
|
+
}, l) : typeof o == "function" && o(), e = [];
|
|
1852
|
+
},
|
|
1853
|
+
animate: function(o, r, a, l) {
|
|
1854
|
+
if (l) {
|
|
1855
|
+
B(o, "transition", ""), B(o, "transform", "");
|
|
1856
|
+
var i = bt(this.el), u = i && i.a, f = i && i.d, g = (r.left - a.left) / (u || 1), d = (r.top - a.top) / (f || 1);
|
|
1857
|
+
o.animatingX = !!g, o.animatingY = !!d, B(o, "transform", "translate3d(" + g + "px," + d + "px,0)"), this.forRepaintDummy = Ai(o), B(o, "transition", "transform " + l + "ms" + (this.options.easing ? " " + this.options.easing : "")), B(o, "transform", "translate3d(0,0,0)"), typeof o.animated == "number" && clearTimeout(o.animated), o.animated = setTimeout(function() {
|
|
1858
|
+
B(o, "transition", ""), B(o, "transform", ""), o.animated = !1, o.animatingX = !1, o.animatingY = !1;
|
|
1859
|
+
}, l);
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
};
|
|
1863
|
+
}
|
|
1864
|
+
function Ai(e) {
|
|
1865
|
+
return e.offsetWidth;
|
|
1866
|
+
}
|
|
1867
|
+
function Bi(e, t, n, o) {
|
|
1868
|
+
return Math.sqrt(Math.pow(t.top - e.top, 2) + Math.pow(t.left - e.left, 2)) / Math.sqrt(Math.pow(t.top - n.top, 2) + Math.pow(t.left - n.left, 2)) * o.animation;
|
|
1869
|
+
}
|
|
1870
|
+
var ct = [], bn = {
|
|
1871
|
+
initializeByDefault: !0
|
|
1872
|
+
}, zt = {
|
|
1873
|
+
mount: function(t) {
|
|
1874
|
+
for (var n in bn)
|
|
1875
|
+
bn.hasOwnProperty(n) && !(n in t) && (t[n] = bn[n]);
|
|
1876
|
+
ct.forEach(function(o) {
|
|
1877
|
+
if (o.pluginName === t.pluginName)
|
|
1878
|
+
throw "Sortable: Cannot mount plugin ".concat(t.pluginName, " more than once");
|
|
1879
|
+
}), ct.push(t);
|
|
1880
|
+
},
|
|
1881
|
+
pluginEvent: function(t, n, o) {
|
|
1882
|
+
var r = this;
|
|
1883
|
+
this.eventCanceled = !1, o.cancel = function() {
|
|
1884
|
+
r.eventCanceled = !0;
|
|
1885
|
+
};
|
|
1886
|
+
var a = t + "Global";
|
|
1887
|
+
ct.forEach(function(l) {
|
|
1888
|
+
n[l.pluginName] && (n[l.pluginName][a] && n[l.pluginName][a](Fe({
|
|
1889
|
+
sortable: n
|
|
1890
|
+
}, o)), n.options[l.pluginName] && n[l.pluginName][t] && n[l.pluginName][t](Fe({
|
|
1891
|
+
sortable: n
|
|
1892
|
+
}, o)));
|
|
1893
|
+
});
|
|
1894
|
+
},
|
|
1895
|
+
initializePlugins: function(t, n, o, r) {
|
|
1896
|
+
ct.forEach(function(i) {
|
|
1897
|
+
var u = i.pluginName;
|
|
1898
|
+
if (!(!t.options[u] && !i.initializeByDefault)) {
|
|
1899
|
+
var f = new i(t, n, t.options);
|
|
1900
|
+
f.sortable = t, f.options = t.options, t[u] = f, Ge(o, f.defaults);
|
|
1901
|
+
}
|
|
1902
|
+
});
|
|
1903
|
+
for (var a in t.options)
|
|
1904
|
+
if (t.options.hasOwnProperty(a)) {
|
|
1905
|
+
var l = this.modifyOption(t, a, t.options[a]);
|
|
1906
|
+
typeof l < "u" && (t.options[a] = l);
|
|
1907
|
+
}
|
|
1908
|
+
},
|
|
1909
|
+
getEventProperties: function(t, n) {
|
|
1910
|
+
var o = {};
|
|
1911
|
+
return ct.forEach(function(r) {
|
|
1912
|
+
typeof r.eventProperties == "function" && Ge(o, r.eventProperties.call(n[r.pluginName], t));
|
|
1913
|
+
}), o;
|
|
1914
|
+
},
|
|
1915
|
+
modifyOption: function(t, n, o) {
|
|
1916
|
+
var r;
|
|
1917
|
+
return ct.forEach(function(a) {
|
|
1918
|
+
t[a.pluginName] && a.optionListeners && typeof a.optionListeners[n] == "function" && (r = a.optionListeners[n].call(t[a.pluginName], o));
|
|
1919
|
+
}), r;
|
|
1920
|
+
}
|
|
1921
|
+
};
|
|
1922
|
+
function Ri(e) {
|
|
1923
|
+
var t = e.sortable, n = e.rootEl, o = e.name, r = e.targetEl, a = e.cloneEl, l = e.toEl, i = e.fromEl, u = e.oldIndex, f = e.newIndex, g = e.oldDraggableIndex, d = e.newDraggableIndex, S = e.originalEvent, D = e.putSortable, b = e.extraEventProperties;
|
|
1924
|
+
if (t = t || n && n[Oe], !!t) {
|
|
1925
|
+
var p, L = t.options, _ = "on" + o.charAt(0).toUpperCase() + o.substr(1);
|
|
1926
|
+
window.CustomEvent && !Ue && !Ft ? p = new CustomEvent(o, {
|
|
1927
|
+
bubbles: !0,
|
|
1928
|
+
cancelable: !0
|
|
1929
|
+
}) : (p = document.createEvent("Event"), p.initEvent(o, !0, !0)), p.to = l || n, p.from = i || n, p.item = r || n, p.clone = a, p.oldIndex = u, p.newIndex = f, p.oldDraggableIndex = g, p.newDraggableIndex = d, p.originalEvent = S, p.pullMode = D ? D.lastPutMode : void 0;
|
|
1930
|
+
var $ = Fe(Fe({}, b), zt.getEventProperties(o, t));
|
|
1931
|
+
for (var v in $)
|
|
1932
|
+
p[v] = $[v];
|
|
1933
|
+
n && n.dispatchEvent(p), L[_] && L[_].call(t, p);
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
var Li = ["evt"], Se = function(t, n) {
|
|
1937
|
+
var o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, r = o.evt, a = _i(o, Li);
|
|
1938
|
+
zt.pluginEvent.bind(R)(t, n, Fe({
|
|
1939
|
+
dragEl: E,
|
|
1940
|
+
parentEl: ae,
|
|
1941
|
+
ghostEl: M,
|
|
1942
|
+
rootEl: te,
|
|
1943
|
+
nextEl: nt,
|
|
1944
|
+
lastDownEl: qt,
|
|
1945
|
+
cloneEl: oe,
|
|
1946
|
+
cloneHidden: Xe,
|
|
1947
|
+
dragStarted: kt,
|
|
1948
|
+
putSortable: pe,
|
|
1949
|
+
activeSortable: R.active,
|
|
1950
|
+
originalEvent: r,
|
|
1951
|
+
oldIndex: pt,
|
|
1952
|
+
oldDraggableIndex: xt,
|
|
1953
|
+
newIndex: ke,
|
|
1954
|
+
newDraggableIndex: Ke,
|
|
1955
|
+
hideGhostForTarget: ir,
|
|
1956
|
+
unhideGhostForTarget: sr,
|
|
1957
|
+
cloneNowHidden: function() {
|
|
1958
|
+
Xe = !0;
|
|
1959
|
+
},
|
|
1960
|
+
cloneNowShown: function() {
|
|
1961
|
+
Xe = !1;
|
|
1962
|
+
},
|
|
1963
|
+
dispatchSortableEvent: function(i) {
|
|
1964
|
+
be({
|
|
1965
|
+
sortable: n,
|
|
1966
|
+
name: i,
|
|
1967
|
+
originalEvent: r
|
|
1968
|
+
});
|
|
1969
|
+
}
|
|
1970
|
+
}, a));
|
|
1971
|
+
};
|
|
1972
|
+
function be(e) {
|
|
1973
|
+
Ri(Fe({
|
|
1974
|
+
putSortable: pe,
|
|
1975
|
+
cloneEl: oe,
|
|
1976
|
+
targetEl: E,
|
|
1977
|
+
rootEl: te,
|
|
1978
|
+
oldIndex: pt,
|
|
1979
|
+
oldDraggableIndex: xt,
|
|
1980
|
+
newIndex: ke,
|
|
1981
|
+
newDraggableIndex: Ke
|
|
1982
|
+
}, e));
|
|
1983
|
+
}
|
|
1984
|
+
var E, ae, M, te, nt, qt, oe, Xe, pt, ke, xt, Ke, Gt, pe, ft = !1, on = !1, rn = [], et, $e, yn, vn, vo, wo, kt, dt, Pt, $t = !1, Ut = !1, Jt, he, wn = [], In = !1, an = [], dn = typeof document < "u", Yt = Jo, Eo = Ft || Ue ? "cssFloat" : "float", ji = dn && !Zo && !Jo && "draggable" in document.createElement("div"), rr = (function() {
|
|
1985
|
+
if (dn) {
|
|
1986
|
+
if (Ue)
|
|
1987
|
+
return !1;
|
|
1988
|
+
var e = document.createElement("x");
|
|
1989
|
+
return e.style.cssText = "pointer-events:auto", e.style.pointerEvents === "auto";
|
|
1990
|
+
}
|
|
1991
|
+
})(), ar = function(t, n) {
|
|
1992
|
+
var o = B(t), r = parseInt(o.width) - parseInt(o.paddingLeft) - parseInt(o.paddingRight) - parseInt(o.borderLeftWidth) - parseInt(o.borderRightWidth), a = wt(t, 0, n), l = wt(t, 1, n), i = a && B(a), u = l && B(l), f = i && parseInt(i.marginLeft) + parseInt(i.marginRight) + ce(a).width, g = u && parseInt(u.marginLeft) + parseInt(u.marginRight) + ce(l).width;
|
|
1993
|
+
if (o.display === "flex")
|
|
1994
|
+
return o.flexDirection === "column" || o.flexDirection === "column-reverse" ? "vertical" : "horizontal";
|
|
1995
|
+
if (o.display === "grid")
|
|
1996
|
+
return o.gridTemplateColumns.split(" ").length <= 1 ? "vertical" : "horizontal";
|
|
1997
|
+
if (a && i.float && i.float !== "none") {
|
|
1998
|
+
var d = i.float === "left" ? "left" : "right";
|
|
1999
|
+
return l && (u.clear === "both" || u.clear === d) ? "vertical" : "horizontal";
|
|
2000
|
+
}
|
|
2001
|
+
return a && (i.display === "block" || i.display === "flex" || i.display === "table" || i.display === "grid" || f >= r && o[Eo] === "none" || l && o[Eo] === "none" && f + g > r) ? "vertical" : "horizontal";
|
|
2002
|
+
}, Mi = function(t, n, o) {
|
|
2003
|
+
var r = o ? t.left : t.top, a = o ? t.right : t.bottom, l = o ? t.width : t.height, i = o ? n.left : n.top, u = o ? n.right : n.bottom, f = o ? n.width : n.height;
|
|
2004
|
+
return r === i || a === u || r + l / 2 === i + f / 2;
|
|
2005
|
+
}, Fi = function(t, n) {
|
|
2006
|
+
var o;
|
|
2007
|
+
return rn.some(function(r) {
|
|
2008
|
+
var a = r[Oe].options.emptyInsertThreshold;
|
|
2009
|
+
if (!(!a || Un(r))) {
|
|
2010
|
+
var l = ce(r), i = t >= l.left - a && t <= l.right + a, u = n >= l.top - a && n <= l.bottom + a;
|
|
2011
|
+
if (i && u)
|
|
2012
|
+
return o = r;
|
|
2013
|
+
}
|
|
2014
|
+
}), o;
|
|
2015
|
+
}, lr = function(t) {
|
|
2016
|
+
function n(a, l) {
|
|
2017
|
+
return function(i, u, f, g) {
|
|
2018
|
+
var d = i.options.group.name && u.options.group.name && i.options.group.name === u.options.group.name;
|
|
2019
|
+
if (a == null && (l || d))
|
|
2020
|
+
return !0;
|
|
2021
|
+
if (a == null || a === !1)
|
|
2022
|
+
return !1;
|
|
2023
|
+
if (l && a === "clone")
|
|
2024
|
+
return a;
|
|
2025
|
+
if (typeof a == "function")
|
|
2026
|
+
return n(a(i, u, f, g), l)(i, u, f, g);
|
|
2027
|
+
var S = (l ? i : u).options.group.name;
|
|
2028
|
+
return a === !0 || typeof a == "string" && a === S || a.join && a.indexOf(S) > -1;
|
|
2029
|
+
};
|
|
2030
|
+
}
|
|
2031
|
+
var o = {}, r = t.group;
|
|
2032
|
+
(!r || Wt(r) != "object") && (r = {
|
|
2033
|
+
name: r
|
|
2034
|
+
}), o.name = r.name, o.checkPull = n(r.pull, !0), o.checkPut = n(r.put), o.revertClone = r.revertClone, t.group = o;
|
|
2035
|
+
}, ir = function() {
|
|
2036
|
+
!rr && M && B(M, "display", "none");
|
|
2037
|
+
}, sr = function() {
|
|
2038
|
+
!rr && M && B(M, "display", "");
|
|
2039
|
+
};
|
|
2040
|
+
dn && !Zo && document.addEventListener("click", function(e) {
|
|
2041
|
+
if (on)
|
|
2042
|
+
return e.preventDefault(), e.stopPropagation && e.stopPropagation(), e.stopImmediatePropagation && e.stopImmediatePropagation(), on = !1, !1;
|
|
2043
|
+
}, !0);
|
|
2044
|
+
var tt = function(t) {
|
|
2045
|
+
if (E) {
|
|
2046
|
+
t = t.touches ? t.touches[0] : t;
|
|
2047
|
+
var n = Fi(t.clientX, t.clientY);
|
|
2048
|
+
if (n) {
|
|
2049
|
+
var o = {};
|
|
2050
|
+
for (var r in t)
|
|
2051
|
+
t.hasOwnProperty(r) && (o[r] = t[r]);
|
|
2052
|
+
o.target = o.rootEl = n, o.preventDefault = void 0, o.stopPropagation = void 0, n[Oe]._onDragOver(o);
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
}, zi = function(t) {
|
|
2056
|
+
E && E.parentNode[Oe]._isOutsideThisEl(t.target);
|
|
2057
|
+
};
|
|
2058
|
+
function R(e, t) {
|
|
2059
|
+
if (!(e && e.nodeType && e.nodeType === 1))
|
|
2060
|
+
throw "Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));
|
|
2061
|
+
this.el = e, this.options = t = Ge({}, t), e[Oe] = this;
|
|
2062
|
+
var n = {
|
|
2063
|
+
group: null,
|
|
2064
|
+
sort: !0,
|
|
2065
|
+
disabled: !1,
|
|
2066
|
+
store: null,
|
|
2067
|
+
handle: null,
|
|
2068
|
+
draggable: /^[uo]l$/i.test(e.nodeName) ? ">li" : ">*",
|
|
2069
|
+
swapThreshold: 1,
|
|
2070
|
+
// percentage; 0 <= x <= 1
|
|
2071
|
+
invertSwap: !1,
|
|
2072
|
+
// invert always
|
|
2073
|
+
invertedSwapThreshold: null,
|
|
2074
|
+
// will be set to same as swapThreshold if default
|
|
2075
|
+
removeCloneOnHide: !0,
|
|
2076
|
+
direction: function() {
|
|
2077
|
+
return ar(e, this.options);
|
|
2078
|
+
},
|
|
2079
|
+
ghostClass: "sortable-ghost",
|
|
2080
|
+
chosenClass: "sortable-chosen",
|
|
2081
|
+
dragClass: "sortable-drag",
|
|
2082
|
+
ignore: "a, img",
|
|
2083
|
+
filter: null,
|
|
2084
|
+
preventOnFilter: !0,
|
|
2085
|
+
animation: 0,
|
|
2086
|
+
easing: null,
|
|
2087
|
+
setData: function(l, i) {
|
|
2088
|
+
l.setData("Text", i.textContent);
|
|
2089
|
+
},
|
|
2090
|
+
dropBubble: !1,
|
|
2091
|
+
dragoverBubble: !1,
|
|
2092
|
+
dataIdAttr: "data-id",
|
|
2093
|
+
delay: 0,
|
|
2094
|
+
delayOnTouchOnly: !1,
|
|
2095
|
+
touchStartThreshold: (Number.parseInt ? Number : window).parseInt(window.devicePixelRatio, 10) || 1,
|
|
2096
|
+
forceFallback: !1,
|
|
2097
|
+
fallbackClass: "sortable-fallback",
|
|
2098
|
+
fallbackOnBody: !1,
|
|
2099
|
+
fallbackTolerance: 0,
|
|
2100
|
+
fallbackOffset: {
|
|
2101
|
+
x: 0,
|
|
2102
|
+
y: 0
|
|
2103
|
+
},
|
|
2104
|
+
supportPointer: R.supportPointer !== !1 && "PointerEvent" in window && !It,
|
|
2105
|
+
emptyInsertThreshold: 5
|
|
2106
|
+
};
|
|
2107
|
+
zt.initializePlugins(this, e, n);
|
|
2108
|
+
for (var o in n)
|
|
2109
|
+
!(o in t) && (t[o] = n[o]);
|
|
2110
|
+
lr(t);
|
|
2111
|
+
for (var r in this)
|
|
2112
|
+
r.charAt(0) === "_" && typeof this[r] == "function" && (this[r] = this[r].bind(this));
|
|
2113
|
+
this.nativeDraggable = t.forceFallback ? !1 : ji, this.nativeDraggable && (this.options.touchStartThreshold = 1), t.supportPointer ? X(e, "pointerdown", this._onTapStart) : (X(e, "mousedown", this._onTapStart), X(e, "touchstart", this._onTapStart)), this.nativeDraggable && (X(e, "dragover", this), X(e, "dragenter", this)), rn.push(this.el), t.store && t.store.get && this.sort(t.store.get(this) || []), Ge(this, $i());
|
|
2114
|
+
}
|
|
2115
|
+
R.prototype = /** @lends Sortable.prototype */
|
|
2116
|
+
{
|
|
2117
|
+
constructor: R,
|
|
2118
|
+
_isOutsideThisEl: function(t) {
|
|
2119
|
+
!this.el.contains(t) && t !== this.el && (dt = null);
|
|
2120
|
+
},
|
|
2121
|
+
_getDirection: function(t, n) {
|
|
2122
|
+
return typeof this.options.direction == "function" ? this.options.direction.call(this, t, n, E) : this.options.direction;
|
|
2123
|
+
},
|
|
2124
|
+
_onTapStart: function(t) {
|
|
2125
|
+
if (t.cancelable) {
|
|
2126
|
+
var n = this, o = this.el, r = this.options, a = r.preventOnFilter, l = t.type, i = t.touches && t.touches[0] || t.pointerType && t.pointerType === "touch" && t, u = (i || t).target, f = t.target.shadowRoot && (t.path && t.path[0] || t.composedPath && t.composedPath()[0]) || u, g = r.filter;
|
|
2127
|
+
if (Wi(o), !E && !(/mousedown|pointerdown/.test(l) && t.button !== 0 || r.disabled) && !f.isContentEditable && !(!this.nativeDraggable && It && u && u.tagName.toUpperCase() === "SELECT") && (u = Le(u, r.draggable, o, !1), !(u && u.animated) && qt !== u)) {
|
|
2128
|
+
if (pt = Ne(u), xt = Ne(u, r.draggable), typeof g == "function") {
|
|
2129
|
+
if (g.call(this, t, u, this)) {
|
|
2130
|
+
be({
|
|
2131
|
+
sortable: n,
|
|
2132
|
+
rootEl: f,
|
|
2133
|
+
name: "filter",
|
|
2134
|
+
targetEl: u,
|
|
2135
|
+
toEl: o,
|
|
2136
|
+
fromEl: o
|
|
2137
|
+
}), Se("filter", n, {
|
|
2138
|
+
evt: t
|
|
2139
|
+
}), a && t.cancelable && t.preventDefault();
|
|
2140
|
+
return;
|
|
2141
|
+
}
|
|
2142
|
+
} else if (g && (g = g.split(",").some(function(d) {
|
|
2143
|
+
if (d = Le(f, d.trim(), o, !1), d)
|
|
2144
|
+
return be({
|
|
2145
|
+
sortable: n,
|
|
2146
|
+
rootEl: d,
|
|
2147
|
+
name: "filter",
|
|
2148
|
+
targetEl: u,
|
|
2149
|
+
fromEl: o,
|
|
2150
|
+
toEl: o
|
|
2151
|
+
}), Se("filter", n, {
|
|
2152
|
+
evt: t
|
|
2153
|
+
}), !0;
|
|
2154
|
+
}), g)) {
|
|
2155
|
+
a && t.cancelable && t.preventDefault();
|
|
2156
|
+
return;
|
|
2157
|
+
}
|
|
2158
|
+
r.handle && !Le(f, r.handle, o, !1) || this._prepareDragStart(t, i, u);
|
|
2159
|
+
}
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
_prepareDragStart: function(t, n, o) {
|
|
2163
|
+
var r = this, a = r.el, l = r.options, i = a.ownerDocument, u;
|
|
2164
|
+
if (o && !E && o.parentNode === a) {
|
|
2165
|
+
var f = ce(o);
|
|
2166
|
+
if (te = a, E = o, ae = E.parentNode, nt = E.nextSibling, qt = o, Gt = l.group, R.dragged = E, et = {
|
|
2167
|
+
target: E,
|
|
2168
|
+
clientX: (n || t).clientX,
|
|
2169
|
+
clientY: (n || t).clientY
|
|
2170
|
+
}, vo = et.clientX - f.left, wo = et.clientY - f.top, this._lastX = (n || t).clientX, this._lastY = (n || t).clientY, E.style["will-change"] = "all", u = function() {
|
|
2171
|
+
if (Se("delayEnded", r, {
|
|
2172
|
+
evt: t
|
|
2173
|
+
}), R.eventCanceled) {
|
|
2174
|
+
r._onDrop();
|
|
2175
|
+
return;
|
|
2176
|
+
}
|
|
2177
|
+
r._disableDelayedDragEvents(), !go && r.nativeDraggable && (E.draggable = !0), r._triggerDragStart(t, n), be({
|
|
2178
|
+
sortable: r,
|
|
2179
|
+
name: "choose",
|
|
2180
|
+
originalEvent: t
|
|
2181
|
+
}), De(E, l.chosenClass, !0);
|
|
2182
|
+
}, l.ignore.split(",").forEach(function(g) {
|
|
2183
|
+
er(E, g.trim(), En);
|
|
2184
|
+
}), X(i, "dragover", tt), X(i, "mousemove", tt), X(i, "touchmove", tt), X(i, "mouseup", r._onDrop), X(i, "touchend", r._onDrop), X(i, "touchcancel", r._onDrop), go && this.nativeDraggable && (this.options.touchStartThreshold = 4, E.draggable = !0), Se("delayStart", this, {
|
|
2185
|
+
evt: t
|
|
2186
|
+
}), l.delay && (!l.delayOnTouchOnly || n) && (!this.nativeDraggable || !(Ft || Ue))) {
|
|
2187
|
+
if (R.eventCanceled) {
|
|
2188
|
+
this._onDrop();
|
|
2189
|
+
return;
|
|
2190
|
+
}
|
|
2191
|
+
X(i, "mouseup", r._disableDelayedDrag), X(i, "touchend", r._disableDelayedDrag), X(i, "touchcancel", r._disableDelayedDrag), X(i, "mousemove", r._delayedDragTouchMoveHandler), X(i, "touchmove", r._delayedDragTouchMoveHandler), l.supportPointer && X(i, "pointermove", r._delayedDragTouchMoveHandler), r._dragStartTimer = setTimeout(u, l.delay);
|
|
2192
|
+
} else
|
|
2193
|
+
u();
|
|
2194
|
+
}
|
|
2195
|
+
},
|
|
2196
|
+
_delayedDragTouchMoveHandler: function(t) {
|
|
2197
|
+
var n = t.touches ? t.touches[0] : t;
|
|
2198
|
+
Math.max(Math.abs(n.clientX - this._lastX), Math.abs(n.clientY - this._lastY)) >= Math.floor(this.options.touchStartThreshold / (this.nativeDraggable && window.devicePixelRatio || 1)) && this._disableDelayedDrag();
|
|
2199
|
+
},
|
|
2200
|
+
_disableDelayedDrag: function() {
|
|
2201
|
+
E && En(E), clearTimeout(this._dragStartTimer), this._disableDelayedDragEvents();
|
|
2202
|
+
},
|
|
2203
|
+
_disableDelayedDragEvents: function() {
|
|
2204
|
+
var t = this.el.ownerDocument;
|
|
2205
|
+
Y(t, "mouseup", this._disableDelayedDrag), Y(t, "touchend", this._disableDelayedDrag), Y(t, "touchcancel", this._disableDelayedDrag), Y(t, "mousemove", this._delayedDragTouchMoveHandler), Y(t, "touchmove", this._delayedDragTouchMoveHandler), Y(t, "pointermove", this._delayedDragTouchMoveHandler);
|
|
2206
|
+
},
|
|
2207
|
+
_triggerDragStart: function(t, n) {
|
|
2208
|
+
n = n || t.pointerType == "touch" && t, !this.nativeDraggable || n ? this.options.supportPointer ? X(document, "pointermove", this._onTouchMove) : n ? X(document, "touchmove", this._onTouchMove) : X(document, "mousemove", this._onTouchMove) : (X(E, "dragend", this), X(te, "dragstart", this._onDragStart));
|
|
2209
|
+
try {
|
|
2210
|
+
document.selection ? Zt(function() {
|
|
2211
|
+
document.selection.empty();
|
|
2212
|
+
}) : window.getSelection().removeAllRanges();
|
|
2213
|
+
} catch {
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
_dragStarted: function(t, n) {
|
|
2217
|
+
if (ft = !1, te && E) {
|
|
2218
|
+
Se("dragStarted", this, {
|
|
2219
|
+
evt: n
|
|
2220
|
+
}), this.nativeDraggable && X(document, "dragover", zi);
|
|
2221
|
+
var o = this.options;
|
|
2222
|
+
!t && De(E, o.dragClass, !1), De(E, o.ghostClass, !0), R.active = this, t && this._appendGhost(), be({
|
|
2223
|
+
sortable: this,
|
|
2224
|
+
name: "start",
|
|
2225
|
+
originalEvent: n
|
|
2226
|
+
});
|
|
2227
|
+
} else
|
|
2228
|
+
this._nulling();
|
|
2229
|
+
},
|
|
2230
|
+
_emulateDragOver: function() {
|
|
2231
|
+
if ($e) {
|
|
2232
|
+
this._lastX = $e.clientX, this._lastY = $e.clientY, ir();
|
|
2233
|
+
for (var t = document.elementFromPoint($e.clientX, $e.clientY), n = t; t && t.shadowRoot && (t = t.shadowRoot.elementFromPoint($e.clientX, $e.clientY), t !== n); )
|
|
2234
|
+
n = t;
|
|
2235
|
+
if (E.parentNode[Oe]._isOutsideThisEl(t), n)
|
|
2236
|
+
do {
|
|
2237
|
+
if (n[Oe]) {
|
|
2238
|
+
var o = void 0;
|
|
2239
|
+
if (o = n[Oe]._onDragOver({
|
|
2240
|
+
clientX: $e.clientX,
|
|
2241
|
+
clientY: $e.clientY,
|
|
2242
|
+
target: t,
|
|
2243
|
+
rootEl: n
|
|
2244
|
+
}), o && !this.options.dragoverBubble)
|
|
2245
|
+
break;
|
|
2246
|
+
}
|
|
2247
|
+
t = n;
|
|
2248
|
+
} while (n = n.parentNode);
|
|
2249
|
+
sr();
|
|
2250
|
+
}
|
|
2251
|
+
},
|
|
2252
|
+
_onTouchMove: function(t) {
|
|
2253
|
+
if (et) {
|
|
2254
|
+
var n = this.options, o = n.fallbackTolerance, r = n.fallbackOffset, a = t.touches ? t.touches[0] : t, l = M && bt(M, !0), i = M && l && l.a, u = M && l && l.d, f = Yt && he && yo(he), g = (a.clientX - et.clientX + r.x) / (i || 1) + (f ? f[0] - wn[0] : 0) / (i || 1), d = (a.clientY - et.clientY + r.y) / (u || 1) + (f ? f[1] - wn[1] : 0) / (u || 1);
|
|
2255
|
+
if (!R.active && !ft) {
|
|
2256
|
+
if (o && Math.max(Math.abs(a.clientX - this._lastX), Math.abs(a.clientY - this._lastY)) < o)
|
|
2257
|
+
return;
|
|
2258
|
+
this._onDragStart(t, !0);
|
|
2259
|
+
}
|
|
2260
|
+
if (M) {
|
|
2261
|
+
l ? (l.e += g - (yn || 0), l.f += d - (vn || 0)) : l = {
|
|
2262
|
+
a: 1,
|
|
2263
|
+
b: 0,
|
|
2264
|
+
c: 0,
|
|
2265
|
+
d: 1,
|
|
2266
|
+
e: g,
|
|
2267
|
+
f: d
|
|
2268
|
+
};
|
|
2269
|
+
var S = "matrix(".concat(l.a, ",").concat(l.b, ",").concat(l.c, ",").concat(l.d, ",").concat(l.e, ",").concat(l.f, ")");
|
|
2270
|
+
B(M, "webkitTransform", S), B(M, "mozTransform", S), B(M, "msTransform", S), B(M, "transform", S), yn = g, vn = d, $e = a;
|
|
2271
|
+
}
|
|
2272
|
+
t.cancelable && t.preventDefault();
|
|
2273
|
+
}
|
|
2274
|
+
},
|
|
2275
|
+
_appendGhost: function() {
|
|
2276
|
+
if (!M) {
|
|
2277
|
+
var t = this.options.fallbackOnBody ? document.body : te, n = ce(E, !0, Yt, !0, t), o = this.options;
|
|
2278
|
+
if (Yt) {
|
|
2279
|
+
for (he = t; B(he, "position") === "static" && B(he, "transform") === "none" && he !== document; )
|
|
2280
|
+
he = he.parentNode;
|
|
2281
|
+
he !== document.body && he !== document.documentElement ? (he === document && (he = je()), n.top += he.scrollTop, n.left += he.scrollLeft) : he = je(), wn = yo(he);
|
|
2282
|
+
}
|
|
2283
|
+
M = E.cloneNode(!0), De(M, o.ghostClass, !1), De(M, o.fallbackClass, !0), De(M, o.dragClass, !0), B(M, "transition", ""), B(M, "transform", ""), B(M, "box-sizing", "border-box"), B(M, "margin", 0), B(M, "top", n.top), B(M, "left", n.left), B(M, "width", n.width), B(M, "height", n.height), B(M, "opacity", "0.8"), B(M, "position", Yt ? "absolute" : "fixed"), B(M, "zIndex", "100000"), B(M, "pointerEvents", "none"), R.ghost = M, t.appendChild(M), B(M, "transform-origin", vo / parseInt(M.style.width) * 100 + "% " + wo / parseInt(M.style.height) * 100 + "%");
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
_onDragStart: function(t, n) {
|
|
2287
|
+
var o = this, r = t.dataTransfer, a = o.options;
|
|
2288
|
+
if (Se("dragStart", this, {
|
|
2289
|
+
evt: t
|
|
2290
|
+
}), R.eventCanceled) {
|
|
2291
|
+
this._onDrop();
|
|
2292
|
+
return;
|
|
2293
|
+
}
|
|
2294
|
+
Se("setupClone", this), R.eventCanceled || (oe = or(E), oe.removeAttribute("id"), oe.draggable = !1, oe.style["will-change"] = "", this._hideClone(), De(oe, this.options.chosenClass, !1), R.clone = oe), o.cloneId = Zt(function() {
|
|
2295
|
+
Se("clone", o), !R.eventCanceled && (o.options.removeCloneOnHide || te.insertBefore(oe, E), o._hideClone(), be({
|
|
2296
|
+
sortable: o,
|
|
2297
|
+
name: "clone"
|
|
2298
|
+
}));
|
|
2299
|
+
}), !n && De(E, a.dragClass, !0), n ? (on = !0, o._loopId = setInterval(o._emulateDragOver, 50)) : (Y(document, "mouseup", o._onDrop), Y(document, "touchend", o._onDrop), Y(document, "touchcancel", o._onDrop), r && (r.effectAllowed = "move", a.setData && a.setData.call(o, r, E)), X(document, "drop", o), B(E, "transform", "translateZ(0)")), ft = !0, o._dragStartId = Zt(o._dragStarted.bind(o, n, t)), X(document, "selectstart", o), kt = !0, It && B(document.body, "user-select", "none");
|
|
2300
|
+
},
|
|
2301
|
+
// Returns true - if no further action is needed (either inserted or another condition)
|
|
2302
|
+
_onDragOver: function(t) {
|
|
2303
|
+
var n = this.el, o = t.target, r, a, l, i = this.options, u = i.group, f = R.active, g = Gt === u, d = i.sort, S = pe || f, D, b = this, p = !1;
|
|
2304
|
+
if (In) return;
|
|
2305
|
+
function L(de, Ye) {
|
|
2306
|
+
Se(de, b, Fe({
|
|
2307
|
+
evt: t,
|
|
2308
|
+
isOwner: g,
|
|
2309
|
+
axis: D ? "vertical" : "horizontal",
|
|
2310
|
+
revert: l,
|
|
2311
|
+
dragRect: r,
|
|
2312
|
+
targetRect: a,
|
|
2313
|
+
canSort: d,
|
|
2314
|
+
fromSortable: S,
|
|
2315
|
+
target: o,
|
|
2316
|
+
completed: $,
|
|
2317
|
+
onMove: function(Tt, Vt) {
|
|
2318
|
+
return Kt(te, n, E, r, Tt, ce(Tt), t, Vt);
|
|
2319
|
+
},
|
|
2320
|
+
changed: v
|
|
2321
|
+
}, Ye));
|
|
2322
|
+
}
|
|
2323
|
+
function _() {
|
|
2324
|
+
L("dragOverAnimationCapture"), b.captureAnimationState(), b !== S && S.captureAnimationState();
|
|
2325
|
+
}
|
|
2326
|
+
function $(de) {
|
|
2327
|
+
return L("dragOverCompleted", {
|
|
2328
|
+
insertion: de
|
|
2329
|
+
}), de && (g ? f._hideClone() : f._showClone(b), b !== S && (De(E, pe ? pe.options.ghostClass : f.options.ghostClass, !1), De(E, i.ghostClass, !0)), pe !== b && b !== R.active ? pe = b : b === R.active && pe && (pe = null), S === b && (b._ignoreWhileAnimating = o), b.animateAll(function() {
|
|
2330
|
+
L("dragOverAnimationComplete"), b._ignoreWhileAnimating = null;
|
|
2331
|
+
}), b !== S && (S.animateAll(), S._ignoreWhileAnimating = null)), (o === E && !E.animated || o === n && !o.animated) && (dt = null), !i.dragoverBubble && !t.rootEl && o !== document && (E.parentNode[Oe]._isOutsideThisEl(t.target), !de && tt(t)), !i.dragoverBubble && t.stopPropagation && t.stopPropagation(), p = !0;
|
|
2332
|
+
}
|
|
2333
|
+
function v() {
|
|
2334
|
+
ke = Ne(E), Ke = Ne(E, i.draggable), be({
|
|
2335
|
+
sortable: b,
|
|
2336
|
+
name: "change",
|
|
2337
|
+
toEl: n,
|
|
2338
|
+
newIndex: ke,
|
|
2339
|
+
newDraggableIndex: Ke,
|
|
2340
|
+
originalEvent: t
|
|
2341
|
+
});
|
|
2342
|
+
}
|
|
2343
|
+
if (t.preventDefault !== void 0 && t.cancelable && t.preventDefault(), o = Le(o, i.draggable, n, !0), L("dragOver"), R.eventCanceled) return p;
|
|
2344
|
+
if (E.contains(t.target) || o.animated && o.animatingX && o.animatingY || b._ignoreWhileAnimating === o)
|
|
2345
|
+
return $(!1);
|
|
2346
|
+
if (on = !1, f && !i.disabled && (g ? d || (l = ae !== te) : pe === this || (this.lastPutMode = Gt.checkPull(this, f, E, t)) && u.checkPut(this, f, E, t))) {
|
|
2347
|
+
if (D = this._getDirection(t, o) === "vertical", r = ce(E), L("dragOverValid"), R.eventCanceled) return p;
|
|
2348
|
+
if (l)
|
|
2349
|
+
return ae = te, _(), this._hideClone(), L("revert"), R.eventCanceled || (nt ? te.insertBefore(E, nt) : te.appendChild(E)), $(!0);
|
|
2350
|
+
var T = Un(n, i.draggable);
|
|
2351
|
+
if (!T || Ui(t, D, this) && !T.animated) {
|
|
2352
|
+
if (T === E)
|
|
2353
|
+
return $(!1);
|
|
2354
|
+
if (T && n === t.target && (o = T), o && (a = ce(o)), Kt(te, n, E, r, o, a, t, !!o) !== !1)
|
|
2355
|
+
return _(), T && T.nextSibling ? n.insertBefore(E, T.nextSibling) : n.appendChild(E), ae = n, v(), $(!0);
|
|
2356
|
+
} else if (T && Gi(t, D, this)) {
|
|
2357
|
+
var N = wt(n, 0, i, !0);
|
|
2358
|
+
if (N === E)
|
|
2359
|
+
return $(!1);
|
|
2360
|
+
if (o = N, a = ce(o), Kt(te, n, E, r, o, a, t, !1) !== !1)
|
|
2361
|
+
return _(), n.insertBefore(E, N), ae = n, v(), $(!0);
|
|
2362
|
+
} else if (o.parentNode === n) {
|
|
2363
|
+
a = ce(o);
|
|
2364
|
+
var G = 0, m, w = E.parentNode !== n, V = !Mi(E.animated && E.toRect || r, o.animated && o.toRect || a, D), P = D ? "top" : "left", K = bo(o, "top", "top") || bo(E, "top", "top"), se = K ? K.scrollTop : void 0;
|
|
2365
|
+
dt !== o && (m = a[P], $t = !1, Ut = !V && i.invertSwap || w), G = Yi(t, o, a, D, V ? 1 : i.swapThreshold, i.invertedSwapThreshold == null ? i.swapThreshold : i.invertedSwapThreshold, Ut, dt === o);
|
|
2366
|
+
var F;
|
|
2367
|
+
if (G !== 0) {
|
|
2368
|
+
var Q = Ne(E);
|
|
2369
|
+
do
|
|
2370
|
+
Q -= G, F = ae.children[Q];
|
|
2371
|
+
while (F && (B(F, "display") === "none" || F === M));
|
|
2372
|
+
}
|
|
2373
|
+
if (G === 0 || F === o)
|
|
2374
|
+
return $(!1);
|
|
2375
|
+
dt = o, Pt = G;
|
|
2376
|
+
var ze = o.nextElementSibling, ye = !1;
|
|
2377
|
+
ye = G === 1;
|
|
2378
|
+
var st = Kt(te, n, E, r, o, a, t, ye);
|
|
2379
|
+
if (st !== !1)
|
|
2380
|
+
return (st === 1 || st === -1) && (ye = st === 1), In = !0, setTimeout(Hi, 30), _(), ye && !ze ? n.appendChild(E) : o.parentNode.insertBefore(E, ye ? ze : o), K && nr(K, 0, se - K.scrollTop), ae = E.parentNode, m !== void 0 && !Ut && (Jt = Math.abs(m - ce(o)[P])), v(), $(!0);
|
|
2381
|
+
}
|
|
2382
|
+
if (n.contains(E))
|
|
2383
|
+
return $(!1);
|
|
2384
|
+
}
|
|
2385
|
+
return !1;
|
|
2386
|
+
},
|
|
2387
|
+
_ignoreWhileAnimating: null,
|
|
2388
|
+
_offMoveEvents: function() {
|
|
2389
|
+
Y(document, "mousemove", this._onTouchMove), Y(document, "touchmove", this._onTouchMove), Y(document, "pointermove", this._onTouchMove), Y(document, "dragover", tt), Y(document, "mousemove", tt), Y(document, "touchmove", tt);
|
|
2390
|
+
},
|
|
2391
|
+
_offUpEvents: function() {
|
|
2392
|
+
var t = this.el.ownerDocument;
|
|
2393
|
+
Y(t, "mouseup", this._onDrop), Y(t, "touchend", this._onDrop), Y(t, "pointerup", this._onDrop), Y(t, "touchcancel", this._onDrop), Y(document, "selectstart", this);
|
|
2394
|
+
},
|
|
2395
|
+
_onDrop: function(t) {
|
|
2396
|
+
var n = this.el, o = this.options;
|
|
2397
|
+
if (ke = Ne(E), Ke = Ne(E, o.draggable), Se("drop", this, {
|
|
2398
|
+
evt: t
|
|
2399
|
+
}), ae = E && E.parentNode, ke = Ne(E), Ke = Ne(E, o.draggable), R.eventCanceled) {
|
|
2400
|
+
this._nulling();
|
|
2401
|
+
return;
|
|
2402
|
+
}
|
|
2403
|
+
ft = !1, Ut = !1, $t = !1, clearInterval(this._loopId), clearTimeout(this._dragStartTimer), Nn(this.cloneId), Nn(this._dragStartId), this.nativeDraggable && (Y(document, "drop", this), Y(n, "dragstart", this._onDragStart)), this._offMoveEvents(), this._offUpEvents(), It && B(document.body, "user-select", ""), B(E, "transform", ""), t && (kt && (t.cancelable && t.preventDefault(), !o.dropBubble && t.stopPropagation()), M && M.parentNode && M.parentNode.removeChild(M), (te === ae || pe && pe.lastPutMode !== "clone") && oe && oe.parentNode && oe.parentNode.removeChild(oe), E && (this.nativeDraggable && Y(E, "dragend", this), En(E), E.style["will-change"] = "", kt && !ft && De(E, pe ? pe.options.ghostClass : this.options.ghostClass, !1), De(E, this.options.chosenClass, !1), be({
|
|
2404
|
+
sortable: this,
|
|
2405
|
+
name: "unchoose",
|
|
2406
|
+
toEl: ae,
|
|
2407
|
+
newIndex: null,
|
|
2408
|
+
newDraggableIndex: null,
|
|
2409
|
+
originalEvent: t
|
|
2410
|
+
}), te !== ae ? (ke >= 0 && (be({
|
|
2411
|
+
rootEl: ae,
|
|
2412
|
+
name: "add",
|
|
2413
|
+
toEl: ae,
|
|
2414
|
+
fromEl: te,
|
|
2415
|
+
originalEvent: t
|
|
2416
|
+
}), be({
|
|
2417
|
+
sortable: this,
|
|
2418
|
+
name: "remove",
|
|
2419
|
+
toEl: ae,
|
|
2420
|
+
originalEvent: t
|
|
2421
|
+
}), be({
|
|
2422
|
+
rootEl: ae,
|
|
2423
|
+
name: "sort",
|
|
2424
|
+
toEl: ae,
|
|
2425
|
+
fromEl: te,
|
|
2426
|
+
originalEvent: t
|
|
2427
|
+
}), be({
|
|
2428
|
+
sortable: this,
|
|
2429
|
+
name: "sort",
|
|
2430
|
+
toEl: ae,
|
|
2431
|
+
originalEvent: t
|
|
2432
|
+
})), pe && pe.save()) : ke !== pt && ke >= 0 && (be({
|
|
2433
|
+
sortable: this,
|
|
2434
|
+
name: "update",
|
|
2435
|
+
toEl: ae,
|
|
2436
|
+
originalEvent: t
|
|
2437
|
+
}), be({
|
|
2438
|
+
sortable: this,
|
|
2439
|
+
name: "sort",
|
|
2440
|
+
toEl: ae,
|
|
2441
|
+
originalEvent: t
|
|
2442
|
+
})), R.active && ((ke == null || ke === -1) && (ke = pt, Ke = xt), be({
|
|
2443
|
+
sortable: this,
|
|
2444
|
+
name: "end",
|
|
2445
|
+
toEl: ae,
|
|
2446
|
+
originalEvent: t
|
|
2447
|
+
}), this.save()))), this._nulling();
|
|
2448
|
+
},
|
|
2449
|
+
_nulling: function() {
|
|
2450
|
+
Se("nulling", this), te = E = ae = M = nt = oe = qt = Xe = et = $e = kt = ke = Ke = pt = xt = dt = Pt = pe = Gt = R.dragged = R.ghost = R.clone = R.active = null, an.forEach(function(t) {
|
|
2451
|
+
t.checked = !0;
|
|
2452
|
+
}), an.length = yn = vn = 0;
|
|
2453
|
+
},
|
|
2454
|
+
handleEvent: function(t) {
|
|
2455
|
+
switch (t.type) {
|
|
2456
|
+
case "drop":
|
|
2457
|
+
case "dragend":
|
|
2458
|
+
this._onDrop(t);
|
|
2459
|
+
break;
|
|
2460
|
+
case "dragenter":
|
|
2461
|
+
case "dragover":
|
|
2462
|
+
E && (this._onDragOver(t), Vi(t));
|
|
2463
|
+
break;
|
|
2464
|
+
case "selectstart":
|
|
2465
|
+
t.preventDefault();
|
|
2466
|
+
break;
|
|
2467
|
+
}
|
|
2468
|
+
},
|
|
2469
|
+
/**
|
|
2470
|
+
* Serializes the item into an array of string.
|
|
2471
|
+
* @returns {String[]}
|
|
2472
|
+
*/
|
|
2473
|
+
toArray: function() {
|
|
2474
|
+
for (var t = [], n, o = this.el.children, r = 0, a = o.length, l = this.options; r < a; r++)
|
|
2475
|
+
n = o[r], Le(n, l.draggable, this.el, !1) && t.push(n.getAttribute(l.dataIdAttr) || Xi(n));
|
|
2476
|
+
return t;
|
|
2477
|
+
},
|
|
2478
|
+
/**
|
|
2479
|
+
* Sorts the elements according to the array.
|
|
2480
|
+
* @param {String[]} order order of the items
|
|
2481
|
+
*/
|
|
2482
|
+
sort: function(t, n) {
|
|
2483
|
+
var o = {}, r = this.el;
|
|
2484
|
+
this.toArray().forEach(function(a, l) {
|
|
2485
|
+
var i = r.children[l];
|
|
2486
|
+
Le(i, this.options.draggable, r, !1) && (o[a] = i);
|
|
2487
|
+
}, this), n && this.captureAnimationState(), t.forEach(function(a) {
|
|
2488
|
+
o[a] && (r.removeChild(o[a]), r.appendChild(o[a]));
|
|
2489
|
+
}), n && this.animateAll();
|
|
2490
|
+
},
|
|
2491
|
+
/**
|
|
2492
|
+
* Save the current sorting
|
|
2493
|
+
*/
|
|
2494
|
+
save: function() {
|
|
2495
|
+
var t = this.options.store;
|
|
2496
|
+
t && t.set && t.set(this);
|
|
2497
|
+
},
|
|
2498
|
+
/**
|
|
2499
|
+
* For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
|
|
2500
|
+
* @param {HTMLElement} el
|
|
2501
|
+
* @param {String} [selector] default: `options.draggable`
|
|
2502
|
+
* @returns {HTMLElement|null}
|
|
2503
|
+
*/
|
|
2504
|
+
closest: function(t, n) {
|
|
2505
|
+
return Le(t, n || this.options.draggable, this.el, !1);
|
|
2506
|
+
},
|
|
2507
|
+
/**
|
|
2508
|
+
* Set/get option
|
|
2509
|
+
* @param {string} name
|
|
2510
|
+
* @param {*} [value]
|
|
2511
|
+
* @returns {*}
|
|
2512
|
+
*/
|
|
2513
|
+
option: function(t, n) {
|
|
2514
|
+
var o = this.options;
|
|
2515
|
+
if (n === void 0)
|
|
2516
|
+
return o[t];
|
|
2517
|
+
var r = zt.modifyOption(this, t, n);
|
|
2518
|
+
typeof r < "u" ? o[t] = r : o[t] = n, t === "group" && lr(o);
|
|
2519
|
+
},
|
|
2520
|
+
/**
|
|
2521
|
+
* Destroy
|
|
2522
|
+
*/
|
|
2523
|
+
destroy: function() {
|
|
2524
|
+
Se("destroy", this);
|
|
2525
|
+
var t = this.el;
|
|
2526
|
+
t[Oe] = null, Y(t, "mousedown", this._onTapStart), Y(t, "touchstart", this._onTapStart), Y(t, "pointerdown", this._onTapStart), this.nativeDraggable && (Y(t, "dragover", this), Y(t, "dragenter", this)), Array.prototype.forEach.call(t.querySelectorAll("[draggable]"), function(n) {
|
|
2527
|
+
n.removeAttribute("draggable");
|
|
2528
|
+
}), this._onDrop(), this._disableDelayedDragEvents(), rn.splice(rn.indexOf(this.el), 1), this.el = t = null;
|
|
2529
|
+
},
|
|
2530
|
+
_hideClone: function() {
|
|
2531
|
+
if (!Xe) {
|
|
2532
|
+
if (Se("hideClone", this), R.eventCanceled) return;
|
|
2533
|
+
B(oe, "display", "none"), this.options.removeCloneOnHide && oe.parentNode && oe.parentNode.removeChild(oe), Xe = !0;
|
|
2534
|
+
}
|
|
2535
|
+
},
|
|
2536
|
+
_showClone: function(t) {
|
|
2537
|
+
if (t.lastPutMode !== "clone") {
|
|
2538
|
+
this._hideClone();
|
|
2539
|
+
return;
|
|
2540
|
+
}
|
|
2541
|
+
if (Xe) {
|
|
2542
|
+
if (Se("showClone", this), R.eventCanceled) return;
|
|
2543
|
+
E.parentNode == te && !this.options.group.revertClone ? te.insertBefore(oe, E) : nt ? te.insertBefore(oe, nt) : te.appendChild(oe), this.options.group.revertClone && this.animate(E, oe), B(oe, "display", ""), Xe = !1;
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
};
|
|
2547
|
+
function Vi(e) {
|
|
2548
|
+
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
2549
|
+
}
|
|
2550
|
+
function Kt(e, t, n, o, r, a, l, i) {
|
|
2551
|
+
var u, f = e[Oe], g = f.options.onMove, d;
|
|
2552
|
+
return window.CustomEvent && !Ue && !Ft ? u = new CustomEvent("move", {
|
|
2553
|
+
bubbles: !0,
|
|
2554
|
+
cancelable: !0
|
|
2555
|
+
}) : (u = document.createEvent("Event"), u.initEvent("move", !0, !0)), u.to = t, u.from = e, u.dragged = n, u.draggedRect = o, u.related = r || t, u.relatedRect = a || ce(t), u.willInsertAfter = i, u.originalEvent = l, e.dispatchEvent(u), g && (d = g.call(f, u, l)), d;
|
|
2556
|
+
}
|
|
2557
|
+
function En(e) {
|
|
2558
|
+
e.draggable = !1;
|
|
2559
|
+
}
|
|
2560
|
+
function Hi() {
|
|
2561
|
+
In = !1;
|
|
2562
|
+
}
|
|
2563
|
+
function Gi(e, t, n) {
|
|
2564
|
+
var o = ce(wt(n.el, 0, n.options, !0)), r = 10;
|
|
2565
|
+
return t ? e.clientX < o.left - r || e.clientY < o.top && e.clientX < o.right : e.clientY < o.top - r || e.clientY < o.bottom && e.clientX < o.left;
|
|
2566
|
+
}
|
|
2567
|
+
function Ui(e, t, n) {
|
|
2568
|
+
var o = ce(Un(n.el, n.options.draggable)), r = 10;
|
|
2569
|
+
return t ? e.clientX > o.right + r || e.clientX <= o.right && e.clientY > o.bottom && e.clientX >= o.left : e.clientX > o.right && e.clientY > o.top || e.clientX <= o.right && e.clientY > o.bottom + r;
|
|
2570
|
+
}
|
|
2571
|
+
function Yi(e, t, n, o, r, a, l, i) {
|
|
2572
|
+
var u = o ? e.clientY : e.clientX, f = o ? n.height : n.width, g = o ? n.top : n.left, d = o ? n.bottom : n.right, S = !1;
|
|
2573
|
+
if (!l) {
|
|
2574
|
+
if (i && Jt < f * r) {
|
|
2575
|
+
if (!$t && (Pt === 1 ? u > g + f * a / 2 : u < d - f * a / 2) && ($t = !0), $t)
|
|
2576
|
+
S = !0;
|
|
2577
|
+
else if (Pt === 1 ? u < g + Jt : u > d - Jt)
|
|
2578
|
+
return -Pt;
|
|
2579
|
+
} else if (u > g + f * (1 - r) / 2 && u < d - f * (1 - r) / 2)
|
|
2580
|
+
return Ki(t);
|
|
2581
|
+
}
|
|
2582
|
+
return S = S || l, S && (u < g + f * a / 2 || u > d - f * a / 2) ? u > g + f / 2 ? 1 : -1 : 0;
|
|
2583
|
+
}
|
|
2584
|
+
function Ki(e) {
|
|
2585
|
+
return Ne(E) < Ne(e) ? 1 : -1;
|
|
2586
|
+
}
|
|
2587
|
+
function Xi(e) {
|
|
2588
|
+
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, n = t.length, o = 0; n--; )
|
|
2589
|
+
o += t.charCodeAt(n);
|
|
2590
|
+
return o.toString(36);
|
|
2591
|
+
}
|
|
2592
|
+
function Wi(e) {
|
|
2593
|
+
an.length = 0;
|
|
2594
|
+
for (var t = e.getElementsByTagName("input"), n = t.length; n--; ) {
|
|
2595
|
+
var o = t[n];
|
|
2596
|
+
o.checked && an.push(o);
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
function Zt(e) {
|
|
2600
|
+
return setTimeout(e, 0);
|
|
2601
|
+
}
|
|
2602
|
+
function Nn(e) {
|
|
2603
|
+
return clearTimeout(e);
|
|
2604
|
+
}
|
|
2605
|
+
dn && X(document, "touchmove", function(e) {
|
|
2606
|
+
(R.active || ft) && e.cancelable && e.preventDefault();
|
|
2607
|
+
});
|
|
2608
|
+
R.utils = {
|
|
2609
|
+
on: X,
|
|
2610
|
+
off: Y,
|
|
2611
|
+
css: B,
|
|
2612
|
+
find: er,
|
|
2613
|
+
is: function(t, n) {
|
|
2614
|
+
return !!Le(t, n, t, !1);
|
|
2615
|
+
},
|
|
2616
|
+
extend: xi,
|
|
2617
|
+
throttle: tr,
|
|
2618
|
+
closest: Le,
|
|
2619
|
+
toggleClass: De,
|
|
2620
|
+
clone: or,
|
|
2621
|
+
index: Ne,
|
|
2622
|
+
nextTick: Zt,
|
|
2623
|
+
cancelNextTick: Nn,
|
|
2624
|
+
detectDirection: ar,
|
|
2625
|
+
getChild: wt
|
|
2626
|
+
};
|
|
2627
|
+
R.get = function(e) {
|
|
2628
|
+
return e[Oe];
|
|
2629
|
+
};
|
|
2630
|
+
R.mount = function() {
|
|
2631
|
+
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
2632
|
+
t[n] = arguments[n];
|
|
2633
|
+
t[0].constructor === Array && (t = t[0]), t.forEach(function(o) {
|
|
2634
|
+
if (!o.prototype || !o.prototype.constructor)
|
|
2635
|
+
throw "Sortable: Mounted plugin must be a constructor function, not ".concat({}.toString.call(o));
|
|
2636
|
+
o.utils && (R.utils = Fe(Fe({}, R.utils), o.utils)), zt.mount(o);
|
|
2637
|
+
});
|
|
2638
|
+
};
|
|
2639
|
+
R.create = function(e, t) {
|
|
2640
|
+
return new R(e, t);
|
|
2641
|
+
};
|
|
2642
|
+
R.version = Oi;
|
|
2643
|
+
var ue = [], _t, xn, Pn = !1, Sn, Cn, ln, Ot;
|
|
2644
|
+
function qi() {
|
|
2645
|
+
function e() {
|
|
2646
|
+
this.defaults = {
|
|
2647
|
+
scroll: !0,
|
|
2648
|
+
forceAutoScrollFallback: !1,
|
|
2649
|
+
scrollSensitivity: 30,
|
|
2650
|
+
scrollSpeed: 10,
|
|
2651
|
+
bubbleScroll: !0
|
|
2652
|
+
};
|
|
2653
|
+
for (var t in this)
|
|
2654
|
+
t.charAt(0) === "_" && typeof this[t] == "function" && (this[t] = this[t].bind(this));
|
|
2655
|
+
}
|
|
2656
|
+
return e.prototype = {
|
|
2657
|
+
dragStarted: function(n) {
|
|
2658
|
+
var o = n.originalEvent;
|
|
2659
|
+
this.sortable.nativeDraggable ? X(document, "dragover", this._handleAutoScroll) : this.options.supportPointer ? X(document, "pointermove", this._handleFallbackAutoScroll) : o.touches ? X(document, "touchmove", this._handleFallbackAutoScroll) : X(document, "mousemove", this._handleFallbackAutoScroll);
|
|
2660
|
+
},
|
|
2661
|
+
dragOverCompleted: function(n) {
|
|
2662
|
+
var o = n.originalEvent;
|
|
2663
|
+
!this.options.dragOverBubble && !o.rootEl && this._handleAutoScroll(o);
|
|
2664
|
+
},
|
|
2665
|
+
drop: function() {
|
|
2666
|
+
this.sortable.nativeDraggable ? Y(document, "dragover", this._handleAutoScroll) : (Y(document, "pointermove", this._handleFallbackAutoScroll), Y(document, "touchmove", this._handleFallbackAutoScroll), Y(document, "mousemove", this._handleFallbackAutoScroll)), So(), Qt(), Pi();
|
|
2667
|
+
},
|
|
2668
|
+
nulling: function() {
|
|
2669
|
+
ln = xn = _t = Pn = Ot = Sn = Cn = null, ue.length = 0;
|
|
2670
|
+
},
|
|
2671
|
+
_handleFallbackAutoScroll: function(n) {
|
|
2672
|
+
this._handleAutoScroll(n, !0);
|
|
2673
|
+
},
|
|
2674
|
+
_handleAutoScroll: function(n, o) {
|
|
2675
|
+
var r = this, a = (n.touches ? n.touches[0] : n).clientX, l = (n.touches ? n.touches[0] : n).clientY, i = document.elementFromPoint(a, l);
|
|
2676
|
+
if (ln = n, o || this.options.forceAutoScrollFallback || Ft || Ue || It) {
|
|
2677
|
+
Tn(n, this.options, i, o);
|
|
2678
|
+
var u = qe(i, !0);
|
|
2679
|
+
Pn && (!Ot || a !== Sn || l !== Cn) && (Ot && So(), Ot = setInterval(function() {
|
|
2680
|
+
var f = qe(document.elementFromPoint(a, l), !0);
|
|
2681
|
+
f !== u && (u = f, Qt()), Tn(n, r.options, f, o);
|
|
2682
|
+
}, 10), Sn = a, Cn = l);
|
|
2683
|
+
} else {
|
|
2684
|
+
if (!this.options.bubbleScroll || qe(i, !0) === je()) {
|
|
2685
|
+
Qt();
|
|
2686
|
+
return;
|
|
2687
|
+
}
|
|
2688
|
+
Tn(n, this.options, qe(i, !1), !1);
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2691
|
+
}, Ge(e, {
|
|
2692
|
+
pluginName: "scroll",
|
|
2693
|
+
initializeByDefault: !0
|
|
2694
|
+
});
|
|
2695
|
+
}
|
|
2696
|
+
function Qt() {
|
|
2697
|
+
ue.forEach(function(e) {
|
|
2698
|
+
clearInterval(e.pid);
|
|
2699
|
+
}), ue = [];
|
|
2700
|
+
}
|
|
2701
|
+
function So() {
|
|
2702
|
+
clearInterval(Ot);
|
|
2703
|
+
}
|
|
2704
|
+
var Tn = tr(function(e, t, n, o) {
|
|
2705
|
+
if (t.scroll) {
|
|
2706
|
+
var r = (e.touches ? e.touches[0] : e).clientX, a = (e.touches ? e.touches[0] : e).clientY, l = t.scrollSensitivity, i = t.scrollSpeed, u = je(), f = !1, g;
|
|
2707
|
+
xn !== n && (xn = n, Qt(), _t = t.scroll, g = t.scrollFn, _t === !0 && (_t = qe(n, !0)));
|
|
2708
|
+
var d = 0, S = _t;
|
|
2709
|
+
do {
|
|
2710
|
+
var D = S, b = ce(D), p = b.top, L = b.bottom, _ = b.left, $ = b.right, v = b.width, T = b.height, N = void 0, G = void 0, m = D.scrollWidth, w = D.scrollHeight, V = B(D), P = D.scrollLeft, K = D.scrollTop;
|
|
2711
|
+
D === u ? (N = v < m && (V.overflowX === "auto" || V.overflowX === "scroll" || V.overflowX === "visible"), G = T < w && (V.overflowY === "auto" || V.overflowY === "scroll" || V.overflowY === "visible")) : (N = v < m && (V.overflowX === "auto" || V.overflowX === "scroll"), G = T < w && (V.overflowY === "auto" || V.overflowY === "scroll"));
|
|
2712
|
+
var se = N && (Math.abs($ - r) <= l && P + v < m) - (Math.abs(_ - r) <= l && !!P), F = G && (Math.abs(L - a) <= l && K + T < w) - (Math.abs(p - a) <= l && !!K);
|
|
2713
|
+
if (!ue[d])
|
|
2714
|
+
for (var Q = 0; Q <= d; Q++)
|
|
2715
|
+
ue[Q] || (ue[Q] = {});
|
|
2716
|
+
(ue[d].vx != se || ue[d].vy != F || ue[d].el !== D) && (ue[d].el = D, ue[d].vx = se, ue[d].vy = F, clearInterval(ue[d].pid), (se != 0 || F != 0) && (f = !0, ue[d].pid = setInterval((function() {
|
|
2717
|
+
o && this.layer === 0 && R.active._onTouchMove(ln);
|
|
2718
|
+
var ze = ue[this.layer].vy ? ue[this.layer].vy * i : 0, ye = ue[this.layer].vx ? ue[this.layer].vx * i : 0;
|
|
2719
|
+
typeof g == "function" && g.call(R.dragged.parentNode[Oe], ye, ze, e, ln, ue[this.layer].el) !== "continue" || nr(ue[this.layer].el, ye, ze);
|
|
2720
|
+
}).bind({
|
|
2721
|
+
layer: d
|
|
2722
|
+
}), 24))), d++;
|
|
2723
|
+
} while (t.bubbleScroll && S !== u && (S = qe(S, !1)));
|
|
2724
|
+
Pn = f;
|
|
2725
|
+
}
|
|
2726
|
+
}, 30), ur = function(t) {
|
|
2727
|
+
var n = t.originalEvent, o = t.putSortable, r = t.dragEl, a = t.activeSortable, l = t.dispatchSortableEvent, i = t.hideGhostForTarget, u = t.unhideGhostForTarget;
|
|
2728
|
+
if (n) {
|
|
2729
|
+
var f = o || a;
|
|
2730
|
+
i();
|
|
2731
|
+
var g = n.changedTouches && n.changedTouches.length ? n.changedTouches[0] : n, d = document.elementFromPoint(g.clientX, g.clientY);
|
|
2732
|
+
u(), f && !f.el.contains(d) && (l("spill"), this.onSpill({
|
|
2733
|
+
dragEl: r,
|
|
2734
|
+
putSortable: o
|
|
2735
|
+
}));
|
|
2736
|
+
}
|
|
2737
|
+
};
|
|
2738
|
+
function Yn() {
|
|
2739
|
+
}
|
|
2740
|
+
Yn.prototype = {
|
|
2741
|
+
startIndex: null,
|
|
2742
|
+
dragStart: function(t) {
|
|
2743
|
+
var n = t.oldDraggableIndex;
|
|
2744
|
+
this.startIndex = n;
|
|
2745
|
+
},
|
|
2746
|
+
onSpill: function(t) {
|
|
2747
|
+
var n = t.dragEl, o = t.putSortable;
|
|
2748
|
+
this.sortable.captureAnimationState(), o && o.captureAnimationState();
|
|
2749
|
+
var r = wt(this.sortable.el, this.startIndex, this.options);
|
|
2750
|
+
r ? this.sortable.el.insertBefore(n, r) : this.sortable.el.appendChild(n), this.sortable.animateAll(), o && o.animateAll();
|
|
2751
|
+
},
|
|
2752
|
+
drop: ur
|
|
2753
|
+
};
|
|
2754
|
+
Ge(Yn, {
|
|
2755
|
+
pluginName: "revertOnSpill"
|
|
2756
|
+
});
|
|
2757
|
+
function Kn() {
|
|
2758
|
+
}
|
|
2759
|
+
Kn.prototype = {
|
|
2760
|
+
onSpill: function(t) {
|
|
2761
|
+
var n = t.dragEl, o = t.putSortable, r = o || this.sortable;
|
|
2762
|
+
r.captureAnimationState(), n.parentNode && n.parentNode.removeChild(n), r.animateAll();
|
|
2763
|
+
},
|
|
2764
|
+
drop: ur
|
|
2765
|
+
};
|
|
2766
|
+
Ge(Kn, {
|
|
2767
|
+
pluginName: "removeOnSpill"
|
|
2768
|
+
});
|
|
2769
|
+
R.mount(new qi());
|
|
2770
|
+
R.mount(Kn, Yn);
|
|
2771
|
+
const cr = /* @__PURE__ */ re({
|
|
2772
|
+
name: "SingleEditCell",
|
|
2773
|
+
__name: "singleEditCell",
|
|
2774
|
+
props: {
|
|
2775
|
+
/** 编辑配置项说明
|
|
2776
|
+
* label: '爱好', // placeholder显示
|
|
2777
|
+
* editComponent: 'el-select', // 组件
|
|
2778
|
+
* type: 'select-arr', // option显示
|
|
2779
|
+
* list: 'hobbyList', // 下拉选择数据源
|
|
2780
|
+
* arrLabel: 'label', // 下拉选择中文显示
|
|
2781
|
+
* arrKey: 'value' // 下拉选择number显示(最终传后台)
|
|
2782
|
+
* bind:{} // 组件衍生属性(即第三方组件属性)
|
|
2783
|
+
*/
|
|
2784
|
+
configEdit: {
|
|
2785
|
+
type: Object,
|
|
2786
|
+
default: () => ({})
|
|
2787
|
+
},
|
|
2788
|
+
// 下拉选择数据源
|
|
2789
|
+
listTypeInfo: {
|
|
2790
|
+
type: Object,
|
|
2791
|
+
default: () => ({})
|
|
2792
|
+
},
|
|
2793
|
+
scope: {
|
|
2794
|
+
type: Object,
|
|
2795
|
+
default: () => ({})
|
|
2796
|
+
},
|
|
2797
|
+
prop: {
|
|
2798
|
+
type: String,
|
|
2799
|
+
default: "prop"
|
|
2800
|
+
},
|
|
2801
|
+
// 是否走表单验证(表头合并不校验)
|
|
2802
|
+
isShowRules: {
|
|
2803
|
+
type: Boolean,
|
|
2804
|
+
default: !0
|
|
2805
|
+
},
|
|
2806
|
+
modelValue: {
|
|
2807
|
+
type: [String, Number, Array, Boolean, Date, Object]
|
|
2808
|
+
},
|
|
2809
|
+
// 列for index
|
|
2810
|
+
indexColumns: [String, Number]
|
|
2811
|
+
},
|
|
2812
|
+
emits: ["handleEvent", "update:modelValue", "keyupHandle", "getRefs"],
|
|
2813
|
+
setup(e, { expose: t, emit: n }) {
|
|
2814
|
+
const o = e, r = n;
|
|
2815
|
+
let a = x({
|
|
2816
|
+
get() {
|
|
2817
|
+
return o?.modelValue;
|
|
2818
|
+
},
|
|
2819
|
+
set(v) {
|
|
2820
|
+
r("update:modelValue", v);
|
|
2821
|
+
}
|
|
2822
|
+
});
|
|
2823
|
+
Me(
|
|
2824
|
+
() => o.modelValue,
|
|
2825
|
+
(v) => {
|
|
2826
|
+
a.value = v;
|
|
2827
|
+
}
|
|
2828
|
+
);
|
|
2829
|
+
const l = (v) => {
|
|
2830
|
+
setTimeout(() => {
|
|
2831
|
+
r("handleEvent", { type: v, val: a.value });
|
|
2832
|
+
}, 0);
|
|
2833
|
+
}, i = (v) => {
|
|
2834
|
+
r("keyupHandle", v, o.scope.$index, o.prop);
|
|
2835
|
+
}, u = x(() => ({ eventHandle: v }, T = "") => {
|
|
2836
|
+
let N = { ...v }, G = {};
|
|
2837
|
+
return Object.keys(N).forEach((m) => {
|
|
2838
|
+
G[m] = (w, V) => {
|
|
2839
|
+
if (T === "t-select-table") {
|
|
2840
|
+
const P = {
|
|
2841
|
+
row: w,
|
|
2842
|
+
ids: V,
|
|
2843
|
+
prop: o.prop,
|
|
2844
|
+
scope: o.scope
|
|
2845
|
+
};
|
|
2846
|
+
N[m] && N[m](P);
|
|
2847
|
+
} else
|
|
2848
|
+
typeof w == "number" && w === 0 || w ? N[m] && N[m]({ val: w, prop: o.prop, scope: o.scope }) : N[m] && N[m]({ prop: o.prop, scope: o.scope });
|
|
2849
|
+
};
|
|
2850
|
+
}), { ...G };
|
|
2851
|
+
}), f = x(() => (v) => o.listTypeInfo ? o.listTypeInfo[v.list] : []), g = x(() => (v) => {
|
|
2852
|
+
switch (v.type) {
|
|
2853
|
+
case "checkbox":
|
|
2854
|
+
return "el-checkbox";
|
|
2855
|
+
case "radio":
|
|
2856
|
+
return "el-radio";
|
|
2857
|
+
case "select-arr":
|
|
2858
|
+
case "select-obj":
|
|
2859
|
+
return "el-option";
|
|
2860
|
+
}
|
|
2861
|
+
}), d = x(() => (v, T) => {
|
|
2862
|
+
switch (v.type) {
|
|
2863
|
+
case "radio":
|
|
2864
|
+
case "checkbox":
|
|
2865
|
+
return T[v.arrLabel || "label"];
|
|
2866
|
+
case "el-select-multiple":
|
|
2867
|
+
case "select-arr":
|
|
2868
|
+
return T[v.arrLabel || "label"];
|
|
2869
|
+
case "select-obj":
|
|
2870
|
+
return T;
|
|
2871
|
+
}
|
|
2872
|
+
}), S = x(() => (v, T, N) => {
|
|
2873
|
+
switch (v.type) {
|
|
2874
|
+
case "radio":
|
|
2875
|
+
case "checkbox":
|
|
2876
|
+
return T[v.arrKey || "key"];
|
|
2877
|
+
case "el-select-multiple":
|
|
2878
|
+
case "select-arr":
|
|
2879
|
+
return T[v.arrKey || "key"];
|
|
2880
|
+
case "select-obj":
|
|
2881
|
+
return N;
|
|
2882
|
+
}
|
|
2883
|
+
}), D = x(() => (v, T) => {
|
|
2884
|
+
switch (v.type) {
|
|
2885
|
+
case "radio":
|
|
2886
|
+
case "checkbox":
|
|
2887
|
+
return T[v.arrLabel || "label"];
|
|
2888
|
+
case "el-select-multiple":
|
|
2889
|
+
case "select-arr":
|
|
2890
|
+
return T[v.arrLabel || "label"];
|
|
2891
|
+
case "select-obj":
|
|
2892
|
+
return T;
|
|
2893
|
+
}
|
|
2894
|
+
}), b = (v, T) => {
|
|
2895
|
+
r("getRefs", v, T);
|
|
2896
|
+
}, p = U({}), L = (v, T) => {
|
|
2897
|
+
r("getRefs", v, T), v && (p.value[`tselecttableref-${o.indexColumns}`] = v);
|
|
2898
|
+
}, _ = () => {
|
|
2899
|
+
const v = Object.keys(p.value).filter(
|
|
2900
|
+
(T) => T.includes("tselecttableref")
|
|
2901
|
+
);
|
|
2902
|
+
v.length > 0 && p.value && v.map((T) => {
|
|
2903
|
+
p.value[T].clear();
|
|
2904
|
+
});
|
|
2905
|
+
}, $ = (v) => {
|
|
2906
|
+
if (!v.editComponent || typeof v.editComponent != "string")
|
|
2907
|
+
return v.label;
|
|
2908
|
+
const T = v.editComponent.toLowerCase();
|
|
2909
|
+
return T.includes("input") ? "请输入" + v.label : T.includes("select") || T.includes("date") ? "请选择" + v.label : v.label;
|
|
2910
|
+
};
|
|
2911
|
+
return t({ resetTselectTableFields: _ }), (v, T) => (h(), A(Pe(e.isShowRules ? "el-form-item" : "div"), z({
|
|
2912
|
+
prop: e.prop,
|
|
2913
|
+
rules: e.configEdit.rules,
|
|
2914
|
+
class: [
|
|
2915
|
+
e.configEdit.className,
|
|
2916
|
+
{ single_edit_cell_rules: e.configEdit.rules },
|
|
2917
|
+
"single_edit_cell"
|
|
2918
|
+
]
|
|
2919
|
+
}, v.$attrs), {
|
|
2920
|
+
default: I(() => [
|
|
2921
|
+
e.configEdit.editSlotName ? (h(), C("div", {
|
|
2922
|
+
key: 0,
|
|
2923
|
+
class: xe([e.prop, "slot_edit_name"]),
|
|
2924
|
+
onKeyup: i
|
|
2925
|
+
}, [
|
|
2926
|
+
W(v.$slots, e.configEdit.editSlotName, { scope: e.scope })
|
|
2927
|
+
], 34)) : k("", !0),
|
|
2928
|
+
e.configEdit.isSelfCom ? (h(), C(ee, { key: 1 }, [
|
|
2929
|
+
e.configEdit.editComponent === "t-select-table" ? (h(), A(Pe(e.configEdit.editComponent), z(
|
|
2930
|
+
{
|
|
2931
|
+
key: 0,
|
|
2932
|
+
ref: (N) => L(N, e.configEdit),
|
|
2933
|
+
placeholder: e.configEdit.placeholder || $(e.configEdit)
|
|
2934
|
+
},
|
|
2935
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind },
|
|
2936
|
+
{
|
|
2937
|
+
style: { width: e.configEdit.width || "100%" }
|
|
2938
|
+
},
|
|
2939
|
+
gt(u.value(e.configEdit, "t-select-table"))
|
|
2940
|
+
), null, 16, ["placeholder", "style"])) : (h(), A(Pe(e.configEdit.editComponent), z(
|
|
2941
|
+
{
|
|
2942
|
+
key: 1,
|
|
2943
|
+
modelValue: O(a),
|
|
2944
|
+
"onUpdate:modelValue": T[0] || (T[0] = (N) => At(a) ? a.value = N : a = N),
|
|
2945
|
+
placeholder: e.configEdit.placeholder || $(e.configEdit),
|
|
2946
|
+
ref: (N) => b(N, e.configEdit)
|
|
2947
|
+
},
|
|
2948
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind },
|
|
2949
|
+
{
|
|
2950
|
+
onChange: T[1] || (T[1] = (N) => l(e.configEdit.event)),
|
|
2951
|
+
style: { width: e.configEdit.width || "100%" }
|
|
2952
|
+
},
|
|
2953
|
+
gt(u.value(e.configEdit))
|
|
2954
|
+
), null, 16, ["modelValue", "placeholder", "style"]))
|
|
2955
|
+
], 64)) : k("", !0),
|
|
2956
|
+
!e.configEdit.editSlotName && !e.configEdit.isSelfCom ? (h(), A(Pe(e.configEdit.editComponent || "el-input"), z(
|
|
2957
|
+
{
|
|
2958
|
+
key: 2,
|
|
2959
|
+
modelValue: O(a),
|
|
2960
|
+
"onUpdate:modelValue": T[2] || (T[2] = (N) => At(a) ? a.value = N : a = N),
|
|
2961
|
+
type: e.configEdit.type,
|
|
2962
|
+
placeholder: e.configEdit.placeholder || $(e.configEdit),
|
|
2963
|
+
ref: (N) => b(N, e.configEdit),
|
|
2964
|
+
class: e.prop,
|
|
2965
|
+
onChange: T[3] || (T[3] = (N) => l(e.configEdit.event)),
|
|
2966
|
+
onKeyup: i,
|
|
2967
|
+
style: { width: e.configEdit.width || "100%" }
|
|
2968
|
+
},
|
|
2969
|
+
gt(u.value(e.configEdit)),
|
|
2970
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind }
|
|
2971
|
+
), _e({
|
|
2972
|
+
default: I(() => [
|
|
2973
|
+
e.configEdit.editComponent.includes("date") ? k("", !0) : (h(!0), C(ee, { key: 0 }, Te(f.value(e.configEdit), (N, G) => (h(), A(Pe(g.value(e.configEdit)), {
|
|
2974
|
+
key: G,
|
|
2975
|
+
disabled: N.disabled,
|
|
2976
|
+
label: d.value(e.configEdit, N),
|
|
2977
|
+
value: S.value(e.configEdit, N, G)
|
|
2978
|
+
}, {
|
|
2979
|
+
default: I(() => [
|
|
2980
|
+
Ae(q(D.value(e.configEdit, N)), 1)
|
|
2981
|
+
]),
|
|
2982
|
+
_: 2
|
|
2983
|
+
}, 1032, ["disabled", "label", "value"]))), 128))
|
|
2984
|
+
]),
|
|
2985
|
+
_: 2
|
|
2986
|
+
}, [
|
|
2987
|
+
e.configEdit.prepend ? {
|
|
2988
|
+
name: "prepend",
|
|
2989
|
+
fn: I(() => [
|
|
2990
|
+
Ae(q(e.configEdit.prepend), 1)
|
|
2991
|
+
]),
|
|
2992
|
+
key: "0"
|
|
2993
|
+
} : void 0,
|
|
2994
|
+
e.configEdit.append ? {
|
|
2995
|
+
name: "append",
|
|
2996
|
+
fn: I(() => [
|
|
2997
|
+
Ae(q(e.configEdit.append), 1)
|
|
2998
|
+
]),
|
|
2999
|
+
key: "1"
|
|
3000
|
+
} : void 0
|
|
3001
|
+
]), 1040, ["modelValue", "type", "placeholder", "class", "style"])) : k("", !0)
|
|
3002
|
+
]),
|
|
3003
|
+
_: 3
|
|
3004
|
+
}, 16, ["prop", "rules", "class"]));
|
|
3005
|
+
}
|
|
3006
|
+
}), sn = /* @__PURE__ */ re({
|
|
3007
|
+
name: "RenderCol",
|
|
3008
|
+
__name: "renderCol",
|
|
3009
|
+
props: {
|
|
3010
|
+
row: Object,
|
|
3011
|
+
render: Function,
|
|
3012
|
+
index: Number,
|
|
3013
|
+
column: {
|
|
3014
|
+
type: Object,
|
|
3015
|
+
default: null
|
|
3016
|
+
}
|
|
3017
|
+
},
|
|
3018
|
+
setup(e) {
|
|
3019
|
+
const t = e, n = () => t.render(t?.row[t?.column?.prop], t.row, t.index);
|
|
3020
|
+
return (o, r) => (h(), A(Pe(n)));
|
|
3021
|
+
}
|
|
3022
|
+
}), $n = /* @__PURE__ */ re({
|
|
3023
|
+
name: "RenderHeader",
|
|
3024
|
+
__name: "renderHeader",
|
|
3025
|
+
props: {
|
|
3026
|
+
render: Function,
|
|
3027
|
+
column: {
|
|
3028
|
+
type: Object,
|
|
3029
|
+
default: null
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
3032
|
+
setup(e) {
|
|
3033
|
+
const t = e, n = () => t.render(t?.column);
|
|
3034
|
+
return (o, r) => (h(), A(Pe(n)));
|
|
3035
|
+
}
|
|
3036
|
+
}), Ji = { key: 3 }, Zi = /* @__PURE__ */ re({
|
|
3037
|
+
name: "GyTableColumn",
|
|
3038
|
+
__name: "GyTableColumn",
|
|
3039
|
+
props: {
|
|
3040
|
+
item: {
|
|
3041
|
+
type: Object,
|
|
3042
|
+
default: () => ({}),
|
|
3043
|
+
required: !0
|
|
3044
|
+
},
|
|
3045
|
+
align: {
|
|
3046
|
+
type: String,
|
|
3047
|
+
default: "center"
|
|
3048
|
+
},
|
|
3049
|
+
sortable: {
|
|
3050
|
+
type: [Boolean, String]
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
3053
|
+
emits: ["handleEvent"],
|
|
3054
|
+
setup(e, { emit: t }) {
|
|
3055
|
+
const n = t, o = Rn();
|
|
3056
|
+
return (r, a) => {
|
|
3057
|
+
const l = ne("gy-table-column", !0), i = ne("el-table-column");
|
|
3058
|
+
return (typeof e.item.isShowCol == "function" ? e.item.isShowCol(e.item) : !e.item.isShowCol) ? (h(), A(i, {
|
|
3059
|
+
key: 0,
|
|
3060
|
+
prop: e.item.prop,
|
|
3061
|
+
label: e.item.label,
|
|
3062
|
+
type: e.item.type,
|
|
3063
|
+
align: e.item.align || e.align,
|
|
3064
|
+
"min-width": e.item["min-width"] || e.item.minWidth,
|
|
3065
|
+
width: e.item.width,
|
|
3066
|
+
fixed: e.item.fixed
|
|
3067
|
+
}, _e({
|
|
3068
|
+
default: I(() => [
|
|
3069
|
+
(h(!0), C(ee, null, Te(e.item.children, (u, f) => (h(), C(ee, null, [
|
|
3070
|
+
u.children ? (h(), A(l, z({
|
|
3071
|
+
key: f,
|
|
3072
|
+
item: u
|
|
3073
|
+
}, { ref_for: !0 }, r.$attrs), _e({ _: 2 }, [
|
|
3074
|
+
Te(O(o), (g, d) => ({
|
|
3075
|
+
name: d,
|
|
3076
|
+
fn: I((S) => [
|
|
3077
|
+
W(r.$slots, d, z({ ref_for: !0 }, S))
|
|
3078
|
+
])
|
|
3079
|
+
}))
|
|
3080
|
+
]), 1040, ["item"])) : (h(), C(ee, { key: 1 }, [
|
|
3081
|
+
(typeof u.isShowCol == "function" ? u.isShowCol(u) : !u.isShowCol) ? (h(), A(i, z({
|
|
3082
|
+
key: u.prop,
|
|
3083
|
+
prop: u.prop,
|
|
3084
|
+
label: u.label,
|
|
3085
|
+
"min-width": u["min-width"] || u.minWidth,
|
|
3086
|
+
width: u.width,
|
|
3087
|
+
sortable: u.sortable || u.sort || e.sortable,
|
|
3088
|
+
align: u.align || e.align,
|
|
3089
|
+
fixed: u.fixed,
|
|
3090
|
+
formatter: u.formatter
|
|
3091
|
+
}, { ref_for: !0 }, { "show-overflow-tooltip": !0, ...u.bind, ...r.$attrs }), _e({
|
|
3092
|
+
default: I((g) => [
|
|
3093
|
+
u.render ? (h(), A(sn, {
|
|
3094
|
+
key: 0,
|
|
3095
|
+
column: u,
|
|
3096
|
+
row: g.row,
|
|
3097
|
+
render: u.render,
|
|
3098
|
+
index: g.$index
|
|
3099
|
+
}, null, 8, ["column", "row", "render", "index"])) : k("", !0),
|
|
3100
|
+
u.slotNameMerge ? W(r.$slots, u.slotNameMerge, {
|
|
3101
|
+
key: 1,
|
|
3102
|
+
scope: g
|
|
3103
|
+
}) : k("", !0),
|
|
3104
|
+
u.canEdit ? (h(), A(cr, z({
|
|
3105
|
+
key: 2,
|
|
3106
|
+
isShowRules: !1,
|
|
3107
|
+
configEdit: u.configEdit,
|
|
3108
|
+
modelValue: g.row[u.prop],
|
|
3109
|
+
"onUpdate:modelValue": (d) => g.row[u.prop] = d,
|
|
3110
|
+
prop: u.prop,
|
|
3111
|
+
scope: g,
|
|
3112
|
+
onHandleEvent: ({ type: d, val: S }) => n("handleEvent", d, S, g.$index)
|
|
3113
|
+
}, { ref_for: !0 }, r.$attrs), _e({ _: 2 }, [
|
|
3114
|
+
Te(O(o), (d, S) => ({
|
|
3115
|
+
name: S,
|
|
3116
|
+
fn: I((D) => [
|
|
3117
|
+
W(r.$slots, S, z({ ref_for: !0 }, D))
|
|
3118
|
+
])
|
|
3119
|
+
}))
|
|
3120
|
+
]), 1040, ["configEdit", "modelValue", "onUpdate:modelValue", "prop", "scope", "onHandleEvent"])) : k("", !0),
|
|
3121
|
+
!u.render && !u.slotNameMerge && !u.canEdit && !u.formatter ? (h(), C("div", Ji, q(g.row[u.prop]), 1)) : k("", !0)
|
|
3122
|
+
]),
|
|
3123
|
+
_: 2
|
|
3124
|
+
}, [
|
|
3125
|
+
u.renderHeader ? {
|
|
3126
|
+
name: "header",
|
|
3127
|
+
fn: I(() => [
|
|
3128
|
+
le($n, {
|
|
3129
|
+
column: u,
|
|
3130
|
+
render: u.renderHeader
|
|
3131
|
+
}, null, 8, ["column", "render"])
|
|
3132
|
+
]),
|
|
3133
|
+
key: "0"
|
|
3134
|
+
} : void 0
|
|
3135
|
+
]), 1040, ["prop", "label", "min-width", "width", "sortable", "align", "fixed", "formatter"])) : k("", !0)
|
|
3136
|
+
], 64))
|
|
3137
|
+
], 64))), 256))
|
|
3138
|
+
]),
|
|
3139
|
+
_: 2
|
|
3140
|
+
}, [
|
|
3141
|
+
e.item.renderHeader ? {
|
|
3142
|
+
name: "header",
|
|
3143
|
+
fn: I(() => [
|
|
3144
|
+
le($n, {
|
|
3145
|
+
column: e.item,
|
|
3146
|
+
render: e.item.renderHeader
|
|
3147
|
+
}, null, 8, ["column", "render"])
|
|
3148
|
+
]),
|
|
3149
|
+
key: "0"
|
|
3150
|
+
} : void 0
|
|
3151
|
+
]), 1032, ["prop", "label", "type", "align", "min-width", "width", "fixed"])) : k("", !0);
|
|
3152
|
+
};
|
|
3153
|
+
}
|
|
3154
|
+
}), Qi = {
|
|
3155
|
+
key: 0,
|
|
3156
|
+
class: "cell-content"
|
|
3157
|
+
}, es = { key: 0 }, ts = { key: 1 }, ns = { key: 0 }, os = { key: 1 }, rs = { key: 0 }, as = /* @__PURE__ */ re({
|
|
3158
|
+
name: "SingleEdit",
|
|
3159
|
+
__name: "singleEdit",
|
|
3160
|
+
props: {
|
|
3161
|
+
/** 编辑配置项说明
|
|
3162
|
+
* label: '爱好', // placeholder显示
|
|
3163
|
+
* editComponent: 'el-select', // 组件
|
|
3164
|
+
* type: 'select-arr', // option显示
|
|
3165
|
+
* list: 'hobbyList', // 下拉选择数据源
|
|
3166
|
+
* arrLabel: 'label', // 下拉选择中文显示
|
|
3167
|
+
* arrKey: 'value' // 下拉选择number显示(最终传后台)
|
|
3168
|
+
* bind:{} // 组件衍生属性(即第三方组件属性)
|
|
3169
|
+
*/
|
|
3170
|
+
configEdit: {
|
|
3171
|
+
type: Object,
|
|
3172
|
+
default: () => ({})
|
|
3173
|
+
},
|
|
3174
|
+
// 下拉选择数据源
|
|
3175
|
+
listTypeInfo: {
|
|
3176
|
+
type: Object,
|
|
3177
|
+
default: () => ({})
|
|
3178
|
+
},
|
|
3179
|
+
scope: {
|
|
3180
|
+
type: Object,
|
|
3181
|
+
default: () => ({})
|
|
3182
|
+
},
|
|
3183
|
+
prop: {
|
|
3184
|
+
type: String,
|
|
3185
|
+
default: "prop"
|
|
3186
|
+
},
|
|
3187
|
+
// 是否开启单击编辑
|
|
3188
|
+
isClickEdit: {
|
|
3189
|
+
type: Boolean,
|
|
3190
|
+
default: !1
|
|
3191
|
+
},
|
|
3192
|
+
modelValue: {
|
|
3193
|
+
type: [String, Number, Object, Array, Date]
|
|
3194
|
+
},
|
|
3195
|
+
// 列for index
|
|
3196
|
+
indexColumns: [String, Number]
|
|
3197
|
+
},
|
|
3198
|
+
emits: ["handleEvent", "update:modelValue"],
|
|
3199
|
+
setup(e, { expose: t, emit: n }) {
|
|
3200
|
+
const o = e, r = n, a = Rn(), l = U(["select-arr", "checkbox", "radio", "select-obj", "el-select-multiple"]), i = U(!1), u = U({}), f = (m) => {
|
|
3201
|
+
m && (u.value[`tselecttableref-${o.indexColumns}`] = m);
|
|
3202
|
+
}, g = () => {
|
|
3203
|
+
const m = Object.keys(u.value).filter(
|
|
3204
|
+
(w) => w.includes("tselecttableref")
|
|
3205
|
+
);
|
|
3206
|
+
m.length > 0 && u.value && m.map((w) => {
|
|
3207
|
+
u.value[w].clear();
|
|
3208
|
+
});
|
|
3209
|
+
};
|
|
3210
|
+
let d = x({
|
|
3211
|
+
get() {
|
|
3212
|
+
return o?.modelValue;
|
|
3213
|
+
},
|
|
3214
|
+
set(m) {
|
|
3215
|
+
r("update:modelValue", m);
|
|
3216
|
+
}
|
|
3217
|
+
});
|
|
3218
|
+
Me(
|
|
3219
|
+
() => o.modelValue,
|
|
3220
|
+
(m) => {
|
|
3221
|
+
d.value = m;
|
|
3222
|
+
}
|
|
3223
|
+
);
|
|
3224
|
+
const S = x(() => ({ eventHandle: m }, w = "") => {
|
|
3225
|
+
let V = { ...m }, P = {};
|
|
3226
|
+
return Object.keys(V).forEach((K) => {
|
|
3227
|
+
P[K] = (se, F) => {
|
|
3228
|
+
if (w === "t-select-table") {
|
|
3229
|
+
const Q = {
|
|
3230
|
+
row: se,
|
|
3231
|
+
ids: F,
|
|
3232
|
+
prop: o.prop,
|
|
3233
|
+
scope: o.scope
|
|
3234
|
+
};
|
|
3235
|
+
V[K] && V[K](Q);
|
|
3236
|
+
} else
|
|
3237
|
+
typeof se == "number" && se === 0 || se ? V[K] && V[K]({ val: se, prop: o.prop, scope: o.scope }) : V[K] && V[K]({ prop: o.prop, scope: o.scope });
|
|
3238
|
+
};
|
|
3239
|
+
}), { ...P };
|
|
3240
|
+
}), D = x({
|
|
3241
|
+
get() {
|
|
3242
|
+
let m, w = [], V = [];
|
|
3243
|
+
return o.listTypeInfo[o.configEdit.list] && o.listTypeInfo[o.configEdit.list].map((P) => {
|
|
3244
|
+
switch (o.configEdit.type) {
|
|
3245
|
+
case "checkbox":
|
|
3246
|
+
case "radio":
|
|
3247
|
+
d.value.join(",").includes(P.value) && w.push(P.label), m = w.join(",");
|
|
3248
|
+
break;
|
|
3249
|
+
case "select-arr":
|
|
3250
|
+
d.value == P[o.configEdit.arrKey] && (m = P[o.configEdit.arrLabel]);
|
|
3251
|
+
break;
|
|
3252
|
+
case "el-select-multiple":
|
|
3253
|
+
d.value && d.value.join(",").includes(P[o.configEdit.arrKey]) && V.push(P[o.configEdit.arrLabel]), m = V.join(",");
|
|
3254
|
+
break;
|
|
3255
|
+
case "select-obj":
|
|
3256
|
+
m = P;
|
|
3257
|
+
break;
|
|
3258
|
+
}
|
|
3259
|
+
}), m;
|
|
3260
|
+
},
|
|
3261
|
+
set(m) {
|
|
3262
|
+
return m;
|
|
3263
|
+
}
|
|
3264
|
+
}), b = x(() => (m) => {
|
|
3265
|
+
switch (m.type) {
|
|
3266
|
+
case "checkbox":
|
|
3267
|
+
return "el-checkbox";
|
|
3268
|
+
case "radio":
|
|
3269
|
+
return "el-radio";
|
|
3270
|
+
case "el-select-multiple":
|
|
3271
|
+
case "select-arr":
|
|
3272
|
+
case "select-obj":
|
|
3273
|
+
return "el-option";
|
|
3274
|
+
}
|
|
3275
|
+
}), p = x(() => (m, w) => {
|
|
3276
|
+
switch (m.type) {
|
|
3277
|
+
case "radio":
|
|
3278
|
+
case "checkbox":
|
|
3279
|
+
return w[m.arrLabel || "label"];
|
|
3280
|
+
case "el-select-multiple":
|
|
3281
|
+
case "select-arr":
|
|
3282
|
+
return w[m.arrLabel || "label"];
|
|
3283
|
+
case "select-obj":
|
|
3284
|
+
return w;
|
|
3285
|
+
}
|
|
3286
|
+
}), L = x(() => (m, w, V) => {
|
|
3287
|
+
switch (m.type) {
|
|
3288
|
+
case "radio":
|
|
3289
|
+
case "checkbox":
|
|
3290
|
+
return w[m.arrKey || "key"];
|
|
3291
|
+
case "el-select-multiple":
|
|
3292
|
+
case "select-arr":
|
|
3293
|
+
return w[m.arrKey || "key"];
|
|
3294
|
+
case "select-obj":
|
|
3295
|
+
return V;
|
|
3296
|
+
}
|
|
3297
|
+
}), _ = x(() => (m, w) => {
|
|
3298
|
+
switch (m.type) {
|
|
3299
|
+
case "radio":
|
|
3300
|
+
case "checkbox":
|
|
3301
|
+
return w[m.arrLabel || "label"];
|
|
3302
|
+
case "el-select-multiple":
|
|
3303
|
+
case "select-arr":
|
|
3304
|
+
return w[m.arrLabel || "label"];
|
|
3305
|
+
case "select-obj":
|
|
3306
|
+
return w;
|
|
3307
|
+
}
|
|
3308
|
+
}), $ = U(), v = () => {
|
|
3309
|
+
o.isClickEdit && (i.value = !0, Bn(() => {
|
|
3310
|
+
let m = $.value;
|
|
3311
|
+
m && m.focus && m.focus();
|
|
3312
|
+
}));
|
|
3313
|
+
}, T = () => {
|
|
3314
|
+
i.value = !1;
|
|
3315
|
+
}, N = (m) => {
|
|
3316
|
+
if (!m.editComponent || typeof m.editComponent != "string")
|
|
3317
|
+
return m.label;
|
|
3318
|
+
const w = m.editComponent.toLowerCase();
|
|
3319
|
+
return w.includes("input") ? "请输入" + m.label : w.includes("select") || w.includes("date") ? "请选择" + m.label : m.label;
|
|
3320
|
+
}, G = (m, w, V) => {
|
|
3321
|
+
V === "datetime" && T(), setTimeout(() => {
|
|
3322
|
+
r("handleEvent", { type: m, val: w });
|
|
3323
|
+
}, 0);
|
|
3324
|
+
};
|
|
3325
|
+
return t({ resetClickTselectTable: g }), (m, w) => {
|
|
3326
|
+
const V = ne("el-tooltip");
|
|
3327
|
+
return h(), C("div", {
|
|
3328
|
+
onClick: v,
|
|
3329
|
+
class: "single_edit_cell"
|
|
3330
|
+
}, [
|
|
3331
|
+
i.value ? k("", !0) : (h(), C("div", Qi, [
|
|
3332
|
+
e.configEdit.isShowTips ? (h(), A(V, z({
|
|
3333
|
+
key: 0,
|
|
3334
|
+
class: "item"
|
|
3335
|
+
}, {
|
|
3336
|
+
effect: "light",
|
|
3337
|
+
content: "单击可编辑",
|
|
3338
|
+
placement: "top",
|
|
3339
|
+
...e.configEdit.tipbind
|
|
3340
|
+
}), {
|
|
3341
|
+
default: I(() => [
|
|
3342
|
+
l.value.includes(e.configEdit.type) ? (h(), C("div", es, q(D.value) + " ", 1)) : (h(), C("div", ts, q(O(d)) + " ", 1)),
|
|
3343
|
+
W(m.$slots, "content")
|
|
3344
|
+
]),
|
|
3345
|
+
_: 3
|
|
3346
|
+
}, 16)) : (h(), C(ee, { key: 1 }, [
|
|
3347
|
+
l.value.includes(e.configEdit.type) ? (h(), C("div", ns, q(D.value) + " ", 1)) : (h(), C("div", os, q(O(d)) + " ", 1)),
|
|
3348
|
+
W(m.$slots, "content")
|
|
3349
|
+
], 64))
|
|
3350
|
+
])),
|
|
3351
|
+
i.value ? (h(), C(ee, { key: 1 }, [
|
|
3352
|
+
e.configEdit.editSlotName ? (h(), C("div", {
|
|
3353
|
+
key: 0,
|
|
3354
|
+
class: xe([e.prop, "slot_edit_name"])
|
|
3355
|
+
}, [
|
|
3356
|
+
W(m.$slots, e.configEdit.editSlotName, { scope: e.scope })
|
|
3357
|
+
], 2)) : k("", !0),
|
|
3358
|
+
e.configEdit.isSelfCom ? (h(), C(ee, { key: 1 }, [
|
|
3359
|
+
e.configEdit.editComponent === "t-select-table" ? (h(), A(Pe(e.configEdit.editComponent), z(
|
|
3360
|
+
{
|
|
3361
|
+
key: 0,
|
|
3362
|
+
ref: (P) => f(P),
|
|
3363
|
+
placeholder: e.configEdit.placeholder || N(e.configEdit)
|
|
3364
|
+
},
|
|
3365
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind },
|
|
3366
|
+
{
|
|
3367
|
+
style: { width: e.configEdit.width || "100%" }
|
|
3368
|
+
},
|
|
3369
|
+
gt(S.value(e.configEdit, "t-select-table"))
|
|
3370
|
+
), null, 16, ["placeholder", "style"])) : (h(), A(Pe(e.configEdit.editComponent), z(
|
|
3371
|
+
{
|
|
3372
|
+
key: 1,
|
|
3373
|
+
modelValue: O(d),
|
|
3374
|
+
"onUpdate:modelValue": w[0] || (w[0] = (P) => At(d) ? d.value = P : d = P),
|
|
3375
|
+
type: e.configEdit.type,
|
|
3376
|
+
placeholder: e.configEdit.placeholder || N(e.configEdit),
|
|
3377
|
+
ref_key: "parentCom",
|
|
3378
|
+
ref: $
|
|
3379
|
+
},
|
|
3380
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind },
|
|
3381
|
+
{
|
|
3382
|
+
onChange: w[1] || (w[1] = (P) => G(e.configEdit.event, O(d), e.configEdit.type)),
|
|
3383
|
+
style: { width: e.configEdit.width || "100%" }
|
|
3384
|
+
},
|
|
3385
|
+
gt(S.value(e.configEdit))
|
|
3386
|
+
), null, 16, ["modelValue", "type", "placeholder", "style"]))
|
|
3387
|
+
], 64)) : k("", !0),
|
|
3388
|
+
!e.configEdit.editSlotName && !e.configEdit.isSelfCom ? (h(), A(Pe(e.configEdit.editComponent || "el-input"), z(
|
|
3389
|
+
{
|
|
3390
|
+
key: 2,
|
|
3391
|
+
modelValue: O(d),
|
|
3392
|
+
"onUpdate:modelValue": w[2] || (w[2] = (P) => At(d) ? d.value = P : d = P),
|
|
3393
|
+
type: e.configEdit.type,
|
|
3394
|
+
placeholder: e.configEdit.placeholder || N(e.configEdit),
|
|
3395
|
+
class: e.prop,
|
|
3396
|
+
ref_key: "parentCom",
|
|
3397
|
+
ref: $,
|
|
3398
|
+
onChange: w[3] || (w[3] = (P) => G(e.configEdit.event, O(d), e.configEdit.type)),
|
|
3399
|
+
onKeyup: Or(T, ["enter", "native"]),
|
|
3400
|
+
onBlur: T
|
|
3401
|
+
},
|
|
3402
|
+
typeof e.configEdit.bind == "function" ? e.configEdit.bind(e.scope) : { clearable: !0, filterable: !0, ...e.configEdit.bind },
|
|
3403
|
+
{
|
|
3404
|
+
style: { width: e.configEdit.width || "100%" }
|
|
3405
|
+
},
|
|
3406
|
+
gt(S.value(e.configEdit))
|
|
3407
|
+
), _e({
|
|
3408
|
+
default: I(() => [
|
|
3409
|
+
W(m.$slots, "editChild"),
|
|
3410
|
+
m.$slots.editChild ? k("", !0) : (h(), C("div", rs, [
|
|
3411
|
+
(h(!0), C(ee, null, Te(e.listTypeInfo[e.configEdit.list], (P, K, se) => (h(), A(Pe(b.value(e.configEdit)), {
|
|
3412
|
+
key: se,
|
|
3413
|
+
disabled: P.disabled,
|
|
3414
|
+
label: p.value(e.configEdit, P),
|
|
3415
|
+
value: L.value(e.configEdit, P, K)
|
|
3416
|
+
}, {
|
|
3417
|
+
default: I(() => [
|
|
3418
|
+
Ae(q(_.value(e.configEdit, P)), 1)
|
|
3419
|
+
]),
|
|
3420
|
+
_: 2
|
|
3421
|
+
}, 1032, ["disabled", "label", "value"]))), 128))
|
|
3422
|
+
]))
|
|
3423
|
+
]),
|
|
3424
|
+
_: 2
|
|
3425
|
+
}, [
|
|
3426
|
+
Te(O(a), (P, K) => ({
|
|
3427
|
+
name: K,
|
|
3428
|
+
fn: I((se) => [
|
|
3429
|
+
W(m.$slots, K, We(Lt(se)))
|
|
3430
|
+
])
|
|
3431
|
+
})),
|
|
3432
|
+
e.configEdit.prepend ? {
|
|
3433
|
+
name: "prepend",
|
|
3434
|
+
fn: I(() => [
|
|
3435
|
+
Ae(q(e.configEdit.prepend), 1)
|
|
3436
|
+
]),
|
|
3437
|
+
key: "0"
|
|
3438
|
+
} : void 0,
|
|
3439
|
+
e.configEdit.append ? {
|
|
3440
|
+
name: "append",
|
|
3441
|
+
fn: I(() => [
|
|
3442
|
+
Ae(q(e.configEdit.append), 1)
|
|
3443
|
+
]),
|
|
3444
|
+
key: "1"
|
|
3445
|
+
} : void 0
|
|
3446
|
+
]), 1040, ["modelValue", "type", "placeholder", "class", "style"])) : k("", !0)
|
|
3447
|
+
], 64)) : k("", !0)
|
|
3448
|
+
]);
|
|
3449
|
+
};
|
|
3450
|
+
}
|
|
3451
|
+
}), ls = {
|
|
3452
|
+
key: 0,
|
|
3453
|
+
class: "title"
|
|
3454
|
+
}, is = /* @__PURE__ */ re({
|
|
3455
|
+
name: "ColumnSet",
|
|
3456
|
+
__name: "ColumnSet",
|
|
3457
|
+
props: {
|
|
3458
|
+
columns: { default: () => [] },
|
|
3459
|
+
title: { default: "" },
|
|
3460
|
+
name: { default: "" },
|
|
3461
|
+
columnSetBind: { default: () => ({}) }
|
|
3462
|
+
},
|
|
3463
|
+
emits: ["columnSetting"],
|
|
3464
|
+
setup(e, { expose: t, emit: n }) {
|
|
3465
|
+
const o = e, r = U(), a = Io(), l = x(() => {
|
|
3466
|
+
const _ = { btnTxt: "列设置", title: "列设置", ...o.columnSetBind };
|
|
3467
|
+
return { size: "default", icon: "Setting", isShowTitle: !0, ...a, ..._ };
|
|
3468
|
+
}), i = n, u = No({
|
|
3469
|
+
columnSet: []
|
|
3470
|
+
}), f = U([]), g = () => {
|
|
3471
|
+
let _ = localStorage.getItem(`t-ui-plus:TTable.columnSet-${o.name || o.title}`) || "[]", $ = d(), v = JSON.parse(_) || [];
|
|
3472
|
+
return $.forEach((T) => {
|
|
3473
|
+
let N = v.find(
|
|
3474
|
+
(G) => G.label === T.label && G.prop === T.prop
|
|
3475
|
+
);
|
|
3476
|
+
T.hidden = N ? N.hidden : !1;
|
|
3477
|
+
}), _ = JSON.stringify(v.length ? v : $), _ ? JSON.parse(_) : d();
|
|
3478
|
+
}, d = () => o.columns.map((_) => ({
|
|
3479
|
+
label: _.label,
|
|
3480
|
+
prop: _.prop,
|
|
3481
|
+
checkBoxDisabled: !1,
|
|
3482
|
+
hidden: !1
|
|
3483
|
+
}));
|
|
3484
|
+
Rt(() => {
|
|
3485
|
+
u.columnSet = g(), f.value = u.columnSet.filter((_) => !_.hidden).map((_) => _.prop), i("columnSetting", u.columnSet);
|
|
3486
|
+
}), Me(
|
|
3487
|
+
() => u.columnSet,
|
|
3488
|
+
(_) => {
|
|
3489
|
+
i("columnSetting", _), localStorage.setItem(
|
|
3490
|
+
`t-ui-plus:TTable.columnSet-${o.name || o.title}`,
|
|
3491
|
+
JSON.stringify(_)
|
|
3492
|
+
), f.value = u.columnSet.filter(($) => !$.hidden).map(($) => $.prop);
|
|
3493
|
+
},
|
|
3494
|
+
{ deep: !0 }
|
|
3495
|
+
);
|
|
3496
|
+
const S = () => {
|
|
3497
|
+
let _ = localStorage.getItem(`t-ui-plus:TTable.columnSet-${o.name || o.title}`);
|
|
3498
|
+
u.columnSet = JSON.parse(_), f.value = u.columnSet.filter(($) => !$.hidden).map(($) => $.prop), i("columnSetting", u.columnSet);
|
|
3499
|
+
}, D = () => {
|
|
3500
|
+
const _ = r.value?.getCheckedKeys() || [];
|
|
3501
|
+
u.columnSet.forEach((v) => {
|
|
3502
|
+
v.hidden = !_.includes(v.prop);
|
|
3503
|
+
});
|
|
3504
|
+
const $ = u.columnSet.filter((v) => !v.hidden);
|
|
3505
|
+
$.length < 2 ? $.forEach((v) => v.checkBoxDisabled = !0) : u.columnSet.forEach((v) => v.checkBoxDisabled = !1);
|
|
3506
|
+
}, b = () => !0, p = (_, $, v) => !(_.level !== $.level || v !== "prev" && v !== "next"), L = (_, $, v, T) => {
|
|
3507
|
+
if (v === "inner") {
|
|
3508
|
+
T.preventDefault();
|
|
3509
|
+
return;
|
|
3510
|
+
}
|
|
3511
|
+
const N = u.columnSet.findIndex((w) => w.prop === _.data.prop), G = u.columnSet.findIndex((w) => w.prop === $.data.prop);
|
|
3512
|
+
if (N === -1 || G === -1) return;
|
|
3513
|
+
const m = u.columnSet.splice(N, 1)[0];
|
|
3514
|
+
if (v === "before") {
|
|
3515
|
+
const w = N < G ? G - 1 : G;
|
|
3516
|
+
u.columnSet.splice(w, 0, m);
|
|
3517
|
+
} else v === "after" && u.columnSet.splice(G + 1, 0, m);
|
|
3518
|
+
};
|
|
3519
|
+
return t({
|
|
3520
|
+
reSetColumnSet: S
|
|
3521
|
+
}), (_, $) => {
|
|
3522
|
+
const v = ne("el-button"), T = ne("el-tree"), N = ne("el-dropdown-item"), G = ne("el-dropdown-menu"), m = ne("el-dropdown");
|
|
3523
|
+
return h(), A(m, {
|
|
3524
|
+
trigger: "click",
|
|
3525
|
+
"popper-class": "column_set"
|
|
3526
|
+
}, {
|
|
3527
|
+
dropdown: I(() => [
|
|
3528
|
+
l.value.isShowTitle ? (h(), C("div", ls, q(l.value.title || "列设置"), 1)) : k("", !0),
|
|
3529
|
+
le(G, null, {
|
|
3530
|
+
default: I(() => [
|
|
3531
|
+
le(N, {
|
|
3532
|
+
divided: l.value.isShowTitle
|
|
3533
|
+
}, {
|
|
3534
|
+
default: I(() => [
|
|
3535
|
+
le(T, {
|
|
3536
|
+
ref_key: "treeRef",
|
|
3537
|
+
ref: r,
|
|
3538
|
+
class: "t_table_column_setting_dropdown",
|
|
3539
|
+
data: u.columnSet,
|
|
3540
|
+
"node-key": "prop",
|
|
3541
|
+
props: { label: "label", children: "children", disabled: "checkBoxDisabled" },
|
|
3542
|
+
"show-checkbox": "",
|
|
3543
|
+
draggable: "",
|
|
3544
|
+
"default-expand-all": "",
|
|
3545
|
+
"check-strictly": "",
|
|
3546
|
+
"allow-drag": b,
|
|
3547
|
+
"allow-drop": p,
|
|
3548
|
+
"default-checked-keys": f.value,
|
|
3549
|
+
onCheck: D,
|
|
3550
|
+
onNodeDrop: L
|
|
3551
|
+
}, null, 8, ["data", "default-checked-keys"])
|
|
3552
|
+
]),
|
|
3553
|
+
_: 1
|
|
3554
|
+
}, 8, ["divided"])
|
|
3555
|
+
]),
|
|
3556
|
+
_: 1
|
|
3557
|
+
})
|
|
3558
|
+
]),
|
|
3559
|
+
default: I(() => [
|
|
3560
|
+
le(v, We(Lt(l.value)), {
|
|
3561
|
+
default: I(() => [
|
|
3562
|
+
Ae(q(l.value.btnTxt || "列设置"), 1)
|
|
3563
|
+
]),
|
|
3564
|
+
_: 1
|
|
3565
|
+
}, 16)
|
|
3566
|
+
]),
|
|
3567
|
+
_: 1
|
|
3568
|
+
});
|
|
3569
|
+
};
|
|
3570
|
+
}
|
|
3571
|
+
}), ss = { key: 1 }, us = { class: "more_dropdown-link" }, cs = { key: 1 }, ds = /* @__PURE__ */ re({
|
|
3572
|
+
name: "Operator",
|
|
3573
|
+
__name: "operator",
|
|
3574
|
+
props: {
|
|
3575
|
+
tableData: {
|
|
3576
|
+
type: Array,
|
|
3577
|
+
default: () => []
|
|
3578
|
+
},
|
|
3579
|
+
table: { type: Object, default: () => {
|
|
3580
|
+
} },
|
|
3581
|
+
btnPermissions: {
|
|
3582
|
+
type: Array,
|
|
3583
|
+
default: () => []
|
|
3584
|
+
},
|
|
3585
|
+
align: {
|
|
3586
|
+
type: String,
|
|
3587
|
+
default: "center"
|
|
3588
|
+
}
|
|
3589
|
+
},
|
|
3590
|
+
setup(e) {
|
|
3591
|
+
const t = e, n = (l, i) => {
|
|
3592
|
+
let u = !1;
|
|
3593
|
+
if (i.noshow) {
|
|
3594
|
+
let D = JSON.parse(JSON.stringify(i.noshow));
|
|
3595
|
+
D.map((b) => {
|
|
3596
|
+
b.isShow = typeof b.val == "string" ? b.val === "isHasVal" ? l.row[b.key] ? "true" : "false" : "true" : b.val.includes(l.row[b.key]) ? "false" : "true";
|
|
3597
|
+
}), u = D.every((b) => b.isShow === "true");
|
|
3598
|
+
} else
|
|
3599
|
+
u = !0;
|
|
3600
|
+
let f = !i.show || i.show.val.includes(l.row[i.show.key]), g = i.hasPermi ? t.btnPermissions?.includes(i.hasPermi) : !0, d = Object.values(l.row).every((D) => D !== "当页合计"), S = Object.values(l.row).every((D) => D !== "全部合计");
|
|
3601
|
+
return f && u && !l.row[i.field] && (i.isField ? l.row[i.isField] : !0) && d && S && g;
|
|
3602
|
+
}, o = Io(), r = x(() => {
|
|
3603
|
+
const u = {
|
|
3604
|
+
btnTxt: "更多",
|
|
3605
|
+
isShowArrwIcon: !0,
|
|
3606
|
+
// 是否显示下拉箭头
|
|
3607
|
+
...{},
|
|
3608
|
+
// 下拉menu属性
|
|
3609
|
+
...{ type: "primary", link: !0, text: !0, size: "small" },
|
|
3610
|
+
// 按钮属性
|
|
3611
|
+
...t.table.operatorConfig.dropdownBind
|
|
3612
|
+
// 下拉属性
|
|
3613
|
+
};
|
|
3614
|
+
return { ...o, ...u };
|
|
3615
|
+
}), a = () => t.table.operator.some((l) => l.isMore === !0);
|
|
3616
|
+
return (l, i) => {
|
|
3617
|
+
const u = ne("el-button"), f = ne("el-icon"), g = ne("el-dropdown-item"), d = ne("el-dropdown-menu"), S = ne("el-dropdown"), D = ne("el-table-column");
|
|
3618
|
+
return e.table.operator ? (h(), A(D, z({ key: 0 }, {
|
|
3619
|
+
fixed: e.table.operatorConfig?.fixed,
|
|
3620
|
+
label: e.table.operatorConfig?.label || "操作",
|
|
3621
|
+
"min-width": e.table.operatorConfig?.minWidth,
|
|
3622
|
+
width: e.table.operatorConfig?.width,
|
|
3623
|
+
align: e.table.operatorConfig?.align || e.align,
|
|
3624
|
+
...e.table.operatorConfig?.bind
|
|
3625
|
+
}, { "class-name": "operator" }), {
|
|
3626
|
+
default: I((b) => [
|
|
3627
|
+
ie("div", {
|
|
3628
|
+
class: "operator_btn",
|
|
3629
|
+
style: ot(e.table.operatorConfig?.style)
|
|
3630
|
+
}, [
|
|
3631
|
+
(h(!0), C(ee, null, Te(e.table.operator, (p, L) => (h(), C(ee, null, [
|
|
3632
|
+
p.isMore ? k("", !0) : (h(), C(ee, { key: 0 }, [
|
|
3633
|
+
n(b, p) ? (h(), A(u, z({
|
|
3634
|
+
key: L,
|
|
3635
|
+
onClick: (_) => p.fun && p.fun(b.row, b.$index, e.tableData)
|
|
3636
|
+
}, { ref_for: !0 }, {
|
|
3637
|
+
type: "primary",
|
|
3638
|
+
link: !0,
|
|
3639
|
+
text: !0,
|
|
3640
|
+
size: "small",
|
|
3641
|
+
...p.bind
|
|
3642
|
+
}, {
|
|
3643
|
+
disabled: p.isDisabled && p.isDisabled(b.row, p)
|
|
3644
|
+
}), {
|
|
3645
|
+
default: I(() => [
|
|
3646
|
+
p.render ? (h(), A(sn, {
|
|
3647
|
+
key: 0,
|
|
3648
|
+
column: p,
|
|
3649
|
+
row: b.row,
|
|
3650
|
+
render: p.render,
|
|
3651
|
+
index: b.$index
|
|
3652
|
+
}, null, 8, ["column", "row", "render", "index"])) : k("", !0),
|
|
3653
|
+
p.render ? k("", !0) : (h(), C("span", ss, q(p.text), 1))
|
|
3654
|
+
]),
|
|
3655
|
+
_: 2
|
|
3656
|
+
}, 1040, ["onClick", "disabled"])) : k("", !0)
|
|
3657
|
+
], 64))
|
|
3658
|
+
], 64))), 256)),
|
|
3659
|
+
a() ? (h(), A(S, z({ key: 0 }, r.value, { class: "oper_more_dropdown" }), {
|
|
3660
|
+
dropdown: I(() => [
|
|
3661
|
+
le(d, z(r.value.menuBind, { class: "oper_more_dropdown_menu" }), {
|
|
3662
|
+
default: I(() => [
|
|
3663
|
+
(h(!0), C(ee, null, Te(e.table.operator, (p, L) => (h(), C(ee, null, [
|
|
3664
|
+
p.isMore ? (h(), A(g, z({
|
|
3665
|
+
onClick: (_) => p.fun && p.fun(b.row, b.$index, e.tableData),
|
|
3666
|
+
key: "more_" + L
|
|
3667
|
+
}, { ref_for: !0 }, {
|
|
3668
|
+
disabled: p.isDisabled && p.isDisabled(b.row, p),
|
|
3669
|
+
...p.itemBind
|
|
3670
|
+
}), {
|
|
3671
|
+
default: I(() => [
|
|
3672
|
+
n(b, p) ? (h(), A(u, z({ key: L }, { ref_for: !0 }, {
|
|
3673
|
+
link: !0,
|
|
3674
|
+
text: !0,
|
|
3675
|
+
size: "small",
|
|
3676
|
+
disabled: p.isDisabled && p.isDisabled(b.row, p),
|
|
3677
|
+
...p.bind
|
|
3678
|
+
}), {
|
|
3679
|
+
default: I(() => [
|
|
3680
|
+
p.render ? (h(), A(sn, {
|
|
3681
|
+
key: 0,
|
|
3682
|
+
column: p,
|
|
3683
|
+
row: b.row,
|
|
3684
|
+
render: p.render,
|
|
3685
|
+
index: b.$index
|
|
3686
|
+
}, null, 8, ["column", "row", "render", "index"])) : k("", !0),
|
|
3687
|
+
p.render ? k("", !0) : (h(), C("span", cs, q(p.text), 1))
|
|
3688
|
+
]),
|
|
3689
|
+
_: 2
|
|
3690
|
+
}, 1040)) : k("", !0)
|
|
3691
|
+
]),
|
|
3692
|
+
_: 2
|
|
3693
|
+
}, 1040, ["onClick"])) : k("", !0)
|
|
3694
|
+
], 64))), 256))
|
|
3695
|
+
]),
|
|
3696
|
+
_: 2
|
|
3697
|
+
}, 1040)
|
|
3698
|
+
]),
|
|
3699
|
+
default: I(() => [
|
|
3700
|
+
ie("span", us, [
|
|
3701
|
+
le(u, We(Lt({
|
|
3702
|
+
type: "primary",
|
|
3703
|
+
link: !0,
|
|
3704
|
+
text: !0,
|
|
3705
|
+
size: "small",
|
|
3706
|
+
...r.value.btnBind
|
|
3707
|
+
})), {
|
|
3708
|
+
default: I(() => [
|
|
3709
|
+
Ae(q(r.value.btnTxt || "更多") + " ", 1),
|
|
3710
|
+
r.value.isShowArrwIcon ? (h(), A(f, { key: 0 }, {
|
|
3711
|
+
default: I(() => [
|
|
3712
|
+
le(O(Lr))
|
|
3713
|
+
]),
|
|
3714
|
+
_: 1
|
|
3715
|
+
})) : k("", !0)
|
|
3716
|
+
]),
|
|
3717
|
+
_: 1
|
|
3718
|
+
}, 16)
|
|
3719
|
+
])
|
|
3720
|
+
]),
|
|
3721
|
+
_: 2
|
|
3722
|
+
}, 1040)) : k("", !0)
|
|
3723
|
+
], 4)
|
|
3724
|
+
]),
|
|
3725
|
+
_: 1
|
|
3726
|
+
}, 16)) : k("", !0);
|
|
3727
|
+
};
|
|
3728
|
+
}
|
|
3729
|
+
});
|
|
3730
|
+
function fs() {
|
|
3731
|
+
const e = U(null), t = U(null), n = U(null), o = U([]), r = {}, a = () => {
|
|
3732
|
+
e.value = document.querySelector(
|
|
3733
|
+
".t_table_use_virtual .el-scrollbar__view"
|
|
3734
|
+
), t.value = document.querySelector(".t_table_use_virtual .el-table__body"), n.value = document.querySelector(".t_table_use_virtual .el-scrollbar__wrap");
|
|
3735
|
+
}, l = (g) => {
|
|
3736
|
+
const d = r[g];
|
|
3737
|
+
return d === void 0 ? 50 : d;
|
|
3738
|
+
}, i = () => {
|
|
3739
|
+
let g = 0;
|
|
3740
|
+
o.value.forEach((d, S) => {
|
|
3741
|
+
g += l(S);
|
|
3742
|
+
}), e.value.style.height = g + "px";
|
|
3743
|
+
};
|
|
3744
|
+
return {
|
|
3745
|
+
scrollContainerEl: n,
|
|
3746
|
+
updateRenderedItemCache: (g) => {
|
|
3747
|
+
Object.keys(r).length < o.value.length && Bn(() => {
|
|
3748
|
+
Array.from(
|
|
3749
|
+
document.querySelectorAll(".t_table_use_virtual .el-table__row")
|
|
3750
|
+
).forEach((D) => {
|
|
3751
|
+
r[g] || (r[g] = D.offsetHeight), g++;
|
|
3752
|
+
}), i();
|
|
3753
|
+
});
|
|
3754
|
+
},
|
|
3755
|
+
updateOffset: (g) => {
|
|
3756
|
+
t.value && t.value.style && (t.value.style.transform = `translateY(${g}px)`);
|
|
3757
|
+
},
|
|
3758
|
+
getDom: a,
|
|
3759
|
+
getItemHeightFromCache: l,
|
|
3760
|
+
saveDATA: o
|
|
3761
|
+
};
|
|
3762
|
+
}
|
|
3763
|
+
function ps() {
|
|
3764
|
+
const e = U(null);
|
|
3765
|
+
return {
|
|
3766
|
+
GyTable: e,
|
|
3767
|
+
clearSelection: () => e.value.clearSelection(),
|
|
3768
|
+
getSelectionRows: () => e.value.getSelectionRows(),
|
|
3769
|
+
toggleRowSelection: (b, p = !1) => e.value.toggleRowSelection(b, p),
|
|
3770
|
+
toggleAllSelection: () => e.value.toggleAllSelection(),
|
|
3771
|
+
toggleRowExpansion: (b, p) => e.value.toggleRowExpansion(b, p),
|
|
3772
|
+
setCurrentRow: (b) => e.value.setCurrentRow(b),
|
|
3773
|
+
clearSort: () => e.value.clearSort(),
|
|
3774
|
+
clearFilter: (b) => e.value.clearFilter(b),
|
|
3775
|
+
doLayout: (b) => e.value.doLayout(b),
|
|
3776
|
+
sort: (b, p) => e.value.sort(b, p),
|
|
3777
|
+
scrollTo: (b, p) => e.value.scrollTo(b, p),
|
|
3778
|
+
setScrollTop: (b) => e.value.setScrollTop(b),
|
|
3779
|
+
setScrollLeft: (b) => e.value.setScrollLeft(b)
|
|
3780
|
+
};
|
|
3781
|
+
}
|
|
3782
|
+
const hs = {
|
|
3783
|
+
// table所需数据
|
|
3784
|
+
table: {
|
|
3785
|
+
type: Object,
|
|
3786
|
+
default: () => ({}),
|
|
3787
|
+
required: !0
|
|
3788
|
+
},
|
|
3789
|
+
paginationData: {
|
|
3790
|
+
type: Object,
|
|
3791
|
+
default: () => ({
|
|
3792
|
+
total: 0,
|
|
3793
|
+
pageNo: 1,
|
|
3794
|
+
pageSize: 10
|
|
3795
|
+
})
|
|
3796
|
+
},
|
|
3797
|
+
tableData: {
|
|
3798
|
+
type: Array,
|
|
3799
|
+
default: () => []
|
|
3800
|
+
// required: true,
|
|
3801
|
+
},
|
|
3802
|
+
// 表头数据
|
|
3803
|
+
columns: {
|
|
3804
|
+
type: Array,
|
|
3805
|
+
default: () => []
|
|
3806
|
+
// required: true
|
|
3807
|
+
},
|
|
3808
|
+
// 按钮权限数据集
|
|
3809
|
+
btnPermissions: {
|
|
3810
|
+
type: Array,
|
|
3811
|
+
default: () => []
|
|
3812
|
+
},
|
|
3813
|
+
// 表格标题
|
|
3814
|
+
title: {
|
|
3815
|
+
type: String
|
|
3816
|
+
},
|
|
3817
|
+
tableTitle: String,
|
|
3818
|
+
// table对齐方式
|
|
3819
|
+
align: {
|
|
3820
|
+
type: String,
|
|
3821
|
+
default: "center"
|
|
3822
|
+
},
|
|
3823
|
+
// 是否开启Tree-table
|
|
3824
|
+
isTree: {
|
|
3825
|
+
type: Boolean,
|
|
3826
|
+
default: !1
|
|
3827
|
+
},
|
|
3828
|
+
// 是否开启行拖拽
|
|
3829
|
+
isRowSort: {
|
|
3830
|
+
type: Boolean,
|
|
3831
|
+
default: !1
|
|
3832
|
+
},
|
|
3833
|
+
// 开启行拖拽,第一列是否显示拖拽图标
|
|
3834
|
+
isRowSortIcon: {
|
|
3835
|
+
type: Boolean,
|
|
3836
|
+
default: !1
|
|
3837
|
+
},
|
|
3838
|
+
// 显示拖拽列的配置
|
|
3839
|
+
rowSortIconBind: {
|
|
3840
|
+
type: Object,
|
|
3841
|
+
default: () => ({})
|
|
3842
|
+
},
|
|
3843
|
+
// 是否复制单元格
|
|
3844
|
+
isCopy: {
|
|
3845
|
+
type: Boolean,
|
|
3846
|
+
default: !1
|
|
3847
|
+
},
|
|
3848
|
+
// 是否开启点击整行选中单选框
|
|
3849
|
+
rowClickRadio: {
|
|
3850
|
+
type: Boolean,
|
|
3851
|
+
default: !0
|
|
3852
|
+
},
|
|
3853
|
+
// 设置默认选中项(单选)defaultRadioCol值必须大于0!
|
|
3854
|
+
defaultRadioCol: Number,
|
|
3855
|
+
// 序列号显示是否分页累加
|
|
3856
|
+
isPaginationCumulative: {
|
|
3857
|
+
type: Boolean,
|
|
3858
|
+
default: !1
|
|
3859
|
+
},
|
|
3860
|
+
// 是否显示分页
|
|
3861
|
+
isShowPagination: {
|
|
3862
|
+
type: Boolean,
|
|
3863
|
+
default: !0
|
|
3864
|
+
},
|
|
3865
|
+
// 是否开启编辑保存按钮
|
|
3866
|
+
isShowFooterBtn: {
|
|
3867
|
+
type: Boolean,
|
|
3868
|
+
default: !1
|
|
3869
|
+
},
|
|
3870
|
+
// 是否显示设置(隐藏/显示列)
|
|
3871
|
+
columnSetting: {
|
|
3872
|
+
type: Boolean,
|
|
3873
|
+
default: !1
|
|
3874
|
+
},
|
|
3875
|
+
// 是否高亮选中行
|
|
3876
|
+
highlightCurrentRow: {
|
|
3877
|
+
type: Boolean,
|
|
3878
|
+
default: !1
|
|
3879
|
+
},
|
|
3880
|
+
// 如果设置为 'custom',则代表用户希望远程排序,需要监听 Table 的 sort-change 事件
|
|
3881
|
+
sortable: {
|
|
3882
|
+
type: [Boolean, String]
|
|
3883
|
+
},
|
|
3884
|
+
// 单元格编辑是否开启键盘事件
|
|
3885
|
+
isKeyup: {
|
|
3886
|
+
type: Boolean,
|
|
3887
|
+
default: !1
|
|
3888
|
+
},
|
|
3889
|
+
// TAdaptivePage组件是否使用了Toolbar插槽
|
|
3890
|
+
isSlotToolbar: Boolean,
|
|
3891
|
+
// TAdaptivePage组件是否使用了title插槽
|
|
3892
|
+
isSlotTitle: Boolean,
|
|
3893
|
+
// 是否开启边框
|
|
3894
|
+
border: {
|
|
3895
|
+
type: Boolean,
|
|
3896
|
+
default: !1
|
|
3897
|
+
},
|
|
3898
|
+
// table loading
|
|
3899
|
+
tableLoading: {
|
|
3900
|
+
type: Boolean,
|
|
3901
|
+
default: !1
|
|
3902
|
+
},
|
|
3903
|
+
loadingTxt: {
|
|
3904
|
+
type: String,
|
|
3905
|
+
default: "加载中..."
|
|
3906
|
+
},
|
|
3907
|
+
// 是否开启虚拟列表
|
|
3908
|
+
useVirtual: Boolean,
|
|
3909
|
+
// 虚拟列表的渲染行数
|
|
3910
|
+
virtualShowSize: {
|
|
3911
|
+
type: Number,
|
|
3912
|
+
default: 30
|
|
3913
|
+
},
|
|
3914
|
+
footerBtnAlign: {
|
|
3915
|
+
type: String,
|
|
3916
|
+
default: "right"
|
|
3917
|
+
},
|
|
3918
|
+
/**
|
|
3919
|
+
* 空数据时表头是否显示校验红点
|
|
3920
|
+
*/
|
|
3921
|
+
isEmptyDataRequired: {
|
|
3922
|
+
type: Boolean,
|
|
3923
|
+
default: !1
|
|
3924
|
+
},
|
|
3925
|
+
saveBtnTxt: {
|
|
3926
|
+
type: String,
|
|
3927
|
+
default: "保存"
|
|
3928
|
+
},
|
|
3929
|
+
isDisabledForm: {
|
|
3930
|
+
type: Boolean,
|
|
3931
|
+
default: !1
|
|
3932
|
+
}
|
|
3933
|
+
}, gs = ["element-loading-text"], ms = {
|
|
3934
|
+
key: 0,
|
|
3935
|
+
class: "header_title"
|
|
3936
|
+
}, bs = { key: 0 }, ys = { key: 1 }, vs = { class: "toolbar_top" }, ws = {
|
|
3937
|
+
key: 0,
|
|
3938
|
+
class: "title-tip"
|
|
3939
|
+
}, Es = { key: 0 }, Ss = { key: 1 }, Cs = { key: 0 }, Ts = { key: 1 }, Ds = {
|
|
3940
|
+
key: 1,
|
|
3941
|
+
style: { display: "inline" }
|
|
3942
|
+
}, ks = { key: 5 }, _s = { key: 0 }, Os = /* @__PURE__ */ re({
|
|
3943
|
+
name: "GyTable",
|
|
3944
|
+
__name: "index",
|
|
3945
|
+
props: hs,
|
|
3946
|
+
emits: [
|
|
3947
|
+
"save",
|
|
3948
|
+
"page-change",
|
|
3949
|
+
"handleEvent",
|
|
3950
|
+
"radioChange",
|
|
3951
|
+
"rowSort",
|
|
3952
|
+
"validateError",
|
|
3953
|
+
"update:paginationData",
|
|
3954
|
+
"page-size-change"
|
|
3955
|
+
],
|
|
3956
|
+
setup(e, { expose: t, emit: n }) {
|
|
3957
|
+
const {
|
|
3958
|
+
scrollContainerEl: o,
|
|
3959
|
+
updateRenderedItemCache: r,
|
|
3960
|
+
updateOffset: a,
|
|
3961
|
+
getDom: l,
|
|
3962
|
+
saveDATA: i,
|
|
3963
|
+
getItemHeightFromCache: u
|
|
3964
|
+
} = fs(), {
|
|
3965
|
+
GyTable: f,
|
|
3966
|
+
clearSelection: g,
|
|
3967
|
+
getSelectionRows: d,
|
|
3968
|
+
toggleRowSelection: S,
|
|
3969
|
+
toggleAllSelection: D,
|
|
3970
|
+
toggleRowExpansion: b,
|
|
3971
|
+
setCurrentRow: p,
|
|
3972
|
+
clearSort: L,
|
|
3973
|
+
clearFilter: _,
|
|
3974
|
+
doLayout: $,
|
|
3975
|
+
sort: v,
|
|
3976
|
+
scrollTo: T,
|
|
3977
|
+
setScrollTop: N,
|
|
3978
|
+
setScrollLeft: G
|
|
3979
|
+
} = ps(), m = e;
|
|
3980
|
+
let w = No({
|
|
3981
|
+
tableData: m.tableData,
|
|
3982
|
+
columnSet: [],
|
|
3983
|
+
copyTableData: []
|
|
3984
|
+
// 键盘事件
|
|
3985
|
+
});
|
|
3986
|
+
const V = x(() => m.isEmptyDataRequired ? w.tableData.length > 0 : !0), P = U(""), K = U(!0), se = U(null), F = U(null), Q = U({}), ze = (s, y, j) => {
|
|
3987
|
+
s && (Q.value[`formRef-${y.$index}-${j.prop || y.column.property}`] = s);
|
|
3988
|
+
}, ye = U({}), st = (s, y, j) => {
|
|
3989
|
+
s && (ye.value[`singleEditRef-${y.$index}-${j.prop || y.column.property}`] = s);
|
|
3990
|
+
}, de = n, Ye = Rn();
|
|
3991
|
+
Me(
|
|
3992
|
+
() => m.table.data,
|
|
3993
|
+
(s) => {
|
|
3994
|
+
m.useVirtual ? (i.value = s, fn(0)) : w.tableData = s;
|
|
3995
|
+
},
|
|
3996
|
+
{ deep: !0 }
|
|
3997
|
+
), Me(
|
|
3998
|
+
() => m.isRowSort,
|
|
3999
|
+
(s) => {
|
|
4000
|
+
s && Xn();
|
|
4001
|
+
}
|
|
4002
|
+
), Rt(() => {
|
|
4003
|
+
m.defaultRadioCol && Vt(m.defaultRadioCol), Xn(), m.useVirtual && (i.value = m.table.data, l(), o.value?.addEventListener("scroll", Tt));
|
|
4004
|
+
});
|
|
4005
|
+
const fn = (s) => {
|
|
4006
|
+
let y = 0, j = 0;
|
|
4007
|
+
for (let Z = 0; Z < i.value.length; Z++)
|
|
4008
|
+
if (j += u(Z), j >= s) {
|
|
4009
|
+
y = Z;
|
|
4010
|
+
break;
|
|
4011
|
+
}
|
|
4012
|
+
w.tableData = i.value.slice(y, y + m.virtualShowSize), r(y), a(j - u(y));
|
|
4013
|
+
}, Tt = (s) => {
|
|
4014
|
+
fn(s.target.scrollTop);
|
|
4015
|
+
};
|
|
4016
|
+
Ir(() => {
|
|
4017
|
+
m.useVirtual && o.value?.removeEventListener("scroll", Tt);
|
|
4018
|
+
}), Nr(() => {
|
|
4019
|
+
f.value.doLayout();
|
|
4020
|
+
});
|
|
4021
|
+
const Vt = (s) => {
|
|
4022
|
+
P.value = s, de("radioChange", w.tableData[s - 1], P.value);
|
|
4023
|
+
}, Xn = () => {
|
|
4024
|
+
if (!m.isRowSort) return;
|
|
4025
|
+
const s = se.value?.querySelector(".el-table__body-wrapper tbody"), y = m.isRowSortIcon ? ".row_drag" : ".el-table__row";
|
|
4026
|
+
R.create(s, {
|
|
4027
|
+
animation: 150,
|
|
4028
|
+
// 动画
|
|
4029
|
+
handle: y,
|
|
4030
|
+
// 指定拖拽目标,点击此目标才可拖拽元素(此例中设置操作按钮拖拽)
|
|
4031
|
+
// filter: '.disabled', // 指定不可拖动的类名(el-table中可通过row-class-name设置行的class)
|
|
4032
|
+
// dragClass: 'dragClass', // 设置拖拽样式类名
|
|
4033
|
+
// ghostClass: 'ghostClass', // 设置拖拽停靠样式类名
|
|
4034
|
+
// chosenClass: 'chosenClass', // 设置选中样式类名
|
|
4035
|
+
onEnd: (j) => {
|
|
4036
|
+
const Z = w.tableData.splice(j.oldIndex, 1)[0];
|
|
4037
|
+
w.tableData.splice(j.newIndex, 0, Z), de("rowSort", w.tableData, j.oldIndex, j.newIndex);
|
|
4038
|
+
}
|
|
4039
|
+
});
|
|
4040
|
+
}, dr = (s, y) => {
|
|
4041
|
+
const j = { ...m.table, pageNo: s, pageSize: y };
|
|
4042
|
+
de("update:paginationData", j), de("page-size-change", { pageNo: s, pageSize: y });
|
|
4043
|
+
}, fr = (s, y, j, Z) => {
|
|
4044
|
+
const ve = y.find((we) => we[j] === s);
|
|
4045
|
+
return ve && ve[Z];
|
|
4046
|
+
}, pr = x(() => Array.isArray(m.table.firstColumn) ? m.table.firstColumn.some((s) => s.type === "radio") : m.table.firstColumn && m.table.firstColumn.type === "radio"), ut = x(() => m.table.rules && Object.keys(m.table.rules).length > 0 || m.columns.some((s) => s?.configEdit?.rules)), Je = x(() => {
|
|
4047
|
+
if (w.columnSet.length === 0)
|
|
4048
|
+
return m.columns;
|
|
4049
|
+
const s = m.columns.reduce((y, j) => (y[j.prop] = j, y), {});
|
|
4050
|
+
return w.columnSet.filter((y) => !y.hidden).map((y) => s[y.prop]);
|
|
4051
|
+
}), Wn = x(() => Je.value.some((s) => s.children)), hr = x(() => m.columns.some((s) => s.children)), gr = (s, y, j) => {
|
|
4052
|
+
if (!m.isKeyup) return;
|
|
4053
|
+
const Z = JSON.parse(JSON.stringify(w.tableData)), ve = document.getElementsByClassName(j), we = (Ie) => {
|
|
4054
|
+
const Ee = ve[Ie]?.getElementsByTagName("input")[0] || ve[Ie]?.getElementsByTagName("textarea")[0];
|
|
4055
|
+
Ee && Ee.focus();
|
|
4056
|
+
};
|
|
4057
|
+
switch (s.keyCode) {
|
|
4058
|
+
case 38:
|
|
4059
|
+
y || (y = Z.length), we(y - 1);
|
|
4060
|
+
break;
|
|
4061
|
+
case 40:
|
|
4062
|
+
y === Z.length - 1 && (y = -1), we(y + 1);
|
|
4063
|
+
break;
|
|
4064
|
+
case 13:
|
|
4065
|
+
let Ie = m.columns.map((Re) => Re.prop), Ee = Ie.indexOf(j);
|
|
4066
|
+
Ee === -1 ? Ee = 0 : Ee === Ie.length - 1 ? y === w.copyTableData.length - 1 ? y = 0 : ++y : ++Ee;
|
|
4067
|
+
let Ve = document.getElementsByClassName(Ie[Ee]);
|
|
4068
|
+
Ve.length && (Ve[y].getElementsByTagName("input")[0] || Ve[y].getElementsByTagName("textarea")[0]).focus();
|
|
4069
|
+
break;
|
|
4070
|
+
}
|
|
4071
|
+
}, mr = () => {
|
|
4072
|
+
K.value = !1, setTimeout(() => {
|
|
4073
|
+
K.value = !0;
|
|
4074
|
+
}, 0);
|
|
4075
|
+
}, qn = (s, y) => {
|
|
4076
|
+
K.value = !K.value, P.value === y ? P.value = null : P.value = y, mr(), de("radioChange", P.value ? s : null, P.value);
|
|
4077
|
+
}, Jn = (s, y) => {
|
|
4078
|
+
s?.isRadioDisabled || m.rowClickRadio || qn(s, y);
|
|
4079
|
+
}, br = (s) => {
|
|
4080
|
+
s.isRadioDisabled || m.rowClickRadio && qn(s, w.tableData.indexOf(s) + 1);
|
|
4081
|
+
}, yr = () => {
|
|
4082
|
+
P.value = null, f.value.setCurrentRow(-1);
|
|
4083
|
+
}, vr = async (s) => {
|
|
4084
|
+
if (typeof s != "string" || s.trim() === "")
|
|
4085
|
+
throw new Error("无效的复制内容");
|
|
4086
|
+
try {
|
|
4087
|
+
await navigator.clipboard.writeText(s);
|
|
4088
|
+
} catch (y) {
|
|
4089
|
+
throw y.name === "NotAllowedError" || y.name === "SecurityError" ? new Error("复制失败:权限被拒绝") : new Error("复制失败:浏览器不支持或发生未知错误");
|
|
4090
|
+
}
|
|
4091
|
+
}, Zn = (s, y) => {
|
|
4092
|
+
s === "success" ? po.success(y) : po.error(y);
|
|
4093
|
+
}, wr = async (s, y) => {
|
|
4094
|
+
if (!m.isCopy)
|
|
4095
|
+
return !1;
|
|
4096
|
+
const j = s[y.property];
|
|
4097
|
+
try {
|
|
4098
|
+
await vr(String(j)), Zn("success", "复制成功");
|
|
4099
|
+
} catch (Z) {
|
|
4100
|
+
Zn("error", Z.message || "复制失败");
|
|
4101
|
+
}
|
|
4102
|
+
}, Ht = (s) => Object.keys(Ye).includes(s), Qn = () => new Promise((s) => {
|
|
4103
|
+
if (!ut.value) {
|
|
4104
|
+
de("save", w.tableData), s(w.tableData);
|
|
4105
|
+
return;
|
|
4106
|
+
}
|
|
4107
|
+
let y = 0, j = [], Z = [], ve = [], we = [];
|
|
4108
|
+
const Ie = Object.keys(Q.value).filter((c) => c.includes("formRef")), Ee = Je.value.filter((c) => {
|
|
4109
|
+
if (c.configEdit?.rules)
|
|
4110
|
+
return c;
|
|
4111
|
+
}).map((c) => c.prop), Ve = (m.table.rules && Object.keys(m.table.rules)) ?? [], Re = [...Ee, ...Ve];
|
|
4112
|
+
Re.map((c) => {
|
|
4113
|
+
Ie.map((H) => {
|
|
4114
|
+
typeof H == "string" && H.includes(c) && j.push(H);
|
|
4115
|
+
});
|
|
4116
|
+
}), j.map((c) => {
|
|
4117
|
+
Q.value[c].validate((H) => {
|
|
4118
|
+
H ? y = y + 1 : Z.push(c);
|
|
4119
|
+
});
|
|
4120
|
+
}), setTimeout(() => {
|
|
4121
|
+
y == j.length ? ut.value && (de("save", w.tableData), s(w.tableData)) : (Z.map((c) => {
|
|
4122
|
+
Re.map((H) => {
|
|
4123
|
+
typeof c == "string" && c.includes(H) && ve.push(H);
|
|
4124
|
+
});
|
|
4125
|
+
}), Array.from(new Set(ve)).map((c) => {
|
|
4126
|
+
Je.value.map((H) => {
|
|
4127
|
+
c === H.prop && we.push(H.label);
|
|
4128
|
+
});
|
|
4129
|
+
}), console.log("校验未通过的prop--label", we), de("validateError", we));
|
|
4130
|
+
}, 300);
|
|
4131
|
+
}), Er = ({ type: s, val: y }, j) => {
|
|
4132
|
+
de("handleEvent", s, y, j);
|
|
4133
|
+
}, Sr = (s) => {
|
|
4134
|
+
de("page-change", s);
|
|
4135
|
+
};
|
|
4136
|
+
return t({
|
|
4137
|
+
defaultRadioSelect: Vt,
|
|
4138
|
+
clearSelection: g,
|
|
4139
|
+
getSelectionRows: d,
|
|
4140
|
+
toggleRowSelection: S,
|
|
4141
|
+
toggleAllSelection: D,
|
|
4142
|
+
toggleRowExpansion: b,
|
|
4143
|
+
setCurrentRow: p,
|
|
4144
|
+
clearSort: L,
|
|
4145
|
+
clearFilter: _,
|
|
4146
|
+
doLayout: $,
|
|
4147
|
+
sort: v,
|
|
4148
|
+
scrollTo: T,
|
|
4149
|
+
setScrollTop: N,
|
|
4150
|
+
setScrollLeft: G,
|
|
4151
|
+
state: w,
|
|
4152
|
+
radioVal: P,
|
|
4153
|
+
clearValidate: () => {
|
|
4154
|
+
const s = Object.keys(Q.value).filter((y) => y.includes("formRef"));
|
|
4155
|
+
s.length > 0 && s.map((y) => {
|
|
4156
|
+
Q.value[y].clearValidate();
|
|
4157
|
+
});
|
|
4158
|
+
},
|
|
4159
|
+
resetFields: () => {
|
|
4160
|
+
const s = Object.keys(Q.value).filter((j) => j.includes("formRef"));
|
|
4161
|
+
s.length > 0 && s.map((j) => {
|
|
4162
|
+
Q.value[j].resetFields();
|
|
4163
|
+
});
|
|
4164
|
+
const y = Object.keys(ye.value).filter(
|
|
4165
|
+
(j) => j.includes("singleEditRef")
|
|
4166
|
+
);
|
|
4167
|
+
y.length > 0 && y.map((j) => {
|
|
4168
|
+
ye.value[j].resetTselectTableFields();
|
|
4169
|
+
});
|
|
4170
|
+
},
|
|
4171
|
+
save: Qn,
|
|
4172
|
+
saveMethod: (s) => {
|
|
4173
|
+
if (!ut.value) {
|
|
4174
|
+
s && s(w.tableData);
|
|
4175
|
+
return;
|
|
4176
|
+
}
|
|
4177
|
+
let y = 0, j = [], Z = [], ve = [], we = [];
|
|
4178
|
+
const Ie = Object.keys(Q.value).filter((c) => c.includes("formRef")), Ee = Je.value.filter((c) => {
|
|
4179
|
+
if (c.configEdit?.rules)
|
|
4180
|
+
return c;
|
|
4181
|
+
}).map((c) => c.prop), Ve = (m.table.rules && Object.keys(m.table.rules)) ?? [], Re = [...Ee, ...Ve];
|
|
4182
|
+
Re.map((c) => {
|
|
4183
|
+
Ie.map((H) => {
|
|
4184
|
+
H.includes(c) && j.push(H);
|
|
4185
|
+
});
|
|
4186
|
+
}), j.map((c) => {
|
|
4187
|
+
Q.value[c].validate((H) => {
|
|
4188
|
+
H ? y = y + 1 : Z.push(c);
|
|
4189
|
+
});
|
|
4190
|
+
}), setTimeout(() => {
|
|
4191
|
+
y == j.length ? ut.value && s && s(w.tableData) : (Z.map((c) => {
|
|
4192
|
+
Re.map((H) => {
|
|
4193
|
+
c.includes(H) && ve.push(H);
|
|
4194
|
+
});
|
|
4195
|
+
}), Array.from(new Set(ve)).map((c) => {
|
|
4196
|
+
Je.value.map((H) => {
|
|
4197
|
+
c === H.prop && we.push(H.label);
|
|
4198
|
+
});
|
|
4199
|
+
}), console.log("校验未通过的prop--label", we), de("validateError", we));
|
|
4200
|
+
}, 300);
|
|
4201
|
+
},
|
|
4202
|
+
reSetColumnSet: () => F.value?.reSetColumnSet(),
|
|
4203
|
+
clearRadioHandle: yr,
|
|
4204
|
+
resetTselectTable: () => {
|
|
4205
|
+
const s = Object.keys(ye.value).filter(
|
|
4206
|
+
(y) => y.includes("singleEditRef")
|
|
4207
|
+
);
|
|
4208
|
+
s.length > 0 && s.map((y) => {
|
|
4209
|
+
ye.value[y].resetTselectTableFields();
|
|
4210
|
+
});
|
|
4211
|
+
}
|
|
4212
|
+
}), (s, y) => {
|
|
4213
|
+
const j = ne("el-icon"), Z = ne("el-table-column"), ve = ne("el-radio"), we = ne("el-form"), Ie = ne("el-table"), Ee = ne("el-pagination"), Ve = ne("el-button"), Re = xr("loading");
|
|
4214
|
+
return An((h(), C("div", {
|
|
4215
|
+
class: "gy-table",
|
|
4216
|
+
ref_key: "GyTableBox",
|
|
4217
|
+
ref: se,
|
|
4218
|
+
"element-loading-text": s.loadingTxt
|
|
4219
|
+
}, [
|
|
4220
|
+
ie("div", {
|
|
4221
|
+
class: "header_wrap",
|
|
4222
|
+
style: ot({
|
|
4223
|
+
paddingBottom: s.tableTitle || s.title || Ht("title") || Ht("toolbar") || s.isSlotToolbar || s.columnSetting ? "10px" : 0
|
|
4224
|
+
})
|
|
4225
|
+
}, [
|
|
4226
|
+
s.tableTitle || s.title || s.$slots.title || s.isSlotTitle ? (h(), C("div", ms, [
|
|
4227
|
+
s.$slots.title || s.isSlotTitle ? W(s.$slots, "title", { key: 0 }) : (h(), C(ee, { key: 1 }, [
|
|
4228
|
+
s.tableTitle ? (h(), C("span", bs, q(s.tableTitle), 1)) : (h(), C("span", ys, q(s.title), 1))
|
|
4229
|
+
], 64))
|
|
4230
|
+
])) : k("", !0),
|
|
4231
|
+
ie("div", vs, [
|
|
4232
|
+
W(s.$slots, "toolbar"),
|
|
4233
|
+
ie("div", {
|
|
4234
|
+
class: "header_right_wrap",
|
|
4235
|
+
style: ot({
|
|
4236
|
+
marginLeft: Ht("toolbar") || s.isSlotToolbar ? "12px" : 0
|
|
4237
|
+
})
|
|
4238
|
+
}, [
|
|
4239
|
+
W(s.$slots, "btn"),
|
|
4240
|
+
s.columnSetting && !Wn.value ? (h(), A(is, z({ key: 0 }, s.$attrs, {
|
|
4241
|
+
title: s.title || s.tableTitle,
|
|
4242
|
+
columns: Je.value,
|
|
4243
|
+
ref_key: "columnSetRef",
|
|
4244
|
+
ref: F,
|
|
4245
|
+
onColumnSetting: y[0] || (y[0] = (c) => O(w).columnSet = c)
|
|
4246
|
+
}), null, 16, ["title", "columns"])) : k("", !0)
|
|
4247
|
+
], 4)
|
|
4248
|
+
])
|
|
4249
|
+
], 4),
|
|
4250
|
+
Ht("titleTip") ? (h(), C("div", ws, [
|
|
4251
|
+
W(s.$slots, "titleTip")
|
|
4252
|
+
])) : k("", !0),
|
|
4253
|
+
le(Ie, z({
|
|
4254
|
+
ref_key: "GyTable",
|
|
4255
|
+
ref: f,
|
|
4256
|
+
data: O(w).tableData,
|
|
4257
|
+
class: {
|
|
4258
|
+
cursor: s.isCopy,
|
|
4259
|
+
row_sort: s.isRowSort,
|
|
4260
|
+
row_sort_none: s.isRowSortIcon,
|
|
4261
|
+
tree_style: s.isTree,
|
|
4262
|
+
highlightCurrentRow: s.highlightCurrentRow,
|
|
4263
|
+
radioStyle: pr.value,
|
|
4264
|
+
multile_head_column: Wn.value,
|
|
4265
|
+
t_table_use_virtual: s.useVirtual
|
|
4266
|
+
}
|
|
4267
|
+
}, s.$attrs, {
|
|
4268
|
+
"highlight-current-row": s.highlightCurrentRow,
|
|
4269
|
+
border: s.border || s.table.border || hr.value || s.useVirtual,
|
|
4270
|
+
onCellDblclick: wr,
|
|
4271
|
+
onRowClick: br
|
|
4272
|
+
}), _e({
|
|
4273
|
+
default: I(() => [
|
|
4274
|
+
s.isRowSortIcon ? (h(), A(Z, We(z({ key: 0 }, {
|
|
4275
|
+
width: s.rowSortIconBind.width || 55,
|
|
4276
|
+
"min-width": s.rowSortIconBind["min-width"] || s.rowSortIconBind.minWidth,
|
|
4277
|
+
label: s.rowSortIconBind.label || "拖动",
|
|
4278
|
+
fixed: s.rowSortIconBind.fixed,
|
|
4279
|
+
align: s.rowSortIconBind.align || s.align,
|
|
4280
|
+
...s.rowSortIconBind
|
|
4281
|
+
})), {
|
|
4282
|
+
default: I(() => [
|
|
4283
|
+
le(j, {
|
|
4284
|
+
class: "row_drag",
|
|
4285
|
+
color: s.rowSortIconBind.color,
|
|
4286
|
+
size: s.rowSortIconBind.size
|
|
4287
|
+
}, {
|
|
4288
|
+
default: I(() => [
|
|
4289
|
+
le(O(Xr))
|
|
4290
|
+
]),
|
|
4291
|
+
_: 1
|
|
4292
|
+
}, 8, ["color", "size"])
|
|
4293
|
+
]),
|
|
4294
|
+
_: 1
|
|
4295
|
+
}, 16)) : k("", !0),
|
|
4296
|
+
!Array.isArray(s.table.firstColumn) && s.table.firstColumn ? (h(), C(ee, { key: 1 }, [
|
|
4297
|
+
s.table.firstColumn.type === "selection" ? (h(), A(Z, We(z({ key: 0 }, {
|
|
4298
|
+
type: "selection",
|
|
4299
|
+
width: s.table.firstColumn.width || 55,
|
|
4300
|
+
label: s.table.firstColumn.label,
|
|
4301
|
+
fixed: s.table.firstColumn.fixed,
|
|
4302
|
+
align: s.table.firstColumn.align || s.align,
|
|
4303
|
+
"reserve-selection": s.table.firstColumn.isPaging || !1,
|
|
4304
|
+
selectable: s.table.firstColumn.selectable,
|
|
4305
|
+
...s.table.firstColumn.bind
|
|
4306
|
+
})), null, 16)) : (h(), A(Z, We(z({ key: 1 }, {
|
|
4307
|
+
type: s.table.firstColumn.type,
|
|
4308
|
+
width: s.table.firstColumn.width || 55,
|
|
4309
|
+
label: s.table.firstColumn.label || s.table.firstColumn.type === "radio" && "单选" || s.table.firstColumn.type === "index" && "序号" || s.table.firstColumn.type === "expand" && "" || "",
|
|
4310
|
+
fixed: s.table.firstColumn.fixed,
|
|
4311
|
+
align: s.table.firstColumn.align || s.align,
|
|
4312
|
+
...s.table.firstColumn.bind
|
|
4313
|
+
})), _e({ _: 2 }, [
|
|
4314
|
+
s.table.firstColumn.type !== "selection" ? {
|
|
4315
|
+
name: "default",
|
|
4316
|
+
fn: I((c) => [
|
|
4317
|
+
s.table.firstColumn.type === "radio" ? (h(), A(ve, {
|
|
4318
|
+
key: 0,
|
|
4319
|
+
modelValue: P.value,
|
|
4320
|
+
"onUpdate:modelValue": y[1] || (y[1] = (H) => P.value = H),
|
|
4321
|
+
label: c.$index + 1,
|
|
4322
|
+
disabled: c.row.isRadioDisabled,
|
|
4323
|
+
onClick: (H) => Jn(c.row, c.$index + 1)
|
|
4324
|
+
}, null, 8, ["modelValue", "label", "disabled", "onClick"])) : k("", !0),
|
|
4325
|
+
s.table.firstColumn.type === "index" ? (h(), C(ee, { key: 1 }, [
|
|
4326
|
+
s.isPaginationCumulative && s.isShowPagination ? (h(), C("span", Es, q((s.paginationData.currentPage - 1) * s.paginationData.pageSize + c.$index + 1), 1)) : (h(), C("span", Ss, q(c.$index + 1), 1))
|
|
4327
|
+
], 64)) : k("", !0),
|
|
4328
|
+
s.table.firstColumn.type === "expand" ? W(s.$slots, "expand", {
|
|
4329
|
+
key: 2,
|
|
4330
|
+
scope: c
|
|
4331
|
+
}) : k("", !0)
|
|
4332
|
+
]),
|
|
4333
|
+
key: "0"
|
|
4334
|
+
} : void 0
|
|
4335
|
+
]), 1040))
|
|
4336
|
+
], 64)) : k("", !0),
|
|
4337
|
+
Array.isArray(s.table.firstColumn) ? (h(!0), C(ee, { key: 2 }, Te(s.table.firstColumn, (c, H) => (h(), C(ee, null, [
|
|
4338
|
+
c.type === "selection" ? (h(), A(Z, z({
|
|
4339
|
+
key: H + 1
|
|
4340
|
+
}, { ref_for: !0 }, {
|
|
4341
|
+
type: "selection",
|
|
4342
|
+
width: c.width || 55,
|
|
4343
|
+
label: c.label,
|
|
4344
|
+
fixed: c.fixed,
|
|
4345
|
+
align: c.align || s.align,
|
|
4346
|
+
"reserve-selection": c.isPaging || !1,
|
|
4347
|
+
selectable: c.selectable,
|
|
4348
|
+
...c.bind
|
|
4349
|
+
}), null, 16)) : (h(), A(Z, z({
|
|
4350
|
+
key: H + "k"
|
|
4351
|
+
}, { ref_for: !0 }, {
|
|
4352
|
+
type: c.type,
|
|
4353
|
+
width: c.width || 55,
|
|
4354
|
+
label: c.label || c.type === "radio" && "单选" || c.type === "index" && "序号" || c.type === "expand" && "" || "",
|
|
4355
|
+
fixed: c.fixed,
|
|
4356
|
+
align: c.align || s.align,
|
|
4357
|
+
...c.bind
|
|
4358
|
+
}), _e({ _: 2 }, [
|
|
4359
|
+
c.type !== "selection" ? {
|
|
4360
|
+
name: "default",
|
|
4361
|
+
fn: I((J) => [
|
|
4362
|
+
c.type === "radio" ? (h(), A(ve, {
|
|
4363
|
+
key: 0,
|
|
4364
|
+
modelValue: P.value,
|
|
4365
|
+
"onUpdate:modelValue": y[2] || (y[2] = (fe) => P.value = fe),
|
|
4366
|
+
label: J.$index + 1,
|
|
4367
|
+
disabled: J.row.isRadioDisabled,
|
|
4368
|
+
onClick: (fe) => Jn(J.row, J.$index + 1)
|
|
4369
|
+
}, null, 8, ["modelValue", "label", "disabled", "onClick"])) : k("", !0),
|
|
4370
|
+
c.type === "index" ? (h(), C(ee, { key: 1 }, [
|
|
4371
|
+
s.isPaginationCumulative && s.isShowPagination ? (h(), C("span", Cs, q((s.table.currentPage - 1) * s.table.pageSize + J.$index + 1), 1)) : (h(), C("span", Ts, q(J.$index + 1), 1))
|
|
4372
|
+
], 64)) : k("", !0),
|
|
4373
|
+
c.type === "expand" ? W(s.$slots, "expand", {
|
|
4374
|
+
key: 2,
|
|
4375
|
+
scope: J
|
|
4376
|
+
}) : k("", !0)
|
|
4377
|
+
]),
|
|
4378
|
+
key: "0"
|
|
4379
|
+
} : void 0
|
|
4380
|
+
]), 1040))
|
|
4381
|
+
], 64))), 256)) : k("", !0),
|
|
4382
|
+
(h(!0), C(ee, null, Te(Je.value, (c, H) => (h(), C(ee, null, [
|
|
4383
|
+
c.children ? (h(), A(Zi, z({
|
|
4384
|
+
key: H + "m",
|
|
4385
|
+
item: c,
|
|
4386
|
+
align: s.align
|
|
4387
|
+
}, { ref_for: !0 }, s.$attrs, { sortable: s.sortable }), _e({ _: 2 }, [
|
|
4388
|
+
Te(O(Ye), (J, fe) => ({
|
|
4389
|
+
name: fe,
|
|
4390
|
+
fn: I((Ze) => [
|
|
4391
|
+
W(s.$slots, fe, z({ ref_for: !0 }, Ze))
|
|
4392
|
+
])
|
|
4393
|
+
}))
|
|
4394
|
+
]), 1040, ["item", "align", "sortable"])) : (h(), C(ee, { key: 0 }, [
|
|
4395
|
+
(typeof c.isShowCol == "function" ? c.isShowCol(c) : !c.isShowCol) ? (h(), A(Z, z(
|
|
4396
|
+
{
|
|
4397
|
+
key: H + "i",
|
|
4398
|
+
type: c.type,
|
|
4399
|
+
label: c.label,
|
|
4400
|
+
prop: c.prop,
|
|
4401
|
+
"min-width": c["min-width"] || c.minWidth,
|
|
4402
|
+
width: c.width,
|
|
4403
|
+
sortable: c.sortable || c.sort || s.sortable,
|
|
4404
|
+
align: c.align || s.align,
|
|
4405
|
+
fixed: c.fixed,
|
|
4406
|
+
formatter: c.formatter
|
|
4407
|
+
},
|
|
4408
|
+
{ ref_for: !0 },
|
|
4409
|
+
typeof c.bind == "function" ? c.bind(c) : { "show-overflow-tooltip": !0, ...c.bind }
|
|
4410
|
+
), _e({
|
|
4411
|
+
default: I((J) => [
|
|
4412
|
+
c.render ? (h(), A(sn, {
|
|
4413
|
+
key: 0,
|
|
4414
|
+
column: c,
|
|
4415
|
+
row: J.row,
|
|
4416
|
+
render: c.render,
|
|
4417
|
+
index: J.$index
|
|
4418
|
+
}, null, 8, ["column", "row", "render", "index"])) : k("", !0),
|
|
4419
|
+
c.slotName ? W(s.$slots, c.slotName, {
|
|
4420
|
+
key: 1,
|
|
4421
|
+
scope: J
|
|
4422
|
+
}) : k("", !0),
|
|
4423
|
+
c.canEdit ? (h(), A(we, {
|
|
4424
|
+
key: 2,
|
|
4425
|
+
model: O(w).tableData[J.$index],
|
|
4426
|
+
rules: ut.value ? s.table.rules : {},
|
|
4427
|
+
class: xe(["t_edit_cell_form", {
|
|
4428
|
+
t_edit_cell_form_rules: ut.value
|
|
4429
|
+
}]),
|
|
4430
|
+
ref_for: !0,
|
|
4431
|
+
ref: (fe) => ze(fe, J, c),
|
|
4432
|
+
disabled: s.isDisabledForm,
|
|
4433
|
+
onSubmit: y[3] || (y[3] = _o(() => {
|
|
4434
|
+
}, ["prevent"]))
|
|
4435
|
+
}, {
|
|
4436
|
+
default: I(() => [
|
|
4437
|
+
le(cr, z({
|
|
4438
|
+
configEdit: c.configEdit,
|
|
4439
|
+
modelValue: J.row[c.prop],
|
|
4440
|
+
"onUpdate:modelValue": (fe) => J.row[c.prop] = fe,
|
|
4441
|
+
prop: c.prop,
|
|
4442
|
+
scope: J,
|
|
4443
|
+
indexColumns: H,
|
|
4444
|
+
ref_for: !0,
|
|
4445
|
+
ref: (fe) => st(fe, J, c),
|
|
4446
|
+
onHandleEvent: (fe) => Er(fe, J.$index),
|
|
4447
|
+
onKeyupHandle: gr
|
|
4448
|
+
}, { ref_for: !0 }, s.$attrs), _e({ _: 2 }, [
|
|
4449
|
+
Te(O(Ye), (fe, Ze) => ({
|
|
4450
|
+
name: Ze,
|
|
4451
|
+
fn: I((pn) => [
|
|
4452
|
+
W(s.$slots, Ze, z({ ref_for: !0 }, pn))
|
|
4453
|
+
])
|
|
4454
|
+
}))
|
|
4455
|
+
]), 1040, ["configEdit", "modelValue", "onUpdate:modelValue", "prop", "scope", "indexColumns", "onHandleEvent"])
|
|
4456
|
+
]),
|
|
4457
|
+
_: 2
|
|
4458
|
+
}, 1032, ["model", "rules", "class", "disabled"])) : k("", !0),
|
|
4459
|
+
c.isClickEdit ? (h(), A(as, z({
|
|
4460
|
+
key: 3,
|
|
4461
|
+
isClickEdit: c.isClickEdit,
|
|
4462
|
+
configEdit: c.configEdit,
|
|
4463
|
+
modelValue: J.row[J.column.property],
|
|
4464
|
+
"onUpdate:modelValue": (fe) => J.row[J.column.property] = fe
|
|
4465
|
+
}, { ref_for: !0 }, s.$attrs, {
|
|
4466
|
+
ref_for: !0,
|
|
4467
|
+
ref: "editClickCell"
|
|
4468
|
+
}), _e({ _: 2 }, [
|
|
4469
|
+
Te(O(Ye), (fe, Ze) => ({
|
|
4470
|
+
name: Ze,
|
|
4471
|
+
fn: I((pn) => [
|
|
4472
|
+
W(s.$slots, Ze, z({ ref_for: !0 }, pn))
|
|
4473
|
+
])
|
|
4474
|
+
}))
|
|
4475
|
+
]), 1040, ["isClickEdit", "configEdit", "modelValue", "onUpdate:modelValue"])) : k("", !0),
|
|
4476
|
+
c.filters && c.filters.list ? (h(), C(ee, { key: 4 }, [
|
|
4477
|
+
Ae(q(fr(
|
|
4478
|
+
J.row[c.prop],
|
|
4479
|
+
s.table.listTypeInfo[c.filters.list],
|
|
4480
|
+
c.filters.key || "value",
|
|
4481
|
+
c.filters.label || "label"
|
|
4482
|
+
)), 1)
|
|
4483
|
+
], 64)) : k("", !0),
|
|
4484
|
+
!c.render && !c.slotName && !c.canEdit && !c.filters && !c.isClickEdit && !c.formatter ? (h(), C("div", ks, [
|
|
4485
|
+
ie("span", null, q(J.row[c.prop]), 1)
|
|
4486
|
+
])) : k("", !0)
|
|
4487
|
+
]),
|
|
4488
|
+
_: 2
|
|
4489
|
+
}, [
|
|
4490
|
+
c.headerRequired || c.renderHeader || c.isClickEdit ? {
|
|
4491
|
+
name: "header",
|
|
4492
|
+
fn: I(() => [
|
|
4493
|
+
c.renderHeader ? (h(), A($n, {
|
|
4494
|
+
key: 0,
|
|
4495
|
+
column: c,
|
|
4496
|
+
render: c.renderHeader
|
|
4497
|
+
}, null, 8, ["column", "render"])) : k("", !0),
|
|
4498
|
+
c.headerRequired && V.value ? (h(), C("div", Ds, [
|
|
4499
|
+
y[6] || (y[6] = ie("span", { style: { color: "#f56c6c", "font-size": "16px", "margin-right": "3px" } }, "*", -1)),
|
|
4500
|
+
ie("span", null, q(c.label), 1)
|
|
4501
|
+
])) : k("", !0),
|
|
4502
|
+
c.isClickEdit ? (h(), C("div", {
|
|
4503
|
+
key: 2,
|
|
4504
|
+
class: "click_edit",
|
|
4505
|
+
style: ot({ justifyContent: c.editIconAlign || s.align || "center" })
|
|
4506
|
+
}, [
|
|
4507
|
+
ie("span", null, q(c.label), 1),
|
|
4508
|
+
c.isShowEditIcon ? k("", !0) : (h(), A(j, z({
|
|
4509
|
+
key: 0,
|
|
4510
|
+
ref_for: !0
|
|
4511
|
+
}, { size: 14, ...c.editIconBind }), {
|
|
4512
|
+
default: I(() => [
|
|
4513
|
+
le(O(Ur))
|
|
4514
|
+
]),
|
|
4515
|
+
_: 1
|
|
4516
|
+
}, 16))
|
|
4517
|
+
], 4)) : k("", !0)
|
|
4518
|
+
]),
|
|
4519
|
+
key: "0"
|
|
4520
|
+
} : void 0
|
|
4521
|
+
]), 1040, ["type", "label", "prop", "min-width", "width", "sortable", "align", "fixed", "formatter"])) : k("", !0)
|
|
4522
|
+
], 64))
|
|
4523
|
+
], 64))), 256)),
|
|
4524
|
+
W(s.$slots, "default"),
|
|
4525
|
+
le(ds, {
|
|
4526
|
+
table: s.table,
|
|
4527
|
+
btnPermissions: s.btnPermissions,
|
|
4528
|
+
tableData: O(w).tableData,
|
|
4529
|
+
align: s.align
|
|
4530
|
+
}, null, 8, ["table", "btnPermissions", "tableData", "align"])
|
|
4531
|
+
]),
|
|
4532
|
+
_: 2
|
|
4533
|
+
}, [
|
|
4534
|
+
Te(O(Ye), (c, H) => ({
|
|
4535
|
+
name: H,
|
|
4536
|
+
fn: I((J) => [
|
|
4537
|
+
W(s.$slots, H, We(Lt(J)))
|
|
4538
|
+
])
|
|
4539
|
+
}))
|
|
4540
|
+
]), 1040, ["data", "class", "highlight-current-row", "border"]),
|
|
4541
|
+
O(w).tableData && O(w).tableData.length && s.isShowPagination ? (h(), A(Ee, z({
|
|
4542
|
+
key: 1,
|
|
4543
|
+
"current-page": s.paginationData.pageNo,
|
|
4544
|
+
"onUpdate:currentPage": y[4] || (y[4] = (c) => s.paginationData.pageNo = c),
|
|
4545
|
+
onCurrentChange: Sr,
|
|
4546
|
+
onChange: dr,
|
|
4547
|
+
"page-sizes": s.table.pageSizes || [10, 20, 50, 100],
|
|
4548
|
+
"page-size": s.paginationData.pageSize,
|
|
4549
|
+
"onUpdate:pageSize": y[5] || (y[5] = (c) => s.paginationData.pageSize = c),
|
|
4550
|
+
layout: s.table.layout || "total,sizes, prev, pager, next, jumper",
|
|
4551
|
+
"prev-text": s.table.prevText,
|
|
4552
|
+
"next-text": s.table.nextText,
|
|
4553
|
+
total: s.paginationData.total || 0,
|
|
4554
|
+
size: s.table.size || "small"
|
|
4555
|
+
}, s.$attrs, { background: "" }), {
|
|
4556
|
+
default: I(() => [
|
|
4557
|
+
W(s.$slots, "pagination")
|
|
4558
|
+
]),
|
|
4559
|
+
_: 3
|
|
4560
|
+
}, 16, ["current-page", "page-sizes", "page-size", "layout", "prev-text", "next-text", "total", "size"])) : k("", !0),
|
|
4561
|
+
s.isShowFooterBtn && O(w).tableData && O(w).tableData.length > 0 ? (h(), C("footer", {
|
|
4562
|
+
key: 2,
|
|
4563
|
+
class: "handle_wrap",
|
|
4564
|
+
style: ot({ textAlign: s.footerBtnAlign })
|
|
4565
|
+
}, [
|
|
4566
|
+
W(s.$slots, "footer"),
|
|
4567
|
+
O(Ye).footer ? k("", !0) : (h(), C("div", _s, [
|
|
4568
|
+
le(Ve, {
|
|
4569
|
+
type: "primary",
|
|
4570
|
+
onClick: Qn
|
|
4571
|
+
}, {
|
|
4572
|
+
default: I(() => [
|
|
4573
|
+
Ae(q(s.saveBtnTxt), 1)
|
|
4574
|
+
]),
|
|
4575
|
+
_: 1
|
|
4576
|
+
})
|
|
4577
|
+
]))
|
|
4578
|
+
], 4)) : k("", !0)
|
|
4579
|
+
], 8, gs)), [
|
|
4580
|
+
[Re, s.tableLoading]
|
|
4581
|
+
]);
|
|
4582
|
+
};
|
|
4583
|
+
}
|
|
4584
|
+
}), Is = Os, Ns = {
|
|
4585
|
+
key: 0,
|
|
4586
|
+
class: "back_to_top"
|
|
4587
|
+
}, xs = /* @__PURE__ */ re({
|
|
4588
|
+
name: "GyLayoutPage",
|
|
4589
|
+
__name: "index",
|
|
4590
|
+
props: {
|
|
4591
|
+
keepScrollDisabled: { type: Boolean, default: !1 },
|
|
4592
|
+
isNoMargin: { type: Boolean, default: !1 },
|
|
4593
|
+
showGoTopButton: { type: Boolean, default: !0 },
|
|
4594
|
+
scrollToTop: { default: 100 }
|
|
4595
|
+
},
|
|
4596
|
+
setup(e) {
|
|
4597
|
+
const t = e, n = U(!1), o = U(null), r = U(0);
|
|
4598
|
+
Me(
|
|
4599
|
+
() => r.value,
|
|
4600
|
+
(l) => {
|
|
4601
|
+
l > t.scrollToTop ? n.value = !0 : n.value = !1;
|
|
4602
|
+
}
|
|
4603
|
+
);
|
|
4604
|
+
const a = () => {
|
|
4605
|
+
r.value = 0, o.value.scrollTo({
|
|
4606
|
+
top: 0,
|
|
4607
|
+
behavior: "smooth"
|
|
4608
|
+
});
|
|
4609
|
+
};
|
|
4610
|
+
return Rt(() => {
|
|
4611
|
+
const l = o.value.querySelectorAll(".gy_layout_page_item");
|
|
4612
|
+
l.length === 2 && (l[0].style.marginBottom = "8px"), l.length > 2 && (l.forEach((i) => {
|
|
4613
|
+
i.style.marginBottom = "8px";
|
|
4614
|
+
}), l[l.length - 1].style.marginBottom = "0");
|
|
4615
|
+
}), Pr(() => {
|
|
4616
|
+
t.keepScrollDisabled || (o.value.scrollTop = r);
|
|
4617
|
+
}), (l, i) => {
|
|
4618
|
+
const u = ne("el-icon");
|
|
4619
|
+
return h(), C("div", {
|
|
4620
|
+
ref_key: "GyLayoutPageRef",
|
|
4621
|
+
ref: o,
|
|
4622
|
+
class: xe(["gy_layout_page", { layout_page_no_margin: e.isNoMargin }]),
|
|
4623
|
+
onScroll: i[0] || (i[0] = (f) => r.value = f.target.scrollTop)
|
|
4624
|
+
}, [
|
|
4625
|
+
W(l.$slots, "default"),
|
|
4626
|
+
e.showGoTopButton ? (h(), C("div", Ns, [
|
|
4627
|
+
n.value ? (h(), C("div", {
|
|
4628
|
+
key: 0,
|
|
4629
|
+
onClick: a
|
|
4630
|
+
}, [
|
|
4631
|
+
le(u, We(Lt({ size: 24, ...l.$attrs })), {
|
|
4632
|
+
default: I(() => [
|
|
4633
|
+
le(O(Mr))
|
|
4634
|
+
]),
|
|
4635
|
+
_: 1
|
|
4636
|
+
}, 16)
|
|
4637
|
+
])) : k("", !0)
|
|
4638
|
+
])) : k("", !0)
|
|
4639
|
+
], 34);
|
|
4640
|
+
};
|
|
4641
|
+
}
|
|
4642
|
+
}), Ps = xs, Co = {
|
|
4643
|
+
GyButton: Br,
|
|
4644
|
+
GyTable: Is,
|
|
4645
|
+
GyLayoutPage: Ps
|
|
4646
|
+
}, $s = (e) => {
|
|
4647
|
+
for (const t in Co)
|
|
4648
|
+
e.component(t, Co[t]);
|
|
4649
|
+
}, As = (e, t) => {
|
|
4650
|
+
$s(e);
|
|
4651
|
+
}, zs = {
|
|
4652
|
+
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
4653
|
+
install: As
|
|
4654
|
+
};
|
|
4655
|
+
export {
|
|
4656
|
+
Br as GyButton,
|
|
4657
|
+
Ps as GyLayoutPage,
|
|
4658
|
+
Is as GyTable,
|
|
4659
|
+
zs as default
|
|
4660
|
+
};
|