@kq_npm/client3d_webgl_vue 4.1.3-beta → 4.1.4-beta
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/clientPrint/index.js +354 -7
- package/index.js +375 -15
- package/package.json +1 -1
- package/scenceview/index.js +453 -18
package/clientPrint/index.js
CHANGED
|
@@ -1,10 +1,343 @@
|
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
2
|
/******/ var __webpack_modules__ = ({
|
|
4
3
|
|
|
4
|
+
/***/ 3961:
|
|
5
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
6
|
+
|
|
7
|
+
__webpack_require__(4271);
|
|
8
|
+
|
|
9
|
+
!function (e, t) {
|
|
10
|
+
true ? module.exports = t() : 0;
|
|
11
|
+
}(this, function () {
|
|
12
|
+
"use strict";
|
|
13
|
+
|
|
14
|
+
class e {
|
|
15
|
+
constructor(e) {
|
|
16
|
+
this.standards = {
|
|
17
|
+
strict: "strict",
|
|
18
|
+
loose: "loose",
|
|
19
|
+
html5: "html5"
|
|
20
|
+
}, this.previewBody = null, this.close = null, this.previewBodyUtilPrintBtn = null, this.selectArray = [], this.counter = 0, this.settings = {
|
|
21
|
+
standard: this.standards.html5
|
|
22
|
+
}, Object.assign(this.settings, e), this.init();
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
init() {
|
|
26
|
+
this.counter++, this.settings.id = `printArea_${this.counter}`;
|
|
27
|
+
let e = "";
|
|
28
|
+
this.settings.url && !this.settings.asyncUrl && (e = this.settings.url);
|
|
29
|
+
let t = this;
|
|
30
|
+
if (this.settings.asyncUrl) return void t.settings.asyncUrl(function (e) {
|
|
31
|
+
let i = t.getPrintWindow(e);
|
|
32
|
+
t.settings.preview ? t.previewIfrmaeLoad() : t.print(i);
|
|
33
|
+
}, t.settings.vue);
|
|
34
|
+
let i = this.getPrintWindow(e);
|
|
35
|
+
this.settings.url || this.write(i.doc), this.settings.preview ? this.previewIfrmaeLoad() : this.print(i);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
addEvent(e, t, i) {
|
|
39
|
+
e.addEventListener ? e.addEventListener(t, i, !1) : e.attachEvent ? e.attachEvent("on" + t, i) : e["on" + t] = i;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
previewIfrmaeLoad() {
|
|
43
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
44
|
+
|
|
45
|
+
if (e) {
|
|
46
|
+
let t = this,
|
|
47
|
+
i = e.querySelector("iframe");
|
|
48
|
+
this.settings.previewBeforeOpenCallback(), this.addEvent(i, "load", function () {
|
|
49
|
+
t.previewBoxShow(), t.removeCanvasImg(), t.settings.previewOpenCallback();
|
|
50
|
+
}), this.addEvent(e.querySelector(".previewBodyUtilPrintBtn"), "click", function () {
|
|
51
|
+
t.settings.beforeOpenCallback(), t.settings.openCallback(), i.contentWindow.print(), t.settings.closeCallback();
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
removeCanvasImg() {
|
|
57
|
+
let e = this;
|
|
58
|
+
|
|
59
|
+
try {
|
|
60
|
+
if (e.elsdom) {
|
|
61
|
+
let t = e.elsdom.querySelectorAll(".canvasImg");
|
|
62
|
+
|
|
63
|
+
for (let e = 0; e < t.length; e++) t[e].remove();
|
|
64
|
+
}
|
|
65
|
+
} catch (t) {
|
|
66
|
+
console.log(t);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
print(e) {
|
|
71
|
+
var t = this;
|
|
72
|
+
let i = document.getElementById(this.settings.id) || e.f,
|
|
73
|
+
l = document.getElementById(this.settings.id).contentWindow || e.f.contentWindow;
|
|
74
|
+
t.settings.beforeOpenCallback(), t.addEvent(i, "load", function () {
|
|
75
|
+
l.focus(), t.settings.openCallback(), l.print(), i.remove(), t.settings.closeCallback(), t.removeCanvasImg();
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
write(e) {
|
|
80
|
+
e.open(), e.write(`${this.docType()}<html>${this.getHead()}${this.getBody()}</html>`), e.close();
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
docType() {
|
|
84
|
+
return this.settings.standard === this.standards.html5 ? "<!DOCTYPE html>" : `<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01${this.settings.standard === this.standards.loose ? " Transitional" : ""}//EN" "http://www.w3.org/TR/html4/${this.settings.standard === this.standards.loose ? "loose" : "strict"}.dtd">`;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
getHead() {
|
|
88
|
+
let e = "",
|
|
89
|
+
t = "",
|
|
90
|
+
i = "";
|
|
91
|
+
this.settings.extraHead && this.settings.extraHead.replace(/([^,]+)/g, t => {
|
|
92
|
+
e += t;
|
|
93
|
+
}), [].forEach.call(document.querySelectorAll("link"), function (e) {
|
|
94
|
+
e.href.indexOf(".css") >= 0 && (t += `<link type="text/css" rel="stylesheet" href="${e.href}" >`);
|
|
95
|
+
});
|
|
96
|
+
let l = document.styleSheets;
|
|
97
|
+
if (l && l.length > 0) for (let r = 0; r < l.length; r++) try {
|
|
98
|
+
if (l[r].cssRules || l[r].rules) {
|
|
99
|
+
let e = l[r].cssRules || l[r].rules;
|
|
100
|
+
|
|
101
|
+
for (let t = 0; t < e.length; t++) i += e[t].cssText;
|
|
102
|
+
}
|
|
103
|
+
} catch (s) {
|
|
104
|
+
console.log(l[r].href + s);
|
|
105
|
+
}
|
|
106
|
+
return this.settings.extraCss && this.settings.extraCss.replace(/([^,\s]+)/g, e => {
|
|
107
|
+
t += `<link type="text/css" rel="stylesheet" href="${e}">`;
|
|
108
|
+
}), `<head><title>${this.settings.popTitle}</title>${e}${t}<style type="text/css">${i}</style></head>`;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
getBody() {
|
|
112
|
+
let e = this.settings.ids;
|
|
113
|
+
return e = e.replace(new RegExp("#", "g"), ""), this.elsdom = this.beforeHanler(document.getElementById(e)), "<body>" + this.getFormData(this.elsdom).outerHTML + "</body>";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
beforeHanler(e) {
|
|
117
|
+
let t = e.querySelectorAll("canvas");
|
|
118
|
+
|
|
119
|
+
for (let i = 0; i < t.length; i++) if (!t[i].style.display) {
|
|
120
|
+
let e = t[i].parentNode,
|
|
121
|
+
l = t[i].toDataURL("image/png"),
|
|
122
|
+
s = new Image(); //zl 0822 样式赋值
|
|
123
|
+
|
|
124
|
+
let a = t[i].attributes;
|
|
125
|
+
|
|
126
|
+
for (let z = 0; z < a.length; z++) {
|
|
127
|
+
switch (a[z].name) {
|
|
128
|
+
case 'class':
|
|
129
|
+
s['className'] = a[z].value;
|
|
130
|
+
break;
|
|
131
|
+
|
|
132
|
+
case 'width':
|
|
133
|
+
case 'height':
|
|
134
|
+
s[a[z].name] = a[z].value;
|
|
135
|
+
break;
|
|
136
|
+
|
|
137
|
+
case 'style':
|
|
138
|
+
const styles = a[z].value.split(';');
|
|
139
|
+
|
|
140
|
+
for (let zz = 0; zz < styles.length; zz++) {
|
|
141
|
+
if (styles[zz].trim() === '') continue;
|
|
142
|
+
let ss = styles[zz].split(':'),
|
|
143
|
+
s1 = ss[0].trim(),
|
|
144
|
+
s2 = ss[1].trim();
|
|
145
|
+
s.style[s1] = s2;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
break;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
s.className += " canvasImg", s.style.display = "none", s.src = l, e.appendChild(s);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return e;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
getFormData(e) {
|
|
159
|
+
let t = e.cloneNode(!0),
|
|
160
|
+
i = t.querySelectorAll("input,select,textarea"),
|
|
161
|
+
l = t.querySelectorAll(".canvasImg,canvas"),
|
|
162
|
+
s = -1;
|
|
163
|
+
|
|
164
|
+
for (let r = 0; r < l.length; r++) {
|
|
165
|
+
let e = l[r].parentNode,
|
|
166
|
+
t = l[r];
|
|
167
|
+
"canvas" === t.tagName.toLowerCase() ? e.removeChild(t) : t.style.display = "block";
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
for (let r = 0; r < i.length; r++) {
|
|
171
|
+
let t = i[r],
|
|
172
|
+
l = t.getAttribute("type"),
|
|
173
|
+
n = i[r];
|
|
174
|
+
if (l || (l = "SELECT" === t.tagName ? "select" : "TEXTAREA" === t.tagName ? "textarea" : ""), "INPUT" === t.tagName) "radio" === l || "checkbox" === l ? t.checked && n.setAttribute("checked", t.checked) : (n.value = t.value, n.setAttribute("value", t.value));else if ("select" === l) {
|
|
175
|
+
s++;
|
|
176
|
+
|
|
177
|
+
for (let i = 0; i < e.querySelectorAll("select").length; i++) {
|
|
178
|
+
let l = e.querySelectorAll("select")[i];
|
|
179
|
+
|
|
180
|
+
if (!l.getAttribute("newbs") && l.setAttribute("newbs", i), l.getAttribute("newbs") == s) {
|
|
181
|
+
let i = e.querySelectorAll("select")[s].selectedIndex;
|
|
182
|
+
t.options[i].setAttribute("selected", !0);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
} else n.innerHTML = t.value, n.setAttribute("html", t.value);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
return t;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
getPrintWindow(e) {
|
|
192
|
+
var t = this.Iframe(e);
|
|
193
|
+
return {
|
|
194
|
+
f: t,
|
|
195
|
+
win: t.contentWindow || t,
|
|
196
|
+
doc: t.doc
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
previewBoxShow() {
|
|
201
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
202
|
+
e && (document.querySelector("html").setAttribute("style", "overflow: hidden"), e.style.display = "block");
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
previewBoxHide() {
|
|
206
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
207
|
+
e && (document.querySelector("html").setAttribute("style", "overflow: visible;"), e.querySelector("iframe") && e.querySelector("iframe").remove(), e.style.display = "none");
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
previewBox() {
|
|
211
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox"),
|
|
212
|
+
t = "previewBody";
|
|
213
|
+
if (e) return e.querySelector("iframe") && e.querySelector("iframe").remove(), {
|
|
214
|
+
close: e.querySelector(".previewClose"),
|
|
215
|
+
previewBody: e.querySelector(".previewBody")
|
|
216
|
+
};
|
|
217
|
+
let i = document.createElement("div");
|
|
218
|
+
i.setAttribute("id", "vue-pirnt-nb-previewBox"), i.setAttribute("style", "position: fixed;top: 0px;left: 0px;width: 100%;height: 100%;background: white;display:none"), i.style.zIndex = this.settings.zIndex;
|
|
219
|
+
let l = document.createElement("div");
|
|
220
|
+
l.setAttribute("class", "previewHeader"), l.setAttribute("style", "padding: 5px 20px;"), l.innerHTML = this.settings.previewTitle, i.appendChild(l), this.close = document.createElement("div");
|
|
221
|
+
let s = this.close;
|
|
222
|
+
s.setAttribute("class", "previewClose"), s.setAttribute("style", "position: absolute;top: 5px;right: 20px;width: 25px;height: 20px;cursor: pointer;");
|
|
223
|
+
let r = document.createElement("div"),
|
|
224
|
+
n = document.createElement("div");
|
|
225
|
+
r.setAttribute("class", "closeBefore"), r.setAttribute("style", "position: absolute;width: 3px;height: 100%;background: #040404;transform: rotate(45deg); top: 0px;left: 50%;"), n.setAttribute("class", "closeAfter"), n.setAttribute("style", "position: absolute;width: 3px;height: 100%;background: #040404;transform: rotate(-45deg); top: 0px;left: 50%;"), s.appendChild(r), s.appendChild(n), l.appendChild(s), this.previewBody = document.createElement("div");
|
|
226
|
+
let o = this.previewBody;
|
|
227
|
+
o.setAttribute("class", t), o.setAttribute("style", "display: flex;flex-direction: column; height: 100%;"), i.appendChild(o);
|
|
228
|
+
let a = document.createElement("div");
|
|
229
|
+
a.setAttribute("class", "previewBodyUtil"), a.setAttribute("style", "height: 32px;background: #474747;position: relative;"), o.appendChild(a), this.previewBodyUtilPrintBtn = document.createElement("div");
|
|
230
|
+
let d = this.previewBodyUtilPrintBtn;
|
|
231
|
+
return d.setAttribute("class", "previewBodyUtilPrintBtn"), d.innerHTML = this.settings.previewPrintBtnLabel, d.setAttribute("style", "position: absolute;padding: 2px 10px;margin-top: 3px;left: 24px;font-size: 14px;color: white;cursor: pointer;background-color: rgba(0,0,0,.12);background-image: linear-gradient(hsla(0,0%,100%,.05),hsla(0,0%,100%,0));background-clip: padding-box;border: 1px solid rgba(0,0,0,.35);border-color: rgba(0,0,0,.32) rgba(0,0,0,.38) rgba(0,0,0,.42);box-shadow: inset 0 1px 0 hsla(0,0%,100%,.05), inset 0 0 1px hsla(0,0%,100%,.15), 0 1px 0 hsla(0,0%,100%,.05);"), a.appendChild(d), document.body.appendChild(i), {
|
|
232
|
+
close: this.close,
|
|
233
|
+
previewBody: this.previewBody
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
iframeBox(e, t) {
|
|
238
|
+
let i = document.createElement("iframe");
|
|
239
|
+
return i.style.border = "0px", i.style.position = "absolute", i.style.width = "0px", i.style.height = "0px", i.style.right = "0px", i.style.top = "0px", i.setAttribute("id", e), i.setAttribute("src", t), i;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
Iframe(e) {
|
|
243
|
+
let t = this.settings.id;
|
|
244
|
+
e = e || new Date().getTime();
|
|
245
|
+
let i = this,
|
|
246
|
+
l = this.iframeBox(t, e);
|
|
247
|
+
|
|
248
|
+
try {
|
|
249
|
+
if (this.settings.preview) {
|
|
250
|
+
l.setAttribute("style", "border: 0px;flex: 1;");
|
|
251
|
+
let e = this.previewBox(),
|
|
252
|
+
t = e.previewBody,
|
|
253
|
+
s = e.close;
|
|
254
|
+
t.appendChild(l), this.addEvent(s, "click", function () {
|
|
255
|
+
i.previewBoxHide();
|
|
256
|
+
});
|
|
257
|
+
} else document.body.appendChild(l);
|
|
258
|
+
|
|
259
|
+
l.doc = null, l.doc = l.contentDocument ? l.contentDocument : l.contentWindow ? l.contentWindow.document : l.document;
|
|
260
|
+
} catch (s) {
|
|
261
|
+
throw new Error(s + ". iframes may not be supported in this browser.");
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
if (null == l.doc) throw new Error("Cannot find document.");
|
|
265
|
+
return l;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
var t = {
|
|
271
|
+
directiveName: "print",
|
|
272
|
+
|
|
273
|
+
mounted(t, i, l) {
|
|
274
|
+
let s = i.instance,
|
|
275
|
+
r = "";
|
|
276
|
+
var n, o, a;
|
|
277
|
+
o = "click", a = () => {
|
|
278
|
+
if ("string" == typeof i.value) r = i.value;else {
|
|
279
|
+
if ("object" != typeof i.value || !i.value.id) return void window.print();
|
|
280
|
+
{
|
|
281
|
+
r = i.value.id;
|
|
282
|
+
let e = r.replace(new RegExp("#", "g"), "");
|
|
283
|
+
document.getElementById(e) || (console.log("id in Error"), r = "");
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
d();
|
|
287
|
+
}, (n = t).addEventListener ? n.addEventListener(o, a, !1) : n.attachEvent ? n.attachEvent("on" + o, a) : n["on" + o] = a;
|
|
288
|
+
|
|
289
|
+
const d = () => {
|
|
290
|
+
new e({
|
|
291
|
+
ids: r,
|
|
292
|
+
vue: s,
|
|
293
|
+
url: i.value.url,
|
|
294
|
+
standard: "",
|
|
295
|
+
extraHead: i.value.extraHead,
|
|
296
|
+
extraCss: i.value.extraCss,
|
|
297
|
+
zIndex: i.value.zIndex || 20002,
|
|
298
|
+
previewTitle: i.value.previewTitle || "打印预览",
|
|
299
|
+
previewPrintBtnLabel: i.value.previewPrintBtnLabel || "打印",
|
|
300
|
+
popTitle: i.value.popTitle,
|
|
301
|
+
preview: i.value.preview || !1,
|
|
302
|
+
asyncUrl: i.value.asyncUrl,
|
|
303
|
+
|
|
304
|
+
previewBeforeOpenCallback() {
|
|
305
|
+
i.value.previewBeforeOpenCallback && i.value.previewBeforeOpenCallback(s);
|
|
306
|
+
},
|
|
307
|
+
|
|
308
|
+
previewOpenCallback() {
|
|
309
|
+
i.value.previewOpenCallback && i.value.previewOpenCallback(s);
|
|
310
|
+
},
|
|
311
|
+
|
|
312
|
+
openCallback() {
|
|
313
|
+
i.value.openCallback && i.value.openCallback(s);
|
|
314
|
+
},
|
|
315
|
+
|
|
316
|
+
closeCallback() {
|
|
317
|
+
i.value.closeCallback && i.value.closeCallback(s);
|
|
318
|
+
},
|
|
319
|
+
|
|
320
|
+
beforeOpenCallback() {
|
|
321
|
+
i.value.beforeOpenCallback && i.value.beforeOpenCallback(s);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
});
|
|
325
|
+
};
|
|
326
|
+
},
|
|
327
|
+
|
|
328
|
+
install: function (e) {
|
|
329
|
+
e.directive("print", t);
|
|
330
|
+
}
|
|
331
|
+
};
|
|
332
|
+
return t;
|
|
333
|
+
});
|
|
334
|
+
|
|
335
|
+
/***/ }),
|
|
336
|
+
|
|
5
337
|
/***/ 8422:
|
|
6
338
|
/***/ (function(module) {
|
|
7
339
|
|
|
340
|
+
"use strict";
|
|
8
341
|
module.exports = require("@element-plus/icons-vue");
|
|
9
342
|
|
|
10
343
|
/***/ }),
|
|
@@ -12,13 +345,23 @@ module.exports = require("@element-plus/icons-vue");
|
|
|
12
345
|
/***/ 3600:
|
|
13
346
|
/***/ (function(module) {
|
|
14
347
|
|
|
348
|
+
"use strict";
|
|
15
349
|
module.exports = require("core-js/modules/es.array.includes.js");
|
|
16
350
|
|
|
17
351
|
/***/ }),
|
|
18
352
|
|
|
353
|
+
/***/ 4271:
|
|
354
|
+
/***/ (function(module) {
|
|
355
|
+
|
|
356
|
+
"use strict";
|
|
357
|
+
module.exports = require("core-js/modules/es.error.cause.js");
|
|
358
|
+
|
|
359
|
+
/***/ }),
|
|
360
|
+
|
|
19
361
|
/***/ 7080:
|
|
20
362
|
/***/ (function(module) {
|
|
21
363
|
|
|
364
|
+
"use strict";
|
|
22
365
|
module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
23
366
|
|
|
24
367
|
/***/ }),
|
|
@@ -26,6 +369,7 @@ module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
|
26
369
|
/***/ 1088:
|
|
27
370
|
/***/ (function(module) {
|
|
28
371
|
|
|
372
|
+
"use strict";
|
|
29
373
|
module.exports = require("@kq_npm/client_common_vue/_types/global-event");
|
|
30
374
|
|
|
31
375
|
/***/ }),
|
|
@@ -33,6 +377,7 @@ module.exports = require("@kq_npm/client_common_vue/_types/global-event");
|
|
|
33
377
|
/***/ 5406:
|
|
34
378
|
/***/ (function(module) {
|
|
35
379
|
|
|
380
|
+
"use strict";
|
|
36
381
|
module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
37
382
|
|
|
38
383
|
/***/ }),
|
|
@@ -40,6 +385,7 @@ module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
|
40
385
|
/***/ 637:
|
|
41
386
|
/***/ (function(module) {
|
|
42
387
|
|
|
388
|
+
"use strict";
|
|
43
389
|
module.exports = require("vue");
|
|
44
390
|
|
|
45
391
|
/***/ })
|
|
@@ -64,7 +410,7 @@ module.exports = require("vue");
|
|
|
64
410
|
/******/ };
|
|
65
411
|
/******/
|
|
66
412
|
/******/ // Execute the module function
|
|
67
|
-
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
413
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
68
414
|
/******/
|
|
69
415
|
/******/ // Return the exports of the module
|
|
70
416
|
/******/ return module.exports;
|
|
@@ -113,8 +459,9 @@ module.exports = require("vue");
|
|
|
113
459
|
/******/
|
|
114
460
|
/************************************************************************/
|
|
115
461
|
var __webpack_exports__ = {};
|
|
116
|
-
// This entry need to be wrapped in an IIFE because it need to be
|
|
462
|
+
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
117
463
|
!function() {
|
|
464
|
+
"use strict";
|
|
118
465
|
// ESM COMPAT FLAG
|
|
119
466
|
__webpack_require__.r(__webpack_exports__);
|
|
120
467
|
|
|
@@ -132,9 +479,9 @@ var external_html2canvas_namespaceObject = require("html2canvas");
|
|
|
132
479
|
var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_namespaceObject);
|
|
133
480
|
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
134
481
|
var icons_vue_ = __webpack_require__(8422);
|
|
135
|
-
|
|
136
|
-
var
|
|
137
|
-
var
|
|
482
|
+
// EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
|
|
483
|
+
var vue3_print_nb_umd = __webpack_require__(3961);
|
|
484
|
+
var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
|
|
138
485
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_types/global-event"
|
|
139
486
|
var global_event_ = __webpack_require__(1088);
|
|
140
487
|
var global_event_default = /*#__PURE__*/__webpack_require__.n(global_event_);
|
|
@@ -1521,7 +1868,7 @@ const __default__ = {
|
|
|
1521
1868
|
|
|
1522
1869
|
}, 8
|
|
1523
1870
|
/* PROPS */
|
|
1524
|
-
, ["loading"])), [[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)((
|
|
1871
|
+
, ["loading"])), [[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)((vue3_print_nb_umd_default())), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printObj)]])])]),
|
|
1525
1872
|
_: 1
|
|
1526
1873
|
/* STABLE */
|
|
1527
1874
|
|