iking-web-ui-pro 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/IKDetailPreviewFiles/ik.index.es.js +517 -505
- package/dist/IKDetailPreviewFiles/ik.index.umd.js +1 -1
- package/dist/IKPreviewFile/ik.index.es.js +406 -394
- package/dist/IKPreviewFile/ik.index.umd.js +1 -1
- package/dist/IkApprovalProcessDetail/ik.index.es.js +682 -670
- package/dist/IkApprovalProcessDetail/ik.index.umd.js +1 -1
- package/dist/IkApprovalProcessDetail/style.css +1 -1
- package/dist/IkDescription/ik.index.es.js +414 -402
- package/dist/IkDescription/ik.index.umd.js +1 -1
- package/dist/IkPreviewFileDialog/ik.index.es.js +54 -51
- package/dist/IkPreviewFileDialog/ik.index.umd.js +1 -1
- package/dist/IkUploadFile/ik.index.es.js +866 -851
- package/dist/IkUploadFile/ik.index.umd.js +1 -1
- package/dist/IkUploadFile/style.css +1 -1
- package/dist/IkUploadImage/ik.index.es.js +284 -275
- package/dist/IkUploadImage/ik.index.umd.js +1 -1
- package/dist/IkUploadImage/style.css +1 -1
- package/dist/Provider/ik.index.es.js +1607 -0
- package/dist/Provider/ik.index.umd.js +17 -0
- package/dist/index.es.js +39054 -37445
- package/dist/index.umd.js +95 -79
- package/dist/src/components/IKDetailPreviewFiles/index.d.ts +1 -1
- package/dist/src/components/IKDetailPreviewFiles/src/IKDetailPreviewFiles.vue.d.ts +1 -1
- package/dist/src/components/IKPreviewFile/index.d.ts +3 -3
- package/dist/src/components/IKPreviewFile/src/IkPreviewFile.vue.d.ts +1 -1
- package/dist/src/components/IkApprovalProcess/index.d.ts +1 -1
- package/dist/src/components/IkApprovalProcess/src/IKApprovalProcess.vue.d.ts +1 -1
- package/dist/src/components/IkDescription/index.d.ts +3 -3
- package/dist/src/components/IkDescription/src/IkDescription.vue.d.ts +1 -1
- package/dist/src/components/IkPreviewFileDialog/index.d.ts +1 -1
- package/dist/src/components/IkPreviewFileDialog/src/IkPreviewFileDialog.vue.d.ts +1 -1
- package/dist/src/components/IkTinymce/index.d.ts +1 -1
- package/dist/src/components/IkTinymce/src/index.vue.d.ts +1 -1
- package/dist/src/components/IkUploadFile/index.d.ts +3 -3
- package/dist/src/components/IkUploadFile/src/index.vue.d.ts +1 -1
- package/dist/src/components/IkUploadImage/index.d.ts +3 -3
- package/dist/src/components/IkUploadImage/src/index.vue.d.ts +1 -1
- package/dist/src/components/Provider/ProviderConfig.vue.d.ts +57 -0
- package/dist/src/components/Provider/index.d.ts +120 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/utils/use-provider.d.ts +8 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,29 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { buildUUID as
|
|
3
|
-
const
|
|
1
|
+
import { inject as D, computed as m, defineComponent as F, mergeModels as W, useModel as G, ref as V, reactive as Y, watch as Z, nextTick as J, resolveComponent as E, openBlock as r, createElementBlock as u, Fragment as T, createBlock as R, createCommentVNode as C, createVNode as x, unref as g, withCtx as S, createElementVNode as c, normalizeClass as b, normalizeStyle as z, createTextVNode as P, toDisplayString as q, h as Q, mergeProps as e3, createSlots as t3, renderSlot as $, renderList as n3, withModifiers as o3 } from "vue";
|
|
2
|
+
import { buildUUID as i3, ikColor as s3, paramType as l3, ikFile as a3 } from "iking-utils-pro";
|
|
3
|
+
const O = (t, e) => {
|
|
4
4
|
if (t.install = (o) => {
|
|
5
|
-
for (const
|
|
6
|
-
o.component(
|
|
5
|
+
for (const s of [t, ...Object.values(e ?? {})])
|
|
6
|
+
o.component(s.name, s);
|
|
7
7
|
}, e)
|
|
8
|
-
for (const [o,
|
|
9
|
-
t[o] =
|
|
8
|
+
for (const [o, s] of Object.entries(e))
|
|
9
|
+
t[o] = s;
|
|
10
10
|
return t;
|
|
11
|
-
},
|
|
11
|
+
}, U = (t, e) => {
|
|
12
12
|
const o = t.__vccOpts || t;
|
|
13
|
-
for (const [
|
|
14
|
-
o[
|
|
13
|
+
for (const [s, n] of e)
|
|
14
|
+
o[s] = n;
|
|
15
15
|
return o;
|
|
16
|
-
},
|
|
16
|
+
}, c3 = (t, e = 2) => {
|
|
17
17
|
if (t === void 0)
|
|
18
18
|
return "";
|
|
19
19
|
if (t === 0)
|
|
20
20
|
return "0 B";
|
|
21
|
-
const o = ["B", "KB", "MB", "GB", "TB"],
|
|
22
|
-
let n = t / Math.pow(1024,
|
|
23
|
-
return (n % 1 === 0 ? n.toFixed(e || 0) : n.toFixed(e)) + " " + o[
|
|
24
|
-
},
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
const o = ["B", "KB", "MB", "GB", "TB"], s = Math.floor(Math.log(t) / Math.log(1024));
|
|
22
|
+
let n = t / Math.pow(1024, s);
|
|
23
|
+
return (n % 1 === 0 ? n.toFixed(e || 0) : n.toFixed(e)) + " " + o[s];
|
|
24
|
+
}, A = (t, e) => e ? e.startsWith("http") ? e : `${t || location.origin}${e}` : "", r3 = (t) => {
|
|
25
|
+
const e = D("loadUrl"), o = m(() => t.loadUrl || (e == null ? void 0 : e.value)), s = D("uploadUrl"), n = m(() => t.action || t.uploadUrl || (s == null ? void 0 : s.value)), i = D("token"), a = m(() => t.token || (i == null ? void 0 : i.value)), p = D("onlyofficeConfig"), v = m(() => t.onlyofficeConfig || (p == null ? void 0 : p.value)), l = D("userInfo"), h = m(() => t.userInfo || (l == null ? void 0 : l.value));
|
|
26
|
+
return {
|
|
27
|
+
cLoadUrl: o,
|
|
28
|
+
cUploadUrl: n,
|
|
29
|
+
cToken: a,
|
|
30
|
+
cOnlyofficeConfig: v,
|
|
31
|
+
cUserInfo: h
|
|
32
|
+
};
|
|
33
|
+
}, d3 = r3, K = (t, e) => {
|
|
34
|
+
var i, a, p, v;
|
|
35
|
+
const o = (i = t == null ? void 0 : t.response) != null && i.data ? L((p = (a = t == null ? void 0 : t.response) == null ? void 0 : a.data) == null ? void 0 : p.suffix) : ((v = t.raw) == null ? void 0 : v.type) || L(t[e.suffix]), s = o == null ? void 0 : o.toLowerCase(), n = {
|
|
27
36
|
sheet: "excel",
|
|
28
37
|
excel: "excel",
|
|
29
38
|
zip: "zip",
|
|
@@ -39,11 +48,11 @@ const I = (t, e) => {
|
|
|
39
48
|
exe: "exe",
|
|
40
49
|
json: "json"
|
|
41
50
|
};
|
|
42
|
-
for (let
|
|
43
|
-
if (typeof
|
|
44
|
-
return n[
|
|
51
|
+
for (let l in n)
|
|
52
|
+
if (typeof s == "string" && (s.includes(l) || s === l))
|
|
53
|
+
return n[l];
|
|
45
54
|
return "unknown";
|
|
46
|
-
},
|
|
55
|
+
}, u3 = {
|
|
47
56
|
".doc": "word",
|
|
48
57
|
".docx": "word",
|
|
49
58
|
".docxf": "word",
|
|
@@ -128,15 +137,15 @@ const I = (t, e) => {
|
|
|
128
137
|
".vob": "video",
|
|
129
138
|
".txt": "txt",
|
|
130
139
|
".pdf": "pdf"
|
|
131
|
-
},
|
|
140
|
+
}, L = (t) => {
|
|
132
141
|
const e = t == null ? void 0 : t.toLocaleLowerCase(), o = e != null && e.startsWith(".") ? e : `.${e}`;
|
|
133
|
-
return o &&
|
|
134
|
-
},
|
|
135
|
-
let e = "", o = ["doc", "docx"],
|
|
136
|
-
return o.includes(t) && (e = "word"),
|
|
137
|
-
},
|
|
142
|
+
return o && u3[o] || "unknow";
|
|
143
|
+
}, h3 = (t) => {
|
|
144
|
+
let e = "", o = ["doc", "docx"], s = ["xls", "xlsx"], n = ["ppt", "pptx"], i = ["pdf"];
|
|
145
|
+
return o.includes(t) && (e = "word"), s.includes(t) && (e = "cell"), n.includes(t) && (e = "slide"), i.includes(t) && (e = "text-pdf"), e;
|
|
146
|
+
}, p3 = /* @__PURE__ */ F({
|
|
138
147
|
__name: "IkPreviewFileDialog",
|
|
139
|
-
props: /* @__PURE__ */
|
|
148
|
+
props: /* @__PURE__ */ W({
|
|
140
149
|
file: {
|
|
141
150
|
type: Object,
|
|
142
151
|
default: () => []
|
|
@@ -171,47 +180,47 @@ const I = (t, e) => {
|
|
|
171
180
|
}),
|
|
172
181
|
emits: ["update:show"],
|
|
173
182
|
setup(t) {
|
|
174
|
-
const e = t, o =
|
|
183
|
+
const e = t, o = G(t, "show"), s = m(() => ({
|
|
175
184
|
name: "name",
|
|
176
185
|
url: "url",
|
|
177
186
|
suffix: "suffix",
|
|
178
187
|
size: "fileSize",
|
|
179
188
|
...e.field
|
|
180
|
-
})), n =
|
|
189
|
+
})), n = V(null), i = V(null), a = Y({
|
|
181
190
|
image: !1,
|
|
182
191
|
office: !1,
|
|
183
192
|
video: !1
|
|
184
|
-
}),
|
|
185
|
-
var
|
|
193
|
+
}), p = (l) => {
|
|
194
|
+
var h, d, w, y, _, B, k;
|
|
186
195
|
try {
|
|
187
|
-
const f = ((
|
|
188
|
-
if (
|
|
189
|
-
...
|
|
190
|
-
name:
|
|
191
|
-
url:
|
|
192
|
-
},
|
|
196
|
+
const f = ((h = l == null ? void 0 : l.response) == null ? void 0 : h.data) || l, I = f[s.value.url] || (f == null ? void 0 : f.id) || f.attachmentId, M = (d = f[s.value.suffix] || f.attachmentSuffix) == null ? void 0 : d.toLowerCase(), X = f[s.value.name] || (f == null ? void 0 : f.attachmentName) || (f == null ? void 0 : f.originName);
|
|
197
|
+
if (i.value = {
|
|
198
|
+
...l,
|
|
199
|
+
name: l[s.value.name],
|
|
200
|
+
url: A(e.loadUrl, I)
|
|
201
|
+
}, l && K(l, s.value) === "image") {
|
|
193
202
|
a.image = !0;
|
|
194
203
|
return;
|
|
195
|
-
} else if ((((
|
|
204
|
+
} else if ((((w = e.onlyOfficeConfig) == null ? void 0 : w.accept) || e.onlyOfficeAccept).includes(M)) {
|
|
196
205
|
a.office = !0, n.value = {
|
|
197
206
|
...e.onlyOfficeConfig,
|
|
198
207
|
editorConfig: {
|
|
199
|
-
...((
|
|
208
|
+
...((y = e.onlyOfficeConfig) == null ? void 0 : y.editorConfig) || {},
|
|
200
209
|
customization: {
|
|
201
|
-
...((
|
|
210
|
+
...((B = (_ = e.onlyOfficeConfig) == null ? void 0 : _.editorConfig) == null ? void 0 : B.customization) || {},
|
|
202
211
|
review: {
|
|
203
212
|
reviewDisplay: "final"
|
|
204
213
|
}
|
|
205
214
|
}
|
|
206
215
|
},
|
|
207
216
|
document: {
|
|
208
|
-
key:
|
|
209
|
-
title:
|
|
210
|
-
url:
|
|
211
|
-
fileType:
|
|
212
|
-
...((
|
|
217
|
+
key: i3(),
|
|
218
|
+
title: X,
|
|
219
|
+
url: A(e.loadUrl, I),
|
|
220
|
+
fileType: M,
|
|
221
|
+
...((k = e.onlyOfficeConfig) == null ? void 0 : k.document) || {}
|
|
213
222
|
},
|
|
214
|
-
documentType:
|
|
223
|
+
documentType: h3(M)
|
|
215
224
|
};
|
|
216
225
|
return;
|
|
217
226
|
}
|
|
@@ -219,33 +228,33 @@ const I = (t, e) => {
|
|
|
219
228
|
console.info("预览错误: ", f);
|
|
220
229
|
}
|
|
221
230
|
};
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
231
|
+
Z([o, e.file], ([l, h]) => {
|
|
232
|
+
l && J(() => {
|
|
233
|
+
p(e.file);
|
|
225
234
|
});
|
|
226
235
|
});
|
|
227
|
-
const
|
|
236
|
+
const v = () => {
|
|
228
237
|
o.value = !1, a.office = !1, a.image = !1, a.video = !1;
|
|
229
238
|
};
|
|
230
|
-
return (
|
|
231
|
-
var
|
|
232
|
-
const
|
|
233
|
-
return o.value ? (r(),
|
|
234
|
-
|
|
239
|
+
return (l, h) => {
|
|
240
|
+
var w, y;
|
|
241
|
+
const d = E("el-image-viewer");
|
|
242
|
+
return o.value ? (r(), u(
|
|
243
|
+
T,
|
|
235
244
|
{ key: 0 },
|
|
236
245
|
[
|
|
237
|
-
(
|
|
246
|
+
(w = i.value) != null && w.url && a.image ? (r(), R(d, {
|
|
238
247
|
key: 0,
|
|
239
|
-
onClose:
|
|
240
|
-
|
|
248
|
+
onClose: h[0] || (h[0] = (_) => {
|
|
249
|
+
i.value = null, a.image = !1;
|
|
241
250
|
}),
|
|
242
251
|
ref: "previewImgRef",
|
|
243
|
-
"url-list": [(
|
|
244
|
-
}, null, 8, ["url-list"])) :
|
|
245
|
-
|
|
246
|
-
|
|
252
|
+
"url-list": [(y = i.value) == null ? void 0 : y.url]
|
|
253
|
+
}, null, 8, ["url-list"])) : C("v-if", !0),
|
|
254
|
+
C(" 文档类 "),
|
|
255
|
+
x(g(I6), {
|
|
247
256
|
modelValue: a.office,
|
|
248
|
-
"onUpdate:modelValue":
|
|
257
|
+
"onUpdate:modelValue": h[1] || (h[1] = (_) => a.office = _),
|
|
249
258
|
draggable: "",
|
|
250
259
|
"no-footer": "",
|
|
251
260
|
"no-header": "",
|
|
@@ -255,26 +264,29 @@ const I = (t, e) => {
|
|
|
255
264
|
"close-on-click-modal": "",
|
|
256
265
|
"close-on-press-escape": !1,
|
|
257
266
|
"append-to-body": "",
|
|
258
|
-
onClose:
|
|
267
|
+
onClose: v,
|
|
259
268
|
"modal-class": "ik-only-preview-dialog"
|
|
260
269
|
}, {
|
|
261
|
-
default:
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
270
|
+
default: S(() => {
|
|
271
|
+
var _;
|
|
272
|
+
return [
|
|
273
|
+
x(g(A6), {
|
|
274
|
+
"config-options": n.value,
|
|
275
|
+
"document-server-url": ((_ = t.onlyOfficeConfig) == null ? void 0 : _.serverUrl) || t.onlyofficeServer
|
|
276
|
+
}, null, 8, ["config-options", "document-server-url"])
|
|
277
|
+
];
|
|
278
|
+
}),
|
|
267
279
|
_: 1
|
|
268
280
|
/* STABLE */
|
|
269
281
|
}, 8, ["modelValue"])
|
|
270
282
|
],
|
|
271
283
|
64
|
|
272
284
|
/* STABLE_FRAGMENT */
|
|
273
|
-
)) :
|
|
285
|
+
)) : C("v-if", !0);
|
|
274
286
|
};
|
|
275
287
|
}
|
|
276
288
|
});
|
|
277
|
-
const
|
|
289
|
+
const f3 = O(p3), v3 = {
|
|
278
290
|
key: 0,
|
|
279
291
|
t: "1686300059786",
|
|
280
292
|
class: "icon",
|
|
@@ -284,7 +296,7 @@ const u3 = I(d3), h3 = {
|
|
|
284
296
|
"p-id": "7671",
|
|
285
297
|
width: "200",
|
|
286
298
|
height: "200"
|
|
287
|
-
},
|
|
299
|
+
}, g3 = /* @__PURE__ */ c(
|
|
288
300
|
"path",
|
|
289
301
|
{
|
|
290
302
|
d: "M160 0h512l256 256v704c0 35.3472-28.6528 64-64 64H160c-35.3472 0-64-28.6528-64-64V64c0-35.3472 28.6528-64 64-64z",
|
|
@@ -294,7 +306,7 @@ const u3 = I(d3), h3 = {
|
|
|
294
306
|
null,
|
|
295
307
|
-1
|
|
296
308
|
/* HOISTED */
|
|
297
|
-
),
|
|
309
|
+
), m3 = /* @__PURE__ */ c(
|
|
298
310
|
"path",
|
|
299
311
|
{
|
|
300
312
|
d: "M258.528 742.0672L351.8336 604.928a14.5024 14.5024 0 0 1 22.1696-2.1824l61.664 60.416 135.296-212.064a14.5024 14.5024 0 0 1 24.8064 0.5568l168.1024 291.328a14.5024 14.5024 0 0 1-12.5696 21.7664H270.528a14.5024 14.5024 0 0 1-12.0064-22.6816z",
|
|
@@ -304,7 +316,7 @@ const u3 = I(d3), h3 = {
|
|
|
304
316
|
null,
|
|
305
317
|
-1
|
|
306
318
|
/* HOISTED */
|
|
307
|
-
),
|
|
319
|
+
), w3 = /* @__PURE__ */ c(
|
|
308
320
|
"path",
|
|
309
321
|
{
|
|
310
322
|
d: "M359.616 431.5456m-73.1456 0a73.1456 73.1456 0 1 0 146.2912 0 73.1456 73.1456 0 1 0-146.2912 0Z",
|
|
@@ -314,7 +326,7 @@ const u3 = I(d3), h3 = {
|
|
|
314
326
|
null,
|
|
315
327
|
-1
|
|
316
328
|
/* HOISTED */
|
|
317
|
-
),
|
|
329
|
+
), y3 = /* @__PURE__ */ c(
|
|
318
330
|
"path",
|
|
319
331
|
{
|
|
320
332
|
d: "M672 0l256 256h-192c-35.3472 0-64-28.6528-64-64V0z",
|
|
@@ -324,12 +336,12 @@ const u3 = I(d3), h3 = {
|
|
|
324
336
|
null,
|
|
325
337
|
-1
|
|
326
338
|
/* HOISTED */
|
|
327
|
-
),
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
],
|
|
339
|
+
), _3 = [
|
|
340
|
+
g3,
|
|
341
|
+
m3,
|
|
342
|
+
w3,
|
|
343
|
+
y3
|
|
344
|
+
], k3 = {
|
|
333
345
|
key: 1,
|
|
334
346
|
t: "1686301531714",
|
|
335
347
|
class: "icon",
|
|
@@ -339,7 +351,7 @@ const u3 = I(d3), h3 = {
|
|
|
339
351
|
"p-id": "9067",
|
|
340
352
|
width: "200",
|
|
341
353
|
height: "200"
|
|
342
|
-
},
|
|
354
|
+
}, z3 = /* @__PURE__ */ c(
|
|
343
355
|
"path",
|
|
344
356
|
{
|
|
345
357
|
d: "M409.6 0v68.266667h-34.133333c-20.48 0-34.133333 13.653333-34.133334 34.133333s13.653333 34.133333 34.133334 34.133333H409.6v68.266667h-34.133333c-20.48 0-34.133333 13.653333-34.133334 34.133333s13.653333 34.133333 34.133334 34.133334H409.6v68.266666h-34.133333c-20.48 0-34.133333 13.653333-34.133334 34.133334s13.653333 34.133333 34.133334 34.133333H409.6v68.266667h-34.133333c-20.48 0-34.133333 13.653333-34.133334 34.133333s13.653333 34.133333 34.133334 34.133333h68.266666c20.48 0 34.133333-13.653333 34.133334-34.133333V477.866667h34.133333c20.48 0 34.133333-13.653333 34.133333-34.133334S532.48 409.6 512 409.6H477.866667V341.333333h34.133333c20.48 0 34.133333-13.653333 34.133333-34.133333S532.48 273.066667 512 273.066667H477.866667V204.8h34.133333c20.48 0 34.133333-13.653333 34.133333-34.133333S532.48 136.533333 512 136.533333H477.866667V0h204.8l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0h204.8z m0 682.666667h68.266667v68.266666H409.6v-68.266666z m-34.133333-68.266667c-20.48 0-34.133333 13.653333-34.133334 34.133333v136.533334c0 20.48 13.653333 34.133333 34.133334 34.133333h136.533333c20.48 0 34.133333-13.653333 34.133333-34.133333v-136.533334c0-20.48-13.653333-34.133333-34.133333-34.133333h-136.533333z",
|
|
@@ -349,7 +361,7 @@ const u3 = I(d3), h3 = {
|
|
|
349
361
|
null,
|
|
350
362
|
-1
|
|
351
363
|
/* HOISTED */
|
|
352
|
-
),
|
|
364
|
+
), F3 = /* @__PURE__ */ c(
|
|
353
365
|
"path",
|
|
354
366
|
{
|
|
355
367
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -359,10 +371,10 @@ const u3 = I(d3), h3 = {
|
|
|
359
371
|
null,
|
|
360
372
|
-1
|
|
361
373
|
/* HOISTED */
|
|
362
|
-
),
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
],
|
|
374
|
+
), b3 = [
|
|
375
|
+
z3,
|
|
376
|
+
F3
|
|
377
|
+
], x3 = {
|
|
366
378
|
key: 2,
|
|
367
379
|
t: "1686300141125",
|
|
368
380
|
class: "icon",
|
|
@@ -372,7 +384,7 @@ const u3 = I(d3), h3 = {
|
|
|
372
384
|
"p-id": "8137",
|
|
373
385
|
width: "200",
|
|
374
386
|
height: "200"
|
|
375
|
-
},
|
|
387
|
+
}, S3 = /* @__PURE__ */ c(
|
|
376
388
|
"path",
|
|
377
389
|
{
|
|
378
390
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m204.8 546.133333V443.733333h204.8v136.533334H409.6V546.133333z m0 102.4h204.8c40.96 0 68.266667-27.306667 68.266667-68.266666v-136.533334c0-40.96-27.306667-68.266667-68.266667-68.266666H409.6c-40.96 0-68.266667 27.306667-68.266667 68.266666V819.2c0 20.48 13.653333 34.133333 34.133334 34.133333s34.133333-13.653333 34.133333-34.133333V648.533333z",
|
|
@@ -382,7 +394,7 @@ const u3 = I(d3), h3 = {
|
|
|
382
394
|
null,
|
|
383
395
|
-1
|
|
384
396
|
/* HOISTED */
|
|
385
|
-
),
|
|
397
|
+
), C3 = /* @__PURE__ */ c(
|
|
386
398
|
"path",
|
|
387
399
|
{
|
|
388
400
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -392,10 +404,10 @@ const u3 = I(d3), h3 = {
|
|
|
392
404
|
null,
|
|
393
405
|
-1
|
|
394
406
|
/* HOISTED */
|
|
395
|
-
),
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
],
|
|
407
|
+
), V3 = [
|
|
408
|
+
S3,
|
|
409
|
+
C3
|
|
410
|
+
], R3 = {
|
|
399
411
|
key: 3,
|
|
400
412
|
t: "1686300157181",
|
|
401
413
|
class: "icon",
|
|
@@ -405,7 +417,7 @@ const u3 = I(d3), h3 = {
|
|
|
405
417
|
"p-id": "8292",
|
|
406
418
|
width: "200",
|
|
407
419
|
height: "200"
|
|
408
|
-
},
|
|
420
|
+
}, B3 = /* @__PURE__ */ c(
|
|
409
421
|
"path",
|
|
410
422
|
{
|
|
411
423
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m307.2 607.573333l68.266667 191.146667c13.653333 27.306667 54.613333 27.306667 61.44 0l102.4-273.066667c6.826667-20.48 0-34.133333-20.48-40.96s-34.133333 0-40.96 13.653334l-68.266667 191.146666-68.266667-191.146666c-13.653333-27.306667-54.613333-27.306667-68.266666 0l-68.266667 191.146666-68.266667-191.146666c-6.826667-13.653333-27.306667-27.306667-47.786666-20.48s-27.306667 27.306667-20.48 47.786666l102.4 273.066667c13.653333 27.306667 54.613333 27.306667 61.44 0l75.093333-191.146667z",
|
|
@@ -415,7 +427,7 @@ const u3 = I(d3), h3 = {
|
|
|
415
427
|
null,
|
|
416
428
|
-1
|
|
417
429
|
/* HOISTED */
|
|
418
|
-
),
|
|
430
|
+
), I3 = /* @__PURE__ */ c(
|
|
419
431
|
"path",
|
|
420
432
|
{
|
|
421
433
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -425,10 +437,10 @@ const u3 = I(d3), h3 = {
|
|
|
425
437
|
null,
|
|
426
438
|
-1
|
|
427
439
|
/* HOISTED */
|
|
428
|
-
),
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
],
|
|
440
|
+
), M3 = [
|
|
441
|
+
B3,
|
|
442
|
+
I3
|
|
443
|
+
], D3 = {
|
|
432
444
|
key: 4,
|
|
433
445
|
t: "1686300180947",
|
|
434
446
|
class: "icon",
|
|
@@ -438,7 +450,7 @@ const u3 = I(d3), h3 = {
|
|
|
438
450
|
"p-id": "8447",
|
|
439
451
|
width: "200",
|
|
440
452
|
height: "200"
|
|
441
|
-
},
|
|
453
|
+
}, $3 = /* @__PURE__ */ c(
|
|
442
454
|
"path",
|
|
443
455
|
{
|
|
444
456
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m477.866667 730.453333c20.48 0 68.266667 0 68.266666-47.786666 0-20.48-6.826667-47.786667-68.266666-47.786667-27.306667 0-54.613333 6.826667-81.92 6.826667-34.133333-27.306667-68.266667-61.44-88.746667-102.4 20.48-75.093333 20.48-122.88 6.826667-150.186667-6.826667-6.826667-20.48-13.653333-34.133334-13.653333-20.48 0-34.133333 6.826667-40.96 20.48-20.48 40.96 13.653333 116.053333 27.306667 150.186666-20.48 54.613333-40.96 109.226667-68.266667 163.84C273.066667 764.586667 273.066667 798.72 273.066667 812.373333c0 13.653333 6.826667 27.306667 20.48 34.133334 6.826667 6.826667 13.653333 6.826667 20.48 6.826666 34.133333 0 68.266667-34.133333 116.053333-109.226666 54.613333-20.48 102.4-40.96 157.013333-47.786667 27.306667 20.48 61.44 34.133333 95.573334 34.133333zM491.52 416.426667c6.826667 20.48 6.826667 47.786667 0 68.266666-13.653333-20.48-13.653333-40.96-13.653333-68.266666h13.653333z m-177.493333 395.946666c13.653333-20.48 27.306667-27.306667 47.786666-40.96-13.653333 20.48-27.306667 34.133333-47.786666 40.96z m184.32-204.8c13.653333 20.48 34.133333 47.786667 54.613333 68.266667H546.133333c-27.306667 6.826667-61.44 13.653333-88.746666 27.306667 13.653333-34.133333 27.306667-61.44 40.96-95.573334z m177.493333 68.266667c27.306667 0 34.133333 6.826667 34.133333 13.653333-6.826667 0-20.48 6.826667-27.306666 0-13.653333 0-27.306667-6.826667-40.96-13.653333h34.133333z",
|
|
@@ -448,7 +460,7 @@ const u3 = I(d3), h3 = {
|
|
|
448
460
|
null,
|
|
449
461
|
-1
|
|
450
462
|
/* HOISTED */
|
|
451
|
-
),
|
|
463
|
+
), q3 = /* @__PURE__ */ c(
|
|
452
464
|
"path",
|
|
453
465
|
{
|
|
454
466
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -458,10 +470,10 @@ const u3 = I(d3), h3 = {
|
|
|
458
470
|
null,
|
|
459
471
|
-1
|
|
460
472
|
/* HOISTED */
|
|
461
|
-
),
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
],
|
|
473
|
+
), H3 = [
|
|
474
|
+
$3,
|
|
475
|
+
q3
|
|
476
|
+
], O3 = {
|
|
465
477
|
key: 5,
|
|
466
478
|
t: "1686300195363",
|
|
467
479
|
class: "icon",
|
|
@@ -471,7 +483,7 @@ const u3 = I(d3), h3 = {
|
|
|
471
483
|
"p-id": "8602",
|
|
472
484
|
width: "200",
|
|
473
485
|
height: "200"
|
|
474
|
-
},
|
|
486
|
+
}, E3 = /* @__PURE__ */ c(
|
|
475
487
|
"path",
|
|
476
488
|
{
|
|
477
489
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m341.333333 512h136.533334c20.48 0 34.133333-13.653333 34.133333-34.133333s-13.653333-34.133333-34.133333-34.133334H341.333333c-20.48 0-34.133333 13.653333-34.133333 34.133334s13.653333 34.133333 34.133333 34.133333h136.533334V819.2c0 20.48 13.653333 34.133333 34.133333 34.133333s34.133333-13.653333 34.133333-34.133333V512z",
|
|
@@ -481,7 +493,7 @@ const u3 = I(d3), h3 = {
|
|
|
481
493
|
null,
|
|
482
494
|
-1
|
|
483
495
|
/* HOISTED */
|
|
484
|
-
),
|
|
496
|
+
), A3 = /* @__PURE__ */ c(
|
|
485
497
|
"path",
|
|
486
498
|
{
|
|
487
499
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -491,10 +503,10 @@ const u3 = I(d3), h3 = {
|
|
|
491
503
|
null,
|
|
492
504
|
-1
|
|
493
505
|
/* HOISTED */
|
|
494
|
-
),
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
],
|
|
506
|
+
), T3 = [
|
|
507
|
+
E3,
|
|
508
|
+
A3
|
|
509
|
+
], P3 = {
|
|
498
510
|
key: 6,
|
|
499
511
|
t: "1686300209288",
|
|
500
512
|
class: "icon",
|
|
@@ -504,7 +516,7 @@ const u3 = I(d3), h3 = {
|
|
|
504
516
|
"p-id": "8757",
|
|
505
517
|
width: "200",
|
|
506
518
|
height: "200"
|
|
507
|
-
},
|
|
519
|
+
}, U3 = /* @__PURE__ */ c(
|
|
508
520
|
"path",
|
|
509
521
|
{
|
|
510
522
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m464.213333 375.466667l-232.106666 61.44c-27.306667 13.653333-47.786667 34.133333-47.786667 61.44v218.453333s-20.48-13.653333-54.613333-6.826667c-47.786667 6.826667-95.573333 47.786667-95.573334 88.746667 0 40.96 47.786667 61.44 95.573334 54.613333 54.613333-6.826667 95.573333-40.96 95.573333-81.92V559.786667c0-13.653333 27.306667-27.306667 27.306667-27.306667L655.36 477.866667s20.48-6.826667 20.48 13.653333v170.666667s-20.48-13.653333-54.613333-6.826667c-54.613333 6.826667-95.573333 40.96-95.573334 81.92s47.786667 68.266667 95.573334 61.44 95.573333-40.96 95.573333-81.92V409.6c0-27.306667-27.306667-40.96-47.786667-34.133333z",
|
|
@@ -514,7 +526,7 @@ const u3 = I(d3), h3 = {
|
|
|
514
526
|
null,
|
|
515
527
|
-1
|
|
516
528
|
/* HOISTED */
|
|
517
|
-
),
|
|
529
|
+
), j3 = /* @__PURE__ */ c(
|
|
518
530
|
"path",
|
|
519
531
|
{
|
|
520
532
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -524,10 +536,10 @@ const u3 = I(d3), h3 = {
|
|
|
524
536
|
null,
|
|
525
537
|
-1
|
|
526
538
|
/* HOISTED */
|
|
527
|
-
),
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
],
|
|
539
|
+
), L3 = [
|
|
540
|
+
U3,
|
|
541
|
+
j3
|
|
542
|
+
], N3 = {
|
|
531
543
|
key: 7,
|
|
532
544
|
t: "1686300225262",
|
|
533
545
|
class: "icon",
|
|
@@ -537,7 +549,7 @@ const u3 = I(d3), h3 = {
|
|
|
537
549
|
"p-id": "8912",
|
|
538
550
|
width: "200",
|
|
539
551
|
height: "200"
|
|
540
|
-
},
|
|
552
|
+
}, W3 = /* @__PURE__ */ c(
|
|
541
553
|
"path",
|
|
542
554
|
{
|
|
543
555
|
d: "M204.8 0h477.866667l273.066666 273.066667v614.4c0 75.093333-61.44 136.533333-136.533333 136.533333H204.8c-75.093333 0-136.533333-61.44-136.533333-136.533333V136.533333C68.266667 61.44 129.706667 0 204.8 0z m307.2 853.333333c150.186667 0 273.066667-122.88 273.066667-273.066666s-122.88-273.066667-273.066667-273.066667-273.066667 122.88-273.066667 273.066667 122.88 273.066667 273.066667 273.066666z m0-68.266666c-116.053333 0-204.8-88.746667-204.8-204.8s88.746667-204.8 204.8-204.8 204.8 88.746667 204.8 204.8-88.746667 204.8-204.8 204.8zM614.4 600.746667l6.826667-6.826667c6.826667-13.653333 6.826667-27.306667-6.826667-34.133333L484.693333 471.04s-6.826667-6.826667-13.653333-6.826667c-13.653333 0-27.306667 13.653333-27.306667 27.306667v170.666667c0 6.826667 0 13.653333 6.826667 13.653333 6.826667 13.653333 27.306667 13.653333 40.96 6.826667L614.4 600.746667z",
|
|
@@ -547,7 +559,7 @@ const u3 = I(d3), h3 = {
|
|
|
547
559
|
null,
|
|
548
560
|
-1
|
|
549
561
|
/* HOISTED */
|
|
550
|
-
),
|
|
562
|
+
), G3 = /* @__PURE__ */ c(
|
|
551
563
|
"path",
|
|
552
564
|
{
|
|
553
565
|
d: "M682.666667 0l273.066666 273.066667h-204.8c-40.96 0-68.266667-27.306667-68.266666-68.266667V0z",
|
|
@@ -557,10 +569,10 @@ const u3 = I(d3), h3 = {
|
|
|
557
569
|
null,
|
|
558
570
|
-1
|
|
559
571
|
/* HOISTED */
|
|
560
|
-
),
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
],
|
|
572
|
+
), K3 = [
|
|
573
|
+
W3,
|
|
574
|
+
G3
|
|
575
|
+
], X3 = {
|
|
564
576
|
key: 8,
|
|
565
577
|
t: "1692251753690",
|
|
566
578
|
class: "icon",
|
|
@@ -570,7 +582,7 @@ const u3 = I(d3), h3 = {
|
|
|
570
582
|
"p-id": "4336",
|
|
571
583
|
width: "200",
|
|
572
584
|
height: "200"
|
|
573
|
-
},
|
|
585
|
+
}, Y3 = /* @__PURE__ */ c(
|
|
574
586
|
"path",
|
|
575
587
|
{
|
|
576
588
|
d: "M192 0h448.170667l319.829333 320V896a128 128 0 0 1-128 128H192a128 128 0 0 1-128-128V128A128 128 0 0 1 192 0z",
|
|
@@ -580,7 +592,7 @@ const u3 = I(d3), h3 = {
|
|
|
580
592
|
null,
|
|
581
593
|
-1
|
|
582
594
|
/* HOISTED */
|
|
583
|
-
),
|
|
595
|
+
), Z3 = /* @__PURE__ */ c(
|
|
584
596
|
"path",
|
|
585
597
|
{
|
|
586
598
|
d: "M388.5056 631.261867H307.541333v54.852266h95.095467v33.8944H265.3184v-204.765866h136.977067v34.167466H307.5072v48.810667h80.9984v33.041067z m112.093867-45.397334l38.4-70.621866h48.503466l-59.630933 101.546666 61.201067 103.2192h-49.117867l-39.355733-71.714133-39.389867 71.68h-49.0496l61.166933-103.185067-59.630933-101.546666h48.503467l38.4 70.587733z m266.922666 65.9456c-0.648533 9.898667-3.037867 19.592533-7.0656 28.672-3.7888 8.533333-9.352533 16.1792-16.315733 22.4256-6.929067 6.2464-15.36 11.127467-25.258667 14.6432-9.864533 3.4816-21.128533 5.256533-33.792 5.256534-13.1072 0-24.917333-2.286933-35.362133-6.826667a72.260267 72.260267 0 0 1-26.555733-19.626667 89.019733 89.019733 0 0 1-16.725334-30.993066 133.597867 133.597867 0 0 1-5.870933-40.8576v-13.482667c0-15.121067 2.048-28.740267 6.0416-40.925867 4.061867-12.1856 9.728-22.528 17.1008-31.061333 7.338667-8.533333 16.4864-15.2576 26.794667-19.694933 10.478933-4.608 22.186667-6.894933 35.157333-6.894934 12.731733 0 24.029867 1.809067 33.792 5.393067 9.8304 3.618133 18.1248 8.635733 24.9856 15.0528 6.826667 6.485333 12.288 14.267733 16.042667 22.9376 3.822933 8.874667 6.2464 18.466133 7.304533 28.8768h-42.1888a63.829333 63.829333 0 0 0-3.1744-16.145067 31.744 31.744 0 0 0-7.099733-11.810133 29.354667 29.354667 0 0 0-11.946667-7.2704 55.944533 55.944533 0 0 0-17.749333-2.4576c-14.2336 0-24.849067 5.188267-31.812267 15.5648-6.997333 10.3424-10.478933 26.385067-10.478933 48.128v13.789867c0 10.581333 0.750933 19.899733 2.321066 27.8528 1.536 7.953067 3.959467 14.609067 7.304534 19.968a32.221867 32.221867 0 0 0 12.970666 12.014933c5.256533 2.696533 11.639467 4.027733 19.182934 4.027733 6.656 0 12.3904-0.750933 17.2032-2.2528a30.549333 30.549333 0 0 0 12.0832-6.826666 30.685867 30.685867 0 0 0 7.509333-11.4688c1.809067-4.573867 2.935467-9.898667 3.413333-16.042667h42.154667z",
|
|
@@ -591,7 +603,7 @@ const u3 = I(d3), h3 = {
|
|
|
591
603
|
null,
|
|
592
604
|
-1
|
|
593
605
|
/* HOISTED */
|
|
594
|
-
),
|
|
606
|
+
), J3 = /* @__PURE__ */ c(
|
|
595
607
|
"path",
|
|
596
608
|
{
|
|
597
609
|
d: "M640 0l320 320H768a128 128 0 0 1-128-128V0z",
|
|
@@ -601,11 +613,11 @@ const u3 = I(d3), h3 = {
|
|
|
601
613
|
null,
|
|
602
614
|
-1
|
|
603
615
|
/* HOISTED */
|
|
604
|
-
),
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
],
|
|
616
|
+
), Q3 = [
|
|
617
|
+
Y3,
|
|
618
|
+
Z3,
|
|
619
|
+
J3
|
|
620
|
+
], e6 = {
|
|
609
621
|
key: 9,
|
|
610
622
|
t: "1692251753690",
|
|
611
623
|
class: "icon",
|
|
@@ -615,7 +627,7 @@ const u3 = I(d3), h3 = {
|
|
|
615
627
|
"p-id": "4336",
|
|
616
628
|
width: "200",
|
|
617
629
|
height: "200"
|
|
618
|
-
},
|
|
630
|
+
}, t6 = /* @__PURE__ */ c(
|
|
619
631
|
"path",
|
|
620
632
|
{
|
|
621
633
|
d: "M145.6 0C100.8 0 64 36.8 64 81.6v860.8C64 987.2 100.8 1024 145.6 1024h732.8c44.8 0 81.6-36.8 81.6-81.6V324.8L657.6 0h-512z",
|
|
@@ -625,7 +637,7 @@ const u3 = I(d3), h3 = {
|
|
|
625
637
|
null,
|
|
626
638
|
-1
|
|
627
639
|
/* HOISTED */
|
|
628
|
-
),
|
|
640
|
+
), n6 = /* @__PURE__ */ c(
|
|
629
641
|
"path",
|
|
630
642
|
{
|
|
631
643
|
d: "M960 326.4v16H755.2s-100.8-20.8-99.2-107.2c0 0 3.2 91.2 96 91.2h208z",
|
|
@@ -635,7 +647,7 @@ const u3 = I(d3), h3 = {
|
|
|
635
647
|
null,
|
|
636
648
|
-1
|
|
637
649
|
/* HOISTED */
|
|
638
|
-
),
|
|
650
|
+
), o6 = /* @__PURE__ */ c(
|
|
639
651
|
"path",
|
|
640
652
|
{
|
|
641
653
|
d: "M657.6 0v233.6c0 25.6 17.6 92.8 97.6 92.8H960L657.6 0z",
|
|
@@ -646,7 +658,7 @@ const u3 = I(d3), h3 = {
|
|
|
646
658
|
null,
|
|
647
659
|
-1
|
|
648
660
|
/* HOISTED */
|
|
649
|
-
),
|
|
661
|
+
), i6 = /* @__PURE__ */ c(
|
|
650
662
|
"path",
|
|
651
663
|
{
|
|
652
664
|
d: "M344 862.4h-100.8c-9.6 0-17.6-8-17.6-17.6V688c0-9.6 8-17.6 17.6-17.6h100.8c4.8 0 9.6 4.8 9.6 11.2 0 6.4-4.8 9.6-9.6 9.6h-94.4v62.4h91.2c6.4 0 11.2 4.8 11.2 11.2 0 6.4-4.8 9.6-11.2 9.6h-91.2v67.2h94.4c4.8 0 9.6 4.8 9.6 9.6 0 6.4-4.8 11.2-9.6 11.2z m193.6 1.6c-4.8 0-8 0-9.6-3.2l-59.2-80-60.8 80c-1.6 3.2-4.8 3.2-8 3.2-6.4 0-11.2-4.8-11.2-11.2 0-1.6 0-4.8 1.6-6.4l62.4-81.6-57.6-78.4c-1.6-1.6-3.2-3.2-3.2-6.4 0-4.8 4.8-11.2 12.8-11.2 3.2 0 6.4 1.6 8 4.8l56 73.6 54.4-73.6c1.6-3.2 4.8-4.8 9.6-4.8s11.2 4.8 11.2 11.2c0 3.2 0 4.8-1.6 6.4l-57.6 76.8 60.8 83.2c1.6 1.6 3.2 4.8 3.2 6.4 0 6.4-6.4 11.2-11.2 11.2z m171.2-1.6h-99.2c-9.6 0-17.6-8-17.6-17.6V688c0-9.6 8-17.6 17.6-17.6h99.2c6.4 0 11.2 4.8 11.2 11.2 0 6.4-4.8 9.6-11.2 9.6h-92.8v62.4h91.2c6.4 0 11.2 4.8 11.2 11.2 0 6.4-4.8 9.6-11.2 9.6h-91.2v67.2h92.8c6.4 0 11.2 4.8 11.2 9.6 0 6.4-4.8 11.2-11.2 11.2z",
|
|
@@ -656,12 +668,12 @@ const u3 = I(d3), h3 = {
|
|
|
656
668
|
null,
|
|
657
669
|
-1
|
|
658
670
|
/* HOISTED */
|
|
659
|
-
),
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
],
|
|
671
|
+
), s6 = [
|
|
672
|
+
t6,
|
|
673
|
+
n6,
|
|
674
|
+
o6,
|
|
675
|
+
i6
|
|
676
|
+
], l6 = {
|
|
665
677
|
key: 10,
|
|
666
678
|
t: "1714099890925",
|
|
667
679
|
class: "icon",
|
|
@@ -671,7 +683,7 @@ const u3 = I(d3), h3 = {
|
|
|
671
683
|
"p-id": "2271",
|
|
672
684
|
width: "200",
|
|
673
685
|
height: "200"
|
|
674
|
-
},
|
|
686
|
+
}, a6 = /* @__PURE__ */ c(
|
|
675
687
|
"path",
|
|
676
688
|
{
|
|
677
689
|
d: "M227.555556 28.444444h389.404444a19.911111 19.911111 0 0 1 14.734222 6.542223l271.132445 298.211555a28.444444 28.444444 0 0 1 7.395555 19.143111V938.666667a56.888889 56.888889 0 0 1-56.888889 56.888889H227.555556a56.888889 56.888889 0 0 1-56.888889-56.888889V85.333333a56.888889 56.888889 0 0 1 56.888889-56.888889z",
|
|
@@ -681,7 +693,7 @@ const u3 = I(d3), h3 = {
|
|
|
681
693
|
null,
|
|
682
694
|
-1
|
|
683
695
|
/* HOISTED */
|
|
684
|
-
),
|
|
696
|
+
), c6 = /* @__PURE__ */ c(
|
|
685
697
|
"path",
|
|
686
698
|
{
|
|
687
699
|
d: "M625.777778 30.492444a19.911111 19.911111 0 0 1 5.916444 4.465778l271.132445 298.24a28.444444 28.444444 0 0 1 5.176889 8.135111H682.666667a56.888889 56.888889 0 0 1-56.888889-56.888889V30.492444z",
|
|
@@ -692,7 +704,7 @@ const u3 = I(d3), h3 = {
|
|
|
692
704
|
null,
|
|
693
705
|
-1
|
|
694
706
|
/* HOISTED */
|
|
695
|
-
),
|
|
707
|
+
), r6 = /* @__PURE__ */ c(
|
|
696
708
|
"path",
|
|
697
709
|
{
|
|
698
710
|
d: "M396.288 645.176889c0 5.461333-0.796444 10.865778-2.389333 16.156444-1.592889 5.319111-4.266667 10.069333-7.964445 14.222223-3.697778 4.181333-8.647111 7.509333-14.791111 10.012444a60.871111 60.871111 0 0 1-22.869333 3.754667c-15.160889 0-26.851556-3.982222-35.043556-11.946667-8.192-7.964444-12.288-19.683556-12.288-35.157333v-10.012445h21.617778v6.826667c0 4.721778 0.369778 9.045333 1.137778 12.970667a28.074667 28.074667 0 0 0 3.982222 10.24 18.773333 18.773333 0 0 0 7.964444 6.712888c3.413333 1.592889 7.765333 2.389333 13.084445 2.389334 9.870222 0 16.64-2.645333 20.366222-7.964445 3.697778-5.290667 5.575111-12.430222 5.575111-21.390222v-118.784h21.617778v121.969778z m44.145778 3.413333c0.142222 4.266667 1.137778 7.850667 2.958222 10.808889a20.593778 20.593778 0 0 0 7.168 7.054222c2.958222 1.763556 6.286222 3.015111 10.012444 3.754667 3.697778 0.768 7.537778 1.137778 11.491556 1.137778 3.043556 0 6.229333-0.227556 9.557333-0.682667 3.328-0.455111 6.4-1.28 9.216-2.503111a17.294222 17.294222 0 0 0 6.940445-5.347556 14.250667 14.250667 0 0 0 2.730666-8.988444 12.885333 12.885333 0 0 0-5.688888-11.377778c-3.783111-2.56-8.533333-4.664889-14.222223-6.257778a232.561778 232.561778 0 0 0-18.545777-4.323555 96.227556 96.227556 0 0 1-18.545778-5.461333 38.4 38.4 0 0 1-14.222222-9.898667c-3.783111-4.266667-5.688889-10.154667-5.688889-17.749333a28.16 28.16 0 0 1 3.982222-15.246223c2.645333-4.266667 6.058667-7.68 10.24-10.353777 4.181333-2.645333 8.874667-4.608 14.108444-5.916445 5.233778-1.28 10.439111-1.934222 15.587556-1.934222 6.684444 0 12.8 0.568889 18.432 1.706667 5.603556 1.137778 10.581333 3.128889 14.904889 5.916444 4.323556 2.816 7.765333 6.599111 10.353778 11.377778 2.56 4.778667 4.096 10.752 4.551111 17.863111h-19.342223a19.569778 19.569778 0 0 0-2.958222-9.443556 19.370667 19.370667 0 0 0-6.371555-6.030222 28.956444 28.956444 0 0 0-8.533334-3.299555 43.918222 43.918222 0 0 0-9.443555-1.024c-2.872889 0-5.802667 0.227556-8.760889 0.682666a29.496889 29.496889 0 0 0-8.078222 2.389334 16.270222 16.270222 0 0 0-5.916445 4.551111 11.463111 11.463111 0 0 0-2.275555 7.395555c0 3.356444 1.166222 6.115556 3.527111 8.305778a28.16 28.16 0 0 0 8.988444 5.461333c3.640889 1.422222 7.736889 2.673778 12.288 3.640889 4.551111 0.995556 9.102222 1.991111 13.653334 3.072 4.835556 1.080889 9.585778 2.360889 14.222222 3.868445 4.636444 1.536 8.732444 3.527111 12.288 6.030222s6.456889 5.660444 8.647111 9.443555a27.733333 27.733333 0 0 1 3.299555 14.108445c0 7.111111-1.479111 13.056-4.437333 17.749333a34.702222 34.702222 0 0 1-11.605333 11.377778 48.497778 48.497778 0 0 1-16.156445 6.030222c-5.973333 1.137778-11.946667 1.706667-17.863111 1.706667a82.773333 82.773333 0 0 1-18.659555-2.048 45.795556 45.795556 0 0 1-15.701334-6.712889 34.218667 34.218667 0 0 1-10.922666-12.288 42.581333 42.581333 0 0 1-4.551111-18.545778h19.342222z m116.053333-21.617778c0 7.111111 0.938667 13.482667 2.844445 19.000889 1.905778 5.546667 4.522667 10.183111 7.850666 13.880889a34.076444 34.076444 0 0 0 25.941334 11.491556 34.076444 34.076444 0 0 0 25.941333-11.491556c3.328-3.697778 5.973333-8.334222 7.850667-13.880889 1.905778-5.518222 2.844444-11.861333 2.844444-19.000889 0-7.111111-0.938667-13.454222-2.844444-19.000888a41.016889 41.016889 0 0 0-7.850667-13.994667 33.422222 33.422222 0 0 0-11.719111-8.647111 34.872889 34.872889 0 0 0-14.222222-2.958222c-5.006222 0-9.756444 0.995556-14.222223 2.958222-4.465778 1.991111-8.391111 4.835556-11.719111 8.647111-3.328 3.811556-5.973333 8.476444-7.850666 13.994667-1.905778 5.546667-2.844444 11.889778-2.844445 19.000888z m-20.48 0c0-8.647111 1.223111-16.725333 3.640889-24.234666a54.897778 54.897778 0 0 1 10.922667-19.569778c4.835556-5.518222 10.837333-9.898667 17.976889-13.084444 7.111111-3.185778 15.331556-4.778667 24.576-4.778667 9.386667 0 17.635556 1.592889 24.689777 4.778667 7.054222 3.185778 12.999111 7.566222 17.863111 13.084444 4.835556 5.546667 8.504889 12.060444 10.922667 19.569778 2.417778 7.509333 3.640889 15.587556 3.640889 24.234666 0 8.647111-1.223111 16.696889-3.640889 24.120889-2.417778 7.452444-6.058667 13.937778-10.922667 19.456-4.835556 5.546667-10.808889 9.870222-17.863111 12.970667-7.054222 3.128889-15.274667 4.664889-24.689777 4.664889-9.244444 0-17.436444-1.536-24.576-4.664889a50.261333 50.261333 0 0 1-17.976889-12.970667 55.068444 55.068444 0 0 1-10.922667-19.456 77.283556 77.283556 0 0 1-3.640889-24.120889z m136.988445-58.936888h18.204444v18.659555h0.455111c8.049778-14.250667 20.764444-21.390222 38.229333-21.390222 7.736889 0 14.193778 1.080889 19.342223 3.185778 5.148444 2.133333 9.329778 5.091556 12.515555 8.874666 3.185778 3.811556 5.404444 8.305778 6.712889 13.539556 1.28 5.233778 1.934222 11.036444 1.934222 17.408v77.368889h-19.342222v-79.644445c0-7.281778-2.133333-13.027556-6.371555-17.294222-4.266667-4.266667-10.097778-6.371556-17.521778-6.371555-5.916444 0-11.036444 0.910222-15.36 2.730666a28.814222 28.814222 0 0 0-10.808889 7.736889 33.336889 33.336889 0 0 0-6.485333 11.719111c-1.422222 4.494222-2.161778 9.386667-2.161778 14.677334v66.446222h-19.342222V568.035556z",
|
|
@@ -702,11 +714,11 @@ const u3 = I(d3), h3 = {
|
|
|
702
714
|
null,
|
|
703
715
|
-1
|
|
704
716
|
/* HOISTED */
|
|
705
|
-
),
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
],
|
|
717
|
+
), d6 = [
|
|
718
|
+
a6,
|
|
719
|
+
c6,
|
|
720
|
+
r6
|
|
721
|
+
], u6 = {
|
|
710
722
|
key: 11,
|
|
711
723
|
t: "1686300037564",
|
|
712
724
|
class: "icon",
|
|
@@ -716,7 +728,7 @@ const u3 = I(d3), h3 = {
|
|
|
716
728
|
"p-id": "7515",
|
|
717
729
|
width: "200",
|
|
718
730
|
height: "200"
|
|
719
|
-
},
|
|
731
|
+
}, h6 = /* @__PURE__ */ c(
|
|
720
732
|
"path",
|
|
721
733
|
{
|
|
722
734
|
d: "M160 0h512l256 256v704c0 35.3472-28.6528 64-64 64H160c-35.3472 0-64-28.6528-64-64V64c0-35.3472 28.6528-64 64-64z",
|
|
@@ -726,7 +738,7 @@ const u3 = I(d3), h3 = {
|
|
|
726
738
|
null,
|
|
727
739
|
-1
|
|
728
740
|
/* HOISTED */
|
|
729
|
-
),
|
|
741
|
+
), p6 = /* @__PURE__ */ c(
|
|
730
742
|
"path",
|
|
731
743
|
{
|
|
732
744
|
d: "M672 0l256 256h-192c-35.3472 0-64-28.6528-64-64V0z",
|
|
@@ -736,7 +748,7 @@ const u3 = I(d3), h3 = {
|
|
|
736
748
|
null,
|
|
737
749
|
-1
|
|
738
750
|
/* HOISTED */
|
|
739
|
-
),
|
|
751
|
+
), f6 = /* @__PURE__ */ c(
|
|
740
752
|
"path",
|
|
741
753
|
{
|
|
742
754
|
d: "M384 499.2c0-25.6 5.12-46.08 10.24-58.88 5.12-12.8 15.36-25.6 28.16-35.84 12.8-12.8 25.6-20.48 43.52-25.6 15.36-5.12 30.72-7.68 48.64-7.68 35.84 0 64 10.24 89.6 30.72C627.2 422.4 640 448 640 481.28c0 15.36-5.12 28.16-10.24 40.96s-17.92 28.16-38.4 46.08-28.16 30.72-35.84 38.4c-7.68 7.68-10.24 17.92-15.36 28.16-5.12 10.24-2.56 17.92-2.56 43.52h-51.2c0-25.6 2.56-38.4 5.12-51.2s7.68-23.04 15.36-33.28 15.36-23.04 33.28-40.96c17.92-17.92 30.72-30.72 35.84-38.4 5.12-7.68 10.24-20.48 10.24-38.4s-7.68-30.72-20.48-43.52-30.72-20.48-53.76-20.48c-51.2 0-76.8 35.84-76.8 87.04h-51.2z m153.6 281.6h-51.2v-51.2h51.2v51.2z",
|
|
@@ -746,11 +758,11 @@ const u3 = I(d3), h3 = {
|
|
|
746
758
|
null,
|
|
747
759
|
-1
|
|
748
760
|
/* HOISTED */
|
|
749
|
-
),
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
],
|
|
761
|
+
), v6 = [
|
|
762
|
+
h6,
|
|
763
|
+
p6,
|
|
764
|
+
f6
|
|
765
|
+
], g6 = /* @__PURE__ */ F({
|
|
754
766
|
__name: "FileIcon",
|
|
755
767
|
props: {
|
|
756
768
|
type: {
|
|
@@ -771,21 +783,21 @@ const u3 = I(d3), h3 = {
|
|
|
771
783
|
}
|
|
772
784
|
},
|
|
773
785
|
setup(t) {
|
|
774
|
-
const e = t, o =
|
|
775
|
-
return (
|
|
786
|
+
const e = t, o = m(() => e.file ? K(e.file, e.fields) : e.type);
|
|
787
|
+
return (s, n) => o.value === "image" ? (r(), u("svg", v3, _3)) : o.value === "zip" ? (r(), u("svg", k3, b3)) : o.value === "ppt" ? (r(), u("svg", x3, V3)) : o.value === "word" ? (r(), u("svg", R3, M3)) : o.value === "pdf" ? (r(), u("svg", D3, H3)) : o.value === "txt" ? (r(), u("svg", O3, T3)) : o.value === "audio" ? (r(), u("svg", P3, L3)) : o.value === "video" ? (r(), u("svg", N3, K3)) : o.value === "excel" ? (r(), u("svg", X3, Q3)) : o.value === "exe" ? (r(), u("svg", e6, s6)) : o.value === "json" ? (r(), u("svg", l6, d6)) : (r(), u("svg", u6, v6));
|
|
776
788
|
}
|
|
777
|
-
}),
|
|
789
|
+
}), m6 = {
|
|
778
790
|
key: 0,
|
|
779
791
|
class: "ik-svg-icon ik-icon inline-block inline-flex justify-center box-content line-height-[0]"
|
|
780
|
-
},
|
|
792
|
+
}, w6 = {
|
|
781
793
|
key: 1,
|
|
782
794
|
class: "h-[1em] w-[1em]",
|
|
783
795
|
"aria-hidden": "true"
|
|
784
|
-
},
|
|
796
|
+
}, y6 = ["xlink:href"], _6 = ["src"], k6 = {
|
|
785
797
|
key: 1,
|
|
786
798
|
class: "h-[1em] w-[1em]",
|
|
787
799
|
"aria-hidden": "true"
|
|
788
|
-
},
|
|
800
|
+
}, z6 = ["xlink:href"], F6 = ["src"], b6 = /* @__PURE__ */ F({
|
|
789
801
|
name: "IkSvgIcon",
|
|
790
802
|
__name: "index",
|
|
791
803
|
props: {
|
|
@@ -812,10 +824,10 @@ const u3 = I(d3), h3 = {
|
|
|
812
824
|
tableIconType: { default: "icon" }
|
|
813
825
|
},
|
|
814
826
|
setup(t) {
|
|
815
|
-
const e = t, o =
|
|
816
|
-
var n,
|
|
817
|
-
return /^http?:\/\//.test(e.name) ? "img" : /i-[^:]+:[^:]+/.test(e.name) ? "unocss" : (n = e.name) != null && n.startsWith("iksig") ? "iksig" : (
|
|
818
|
-
}),
|
|
827
|
+
const e = t, o = m(() => {
|
|
828
|
+
var n, i, a;
|
|
829
|
+
return /^http?:\/\//.test(e.name) ? "img" : /i-[^:]+:[^:]+/.test(e.name) ? "unocss" : (n = e.name) != null && n.startsWith("iksig") ? "iksig" : (i = e.name) != null && i.includes(":") ? "iconify" : (a = e.name) != null && a.startsWith("iksvg") ? "svg" : "i";
|
|
830
|
+
}), s = m(() => {
|
|
819
831
|
const n = [];
|
|
820
832
|
if (e.flip)
|
|
821
833
|
switch (e.flip) {
|
|
@@ -830,26 +842,26 @@ const u3 = I(d3), h3 = {
|
|
|
830
842
|
break;
|
|
831
843
|
}
|
|
832
844
|
e.rotate && n.push(`rotate(${e.rotate % 360}deg)`);
|
|
833
|
-
const
|
|
845
|
+
const i = {
|
|
834
846
|
...e.color && { color: e.color },
|
|
835
847
|
...e.size && { fontSize: typeof e.size == "number" ? `${e.size}px` : e.size },
|
|
836
848
|
...n.length && { transform: n.join(" ") },
|
|
837
849
|
padding: e.showBg || e.bg ? e.padding : 0,
|
|
838
850
|
...e.color && o.value !== "iksig" ? {
|
|
839
851
|
"--ik-color-icon-dark": e.color,
|
|
840
|
-
"--ik-color-icon-light": e.colorLight ||
|
|
852
|
+
"--ik-color-icon-light": e.colorLight || s3.setOpacity(e.color, e.opacity)
|
|
841
853
|
} : {}
|
|
842
854
|
};
|
|
843
|
-
return e.width && (
|
|
855
|
+
return e.width && (i.width = i.height = typeof e.width == "number" ? `${e.width}px` : e.width), i;
|
|
844
856
|
});
|
|
845
|
-
return (n,
|
|
846
|
-
const a =
|
|
847
|
-
return n.tableIconType === "icon" ? (r(),
|
|
848
|
-
n.notip || !n.title ? (r(),
|
|
857
|
+
return (n, i) => {
|
|
858
|
+
const a = E("el-tooltip"), p = E("el-button");
|
|
859
|
+
return n.tableIconType === "icon" ? (r(), u("span", m6, [
|
|
860
|
+
n.notip || !n.title ? (r(), u(
|
|
849
861
|
"i",
|
|
850
862
|
{
|
|
851
863
|
key: 0,
|
|
852
|
-
class:
|
|
864
|
+
class: b(["ik-svg-icon ik-icon relative h-[1em] w-[1em] inline-flex items-center justify-center fill-current leading-[1em] transition", {
|
|
853
865
|
[n.name]: o.value === "unocss",
|
|
854
866
|
"show-bg": n.showBg || n.bg,
|
|
855
867
|
default: n.size === "default",
|
|
@@ -862,34 +874,34 @@ const u3 = I(d3), h3 = {
|
|
|
862
874
|
active: n.active,
|
|
863
875
|
disabled: n.disabled
|
|
864
876
|
}]),
|
|
865
|
-
style:
|
|
877
|
+
style: z(s.value)
|
|
866
878
|
},
|
|
867
879
|
[
|
|
868
|
-
|
|
869
|
-
o.value === "iksig" ? (r(),
|
|
880
|
+
C(` <Icon v-if="outputType === 'iconify'" :icon="name" /> `),
|
|
881
|
+
o.value === "iksig" ? (r(), u(
|
|
870
882
|
"i",
|
|
871
883
|
{
|
|
872
884
|
key: 0,
|
|
873
|
-
class:
|
|
874
|
-
style:
|
|
885
|
+
class: b(`iksig ${n.name}`),
|
|
886
|
+
style: z(s.value)
|
|
875
887
|
},
|
|
876
888
|
null,
|
|
877
889
|
6
|
|
878
890
|
/* CLASS, STYLE */
|
|
879
|
-
)) : o.value === "svg" ? (r(),
|
|
891
|
+
)) : o.value === "svg" ? (r(), u("svg", w6, [
|
|
880
892
|
c("use", {
|
|
881
893
|
"xlink:href": `#${n.name}`
|
|
882
|
-
}, null, 8,
|
|
883
|
-
])) : o.value === "img" ? (r(),
|
|
894
|
+
}, null, 8, y6)
|
|
895
|
+
])) : o.value === "img" ? (r(), u("img", {
|
|
884
896
|
key: 2,
|
|
885
897
|
src: n.name,
|
|
886
898
|
class: "h-[1em] w-[1em]"
|
|
887
|
-
}, null, 8,
|
|
899
|
+
}, null, 8, _6)) : (r(), u(
|
|
888
900
|
"i",
|
|
889
901
|
{
|
|
890
902
|
key: 3,
|
|
891
|
-
class:
|
|
892
|
-
style:
|
|
903
|
+
class: b(n.name),
|
|
904
|
+
style: z(s.value)
|
|
893
905
|
},
|
|
894
906
|
null,
|
|
895
907
|
6
|
|
@@ -898,16 +910,16 @@ const u3 = I(d3), h3 = {
|
|
|
898
910
|
],
|
|
899
911
|
6
|
|
900
912
|
/* CLASS, STYLE */
|
|
901
|
-
)) : (r(),
|
|
913
|
+
)) : (r(), R(a, {
|
|
902
914
|
key: 1,
|
|
903
915
|
content: n.title,
|
|
904
916
|
placement: "top"
|
|
905
917
|
}, {
|
|
906
|
-
default:
|
|
918
|
+
default: S(() => [
|
|
907
919
|
c(
|
|
908
920
|
"i",
|
|
909
921
|
{
|
|
910
|
-
class:
|
|
922
|
+
class: b(["ik-svg-icon ik-icon relative h-[1em] w-[1em] inline-flex items-center justify-center fill-current leading-[1em] transition", {
|
|
911
923
|
[n.name]: o.value === "unocss",
|
|
912
924
|
"show-bg": n.showBg || n.bg,
|
|
913
925
|
default: n.size === "default",
|
|
@@ -919,33 +931,33 @@ const u3 = I(d3), h3 = {
|
|
|
919
931
|
error: n.error || e.type === "error",
|
|
920
932
|
active: n.active
|
|
921
933
|
}]),
|
|
922
|
-
style:
|
|
934
|
+
style: z(s.value)
|
|
923
935
|
},
|
|
924
936
|
[
|
|
925
|
-
o.value === "iksig" ? (r(),
|
|
937
|
+
o.value === "iksig" ? (r(), u(
|
|
926
938
|
"i",
|
|
927
939
|
{
|
|
928
940
|
key: 0,
|
|
929
|
-
class:
|
|
930
|
-
style:
|
|
941
|
+
class: b(`iksig ${n.name}`),
|
|
942
|
+
style: z(s.value)
|
|
931
943
|
},
|
|
932
944
|
null,
|
|
933
945
|
6
|
|
934
946
|
/* CLASS, STYLE */
|
|
935
|
-
)) : o.value === "svg" ? (r(),
|
|
947
|
+
)) : o.value === "svg" ? (r(), u("svg", k6, [
|
|
936
948
|
c("use", {
|
|
937
949
|
"xlink:href": `#${n.name}`
|
|
938
|
-
}, null, 8,
|
|
939
|
-
])) : o.value === "img" ? (r(),
|
|
950
|
+
}, null, 8, z6)
|
|
951
|
+
])) : o.value === "img" ? (r(), u("img", {
|
|
940
952
|
key: 2,
|
|
941
953
|
src: n.name,
|
|
942
954
|
class: "h-[1em] w-[1em]"
|
|
943
|
-
}, null, 8,
|
|
955
|
+
}, null, 8, F6)) : (r(), u(
|
|
944
956
|
"i",
|
|
945
957
|
{
|
|
946
958
|
key: 3,
|
|
947
|
-
class:
|
|
948
|
-
style:
|
|
959
|
+
class: b(n.name),
|
|
960
|
+
style: z(s.value)
|
|
949
961
|
},
|
|
950
962
|
null,
|
|
951
963
|
6
|
|
@@ -959,13 +971,13 @@ const u3 = I(d3), h3 = {
|
|
|
959
971
|
_: 1
|
|
960
972
|
/* STABLE */
|
|
961
973
|
}, 8, ["content"]))
|
|
962
|
-
])) : (r(),
|
|
974
|
+
])) : (r(), R(p, {
|
|
963
975
|
key: 1,
|
|
964
976
|
type: ["warning", "error"].includes(n.type) ? "danger" : ""
|
|
965
977
|
}, {
|
|
966
|
-
default:
|
|
967
|
-
|
|
968
|
-
|
|
978
|
+
default: S(() => [
|
|
979
|
+
P(
|
|
980
|
+
q(n.title),
|
|
969
981
|
1
|
|
970
982
|
/* TEXT */
|
|
971
983
|
)
|
|
@@ -976,10 +988,10 @@ const u3 = I(d3), h3 = {
|
|
|
976
988
|
};
|
|
977
989
|
}
|
|
978
990
|
});
|
|
979
|
-
const
|
|
991
|
+
const x6 = /* @__PURE__ */ U(b6, [["__scopeId", "data-v-7d95dbf5"]]), H = O(x6), S6 = {
|
|
980
992
|
key: 0,
|
|
981
993
|
class: "exit-main-page-maximize"
|
|
982
|
-
},
|
|
994
|
+
}, C6 = /* @__PURE__ */ F({
|
|
983
995
|
__name: "CloseIcon",
|
|
984
996
|
props: {
|
|
985
997
|
showBg: {
|
|
@@ -992,15 +1004,15 @@ const k6 = /* @__PURE__ */ A(z6, [["__scopeId", "data-v-7d95dbf5"]]), M = I(k6),
|
|
|
992
1004
|
}
|
|
993
1005
|
},
|
|
994
1006
|
setup(t) {
|
|
995
|
-
return (e, o) => (r(),
|
|
996
|
-
t.showBg && t.fullscreen ? (r(),
|
|
997
|
-
|
|
1007
|
+
return (e, o) => (r(), u("div", null, [
|
|
1008
|
+
t.showBg && t.fullscreen ? (r(), u("div", S6, [
|
|
1009
|
+
x(g(H), {
|
|
998
1010
|
name: "iksvg_guanbidanchuang",
|
|
999
1011
|
title: "关闭",
|
|
1000
1012
|
size: 20,
|
|
1001
1013
|
error: ""
|
|
1002
1014
|
})
|
|
1003
|
-
])) : (r(),
|
|
1015
|
+
])) : (r(), R(g(H), {
|
|
1004
1016
|
key: 1,
|
|
1005
1017
|
error: "",
|
|
1006
1018
|
name: "iksvg_guanbidanchuang",
|
|
@@ -1010,9 +1022,9 @@ const k6 = /* @__PURE__ */ A(z6, [["__scopeId", "data-v-7d95dbf5"]]), M = I(k6),
|
|
|
1010
1022
|
]));
|
|
1011
1023
|
}
|
|
1012
1024
|
});
|
|
1013
|
-
const
|
|
1025
|
+
const V6 = /* @__PURE__ */ U(C6, [["__scopeId", "data-v-79f49df8"]]), R6 = { class: "base-header" }, B6 = /* @__PURE__ */ F({
|
|
1014
1026
|
__name: "IkBaseDialog",
|
|
1015
|
-
props: /* @__PURE__ */
|
|
1027
|
+
props: /* @__PURE__ */ W({
|
|
1016
1028
|
title: { default: "" },
|
|
1017
1029
|
cancelText: { default: "取消" },
|
|
1018
1030
|
confirmText: { default: "确认" },
|
|
@@ -1031,64 +1043,64 @@ const x6 = /* @__PURE__ */ A(b6, [["__scopeId", "data-v-79f49df8"]]), S6 = { cla
|
|
|
1031
1043
|
}),
|
|
1032
1044
|
emits: ["update:modelValue"],
|
|
1033
1045
|
setup(t) {
|
|
1034
|
-
const e = t, o =
|
|
1035
|
-
|
|
1036
|
-
},
|
|
1046
|
+
const e = t, o = G(t, "modelValue"), s = V(e.fullscreen), n = () => {
|
|
1047
|
+
s.value = !s.value;
|
|
1048
|
+
}, i = F({
|
|
1037
1049
|
setup() {
|
|
1038
|
-
return () =>
|
|
1050
|
+
return () => Q(V6, {
|
|
1039
1051
|
showBg: e.showCloseBg,
|
|
1040
1052
|
fullscreen: e.fullscreen
|
|
1041
1053
|
});
|
|
1042
1054
|
}
|
|
1043
1055
|
});
|
|
1044
|
-
return (a,
|
|
1045
|
-
const
|
|
1046
|
-
return r(),
|
|
1056
|
+
return (a, p) => {
|
|
1057
|
+
const v = E("el-dialog");
|
|
1058
|
+
return r(), R(v, e3({
|
|
1047
1059
|
modelValue: o.value,
|
|
1048
|
-
"onUpdate:modelValue":
|
|
1060
|
+
"onUpdate:modelValue": p[0] || (p[0] = (l) => o.value = l)
|
|
1049
1061
|
}, a.$attrs, {
|
|
1050
|
-
"close-icon":
|
|
1062
|
+
"close-icon": g(i),
|
|
1051
1063
|
class: `ik-base-dialog ${a.noHeader ? "no-header" : ""} ${a.noFooter ? "no-footer" : ""}`,
|
|
1052
|
-
fullscreen:
|
|
1064
|
+
fullscreen: s.value,
|
|
1053
1065
|
"modal-class": "baseDialog"
|
|
1054
|
-
}),
|
|
1055
|
-
icon:
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1066
|
+
}), t3({
|
|
1067
|
+
icon: S(() => [
|
|
1068
|
+
$(a.$slots, "title", {}, () => [
|
|
1069
|
+
P(
|
|
1070
|
+
q(a.title),
|
|
1059
1071
|
1
|
|
1060
1072
|
/* TEXT */
|
|
1061
1073
|
)
|
|
1062
1074
|
])
|
|
1063
1075
|
]),
|
|
1064
|
-
header:
|
|
1065
|
-
c("div",
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1076
|
+
header: S(() => [
|
|
1077
|
+
c("div", R6, [
|
|
1078
|
+
$(a.$slots, "header", {}, () => [
|
|
1079
|
+
P(
|
|
1080
|
+
q(a.title),
|
|
1069
1081
|
1
|
|
1070
1082
|
/* TEXT */
|
|
1071
1083
|
)
|
|
1072
1084
|
])
|
|
1073
1085
|
]),
|
|
1074
|
-
a.$attrs.showClose ? (r(),
|
|
1086
|
+
a.$attrs.showClose ? (r(), R(g(H), {
|
|
1075
1087
|
key: 0,
|
|
1076
1088
|
onClick: n,
|
|
1077
|
-
name:
|
|
1089
|
+
name: s.value ? "iksvg_tuichuquanping" : "iksvg_quanping-daohang",
|
|
1078
1090
|
class: "absolute! top-[18px] right-[50px] icon-dialog-full",
|
|
1079
|
-
title:
|
|
1080
|
-
}, null, 8, ["name", "title"])) :
|
|
1091
|
+
title: s.value ? "退出全屏" : "全屏"
|
|
1092
|
+
}, null, 8, ["name", "title"])) : C("v-if", !0)
|
|
1081
1093
|
]),
|
|
1082
|
-
default:
|
|
1083
|
-
|
|
1094
|
+
default: S(() => [
|
|
1095
|
+
$(a.$slots, "default")
|
|
1084
1096
|
]),
|
|
1085
1097
|
_: 2
|
|
1086
1098
|
/* DYNAMIC */
|
|
1087
1099
|
}, [
|
|
1088
1100
|
a.$slots.footer ? {
|
|
1089
1101
|
name: "footer",
|
|
1090
|
-
fn:
|
|
1091
|
-
|
|
1102
|
+
fn: S(() => [
|
|
1103
|
+
$(a.$slots, "footer")
|
|
1092
1104
|
]),
|
|
1093
1105
|
key: "0"
|
|
1094
1106
|
} : void 0
|
|
@@ -1096,135 +1108,135 @@ const x6 = /* @__PURE__ */ A(b6, [["__scopeId", "data-v-79f49df8"]]), S6 = { cla
|
|
|
1096
1108
|
};
|
|
1097
1109
|
}
|
|
1098
1110
|
});
|
|
1099
|
-
const
|
|
1100
|
-
function
|
|
1101
|
-
function n(
|
|
1102
|
-
return
|
|
1103
|
-
a(
|
|
1111
|
+
const I6 = O(B6);
|
|
1112
|
+
function M6(t, e, o, s) {
|
|
1113
|
+
function n(i) {
|
|
1114
|
+
return i instanceof o ? i : new o(function(a) {
|
|
1115
|
+
a(i);
|
|
1104
1116
|
});
|
|
1105
1117
|
}
|
|
1106
|
-
return new (o || (o = Promise))(function(
|
|
1107
|
-
function h
|
|
1118
|
+
return new (o || (o = Promise))(function(i, a) {
|
|
1119
|
+
function p(h) {
|
|
1108
1120
|
try {
|
|
1109
|
-
|
|
1110
|
-
} catch (
|
|
1111
|
-
a(
|
|
1121
|
+
l(s.next(h));
|
|
1122
|
+
} catch (d) {
|
|
1123
|
+
a(d);
|
|
1112
1124
|
}
|
|
1113
1125
|
}
|
|
1114
|
-
function
|
|
1126
|
+
function v(h) {
|
|
1115
1127
|
try {
|
|
1116
|
-
|
|
1117
|
-
} catch (
|
|
1118
|
-
a(
|
|
1128
|
+
l(s.throw(h));
|
|
1129
|
+
} catch (d) {
|
|
1130
|
+
a(d);
|
|
1119
1131
|
}
|
|
1120
1132
|
}
|
|
1121
|
-
function
|
|
1122
|
-
|
|
1133
|
+
function l(h) {
|
|
1134
|
+
h.done ? i(h.value) : n(h.value).then(p, v);
|
|
1123
1135
|
}
|
|
1124
|
-
|
|
1136
|
+
l((s = s.apply(t, e || [])).next());
|
|
1125
1137
|
});
|
|
1126
1138
|
}
|
|
1127
|
-
function
|
|
1139
|
+
function D6(t, e) {
|
|
1128
1140
|
var o = { label: 0, sent: function() {
|
|
1129
|
-
if (
|
|
1130
|
-
throw
|
|
1131
|
-
return
|
|
1132
|
-
}, trys: [], ops: [] },
|
|
1133
|
-
return a = { next:
|
|
1141
|
+
if (i[0] & 1)
|
|
1142
|
+
throw i[1];
|
|
1143
|
+
return i[1];
|
|
1144
|
+
}, trys: [], ops: [] }, s, n, i, a;
|
|
1145
|
+
return a = { next: p(0), throw: p(1), return: p(2) }, typeof Symbol == "function" && (a[Symbol.iterator] = function() {
|
|
1134
1146
|
return this;
|
|
1135
1147
|
}), a;
|
|
1136
|
-
function
|
|
1137
|
-
return function(
|
|
1138
|
-
return
|
|
1148
|
+
function p(l) {
|
|
1149
|
+
return function(h) {
|
|
1150
|
+
return v([l, h]);
|
|
1139
1151
|
};
|
|
1140
1152
|
}
|
|
1141
|
-
function
|
|
1142
|
-
if (
|
|
1153
|
+
function v(l) {
|
|
1154
|
+
if (s)
|
|
1143
1155
|
throw new TypeError("Generator is already executing.");
|
|
1144
|
-
for (; a && (a = 0,
|
|
1156
|
+
for (; a && (a = 0, l[0] && (o = 0)), o; )
|
|
1145
1157
|
try {
|
|
1146
|
-
if (
|
|
1147
|
-
return
|
|
1148
|
-
switch (n = 0,
|
|
1158
|
+
if (s = 1, n && (i = l[0] & 2 ? n.return : l[0] ? n.throw || ((i = n.return) && i.call(n), 0) : n.next) && !(i = i.call(n, l[1])).done)
|
|
1159
|
+
return i;
|
|
1160
|
+
switch (n = 0, i && (l = [l[0] & 2, i.value]), l[0]) {
|
|
1149
1161
|
case 0:
|
|
1150
1162
|
case 1:
|
|
1151
|
-
|
|
1163
|
+
i = l;
|
|
1152
1164
|
break;
|
|
1153
1165
|
case 4:
|
|
1154
|
-
return o.label++, { value:
|
|
1166
|
+
return o.label++, { value: l[1], done: !1 };
|
|
1155
1167
|
case 5:
|
|
1156
|
-
o.label++, n =
|
|
1168
|
+
o.label++, n = l[1], l = [0];
|
|
1157
1169
|
continue;
|
|
1158
1170
|
case 7:
|
|
1159
|
-
|
|
1171
|
+
l = o.ops.pop(), o.trys.pop();
|
|
1160
1172
|
continue;
|
|
1161
1173
|
default:
|
|
1162
|
-
if (
|
|
1174
|
+
if (i = o.trys, !(i = i.length > 0 && i[i.length - 1]) && (l[0] === 6 || l[0] === 2)) {
|
|
1163
1175
|
o = 0;
|
|
1164
1176
|
continue;
|
|
1165
1177
|
}
|
|
1166
|
-
if (
|
|
1167
|
-
o.label =
|
|
1178
|
+
if (l[0] === 3 && (!i || l[1] > i[0] && l[1] < i[3])) {
|
|
1179
|
+
o.label = l[1];
|
|
1168
1180
|
break;
|
|
1169
1181
|
}
|
|
1170
|
-
if (
|
|
1171
|
-
o.label =
|
|
1182
|
+
if (l[0] === 6 && o.label < i[1]) {
|
|
1183
|
+
o.label = i[1], i = l;
|
|
1172
1184
|
break;
|
|
1173
1185
|
}
|
|
1174
|
-
if (
|
|
1175
|
-
o.label =
|
|
1186
|
+
if (i && o.label < i[2]) {
|
|
1187
|
+
o.label = i[2], o.ops.push(l);
|
|
1176
1188
|
break;
|
|
1177
1189
|
}
|
|
1178
|
-
|
|
1190
|
+
i[2] && o.ops.pop(), o.trys.pop();
|
|
1179
1191
|
continue;
|
|
1180
1192
|
}
|
|
1181
|
-
|
|
1182
|
-
} catch (
|
|
1183
|
-
|
|
1193
|
+
l = e.call(t, o);
|
|
1194
|
+
} catch (h) {
|
|
1195
|
+
l = [6, h], n = 0;
|
|
1184
1196
|
} finally {
|
|
1185
|
-
|
|
1197
|
+
s = i = 0;
|
|
1186
1198
|
}
|
|
1187
|
-
if (
|
|
1188
|
-
throw
|
|
1189
|
-
return { value:
|
|
1199
|
+
if (l[0] & 5)
|
|
1200
|
+
throw l[1];
|
|
1201
|
+
return { value: l[0] ? l[1] : void 0, done: !0 };
|
|
1190
1202
|
}
|
|
1191
1203
|
}
|
|
1192
|
-
var
|
|
1193
|
-
return
|
|
1194
|
-
return
|
|
1195
|
-
return [2, new Promise(function(
|
|
1204
|
+
var $6 = function(t, e) {
|
|
1205
|
+
return M6(void 0, void 0, void 0, function() {
|
|
1206
|
+
return D6(this, function(o) {
|
|
1207
|
+
return [2, new Promise(function(s, n) {
|
|
1196
1208
|
try {
|
|
1197
1209
|
if (window.DocsAPI)
|
|
1198
|
-
return
|
|
1199
|
-
var
|
|
1200
|
-
if (
|
|
1210
|
+
return s(null);
|
|
1211
|
+
var i = document.getElementById(e);
|
|
1212
|
+
if (i)
|
|
1201
1213
|
var a = setInterval(function() {
|
|
1202
|
-
var
|
|
1203
|
-
if (!
|
|
1214
|
+
var v = i.getAttribute("loading");
|
|
1215
|
+
if (!v) {
|
|
1204
1216
|
if (clearInterval(a), window.DocsAPI)
|
|
1205
|
-
return
|
|
1206
|
-
var
|
|
1207
|
-
|
|
1217
|
+
return s(null);
|
|
1218
|
+
var l = N(e, t, s, n);
|
|
1219
|
+
i.remove(), document.body.appendChild(l);
|
|
1208
1220
|
}
|
|
1209
1221
|
}, 500);
|
|
1210
1222
|
else {
|
|
1211
|
-
var
|
|
1212
|
-
document.body.appendChild(
|
|
1223
|
+
var p = N(e, t, s, n);
|
|
1224
|
+
document.body.appendChild(p);
|
|
1213
1225
|
}
|
|
1214
|
-
} catch (
|
|
1215
|
-
console.error(
|
|
1226
|
+
} catch (v) {
|
|
1227
|
+
console.error(v);
|
|
1216
1228
|
}
|
|
1217
1229
|
})];
|
|
1218
1230
|
});
|
|
1219
1231
|
});
|
|
1220
|
-
},
|
|
1232
|
+
}, N = function(t, e, o, s) {
|
|
1221
1233
|
var n = document.createElement("script");
|
|
1222
1234
|
return n.id = t, n.type = "text/javascript", n.src = e, n.async = !0, n.onload = function() {
|
|
1223
1235
|
n.removeAttribute("loading"), o(null);
|
|
1224
|
-
}, n.onerror = function(
|
|
1225
|
-
n.removeAttribute("loading"),
|
|
1236
|
+
}, n.onerror = function(i) {
|
|
1237
|
+
n.removeAttribute("loading"), s(i);
|
|
1226
1238
|
}, n.setAttribute("loading", ""), n;
|
|
1227
|
-
},
|
|
1239
|
+
}, j = F({
|
|
1228
1240
|
name: "DocumentEditor",
|
|
1229
1241
|
props: {
|
|
1230
1242
|
id: {
|
|
@@ -1279,7 +1291,7 @@ var M6 = function(t, e) {
|
|
|
1279
1291
|
var t = this, e = this.documentServerUrl;
|
|
1280
1292
|
e.endsWith("/") || (e += "/");
|
|
1281
1293
|
var o = "".concat(e, "web-apps/apps/api/documents/api.js");
|
|
1282
|
-
|
|
1294
|
+
$6(o, "onlyoffice-api-script").then(function() {
|
|
1283
1295
|
return t.onLoad();
|
|
1284
1296
|
}).catch(function() {
|
|
1285
1297
|
t.onError(-2);
|
|
@@ -1328,7 +1340,7 @@ var M6 = function(t, e) {
|
|
|
1328
1340
|
return;
|
|
1329
1341
|
}
|
|
1330
1342
|
!((e = window == null ? void 0 : window.DocEditor) === null || e === void 0) && e.instances || (window.DocEditor = { instances: {} });
|
|
1331
|
-
var
|
|
1343
|
+
var s = Object.assign({
|
|
1332
1344
|
document: {
|
|
1333
1345
|
fileType: this.document_fileType,
|
|
1334
1346
|
title: this.document_title
|
|
@@ -1363,10 +1375,10 @@ var M6 = function(t, e) {
|
|
|
1363
1375
|
height: this.height,
|
|
1364
1376
|
type: this.type,
|
|
1365
1377
|
width: this.width
|
|
1366
|
-
}, this.config || {}), n = window.DocsAPI.DocEditor(o,
|
|
1378
|
+
}, this.config || {}), n = window.DocsAPI.DocEditor(o, s);
|
|
1367
1379
|
window.DocEditor.instances[o] = n;
|
|
1368
|
-
} catch (
|
|
1369
|
-
console.error(
|
|
1380
|
+
} catch (i) {
|
|
1381
|
+
console.error(i), this.onError(-1);
|
|
1370
1382
|
}
|
|
1371
1383
|
},
|
|
1372
1384
|
onError: function(t) {
|
|
@@ -1393,13 +1405,13 @@ var M6 = function(t, e) {
|
|
|
1393
1405
|
}
|
|
1394
1406
|
}
|
|
1395
1407
|
});
|
|
1396
|
-
const
|
|
1397
|
-
function
|
|
1398
|
-
return r(),
|
|
1408
|
+
const q6 = ["id"];
|
|
1409
|
+
function H6(t, e, o, s, n, i) {
|
|
1410
|
+
return r(), u("div", { id: t.id }, null, 8, q6);
|
|
1399
1411
|
}
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
const
|
|
1412
|
+
j.render = H6;
|
|
1413
|
+
j.__file = "src/components/DocumentEditor.vue";
|
|
1414
|
+
const O6 = /* @__PURE__ */ F({
|
|
1403
1415
|
__name: "IkOnlyOffice",
|
|
1404
1416
|
props: {
|
|
1405
1417
|
// 文件服务器的服务的地址
|
|
@@ -1420,26 +1432,26 @@ const $6 = /* @__PURE__ */ _({
|
|
|
1420
1432
|
}
|
|
1421
1433
|
},
|
|
1422
1434
|
setup(t) {
|
|
1423
|
-
const e = t, o =
|
|
1435
|
+
const e = t, o = V({
|
|
1424
1436
|
width: "100%",
|
|
1425
1437
|
height: "100%",
|
|
1426
1438
|
...e.configOptions || {},
|
|
1427
1439
|
...e.configOptions
|
|
1428
|
-
}),
|
|
1440
|
+
}), s = () => {
|
|
1429
1441
|
console.info("文档加载完成", e.configOptions);
|
|
1430
1442
|
};
|
|
1431
|
-
return (n,
|
|
1443
|
+
return (n, i) => (r(), u(
|
|
1432
1444
|
"div",
|
|
1433
1445
|
{
|
|
1434
|
-
style:
|
|
1446
|
+
style: z({ height: e.officeHeight })
|
|
1435
1447
|
},
|
|
1436
1448
|
[
|
|
1437
|
-
|
|
1449
|
+
x(g(j), {
|
|
1438
1450
|
id: `${(/* @__PURE__ */ new Date()).getTime()}`,
|
|
1439
1451
|
ref: "editorRef",
|
|
1440
1452
|
"document-server-url": t.documentServerUrl,
|
|
1441
1453
|
config: o.value,
|
|
1442
|
-
events_onDocumentReady:
|
|
1454
|
+
events_onDocumentReady: s
|
|
1443
1455
|
}, null, 8, ["id", "document-server-url", "config"])
|
|
1444
1456
|
],
|
|
1445
1457
|
4
|
|
@@ -1447,7 +1459,7 @@ const $6 = /* @__PURE__ */ _({
|
|
|
1447
1459
|
));
|
|
1448
1460
|
}
|
|
1449
1461
|
});
|
|
1450
|
-
const
|
|
1462
|
+
const E6 = /* @__PURE__ */ U(O6, [["__scopeId", "data-v-98d51ef9"]]), A6 = O(E6), T6 = ["onClick"], P6 = { class: "text" }, U6 = { class: "fileName" }, j6 = { class: "size" }, L6 = /* @__PURE__ */ F({
|
|
1451
1463
|
__name: "IkPreviewFile",
|
|
1452
1464
|
props: {
|
|
1453
1465
|
list: {
|
|
@@ -1517,80 +1529,80 @@ const q6 = /* @__PURE__ */ A($6, [["__scopeId", "data-v-98d51ef9"]]), H6 = I(q6)
|
|
|
1517
1529
|
}
|
|
1518
1530
|
},
|
|
1519
1531
|
setup(t) {
|
|
1520
|
-
const e = t, o =
|
|
1532
|
+
const e = t, { cLoadUrl: o, cOnlyofficeConfig: s } = d3(e), n = m(() => ({
|
|
1521
1533
|
name: "name",
|
|
1522
1534
|
url: "url",
|
|
1523
1535
|
suffix: "suffix",
|
|
1524
1536
|
size: "size",
|
|
1525
1537
|
...e.field
|
|
1526
|
-
})),
|
|
1527
|
-
var
|
|
1528
|
-
|
|
1529
|
-
...
|
|
1530
|
-
name:
|
|
1531
|
-
url:
|
|
1532
|
-
|
|
1533
|
-
|
|
1538
|
+
})), i = V({}), a = V(!1), p = (d) => {
|
|
1539
|
+
var w, y;
|
|
1540
|
+
i.value = {
|
|
1541
|
+
...d,
|
|
1542
|
+
name: d.name,
|
|
1543
|
+
url: A(
|
|
1544
|
+
o.value,
|
|
1545
|
+
d.url || ((y = (w = d == null ? void 0 : d.response) == null ? void 0 : w.data) == null ? void 0 : y.id) || (d == null ? void 0 : d.id)
|
|
1534
1546
|
)
|
|
1535
|
-
},
|
|
1536
|
-
},
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1547
|
+
}, a.value = !0;
|
|
1548
|
+
}, v = (d) => {
|
|
1549
|
+
a3.downloadFile(
|
|
1550
|
+
A(
|
|
1551
|
+
o.value,
|
|
1552
|
+
d[n.value.url] || d.attachmentId || d.id
|
|
1541
1553
|
),
|
|
1542
|
-
|
|
1554
|
+
d[n.value.name] || d.attachmentName
|
|
1543
1555
|
);
|
|
1544
|
-
},
|
|
1545
|
-
...
|
|
1546
|
-
name:
|
|
1547
|
-
size:
|
|
1548
|
-
suffix:
|
|
1556
|
+
}, l = m(() => l3.isNumber(e.width) ? `${e.width}px` : e.width), h = m(() => e.list.map((d) => ({
|
|
1557
|
+
...d,
|
|
1558
|
+
name: d[n.value.name] || d.attachmentName,
|
|
1559
|
+
size: d[n.value.size] || d.fileSize || d.attachmentSize,
|
|
1560
|
+
suffix: d[n.value.suffix] || d.attachmentSuffix
|
|
1549
1561
|
})));
|
|
1550
|
-
return (
|
|
1551
|
-
var
|
|
1552
|
-
return r(),
|
|
1553
|
-
|
|
1562
|
+
return (d, w) => {
|
|
1563
|
+
var y, _, B;
|
|
1564
|
+
return r(), u(
|
|
1565
|
+
T,
|
|
1554
1566
|
null,
|
|
1555
1567
|
[
|
|
1556
|
-
(
|
|
1557
|
-
|
|
1568
|
+
(y = t.list) != null && y.length ? (r(!0), u(
|
|
1569
|
+
T,
|
|
1558
1570
|
{ key: 0 },
|
|
1559
|
-
|
|
1560
|
-
var
|
|
1561
|
-
return r(),
|
|
1571
|
+
n3(h.value, (k, f) => {
|
|
1572
|
+
var I;
|
|
1573
|
+
return r(), u(
|
|
1562
1574
|
"div",
|
|
1563
1575
|
{
|
|
1564
|
-
class:
|
|
1565
|
-
key:
|
|
1566
|
-
style:
|
|
1567
|
-
marginBottom:
|
|
1568
|
-
width:
|
|
1576
|
+
class: b(["iking-privew-annex", { "is-bg": t.showBg }]),
|
|
1577
|
+
key: f,
|
|
1578
|
+
style: z({
|
|
1579
|
+
marginBottom: f == ((I = t.list) == null ? void 0 : I.length) - 1 ? "0" : "10px",
|
|
1580
|
+
width: l.value
|
|
1569
1581
|
})
|
|
1570
1582
|
},
|
|
1571
1583
|
[
|
|
1572
1584
|
c("div", {
|
|
1573
1585
|
class: "file-card",
|
|
1574
|
-
onClick: (
|
|
1586
|
+
onClick: (M) => p(k)
|
|
1575
1587
|
}, [
|
|
1576
|
-
|
|
1577
|
-
file:
|
|
1578
|
-
style:
|
|
1588
|
+
x(g6, {
|
|
1589
|
+
file: k,
|
|
1590
|
+
style: z({ height: `${t.iconSize}px` }),
|
|
1579
1591
|
class: "ikui-w-auto",
|
|
1580
|
-
fields:
|
|
1592
|
+
fields: n.value
|
|
1581
1593
|
}, null, 8, ["file", "style", "fields"]),
|
|
1582
|
-
c("div",
|
|
1594
|
+
c("div", P6, [
|
|
1583
1595
|
c(
|
|
1584
1596
|
"div",
|
|
1585
|
-
|
|
1586
|
-
|
|
1597
|
+
U6,
|
|
1598
|
+
q(k.name),
|
|
1587
1599
|
1
|
|
1588
1600
|
/* TEXT */
|
|
1589
1601
|
),
|
|
1590
1602
|
c(
|
|
1591
1603
|
"div",
|
|
1592
|
-
|
|
1593
|
-
|
|
1604
|
+
j6,
|
|
1605
|
+
q(g(c3)(k.size)),
|
|
1594
1606
|
1
|
|
1595
1607
|
/* TEXT */
|
|
1596
1608
|
)
|
|
@@ -1598,28 +1610,28 @@ const q6 = /* @__PURE__ */ A($6, [["__scopeId", "data-v-98d51ef9"]]), H6 = I(q6)
|
|
|
1598
1610
|
c(
|
|
1599
1611
|
"div",
|
|
1600
1612
|
{
|
|
1601
|
-
class:
|
|
1613
|
+
class: b(["flex flex-center", { "hover-show": t.iconHoverShow }])
|
|
1602
1614
|
},
|
|
1603
1615
|
[
|
|
1604
|
-
|
|
1616
|
+
x(g(H), {
|
|
1605
1617
|
name: "iksvg_daochu",
|
|
1606
|
-
onClick:
|
|
1618
|
+
onClick: o3((M) => v(k), ["stop"]),
|
|
1607
1619
|
bg: t.showBg,
|
|
1608
1620
|
size: t.showBg ? "default" : 20
|
|
1609
1621
|
}, null, 8, ["onClick", "bg", "size"]),
|
|
1610
|
-
|
|
1622
|
+
x(g(H), {
|
|
1611
1623
|
name: "iksvg_yulan",
|
|
1612
1624
|
bg: t.showBg,
|
|
1613
1625
|
size: t.showBg ? "default" : 20
|
|
1614
1626
|
}, null, 8, ["bg", "size"]),
|
|
1615
|
-
|
|
1616
|
-
data: { ...
|
|
1627
|
+
$(d.$slots, "operation", {
|
|
1628
|
+
data: { ...k, findex: f }
|
|
1617
1629
|
})
|
|
1618
1630
|
],
|
|
1619
1631
|
2
|
|
1620
1632
|
/* CLASS */
|
|
1621
1633
|
)
|
|
1622
|
-
], 8,
|
|
1634
|
+
], 8, T6)
|
|
1623
1635
|
],
|
|
1624
1636
|
6
|
|
1625
1637
|
/* CLASS, STYLE */
|
|
@@ -1627,15 +1639,15 @@ const q6 = /* @__PURE__ */ A($6, [["__scopeId", "data-v-98d51ef9"]]), H6 = I(q6)
|
|
|
1627
1639
|
}),
|
|
1628
1640
|
128
|
|
1629
1641
|
/* KEYED_FRAGMENT */
|
|
1630
|
-
)) :
|
|
1631
|
-
|
|
1632
|
-
show:
|
|
1633
|
-
"onUpdate:show":
|
|
1634
|
-
loadUrl:
|
|
1635
|
-
file:
|
|
1636
|
-
onlyofficeServer: t.onlyofficeServer,
|
|
1637
|
-
onlyOfficeConfig:
|
|
1638
|
-
onlyOfficeAccept: t.onlyOfficeAccept
|
|
1642
|
+
)) : C("v-if", !0),
|
|
1643
|
+
x(g(f3), {
|
|
1644
|
+
show: a.value,
|
|
1645
|
+
"onUpdate:show": w[0] || (w[0] = (k) => a.value = k),
|
|
1646
|
+
loadUrl: g(o),
|
|
1647
|
+
file: i.value,
|
|
1648
|
+
onlyofficeServer: ((_ = g(s)) == null ? void 0 : _.serverUrl) || t.onlyofficeServer,
|
|
1649
|
+
onlyOfficeConfig: g(s),
|
|
1650
|
+
onlyOfficeAccept: ((B = g(s)) == null ? void 0 : B.accept) || t.onlyOfficeAccept
|
|
1639
1651
|
}, null, 8, ["show", "loadUrl", "file", "onlyofficeServer", "onlyOfficeConfig", "onlyOfficeAccept"])
|
|
1640
1652
|
],
|
|
1641
1653
|
64
|
|
@@ -1644,8 +1656,8 @@ const q6 = /* @__PURE__ */ A($6, [["__scopeId", "data-v-98d51ef9"]]), H6 = I(q6)
|
|
|
1644
1656
|
};
|
|
1645
1657
|
}
|
|
1646
1658
|
});
|
|
1647
|
-
const
|
|
1659
|
+
const K6 = O(L6);
|
|
1648
1660
|
export {
|
|
1649
|
-
|
|
1650
|
-
|
|
1661
|
+
K6 as IkPreviewFile,
|
|
1662
|
+
K6 as default
|
|
1651
1663
|
};
|