x-runtime-lib 0.8.27 → 0.8.28
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/index.js +932 -920
- package/dist/types/kind.d.ts +15 -3
- package/dist/utils/name.d.ts +3 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { defineComponent as $, createElementBlock as Y, renderSlot as L, unref as n, openBlock as v, createElementVNode as ie, computed as k, normalizeStyle as Q, ref as ce, watchEffect as ue, watch as q, onBeforeMount as No, onUnmounted as
|
|
2
|
-
import { globalObjects as be, waitUtil as qi, eventBus as Qi, useViewStack as eo, messageInfo as Go, messageSuccess as Ho, messageWarning as to, messageError as no, createAxios as
|
|
1
|
+
import { defineComponent as $, createElementBlock as Y, renderSlot as L, unref as n, openBlock as v, createElementVNode as ie, computed as k, normalizeStyle as Q, ref as ce, watchEffect as ue, watch as q, onBeforeMount as No, onUnmounted as je, createBlock as V, withCtx as I, createCommentVNode as ee, useTemplateRef as Xi, onMounted as Yi, nextTick as Ji, h as ae, resolveComponent as z, createVNode as H, isRef as O, createSlots as Pn, renderList as Mo, useId as Zi, withModifiers as Ro, normalizeClass as Do, toDisplayString as Fo, inject as oe, provide as se, readonly as zn } from "vue";
|
|
2
|
+
import { globalObjects as be, waitUtil as qi, eventBus as Qi, useViewStack as eo, messageInfo as Go, messageSuccess as Ho, messageWarning as to, messageError as no, createAxios as Ko, openConfirmDlg as jo, openPromptDlg as Oo } from "x-essential-lib";
|
|
3
3
|
import { CameraHelper as io, DirectionalLightHelper as Uo, PointLightHelper as Xo, SpotLightHelper as Yo } from "three";
|
|
4
4
|
import { c as B, i as ne, q as Be, u as Jo, r as oo, e as so, a as Zo, b as qo, d as Qo, f as es, g as ts, h as ns, j as is, k as os, l as ro, X as ss, Y as rs, K as ls, m as as, n as us, o as cs, I as ms } from "./vendor.dd29fg1n.js";
|
|
5
5
|
import { getErrorMessage as ps } from "x-error-lib";
|
|
6
6
|
import { useTheme as ds } from "vuetify";
|
|
7
7
|
import { useI18n as fs } from "vue-i18n";
|
|
8
|
-
const
|
|
9
|
-
function
|
|
8
|
+
const Pc = ["string", "number", "boolean", "array", "object"];
|
|
9
|
+
function zc(t) {
|
|
10
10
|
switch (t) {
|
|
11
11
|
case "string":
|
|
12
12
|
return "#5ba58c";
|
|
@@ -20,7 +20,7 @@ function Cc(t) {
|
|
|
20
20
|
return "#80a55b";
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
function
|
|
23
|
+
function Ac(t, e, i, o, r) {
|
|
24
24
|
let s = t;
|
|
25
25
|
for (let p = 0; p < e.length; p++)
|
|
26
26
|
if (s = s.children[e[p]], !s) {
|
|
@@ -30,11 +30,11 @@ function Tc(t, e, i, o, l) {
|
|
|
30
30
|
let a = s.children[i];
|
|
31
31
|
a ? a.dataSeq !== o && (a = {
|
|
32
32
|
dataSeq: o,
|
|
33
|
-
data: B(
|
|
33
|
+
data: B(r),
|
|
34
34
|
children: {}
|
|
35
35
|
}) : (a = {
|
|
36
36
|
dataSeq: o,
|
|
37
|
-
data: B(
|
|
37
|
+
data: B(r),
|
|
38
38
|
children: {}
|
|
39
39
|
}, s.children[i] = a);
|
|
40
40
|
}
|
|
@@ -42,44 +42,56 @@ const bs = ["common", "scene"], ys = ["common", "scene"];
|
|
|
42
42
|
function hs(t) {
|
|
43
43
|
return t === "elementProperty" || t === "elementSlotProperty";
|
|
44
44
|
}
|
|
45
|
-
function
|
|
45
|
+
function Lc(t, e, i) {
|
|
46
46
|
return `${t}/${e}/${i}`;
|
|
47
47
|
}
|
|
48
|
-
function zc(t) {
|
|
49
|
-
const e = t.indexOf("/"), i = t.lastIndexOf("/");
|
|
50
|
-
return e < 0 || i < 0 ? (console.assert(!1, "invalid property id"), ["elementProperty", "", ""]) : [
|
|
51
|
-
t.substring(0, e),
|
|
52
|
-
t.substring(e + 1, i),
|
|
53
|
-
t.substring(i + 1)
|
|
54
|
-
];
|
|
55
|
-
}
|
|
56
48
|
function gs(t) {
|
|
49
|
+
const e = t.split("/");
|
|
50
|
+
return e.length < 3 ? (console.assert(!1, "invalid property id"), {
|
|
51
|
+
kind: "elementProperty",
|
|
52
|
+
nodeId: "",
|
|
53
|
+
propertyKey: ""
|
|
54
|
+
}) : {
|
|
55
|
+
kind: e[0],
|
|
56
|
+
nodeId: e[1],
|
|
57
|
+
propertyKey: e[2]
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
function xs(t) {
|
|
57
61
|
return t === "elementMethod" || t === "elementSlotMethod";
|
|
58
62
|
}
|
|
59
|
-
function
|
|
63
|
+
function Bc(t, e, i) {
|
|
60
64
|
return `${t}/${e}/${i}`;
|
|
61
65
|
}
|
|
62
|
-
function
|
|
63
|
-
const e = t.
|
|
64
|
-
return e <
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
function vs(t) {
|
|
67
|
+
const e = t.split("/");
|
|
68
|
+
return e.length < 3 ? (console.assert(!1, "invalid method id"), {
|
|
69
|
+
kind: "elementMethod",
|
|
70
|
+
nodeId: "",
|
|
71
|
+
methodKey: ""
|
|
72
|
+
}) : {
|
|
73
|
+
kind: e[0],
|
|
74
|
+
nodeId: e[1],
|
|
75
|
+
methodKey: e[2]
|
|
76
|
+
};
|
|
69
77
|
}
|
|
70
|
-
function
|
|
78
|
+
function ks(t) {
|
|
71
79
|
return t === "elementEvent" || t === "elementPropertyChangeEvent";
|
|
72
80
|
}
|
|
73
81
|
function Ce(t, e, i) {
|
|
74
82
|
return `${t}/${e}/${i}`;
|
|
75
83
|
}
|
|
76
|
-
function
|
|
77
|
-
const e = t.
|
|
78
|
-
return e <
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
84
|
+
function _s(t) {
|
|
85
|
+
const e = t.split("/");
|
|
86
|
+
return e.length < 3 ? (console.assert(!1, "invalid event id"), {
|
|
87
|
+
kind: "elementEvent",
|
|
88
|
+
nodeId: "",
|
|
89
|
+
eventKey: ""
|
|
90
|
+
}) : {
|
|
91
|
+
kind: e[0],
|
|
92
|
+
nodeId: e[1],
|
|
93
|
+
eventKey: e[2]
|
|
94
|
+
};
|
|
83
95
|
}
|
|
84
96
|
const Yn = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
85
97
|
function T(t) {
|
|
@@ -116,7 +128,7 @@ function Xt(t) {
|
|
|
116
128
|
if (!isNaN(i))
|
|
117
129
|
return i;
|
|
118
130
|
}
|
|
119
|
-
const lo = ["xs", "sm", "md", "lg", "xl"],
|
|
131
|
+
const lo = ["xs", "sm", "md", "lg", "xl"], ws = [...lo].reverse();
|
|
120
132
|
function Re(t) {
|
|
121
133
|
return t < 600 ? "xs" : t < 960 ? "sm" : t < 1280 ? "md" : t < 1920 ? "lg" : "xl";
|
|
122
134
|
}
|
|
@@ -125,7 +137,7 @@ function Jn(t) {
|
|
|
125
137
|
}
|
|
126
138
|
function Ie(t, e) {
|
|
127
139
|
let i;
|
|
128
|
-
for (const o of
|
|
140
|
+
for (const o of ws) {
|
|
129
141
|
if (Jn(o) < Jn(t))
|
|
130
142
|
break;
|
|
131
143
|
e[o] && (i = e[o]);
|
|
@@ -138,10 +150,10 @@ function ke(t, e) {
|
|
|
138
150
|
return;
|
|
139
151
|
let o = [];
|
|
140
152
|
if (e instanceof Array ? o = e : o = e.split("."), !(o.length <= 0)) {
|
|
141
|
-
for (const
|
|
153
|
+
for (const r of o) {
|
|
142
154
|
if (typeof i != "object")
|
|
143
155
|
return;
|
|
144
|
-
i = i[
|
|
156
|
+
i = i[r];
|
|
145
157
|
}
|
|
146
158
|
return i;
|
|
147
159
|
}
|
|
@@ -150,41 +162,41 @@ function ao(t, e, i) {
|
|
|
150
162
|
let o = t;
|
|
151
163
|
if (typeof o != "object")
|
|
152
164
|
return;
|
|
153
|
-
let
|
|
154
|
-
if (e instanceof Array ?
|
|
165
|
+
let r = [];
|
|
166
|
+
if (e instanceof Array ? r = e : r = e.split("."), r.length <= 0)
|
|
155
167
|
return;
|
|
156
|
-
for (let a = 0; a <
|
|
157
|
-
const p =
|
|
168
|
+
for (let a = 0; a < r.length - 1; a++) {
|
|
169
|
+
const p = r[a];
|
|
158
170
|
o = o[p], o || (o = {});
|
|
159
171
|
}
|
|
160
|
-
const s =
|
|
172
|
+
const s = r[r.length - 1];
|
|
161
173
|
o[s] = i;
|
|
162
174
|
}
|
|
163
175
|
function Ln(t, e, i) {
|
|
164
176
|
const { i18n: o } = be;
|
|
165
|
-
let
|
|
166
|
-
return e.forEach((s, a) => {
|
|
167
|
-
a > 0 && (
|
|
168
|
-
}),
|
|
177
|
+
let r = "";
|
|
178
|
+
return t && (r += t + " / "), e.forEach((s, a) => {
|
|
179
|
+
a > 0 && (r += " - "), i ? r += o.global.t(s) : r += s;
|
|
180
|
+
}), r;
|
|
169
181
|
}
|
|
170
182
|
function Ec(t, e) {
|
|
171
|
-
const { i18n: i } = be;
|
|
172
|
-
let
|
|
173
|
-
return
|
|
183
|
+
const { i18n: i } = be, { kind: o } = gs(t);
|
|
184
|
+
let r = "";
|
|
185
|
+
return o === "elementProperty" || (o === "refProperty" ? r = i.global.t("x-runtime-lib.ref") : o === "customProperty" ? r = i.global.t("x-runtime-lib.custom") : o === "elementSlotProperty" || o === "customSlotProperty" ? r = i.global.t("x-runtime-lib.slot") : console.assert(!1)), Ln(r, e, hs(o));
|
|
174
186
|
}
|
|
175
187
|
function Nc(t, e) {
|
|
176
|
-
const { i18n: i } = be;
|
|
177
|
-
let
|
|
178
|
-
return
|
|
188
|
+
const { i18n: i } = be, { kind: o } = vs(t);
|
|
189
|
+
let r = "";
|
|
190
|
+
return o === "elementMethod" || (o === "refMethod" ? r = i.global.t("x-runtime-lib.ref") : o === "customMethod" ? r = i.global.t("x-runtime-lib.custom") : o === "elementSlotMethod" || o === "customSlotMethod" ? r = i.global.t("x-runtime-lib.slot") : console.assert(!1)), Ln(r, e, xs(o));
|
|
179
191
|
}
|
|
180
192
|
function Mc(t, e) {
|
|
181
|
-
const { i18n: i } = be;
|
|
182
|
-
let
|
|
183
|
-
return
|
|
193
|
+
const { i18n: i } = be, { kind: o } = _s(t);
|
|
194
|
+
let r = "";
|
|
195
|
+
return o === "elementEvent" || (o === "refEvent" ? r = i.global.t("x-runtime-lib.ref") : o === "customEvent" ? r = i.global.t("x-runtime-lib.custom") : o === "elementPropertyChangeEvent" || o === "customPropertyChangeEvent" ? r = i.global.t("x-runtime-lib.propertyChange") : o === "stateChangeEvent" ? r = i.global.t("x-runtime-lib.stateChange") : console.assert(!1)), Ln(r, e, ks(o));
|
|
184
196
|
}
|
|
185
197
|
const Te = {}, _ = (t) => {
|
|
186
198
|
Te[t.key] = t;
|
|
187
|
-
},
|
|
199
|
+
}, Vs = ["position", "rotation", "scale"], he = /* @__PURE__ */ $({
|
|
188
200
|
__name: "index",
|
|
189
201
|
props: {
|
|
190
202
|
position: {},
|
|
@@ -203,7 +215,7 @@ const Te = {}, _ = (t) => {
|
|
|
203
215
|
o[0] || (o[0] = ie("TresBoxGeometry", { args: [1, 1, 1] }, null, -1)),
|
|
204
216
|
o[1] || (o[1] = ie("TresMeshBasicMaterial", null, null, -1)),
|
|
205
217
|
L(i.$slots, "default")
|
|
206
|
-
], 8,
|
|
218
|
+
], 8, Vs)) : L(i.$slots, "default", { key: 1 });
|
|
207
219
|
}
|
|
208
220
|
}), Z = /* @__PURE__ */ $({
|
|
209
221
|
__name: "index",
|
|
@@ -215,45 +227,45 @@ const Te = {}, _ = (t) => {
|
|
|
215
227
|
const o = {};
|
|
216
228
|
return t.fitContent && (o.width = "fit-content", o.height = "fit-content"), o;
|
|
217
229
|
});
|
|
218
|
-
return (o,
|
|
230
|
+
return (o, r) => n(e) === "editor" ? (v(), Y("div", {
|
|
219
231
|
key: 0,
|
|
220
232
|
style: Q(i.value)
|
|
221
233
|
}, [
|
|
222
234
|
L(o.$slots, "default")
|
|
223
235
|
], 4)) : L(o.$slots, "default", { key: 1 });
|
|
224
236
|
}
|
|
225
|
-
}),
|
|
226
|
-
const
|
|
237
|
+
}), $s = (t, e, i, o) => {
|
|
238
|
+
const r = t.getElementPropInner(e, i);
|
|
227
239
|
if (o) {
|
|
228
|
-
if (typeof
|
|
229
|
-
return JSON.parse(
|
|
240
|
+
if (typeof r == "string")
|
|
241
|
+
return JSON.parse(r);
|
|
230
242
|
console.assert(!1);
|
|
231
243
|
return;
|
|
232
244
|
} else
|
|
233
|
-
return
|
|
234
|
-
},
|
|
245
|
+
return r;
|
|
246
|
+
}, Is = (t, e, i, o, r) => {
|
|
235
247
|
let s;
|
|
236
|
-
|
|
248
|
+
r ? typeof o == "object" ? s = JSON.stringify(o, null, 2) : (console.assert(!1), s = "{}") : s = o, t.setElementPropInner(e, i, s);
|
|
237
249
|
};
|
|
238
|
-
function
|
|
239
|
-
const o = G(),
|
|
250
|
+
function l(t, e, i) {
|
|
251
|
+
const o = G(), r = Ee(), s = ce();
|
|
240
252
|
return ue(() => {
|
|
241
|
-
let a =
|
|
253
|
+
let a = $s(r, t.node, e, i);
|
|
242
254
|
o === "editor" && e[e.length - 1] === "readonly" && (a = !0), s.value = a;
|
|
243
255
|
}), q(s, (a, p) => {
|
|
244
|
-
ne(a, p) ||
|
|
256
|
+
ne(a, p) || Is(r, t.node, e, s.value, i);
|
|
245
257
|
}), { prop: s };
|
|
246
258
|
}
|
|
247
259
|
function me(t) {
|
|
248
|
-
const { prop: e } =
|
|
260
|
+
const { prop: e } = l(t, ["transform", "position", "x"]), { prop: i } = l(t, ["transform", "position", "y"]), { prop: o } = l(t, ["transform", "position", "z"]), { prop: r } = l(t, ["transform", "rotation", "x"]), { prop: s } = l(t, ["transform", "rotation", "y"]), { prop: a } = l(t, ["transform", "rotation", "z"]), { prop: p } = l(t, ["transform", "scale", "x"]), { prop: d } = l(t, ["transform", "scale", "y"]), { prop: b } = l(t, ["transform", "scale", "z"]), m = ce([0, 0, 0]), u = ce([0, 0, 0]), c = ce([1, 1, 1]);
|
|
249
261
|
return ue(() => {
|
|
250
262
|
m.value = [e.value, i.value, o.value];
|
|
251
263
|
}), ue(() => {
|
|
252
264
|
e.value = m.value[0], i.value = m.value[1], o.value = m.value[2];
|
|
253
265
|
}), ue(() => {
|
|
254
|
-
u.value = [
|
|
266
|
+
u.value = [r.value, s.value, a.value];
|
|
255
267
|
}), ue(() => {
|
|
256
|
-
|
|
268
|
+
r.value = u.value[0], s.value = u.value[1], a.value = u.value[2];
|
|
257
269
|
}), ue(() => {
|
|
258
270
|
c.value = [p.value, d.value, b.value];
|
|
259
271
|
}), ue(() => {
|
|
@@ -262,8 +274,8 @@ function me(t) {
|
|
|
262
274
|
}
|
|
263
275
|
function uo(t) {
|
|
264
276
|
const e = k(() => t.node.legend?.show), i = k(() => t.node.legend?.data);
|
|
265
|
-
function o(
|
|
266
|
-
|
|
277
|
+
function o(r) {
|
|
278
|
+
r.legend = {
|
|
267
279
|
show: e.value,
|
|
268
280
|
data: i.value
|
|
269
281
|
};
|
|
@@ -279,44 +291,44 @@ function co(t) {
|
|
|
279
291
|
}
|
|
280
292
|
function mo(t) {
|
|
281
293
|
const e = k(() => t.node.title?.show), i = k(() => t.node.title?.text), o = k(() => t.node.title?.subtext);
|
|
282
|
-
function
|
|
294
|
+
function r(s) {
|
|
283
295
|
s.title = {
|
|
284
296
|
show: e.value,
|
|
285
297
|
text: i.value,
|
|
286
298
|
subtext: o.value
|
|
287
299
|
};
|
|
288
300
|
}
|
|
289
|
-
return { show: e, text: i, subtext: o, applyTitle:
|
|
301
|
+
return { show: e, text: i, subtext: o, applyTitle: r };
|
|
290
302
|
}
|
|
291
303
|
function po(t) {
|
|
292
|
-
const e = k(() => t.node.xAxis?.show), i = k(() => t.node.xAxis?.position), o = k(() => t.node.xAxis?.type),
|
|
304
|
+
const e = k(() => t.node.xAxis?.show), i = k(() => t.node.xAxis?.position), o = k(() => t.node.xAxis?.type), r = k(() => t.node.xAxis?.data);
|
|
293
305
|
function s(a) {
|
|
294
306
|
a.xAxis = {
|
|
295
307
|
show: e.value,
|
|
296
308
|
position: i.value,
|
|
297
309
|
type: o.value,
|
|
298
|
-
data:
|
|
310
|
+
data: r.value
|
|
299
311
|
};
|
|
300
312
|
}
|
|
301
|
-
return { show: e, position: i, type: o, data:
|
|
313
|
+
return { show: e, position: i, type: o, data: r, applyXAxis: s };
|
|
302
314
|
}
|
|
303
315
|
function fo(t) {
|
|
304
|
-
const e = k(() => t.node.yAxis?.show), i = k(() => t.node.yAxis?.position), o = k(() => t.node.yAxis?.type),
|
|
316
|
+
const e = k(() => t.node.yAxis?.show), i = k(() => t.node.yAxis?.position), o = k(() => t.node.yAxis?.type), r = k(() => t.node.yAxis?.data);
|
|
305
317
|
function s(a) {
|
|
306
318
|
a.yAxis = {
|
|
307
319
|
show: e.value,
|
|
308
320
|
position: i.value,
|
|
309
321
|
type: o.value,
|
|
310
|
-
data:
|
|
322
|
+
data: r.value
|
|
311
323
|
};
|
|
312
324
|
}
|
|
313
|
-
return { show: e, position: i, type: o, data:
|
|
325
|
+
return { show: e, position: i, type: o, data: r, applyYAxis: s };
|
|
314
326
|
}
|
|
315
|
-
function
|
|
316
|
-
const { computedThemes: e } = ds(), i = We(), o = k(() => t.value?.mode),
|
|
327
|
+
function K(t) {
|
|
328
|
+
const { computedThemes: e } = ds(), i = We(), o = k(() => t.value?.mode), r = k(() => {
|
|
317
329
|
const b = t.value?.theme;
|
|
318
330
|
return b ? b === "background0" ? i.value ? "#2e2e2e" : "#bdbdbd" : b === "background1" ? i.value ? "#272727" : "#eeeeee" : b === "background2" ? i.value ? "#1e1e1e" : "#ffffff" : (i.value ? e.value.dark : e.value.light).colors[b] : void 0;
|
|
319
|
-
}), s = k(() => i.value ? t.value.custom?.dark : t.value.custom?.light), a = k(() => o.value === "theme" ?
|
|
331
|
+
}), s = k(() => i.value ? t.value.custom?.dark : t.value.custom?.light), a = k(() => o.value === "theme" ? r.value ?? "" : o.value === "custom" ? s.value ?? "" : ""), p = k(() => {
|
|
320
332
|
const b = a.value;
|
|
321
333
|
return !b.startsWith("#") || b.length < 7 ? "" : b.substring(0, 7);
|
|
322
334
|
}), d = k(() => {
|
|
@@ -326,28 +338,28 @@ function j(t) {
|
|
|
326
338
|
return { color: a, rgb: p, alpha: d };
|
|
327
339
|
}
|
|
328
340
|
function Bn(t) {
|
|
329
|
-
const e = k(() => t.node.border?.style), i = k(() => t.node.border?.width), o = k(() => t.node.border?.color), { color:
|
|
341
|
+
const e = k(() => t.node.border?.style), i = k(() => t.node.border?.width), o = k(() => t.node.border?.color), { color: r } = K(o), s = k(() => t.node.border?.roundRadius?.tl), a = k(() => t.node.border?.roundRadius?.tr), p = k(() => t.node.border?.roundRadius?.bl), d = k(() => t.node.border?.roundRadius?.br);
|
|
330
342
|
function b(m) {
|
|
331
|
-
e.value && (m.borderStyle = e.value), i.value && (m.borderWidth = i.value),
|
|
343
|
+
e.value && (m.borderStyle = e.value), i.value && (m.borderWidth = i.value), r.value && (m.borderColor = r.value), s.value && (m.borderTopLeftRadius = s.value), a.value && (m.borderTopRightRadius = a.value), p.value && (m.borderBottomLeftRadius = p.value), d.value && (m.borderBottomRightRadius = d.value);
|
|
332
344
|
}
|
|
333
|
-
return { borderStyle: e, borderWidth: i, borderColor:
|
|
345
|
+
return { borderStyle: e, borderWidth: i, borderColor: r, applyBorder: b };
|
|
334
346
|
}
|
|
335
347
|
function Wn(t) {
|
|
336
|
-
const e = k(() => t.node.margin?.top), i = k(() => t.node.margin?.left), o = k(() => t.node.margin?.bottom),
|
|
348
|
+
const e = k(() => t.node.margin?.top), i = k(() => t.node.margin?.left), o = k(() => t.node.margin?.bottom), r = k(() => t.node.margin?.right);
|
|
337
349
|
function s(a) {
|
|
338
|
-
e.value && (a.marginTop = e.value), i.value && (a.marginLeft = i.value), o.value && (a.marginBottom = o.value),
|
|
350
|
+
e.value && (a.marginTop = e.value), i.value && (a.marginLeft = i.value), o.value && (a.marginBottom = o.value), r.value && (a.marginRight = r.value);
|
|
339
351
|
}
|
|
340
|
-
return { marginTop: e, marginLeft: i, marginBottom: o, marginRight:
|
|
352
|
+
return { marginTop: e, marginLeft: i, marginBottom: o, marginRight: r, applyMargin: s };
|
|
341
353
|
}
|
|
342
354
|
function En(t) {
|
|
343
|
-
const e = k(() => t.node.padding?.top), i = k(() => t.node.padding?.left), o = k(() => t.node.padding?.bottom),
|
|
355
|
+
const e = k(() => t.node.padding?.top), i = k(() => t.node.padding?.left), o = k(() => t.node.padding?.bottom), r = k(() => t.node.padding?.right);
|
|
344
356
|
function s(a) {
|
|
345
|
-
e.value && (a.paddingTop = e.value), i.value && (a.paddingLeft = i.value), o.value && (a.paddingBottom = o.value),
|
|
357
|
+
e.value && (a.paddingTop = e.value), i.value && (a.paddingLeft = i.value), o.value && (a.paddingBottom = o.value), r.value && (a.paddingRight = r.value);
|
|
346
358
|
}
|
|
347
|
-
return { paddingTop: e, paddingLeft: i, paddingBottom: o, paddingRight:
|
|
359
|
+
return { paddingTop: e, paddingLeft: i, paddingBottom: o, paddingRight: r, applyPadding: s };
|
|
348
360
|
}
|
|
349
361
|
function ge(t) {
|
|
350
|
-
const e = G(), i = $e(), o = k(() => t.node.size?.width),
|
|
362
|
+
const e = G(), i = $e(), o = k(() => t.node.size?.width), r = k(() => t.node.size?.minWidth), s = k(() => t.node.size?.maxWidth), a = k(() => {
|
|
351
363
|
if (t.outer && e === "editor") {
|
|
352
364
|
const m = Xt(t.node.size?.height);
|
|
353
365
|
if (m)
|
|
@@ -370,33 +382,33 @@ function ge(t) {
|
|
|
370
382
|
return t.node.size?.maxHeight;
|
|
371
383
|
});
|
|
372
384
|
function b(m) {
|
|
373
|
-
o.value && (m.width = o.value),
|
|
385
|
+
o.value && (m.width = o.value), r.value && (m.minWidth = r.value), s.value && (m.maxWidth = s.value), a.value && (m.height = a.value), p.value && (m.minHeight = p.value), d.value && (m.maxHeight = d.value);
|
|
374
386
|
}
|
|
375
|
-
return { width: o, minWidth:
|
|
387
|
+
return { width: o, minWidth: r, maxWidth: s, height: a, minHeight: p, maxHeight: d, applySize: b };
|
|
376
388
|
}
|
|
377
389
|
function bo(t, e, i) {
|
|
378
|
-
const o = k(() => e.node.basic.id),
|
|
390
|
+
const o = k(() => e.node.basic.id), r = k(() => `callMethod@${o.value}`);
|
|
379
391
|
No(() => {
|
|
380
|
-
t.eventBus?.on(
|
|
381
|
-
}),
|
|
382
|
-
t.eventBus?.off(
|
|
392
|
+
t.eventBus?.on(r.value, i);
|
|
393
|
+
}), je(() => {
|
|
394
|
+
t.eventBus?.off(r.value, i);
|
|
383
395
|
});
|
|
384
396
|
}
|
|
385
397
|
function N() {
|
|
386
398
|
const t = We();
|
|
387
399
|
return { theme: k(() => t.value ? "dark" : "light") };
|
|
388
400
|
}
|
|
389
|
-
const
|
|
401
|
+
const Ss = ["bottom", "far", "left", "near", "position", "right", "rotation", "scale", "top"], Cs = /* @__PURE__ */ $({
|
|
390
402
|
__name: "index",
|
|
391
403
|
props: {
|
|
392
404
|
node: {},
|
|
393
405
|
outer: { type: Boolean }
|
|
394
406
|
},
|
|
395
407
|
setup(t) {
|
|
396
|
-
const e = t, i = G(), { position: o, rotation:
|
|
408
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "bottom"]), { prop: p } = l(e, ["settings", "far"]), { prop: d } = l(e, ["settings", "left"]), { prop: b } = l(e, ["settings", "near"]), { prop: m } = l(e, ["settings", "right"]), { prop: u } = l(e, ["settings", "top"]);
|
|
397
409
|
return (c, f) => (v(), V(n(he), {
|
|
398
410
|
position: n(o),
|
|
399
|
-
rotation: n(
|
|
411
|
+
rotation: n(r),
|
|
400
412
|
scale: n(s)
|
|
401
413
|
}, {
|
|
402
414
|
default: I(() => [
|
|
@@ -407,7 +419,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
407
419
|
near: n(b),
|
|
408
420
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
409
421
|
right: n(m),
|
|
410
|
-
rotation: n(i) !== "editor" ? n(
|
|
422
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
411
423
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1],
|
|
412
424
|
top: n(u)
|
|
413
425
|
}, [
|
|
@@ -416,22 +428,22 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
416
428
|
type: n(io)
|
|
417
429
|
}, null, 8, ["type"])) : ee("", !0),
|
|
418
430
|
L(c.$slots, "default")
|
|
419
|
-
], 8,
|
|
431
|
+
], 8, Ss)
|
|
420
432
|
]),
|
|
421
433
|
_: 3
|
|
422
434
|
}, 8, ["position", "rotation", "scale"]));
|
|
423
435
|
}
|
|
424
|
-
}),
|
|
436
|
+
}), Ts = ["aspect", "far", "fov", "near", "position", "rotation", "scale"], Ps = /* @__PURE__ */ $({
|
|
425
437
|
__name: "index",
|
|
426
438
|
props: {
|
|
427
439
|
node: {},
|
|
428
440
|
outer: { type: Boolean }
|
|
429
441
|
},
|
|
430
442
|
setup(t) {
|
|
431
|
-
const e = t, i = G(), { position: o, rotation:
|
|
443
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "aspect"]), { prop: p } = l(e, ["settings", "far"]), { prop: d } = l(e, ["settings", "fov"]), { prop: b } = l(e, ["settings", "near"]);
|
|
432
444
|
return (m, u) => (v(), V(n(he), {
|
|
433
445
|
position: n(o),
|
|
434
|
-
rotation: n(
|
|
446
|
+
rotation: n(r),
|
|
435
447
|
scale: n(s)
|
|
436
448
|
}, {
|
|
437
449
|
default: I(() => [
|
|
@@ -441,7 +453,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
441
453
|
fov: n(d),
|
|
442
454
|
near: n(b),
|
|
443
455
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
444
|
-
rotation: n(i) !== "editor" ? n(
|
|
456
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
445
457
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
446
458
|
}, [
|
|
447
459
|
n(i) === "editor" ? (v(), V(n(Be), {
|
|
@@ -449,55 +461,55 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
449
461
|
type: n(io)
|
|
450
462
|
}, null, 8, ["type"])) : ee("", !0),
|
|
451
463
|
L(m.$slots, "default")
|
|
452
|
-
], 8,
|
|
464
|
+
], 8, Ts)
|
|
453
465
|
]),
|
|
454
466
|
_: 3
|
|
455
467
|
}, 8, ["position", "rotation", "scale"]));
|
|
456
468
|
}
|
|
457
|
-
}),
|
|
469
|
+
}), zs = ["args"], As = /* @__PURE__ */ $({
|
|
458
470
|
__name: "index",
|
|
459
471
|
props: {
|
|
460
472
|
node: {},
|
|
461
473
|
outer: { type: Boolean }
|
|
462
474
|
},
|
|
463
475
|
setup(t) {
|
|
464
|
-
const e = t, { prop: i } =
|
|
476
|
+
const e = t, { prop: i } = l(e, ["settings", "depth"]), { prop: o } = l(e, [
|
|
465
477
|
"settings",
|
|
466
478
|
"depthSegements"
|
|
467
|
-
]), { prop:
|
|
479
|
+
]), { prop: r } = l(e, ["settings", "height"]), { prop: s } = l(e, [
|
|
468
480
|
"settings",
|
|
469
481
|
"heightSegements"
|
|
470
|
-
]), { prop: a } =
|
|
482
|
+
]), { prop: a } = l(e, ["settings", "width"]), { prop: p } = l(e, [
|
|
471
483
|
"settings",
|
|
472
484
|
"widthSegements"
|
|
473
485
|
]);
|
|
474
486
|
return (d, b) => (v(), Y("TresBoxGeometry", {
|
|
475
487
|
args: [
|
|
476
488
|
n(a),
|
|
477
|
-
n(
|
|
489
|
+
n(r),
|
|
478
490
|
n(i),
|
|
479
491
|
n(p),
|
|
480
492
|
n(s),
|
|
481
493
|
n(o)
|
|
482
494
|
]
|
|
483
|
-
}, null, 8,
|
|
495
|
+
}, null, 8, zs));
|
|
484
496
|
}
|
|
485
497
|
}), xe = (t, e) => {
|
|
486
498
|
const i = t.__vccOpts || t;
|
|
487
|
-
for (const [o,
|
|
488
|
-
i[o] =
|
|
499
|
+
for (const [o, r] of e)
|
|
500
|
+
i[o] = r;
|
|
489
501
|
return i;
|
|
490
|
-
},
|
|
502
|
+
}, Ls = ["args"], Bs = /* @__PURE__ */ $({
|
|
491
503
|
__name: "index",
|
|
492
504
|
props: {
|
|
493
505
|
node: {},
|
|
494
506
|
outer: { type: Boolean }
|
|
495
507
|
},
|
|
496
508
|
setup(t) {
|
|
497
|
-
const e = t, { prop: i } =
|
|
509
|
+
const e = t, { prop: i } = l(e, [
|
|
498
510
|
"settings",
|
|
499
511
|
"heightSegments"
|
|
500
|
-
]), { prop: o } =
|
|
512
|
+
]), { prop: o } = l(e, ["settings", "phiLength"]), { prop: r } = l(e, ["settings", "phiStart"]), { prop: s } = l(e, ["settings", "radius"]), { prop: a } = l(e, ["settings", "thetaLength"]), { prop: p } = l(e, ["settings", "thetaStart"]), { prop: d } = l(e, [
|
|
501
513
|
"settings",
|
|
502
514
|
"widthSegments"
|
|
503
515
|
]);
|
|
@@ -506,24 +518,24 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
506
518
|
n(s),
|
|
507
519
|
n(d),
|
|
508
520
|
n(i),
|
|
509
|
-
n(
|
|
521
|
+
n(r),
|
|
510
522
|
n(o),
|
|
511
523
|
n(p),
|
|
512
524
|
n(a)
|
|
513
525
|
]
|
|
514
|
-
}, null, 8,
|
|
526
|
+
}, null, 8, Ls));
|
|
515
527
|
}
|
|
516
|
-
}),
|
|
528
|
+
}), Ws = ["color", "intensity", "position", "rotation", "scale"], Es = /* @__PURE__ */ $({
|
|
517
529
|
__name: "index",
|
|
518
530
|
props: {
|
|
519
531
|
node: {},
|
|
520
532
|
outer: { type: Boolean }
|
|
521
533
|
},
|
|
522
534
|
setup(t) {
|
|
523
|
-
const e = t, i = G(), { position: o, rotation:
|
|
535
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = K(a), { prop: d } = l(e, ["settings", "intensity"]);
|
|
524
536
|
return (b, m) => (v(), V(n(he), {
|
|
525
537
|
position: n(o),
|
|
526
|
-
rotation: n(
|
|
538
|
+
rotation: n(r),
|
|
527
539
|
scale: n(s)
|
|
528
540
|
}, {
|
|
529
541
|
default: I(() => [
|
|
@@ -531,26 +543,26 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
531
543
|
color: n(p),
|
|
532
544
|
intensity: n(d),
|
|
533
545
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
534
|
-
rotation: n(i) !== "editor" ? n(
|
|
546
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
535
547
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
536
548
|
}, [
|
|
537
549
|
L(b.$slots, "default")
|
|
538
|
-
], 8,
|
|
550
|
+
], 8, Ws)
|
|
539
551
|
]),
|
|
540
552
|
_: 3
|
|
541
553
|
}, 8, ["position", "rotation", "scale"]));
|
|
542
554
|
}
|
|
543
|
-
}),
|
|
555
|
+
}), Ns = ["color", "intensity", "position", "rotation", "scale"], Ms = /* @__PURE__ */ $({
|
|
544
556
|
__name: "index",
|
|
545
557
|
props: {
|
|
546
558
|
node: {},
|
|
547
559
|
outer: { type: Boolean }
|
|
548
560
|
},
|
|
549
561
|
setup(t) {
|
|
550
|
-
const e = t, i = G(), { position: o, rotation:
|
|
562
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = K(a), { prop: d } = l(e, ["settings", "intensity"]);
|
|
551
563
|
return (b, m) => (v(), V(n(he), {
|
|
552
564
|
position: n(o),
|
|
553
|
-
rotation: n(
|
|
565
|
+
rotation: n(r),
|
|
554
566
|
scale: n(s)
|
|
555
567
|
}, {
|
|
556
568
|
default: I(() => [
|
|
@@ -558,7 +570,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
558
570
|
color: n(p),
|
|
559
571
|
intensity: n(d),
|
|
560
572
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
561
|
-
rotation: n(i) !== "editor" ? n(
|
|
573
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
562
574
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
563
575
|
}, [
|
|
564
576
|
n(i) === "editor" ? (v(), V(n(Be), {
|
|
@@ -566,22 +578,22 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
566
578
|
type: n(Uo)
|
|
567
579
|
}, null, 8, ["type"])) : ee("", !0),
|
|
568
580
|
L(b.$slots, "default")
|
|
569
|
-
], 8,
|
|
581
|
+
], 8, Ns)
|
|
570
582
|
]),
|
|
571
583
|
_: 3
|
|
572
584
|
}, 8, ["position", "rotation", "scale"]));
|
|
573
585
|
}
|
|
574
|
-
}),
|
|
586
|
+
}), Rs = ["color", "decay", "distance", "intensity", "position", "rotation", "scale"], Ds = /* @__PURE__ */ $({
|
|
575
587
|
__name: "index",
|
|
576
588
|
props: {
|
|
577
589
|
node: {},
|
|
578
590
|
outer: { type: Boolean }
|
|
579
591
|
},
|
|
580
592
|
setup(t) {
|
|
581
|
-
const e = t, i = G(), { position: o, rotation:
|
|
593
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = K(a), { prop: d } = l(e, ["settings", "decay"]), { prop: b } = l(e, ["settings", "distance"]), { prop: m } = l(e, ["settings", "intensity"]);
|
|
582
594
|
return (u, c) => (v(), V(n(he), {
|
|
583
595
|
position: n(o),
|
|
584
|
-
rotation: n(
|
|
596
|
+
rotation: n(r),
|
|
585
597
|
scale: n(s)
|
|
586
598
|
}, {
|
|
587
599
|
default: I(() => [
|
|
@@ -591,7 +603,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
591
603
|
distance: n(b),
|
|
592
604
|
intensity: n(m),
|
|
593
605
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
594
|
-
rotation: n(i) !== "editor" ? n(
|
|
606
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
595
607
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
596
608
|
}, [
|
|
597
609
|
n(i) === "editor" ? (v(), V(n(Be), {
|
|
@@ -599,22 +611,22 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
599
611
|
type: n(Xo)
|
|
600
612
|
}, null, 8, ["type"])) : ee("", !0),
|
|
601
613
|
L(u.$slots, "default")
|
|
602
|
-
], 8,
|
|
614
|
+
], 8, Rs)
|
|
603
615
|
]),
|
|
604
616
|
_: 3
|
|
605
617
|
}, 8, ["position", "rotation", "scale"]));
|
|
606
618
|
}
|
|
607
|
-
}),
|
|
619
|
+
}), Fs = ["angle", "color", "decay", "distance", "intensity", "penumbra", "position", "rotation", "scale"], Gs = /* @__PURE__ */ $({
|
|
608
620
|
__name: "index",
|
|
609
621
|
props: {
|
|
610
622
|
node: {},
|
|
611
623
|
outer: { type: Boolean }
|
|
612
624
|
},
|
|
613
625
|
setup(t) {
|
|
614
|
-
const e = t, i = G(), { position: o, rotation:
|
|
626
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "angle"]), { prop: p } = l(e, ["settings", "color"]), { color: d } = K(p), { prop: b } = l(e, ["settings", "decay"]), { prop: m } = l(e, ["settings", "distance"]), { prop: u } = l(e, ["settings", "intensity"]), { prop: c } = l(e, ["settings", "penumbra"]);
|
|
615
627
|
return (f, h) => (v(), V(n(he), {
|
|
616
628
|
position: n(o),
|
|
617
|
-
rotation: n(
|
|
629
|
+
rotation: n(r),
|
|
618
630
|
scale: n(s)
|
|
619
631
|
}, {
|
|
620
632
|
default: I(() => [
|
|
@@ -626,7 +638,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
626
638
|
intensity: n(u),
|
|
627
639
|
penumbra: n(c),
|
|
628
640
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
629
|
-
rotation: n(i) !== "editor" ? n(
|
|
641
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
630
642
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
631
643
|
}, [
|
|
632
644
|
n(i) === "editor" ? (v(), V(n(Be), {
|
|
@@ -634,116 +646,116 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
634
646
|
type: n(Yo)
|
|
635
647
|
}, null, 8, ["type"])) : ee("", !0),
|
|
636
648
|
L(f.$slots, "default")
|
|
637
|
-
], 8,
|
|
649
|
+
], 8, Fs)
|
|
638
650
|
]),
|
|
639
651
|
_: 3
|
|
640
652
|
}, 8, ["position", "rotation", "scale"]));
|
|
641
653
|
}
|
|
642
|
-
}),
|
|
643
|
-
function
|
|
654
|
+
}), Hs = {};
|
|
655
|
+
function Ks(t, e) {
|
|
644
656
|
return v(), Y("TresMeshBasicMaterial");
|
|
645
657
|
}
|
|
646
|
-
const
|
|
658
|
+
const js = /* @__PURE__ */ xe(Hs, [["render", Ks]]), Os = ["position", "rotation", "scale"], Us = /* @__PURE__ */ $({
|
|
647
659
|
__name: "index",
|
|
648
660
|
props: {
|
|
649
661
|
node: {},
|
|
650
662
|
outer: { type: Boolean }
|
|
651
663
|
},
|
|
652
664
|
setup(t) {
|
|
653
|
-
const e = t, i = G(), { position: o, rotation:
|
|
665
|
+
const e = t, i = G(), { position: o, rotation: r, scale: s } = me(e);
|
|
654
666
|
return (a, p) => (v(), V(n(he), {
|
|
655
667
|
position: n(o),
|
|
656
|
-
rotation: n(
|
|
668
|
+
rotation: n(r),
|
|
657
669
|
scale: n(s)
|
|
658
670
|
}, {
|
|
659
671
|
default: I(() => [
|
|
660
672
|
ie("TresGroup", {
|
|
661
673
|
position: n(i) !== "editor" ? n(o) : [0, 0, 0],
|
|
662
|
-
rotation: n(i) !== "editor" ? n(
|
|
674
|
+
rotation: n(i) !== "editor" ? n(r) : [0, 0, 0],
|
|
663
675
|
scale: n(i) !== "editor" ? n(s) : [1, 1, 1]
|
|
664
676
|
}, [
|
|
665
677
|
L(a.$slots, "default")
|
|
666
|
-
], 8,
|
|
678
|
+
], 8, Os)
|
|
667
679
|
]),
|
|
668
680
|
_: 3
|
|
669
681
|
}, 8, ["position", "rotation", "scale"]));
|
|
670
682
|
}
|
|
671
|
-
}),
|
|
683
|
+
}), Xs = ["position", "rotation", "scale"], Ys = /* @__PURE__ */ $({
|
|
672
684
|
__name: "index",
|
|
673
685
|
props: {
|
|
674
686
|
node: {},
|
|
675
687
|
outer: { type: Boolean }
|
|
676
688
|
},
|
|
677
689
|
setup(t) {
|
|
678
|
-
const e = t, { position: i, rotation: o, scale:
|
|
690
|
+
const e = t, { position: i, rotation: o, scale: r } = me(e);
|
|
679
691
|
return (s, a) => (v(), Y("TresMesh", {
|
|
680
692
|
position: n(i),
|
|
681
693
|
rotation: n(o),
|
|
682
|
-
scale: n(
|
|
694
|
+
scale: n(r)
|
|
683
695
|
}, [
|
|
684
696
|
L(s.$slots, "default")
|
|
685
|
-
], 8,
|
|
686
|
-
}
|
|
687
|
-
}),
|
|
688
|
-
color:
|
|
689
|
-
backgroundColor:
|
|
690
|
-
textStyle:
|
|
691
|
-
title:
|
|
692
|
-
line:
|
|
693
|
-
radar:
|
|
694
|
-
bar:
|
|
695
|
-
pie:
|
|
696
|
-
scatter:
|
|
697
|
-
boxplot:
|
|
698
|
-
parallel:
|
|
699
|
-
sankey:
|
|
700
|
-
funnel:
|
|
701
|
-
gauge:
|
|
702
|
-
candlestick:
|
|
703
|
-
graph:
|
|
704
|
-
map:
|
|
705
|
-
geo:
|
|
706
|
-
categoryAxis:
|
|
707
|
-
valueAxis:
|
|
708
|
-
logAxis:
|
|
709
|
-
timeAxis:
|
|
710
|
-
toolbox:
|
|
711
|
-
legend:
|
|
712
|
-
tooltip:
|
|
713
|
-
timeline:
|
|
714
|
-
visualMap:
|
|
715
|
-
dataZoom:
|
|
716
|
-
markPoint:
|
|
717
|
-
},
|
|
718
|
-
color:
|
|
719
|
-
backgroundColor:
|
|
720
|
-
textStyle:
|
|
721
|
-
title:
|
|
722
|
-
line:
|
|
723
|
-
radar:
|
|
724
|
-
bar:
|
|
725
|
-
pie:
|
|
726
|
-
scatter:
|
|
727
|
-
boxplot:
|
|
728
|
-
parallel:
|
|
729
|
-
sankey:
|
|
730
|
-
funnel:
|
|
731
|
-
gauge:
|
|
732
|
-
candlestick:
|
|
733
|
-
graph:
|
|
734
|
-
map:
|
|
735
|
-
geo:
|
|
736
|
-
categoryAxis:
|
|
737
|
-
valueAxis:
|
|
738
|
-
logAxis:
|
|
739
|
-
timeAxis:
|
|
740
|
-
toolbox:
|
|
741
|
-
legend:
|
|
742
|
-
tooltip:
|
|
743
|
-
timeline:
|
|
744
|
-
visualMap:
|
|
745
|
-
dataZoom:
|
|
746
|
-
markPoint:
|
|
697
|
+
], 8, Xs));
|
|
698
|
+
}
|
|
699
|
+
}), Js = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Zs = "#242424", qs = {}, Qs = { textStyle: { color: "#eeeeee" }, subtextStyle: { color: "#aaaaaa" } }, er = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, tr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, nr = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, ir = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, or = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, sr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, rr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, lr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, ar = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, ur = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, cr = { itemStyle: { color: "#fd1050", color0: "#0cf49b", borderColor: "#fd1050", borderColor0: "#0cf49b", borderWidth: 1 } }, mr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" }, lineStyle: { width: 1, color: "#aaa" }, symbolSize: 4, symbol: "circle", smooth: !1, color: ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], label: { color: "#eee" } }, pr = { itemStyle: { areaColor: "#eee", borderColor: "#444", borderWidth: 0.5 }, label: { color: "#000" }, emphasis: { itemStyle: { areaColor: "rgba(255,215,0,0.8)", borderColor: "#444", borderWidth: 1 }, label: { color: "rgb(100,0,0)" } } }, dr = { itemStyle: { areaColor: "#eee", borderColor: "#444", borderWidth: 0.5 }, label: { color: "#000" }, emphasis: { itemStyle: { areaColor: "rgba(255,215,0,0.8)", borderColor: "#444", borderWidth: 1 }, label: { color: "rgb(100,0,0)" } } }, fr = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, br = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, yr = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, hr = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, gr = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, xr = { textStyle: { color: "#eeeeee" } }, vr = { axisPointer: { lineStyle: { color: "#eeeeee", width: "1" }, crossStyle: { color: "#eeeeee", width: "1" } } }, kr = { lineStyle: { color: "#eeeeee", width: 1 }, itemStyle: { color: "#dd6b66", borderWidth: 1 }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: 0.5 }, checkpointStyle: { color: "#e43c59", borderColor: "#c23531" }, label: { color: "#eeeeee" }, emphasis: { itemStyle: { color: "#a9334c" }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: 0.5 }, label: { color: "#eeeeee" } } }, _r = { color: ["#bf444c", "#d88273", "#f6efa6"] }, wr = { backgroundColor: "rgba(47,69,84,0)", dataBackgroundColor: "rgba(255,255,255,0.3)", fillerColor: "rgba(167,183,204,0.4)", handleColor: "#a7b7cc", handleSize: "100%", textStyle: { color: "#eeeeee" } }, Vr = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, $r = {
|
|
700
|
+
color: Js,
|
|
701
|
+
backgroundColor: Zs,
|
|
702
|
+
textStyle: qs,
|
|
703
|
+
title: Qs,
|
|
704
|
+
line: er,
|
|
705
|
+
radar: tr,
|
|
706
|
+
bar: nr,
|
|
707
|
+
pie: ir,
|
|
708
|
+
scatter: or,
|
|
709
|
+
boxplot: sr,
|
|
710
|
+
parallel: rr,
|
|
711
|
+
sankey: lr,
|
|
712
|
+
funnel: ar,
|
|
713
|
+
gauge: ur,
|
|
714
|
+
candlestick: cr,
|
|
715
|
+
graph: mr,
|
|
716
|
+
map: pr,
|
|
717
|
+
geo: dr,
|
|
718
|
+
categoryAxis: fr,
|
|
719
|
+
valueAxis: br,
|
|
720
|
+
logAxis: yr,
|
|
721
|
+
timeAxis: hr,
|
|
722
|
+
toolbox: gr,
|
|
723
|
+
legend: xr,
|
|
724
|
+
tooltip: vr,
|
|
725
|
+
timeline: kr,
|
|
726
|
+
visualMap: _r,
|
|
727
|
+
dataZoom: wr,
|
|
728
|
+
markPoint: Vr
|
|
729
|
+
}, Ir = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Sr = "#f5f5f5", Cr = {}, Tr = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, Pr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, zr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Ar = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, Lr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Br = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Wr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Er = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Nr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Mr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Rr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Dr = { itemStyle: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", borderWidth: 1 } }, Fr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" }, lineStyle: { width: 1, color: "#aaa" }, symbolSize: 4, symbol: "circle", smooth: !1, color: ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], label: { color: "#eee" } }, Gr = { itemStyle: { areaColor: "#eee", borderColor: "#444", borderWidth: 0.5 }, label: { color: "#000" }, emphasis: { itemStyle: { areaColor: "rgba(255,215,0,0.8)", borderColor: "#444", borderWidth: 1 }, label: { color: "rgb(100,0,0)" } } }, Hr = { itemStyle: { areaColor: "#eee", borderColor: "#444", borderWidth: 0.5 }, label: { color: "#000" }, emphasis: { itemStyle: { areaColor: "rgba(255,215,0,0.8)", borderColor: "#444", borderWidth: 1 }, label: { color: "rgb(100,0,0)" } } }, Kr = { axisLine: { show: !0, lineStyle: { color: "#6e7079" } }, axisTick: { show: !0, lineStyle: { color: "#6e7079" } }, axisLabel: { show: !0, color: "#6e7079" }, splitLine: { show: !0, lineStyle: { color: ["#e0e6f1"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, jr = { axisLine: { show: !0, lineStyle: { color: "#6e7079" } }, axisTick: { show: !0, lineStyle: { color: "#6e7079" } }, axisLabel: { show: !0, color: "#6e7079" }, splitLine: { show: !0, lineStyle: { color: ["#e0e6f1"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Or = { axisLine: { show: !0, lineStyle: { color: "#6e7079" } }, axisTick: { show: !0, lineStyle: { color: "#6e7079" } }, axisLabel: { show: !0, color: "#6e7079" }, splitLine: { show: !0, lineStyle: { color: ["#e0e6f1"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Ur = { axisLine: { show: !0, lineStyle: { color: "#6e7079" } }, axisTick: { show: !0, lineStyle: { color: "#6e7079" } }, axisLabel: { show: !0, color: "#6e7079" }, splitLine: { show: !0, lineStyle: { color: ["#e0e6f1"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Xr = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, Yr = { textStyle: { color: "#333333" } }, Jr = { axisPointer: { lineStyle: { color: "#cccccc", width: "1" }, crossStyle: { color: "#cccccc", width: "1" } } }, Zr = { lineStyle: { color: "#eeeeee", width: "2" }, itemStyle: { color: "#dd6b66", borderWidth: 1 }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: "1" }, checkpointStyle: { color: "#e43c59", borderColor: "#c23531" }, label: { color: "#eeeeee" }, emphasis: { itemStyle: { color: "#a9334c" }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: "1" }, label: { color: "#eeeeee" } } }, qr = { color: ["#bf444c", "#d88273", "#f6efa6"] }, Qr = { backgroundColor: "rgba(47,69,84,0)", dataBackgroundColor: "rgba(255,255,255,0.3)", fillerColor: "rgba(167,183,204,0.4)", handleColor: "#a7b7cc", handleSize: "100%", textStyle: { color: "#eeeeee" } }, el = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, tl = {
|
|
730
|
+
color: Ir,
|
|
731
|
+
backgroundColor: Sr,
|
|
732
|
+
textStyle: Cr,
|
|
733
|
+
title: Tr,
|
|
734
|
+
line: Pr,
|
|
735
|
+
radar: zr,
|
|
736
|
+
bar: Ar,
|
|
737
|
+
pie: Lr,
|
|
738
|
+
scatter: Br,
|
|
739
|
+
boxplot: Wr,
|
|
740
|
+
parallel: Er,
|
|
741
|
+
sankey: Nr,
|
|
742
|
+
funnel: Mr,
|
|
743
|
+
gauge: Rr,
|
|
744
|
+
candlestick: Dr,
|
|
745
|
+
graph: Fr,
|
|
746
|
+
map: Gr,
|
|
747
|
+
geo: Hr,
|
|
748
|
+
categoryAxis: Kr,
|
|
749
|
+
valueAxis: jr,
|
|
750
|
+
logAxis: Or,
|
|
751
|
+
timeAxis: Ur,
|
|
752
|
+
toolbox: Xr,
|
|
753
|
+
legend: Yr,
|
|
754
|
+
tooltip: Jr,
|
|
755
|
+
timeline: Zr,
|
|
756
|
+
visualMap: qr,
|
|
757
|
+
dataZoom: Qr,
|
|
758
|
+
markPoint: el
|
|
747
759
|
};
|
|
748
760
|
Jo([
|
|
749
761
|
Zo,
|
|
@@ -755,18 +767,18 @@ Jo([
|
|
|
755
767
|
is,
|
|
756
768
|
os
|
|
757
769
|
]);
|
|
758
|
-
oo("dark",
|
|
759
|
-
oo("light",
|
|
760
|
-
const
|
|
770
|
+
oo("dark", $r);
|
|
771
|
+
oo("light", tl);
|
|
772
|
+
const nl = /* @__PURE__ */ $({
|
|
761
773
|
__name: "index",
|
|
762
774
|
props: {
|
|
763
775
|
node: {},
|
|
764
776
|
outer: { type: Boolean }
|
|
765
777
|
},
|
|
766
778
|
setup(t) {
|
|
767
|
-
const e = t, i = $e(), o = We(),
|
|
779
|
+
const e = t, i = $e(), o = We(), r = pe(), s = de(), { width: a, minWidth: p, maxWidth: d, height: b, minHeight: m, maxHeight: u, applySize: c } = ge(e), { applyTitle: f } = mo(e), { applyXAxis: h } = po(e), { applyYAxis: x } = fo(e), { applyLegend: g } = uo(e), { applySeries: w } = co(e), C = k(() => {
|
|
768
780
|
const S = {}, D = s.value.type;
|
|
769
|
-
return
|
|
781
|
+
return r === "page" ? D === "common" ? c(S) : console.assert(!1) : r === "comp" && D === "common" ? c(S) : console.assert(!1), S;
|
|
770
782
|
}), M = Xi("chart");
|
|
771
783
|
let W;
|
|
772
784
|
const F = () => {
|
|
@@ -781,7 +793,7 @@ const Qr = /* @__PURE__ */ $({
|
|
|
781
793
|
};
|
|
782
794
|
return Yi(async () => {
|
|
783
795
|
window.addEventListener("resize", R, !1), await qi(() => !!M.value), F(), E();
|
|
784
|
-
}),
|
|
796
|
+
}), je(() => {
|
|
785
797
|
window.removeEventListener("resize", R, !1), W?.dispose();
|
|
786
798
|
}), q(
|
|
787
799
|
[
|
|
@@ -810,16 +822,16 @@ const Qr = /* @__PURE__ */ $({
|
|
|
810
822
|
style: Q(C.value)
|
|
811
823
|
}, null, 4));
|
|
812
824
|
}
|
|
813
|
-
}),
|
|
825
|
+
}), il = /* @__PURE__ */ $({
|
|
814
826
|
__name: "index",
|
|
815
827
|
props: {
|
|
816
828
|
node: {},
|
|
817
829
|
outer: { type: Boolean }
|
|
818
830
|
},
|
|
819
831
|
setup(t) {
|
|
820
|
-
const e = t, i = $e(), o = We(),
|
|
832
|
+
const e = t, i = $e(), o = We(), r = pe(), s = de(), { width: a, minWidth: p, maxWidth: d, height: b, minHeight: m, maxHeight: u, applySize: c } = ge(e), { applyTitle: f } = mo(e), { applyXAxis: h } = po(e), { applyYAxis: x } = fo(e), { applyLegend: g } = uo(e), { applySeries: w } = co(e), C = k(() => {
|
|
821
833
|
const S = {}, D = s.value.type;
|
|
822
|
-
return
|
|
834
|
+
return r === "page" ? D === "common" ? c(S) : console.assert(!1) : r === "comp" && D === "common" ? c(S) : console.assert(!1), S;
|
|
823
835
|
}), M = Xi("chart");
|
|
824
836
|
let W;
|
|
825
837
|
const F = () => {
|
|
@@ -834,7 +846,7 @@ const Qr = /* @__PURE__ */ $({
|
|
|
834
846
|
};
|
|
835
847
|
return Yi(async () => {
|
|
836
848
|
window.addEventListener("resize", R, !1), await qi(() => !!M.value), F(), E();
|
|
837
|
-
}),
|
|
849
|
+
}), je(() => {
|
|
838
850
|
window.removeEventListener("resize", R, !1), W?.dispose();
|
|
839
851
|
}), q(
|
|
840
852
|
[
|
|
@@ -870,13 +882,13 @@ const Qr = /* @__PURE__ */ $({
|
|
|
870
882
|
state: {}
|
|
871
883
|
},
|
|
872
884
|
setup(t) {
|
|
873
|
-
const { t: e } = fs(), i = t, o = de(),
|
|
874
|
-
|
|
885
|
+
const { t: e } = fs(), i = t, o = de(), r = ac(), s = ce(-1), a = ce();
|
|
886
|
+
kc(a), ue(() => {
|
|
875
887
|
if (!i.refContext.refid) {
|
|
876
888
|
s.value = -1, a.value = void 0;
|
|
877
889
|
return;
|
|
878
890
|
}
|
|
879
|
-
const c =
|
|
891
|
+
const c = r.value[i.refContext.refid];
|
|
880
892
|
if (!c) {
|
|
881
893
|
s.value = -1, a.value = void 0, Qi.emit("compNotAvail", i.refContext.refid);
|
|
882
894
|
return;
|
|
@@ -931,14 +943,14 @@ const Qr = /* @__PURE__ */ $({
|
|
|
931
943
|
};
|
|
932
944
|
return (c, f) => (v(), V(u));
|
|
933
945
|
}
|
|
934
|
-
}),
|
|
946
|
+
}), ol = /* @__PURE__ */ $({
|
|
935
947
|
__name: "index",
|
|
936
948
|
props: {
|
|
937
949
|
node: {},
|
|
938
950
|
outer: { type: Boolean }
|
|
939
951
|
},
|
|
940
952
|
setup(t) {
|
|
941
|
-
const e = t, { prop: i } =
|
|
953
|
+
const e = t, { prop: i } = l(e, ["settings", "content"]), { prop: o } = l(e, ["settings", "dot"]), { theme: r } = N(), { prop: s } = l(e, ["settings", "offset", "x"]), { prop: a } = l(e, ["settings", "offset", "y"]);
|
|
942
954
|
return (p, d) => {
|
|
943
955
|
const b = z("v-badge");
|
|
944
956
|
return v(), V(b, {
|
|
@@ -946,7 +958,7 @@ const Qr = /* @__PURE__ */ $({
|
|
|
946
958
|
dot: n(o),
|
|
947
959
|
"offset-x": n(s),
|
|
948
960
|
"offset-y": n(a),
|
|
949
|
-
theme: n(
|
|
961
|
+
theme: n(r)
|
|
950
962
|
}, {
|
|
951
963
|
default: I(() => [
|
|
952
964
|
L(p.$slots, "default")
|
|
@@ -955,24 +967,24 @@ const Qr = /* @__PURE__ */ $({
|
|
|
955
967
|
}, 8, ["content", "dot", "offset-x", "offset-y", "theme"]);
|
|
956
968
|
};
|
|
957
969
|
}
|
|
958
|
-
}),
|
|
970
|
+
}), sl = /* @__PURE__ */ $({
|
|
959
971
|
__name: "index",
|
|
960
972
|
props: {
|
|
961
973
|
node: {},
|
|
962
974
|
outer: { type: Boolean }
|
|
963
975
|
},
|
|
964
976
|
setup(t) {
|
|
965
|
-
const e = t, i = G(), o = Ee(), { prop:
|
|
977
|
+
const e = t, i = G(), o = Ee(), { prop: r } = l(e, [
|
|
966
978
|
"settings",
|
|
967
979
|
"addIcon",
|
|
968
980
|
"append"
|
|
969
|
-
]), { prop: s } =
|
|
981
|
+
]), { prop: s } = l(e, ["settings", "block"]), { prop: a } = l(e, ["settings", "color"]), { color: p } = K(a), { prop: d } = l(e, ["settings", "density"]), { prop: b } = l(e, ["settings", "disabled"]), { prop: m } = l(e, ["size", "height"]), { prop: u } = l(e, ["settings", "loading"]), { prop: c } = l(e, ["size", "maxHeight"]), { prop: f } = l(e, ["size", "maxWidth"]), { prop: h } = l(e, ["size", "minHeight"]), { prop: x } = l(e, ["size", "minWidth"]), { prop: g } = l(e, [
|
|
970
982
|
"settings",
|
|
971
983
|
"addIcon",
|
|
972
984
|
"prepend"
|
|
973
|
-
]), { prop: w } =
|
|
985
|
+
]), { prop: w } = l(e, ["settings", "readonly"]), { prop: C } = l(e, ["settings", "ripple"]), { prop: M } = l(e, ["settings", "size"]), { prop: W } = l(e, ["settings", "stacked"]), { prop: F } = l(e, ["settings", "text"]), { theme: R } = N(), { prop: E } = l(e, ["settings", "variant"]), { prop: S } = l(e, ["size", "width"]), D = (J) => {
|
|
974
986
|
i !== "runtime" && i !== "preview" || (o.setVariable("__pointerPosX__", J.clientX), o.setVariable("__pointerPosY__", J.clientY), o.callFunction("__triggerEventV1__", [
|
|
975
|
-
Ce("elementEvent",
|
|
987
|
+
Ce("elementEvent", e.node.basic.id, "click")
|
|
976
988
|
]));
|
|
977
989
|
};
|
|
978
990
|
return (J, te) => {
|
|
@@ -980,7 +992,7 @@ const Qr = /* @__PURE__ */ $({
|
|
|
980
992
|
return v(), V(n(Z), null, {
|
|
981
993
|
default: I(() => [
|
|
982
994
|
H(re, {
|
|
983
|
-
"append-icon": n(
|
|
995
|
+
"append-icon": n(r),
|
|
984
996
|
block: n(s),
|
|
985
997
|
color: n(p),
|
|
986
998
|
density: n(d),
|
|
@@ -1007,8 +1019,8 @@ const Qr = /* @__PURE__ */ $({
|
|
|
1007
1019
|
});
|
|
1008
1020
|
};
|
|
1009
1021
|
}
|
|
1010
|
-
}),
|
|
1011
|
-
function
|
|
1022
|
+
}), rl = {};
|
|
1023
|
+
function ll(t, e) {
|
|
1012
1024
|
const i = z("v-btn-group");
|
|
1013
1025
|
return v(), V(i, null, {
|
|
1014
1026
|
default: I(() => [
|
|
@@ -1017,20 +1029,20 @@ function ol(t, e) {
|
|
|
1017
1029
|
_: 3
|
|
1018
1030
|
});
|
|
1019
1031
|
}
|
|
1020
|
-
const
|
|
1032
|
+
const al = /* @__PURE__ */ xe(rl, [["render", ll]]), ul = /* @__PURE__ */ $({
|
|
1021
1033
|
__name: "index",
|
|
1022
1034
|
props: {
|
|
1023
1035
|
node: {},
|
|
1024
1036
|
outer: { type: Boolean }
|
|
1025
1037
|
},
|
|
1026
1038
|
setup(t) {
|
|
1027
|
-
const e = t, { prop: i } =
|
|
1039
|
+
const e = t, { prop: i } = l(e, ["settings", "block"]), { prop: o } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["settings", "divided"]), { prop: s } = l(e, ["settings", "mandatory"]), { prop: a } = l(e, ["settings", "multiple"]), { prop: p } = l(e, ["settings", "readonly"]), { prop: d } = l(e, ["settings", "size"]), { prop: b } = l(e, ["settings", "stacked"]), { theme: m } = N(), { prop: u } = l(e, ["settings", "tile"]), { prop: c } = l(e, ["settings", "variant"]);
|
|
1028
1040
|
return (f, h) => {
|
|
1029
1041
|
const x = z("v-btn-toggle");
|
|
1030
1042
|
return v(), V(x, {
|
|
1031
1043
|
block: n(i),
|
|
1032
1044
|
disabled: n(o),
|
|
1033
|
-
divided: n(
|
|
1045
|
+
divided: n(r),
|
|
1034
1046
|
mandatory: n(s),
|
|
1035
1047
|
multiple: n(a),
|
|
1036
1048
|
readonly: n(p),
|
|
@@ -1047,20 +1059,20 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1047
1059
|
}, 8, ["block", "disabled", "divided", "mandatory", "multiple", "readonly", "size", "stacked", "theme", "tile", "variant"]);
|
|
1048
1060
|
};
|
|
1049
1061
|
}
|
|
1050
|
-
}),
|
|
1062
|
+
}), cl = /* @__PURE__ */ $({
|
|
1051
1063
|
__name: "index",
|
|
1052
1064
|
props: {
|
|
1053
1065
|
node: {},
|
|
1054
1066
|
outer: { type: Boolean }
|
|
1055
1067
|
},
|
|
1056
1068
|
setup(t) {
|
|
1057
|
-
const e = t, { prop: i } =
|
|
1069
|
+
const e = t, { prop: i } = l(e, ["settings", "density"]), { prop: o } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["size", "height"]), { prop: s } = l(e, ["settings", "hover"]), { prop: a } = l(e, ["settings", "loading"]), { prop: p } = l(e, ["size", "maxHeight"]), { prop: d } = l(e, ["size", "maxWidth"]), { prop: b } = l(e, ["size", "minHeight"]), { prop: m } = l(e, ["size", "minWidth"]), { prop: u } = l(e, ["settings", "subtitle"]), { prop: c } = l(e, ["settings", "text"]), { theme: f } = N(), { prop: h } = l(e, ["settings", "title"]), { prop: x } = l(e, ["settings", "variant"]), { prop: g } = l(e, ["size", "width"]);
|
|
1058
1070
|
return (w, C) => {
|
|
1059
1071
|
const M = z("v-card");
|
|
1060
1072
|
return v(), V(M, {
|
|
1061
1073
|
density: n(i),
|
|
1062
1074
|
disabled: n(o),
|
|
1063
|
-
height: n(
|
|
1075
|
+
height: n(r),
|
|
1064
1076
|
hover: n(s),
|
|
1065
1077
|
loading: n(a),
|
|
1066
1078
|
"max-height": n(p),
|
|
@@ -1081,15 +1093,15 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1081
1093
|
}, 8, ["density", "disabled", "height", "hover", "loading", "max-height", "max-width", "min-height", "min-width", "subtitle", "text", "theme", "title", "variant", "width"]);
|
|
1082
1094
|
};
|
|
1083
1095
|
}
|
|
1084
|
-
}),
|
|
1096
|
+
}), ml = /* @__PURE__ */ $({
|
|
1085
1097
|
__name: "index",
|
|
1086
1098
|
props: {
|
|
1087
1099
|
node: {},
|
|
1088
1100
|
outer: { type: Boolean }
|
|
1089
1101
|
},
|
|
1090
1102
|
setup(t) {
|
|
1091
|
-
const e = t, { prop: i } =
|
|
1092
|
-
return (
|
|
1103
|
+
const e = t, { prop: i } = l(e, ["settings", "disabled"]), { prop: o } = l(e, ["settings", "readonly"]);
|
|
1104
|
+
return (r, s) => {
|
|
1093
1105
|
const a = z("v-checkbox");
|
|
1094
1106
|
return v(), V(a, {
|
|
1095
1107
|
disabled: n(i),
|
|
@@ -1097,19 +1109,19 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1097
1109
|
}, null, 8, ["disabled", "readonly"]);
|
|
1098
1110
|
};
|
|
1099
1111
|
}
|
|
1100
|
-
}),
|
|
1112
|
+
}), pl = /* @__PURE__ */ $({
|
|
1101
1113
|
__name: "index",
|
|
1102
1114
|
props: {
|
|
1103
1115
|
node: {},
|
|
1104
1116
|
outer: { type: Boolean }
|
|
1105
1117
|
},
|
|
1106
1118
|
setup(t) {
|
|
1107
|
-
const e = t, { prop: i } =
|
|
1119
|
+
const e = t, { prop: i } = l(e, ["settings", "closable"]), { prop: o } = l(e, ["settings", "color"]), { color: r } = K(o), { prop: s } = l(e, ["settings", "density"]), { prop: a } = l(e, ["settings", "disabled"]), { prop: p } = l(e, ["settings", "draggable"]), { prop: d } = l(e, ["settings", "filter"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "size"]), { prop: u } = l(e, ["settings", "text"]), { theme: c } = N(), { prop: f } = l(e, ["settings", "tile"]), { prop: h } = l(e, ["settings", "value"]), { prop: x } = l(e, ["settings", "variant"]);
|
|
1108
1120
|
return (g, w) => {
|
|
1109
1121
|
const C = z("v-chip");
|
|
1110
1122
|
return v(), V(C, {
|
|
1111
1123
|
closable: n(i),
|
|
1112
|
-
color: n(
|
|
1124
|
+
color: n(r),
|
|
1113
1125
|
density: n(s),
|
|
1114
1126
|
disabled: n(a),
|
|
1115
1127
|
draggable: n(p),
|
|
@@ -1124,14 +1136,14 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1124
1136
|
}, null, 8, ["closable", "color", "density", "disabled", "draggable", "filter", "label", "size", "text", "theme", "tile", "value", "variant"]);
|
|
1125
1137
|
};
|
|
1126
1138
|
}
|
|
1127
|
-
}),
|
|
1139
|
+
}), dl = /* @__PURE__ */ $({
|
|
1128
1140
|
__name: "index",
|
|
1129
1141
|
props: {
|
|
1130
1142
|
node: {},
|
|
1131
1143
|
outer: { type: Boolean }
|
|
1132
1144
|
},
|
|
1133
1145
|
setup(t) {
|
|
1134
|
-
const e = t, { prop: i } =
|
|
1146
|
+
const e = t, { prop: i } = l(e, ["settings", "column"]), { prop: o } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "filter"]), { prop: a } = l(e, ["settings", "mandatory"]), { prop: p } = l(e, ["settings", "multiple"]), { prop: d } = l(e, ["settings", "showArrows"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "value"]);
|
|
1135
1147
|
return (u, c) => {
|
|
1136
1148
|
const f = z("v-chip-group");
|
|
1137
1149
|
return v(), V(f, {
|
|
@@ -1139,7 +1151,7 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1139
1151
|
"onUpdate:modelValue": c[0] || (c[0] = (h) => O(m) ? m.value = h : null),
|
|
1140
1152
|
column: n(i),
|
|
1141
1153
|
direction: n(o),
|
|
1142
|
-
disabled: n(
|
|
1154
|
+
disabled: n(r),
|
|
1143
1155
|
filter: n(s),
|
|
1144
1156
|
mandatory: n(a),
|
|
1145
1157
|
multiple: n(p),
|
|
@@ -1153,17 +1165,17 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1153
1165
|
}, 8, ["modelValue", "column", "direction", "disabled", "filter", "mandatory", "multiple", "show-arrows", "theme"]);
|
|
1154
1166
|
};
|
|
1155
1167
|
}
|
|
1156
|
-
}),
|
|
1168
|
+
}), fl = /* @__PURE__ */ $({
|
|
1157
1169
|
__name: "index",
|
|
1158
1170
|
props: {
|
|
1159
1171
|
node: {},
|
|
1160
1172
|
outer: { type: Boolean }
|
|
1161
1173
|
},
|
|
1162
1174
|
setup(t) {
|
|
1163
|
-
const e = t, i = pe(), o = de(), { applySize:
|
|
1175
|
+
const e = t, i = pe(), o = de(), { applySize: r } = ge(e), s = k(() => {
|
|
1164
1176
|
const h = {}, x = o.value.type;
|
|
1165
|
-
return i === "page" ? x === "common" ?
|
|
1166
|
-
}), { prop: a } =
|
|
1177
|
+
return i === "page" ? x === "common" ? r(h) : console.assert(!1) : i === "comp" && x === "common" ? r(h) : console.assert(!1), h;
|
|
1178
|
+
}), { prop: a } = l(e, ["settings", "disabled"]), { prop: p } = l(e, ["settings", "hideCanvas"]), { prop: d } = l(e, ["settings", "hideHeader"]), { prop: b } = l(e, ["settings", "hideInputs"]), { prop: m } = l(e, ["settings", "hideSliders"]), { prop: u } = l(e, ["settings", "landscape"]), { prop: c } = l(e, [
|
|
1167
1179
|
"settings",
|
|
1168
1180
|
"showSwatches"
|
|
1169
1181
|
]), { theme: f } = N();
|
|
@@ -1182,14 +1194,14 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1182
1194
|
}, null, 8, ["disabled", "hide-canvas", "hide-header", "hide-inputs", "hide-sliders", "landscape", "show-swatches", "style", "theme"]);
|
|
1183
1195
|
};
|
|
1184
1196
|
}
|
|
1185
|
-
}),
|
|
1197
|
+
}), bl = /* @__PURE__ */ $({
|
|
1186
1198
|
__name: "index",
|
|
1187
1199
|
props: {
|
|
1188
1200
|
node: {},
|
|
1189
1201
|
outer: { type: Boolean }
|
|
1190
1202
|
},
|
|
1191
1203
|
setup(t) {
|
|
1192
|
-
const e = t, { prop: i } =
|
|
1204
|
+
const e = t, { prop: i } = l(e, ["settings", "hideDetails"]), { prop: o } = l(e, ["settings", "label"]), { prop: r } = l(e, ["settings", "placeholder"]), { prop: s } = l(e, ["settings", "readonly"]), { prop: a } = l(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1193
1205
|
return (b, m) => {
|
|
1194
1206
|
const u = z("v-combobox");
|
|
1195
1207
|
return v(), V(n(Z), null, {
|
|
@@ -1199,7 +1211,7 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1199
1211
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1200
1212
|
"hide-details": n(i),
|
|
1201
1213
|
label: n(o),
|
|
1202
|
-
placeholder: n(
|
|
1214
|
+
placeholder: n(r),
|
|
1203
1215
|
readonly: n(s),
|
|
1204
1216
|
"single-line": n(a),
|
|
1205
1217
|
theme: n(p)
|
|
@@ -1209,17 +1221,17 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1209
1221
|
});
|
|
1210
1222
|
};
|
|
1211
1223
|
}
|
|
1212
|
-
}),
|
|
1224
|
+
}), yl = /* @__PURE__ */ $({
|
|
1213
1225
|
__name: "index",
|
|
1214
1226
|
props: {
|
|
1215
1227
|
node: {},
|
|
1216
1228
|
outer: { type: Boolean }
|
|
1217
1229
|
},
|
|
1218
1230
|
setup(t) {
|
|
1219
|
-
const e = t, i = pe(), o = de(), { prop:
|
|
1231
|
+
const e = t, i = pe(), o = de(), { prop: r } = l(e, [
|
|
1220
1232
|
"settings",
|
|
1221
1233
|
"backgroundColor"
|
|
1222
|
-
]), { color: s } =
|
|
1234
|
+
]), { color: s } = K(r), { applySize: a } = ge(e), { applyMargin: p } = Wn(e), { applyPadding: d } = En(e), { applyBorder: b } = Bn(e), m = k(() => {
|
|
1223
1235
|
const u = {}, c = o.value.type;
|
|
1224
1236
|
return i === "page" ? c === "common" ? (a(u), p(u), d(u), b(u), s.value && (u.backgroundColor = s.value)) : console.assert(!1) : i === "comp" && c === "common" ? (a(u), p(u), d(u), b(u), s.value && (u.backgroundColor = s.value)) : console.assert(!1), u;
|
|
1225
1237
|
});
|
|
@@ -1229,14 +1241,14 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1229
1241
|
L(u.$slots, "default")
|
|
1230
1242
|
], 4));
|
|
1231
1243
|
}
|
|
1232
|
-
}),
|
|
1244
|
+
}), hl = /* @__PURE__ */ $({
|
|
1233
1245
|
__name: "index",
|
|
1234
1246
|
props: {
|
|
1235
1247
|
node: {},
|
|
1236
1248
|
outer: { type: Boolean }
|
|
1237
1249
|
},
|
|
1238
1250
|
setup(t) {
|
|
1239
|
-
const e = t, { prop: i } =
|
|
1251
|
+
const e = t, { prop: i } = l(e, ["settings", "density"]), { prop: o } = l(e, ["settings", "fixedFooter"]), { prop: r } = l(e, ["settings", "fixedHeader"]), { prop: s } = l(e, ["settings", "headers"]), { prop: a } = l(e, ["size", "height"]), { prop: p } = l(e, ["settings", "hover"]), { prop: d } = l(e, ["settings", "data"], !0), { prop: b } = l(e, ["settings", "loading"]), { prop: m } = l(e, ["settings", "multiSort"]), { theme: u } = N(), { prop: c } = l(e, ["size", "width"]), f = k(() => {
|
|
1240
1252
|
const h = [];
|
|
1241
1253
|
return (e.node.slots?.items ?? []).forEach((g) => {
|
|
1242
1254
|
g.column && g.comp && h.push(g);
|
|
@@ -1247,7 +1259,7 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1247
1259
|
return v(), V(g, {
|
|
1248
1260
|
density: n(i),
|
|
1249
1261
|
"fixed-footer": n(o),
|
|
1250
|
-
"fixed-header": n(
|
|
1262
|
+
"fixed-header": n(r),
|
|
1251
1263
|
headers: n(s),
|
|
1252
1264
|
height: n(a),
|
|
1253
1265
|
hover: n(p),
|
|
@@ -1269,19 +1281,19 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1269
1281
|
]), 1032, ["density", "fixed-footer", "fixed-header", "headers", "height", "hover", "items", "loading", "multi-sort", "theme", "width"]);
|
|
1270
1282
|
};
|
|
1271
1283
|
}
|
|
1272
|
-
}),
|
|
1273
|
-
function
|
|
1284
|
+
}), gl = {};
|
|
1285
|
+
function xl(t, e) {
|
|
1274
1286
|
const i = z("v-date-picker");
|
|
1275
1287
|
return v(), V(i);
|
|
1276
1288
|
}
|
|
1277
|
-
const
|
|
1289
|
+
const vl = /* @__PURE__ */ xe(gl, [["render", xl]]), kl = ["id"], _l = /* @__PURE__ */ $({
|
|
1278
1290
|
__name: "index",
|
|
1279
1291
|
props: {
|
|
1280
1292
|
node: {},
|
|
1281
1293
|
outer: { type: Boolean }
|
|
1282
1294
|
},
|
|
1283
1295
|
setup(t) {
|
|
1284
|
-
const e = t, i = G(), o = Ee(),
|
|
1296
|
+
const e = t, i = G(), o = Ee(), r = k(() => e.node.basic?.id), { open: s } = eo(`runtimeDlg/${Zi()}`);
|
|
1285
1297
|
return bo(o, e, (p) => {
|
|
1286
1298
|
if (i !== "runtime" && i !== "preview")
|
|
1287
1299
|
return;
|
|
@@ -1297,8 +1309,8 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1297
1309
|
activator: I(() => [
|
|
1298
1310
|
n(i) === "editor" ? (v(), Y("div", {
|
|
1299
1311
|
key: 0,
|
|
1300
|
-
id: `__node__@${
|
|
1301
|
-
}, null, 8,
|
|
1312
|
+
id: `__node__@${r.value}`
|
|
1313
|
+
}, null, 8, kl)) : ee("", !0)
|
|
1302
1314
|
]),
|
|
1303
1315
|
default: I(() => [
|
|
1304
1316
|
L(p.$slots, "default")
|
|
@@ -1307,20 +1319,20 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1307
1319
|
}, 8, ["modelValue"]);
|
|
1308
1320
|
};
|
|
1309
1321
|
}
|
|
1310
|
-
}),
|
|
1322
|
+
}), wl = /* @__PURE__ */ $({
|
|
1311
1323
|
__name: "index",
|
|
1312
1324
|
props: {
|
|
1313
1325
|
node: {},
|
|
1314
1326
|
outer: { type: Boolean }
|
|
1315
1327
|
},
|
|
1316
1328
|
setup(t) {
|
|
1317
|
-
const e = t, { prop: i } =
|
|
1329
|
+
const e = t, { prop: i } = l(e, ["settings", "chips"]), { prop: o } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "multiple"]), { prop: b } = l(e, ["settings", "readonly"]), { prop: m } = l(e, ["settings", "reverse"]), { prop: u } = l(e, ["settings", "singleLine"]);
|
|
1318
1330
|
return (c, f) => {
|
|
1319
1331
|
const h = z("v-file-input");
|
|
1320
1332
|
return v(), V(h, {
|
|
1321
1333
|
chips: n(i),
|
|
1322
1334
|
density: n(o),
|
|
1323
|
-
direction: n(
|
|
1335
|
+
direction: n(r),
|
|
1324
1336
|
disabled: n(s),
|
|
1325
1337
|
label: n(a),
|
|
1326
1338
|
loading: n(p),
|
|
@@ -1331,17 +1343,17 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1331
1343
|
}, null, 8, ["chips", "density", "direction", "disabled", "label", "loading", "multiple", "readonly", "reverse", "single-line"]);
|
|
1332
1344
|
};
|
|
1333
1345
|
}
|
|
1334
|
-
}),
|
|
1346
|
+
}), Vl = /* @__PURE__ */ $({
|
|
1335
1347
|
__name: "index",
|
|
1336
1348
|
props: {
|
|
1337
1349
|
node: {},
|
|
1338
1350
|
outer: { type: Boolean }
|
|
1339
1351
|
},
|
|
1340
1352
|
setup(t) {
|
|
1341
|
-
const e = t, i = $e(), o = pe(),
|
|
1353
|
+
const e = t, i = $e(), o = pe(), r = de(), { applySize: s } = ge(e), { applyMargin: a } = Wn(e), { applyPadding: p } = En(e), { applyBorder: d } = Bn(e), { prop: b } = l(e, [
|
|
1342
1354
|
"settings",
|
|
1343
1355
|
"backgroundColor"
|
|
1344
|
-
]), { color: m } =
|
|
1356
|
+
]), { color: m } = K(b), u = (f) => {
|
|
1345
1357
|
m.value && (f.backgroundColor = m.value), f.display = "flex";
|
|
1346
1358
|
const h = Re(i.value.width), x = Ie(h, e.node.settings?.direction);
|
|
1347
1359
|
x === "row" ? f.flexDirection = "row" : x === "rowReverse" ? f.flexDirection = "row-reverse" : x === "column" ? f.flexDirection = "column" : x === "columnReverse" && (f.flexDirection = "column-reverse");
|
|
@@ -1352,7 +1364,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1352
1364
|
const C = Ie(h, e.node.settings?.crossAlign);
|
|
1353
1365
|
C === "start" ? f.alignItems = "flex-start" : C === "end" ? f.alignItems = "flex-end" : C === "center" ? f.alignItems = "center" : C === "baseline" ? f.alignItems = "baseline" : C === "stretch" && (f.alignItems = "stretch");
|
|
1354
1366
|
}, c = k(() => {
|
|
1355
|
-
const f = {}, h =
|
|
1367
|
+
const f = {}, h = r.value.type;
|
|
1356
1368
|
return o === "page" ? h === "common" ? (s(f), a(f), p(f), d(f), u(f)) : console.assert(!1) : o === "comp" && h === "common" ? (s(f), a(f), p(f), d(f), u(f)) : console.assert(!1), f;
|
|
1357
1369
|
});
|
|
1358
1370
|
return (f, h) => (v(), Y("div", {
|
|
@@ -1361,16 +1373,16 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1361
1373
|
L(f.$slots, "default")
|
|
1362
1374
|
], 4));
|
|
1363
1375
|
}
|
|
1364
|
-
}),
|
|
1376
|
+
}), $l = /* @__PURE__ */ $({
|
|
1365
1377
|
__name: "index",
|
|
1366
1378
|
props: {
|
|
1367
1379
|
node: {},
|
|
1368
1380
|
outer: { type: Boolean }
|
|
1369
1381
|
},
|
|
1370
1382
|
setup(t) {
|
|
1371
|
-
const e = t, i = pe(), o = de(), { applySize:
|
|
1383
|
+
const e = t, i = pe(), o = de(), { applySize: r } = ge(e), { prop: s } = l(e, ["settings", "grow"]), { prop: a } = l(e, ["settings", "shrink"]), p = k(() => {
|
|
1372
1384
|
const d = {}, b = o.value.type;
|
|
1373
|
-
return i === "page" ? b === "common" ? (
|
|
1385
|
+
return i === "page" ? b === "common" ? (r(d), d.flexGrow = s.value ? 1 : 0, d.flexShrink = a.value ? 1 : 0) : console.assert(!1) : i === "comp" && b === "common" ? (r(d), d.flexGrow = s.value ? 1 : 0, d.flexShrink = a.value ? 1 : 0) : console.assert(!1), d;
|
|
1374
1386
|
});
|
|
1375
1387
|
return (d, b) => (v(), Y("div", {
|
|
1376
1388
|
style: Q(p.value)
|
|
@@ -1378,22 +1390,22 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1378
1390
|
L(d.$slots, "default")
|
|
1379
1391
|
], 4));
|
|
1380
1392
|
}
|
|
1381
|
-
}),
|
|
1393
|
+
}), Il = /* @__PURE__ */ $({
|
|
1382
1394
|
__name: "index",
|
|
1383
1395
|
props: {
|
|
1384
1396
|
node: {},
|
|
1385
1397
|
outer: { type: Boolean }
|
|
1386
1398
|
},
|
|
1387
1399
|
setup(t) {
|
|
1388
|
-
const e = t, i = G(), o = pe(),
|
|
1400
|
+
const e = t, i = G(), o = pe(), r = de(), s = Ee(), { prop: a } = l(e, ["settings", "valid"]), { prop: p } = l(e, ["settings", "fastFail"]), { prop: d } = l(e, [
|
|
1389
1401
|
"settings",
|
|
1390
1402
|
"backgroundColor"
|
|
1391
|
-
]), { color: b } =
|
|
1392
|
-
const g = {}, w =
|
|
1403
|
+
]), { color: b } = K(d), { applySize: m } = ge(e), { applyMargin: u } = Wn(e), { applyPadding: c } = En(e), { applyBorder: f } = Bn(e), h = k(() => {
|
|
1404
|
+
const g = {}, w = r.value.type;
|
|
1393
1405
|
return o === "page" ? w === "common" ? (m(g), u(g), c(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1) : o === "comp" && w === "common" ? (m(g), u(g), c(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1), g;
|
|
1394
1406
|
}), x = () => {
|
|
1395
1407
|
i !== "runtime" && i !== "preview" || s.callFunction("__triggerEventV1__", [
|
|
1396
|
-
Ce("elementEvent",
|
|
1408
|
+
Ce("elementEvent", e.node.basic.id, "submit")
|
|
1397
1409
|
]);
|
|
1398
1410
|
};
|
|
1399
1411
|
return (g, w) => {
|
|
@@ -1412,38 +1424,38 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1412
1424
|
}, 8, ["modelValue", "fast-fail", "style"]);
|
|
1413
1425
|
};
|
|
1414
1426
|
}
|
|
1415
|
-
}),
|
|
1427
|
+
}), Sl = /* @__PURE__ */ $({
|
|
1416
1428
|
__name: "index",
|
|
1417
1429
|
props: {
|
|
1418
1430
|
node: {},
|
|
1419
1431
|
outer: { type: Boolean }
|
|
1420
1432
|
},
|
|
1421
1433
|
setup(t) {
|
|
1422
|
-
const e = t, { prop: i } =
|
|
1434
|
+
const e = t, { prop: i } = l(e, ["settings", "color"]), { color: o } = K(i), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "icon"]), { prop: a } = l(e, ["settings", "size"]), { theme: p } = N();
|
|
1423
1435
|
return (d, b) => {
|
|
1424
1436
|
const m = z("v-icon");
|
|
1425
1437
|
return v(), V(m, {
|
|
1426
1438
|
color: n(o),
|
|
1427
|
-
disabled: n(
|
|
1439
|
+
disabled: n(r),
|
|
1428
1440
|
icon: n(s),
|
|
1429
1441
|
size: n(a),
|
|
1430
1442
|
theme: n(p)
|
|
1431
1443
|
}, null, 8, ["color", "disabled", "icon", "size", "theme"]);
|
|
1432
1444
|
};
|
|
1433
1445
|
}
|
|
1434
|
-
}),
|
|
1446
|
+
}), Cl = ["id"], Tl = /* @__PURE__ */ $({
|
|
1435
1447
|
__name: "index",
|
|
1436
1448
|
props: {
|
|
1437
1449
|
node: {},
|
|
1438
1450
|
outer: { type: Boolean }
|
|
1439
1451
|
},
|
|
1440
1452
|
setup(t) {
|
|
1441
|
-
const e = t, i = G(), o = Ee(),
|
|
1453
|
+
const e = t, i = G(), o = Ee(), r = ce(0), s = ce(0), a = k(() => [r.value, s.value]), p = k(() => e.node.basic?.id), { open: d } = eo(`runtimeMenu/${Zi()}`);
|
|
1442
1454
|
return bo(o, e, (m) => {
|
|
1443
1455
|
if (i !== "runtime" && i !== "preview")
|
|
1444
1456
|
return;
|
|
1445
1457
|
const { name: u } = m;
|
|
1446
|
-
u === "open" ? (
|
|
1458
|
+
u === "open" ? (r.value = o.getVariable("__pointerPosX__"), s.value = o.getVariable("__pointerPosY__"), d.value = !0) : u === "close" && (d.value = !1);
|
|
1447
1459
|
}), (m, u) => {
|
|
1448
1460
|
const c = z("v-menu");
|
|
1449
1461
|
return v(), V(c, {
|
|
@@ -1458,7 +1470,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1458
1470
|
n(i) === "editor" ? (v(), Y("div", {
|
|
1459
1471
|
key: 0,
|
|
1460
1472
|
id: `__node__@${p.value}`
|
|
1461
|
-
}, null, 8,
|
|
1473
|
+
}, null, 8, Cl)) : ee("", !0)
|
|
1462
1474
|
]),
|
|
1463
1475
|
default: I(() => [
|
|
1464
1476
|
L(m.$slots, "default")
|
|
@@ -1467,30 +1479,30 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1467
1479
|
}, 8, ["modelValue", "target"]);
|
|
1468
1480
|
};
|
|
1469
1481
|
}
|
|
1470
|
-
}),
|
|
1482
|
+
}), Pl = /* @__PURE__ */ $({
|
|
1471
1483
|
__name: "index",
|
|
1472
1484
|
props: {
|
|
1473
1485
|
node: {},
|
|
1474
1486
|
outer: { type: Boolean }
|
|
1475
1487
|
},
|
|
1476
1488
|
setup(t) {
|
|
1477
|
-
const e = t, { prop: i } =
|
|
1489
|
+
const e = t, { prop: i } = l(e, [
|
|
1478
1490
|
"settings",
|
|
1479
1491
|
"addIcon",
|
|
1480
1492
|
"append"
|
|
1481
|
-
]), { prop: o } =
|
|
1493
|
+
]), { prop: o } = l(e, [
|
|
1482
1494
|
"settings",
|
|
1483
1495
|
"addIcon",
|
|
1484
1496
|
"appendInner"
|
|
1485
|
-
]), { prop:
|
|
1497
|
+
]), { prop: r } = l(e, ["settings", "clearable"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "max"]), { prop: b } = l(e, ["size", "maxWidth"]), { prop: m } = l(e, ["settings", "min"]), { prop: u } = l(e, ["size", "minWidth"]), { prop: c } = l(e, ["settings", "placeholder"]), { prop: f } = l(e, ["settings", "precision"]), { prop: h } = l(e, ["settings", "prefix"]), { prop: x } = l(e, [
|
|
1486
1498
|
"settings",
|
|
1487
1499
|
"addIcon",
|
|
1488
1500
|
"prepend"
|
|
1489
|
-
]), { prop: g } =
|
|
1501
|
+
]), { prop: g } = l(e, [
|
|
1490
1502
|
"settings",
|
|
1491
1503
|
"addIcon",
|
|
1492
1504
|
"prependInner"
|
|
1493
|
-
]), { prop: w } =
|
|
1505
|
+
]), { prop: w } = l(e, ["settings", "readonly"]), { prop: C } = l(e, ["settings", "reverse"]), { prop: M } = l(e, ["settings", "singleLine"]), { prop: W } = l(e, ["settings", "step"]), { prop: F } = l(e, ["settings", "suffix"]), { theme: R } = N(), { prop: E } = l(e, ["settings", "value"]), { prop: S } = l(e, ["settings", "variant"]), { prop: D } = l(e, ["size", "width"]);
|
|
1494
1506
|
return (J, te) => {
|
|
1495
1507
|
const re = z("v-number-input");
|
|
1496
1508
|
return v(), V(n(Z), null, {
|
|
@@ -1500,7 +1512,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1500
1512
|
"onUpdate:modelValue": te[0] || (te[0] = (le) => O(E) ? E.value = le : null),
|
|
1501
1513
|
"append-icon": n(i),
|
|
1502
1514
|
"append-inner-icon": n(o),
|
|
1503
|
-
clearable: n(
|
|
1515
|
+
clearable: n(r),
|
|
1504
1516
|
"hide-details": n(s),
|
|
1505
1517
|
label: n(a),
|
|
1506
1518
|
loading: n(p),
|
|
@@ -1527,17 +1539,17 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1527
1539
|
});
|
|
1528
1540
|
};
|
|
1529
1541
|
}
|
|
1530
|
-
}),
|
|
1542
|
+
}), zl = /* @__PURE__ */ $({
|
|
1531
1543
|
__name: "index",
|
|
1532
1544
|
props: {
|
|
1533
1545
|
node: {},
|
|
1534
1546
|
outer: { type: Boolean }
|
|
1535
1547
|
},
|
|
1536
1548
|
setup(t) {
|
|
1537
|
-
const e = t, i = G(), { prop: o } =
|
|
1549
|
+
const e = t, i = G(), { prop: o } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "length"]), { prop: a } = l(e, [
|
|
1538
1550
|
"settings",
|
|
1539
1551
|
"showFirstLastPage"
|
|
1540
|
-
]), { prop: p } =
|
|
1552
|
+
]), { prop: p } = l(e, ["settings", "size"]), { prop: d } = l(e, ["settings", "start"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "tile"]), { prop: u } = l(e, ["settings", "value"]), { prop: c } = l(e, ["settings", "variant"]), f = k(() => {
|
|
1541
1553
|
const h = {};
|
|
1542
1554
|
return i === "editor" && (h.pointerEvents = "none"), h;
|
|
1543
1555
|
});
|
|
@@ -1549,7 +1561,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1549
1561
|
modelValue: n(u),
|
|
1550
1562
|
"onUpdate:modelValue": x[0] || (x[0] = (w) => O(u) ? u.value = w : null),
|
|
1551
1563
|
density: n(o),
|
|
1552
|
-
disabled: n(
|
|
1564
|
+
disabled: n(r),
|
|
1553
1565
|
length: n(s),
|
|
1554
1566
|
"show-first-last-page": n(a),
|
|
1555
1567
|
size: n(p),
|
|
@@ -1564,19 +1576,19 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1564
1576
|
});
|
|
1565
1577
|
};
|
|
1566
1578
|
}
|
|
1567
|
-
}),
|
|
1579
|
+
}), Al = /* @__PURE__ */ $({
|
|
1568
1580
|
__name: "index",
|
|
1569
1581
|
props: {
|
|
1570
1582
|
node: {},
|
|
1571
1583
|
outer: { type: Boolean }
|
|
1572
1584
|
},
|
|
1573
1585
|
setup(t) {
|
|
1574
|
-
const e = t, { prop: i } =
|
|
1586
|
+
const e = t, { prop: i } = l(e, ["settings", "color"]), { color: o } = K(i), { prop: r } = l(e, ["settings", "density"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "readonly"]), { theme: d } = N(), { prop: b } = l(e, ["settings", "value"]);
|
|
1575
1587
|
return (m, u) => {
|
|
1576
1588
|
const c = z("v-radio");
|
|
1577
1589
|
return v(), V(c, {
|
|
1578
1590
|
color: n(o),
|
|
1579
|
-
density: n(
|
|
1591
|
+
density: n(r),
|
|
1580
1592
|
disabled: n(s),
|
|
1581
1593
|
label: n(a),
|
|
1582
1594
|
readonly: n(p),
|
|
@@ -1585,14 +1597,14 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1585
1597
|
}, null, 8, ["color", "density", "disabled", "label", "readonly", "theme", "value"]);
|
|
1586
1598
|
};
|
|
1587
1599
|
}
|
|
1588
|
-
}),
|
|
1600
|
+
}), Ll = /* @__PURE__ */ $({
|
|
1589
1601
|
__name: "index",
|
|
1590
1602
|
props: {
|
|
1591
1603
|
node: {},
|
|
1592
1604
|
outer: { type: Boolean }
|
|
1593
1605
|
},
|
|
1594
1606
|
setup(t) {
|
|
1595
|
-
const e = t, { prop: i } =
|
|
1607
|
+
const e = t, { prop: i } = l(e, ["settings", "density"]), { prop: o } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "inline"]), { prop: a } = l(e, ["settings", "readonly"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1596
1608
|
return (b, m) => {
|
|
1597
1609
|
const u = z("v-radio-group");
|
|
1598
1610
|
return v(), V(n(Z), null, {
|
|
@@ -1602,7 +1614,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1602
1614
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1603
1615
|
density: n(i),
|
|
1604
1616
|
direction: n(o),
|
|
1605
|
-
disabled: n(
|
|
1617
|
+
disabled: n(r),
|
|
1606
1618
|
inline: n(s),
|
|
1607
1619
|
readonly: n(a),
|
|
1608
1620
|
theme: n(p)
|
|
@@ -1617,19 +1629,19 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1617
1629
|
});
|
|
1618
1630
|
};
|
|
1619
1631
|
}
|
|
1620
|
-
}),
|
|
1632
|
+
}), Bl = /* @__PURE__ */ $({
|
|
1621
1633
|
__name: "index",
|
|
1622
1634
|
props: {
|
|
1623
1635
|
node: {},
|
|
1624
1636
|
outer: { type: Boolean }
|
|
1625
1637
|
},
|
|
1626
1638
|
setup(t) {
|
|
1627
|
-
const e = t, { prop: i } =
|
|
1639
|
+
const e = t, { prop: i } = l(e, ["settings", "density"]), { prop: o } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "max"]), { prop: d } = l(e, ["settings", "min"]), { prop: b } = l(e, ["settings", "readonly"]), { prop: m } = l(e, ["settings", "showTicks"]), u = k(() => {
|
|
1628
1640
|
if (m.value === "always")
|
|
1629
1641
|
return "always";
|
|
1630
1642
|
if (m.value === "show")
|
|
1631
1643
|
return !0;
|
|
1632
|
-
}), { prop: c } =
|
|
1644
|
+
}), { prop: c } = l(e, ["settings", "step"]), { theme: f } = N(), { prop: h } = l(e, [
|
|
1633
1645
|
"settings",
|
|
1634
1646
|
"thumbLabel"
|
|
1635
1647
|
]), x = k(() => {
|
|
@@ -1637,7 +1649,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1637
1649
|
return "always";
|
|
1638
1650
|
if (h.value === "show")
|
|
1639
1651
|
return !0;
|
|
1640
|
-
}), { prop: g } =
|
|
1652
|
+
}), { prop: g } = l(e, ["settings", "thumbSize"]), { prop: w } = l(e, ["settings", "ticks"]), C = k(() => {
|
|
1641
1653
|
if (!w.value)
|
|
1642
1654
|
return;
|
|
1643
1655
|
const E = {};
|
|
@@ -1645,11 +1657,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1645
1657
|
E[S] = D;
|
|
1646
1658
|
if (!ro(E))
|
|
1647
1659
|
return E;
|
|
1648
|
-
}), { prop: M } =
|
|
1660
|
+
}), { prop: M } = l(e, ["settings", "tickSize"]), { prop: W } = l(e, [
|
|
1649
1661
|
"settings",
|
|
1650
1662
|
"value",
|
|
1651
1663
|
"start"
|
|
1652
|
-
]), { prop: F } =
|
|
1664
|
+
]), { prop: F } = l(e, ["settings", "value", "end"]), R = k({
|
|
1653
1665
|
get: () => [W.value, F.value],
|
|
1654
1666
|
set: ([E, S]) => {
|
|
1655
1667
|
W.value = E, F.value = S;
|
|
@@ -1667,7 +1679,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1667
1679
|
"onUpdate:modelValue": S[0] || (S[0] = (J) => R.value = J),
|
|
1668
1680
|
density: n(i),
|
|
1669
1681
|
direction: n(o),
|
|
1670
|
-
disabled: n(
|
|
1682
|
+
disabled: n(r),
|
|
1671
1683
|
"hide-details": n(s),
|
|
1672
1684
|
label: n(a),
|
|
1673
1685
|
max: n(p),
|
|
@@ -1686,17 +1698,17 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1686
1698
|
}, 8, ["modelValue"]);
|
|
1687
1699
|
};
|
|
1688
1700
|
}
|
|
1689
|
-
}),
|
|
1701
|
+
}), Wl = /* @__PURE__ */ $({
|
|
1690
1702
|
__name: "index",
|
|
1691
1703
|
props: {
|
|
1692
1704
|
node: {},
|
|
1693
1705
|
outer: { type: Boolean }
|
|
1694
1706
|
},
|
|
1695
1707
|
setup(t) {
|
|
1696
|
-
const e = t, { prop: i } =
|
|
1708
|
+
const e = t, { prop: i } = l(e, ["settings", "clearable"]), { prop: o } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, [
|
|
1697
1709
|
"settings",
|
|
1698
1710
|
"halfIncrements"
|
|
1699
|
-
]), { prop: a } =
|
|
1711
|
+
]), { prop: a } = l(e, ["settings", "hover"]), { prop: p } = l(e, ["settings", "length"]), { prop: d } = l(e, ["settings", "readonly"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "value"]);
|
|
1700
1712
|
return (u, c) => {
|
|
1701
1713
|
const f = z("v-rating");
|
|
1702
1714
|
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
@@ -1706,7 +1718,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1706
1718
|
"onUpdate:modelValue": c[0] || (c[0] = (h) => O(m) ? m.value = h : null),
|
|
1707
1719
|
clearable: n(i),
|
|
1708
1720
|
density: n(o),
|
|
1709
|
-
disabled: n(
|
|
1721
|
+
disabled: n(r),
|
|
1710
1722
|
"half-increments": n(s),
|
|
1711
1723
|
hover: n(a),
|
|
1712
1724
|
length: n(p),
|
|
@@ -1718,14 +1730,14 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1718
1730
|
});
|
|
1719
1731
|
};
|
|
1720
1732
|
}
|
|
1721
|
-
}),
|
|
1733
|
+
}), El = /* @__PURE__ */ $({
|
|
1722
1734
|
__name: "index",
|
|
1723
1735
|
props: {
|
|
1724
1736
|
node: {},
|
|
1725
1737
|
outer: { type: Boolean }
|
|
1726
1738
|
},
|
|
1727
1739
|
setup(t) {
|
|
1728
|
-
const e = t, { prop: i } =
|
|
1740
|
+
const e = t, { prop: i } = l(e, ["settings", "hideDetails"]), { prop: o } = l(e, ["settings", "label"]), { prop: r } = l(e, ["settings", "placeholder"]), { prop: s } = l(e, ["settings", "readonly"]), { prop: a } = l(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1729
1741
|
return (b, m) => {
|
|
1730
1742
|
const u = z("v-select");
|
|
1731
1743
|
return v(), V(n(Z), null, {
|
|
@@ -1735,7 +1747,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1735
1747
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1736
1748
|
"hide-details": n(i),
|
|
1737
1749
|
label: n(o),
|
|
1738
|
-
placeholder: n(
|
|
1750
|
+
placeholder: n(r),
|
|
1739
1751
|
readonly: n(s),
|
|
1740
1752
|
"single-line": n(a),
|
|
1741
1753
|
theme: n(p)
|
|
@@ -1745,22 +1757,22 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1745
1757
|
});
|
|
1746
1758
|
};
|
|
1747
1759
|
}
|
|
1748
|
-
}),
|
|
1760
|
+
}), Nl = /* @__PURE__ */ $({
|
|
1749
1761
|
__name: "index",
|
|
1750
1762
|
props: {
|
|
1751
1763
|
node: {},
|
|
1752
1764
|
outer: { type: Boolean }
|
|
1753
1765
|
},
|
|
1754
1766
|
setup(t) {
|
|
1755
|
-
const e = t, { prop: i } =
|
|
1767
|
+
const e = t, { prop: i } = l(e, ["settings", "color"]), { color: o } = K(i), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "hideDetails"]), { prop: p } = l(e, ["settings", "label"]), { prop: d } = l(e, ["settings", "max"]), { prop: b } = l(e, ["settings", "min"]), { prop: m } = l(e, ["settings", "readonly"]), { prop: u } = l(e, ["settings", "reverse"]), { prop: c } = l(e, ["settings", "showTicks"]), f = k(() => {
|
|
1756
1768
|
if (c.value === "always")
|
|
1757
1769
|
return "always";
|
|
1758
1770
|
if (c.value === "show")
|
|
1759
1771
|
return !0;
|
|
1760
|
-
}), { prop: h } =
|
|
1772
|
+
}), { prop: h } = l(e, ["settings", "step"]), { theme: x } = N(), { prop: g } = l(e, [
|
|
1761
1773
|
"settings",
|
|
1762
1774
|
"thumbColor"
|
|
1763
|
-
]), { color: w } =
|
|
1775
|
+
]), { color: w } = K(g), { prop: C } = l(e, [
|
|
1764
1776
|
"settings",
|
|
1765
1777
|
"thumbLabel"
|
|
1766
1778
|
]), M = k(() => {
|
|
@@ -1768,7 +1780,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1768
1780
|
return "always";
|
|
1769
1781
|
if (C.value === "show")
|
|
1770
1782
|
return !0;
|
|
1771
|
-
}), { prop: W } =
|
|
1783
|
+
}), { prop: W } = l(e, ["settings", "thumbSize"]), { prop: F } = l(e, ["settings", "ticks"]), R = k(() => {
|
|
1772
1784
|
if (!F.value)
|
|
1773
1785
|
return;
|
|
1774
1786
|
const le = {};
|
|
@@ -1776,10 +1788,10 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1776
1788
|
le[Ne] = Ut;
|
|
1777
1789
|
if (!ro(le))
|
|
1778
1790
|
return le;
|
|
1779
|
-
}), { prop: E } =
|
|
1791
|
+
}), { prop: E } = l(e, ["settings", "tickSize"]), { prop: S } = l(e, [
|
|
1780
1792
|
"settings",
|
|
1781
1793
|
"trackColor"
|
|
1782
|
-
]), { color: D } =
|
|
1794
|
+
]), { color: D } = K(S), { prop: J } = l(e, ["settings", "value"]), { prop: te } = l(e, ["slots", "append"]), { prop: re } = l(e, ["slots", "prepend"]);
|
|
1783
1795
|
return (le, Ne) => {
|
|
1784
1796
|
const Ut = z("v-slider");
|
|
1785
1797
|
return v(), V(n(Z), null, {
|
|
@@ -1788,7 +1800,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1788
1800
|
modelValue: n(J),
|
|
1789
1801
|
"onUpdate:modelValue": Ne[0] || (Ne[0] = (Eo) => O(J) ? J.value = Eo : null),
|
|
1790
1802
|
color: n(o),
|
|
1791
|
-
direction: n(
|
|
1803
|
+
direction: n(r),
|
|
1792
1804
|
disabled: n(s),
|
|
1793
1805
|
"hide-details": n(a),
|
|
1794
1806
|
label: n(p),
|
|
@@ -1832,19 +1844,19 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1832
1844
|
});
|
|
1833
1845
|
};
|
|
1834
1846
|
}
|
|
1835
|
-
}),
|
|
1847
|
+
}), Ml = /* @__PURE__ */ $({
|
|
1836
1848
|
__name: "index",
|
|
1837
1849
|
props: {
|
|
1838
1850
|
node: {},
|
|
1839
1851
|
outer: { type: Boolean }
|
|
1840
1852
|
},
|
|
1841
1853
|
setup(t) {
|
|
1842
|
-
const e = t, { prop: i } =
|
|
1854
|
+
const e = t, { prop: i } = l(e, ["settings", "hideActions"]), { theme: o } = N(), { prop: r } = l(e, ["settings", "value"]);
|
|
1843
1855
|
return (s, a) => {
|
|
1844
1856
|
const p = z("v-stepper");
|
|
1845
1857
|
return v(), V(p, {
|
|
1846
|
-
modelValue: n(
|
|
1847
|
-
"onUpdate:modelValue": a[0] || (a[0] = (d) => O(
|
|
1858
|
+
modelValue: n(r),
|
|
1859
|
+
"onUpdate:modelValue": a[0] || (a[0] = (d) => O(r) ? r.value = d : null),
|
|
1848
1860
|
"hide-actions": n(i),
|
|
1849
1861
|
theme: n(o)
|
|
1850
1862
|
}, {
|
|
@@ -1855,8 +1867,8 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1855
1867
|
}, 8, ["modelValue", "hide-actions", "theme"]);
|
|
1856
1868
|
};
|
|
1857
1869
|
}
|
|
1858
|
-
}),
|
|
1859
|
-
function
|
|
1870
|
+
}), Rl = {};
|
|
1871
|
+
function Dl(t, e) {
|
|
1860
1872
|
const i = z("v-stepper-header");
|
|
1861
1873
|
return v(), V(i, null, {
|
|
1862
1874
|
default: I(() => [
|
|
@@ -1865,15 +1877,15 @@ function Nl(t, e) {
|
|
|
1865
1877
|
_: 3
|
|
1866
1878
|
});
|
|
1867
1879
|
}
|
|
1868
|
-
const
|
|
1880
|
+
const Fl = /* @__PURE__ */ xe(Rl, [["render", Dl]]), Gl = /* @__PURE__ */ $({
|
|
1869
1881
|
__name: "index",
|
|
1870
1882
|
props: {
|
|
1871
1883
|
node: {},
|
|
1872
1884
|
outer: { type: Boolean }
|
|
1873
1885
|
},
|
|
1874
1886
|
setup(t) {
|
|
1875
|
-
const e = t, { prop: i } =
|
|
1876
|
-
return (o,
|
|
1887
|
+
const e = t, { prop: i } = l(e, ["settings", "value"]);
|
|
1888
|
+
return (o, r) => {
|
|
1877
1889
|
const s = z("v-stepper-item");
|
|
1878
1890
|
return v(), V(s, { value: n(i) }, {
|
|
1879
1891
|
default: I(() => [
|
|
@@ -1883,8 +1895,8 @@ const Ml = /* @__PURE__ */ xe(El, [["render", Nl]]), Rl = /* @__PURE__ */ $({
|
|
|
1883
1895
|
}, 8, ["value"]);
|
|
1884
1896
|
};
|
|
1885
1897
|
}
|
|
1886
|
-
}),
|
|
1887
|
-
function
|
|
1898
|
+
}), Hl = {};
|
|
1899
|
+
function Kl(t, e) {
|
|
1888
1900
|
const i = z("v-stepper-window");
|
|
1889
1901
|
return v(), V(i, null, {
|
|
1890
1902
|
default: I(() => [
|
|
@@ -1893,15 +1905,15 @@ function Fl(t, e) {
|
|
|
1893
1905
|
_: 3
|
|
1894
1906
|
});
|
|
1895
1907
|
}
|
|
1896
|
-
const
|
|
1908
|
+
const jl = /* @__PURE__ */ xe(Hl, [["render", Kl]]), Ol = /* @__PURE__ */ $({
|
|
1897
1909
|
__name: "index",
|
|
1898
1910
|
props: {
|
|
1899
1911
|
node: {},
|
|
1900
1912
|
outer: { type: Boolean }
|
|
1901
1913
|
},
|
|
1902
1914
|
setup(t) {
|
|
1903
|
-
const e = t, { prop: i } =
|
|
1904
|
-
return (o,
|
|
1915
|
+
const e = t, { prop: i } = l(e, ["settings", "value"]);
|
|
1916
|
+
return (o, r) => {
|
|
1905
1917
|
const s = z("v-stepper-window-item");
|
|
1906
1918
|
return v(), V(s, { value: n(i) }, {
|
|
1907
1919
|
default: I(() => [
|
|
@@ -1911,17 +1923,17 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1911
1923
|
}, 8, ["value"]);
|
|
1912
1924
|
};
|
|
1913
1925
|
}
|
|
1914
|
-
}),
|
|
1926
|
+
}), Ul = /* @__PURE__ */ $({
|
|
1915
1927
|
__name: "index",
|
|
1916
1928
|
props: {
|
|
1917
1929
|
node: {},
|
|
1918
1930
|
outer: { type: Boolean }
|
|
1919
1931
|
},
|
|
1920
1932
|
setup(t) {
|
|
1921
|
-
const e = t, { prop: i } =
|
|
1933
|
+
const e = t, { prop: i } = l(e, ["settings", "density"]), { prop: o } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, [
|
|
1922
1934
|
"settings",
|
|
1923
1935
|
"indeterminate"
|
|
1924
|
-
]), { prop: p } =
|
|
1936
|
+
]), { prop: p } = l(e, ["settings", "inline"]), { prop: d } = l(e, ["settings", "inset"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "loading"]), { theme: u } = N(), { prop: c } = l(e, ["settings", "value"]);
|
|
1925
1937
|
return (f, h) => {
|
|
1926
1938
|
const x = z("v-switch");
|
|
1927
1939
|
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
@@ -1931,7 +1943,7 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1931
1943
|
"onUpdate:modelValue": h[0] || (h[0] = (g) => O(c) ? c.value = g : null),
|
|
1932
1944
|
density: n(i),
|
|
1933
1945
|
direction: n(o),
|
|
1934
|
-
disabled: n(
|
|
1946
|
+
disabled: n(r),
|
|
1935
1947
|
"hide-details": n(s),
|
|
1936
1948
|
indeterminate: n(a),
|
|
1937
1949
|
inline: n(p),
|
|
@@ -1945,14 +1957,14 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1945
1957
|
});
|
|
1946
1958
|
};
|
|
1947
1959
|
}
|
|
1948
|
-
}),
|
|
1960
|
+
}), Xl = /* @__PURE__ */ $({
|
|
1949
1961
|
__name: "index",
|
|
1950
1962
|
props: {
|
|
1951
1963
|
node: {},
|
|
1952
1964
|
outer: { type: Boolean }
|
|
1953
1965
|
},
|
|
1954
1966
|
setup(t) {
|
|
1955
|
-
const e = t, i = G(), { prop: o } =
|
|
1967
|
+
const e = t, i = G(), { prop: o } = l(e, ["settings", "text"]), { theme: r } = N(), { prop: s } = l(e, ["settings", "value"]), a = k(() => {
|
|
1956
1968
|
const p = {};
|
|
1957
1969
|
return i === "editor" && (p.pointerEvents = "none"), p;
|
|
1958
1970
|
});
|
|
@@ -1963,7 +1975,7 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1963
1975
|
H(b, {
|
|
1964
1976
|
style: Q(a.value),
|
|
1965
1977
|
text: n(o),
|
|
1966
|
-
theme: n(
|
|
1978
|
+
theme: n(r),
|
|
1967
1979
|
value: n(s)
|
|
1968
1980
|
}, null, 8, ["style", "text", "theme", "value"])
|
|
1969
1981
|
]),
|
|
@@ -1971,36 +1983,36 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1971
1983
|
});
|
|
1972
1984
|
};
|
|
1973
1985
|
}
|
|
1974
|
-
}),
|
|
1986
|
+
}), Yl = /* @__PURE__ */ $({
|
|
1975
1987
|
__name: "index",
|
|
1976
1988
|
props: {
|
|
1977
1989
|
node: {},
|
|
1978
1990
|
outer: { type: Boolean }
|
|
1979
1991
|
},
|
|
1980
1992
|
setup(t) {
|
|
1981
|
-
const e = t, { prop: i } =
|
|
1993
|
+
const e = t, { prop: i } = l(e, ["settings", "alignTabs"]), { prop: o } = l(e, [
|
|
1982
1994
|
"settings",
|
|
1983
1995
|
"color",
|
|
1984
1996
|
"backgroundColor"
|
|
1985
|
-
]), { color:
|
|
1997
|
+
]), { color: r } = K(o), { prop: s } = l(e, [
|
|
1986
1998
|
"settings",
|
|
1987
1999
|
"centerActive"
|
|
1988
|
-
]), { prop: a } =
|
|
2000
|
+
]), { prop: a } = l(e, [
|
|
1989
2001
|
"settings",
|
|
1990
2002
|
"color",
|
|
1991
2003
|
"selectedColor"
|
|
1992
|
-
]), { color: p } =
|
|
2004
|
+
]), { color: p } = K(a), { prop: d } = l(e, ["settings", "density"]), { prop: b } = l(e, ["settings", "direction"]), { prop: m } = l(e, ["settings", "disabled"]), { prop: u } = l(e, ["settings", "fixedTabs"]), { prop: c } = l(e, ["settings", "grow"]), { prop: f } = l(e, ["settings", "hideSlider"]), { prop: h } = l(e, ["settings", "items"]), { prop: x } = l(e, ["settings", "mandatory"]), { prop: g } = l(e, ["settings", "showArrows"]), { prop: w } = l(e, [
|
|
1993
2005
|
"settings",
|
|
1994
2006
|
"color",
|
|
1995
2007
|
"sliderColor"
|
|
1996
|
-
]), { color: C } =
|
|
2008
|
+
]), { color: C } = K(w), { prop: M } = l(e, ["settings", "stacked"]), { theme: W } = N(), { prop: F } = l(e, ["settings", "value"]);
|
|
1997
2009
|
return (R, E) => {
|
|
1998
2010
|
const S = z("v-tabs");
|
|
1999
2011
|
return v(), V(S, {
|
|
2000
2012
|
modelValue: n(F),
|
|
2001
2013
|
"onUpdate:modelValue": E[0] || (E[0] = (D) => O(F) ? F.value = D : null),
|
|
2002
2014
|
"align-tabs": n(i),
|
|
2003
|
-
"bg-color": n(
|
|
2015
|
+
"bg-color": n(r),
|
|
2004
2016
|
"center-active": n(s),
|
|
2005
2017
|
color: n(p),
|
|
2006
2018
|
density: n(d),
|
|
@@ -2023,29 +2035,29 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2023
2035
|
}, 8, ["modelValue", "align-tabs", "bg-color", "center-active", "color", "density", "direction", "disabled", "fixed-tabs", "grow", "hide-slider", "items", "mandatory", "show-arrows", "slider-color", "stacked", "theme"]);
|
|
2024
2036
|
};
|
|
2025
2037
|
}
|
|
2026
|
-
}),
|
|
2038
|
+
}), Jl = /* @__PURE__ */ $({
|
|
2027
2039
|
__name: "index",
|
|
2028
2040
|
props: {
|
|
2029
2041
|
node: {},
|
|
2030
2042
|
outer: { type: Boolean }
|
|
2031
2043
|
},
|
|
2032
2044
|
setup(t) {
|
|
2033
|
-
const e = t, i = $e(), { prop: o } =
|
|
2045
|
+
const e = t, i = $e(), { prop: o } = l(e, ["settings", "align"]), { prop: r } = l(e, ["settings", "decoration"]), { prop: s } = l(e, ["settings", "emphasis"]), { prop: a } = l(e, ["settings", "italic"]), { prop: p } = l(e, ["settings", "text"]), { prop: d } = l(e, ["settings", "weight"]), b = k(() => {
|
|
2034
2046
|
const m = [], u = Re(i.value.width), c = Ie(u, e.node.settings?.style);
|
|
2035
|
-
return c && m.push(`text-${c}`), s.value === "high" ? m.push("text-high-emphasis") : s.value === "medium" ? m.push("text-medium-emphasis") : s.value === "disabled" && m.push("text-disabled"), o.value && m.push(`font-${o.value}`),
|
|
2047
|
+
return c && m.push(`text-${c}`), s.value === "high" ? m.push("text-high-emphasis") : s.value === "medium" ? m.push("text-medium-emphasis") : s.value === "disabled" && m.push("text-disabled"), o.value && m.push(`font-${o.value}`), r.value && m.push(`text-decoration-${r.value}`), d.value && m.push(`font-weight-${d.value}`), a.value && m.push("font-italic"), m.join(" ");
|
|
2036
2048
|
});
|
|
2037
2049
|
return (m, u) => (v(), Y("span", {
|
|
2038
2050
|
class: Do(b.value)
|
|
2039
2051
|
}, Fo(n(p)), 3));
|
|
2040
2052
|
}
|
|
2041
|
-
}),
|
|
2053
|
+
}), Zl = /* @__PURE__ */ $({
|
|
2042
2054
|
__name: "index",
|
|
2043
2055
|
props: {
|
|
2044
2056
|
node: {},
|
|
2045
2057
|
outer: { type: Boolean }
|
|
2046
2058
|
},
|
|
2047
2059
|
setup(t) {
|
|
2048
|
-
const e = t, { prop: i } =
|
|
2060
|
+
const e = t, { prop: i } = l(e, ["settings", "autoGrow"]), { prop: o } = l(e, ["settings", "clearable"]), { prop: r } = l(e, ["settings", "density"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "maxRows"]), { prop: b } = l(e, ["settings", "placeholder"]), { prop: m } = l(e, ["settings", "readonly"]), { prop: u } = l(e, ["settings", "reverse"]), { prop: c } = l(e, ["settings", "rows"]), { prop: f } = l(e, ["settings", "singleLine"]), { theme: h } = N(), { prop: x } = l(e, ["settings", "value"]), { prop: g } = l(e, ["settings", "variant"]);
|
|
2049
2061
|
return (w, C) => {
|
|
2050
2062
|
const M = z("v-textarea");
|
|
2051
2063
|
return v(), V(n(Z), null, {
|
|
@@ -2055,7 +2067,7 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2055
2067
|
"onUpdate:modelValue": C[0] || (C[0] = (W) => O(x) ? x.value = W : null),
|
|
2056
2068
|
"auto-grow": n(i),
|
|
2057
2069
|
clearable: n(o),
|
|
2058
|
-
density: n(
|
|
2070
|
+
density: n(r),
|
|
2059
2071
|
disabled: n(s),
|
|
2060
2072
|
label: n(a),
|
|
2061
2073
|
loading: n(p),
|
|
@@ -2073,23 +2085,23 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2073
2085
|
});
|
|
2074
2086
|
};
|
|
2075
2087
|
}
|
|
2076
|
-
}),
|
|
2088
|
+
}), ql = /* @__PURE__ */ $({
|
|
2077
2089
|
__name: "index",
|
|
2078
2090
|
props: {
|
|
2079
2091
|
node: {},
|
|
2080
2092
|
outer: { type: Boolean }
|
|
2081
2093
|
},
|
|
2082
2094
|
setup(t) {
|
|
2083
|
-
const e = t, { prop: i } =
|
|
2095
|
+
const e = t, { prop: i } = l(e, ["settings", "appendIcon"]), { prop: o } = l(e, [
|
|
2084
2096
|
"settings",
|
|
2085
2097
|
"appendInnerIcon"
|
|
2086
|
-
]), { prop:
|
|
2098
|
+
]), { prop: r } = l(e, ["settings", "autofocus"]), { prop: s } = l(e, ["settings", "clearable"]), { prop: a } = l(e, ["settings", "density"]), { prop: p } = l(e, ["settings", "disabled"]), { prop: d } = l(e, ["settings", "hideDetails"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "loading"]), { prop: u } = l(e, ["settings", "placeholder"]), { prop: c } = l(e, ["settings", "prefix"]), { prop: f } = l(e, ["settings", "prependIcon"]), { prop: h } = l(e, [
|
|
2087
2099
|
"settings",
|
|
2088
2100
|
"prependInnerIcon"
|
|
2089
|
-
]), { prop: x } =
|
|
2101
|
+
]), { prop: x } = l(e, ["settings", "readonly"]), { prop: g } = l(e, ["settings", "reverse"]), { prop: w } = l(e, ["settings", "singleLine"]), { prop: C } = l(e, ["settings", "suffix"]), { theme: M } = N(), { prop: W } = l(e, ["settings", "value"]), { prop: F } = l(e, ["settings", "variant"]), { prop: R } = l(e, ["slots", "append"]), { prop: E } = l(e, [
|
|
2090
2102
|
"slots",
|
|
2091
2103
|
"appendInner"
|
|
2092
|
-
]), { prop: S } =
|
|
2104
|
+
]), { prop: S } = l(e, ["slots", "prepend"]), { prop: D } = l(e, [
|
|
2093
2105
|
"slots",
|
|
2094
2106
|
"prependInner"
|
|
2095
2107
|
]);
|
|
@@ -2102,7 +2114,7 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2102
2114
|
"onUpdate:modelValue": te[0] || (te[0] = (le) => O(W) ? W.value = le : null),
|
|
2103
2115
|
"append-icon": n(i),
|
|
2104
2116
|
"append-inner-icon": n(o),
|
|
2105
|
-
autofocus: n(
|
|
2117
|
+
autofocus: n(r),
|
|
2106
2118
|
clearable: n(s),
|
|
2107
2119
|
density: n(a),
|
|
2108
2120
|
disabled: n(p),
|
|
@@ -2166,29 +2178,29 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2166
2178
|
});
|
|
2167
2179
|
};
|
|
2168
2180
|
}
|
|
2169
|
-
}),
|
|
2181
|
+
}), Ql = /* @__PURE__ */ $({
|
|
2170
2182
|
__name: "index",
|
|
2171
2183
|
props: {
|
|
2172
2184
|
node: {},
|
|
2173
2185
|
outer: { type: Boolean }
|
|
2174
2186
|
},
|
|
2175
2187
|
setup(t) {
|
|
2176
|
-
const e = t, { prop: i } =
|
|
2188
|
+
const e = t, { prop: i } = l(e, ["settings", "align"]), { prop: o } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, [
|
|
2177
2189
|
"settings",
|
|
2178
2190
|
"dot",
|
|
2179
2191
|
"color"
|
|
2180
|
-
]), { color: a } =
|
|
2192
|
+
]), { color: a } = K(s), { prop: p } = l(e, ["settings", "dot", "fill"]), { prop: d } = l(e, [
|
|
2181
2193
|
"settings",
|
|
2182
2194
|
"hideOpposite"
|
|
2183
|
-
]), { prop: b } =
|
|
2195
|
+
]), { prop: b } = l(e, [
|
|
2184
2196
|
"settings",
|
|
2185
2197
|
"line",
|
|
2186
2198
|
"color"
|
|
2187
|
-
]), { color: m } =
|
|
2199
|
+
]), { color: m } = K(b), { prop: u } = l(e, ["settings", "line", "inset"]), { prop: c } = l(e, [
|
|
2188
2200
|
"settings",
|
|
2189
2201
|
"line",
|
|
2190
2202
|
"thickness"
|
|
2191
|
-
]), { prop: f } =
|
|
2203
|
+
]), { prop: f } = l(e, ["settings", "side"]), { prop: h } = l(e, [
|
|
2192
2204
|
"settings",
|
|
2193
2205
|
"line",
|
|
2194
2206
|
"truncate"
|
|
@@ -2198,7 +2210,7 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2198
2210
|
return v(), V(C, {
|
|
2199
2211
|
align: n(i),
|
|
2200
2212
|
density: n(o),
|
|
2201
|
-
direction: n(
|
|
2213
|
+
direction: n(r),
|
|
2202
2214
|
"dot-color": n(a),
|
|
2203
2215
|
"fill-dot": n(p),
|
|
2204
2216
|
"hide-opposite": n(d),
|
|
@@ -2216,8 +2228,8 @@ const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2216
2228
|
}, 8, ["align", "density", "direction", "dot-color", "fill-dot", "hide-opposite", "line-color", "line-inset", "line-thickness", "side", "theme", "truncate-line"]);
|
|
2217
2229
|
};
|
|
2218
2230
|
}
|
|
2219
|
-
}),
|
|
2220
|
-
function
|
|
2231
|
+
}), ea = {};
|
|
2232
|
+
function ta(t, e) {
|
|
2221
2233
|
const i = z("v-timeline-item");
|
|
2222
2234
|
return v(), V(i, null, {
|
|
2223
2235
|
default: I(() => [
|
|
@@ -2226,21 +2238,21 @@ function ql(t, e) {
|
|
|
2226
2238
|
_: 3
|
|
2227
2239
|
});
|
|
2228
2240
|
}
|
|
2229
|
-
const
|
|
2241
|
+
const na = /* @__PURE__ */ xe(ea, [["render", ta]]), ia = /* @__PURE__ */ $({
|
|
2230
2242
|
__name: "index",
|
|
2231
2243
|
props: {
|
|
2232
2244
|
node: {},
|
|
2233
2245
|
outer: { type: Boolean }
|
|
2234
2246
|
},
|
|
2235
2247
|
setup(t) {
|
|
2236
|
-
const e = t, { prop: i } =
|
|
2248
|
+
const e = t, { prop: i } = l(e, ["settings", "continuous"]), { prop: o } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "reverse"]), { prop: a } = l(e, ["settings", "showArrows"]), { prop: p } = l(e, ["settings", "touch"]), { theme: d } = N(), { prop: b } = l(e, ["settings", "value"]);
|
|
2237
2249
|
return (m, u) => {
|
|
2238
2250
|
const c = z("v-window");
|
|
2239
2251
|
return v(), V(c, {
|
|
2240
2252
|
modelValue: n(b),
|
|
2241
2253
|
"onUpdate:modelValue": u[0] || (u[0] = (f) => O(b) ? b.value = f : null),
|
|
2242
2254
|
continuous: n(i),
|
|
2243
|
-
direction: n(
|
|
2255
|
+
direction: n(r),
|
|
2244
2256
|
disabled: n(o),
|
|
2245
2257
|
reverse: n(s),
|
|
2246
2258
|
"show-arrows": n(a),
|
|
@@ -2254,8 +2266,8 @@ const Ql = /* @__PURE__ */ xe(Zl, [["render", ql]]), ea = /* @__PURE__ */ $({
|
|
|
2254
2266
|
}, 8, ["modelValue", "continuous", "direction", "disabled", "reverse", "show-arrows", "theme", "touch"]);
|
|
2255
2267
|
};
|
|
2256
2268
|
}
|
|
2257
|
-
}),
|
|
2258
|
-
function
|
|
2269
|
+
}), oa = {};
|
|
2270
|
+
function sa(t, e) {
|
|
2259
2271
|
const i = z("v-window-item");
|
|
2260
2272
|
return v(), V(i, null, {
|
|
2261
2273
|
default: I(() => [
|
|
@@ -2264,7 +2276,7 @@ function na(t, e) {
|
|
|
2264
2276
|
_: 3
|
|
2265
2277
|
});
|
|
2266
2278
|
}
|
|
2267
|
-
const
|
|
2279
|
+
const ra = /* @__PURE__ */ xe(oa, [["render", sa]]), Ue = "ambient_light_v1", Xe = "badge_v1", Nn = "breadcrumbs_v1", Ye = "bar_chart_v1", Je = "box_geometry_v1", Ze = "btn_v1", qe = "btn_group_v1", Qe = "btn_toggle_v1", et = "card_v1", tt = "checkbox_v1", nt = "chip_v1", it = "chip_group_v1", ot = "color_picker_v1", st = "combobox_v1", rt = "container_v1", lt = "data_table_v1", at = "date_picker_v1", ut = "dialog_v1", ct = "directional_light_v1", mt = "file_input_v1", pt = "flex_layout_v1", yo = "flex_layout_entry_v1", dt = "form_v1", tn = "globality_v1", ft = "group_v1", bt = "icon_v1", yt = "keyboard_controls_v1", ht = "line_chart_v1", gt = "map_controls_v1", xt = "menu_v1", vt = "mesh_v1", la = "mesh_basic_material_v1", Mn = "multiple_ref_v1", kt = "number_input_v1", _t = "orbit_controls_v1", wt = "orthographic_camera_v1", Vt = "pagination_v1", $t = "perspective_camera_v1", It = "point_light_v1", ho = "radio_v1", St = "radio_group_v1", Ct = "range_slider_v1", Tt = "rating_v1", Rn = "render_switch_v1", Pt = "select_v1", De = "single_ref_v1", zt = "slider_v1", At = "sphere_geometry_v1", Lt = "spot_light_v1", Bt = "stepper_v1", go = "stepper_header_v1", xo = "stepper_item_v1", vo = "stepper_window_v1", ko = "stepper_window_item_v1", Wt = "switch_v1", _o = "tab_v1", Dn = "table_v1", Et = "tabs_v1", Nt = "text_v1", Mt = "textarea_v1", Rt = "text_field_v1", Dt = "timeline_v1", wo = "timeline_item_v1", Ft = "window_v1", Vo = "window_item_v1", y = {
|
|
2268
2280
|
key: "basic",
|
|
2269
2281
|
name: "x-runtime-lib.basic",
|
|
2270
2282
|
children: [
|
|
@@ -2289,7 +2301,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2289
2301
|
default: ""
|
|
2290
2302
|
}
|
|
2291
2303
|
]
|
|
2292
|
-
},
|
|
2304
|
+
}, j = {
|
|
2293
2305
|
key: "color",
|
|
2294
2306
|
name: "x-runtime-lib.color",
|
|
2295
2307
|
children: [
|
|
@@ -2326,7 +2338,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2326
2338
|
]
|
|
2327
2339
|
}
|
|
2328
2340
|
]
|
|
2329
|
-
},
|
|
2341
|
+
}, aa = B(j), _e = {
|
|
2330
2342
|
key: "border",
|
|
2331
2343
|
name: "x-runtime-lib.border",
|
|
2332
2344
|
children: [
|
|
@@ -2344,7 +2356,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2344
2356
|
types: "borderWidthTypesV1",
|
|
2345
2357
|
default: ""
|
|
2346
2358
|
},
|
|
2347
|
-
|
|
2359
|
+
aa,
|
|
2348
2360
|
{
|
|
2349
2361
|
key: "roundRadius",
|
|
2350
2362
|
name: "x-runtime-lib.roundRadius",
|
|
@@ -2660,7 +2672,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2660
2672
|
defaultArray: []
|
|
2661
2673
|
}
|
|
2662
2674
|
]
|
|
2663
|
-
},
|
|
2675
|
+
}, Ke = {
|
|
2664
2676
|
key: "yAxis",
|
|
2665
2677
|
name: "x-runtime-lib.yAxis",
|
|
2666
2678
|
children: [
|
|
@@ -2740,10 +2752,10 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2740
2752
|
default: 2e3
|
|
2741
2753
|
}
|
|
2742
2754
|
]
|
|
2743
|
-
},
|
|
2755
|
+
}, ua = {
|
|
2744
2756
|
key: wt,
|
|
2745
2757
|
name: "x-runtime-lib.orthographicCamera",
|
|
2746
|
-
comp:
|
|
2758
|
+
comp: Cs,
|
|
2747
2759
|
props: {
|
|
2748
2760
|
pageScene: [y, X, Zn],
|
|
2749
2761
|
compScene: [y, X, Zn]
|
|
@@ -2752,7 +2764,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Ue = "ambient_light_v1", Xe
|
|
|
2752
2764
|
methods: [],
|
|
2753
2765
|
slots: []
|
|
2754
2766
|
};
|
|
2755
|
-
_(
|
|
2767
|
+
_(ua);
|
|
2756
2768
|
const qn = {
|
|
2757
2769
|
key: "settings",
|
|
2758
2770
|
name: "x-runtime-lib.settings",
|
|
@@ -2786,10 +2798,10 @@ const qn = {
|
|
|
2786
2798
|
default: 2e3
|
|
2787
2799
|
}
|
|
2788
2800
|
]
|
|
2789
|
-
},
|
|
2801
|
+
}, ca = {
|
|
2790
2802
|
key: $t,
|
|
2791
2803
|
name: "x-runtime-lib.perspectiveCamera",
|
|
2792
|
-
comp:
|
|
2804
|
+
comp: Ps,
|
|
2793
2805
|
props: {
|
|
2794
2806
|
pageScene: [y, X, qn],
|
|
2795
2807
|
compScene: [y, X, qn]
|
|
@@ -2798,29 +2810,29 @@ const qn = {
|
|
|
2798
2810
|
methods: [],
|
|
2799
2811
|
slots: []
|
|
2800
2812
|
};
|
|
2801
|
-
_(
|
|
2802
|
-
const
|
|
2813
|
+
_(ca);
|
|
2814
|
+
const ma = /* @__PURE__ */ $({
|
|
2803
2815
|
__name: "index",
|
|
2804
2816
|
setup(t) {
|
|
2805
2817
|
const e = G();
|
|
2806
2818
|
return (i, o) => n(e) !== "editor" ? (v(), V(n(ss), { key: 0 })) : ee("", !0);
|
|
2807
2819
|
}
|
|
2808
|
-
}),
|
|
2820
|
+
}), pa = /* @__PURE__ */ $({
|
|
2809
2821
|
__name: "index",
|
|
2810
2822
|
setup(t) {
|
|
2811
2823
|
const e = G();
|
|
2812
2824
|
return (i, o) => n(e) !== "editor" ? (v(), V(n(rs), { key: 0 })) : ee("", !0);
|
|
2813
2825
|
}
|
|
2814
|
-
}),
|
|
2826
|
+
}), da = /* @__PURE__ */ $({
|
|
2815
2827
|
__name: "index",
|
|
2816
2828
|
setup(t) {
|
|
2817
2829
|
const e = G();
|
|
2818
2830
|
return (i, o) => n(e) !== "editor" ? (v(), V(n(ls), { key: 0 })) : ee("", !0);
|
|
2819
2831
|
}
|
|
2820
|
-
}),
|
|
2832
|
+
}), fa = {
|
|
2821
2833
|
key: yt,
|
|
2822
2834
|
name: "x-runtime-lib.keyboardControls",
|
|
2823
|
-
comp:
|
|
2835
|
+
comp: ma,
|
|
2824
2836
|
props: {
|
|
2825
2837
|
pageScene: [y],
|
|
2826
2838
|
compScene: [y]
|
|
@@ -2830,11 +2842,11 @@ const aa = /* @__PURE__ */ $({
|
|
|
2830
2842
|
slots: [],
|
|
2831
2843
|
leaf: !0
|
|
2832
2844
|
};
|
|
2833
|
-
_(
|
|
2834
|
-
const
|
|
2845
|
+
_(fa);
|
|
2846
|
+
const ba = {
|
|
2835
2847
|
key: gt,
|
|
2836
2848
|
name: "x-runtime-lib.mapControls",
|
|
2837
|
-
comp:
|
|
2849
|
+
comp: pa,
|
|
2838
2850
|
props: {
|
|
2839
2851
|
pageScene: [y],
|
|
2840
2852
|
compScene: [y]
|
|
@@ -2844,11 +2856,11 @@ const pa = {
|
|
|
2844
2856
|
slots: [],
|
|
2845
2857
|
leaf: !0
|
|
2846
2858
|
};
|
|
2847
|
-
_(
|
|
2848
|
-
const
|
|
2859
|
+
_(ba);
|
|
2860
|
+
const ya = {
|
|
2849
2861
|
key: _t,
|
|
2850
2862
|
name: "x-runtime-lib.orbitControls",
|
|
2851
|
-
comp:
|
|
2863
|
+
comp: da,
|
|
2852
2864
|
props: {
|
|
2853
2865
|
pageScene: [y],
|
|
2854
2866
|
compScene: [y]
|
|
@@ -2858,20 +2870,20 @@ const da = {
|
|
|
2858
2870
|
slots: [],
|
|
2859
2871
|
leaf: !0
|
|
2860
2872
|
};
|
|
2861
|
-
_(
|
|
2862
|
-
function
|
|
2873
|
+
_(ya);
|
|
2874
|
+
function ha(t, e) {
|
|
2863
2875
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
2864
2876
|
if (!o) {
|
|
2865
2877
|
console.error(`boxGeometryV1/spawn prop tag not found, ${i}`);
|
|
2866
2878
|
return;
|
|
2867
2879
|
}
|
|
2868
|
-
const
|
|
2869
|
-
if (!
|
|
2880
|
+
const r = ze.props[o];
|
|
2881
|
+
if (!r) {
|
|
2870
2882
|
console.error(`boxGeometryV1/spawn props not found, ${i}`);
|
|
2871
2883
|
return;
|
|
2872
2884
|
}
|
|
2873
2885
|
const s = {};
|
|
2874
|
-
return P(s,
|
|
2886
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = ze.key, s.transform = {
|
|
2875
2887
|
position: {
|
|
2876
2888
|
x: 0,
|
|
2877
2889
|
y: 0,
|
|
@@ -2888,11 +2900,11 @@ function fa(t, e) {
|
|
|
2888
2900
|
z: 1
|
|
2889
2901
|
}
|
|
2890
2902
|
}, s.children = [
|
|
2891
|
-
|
|
2892
|
-
|
|
2903
|
+
ga(t, e),
|
|
2904
|
+
xa(t, e)
|
|
2893
2905
|
], s;
|
|
2894
2906
|
}
|
|
2895
|
-
function
|
|
2907
|
+
function ga(t, e) {
|
|
2896
2908
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
2897
2909
|
if (!o) {
|
|
2898
2910
|
console.error(
|
|
@@ -2900,15 +2912,15 @@ function ba(t, e) {
|
|
|
2900
2912
|
);
|
|
2901
2913
|
return;
|
|
2902
2914
|
}
|
|
2903
|
-
const
|
|
2904
|
-
if (!
|
|
2915
|
+
const r = nn.props[o];
|
|
2916
|
+
if (!r) {
|
|
2905
2917
|
console.error(
|
|
2906
2918
|
`boxGeometryV1/spawnBoxGeometry props not found, ${i}`
|
|
2907
2919
|
);
|
|
2908
2920
|
return;
|
|
2909
2921
|
}
|
|
2910
2922
|
const s = {};
|
|
2911
|
-
return P(s,
|
|
2923
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = nn.key, s.settings = {
|
|
2912
2924
|
width: 1,
|
|
2913
2925
|
height: 1,
|
|
2914
2926
|
depth: 1,
|
|
@@ -2917,7 +2929,7 @@ function ba(t, e) {
|
|
|
2917
2929
|
depthSegements: 1
|
|
2918
2930
|
}, s;
|
|
2919
2931
|
}
|
|
2920
|
-
function
|
|
2932
|
+
function xa(t, e) {
|
|
2921
2933
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
2922
2934
|
if (!o) {
|
|
2923
2935
|
console.error(
|
|
@@ -2925,15 +2937,15 @@ function ya(t, e) {
|
|
|
2925
2937
|
);
|
|
2926
2938
|
return;
|
|
2927
2939
|
}
|
|
2928
|
-
const
|
|
2929
|
-
if (!
|
|
2940
|
+
const r = Pe.props[o];
|
|
2941
|
+
if (!r) {
|
|
2930
2942
|
console.error(
|
|
2931
2943
|
`boxGeometryV1/spawnMeshBasicMaterial props not found, ${i}`
|
|
2932
2944
|
);
|
|
2933
2945
|
return;
|
|
2934
2946
|
}
|
|
2935
2947
|
const s = {};
|
|
2936
|
-
return P(s,
|
|
2948
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Pe.key, s;
|
|
2937
2949
|
}
|
|
2938
2950
|
const Qn = {
|
|
2939
2951
|
key: "settings",
|
|
@@ -2982,7 +2994,7 @@ const Qn = {
|
|
|
2982
2994
|
}, nn = {
|
|
2983
2995
|
key: Je,
|
|
2984
2996
|
name: "x-runtime-lib.boxGeometry",
|
|
2985
|
-
comp:
|
|
2997
|
+
comp: As,
|
|
2986
2998
|
props: {
|
|
2987
2999
|
pageScene: [y, Qn],
|
|
2988
3000
|
compScene: [y, Qn]
|
|
@@ -2991,22 +3003,22 @@ const Qn = {
|
|
|
2991
3003
|
methods: [],
|
|
2992
3004
|
slots: [],
|
|
2993
3005
|
leaf: !0,
|
|
2994
|
-
spawn:
|
|
3006
|
+
spawn: ha
|
|
2995
3007
|
};
|
|
2996
3008
|
_(nn);
|
|
2997
|
-
function
|
|
3009
|
+
function va(t, e) {
|
|
2998
3010
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
2999
3011
|
if (!o) {
|
|
3000
3012
|
console.error(`sphereGeometryV1/spawn prop tag not found, ${i}`);
|
|
3001
3013
|
return;
|
|
3002
3014
|
}
|
|
3003
|
-
const
|
|
3004
|
-
if (!
|
|
3015
|
+
const r = ze.props[o];
|
|
3016
|
+
if (!r) {
|
|
3005
3017
|
console.error(`sphereGeometryV1/spawn props not found, ${i}`);
|
|
3006
3018
|
return;
|
|
3007
3019
|
}
|
|
3008
3020
|
const s = {};
|
|
3009
|
-
return P(s,
|
|
3021
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = ze.key, s.transform = {
|
|
3010
3022
|
position: {
|
|
3011
3023
|
x: 0,
|
|
3012
3024
|
y: 0,
|
|
@@ -3023,11 +3035,11 @@ function ha(t, e) {
|
|
|
3023
3035
|
z: 1
|
|
3024
3036
|
}
|
|
3025
3037
|
}, s.children = [
|
|
3026
|
-
|
|
3027
|
-
|
|
3038
|
+
ka(t, e),
|
|
3039
|
+
_a(t, e)
|
|
3028
3040
|
], s;
|
|
3029
3041
|
}
|
|
3030
|
-
function
|
|
3042
|
+
function ka(t, e) {
|
|
3031
3043
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3032
3044
|
if (!o) {
|
|
3033
3045
|
console.error(
|
|
@@ -3035,15 +3047,15 @@ function ga(t, e) {
|
|
|
3035
3047
|
);
|
|
3036
3048
|
return;
|
|
3037
3049
|
}
|
|
3038
|
-
const
|
|
3039
|
-
if (!
|
|
3050
|
+
const r = on.props[o];
|
|
3051
|
+
if (!r) {
|
|
3040
3052
|
console.error(
|
|
3041
3053
|
`sphereGeometryV1/spawnSphereGeometry props not found, ${i}`
|
|
3042
3054
|
);
|
|
3043
3055
|
return;
|
|
3044
3056
|
}
|
|
3045
3057
|
const s = {};
|
|
3046
|
-
return P(s,
|
|
3058
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = on.key, s.settings = {
|
|
3047
3059
|
radius: 1,
|
|
3048
3060
|
widthSegements: 32,
|
|
3049
3061
|
heightSegements: 16,
|
|
@@ -3053,7 +3065,7 @@ function ga(t, e) {
|
|
|
3053
3065
|
thetaLength: 3.141592653589793
|
|
3054
3066
|
}, s;
|
|
3055
3067
|
}
|
|
3056
|
-
function
|
|
3068
|
+
function _a(t, e) {
|
|
3057
3069
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3058
3070
|
if (!o) {
|
|
3059
3071
|
console.error(
|
|
@@ -3061,15 +3073,15 @@ function xa(t, e) {
|
|
|
3061
3073
|
);
|
|
3062
3074
|
return;
|
|
3063
3075
|
}
|
|
3064
|
-
const
|
|
3065
|
-
if (!
|
|
3076
|
+
const r = Pe.props[o];
|
|
3077
|
+
if (!r) {
|
|
3066
3078
|
console.error(
|
|
3067
3079
|
`sphereGeometryV1/spawnMeshBasicMaterial props not found, ${i}`
|
|
3068
3080
|
);
|
|
3069
3081
|
return;
|
|
3070
3082
|
}
|
|
3071
3083
|
const s = {};
|
|
3072
|
-
return P(s,
|
|
3084
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Pe.key, s;
|
|
3073
3085
|
}
|
|
3074
3086
|
const ei = {
|
|
3075
3087
|
key: "settings",
|
|
@@ -3126,7 +3138,7 @@ const ei = {
|
|
|
3126
3138
|
}, on = {
|
|
3127
3139
|
key: At,
|
|
3128
3140
|
name: "x-runtime-lib.sphereGeometry",
|
|
3129
|
-
comp:
|
|
3141
|
+
comp: Bs,
|
|
3130
3142
|
props: {
|
|
3131
3143
|
pageScene: [y, ei],
|
|
3132
3144
|
compScene: [y, ei]
|
|
@@ -3135,10 +3147,10 @@ const ei = {
|
|
|
3135
3147
|
methods: [],
|
|
3136
3148
|
slots: [],
|
|
3137
3149
|
leaf: !0,
|
|
3138
|
-
spawn:
|
|
3150
|
+
spawn: va
|
|
3139
3151
|
};
|
|
3140
3152
|
_(on);
|
|
3141
|
-
const Gt = B(
|
|
3153
|
+
const Gt = B(j);
|
|
3142
3154
|
Gt.children[0].default = "custom";
|
|
3143
3155
|
Gt.children[2].children[0].default = "0xffffff";
|
|
3144
3156
|
Gt.children[2].children[1].default = "0xffffff";
|
|
@@ -3155,10 +3167,10 @@ const ti = {
|
|
|
3155
3167
|
default: 1
|
|
3156
3168
|
}
|
|
3157
3169
|
]
|
|
3158
|
-
},
|
|
3170
|
+
}, wa = {
|
|
3159
3171
|
key: Ue,
|
|
3160
3172
|
name: "x-runtime-lib.ambientLight",
|
|
3161
|
-
comp:
|
|
3173
|
+
comp: Es,
|
|
3162
3174
|
props: {
|
|
3163
3175
|
pageScene: [y, X, ti],
|
|
3164
3176
|
compScene: [y, X, ti]
|
|
@@ -3167,8 +3179,8 @@ const ti = {
|
|
|
3167
3179
|
methods: [],
|
|
3168
3180
|
slots: []
|
|
3169
3181
|
};
|
|
3170
|
-
_(
|
|
3171
|
-
const Ht = B(
|
|
3182
|
+
_(wa);
|
|
3183
|
+
const Ht = B(j);
|
|
3172
3184
|
Ht.children[0].default = "custom";
|
|
3173
3185
|
Ht.children[2].children[0].default = "0xffffff";
|
|
3174
3186
|
Ht.children[2].children[1].default = "0xffffff";
|
|
@@ -3185,10 +3197,10 @@ const ni = {
|
|
|
3185
3197
|
default: 1
|
|
3186
3198
|
}
|
|
3187
3199
|
]
|
|
3188
|
-
},
|
|
3200
|
+
}, Va = {
|
|
3189
3201
|
key: ct,
|
|
3190
3202
|
name: "x-runtime-lib.directionalLight",
|
|
3191
|
-
comp:
|
|
3203
|
+
comp: Ms,
|
|
3192
3204
|
props: {
|
|
3193
3205
|
pageScene: [y, X, ni],
|
|
3194
3206
|
compScene: [y, X, ni]
|
|
@@ -3197,16 +3209,16 @@ const ni = {
|
|
|
3197
3209
|
methods: [],
|
|
3198
3210
|
slots: []
|
|
3199
3211
|
};
|
|
3200
|
-
_(
|
|
3201
|
-
const
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3212
|
+
_(Va);
|
|
3213
|
+
const Kt = B(j);
|
|
3214
|
+
Kt.children[0].default = "custom";
|
|
3215
|
+
Kt.children[2].children[0].default = "0xffffff";
|
|
3216
|
+
Kt.children[2].children[1].default = "0xffffff";
|
|
3205
3217
|
const ii = {
|
|
3206
3218
|
key: "settings",
|
|
3207
3219
|
name: "x-runtime-lib.settings",
|
|
3208
3220
|
children: [
|
|
3209
|
-
|
|
3221
|
+
Kt,
|
|
3210
3222
|
{
|
|
3211
3223
|
key: "intensity",
|
|
3212
3224
|
name: "x-runtime-lib.intensity",
|
|
@@ -3229,10 +3241,10 @@ const ii = {
|
|
|
3229
3241
|
default: 2
|
|
3230
3242
|
}
|
|
3231
3243
|
]
|
|
3232
|
-
},
|
|
3244
|
+
}, $a = {
|
|
3233
3245
|
key: It,
|
|
3234
3246
|
name: "x-runtime-lib.pointLight",
|
|
3235
|
-
comp:
|
|
3247
|
+
comp: Ds,
|
|
3236
3248
|
props: {
|
|
3237
3249
|
pageScene: [y, X, ii],
|
|
3238
3250
|
compScene: [y, X, ii]
|
|
@@ -3241,16 +3253,16 @@ const ii = {
|
|
|
3241
3253
|
methods: [],
|
|
3242
3254
|
slots: []
|
|
3243
3255
|
};
|
|
3244
|
-
_(
|
|
3245
|
-
const
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3256
|
+
_($a);
|
|
3257
|
+
const jt = B(j);
|
|
3258
|
+
jt.children[0].default = "custom";
|
|
3259
|
+
jt.children[2].children[0].default = "0xffffff";
|
|
3260
|
+
jt.children[2].children[1].default = "0xffffff";
|
|
3249
3261
|
const oi = {
|
|
3250
3262
|
key: "settings",
|
|
3251
3263
|
name: "x-runtime-lib.settings",
|
|
3252
3264
|
children: [
|
|
3253
|
-
|
|
3265
|
+
jt,
|
|
3254
3266
|
{
|
|
3255
3267
|
key: "intensity",
|
|
3256
3268
|
name: "x-runtime-lib.intensity",
|
|
@@ -3290,10 +3302,10 @@ const oi = {
|
|
|
3290
3302
|
default: 0
|
|
3291
3303
|
}
|
|
3292
3304
|
]
|
|
3293
|
-
},
|
|
3305
|
+
}, Ia = {
|
|
3294
3306
|
key: Lt,
|
|
3295
3307
|
name: "x-runtime-lib.spotLight",
|
|
3296
|
-
comp:
|
|
3308
|
+
comp: Gs,
|
|
3297
3309
|
props: {
|
|
3298
3310
|
pageScene: [y, X, oi],
|
|
3299
3311
|
compScene: [y, X, oi]
|
|
@@ -3302,11 +3314,11 @@ const oi = {
|
|
|
3302
3314
|
methods: [],
|
|
3303
3315
|
slots: []
|
|
3304
3316
|
};
|
|
3305
|
-
_(
|
|
3317
|
+
_(Ia);
|
|
3306
3318
|
const Pe = {
|
|
3307
|
-
key:
|
|
3319
|
+
key: la,
|
|
3308
3320
|
name: "x-runtime-lib.meshBasicMaterial",
|
|
3309
|
-
comp:
|
|
3321
|
+
comp: js,
|
|
3310
3322
|
props: {
|
|
3311
3323
|
pageScene: [y],
|
|
3312
3324
|
compScene: [y]
|
|
@@ -3317,10 +3329,10 @@ const Pe = {
|
|
|
3317
3329
|
leaf: !0
|
|
3318
3330
|
};
|
|
3319
3331
|
_(Pe);
|
|
3320
|
-
const
|
|
3332
|
+
const Sa = {
|
|
3321
3333
|
key: ft,
|
|
3322
3334
|
name: "x-runtime-lib.group",
|
|
3323
|
-
comp:
|
|
3335
|
+
comp: Us,
|
|
3324
3336
|
props: {
|
|
3325
3337
|
pageScene: [y, X],
|
|
3326
3338
|
compScene: [y, X]
|
|
@@ -3329,11 +3341,11 @@ const Va = {
|
|
|
3329
3341
|
methods: [],
|
|
3330
3342
|
slots: []
|
|
3331
3343
|
};
|
|
3332
|
-
_(
|
|
3344
|
+
_(Sa);
|
|
3333
3345
|
const ze = {
|
|
3334
3346
|
key: vt,
|
|
3335
3347
|
name: "x-runtime-lib.mesh",
|
|
3336
|
-
comp:
|
|
3348
|
+
comp: Ys,
|
|
3337
3349
|
props: {
|
|
3338
3350
|
pageScene: [y, X],
|
|
3339
3351
|
compScene: [y, X]
|
|
@@ -3343,19 +3355,19 @@ const ze = {
|
|
|
3343
3355
|
slots: []
|
|
3344
3356
|
};
|
|
3345
3357
|
_(ze);
|
|
3346
|
-
function
|
|
3358
|
+
function Ca(t, e) {
|
|
3347
3359
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3348
3360
|
if (!o) {
|
|
3349
3361
|
console.error(`barChartV1/spawn prop tag not found, ${i}`);
|
|
3350
3362
|
return;
|
|
3351
3363
|
}
|
|
3352
|
-
const
|
|
3353
|
-
if (!
|
|
3364
|
+
const r = sn.props[o];
|
|
3365
|
+
if (!r) {
|
|
3354
3366
|
console.error(`barChartV1/spawn props not found, ${i}`);
|
|
3355
3367
|
return;
|
|
3356
3368
|
}
|
|
3357
3369
|
const s = {};
|
|
3358
|
-
return P(s,
|
|
3370
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = sn.key, s.size.height = "300px", s.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], s.series = [
|
|
3359
3371
|
{
|
|
3360
3372
|
type: "bar",
|
|
3361
3373
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -3386,31 +3398,31 @@ const si = {
|
|
|
3386
3398
|
}, sn = {
|
|
3387
3399
|
key: Ye,
|
|
3388
3400
|
name: "x-runtime-lib.barChart",
|
|
3389
|
-
comp:
|
|
3401
|
+
comp: nl,
|
|
3390
3402
|
props: {
|
|
3391
|
-
pageCommon: [y, U, Ge, He,
|
|
3392
|
-
compCommon: [y, U, Ge, He,
|
|
3403
|
+
pageCommon: [y, U, Ge, He, Ke, Fe, si],
|
|
3404
|
+
compCommon: [y, U, Ge, He, Ke, Fe, si]
|
|
3393
3405
|
},
|
|
3394
3406
|
events: [],
|
|
3395
3407
|
methods: [],
|
|
3396
3408
|
slots: [],
|
|
3397
3409
|
leaf: !0,
|
|
3398
|
-
spawn:
|
|
3410
|
+
spawn: Ca
|
|
3399
3411
|
};
|
|
3400
3412
|
_(sn);
|
|
3401
|
-
function
|
|
3413
|
+
function Ta(t, e) {
|
|
3402
3414
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3403
3415
|
if (!o) {
|
|
3404
3416
|
console.error(`lineChartV1/spawn prop tag not found, ${i}`);
|
|
3405
3417
|
return;
|
|
3406
3418
|
}
|
|
3407
|
-
const
|
|
3408
|
-
if (!
|
|
3419
|
+
const r = rn.props[o];
|
|
3420
|
+
if (!r) {
|
|
3409
3421
|
console.error(`lineChartV1/spawn props not found, ${i}`);
|
|
3410
3422
|
return;
|
|
3411
3423
|
}
|
|
3412
3424
|
const s = {};
|
|
3413
|
-
return P(s,
|
|
3425
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = rn.key, s.size.height = "300px", s.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], s.series = [
|
|
3414
3426
|
{
|
|
3415
3427
|
type: "line",
|
|
3416
3428
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -3441,19 +3453,19 @@ const ri = {
|
|
|
3441
3453
|
}, rn = {
|
|
3442
3454
|
key: ht,
|
|
3443
3455
|
name: "x-runtime-lib.lineChart",
|
|
3444
|
-
comp:
|
|
3456
|
+
comp: il,
|
|
3445
3457
|
props: {
|
|
3446
|
-
pageCommon: [y, U, Ge, He,
|
|
3447
|
-
compCommon: [y, U, Ge, He,
|
|
3458
|
+
pageCommon: [y, U, Ge, He, Ke, Fe, ri],
|
|
3459
|
+
compCommon: [y, U, Ge, He, Ke, Fe, ri]
|
|
3448
3460
|
},
|
|
3449
3461
|
events: [],
|
|
3450
3462
|
methods: [],
|
|
3451
3463
|
slots: [],
|
|
3452
3464
|
leaf: !0,
|
|
3453
|
-
spawn:
|
|
3465
|
+
spawn: Ta
|
|
3454
3466
|
};
|
|
3455
3467
|
_(rn);
|
|
3456
|
-
const Ot = B(
|
|
3468
|
+
const Ot = B(j);
|
|
3457
3469
|
Ot.key = "backgroundColor";
|
|
3458
3470
|
Ot.name = "x-runtime-lib.backgroundColor";
|
|
3459
3471
|
const li = {
|
|
@@ -3464,7 +3476,7 @@ const li = {
|
|
|
3464
3476
|
key: "settings",
|
|
3465
3477
|
name: "x-runtime-lib.settings",
|
|
3466
3478
|
children: [Ot]
|
|
3467
|
-
},
|
|
3479
|
+
}, Pa = {
|
|
3468
3480
|
key: tn,
|
|
3469
3481
|
name: "x-runtime-lib.globality",
|
|
3470
3482
|
comp: null,
|
|
@@ -3512,7 +3524,7 @@ const li = {
|
|
|
3512
3524
|
slots: [],
|
|
3513
3525
|
internal: !0
|
|
3514
3526
|
};
|
|
3515
|
-
_(
|
|
3527
|
+
_(Pa);
|
|
3516
3528
|
const ui = {
|
|
3517
3529
|
key: "settings",
|
|
3518
3530
|
name: "x-runtime-lib.settings",
|
|
@@ -3551,7 +3563,7 @@ const ui = {
|
|
|
3551
3563
|
}, Rc = {
|
|
3552
3564
|
key: Xe,
|
|
3553
3565
|
name: "x-runtime-lib.badge",
|
|
3554
|
-
comp:
|
|
3566
|
+
comp: ol,
|
|
3555
3567
|
props: {
|
|
3556
3568
|
pageCommon: [y, ui],
|
|
3557
3569
|
compCommon: [y, ui]
|
|
@@ -3560,21 +3572,21 @@ const ui = {
|
|
|
3560
3572
|
methods: [],
|
|
3561
3573
|
slots: []
|
|
3562
3574
|
};
|
|
3563
|
-
function
|
|
3575
|
+
function za(t, e) {
|
|
3564
3576
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3565
3577
|
if (!o) {
|
|
3566
3578
|
console.error(`btnV1/spawn prop tag not found, ${i}`);
|
|
3567
3579
|
return;
|
|
3568
3580
|
}
|
|
3569
|
-
const
|
|
3570
|
-
if (!
|
|
3581
|
+
const r = ln.props[o];
|
|
3582
|
+
if (!r) {
|
|
3571
3583
|
console.error(`btnV1/spawn props not found, ${i}`);
|
|
3572
3584
|
return;
|
|
3573
3585
|
}
|
|
3574
3586
|
const s = {};
|
|
3575
|
-
return P(s,
|
|
3587
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = ln.key, s.settings.text = "button", s;
|
|
3576
3588
|
}
|
|
3577
|
-
const
|
|
3589
|
+
const Aa = B(j), ci = {
|
|
3578
3590
|
key: "settings",
|
|
3579
3591
|
name: "x-runtime-lib.settings",
|
|
3580
3592
|
children: [
|
|
@@ -3653,7 +3665,7 @@ const Ta = B(K), ci = {
|
|
|
3653
3665
|
ui: "switch",
|
|
3654
3666
|
default: !1
|
|
3655
3667
|
},
|
|
3656
|
-
|
|
3668
|
+
Aa,
|
|
3657
3669
|
{
|
|
3658
3670
|
key: "ripple",
|
|
3659
3671
|
name: "x-runtime-lib.ripple",
|
|
@@ -3664,7 +3676,7 @@ const Ta = B(K), ci = {
|
|
|
3664
3676
|
}, ln = {
|
|
3665
3677
|
key: Ze,
|
|
3666
3678
|
name: "x-runtime-lib.button",
|
|
3667
|
-
comp:
|
|
3679
|
+
comp: sl,
|
|
3668
3680
|
props: {
|
|
3669
3681
|
pageCommon: [y, U, ci],
|
|
3670
3682
|
compCommon: [y, U, ci]
|
|
@@ -3679,13 +3691,13 @@ const Ta = B(K), ci = {
|
|
|
3679
3691
|
methods: [],
|
|
3680
3692
|
slots: [],
|
|
3681
3693
|
leaf: !0,
|
|
3682
|
-
spawn:
|
|
3694
|
+
spawn: za
|
|
3683
3695
|
};
|
|
3684
3696
|
_(ln);
|
|
3685
|
-
const
|
|
3697
|
+
const La = {
|
|
3686
3698
|
key: qe,
|
|
3687
3699
|
name: "x-runtime-lib.buttonGroup",
|
|
3688
|
-
comp:
|
|
3700
|
+
comp: al,
|
|
3689
3701
|
props: {
|
|
3690
3702
|
pageCommon: [y],
|
|
3691
3703
|
compCommon: [y]
|
|
@@ -3694,7 +3706,7 @@ const Pa = {
|
|
|
3694
3706
|
methods: [],
|
|
3695
3707
|
slots: []
|
|
3696
3708
|
};
|
|
3697
|
-
_(
|
|
3709
|
+
_(La);
|
|
3698
3710
|
const mi = {
|
|
3699
3711
|
key: "settings",
|
|
3700
3712
|
name: "x-runtime-lib.settings",
|
|
@@ -3756,10 +3768,10 @@ const mi = {
|
|
|
3756
3768
|
default: !1
|
|
3757
3769
|
}
|
|
3758
3770
|
]
|
|
3759
|
-
},
|
|
3771
|
+
}, Ba = {
|
|
3760
3772
|
key: Qe,
|
|
3761
3773
|
name: "x-runtime-lib.buttonToggle",
|
|
3762
|
-
comp:
|
|
3774
|
+
comp: ul,
|
|
3763
3775
|
props: {
|
|
3764
3776
|
pageCommon: [y, mi],
|
|
3765
3777
|
compCommon: [y, mi]
|
|
@@ -3768,20 +3780,20 @@ const mi = {
|
|
|
3768
3780
|
methods: [],
|
|
3769
3781
|
slots: []
|
|
3770
3782
|
};
|
|
3771
|
-
_(
|
|
3772
|
-
function
|
|
3783
|
+
_(Ba);
|
|
3784
|
+
function Wa(t, e) {
|
|
3773
3785
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3774
3786
|
if (!o) {
|
|
3775
3787
|
console.error(`cardV1/spawn prop tag not found, ${i}`);
|
|
3776
3788
|
return;
|
|
3777
3789
|
}
|
|
3778
|
-
const
|
|
3779
|
-
if (!
|
|
3790
|
+
const r = Ae.props[o];
|
|
3791
|
+
if (!r) {
|
|
3780
3792
|
console.error(`cardV1/spawn props not found, ${i}`);
|
|
3781
3793
|
return;
|
|
3782
3794
|
}
|
|
3783
3795
|
const s = {};
|
|
3784
|
-
return P(s,
|
|
3796
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Ae.key, s.children = [], s.settings.title = "title", s.settings.subtitle = "subtitle", s.settings.text = "text", s;
|
|
3785
3797
|
}
|
|
3786
3798
|
const pi = {
|
|
3787
3799
|
key: "settings",
|
|
@@ -3841,7 +3853,7 @@ const pi = {
|
|
|
3841
3853
|
}, Ae = {
|
|
3842
3854
|
key: et,
|
|
3843
3855
|
name: "x-runtime-lib.card",
|
|
3844
|
-
comp:
|
|
3856
|
+
comp: cl,
|
|
3845
3857
|
props: {
|
|
3846
3858
|
pageCommon: [y, U, pi],
|
|
3847
3859
|
compCommon: [y, U, pi]
|
|
@@ -3849,7 +3861,7 @@ const pi = {
|
|
|
3849
3861
|
events: [],
|
|
3850
3862
|
methods: [],
|
|
3851
3863
|
slots: [],
|
|
3852
|
-
spawn:
|
|
3864
|
+
spawn: Wa
|
|
3853
3865
|
};
|
|
3854
3866
|
_(Ae);
|
|
3855
3867
|
const di = {
|
|
@@ -3869,10 +3881,10 @@ const di = {
|
|
|
3869
3881
|
default: ""
|
|
3870
3882
|
}
|
|
3871
3883
|
]
|
|
3872
|
-
},
|
|
3884
|
+
}, Ea = {
|
|
3873
3885
|
key: tt,
|
|
3874
3886
|
name: "x-runtime-lib.checkbox",
|
|
3875
|
-
comp:
|
|
3887
|
+
comp: ml,
|
|
3876
3888
|
props: {
|
|
3877
3889
|
pageCommon: [y, di],
|
|
3878
3890
|
compCommon: [y, di]
|
|
@@ -3882,8 +3894,8 @@ const di = {
|
|
|
3882
3894
|
slots: [],
|
|
3883
3895
|
leaf: !0
|
|
3884
3896
|
};
|
|
3885
|
-
_(
|
|
3886
|
-
const
|
|
3897
|
+
_(Ea);
|
|
3898
|
+
const Na = B(j), fi = {
|
|
3887
3899
|
key: "settings",
|
|
3888
3900
|
name: "x-runtime-lib.settings",
|
|
3889
3901
|
children: [
|
|
@@ -3956,12 +3968,12 @@ const Ba = B(K), fi = {
|
|
|
3956
3968
|
ui: "switch",
|
|
3957
3969
|
default: !1
|
|
3958
3970
|
},
|
|
3959
|
-
|
|
3971
|
+
Na
|
|
3960
3972
|
]
|
|
3961
3973
|
}, an = {
|
|
3962
3974
|
key: nt,
|
|
3963
3975
|
name: "x-runtime-lib.chip",
|
|
3964
|
-
comp:
|
|
3976
|
+
comp: pl,
|
|
3965
3977
|
props: {
|
|
3966
3978
|
pageCommon: [y, fi],
|
|
3967
3979
|
compCommon: [y, fi]
|
|
@@ -3972,19 +3984,19 @@ const Ba = B(K), fi = {
|
|
|
3972
3984
|
leaf: !0
|
|
3973
3985
|
};
|
|
3974
3986
|
_(an);
|
|
3975
|
-
function
|
|
3987
|
+
function Ma(t, e) {
|
|
3976
3988
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
3977
3989
|
if (!o) {
|
|
3978
3990
|
console.error(`chipGroupV1/spawn prop tag not found, ${i}`);
|
|
3979
3991
|
return;
|
|
3980
3992
|
}
|
|
3981
|
-
const
|
|
3982
|
-
if (!
|
|
3993
|
+
const r = un.props[o];
|
|
3994
|
+
if (!r) {
|
|
3983
3995
|
console.error(`chipGroupV1/spawn props not found, ${i}`);
|
|
3984
3996
|
return;
|
|
3985
3997
|
}
|
|
3986
3998
|
const s = {};
|
|
3987
|
-
return P(s,
|
|
3999
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = un.key, s.children = [
|
|
3988
4000
|
ve(t, e, "chip1", "chip 1"),
|
|
3989
4001
|
ve(t, e, "chip2", "chip 2"),
|
|
3990
4002
|
ve(t, e, "chip3", "chip 3"),
|
|
@@ -3994,14 +4006,14 @@ function Wa(t, e) {
|
|
|
3994
4006
|
], s;
|
|
3995
4007
|
}
|
|
3996
4008
|
function ve(t, e, i, o) {
|
|
3997
|
-
const
|
|
4009
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
3998
4010
|
if (!s) {
|
|
3999
|
-
console.error(`chipGroupV1/spawnChip prop tag not found, ${
|
|
4011
|
+
console.error(`chipGroupV1/spawnChip prop tag not found, ${r}`);
|
|
4000
4012
|
return;
|
|
4001
4013
|
}
|
|
4002
4014
|
const a = an.props[s];
|
|
4003
4015
|
if (!a) {
|
|
4004
|
-
console.error(`chipGroupV1/spawnChip props not found, ${
|
|
4016
|
+
console.error(`chipGroupV1/spawnChip props not found, ${r}`);
|
|
4005
4017
|
return;
|
|
4006
4018
|
}
|
|
4007
4019
|
const p = {};
|
|
@@ -4064,7 +4076,7 @@ const bi = {
|
|
|
4064
4076
|
}, un = {
|
|
4065
4077
|
key: it,
|
|
4066
4078
|
name: "x-runtime-lib.chipGroup",
|
|
4067
|
-
comp:
|
|
4079
|
+
comp: dl,
|
|
4068
4080
|
props: {
|
|
4069
4081
|
pageCommon: [y, bi],
|
|
4070
4082
|
compCommon: [y, bi]
|
|
@@ -4072,13 +4084,13 @@ const bi = {
|
|
|
4072
4084
|
events: [],
|
|
4073
4085
|
methods: [],
|
|
4074
4086
|
slots: [],
|
|
4075
|
-
spawn:
|
|
4087
|
+
spawn: Ma
|
|
4076
4088
|
};
|
|
4077
4089
|
_(un);
|
|
4078
|
-
const
|
|
4090
|
+
const Ra = {
|
|
4079
4091
|
key: ot,
|
|
4080
4092
|
name: "x-runtime-lib.colorPicker",
|
|
4081
|
-
comp:
|
|
4093
|
+
comp: fl,
|
|
4082
4094
|
props: {
|
|
4083
4095
|
pageCommon: [y],
|
|
4084
4096
|
compCommon: [y]
|
|
@@ -4088,7 +4100,7 @@ const Ea = {
|
|
|
4088
4100
|
slots: [],
|
|
4089
4101
|
leaf: !0
|
|
4090
4102
|
};
|
|
4091
|
-
_(
|
|
4103
|
+
_(Ra);
|
|
4092
4104
|
const yi = {
|
|
4093
4105
|
key: "settings",
|
|
4094
4106
|
name: "x-runtime-lib.settings",
|
|
@@ -4130,10 +4142,10 @@ const yi = {
|
|
|
4130
4142
|
default: !1
|
|
4131
4143
|
}
|
|
4132
4144
|
]
|
|
4133
|
-
},
|
|
4145
|
+
}, Da = {
|
|
4134
4146
|
key: st,
|
|
4135
4147
|
name: "x-runtime-lib.combobox",
|
|
4136
|
-
comp:
|
|
4148
|
+
comp: bl,
|
|
4137
4149
|
props: {
|
|
4138
4150
|
pageCommon: [y, yi],
|
|
4139
4151
|
compCommon: [y, yi]
|
|
@@ -4143,8 +4155,8 @@ const yi = {
|
|
|
4143
4155
|
slots: [],
|
|
4144
4156
|
leaf: !0
|
|
4145
4157
|
};
|
|
4146
|
-
_(
|
|
4147
|
-
const Fn = B(
|
|
4158
|
+
_(Da);
|
|
4159
|
+
const Fn = B(j);
|
|
4148
4160
|
Fn.key = "backgroundColor";
|
|
4149
4161
|
Fn.name = "x-runtime-lib.backgroundColor";
|
|
4150
4162
|
const hi = {
|
|
@@ -4154,7 +4166,7 @@ const hi = {
|
|
|
4154
4166
|
}, cn = {
|
|
4155
4167
|
key: rt,
|
|
4156
4168
|
name: "x-runtime-lib.container",
|
|
4157
|
-
comp:
|
|
4169
|
+
comp: yl,
|
|
4158
4170
|
props: {
|
|
4159
4171
|
pageCommon: [y, U, _e, we, Ve, hi],
|
|
4160
4172
|
compCommon: [y, U, _e, we, Ve, hi]
|
|
@@ -4322,10 +4334,10 @@ const gi = {
|
|
|
4322
4334
|
defaultArray: []
|
|
4323
4335
|
}
|
|
4324
4336
|
]
|
|
4325
|
-
},
|
|
4337
|
+
}, Fa = {
|
|
4326
4338
|
key: lt,
|
|
4327
4339
|
name: "x-runtime-lib.dataTable",
|
|
4328
|
-
comp:
|
|
4340
|
+
comp: hl,
|
|
4329
4341
|
props: {
|
|
4330
4342
|
pageCommon: [y, gi, xi, vi],
|
|
4331
4343
|
compCommon: [y, gi, xi, vi]
|
|
@@ -4335,11 +4347,11 @@ const gi = {
|
|
|
4335
4347
|
slots: [],
|
|
4336
4348
|
leaf: !0
|
|
4337
4349
|
};
|
|
4338
|
-
_(
|
|
4339
|
-
const
|
|
4350
|
+
_(Fa);
|
|
4351
|
+
const Ga = {
|
|
4340
4352
|
key: at,
|
|
4341
4353
|
name: "x-runtime-lib.datePicker",
|
|
4342
|
-
comp:
|
|
4354
|
+
comp: vl,
|
|
4343
4355
|
props: {
|
|
4344
4356
|
pageCommon: [y],
|
|
4345
4357
|
compCommon: [y]
|
|
@@ -4349,11 +4361,11 @@ const Ra = {
|
|
|
4349
4361
|
slots: [],
|
|
4350
4362
|
leaf: !0
|
|
4351
4363
|
};
|
|
4352
|
-
_(
|
|
4353
|
-
const
|
|
4364
|
+
_(Ga);
|
|
4365
|
+
const Ha = {
|
|
4354
4366
|
key: ut,
|
|
4355
4367
|
name: "x-runtime-lib.dialog",
|
|
4356
|
-
comp:
|
|
4368
|
+
comp: _l,
|
|
4357
4369
|
props: {
|
|
4358
4370
|
pageCommon: [y],
|
|
4359
4371
|
compCommon: [y]
|
|
@@ -4376,7 +4388,7 @@ const Da = {
|
|
|
4376
4388
|
slots: [],
|
|
4377
4389
|
teleport: !0
|
|
4378
4390
|
};
|
|
4379
|
-
_(
|
|
4391
|
+
_(Ha);
|
|
4380
4392
|
const ki = {
|
|
4381
4393
|
key: "settings",
|
|
4382
4394
|
name: "x-runtime-lib.settings",
|
|
@@ -4384,7 +4396,7 @@ const ki = {
|
|
|
4384
4396
|
}, Dc = {
|
|
4385
4397
|
key: mt,
|
|
4386
4398
|
name: "x-runtime-lib.fileInput",
|
|
4387
|
-
comp:
|
|
4399
|
+
comp: wl,
|
|
4388
4400
|
props: {
|
|
4389
4401
|
pageCommon: [y, ki],
|
|
4390
4402
|
compCommon: [y, ki]
|
|
@@ -4413,7 +4425,7 @@ const ki = {
|
|
|
4413
4425
|
}, mn = {
|
|
4414
4426
|
key: yo,
|
|
4415
4427
|
name: "x-runtime-lib.flexLayoutEntry",
|
|
4416
|
-
comp:
|
|
4428
|
+
comp: $l,
|
|
4417
4429
|
props: {
|
|
4418
4430
|
pageCommon: [y, U, _i],
|
|
4419
4431
|
compCommon: [y, U, _i]
|
|
@@ -4423,19 +4435,19 @@ const ki = {
|
|
|
4423
4435
|
slots: []
|
|
4424
4436
|
};
|
|
4425
4437
|
_(mn);
|
|
4426
|
-
function
|
|
4438
|
+
function Ka(t, e) {
|
|
4427
4439
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
4428
4440
|
if (!o) {
|
|
4429
4441
|
console.error(`flexLayoutV1/spawn prop tag not found, ${i}`);
|
|
4430
4442
|
return;
|
|
4431
4443
|
}
|
|
4432
|
-
const
|
|
4433
|
-
if (!
|
|
4444
|
+
const r = Le.props[o];
|
|
4445
|
+
if (!r) {
|
|
4434
4446
|
console.error(`flexLayoutV1/spawn props not found, ${i}`);
|
|
4435
4447
|
return;
|
|
4436
4448
|
}
|
|
4437
4449
|
const s = {};
|
|
4438
|
-
return P(s,
|
|
4450
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Le.key, s.children = [
|
|
4439
4451
|
pn(
|
|
4440
4452
|
t,
|
|
4441
4453
|
e,
|
|
@@ -4456,10 +4468,10 @@ function Fa(t, e) {
|
|
|
4456
4468
|
"60px",
|
|
4457
4469
|
void 0
|
|
4458
4470
|
),
|
|
4459
|
-
|
|
4471
|
+
ja(t, e)
|
|
4460
4472
|
], s;
|
|
4461
4473
|
}
|
|
4462
|
-
function pn(t, e, i, o,
|
|
4474
|
+
function pn(t, e, i, o, r, s, a, p, d) {
|
|
4463
4475
|
const b = `type=${t} subtype=${e}`, m = A(t, e);
|
|
4464
4476
|
if (!m) {
|
|
4465
4477
|
console.error(
|
|
@@ -4473,16 +4485,16 @@ function pn(t, e, i, o, l, s, a, p, d) {
|
|
|
4473
4485
|
return;
|
|
4474
4486
|
}
|
|
4475
4487
|
const c = {};
|
|
4476
|
-
return P(c, u), c.basic.id = T(16), c.basic.key = cn.key, o && (c.size.width = o),
|
|
4488
|
+
return P(c, u), c.basic.id = T(16), c.basic.key = cn.key, o && (c.size.width = o), r && (c.size.minWidth = r), a && (c.size.height = a), p && (c.size.minHeight = p), i && (c.settings.backgroundColor.mode = "custom", c.settings.backgroundColor.custom.light = i, c.settings.backgroundColor.custom.dark = i), c.children = [], c;
|
|
4477
4489
|
}
|
|
4478
|
-
function
|
|
4490
|
+
function ja(t, e) {
|
|
4479
4491
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
4480
4492
|
if (!o) {
|
|
4481
4493
|
console.error(`flexLayoutV1/spawnEntry prop tag not found, ${i}`);
|
|
4482
4494
|
return;
|
|
4483
4495
|
}
|
|
4484
|
-
const
|
|
4485
|
-
if (!
|
|
4496
|
+
const r = mn.props[o];
|
|
4497
|
+
if (!r) {
|
|
4486
4498
|
console.error(`flexLayoutV1/spawnEntry props not found, ${i}`);
|
|
4487
4499
|
return;
|
|
4488
4500
|
}
|
|
@@ -4492,7 +4504,7 @@ function Ga(t, e) {
|
|
|
4492
4504
|
key: ""
|
|
4493
4505
|
}
|
|
4494
4506
|
};
|
|
4495
|
-
return P(s,
|
|
4507
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = mn.key, s.children = [
|
|
4496
4508
|
pn(
|
|
4497
4509
|
t,
|
|
4498
4510
|
e,
|
|
@@ -4505,7 +4517,7 @@ function Ga(t, e) {
|
|
|
4505
4517
|
)
|
|
4506
4518
|
], s;
|
|
4507
4519
|
}
|
|
4508
|
-
const Gn = B(
|
|
4520
|
+
const Gn = B(j);
|
|
4509
4521
|
Gn.key = "backgroundColor";
|
|
4510
4522
|
Gn.name = "x-runtime-lib.backgroundColor";
|
|
4511
4523
|
const wi = {
|
|
@@ -4681,7 +4693,7 @@ const wi = {
|
|
|
4681
4693
|
}, Le = {
|
|
4682
4694
|
key: pt,
|
|
4683
4695
|
name: "x-runtime-lib.flexLayout",
|
|
4684
|
-
comp:
|
|
4696
|
+
comp: Vl,
|
|
4685
4697
|
props: {
|
|
4686
4698
|
pageCommon: [y, U, _e, we, Ve, wi],
|
|
4687
4699
|
compCommon: [y, U, _e, we, Ve, wi]
|
|
@@ -4695,7 +4707,7 @@ const wi = {
|
|
|
4695
4707
|
],
|
|
4696
4708
|
methods: [],
|
|
4697
4709
|
slots: [],
|
|
4698
|
-
spawn:
|
|
4710
|
+
spawn: Ka
|
|
4699
4711
|
};
|
|
4700
4712
|
_(Le);
|
|
4701
4713
|
const Vi = {
|
|
@@ -4851,7 +4863,7 @@ const Vi = {
|
|
|
4851
4863
|
}, dn = {
|
|
4852
4864
|
key: Rt,
|
|
4853
4865
|
name: "x-runtime-lib.textField",
|
|
4854
|
-
comp:
|
|
4866
|
+
comp: ql,
|
|
4855
4867
|
props: {
|
|
4856
4868
|
pageCommon: [y, Vi, $i],
|
|
4857
4869
|
compCommon: [y, Vi, $i]
|
|
@@ -4887,33 +4899,33 @@ const Vi = {
|
|
|
4887
4899
|
leaf: !0
|
|
4888
4900
|
};
|
|
4889
4901
|
_(dn);
|
|
4890
|
-
function
|
|
4902
|
+
function Oa(t, e) {
|
|
4891
4903
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
4892
4904
|
if (!o) {
|
|
4893
4905
|
console.error(`formV1/spawn prop tag not found, ${i}`);
|
|
4894
4906
|
return;
|
|
4895
4907
|
}
|
|
4896
|
-
const
|
|
4897
|
-
if (!
|
|
4908
|
+
const r = fn.props[o];
|
|
4909
|
+
if (!r) {
|
|
4898
4910
|
console.error(`formV1/spawn props not found, ${i}`);
|
|
4899
4911
|
return;
|
|
4900
4912
|
}
|
|
4901
4913
|
const s = {};
|
|
4902
|
-
return P(s,
|
|
4914
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = fn.key, s.children = [Ua(t, e)], s;
|
|
4903
4915
|
}
|
|
4904
|
-
function
|
|
4916
|
+
function Ua(t, e) {
|
|
4905
4917
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
4906
4918
|
if (!o) {
|
|
4907
4919
|
console.error(`formV1/spawnTextField prop tag not found, ${i}`);
|
|
4908
4920
|
return;
|
|
4909
4921
|
}
|
|
4910
|
-
const
|
|
4911
|
-
if (!
|
|
4922
|
+
const r = dn.props[o];
|
|
4923
|
+
if (!r) {
|
|
4912
4924
|
console.error(`formV1/spawnTextField props not found, ${i}`);
|
|
4913
4925
|
return;
|
|
4914
4926
|
}
|
|
4915
4927
|
const s = {};
|
|
4916
|
-
return P(s,
|
|
4928
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = dn.key, s;
|
|
4917
4929
|
}
|
|
4918
4930
|
const Ii = {
|
|
4919
4931
|
key: "settings",
|
|
@@ -4936,7 +4948,7 @@ const Ii = {
|
|
|
4936
4948
|
}, fn = {
|
|
4937
4949
|
key: dt,
|
|
4938
4950
|
name: "x-runtime-lib.form",
|
|
4939
|
-
comp:
|
|
4951
|
+
comp: Il,
|
|
4940
4952
|
props: {
|
|
4941
4953
|
pageCommon: [y, U, _e, we, Ve, Ii],
|
|
4942
4954
|
compCommon: [y, U, _e, we, Ve, Ii]
|
|
@@ -4950,10 +4962,10 @@ const Ii = {
|
|
|
4950
4962
|
],
|
|
4951
4963
|
methods: [],
|
|
4952
4964
|
slots: [],
|
|
4953
|
-
spawn:
|
|
4965
|
+
spawn: Oa
|
|
4954
4966
|
};
|
|
4955
4967
|
_(fn);
|
|
4956
|
-
const
|
|
4968
|
+
const Xa = B(j), Si = {
|
|
4957
4969
|
key: "settings",
|
|
4958
4970
|
name: "x-runtime-lib.settings",
|
|
4959
4971
|
children: [
|
|
@@ -4976,12 +4988,12 @@ const Ka = B(K), Si = {
|
|
|
4976
4988
|
items: "sizeItemsV1",
|
|
4977
4989
|
default: "default"
|
|
4978
4990
|
},
|
|
4979
|
-
|
|
4991
|
+
Xa
|
|
4980
4992
|
]
|
|
4981
|
-
},
|
|
4993
|
+
}, Ya = {
|
|
4982
4994
|
key: bt,
|
|
4983
4995
|
name: "x-runtime-lib.icon",
|
|
4984
|
-
comp:
|
|
4996
|
+
comp: Sl,
|
|
4985
4997
|
props: {
|
|
4986
4998
|
pageCommon: [y, Si],
|
|
4987
4999
|
compCommon: [y, Si]
|
|
@@ -4991,11 +5003,11 @@ const Ka = B(K), Si = {
|
|
|
4991
5003
|
slots: [],
|
|
4992
5004
|
leaf: !0
|
|
4993
5005
|
};
|
|
4994
|
-
_(
|
|
4995
|
-
const
|
|
5006
|
+
_(Ya);
|
|
5007
|
+
const Ja = {
|
|
4996
5008
|
key: xt,
|
|
4997
5009
|
name: "x-runtime-lib.menu",
|
|
4998
|
-
comp:
|
|
5010
|
+
comp: Tl,
|
|
4999
5011
|
props: {
|
|
5000
5012
|
pageCommon: [y],
|
|
5001
5013
|
compCommon: [y]
|
|
@@ -5018,20 +5030,20 @@ const Ua = {
|
|
|
5018
5030
|
slots: [],
|
|
5019
5031
|
teleport: !0
|
|
5020
5032
|
};
|
|
5021
|
-
_(
|
|
5022
|
-
function
|
|
5033
|
+
_(Ja);
|
|
5034
|
+
function Za(t, e) {
|
|
5023
5035
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5024
5036
|
if (!o) {
|
|
5025
5037
|
console.error(`numberInputV1/spawn prop tag not found, ${i}`);
|
|
5026
5038
|
return;
|
|
5027
5039
|
}
|
|
5028
|
-
const
|
|
5029
|
-
if (!
|
|
5040
|
+
const r = bn.props[o];
|
|
5041
|
+
if (!r) {
|
|
5030
5042
|
console.error(`numberInputV1/spawn props not found, ${i}`);
|
|
5031
5043
|
return;
|
|
5032
5044
|
}
|
|
5033
5045
|
const s = {};
|
|
5034
|
-
return P(s,
|
|
5046
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = bn.key, s.settings.label = "label", s.settings.placeholder = "placeholder", s;
|
|
5035
5047
|
}
|
|
5036
5048
|
const Ci = {
|
|
5037
5049
|
key: "size",
|
|
@@ -5203,7 +5215,7 @@ const Ci = {
|
|
|
5203
5215
|
}, bn = {
|
|
5204
5216
|
key: kt,
|
|
5205
5217
|
name: "x-runtime-lib.numberInput",
|
|
5206
|
-
comp:
|
|
5218
|
+
comp: Pl,
|
|
5207
5219
|
props: {
|
|
5208
5220
|
pageCommon: [y, Ci, Ti],
|
|
5209
5221
|
compCommon: [y, Ci, Ti]
|
|
@@ -5238,7 +5250,7 @@ const Ci = {
|
|
|
5238
5250
|
methods: [],
|
|
5239
5251
|
slots: [],
|
|
5240
5252
|
leaf: !0,
|
|
5241
|
-
spawn:
|
|
5253
|
+
spawn: Za
|
|
5242
5254
|
};
|
|
5243
5255
|
_(bn);
|
|
5244
5256
|
const Pi = {
|
|
@@ -5304,10 +5316,10 @@ const Pi = {
|
|
|
5304
5316
|
default: !1
|
|
5305
5317
|
}
|
|
5306
5318
|
]
|
|
5307
|
-
},
|
|
5319
|
+
}, qa = {
|
|
5308
5320
|
key: Vt,
|
|
5309
5321
|
name: "x-runtime-lib.pagination",
|
|
5310
|
-
comp:
|
|
5322
|
+
comp: zl,
|
|
5311
5323
|
props: {
|
|
5312
5324
|
pageCommon: [y, Pi],
|
|
5313
5325
|
compCommon: [y, Pi]
|
|
@@ -5317,8 +5329,8 @@ const Pi = {
|
|
|
5317
5329
|
slots: [],
|
|
5318
5330
|
leaf: !0
|
|
5319
5331
|
};
|
|
5320
|
-
_(
|
|
5321
|
-
const
|
|
5332
|
+
_(qa);
|
|
5333
|
+
const Qa = B(j), zi = {
|
|
5322
5334
|
key: "settings",
|
|
5323
5335
|
name: "x-runtime-lib.settings",
|
|
5324
5336
|
children: [
|
|
@@ -5353,12 +5365,12 @@ const Ja = B(K), zi = {
|
|
|
5353
5365
|
items: "densityItemsV1",
|
|
5354
5366
|
default: "default"
|
|
5355
5367
|
},
|
|
5356
|
-
|
|
5368
|
+
Qa
|
|
5357
5369
|
]
|
|
5358
5370
|
}, yn = {
|
|
5359
5371
|
key: ho,
|
|
5360
5372
|
name: "x-runtime-lib.radio",
|
|
5361
|
-
comp:
|
|
5373
|
+
comp: Al,
|
|
5362
5374
|
props: {
|
|
5363
5375
|
pageCommon: [y, zi],
|
|
5364
5376
|
compCommon: [y, zi]
|
|
@@ -5369,33 +5381,33 @@ const Ja = B(K), zi = {
|
|
|
5369
5381
|
leaf: !0
|
|
5370
5382
|
};
|
|
5371
5383
|
_(yn);
|
|
5372
|
-
function
|
|
5384
|
+
function eu(t, e) {
|
|
5373
5385
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5374
5386
|
if (!o) {
|
|
5375
5387
|
console.error(`radioGroupV1/spawn prop tag not found, ${i}`);
|
|
5376
5388
|
return;
|
|
5377
5389
|
}
|
|
5378
|
-
const
|
|
5379
|
-
if (!
|
|
5390
|
+
const r = hn.props[o];
|
|
5391
|
+
if (!r) {
|
|
5380
5392
|
console.error(`radioGroupV1/spawn props not found, ${i}`);
|
|
5381
5393
|
return;
|
|
5382
5394
|
}
|
|
5383
5395
|
const s = {};
|
|
5384
|
-
return P(s,
|
|
5396
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = hn.key, s.children = [
|
|
5385
5397
|
Yt(t, e, "option1", "Option 1"),
|
|
5386
5398
|
Yt(t, e, "option2", "Option 2"),
|
|
5387
5399
|
Yt(t, e, "option3", "Option 3")
|
|
5388
5400
|
], s.settings.value = "option1", s;
|
|
5389
5401
|
}
|
|
5390
5402
|
function Yt(t, e, i, o) {
|
|
5391
|
-
const
|
|
5403
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
5392
5404
|
if (!s) {
|
|
5393
|
-
console.error(`radioGroupV1/spawnEntry prop tag not found, ${
|
|
5405
|
+
console.error(`radioGroupV1/spawnEntry prop tag not found, ${r}`);
|
|
5394
5406
|
return;
|
|
5395
5407
|
}
|
|
5396
5408
|
const a = yn.props[s];
|
|
5397
5409
|
if (!a) {
|
|
5398
|
-
console.error(`radioGroupV1/spawnEntry props not found, ${
|
|
5410
|
+
console.error(`radioGroupV1/spawnEntry props not found, ${r}`);
|
|
5399
5411
|
return;
|
|
5400
5412
|
}
|
|
5401
5413
|
const p = {};
|
|
@@ -5447,7 +5459,7 @@ const Ai = {
|
|
|
5447
5459
|
}, hn = {
|
|
5448
5460
|
key: St,
|
|
5449
5461
|
name: "x-runtime-lib.radioGroup",
|
|
5450
|
-
comp:
|
|
5462
|
+
comp: Ll,
|
|
5451
5463
|
props: {
|
|
5452
5464
|
pageCommon: [y, Ai],
|
|
5453
5465
|
compCommon: [y, Ai]
|
|
@@ -5455,7 +5467,7 @@ const Ai = {
|
|
|
5455
5467
|
events: [],
|
|
5456
5468
|
methods: [],
|
|
5457
5469
|
slots: [],
|
|
5458
|
-
spawn:
|
|
5470
|
+
spawn: eu
|
|
5459
5471
|
};
|
|
5460
5472
|
_(hn);
|
|
5461
5473
|
const Li = {
|
|
@@ -5575,10 +5587,10 @@ const Li = {
|
|
|
5575
5587
|
]
|
|
5576
5588
|
}
|
|
5577
5589
|
]
|
|
5578
|
-
},
|
|
5590
|
+
}, tu = {
|
|
5579
5591
|
key: Ct,
|
|
5580
5592
|
name: "x-runtime-lib.rangeSlider",
|
|
5581
|
-
comp:
|
|
5593
|
+
comp: Bl,
|
|
5582
5594
|
props: {
|
|
5583
5595
|
pageCommon: [y, Li],
|
|
5584
5596
|
compCommon: [y, Li]
|
|
@@ -5588,7 +5600,7 @@ const Li = {
|
|
|
5588
5600
|
slots: [],
|
|
5589
5601
|
leaf: !0
|
|
5590
5602
|
};
|
|
5591
|
-
_(
|
|
5603
|
+
_(tu);
|
|
5592
5604
|
const Bi = {
|
|
5593
5605
|
key: "settings",
|
|
5594
5606
|
name: "x-runtime-lib.settings",
|
|
@@ -5644,10 +5656,10 @@ const Bi = {
|
|
|
5644
5656
|
default: !1
|
|
5645
5657
|
}
|
|
5646
5658
|
]
|
|
5647
|
-
},
|
|
5659
|
+
}, nu = {
|
|
5648
5660
|
key: Tt,
|
|
5649
5661
|
name: "x-runtime-lib.rating",
|
|
5650
|
-
comp:
|
|
5662
|
+
comp: Wl,
|
|
5651
5663
|
props: {
|
|
5652
5664
|
pageCommon: [y, Bi],
|
|
5653
5665
|
compCommon: [y, Bi]
|
|
@@ -5657,7 +5669,7 @@ const Bi = {
|
|
|
5657
5669
|
slots: [],
|
|
5658
5670
|
leaf: !0
|
|
5659
5671
|
};
|
|
5660
|
-
_(
|
|
5672
|
+
_(nu);
|
|
5661
5673
|
const Wi = {
|
|
5662
5674
|
key: "settings",
|
|
5663
5675
|
name: "x-runtime-lib.settings",
|
|
@@ -5699,10 +5711,10 @@ const Wi = {
|
|
|
5699
5711
|
default: !1
|
|
5700
5712
|
}
|
|
5701
5713
|
]
|
|
5702
|
-
},
|
|
5714
|
+
}, iu = {
|
|
5703
5715
|
key: Pt,
|
|
5704
5716
|
name: "x-runtime-lib.select",
|
|
5705
|
-
comp:
|
|
5717
|
+
comp: El,
|
|
5706
5718
|
props: {
|
|
5707
5719
|
pageCommon: [y, Wi],
|
|
5708
5720
|
compCommon: [y, Wi]
|
|
@@ -5712,16 +5724,16 @@ const Wi = {
|
|
|
5712
5724
|
slots: [],
|
|
5713
5725
|
leaf: !0
|
|
5714
5726
|
};
|
|
5715
|
-
_(
|
|
5716
|
-
const Hn = B(
|
|
5727
|
+
_(iu);
|
|
5728
|
+
const Hn = B(j);
|
|
5717
5729
|
Hn.key = "color";
|
|
5718
5730
|
Hn.name = "x-runtime-lib.color";
|
|
5719
|
-
const
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
const
|
|
5723
|
-
|
|
5724
|
-
|
|
5731
|
+
const Kn = B(j);
|
|
5732
|
+
Kn.key = "trackColor";
|
|
5733
|
+
Kn.name = "x-runtime-lib.trackColor";
|
|
5734
|
+
const jn = B(j);
|
|
5735
|
+
jn.key = "thumbColor";
|
|
5736
|
+
jn.name = "x-runtime-lib.thumbColor";
|
|
5725
5737
|
const Ei = {
|
|
5726
5738
|
key: "settings",
|
|
5727
5739
|
name: "x-runtime-lib.settings",
|
|
@@ -5828,8 +5840,8 @@ const Ei = {
|
|
|
5828
5840
|
default: !1
|
|
5829
5841
|
},
|
|
5830
5842
|
Hn,
|
|
5831
|
-
|
|
5832
|
-
|
|
5843
|
+
Kn,
|
|
5844
|
+
jn
|
|
5833
5845
|
]
|
|
5834
5846
|
}, Ni = {
|
|
5835
5847
|
key: "slots",
|
|
@@ -5848,10 +5860,10 @@ const Ei = {
|
|
|
5848
5860
|
default: void 0
|
|
5849
5861
|
}
|
|
5850
5862
|
]
|
|
5851
|
-
},
|
|
5863
|
+
}, ou = {
|
|
5852
5864
|
key: zt,
|
|
5853
5865
|
name: "x-runtime-lib.slider",
|
|
5854
|
-
comp:
|
|
5866
|
+
comp: Nl,
|
|
5855
5867
|
props: {
|
|
5856
5868
|
pageCommon: [y, Ei, Ni],
|
|
5857
5869
|
compCommon: [y, Ei, Ni]
|
|
@@ -5861,11 +5873,11 @@ const Ei = {
|
|
|
5861
5873
|
slots: [],
|
|
5862
5874
|
leaf: !0
|
|
5863
5875
|
};
|
|
5864
|
-
_(
|
|
5876
|
+
_(ou);
|
|
5865
5877
|
const gn = {
|
|
5866
5878
|
key: go,
|
|
5867
5879
|
name: "x-runtime-lib.stepperHeader",
|
|
5868
|
-
comp:
|
|
5880
|
+
comp: Fl,
|
|
5869
5881
|
props: {
|
|
5870
5882
|
pageCommon: [y],
|
|
5871
5883
|
compCommon: [y]
|
|
@@ -5889,7 +5901,7 @@ const Mi = {
|
|
|
5889
5901
|
}, xn = {
|
|
5890
5902
|
key: xo,
|
|
5891
5903
|
name: "x-runtime-lib.stepperItem",
|
|
5892
|
-
comp:
|
|
5904
|
+
comp: Gl,
|
|
5893
5905
|
props: {
|
|
5894
5906
|
pageCommon: [y, Mi],
|
|
5895
5907
|
compCommon: [y, Mi]
|
|
@@ -5902,7 +5914,7 @@ _(xn);
|
|
|
5902
5914
|
const vn = {
|
|
5903
5915
|
key: vo,
|
|
5904
5916
|
name: "x-runtime-lib.stepperWindow",
|
|
5905
|
-
comp:
|
|
5917
|
+
comp: jl,
|
|
5906
5918
|
props: {
|
|
5907
5919
|
pageCommon: [y],
|
|
5908
5920
|
compCommon: [y]
|
|
@@ -5926,7 +5938,7 @@ const Ri = {
|
|
|
5926
5938
|
}, kn = {
|
|
5927
5939
|
key: ko,
|
|
5928
5940
|
name: "x-runtime-lib.stepperWindowItem",
|
|
5929
|
-
comp:
|
|
5941
|
+
comp: Ol,
|
|
5930
5942
|
props: {
|
|
5931
5943
|
pageCommon: [y, Ri],
|
|
5932
5944
|
compCommon: [y, Ri]
|
|
@@ -5936,45 +5948,45 @@ const Ri = {
|
|
|
5936
5948
|
slots: []
|
|
5937
5949
|
};
|
|
5938
5950
|
_(kn);
|
|
5939
|
-
function
|
|
5951
|
+
function su(t, e) {
|
|
5940
5952
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5941
5953
|
if (!o) {
|
|
5942
5954
|
console.error(`stepperV1/spawn prop tag not found, ${i}`);
|
|
5943
5955
|
return;
|
|
5944
5956
|
}
|
|
5945
|
-
const
|
|
5946
|
-
if (!
|
|
5957
|
+
const r = _n.props[o];
|
|
5958
|
+
if (!r) {
|
|
5947
5959
|
console.error(`stepperV1/spawn props not found, ${i}`);
|
|
5948
5960
|
return;
|
|
5949
5961
|
}
|
|
5950
5962
|
const s = {};
|
|
5951
|
-
return P(s,
|
|
5963
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = _n.key, s.children = [ru(t, e), lu(t, e)], s;
|
|
5952
5964
|
}
|
|
5953
|
-
function
|
|
5965
|
+
function ru(t, e) {
|
|
5954
5966
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5955
5967
|
if (!o) {
|
|
5956
5968
|
console.error(`stepperV1/spawnHeader prop tag not found, ${i}`);
|
|
5957
5969
|
return;
|
|
5958
5970
|
}
|
|
5959
|
-
const
|
|
5960
|
-
if (!
|
|
5971
|
+
const r = gn.props[o];
|
|
5972
|
+
if (!r) {
|
|
5961
5973
|
console.error(`stepperV1/spawnHeader props not found, ${i}`);
|
|
5962
5974
|
return;
|
|
5963
5975
|
}
|
|
5964
5976
|
const s = {};
|
|
5965
|
-
return P(s,
|
|
5977
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = gn.key, s.children = [
|
|
5966
5978
|
Jt(t, e, "step1"),
|
|
5967
5979
|
Jt(t, e, "step2"),
|
|
5968
5980
|
Jt(t, e, "step3")
|
|
5969
5981
|
], s;
|
|
5970
5982
|
}
|
|
5971
5983
|
function Jt(t, e, i) {
|
|
5972
|
-
const o = `type=${t} subtype=${e}`,
|
|
5973
|
-
if (!
|
|
5984
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
5985
|
+
if (!r) {
|
|
5974
5986
|
console.error(`stepperV1/spawnItem prop tag not found, ${o}`);
|
|
5975
5987
|
return;
|
|
5976
5988
|
}
|
|
5977
|
-
const s = xn.props[
|
|
5989
|
+
const s = xn.props[r];
|
|
5978
5990
|
if (!s) {
|
|
5979
5991
|
console.error(`stepperV1/spawnItem props not found, ${o}`);
|
|
5980
5992
|
return;
|
|
@@ -5982,45 +5994,45 @@ function Jt(t, e, i) {
|
|
|
5982
5994
|
const a = {};
|
|
5983
5995
|
return P(a, s), a.basic.id = T(16), a.basic.key = xn.key, a.children = [], a.settings.value = i, a;
|
|
5984
5996
|
}
|
|
5985
|
-
function
|
|
5997
|
+
function lu(t, e) {
|
|
5986
5998
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5987
5999
|
if (!o) {
|
|
5988
6000
|
console.error(`stepperV1/spawnWindow prop tag not found, ${i}`);
|
|
5989
6001
|
return;
|
|
5990
6002
|
}
|
|
5991
|
-
const
|
|
5992
|
-
if (!
|
|
6003
|
+
const r = vn.props[o];
|
|
6004
|
+
if (!r) {
|
|
5993
6005
|
console.error(`stepperV1/spawnWindow props not found, ${i}`);
|
|
5994
6006
|
return;
|
|
5995
6007
|
}
|
|
5996
6008
|
const s = {};
|
|
5997
|
-
return P(s,
|
|
6009
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = vn.key, s.children = [
|
|
5998
6010
|
Zt(t, e, "step1", "step 1"),
|
|
5999
6011
|
Zt(t, e, "step2", "step 2"),
|
|
6000
6012
|
Zt(t, e, "step3", "step 3")
|
|
6001
6013
|
], s;
|
|
6002
6014
|
}
|
|
6003
6015
|
function Zt(t, e, i, o) {
|
|
6004
|
-
const
|
|
6016
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
6005
6017
|
if (!s) {
|
|
6006
|
-
console.error(`stepperV1/spawnWindowItem prop tag not found, ${
|
|
6018
|
+
console.error(`stepperV1/spawnWindowItem prop tag not found, ${r}`);
|
|
6007
6019
|
return;
|
|
6008
6020
|
}
|
|
6009
6021
|
const a = kn.props[s];
|
|
6010
6022
|
if (!a) {
|
|
6011
|
-
console.error(`stepperV1/spawnWindowItem props not found, ${
|
|
6023
|
+
console.error(`stepperV1/spawnWindowItem props not found, ${r}`);
|
|
6012
6024
|
return;
|
|
6013
6025
|
}
|
|
6014
6026
|
const p = {};
|
|
6015
|
-
return P(p, a), p.basic.id = T(16), p.basic.key = kn.key, p.children = [
|
|
6027
|
+
return P(p, a), p.basic.id = T(16), p.basic.key = kn.key, p.children = [au(t, e, o)], p.settings.value = i, p;
|
|
6016
6028
|
}
|
|
6017
|
-
function
|
|
6018
|
-
const o = `type=${t} subtype=${e}`,
|
|
6019
|
-
if (!
|
|
6029
|
+
function au(t, e, i) {
|
|
6030
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6031
|
+
if (!r) {
|
|
6020
6032
|
console.error(`stepperV1/spawnCard prop tag not found, ${o}`);
|
|
6021
6033
|
return;
|
|
6022
6034
|
}
|
|
6023
|
-
const s = Ae.props[
|
|
6035
|
+
const s = Ae.props[r];
|
|
6024
6036
|
if (!s) {
|
|
6025
6037
|
console.error(`stepperV1/spawnCard props not found, ${o}`);
|
|
6026
6038
|
return;
|
|
@@ -6048,7 +6060,7 @@ const Di = {
|
|
|
6048
6060
|
}, _n = {
|
|
6049
6061
|
key: Bt,
|
|
6050
6062
|
name: "x-runtime-lib.stepper",
|
|
6051
|
-
comp:
|
|
6063
|
+
comp: Ml,
|
|
6052
6064
|
props: {
|
|
6053
6065
|
pageCommon: [y, Di],
|
|
6054
6066
|
compCommon: [y, Di]
|
|
@@ -6056,13 +6068,13 @@ const Di = {
|
|
|
6056
6068
|
events: [],
|
|
6057
6069
|
methods: [],
|
|
6058
6070
|
slots: [],
|
|
6059
|
-
spawn:
|
|
6071
|
+
spawn: su
|
|
6060
6072
|
};
|
|
6061
6073
|
_(_n);
|
|
6062
|
-
const
|
|
6074
|
+
const uu = {
|
|
6063
6075
|
key: Wt,
|
|
6064
6076
|
name: "x-runtime-lib.switch",
|
|
6065
|
-
comp:
|
|
6077
|
+
comp: Ul,
|
|
6066
6078
|
props: {
|
|
6067
6079
|
pageCommon: [y],
|
|
6068
6080
|
compCommon: [y]
|
|
@@ -6072,7 +6084,7 @@ const ru = {
|
|
|
6072
6084
|
slots: [],
|
|
6073
6085
|
leaf: !0
|
|
6074
6086
|
};
|
|
6075
|
-
_(
|
|
6087
|
+
_(uu);
|
|
6076
6088
|
const Fi = {
|
|
6077
6089
|
key: "settings",
|
|
6078
6090
|
name: "x-runtime-lib.settings",
|
|
@@ -6093,7 +6105,7 @@ const Fi = {
|
|
|
6093
6105
|
}, wn = {
|
|
6094
6106
|
key: _o,
|
|
6095
6107
|
name: "x-runtime-lib.tab",
|
|
6096
|
-
comp:
|
|
6108
|
+
comp: Xl,
|
|
6097
6109
|
props: {
|
|
6098
6110
|
pageCommon: [y, Fi],
|
|
6099
6111
|
compCommon: [y, Fi]
|
|
@@ -6104,45 +6116,45 @@ const Fi = {
|
|
|
6104
6116
|
leaf: !0
|
|
6105
6117
|
};
|
|
6106
6118
|
_(wn);
|
|
6107
|
-
function
|
|
6119
|
+
function cu(t, e) {
|
|
6108
6120
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
6109
6121
|
if (!o) {
|
|
6110
6122
|
console.error(`tabsV1/spawn prop tag not found, ${i}`);
|
|
6111
6123
|
return;
|
|
6112
6124
|
}
|
|
6113
|
-
const
|
|
6114
|
-
if (!
|
|
6125
|
+
const r = Vn.props[o];
|
|
6126
|
+
if (!r) {
|
|
6115
6127
|
console.error(`tabsV1/spawn props not found, ${i}`);
|
|
6116
6128
|
return;
|
|
6117
6129
|
}
|
|
6118
6130
|
const s = {};
|
|
6119
|
-
return P(s,
|
|
6131
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Vn.key, s.children = [
|
|
6120
6132
|
qt(t, e, "tab1", "tab 1"),
|
|
6121
6133
|
qt(t, e, "tab2", "tab 2"),
|
|
6122
6134
|
qt(t, e, "tab3", "tab 3")
|
|
6123
6135
|
], s;
|
|
6124
6136
|
}
|
|
6125
6137
|
function qt(t, e, i, o) {
|
|
6126
|
-
const
|
|
6138
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
6127
6139
|
if (!s) {
|
|
6128
|
-
console.error(`tabsV1/spawnTab prop tag not found, ${
|
|
6140
|
+
console.error(`tabsV1/spawnTab prop tag not found, ${r}`);
|
|
6129
6141
|
return;
|
|
6130
6142
|
}
|
|
6131
6143
|
const a = wn.props[s];
|
|
6132
6144
|
if (!a) {
|
|
6133
|
-
console.error(`tabsV1/spawnTab props not found, ${
|
|
6145
|
+
console.error(`tabsV1/spawnTab props not found, ${r}`);
|
|
6134
6146
|
return;
|
|
6135
6147
|
}
|
|
6136
6148
|
const p = {};
|
|
6137
6149
|
return P(p, a), p.basic.id = T(16), p.basic.key = wn.key, p.settings.value = i, p.settings.text = o, p;
|
|
6138
6150
|
}
|
|
6139
|
-
const On = B(
|
|
6151
|
+
const On = B(j);
|
|
6140
6152
|
On.key = "backgroundColor";
|
|
6141
6153
|
On.name = "x-runtime-lib.backgroundColor";
|
|
6142
|
-
const Un = B(
|
|
6154
|
+
const Un = B(j);
|
|
6143
6155
|
Un.key = "selectedColor";
|
|
6144
6156
|
Un.name = "x-runtime-lib.selectedColor";
|
|
6145
|
-
const Xn = B(
|
|
6157
|
+
const Xn = B(j);
|
|
6146
6158
|
Xn.key = "sliderColor";
|
|
6147
6159
|
Xn.name = "x-runtime-lib.sliderColor";
|
|
6148
6160
|
const Gi = {
|
|
@@ -6227,7 +6239,7 @@ const Gi = {
|
|
|
6227
6239
|
}, Vn = {
|
|
6228
6240
|
key: Et,
|
|
6229
6241
|
name: "x-runtime-lib.tabs",
|
|
6230
|
-
comp:
|
|
6242
|
+
comp: Yl,
|
|
6231
6243
|
props: {
|
|
6232
6244
|
pageCommon: [y, Gi],
|
|
6233
6245
|
compCommon: [y, Gi]
|
|
@@ -6235,22 +6247,22 @@ const Gi = {
|
|
|
6235
6247
|
events: [],
|
|
6236
6248
|
methods: [],
|
|
6237
6249
|
slots: [],
|
|
6238
|
-
spawn:
|
|
6250
|
+
spawn: cu
|
|
6239
6251
|
};
|
|
6240
6252
|
_(Vn);
|
|
6241
|
-
function
|
|
6253
|
+
function mu(t, e) {
|
|
6242
6254
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
6243
6255
|
if (!o) {
|
|
6244
6256
|
console.error(`textV1/spawn prop tag not found, ${i}`);
|
|
6245
6257
|
return;
|
|
6246
6258
|
}
|
|
6247
|
-
const
|
|
6248
|
-
if (!
|
|
6259
|
+
const r = ye.props[o];
|
|
6260
|
+
if (!r) {
|
|
6249
6261
|
console.error(`textV1/spawn props not found, ${i}`);
|
|
6250
6262
|
return;
|
|
6251
6263
|
}
|
|
6252
6264
|
const s = {};
|
|
6253
|
-
return P(s,
|
|
6265
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = ye.key, s.settings.text = "text", s;
|
|
6254
6266
|
}
|
|
6255
6267
|
const Hi = {
|
|
6256
6268
|
key: "settings",
|
|
@@ -6341,7 +6353,7 @@ const Hi = {
|
|
|
6341
6353
|
}, ye = {
|
|
6342
6354
|
key: Nt,
|
|
6343
6355
|
name: "x-runtime-lib.text",
|
|
6344
|
-
comp:
|
|
6356
|
+
comp: Jl,
|
|
6345
6357
|
props: {
|
|
6346
6358
|
pageCommon: [y, Hi],
|
|
6347
6359
|
compCommon: [y, Hi]
|
|
@@ -6350,24 +6362,24 @@ const Hi = {
|
|
|
6350
6362
|
methods: [],
|
|
6351
6363
|
slots: [],
|
|
6352
6364
|
leaf: !0,
|
|
6353
|
-
spawn:
|
|
6365
|
+
spawn: mu
|
|
6354
6366
|
};
|
|
6355
6367
|
_(ye);
|
|
6356
|
-
function
|
|
6368
|
+
function pu(t, e) {
|
|
6357
6369
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
6358
6370
|
if (!o) {
|
|
6359
6371
|
console.error(`textareaV1/spawn prop tag not found, ${i}`);
|
|
6360
6372
|
return;
|
|
6361
6373
|
}
|
|
6362
|
-
const
|
|
6363
|
-
if (!
|
|
6374
|
+
const r = $n.props[o];
|
|
6375
|
+
if (!r) {
|
|
6364
6376
|
console.error(`textareaV1/spawn props not found, ${i}`);
|
|
6365
6377
|
return;
|
|
6366
6378
|
}
|
|
6367
6379
|
const s = {};
|
|
6368
|
-
return P(s,
|
|
6380
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = $n.key, s.settings.label = "label", s;
|
|
6369
6381
|
}
|
|
6370
|
-
const
|
|
6382
|
+
const Ki = {
|
|
6371
6383
|
key: "settings",
|
|
6372
6384
|
name: "x-runtime-lib.settings",
|
|
6373
6385
|
children: [
|
|
@@ -6441,22 +6453,22 @@ const ji = {
|
|
|
6441
6453
|
}, $n = {
|
|
6442
6454
|
key: Mt,
|
|
6443
6455
|
name: "x-runtime-lib.textarea",
|
|
6444
|
-
comp:
|
|
6456
|
+
comp: Zl,
|
|
6445
6457
|
props: {
|
|
6446
|
-
pageCommon: [y,
|
|
6447
|
-
compCommon: [y,
|
|
6458
|
+
pageCommon: [y, Ki],
|
|
6459
|
+
compCommon: [y, Ki]
|
|
6448
6460
|
},
|
|
6449
6461
|
events: [],
|
|
6450
6462
|
methods: [],
|
|
6451
6463
|
slots: [],
|
|
6452
6464
|
leaf: !0,
|
|
6453
|
-
spawn:
|
|
6465
|
+
spawn: pu
|
|
6454
6466
|
};
|
|
6455
6467
|
_($n);
|
|
6456
6468
|
const In = {
|
|
6457
6469
|
key: wo,
|
|
6458
6470
|
name: "x-runtime-lib.timelineItem",
|
|
6459
|
-
comp:
|
|
6471
|
+
comp: na,
|
|
6460
6472
|
props: {
|
|
6461
6473
|
pageCommon: [y],
|
|
6462
6474
|
compCommon: [y]
|
|
@@ -6466,45 +6478,45 @@ const In = {
|
|
|
6466
6478
|
slots: []
|
|
6467
6479
|
};
|
|
6468
6480
|
_(In);
|
|
6469
|
-
function
|
|
6481
|
+
function du(t, e) {
|
|
6470
6482
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
6471
6483
|
if (!o) {
|
|
6472
6484
|
console.error(`timelineV1/spawn prop tag not found, ${i}`);
|
|
6473
6485
|
return;
|
|
6474
6486
|
}
|
|
6475
|
-
const
|
|
6476
|
-
if (!
|
|
6487
|
+
const r = Sn.props[o];
|
|
6488
|
+
if (!r) {
|
|
6477
6489
|
console.error(`timelineV1/spawn props not found, ${i}`);
|
|
6478
6490
|
return;
|
|
6479
6491
|
}
|
|
6480
6492
|
const s = {};
|
|
6481
|
-
return P(s,
|
|
6493
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Sn.key, s.children = [
|
|
6482
6494
|
Qt(t, e, "timeline 1"),
|
|
6483
6495
|
Qt(t, e, "timeline 2"),
|
|
6484
6496
|
Qt(t, e, "timeline 3")
|
|
6485
6497
|
], s;
|
|
6486
6498
|
}
|
|
6487
6499
|
function Qt(t, e, i) {
|
|
6488
|
-
const o = `type=${t} subtype=${e}`,
|
|
6489
|
-
if (!
|
|
6500
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6501
|
+
if (!r) {
|
|
6490
6502
|
console.error(`timelineV1/spawnEntry prop tag not found, ${o}`);
|
|
6491
6503
|
return;
|
|
6492
6504
|
}
|
|
6493
|
-
const s = In.props[
|
|
6505
|
+
const s = In.props[r];
|
|
6494
6506
|
if (!s) {
|
|
6495
6507
|
console.error(`timelineV1/spawnEntry props not found, ${o}`);
|
|
6496
6508
|
return;
|
|
6497
6509
|
}
|
|
6498
6510
|
const a = {};
|
|
6499
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = In.key, a.children = [
|
|
6511
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = In.key, a.children = [fu(t, e, i)], a;
|
|
6500
6512
|
}
|
|
6501
|
-
function
|
|
6502
|
-
const o = `type=${t} subtype=${e}`,
|
|
6503
|
-
if (!
|
|
6513
|
+
function fu(t, e, i) {
|
|
6514
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6515
|
+
if (!r) {
|
|
6504
6516
|
console.error(`timelineV1/spawnText prop tag not found, ${o}`);
|
|
6505
6517
|
return;
|
|
6506
6518
|
}
|
|
6507
|
-
const s = ye.props[
|
|
6519
|
+
const s = ye.props[r];
|
|
6508
6520
|
if (!s) {
|
|
6509
6521
|
console.error(`timelineV1/spawnText props not found, ${o}`);
|
|
6510
6522
|
return;
|
|
@@ -6512,7 +6524,7 @@ function mu(t, e, i) {
|
|
|
6512
6524
|
const a = {};
|
|
6513
6525
|
return P(a, s), a.basic.id = T(16), a.basic.key = ye.key, a.settings.text = i, a;
|
|
6514
6526
|
}
|
|
6515
|
-
const
|
|
6527
|
+
const bu = B(j), yu = B(j), ji = {
|
|
6516
6528
|
key: "settings",
|
|
6517
6529
|
name: "x-runtime-lib.settings",
|
|
6518
6530
|
children: [
|
|
@@ -6560,7 +6572,7 @@ const pu = B(K), du = B(K), Ki = {
|
|
|
6560
6572
|
ui: "switch",
|
|
6561
6573
|
default: !1
|
|
6562
6574
|
},
|
|
6563
|
-
|
|
6575
|
+
bu
|
|
6564
6576
|
]
|
|
6565
6577
|
},
|
|
6566
6578
|
{
|
|
@@ -6586,28 +6598,28 @@ const pu = B(K), du = B(K), Ki = {
|
|
|
6586
6598
|
ui: "numInput",
|
|
6587
6599
|
default: 0
|
|
6588
6600
|
},
|
|
6589
|
-
|
|
6601
|
+
yu
|
|
6590
6602
|
]
|
|
6591
6603
|
}
|
|
6592
6604
|
]
|
|
6593
6605
|
}, Sn = {
|
|
6594
6606
|
key: Dt,
|
|
6595
6607
|
name: "x-runtime-lib.timeline",
|
|
6596
|
-
comp:
|
|
6608
|
+
comp: Ql,
|
|
6597
6609
|
props: {
|
|
6598
|
-
pageCommon: [y,
|
|
6599
|
-
compCommon: [y,
|
|
6610
|
+
pageCommon: [y, ji],
|
|
6611
|
+
compCommon: [y, ji]
|
|
6600
6612
|
},
|
|
6601
6613
|
events: [],
|
|
6602
6614
|
methods: [],
|
|
6603
6615
|
slots: [],
|
|
6604
|
-
spawn:
|
|
6616
|
+
spawn: du
|
|
6605
6617
|
};
|
|
6606
6618
|
_(Sn);
|
|
6607
6619
|
const Cn = {
|
|
6608
6620
|
key: Vo,
|
|
6609
6621
|
name: "x-runtime-lib.windowItem",
|
|
6610
|
-
comp:
|
|
6622
|
+
comp: ra,
|
|
6611
6623
|
props: {
|
|
6612
6624
|
pageCommon: [y],
|
|
6613
6625
|
compCommon: [y]
|
|
@@ -6617,59 +6629,59 @@ const Cn = {
|
|
|
6617
6629
|
slots: []
|
|
6618
6630
|
};
|
|
6619
6631
|
_(Cn);
|
|
6620
|
-
function
|
|
6632
|
+
function hu(t, e) {
|
|
6621
6633
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
6622
6634
|
if (!o) {
|
|
6623
6635
|
console.error(`windowV1/spawn prop tag not found, ${i}`);
|
|
6624
6636
|
return;
|
|
6625
6637
|
}
|
|
6626
|
-
const
|
|
6627
|
-
if (!
|
|
6638
|
+
const r = Tn.props[o];
|
|
6639
|
+
if (!r) {
|
|
6628
6640
|
console.error(`windowV1/spawn props not found, ${i}`);
|
|
6629
6641
|
return;
|
|
6630
6642
|
}
|
|
6631
6643
|
const s = {};
|
|
6632
|
-
return P(s,
|
|
6644
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Tn.key, s.children = [
|
|
6633
6645
|
en(t, e, "window 1"),
|
|
6634
6646
|
en(t, e, "window 2"),
|
|
6635
6647
|
en(t, e, "window 3")
|
|
6636
6648
|
], s;
|
|
6637
6649
|
}
|
|
6638
6650
|
function en(t, e, i) {
|
|
6639
|
-
const o = `type=${t} subtype=${e}`,
|
|
6640
|
-
if (!
|
|
6651
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6652
|
+
if (!r) {
|
|
6641
6653
|
console.error(`windowV1/spawnEntry prop tag not found, ${o}`);
|
|
6642
6654
|
return;
|
|
6643
6655
|
}
|
|
6644
|
-
const s = Cn.props[
|
|
6656
|
+
const s = Cn.props[r];
|
|
6645
6657
|
if (!s) {
|
|
6646
6658
|
console.error(`windowV1/spawnEntry props not found, ${o}`);
|
|
6647
6659
|
return;
|
|
6648
6660
|
}
|
|
6649
6661
|
const a = {};
|
|
6650
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = Cn.key, a.children = [
|
|
6662
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = Cn.key, a.children = [gu(t, e, i)], a;
|
|
6651
6663
|
}
|
|
6652
|
-
function
|
|
6653
|
-
const o = `type=${t} subtype=${e}`,
|
|
6654
|
-
if (!
|
|
6664
|
+
function gu(t, e, i) {
|
|
6665
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6666
|
+
if (!r) {
|
|
6655
6667
|
console.error(`windowV1/spawnFlexLayout prop tag not found, ${o}`);
|
|
6656
6668
|
return;
|
|
6657
6669
|
}
|
|
6658
|
-
const s = Le.props[
|
|
6670
|
+
const s = Le.props[r];
|
|
6659
6671
|
if (!s) {
|
|
6660
6672
|
console.error(`windowV1/spawnFlexLayout props not found, ${o}`);
|
|
6661
6673
|
return;
|
|
6662
6674
|
}
|
|
6663
6675
|
const a = {};
|
|
6664
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = Le.key, a.size.height = "200px", a.settings.mainAlign.xs = "center", a.settings.crossAlign.xs = "center", a.settings.backgroundColor.mode = "theme", a.settings.backgroundColor.theme = "background2", a.children = [
|
|
6676
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = Le.key, a.size.height = "200px", a.settings.mainAlign.xs = "center", a.settings.crossAlign.xs = "center", a.settings.backgroundColor.mode = "theme", a.settings.backgroundColor.theme = "background2", a.children = [xu(t, e, i)], a;
|
|
6665
6677
|
}
|
|
6666
|
-
function
|
|
6667
|
-
const o = `type=${t} subtype=${e}`,
|
|
6668
|
-
if (!
|
|
6678
|
+
function xu(t, e, i) {
|
|
6679
|
+
const o = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6680
|
+
if (!r) {
|
|
6669
6681
|
console.error(`windowV1/spawnText prop tag not found, ${o}`);
|
|
6670
6682
|
return;
|
|
6671
6683
|
}
|
|
6672
|
-
const s = ye.props[
|
|
6684
|
+
const s = ye.props[r];
|
|
6673
6685
|
if (!s) {
|
|
6674
6686
|
console.error(`windowV1/spawnText props not found, ${o}`);
|
|
6675
6687
|
return;
|
|
@@ -6728,7 +6740,7 @@ const Oi = {
|
|
|
6728
6740
|
}, Tn = {
|
|
6729
6741
|
key: Ft,
|
|
6730
6742
|
name: "x-runtime-lib.window",
|
|
6731
|
-
comp:
|
|
6743
|
+
comp: ia,
|
|
6732
6744
|
props: {
|
|
6733
6745
|
pageCommon: [y, Oi],
|
|
6734
6746
|
compCommon: [y, Oi]
|
|
@@ -6736,36 +6748,36 @@ const Oi = {
|
|
|
6736
6748
|
events: [],
|
|
6737
6749
|
methods: [],
|
|
6738
6750
|
slots: [],
|
|
6739
|
-
spawn:
|
|
6751
|
+
spawn: hu
|
|
6740
6752
|
};
|
|
6741
6753
|
_(Tn);
|
|
6742
|
-
const
|
|
6754
|
+
const vu = [
|
|
6743
6755
|
{ title: "x-runtime-lib.title", value: "title" },
|
|
6744
6756
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6745
6757
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6746
6758
|
{ title: "x-runtime-lib.center", value: "center" }
|
|
6747
|
-
],
|
|
6759
|
+
], ku = [
|
|
6748
6760
|
{ title: "x-runtime-lib.value", value: "value" },
|
|
6749
6761
|
{ title: "x-runtime-lib.category", value: "category" },
|
|
6750
6762
|
{ title: "x-runtime-lib.time", value: "time" },
|
|
6751
6763
|
{ title: "x-runtime-lib.log", value: "log" }
|
|
6752
|
-
],
|
|
6764
|
+
], _u = [
|
|
6753
6765
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6754
6766
|
{ title: "x-runtime-lib.solid", value: "solid" },
|
|
6755
6767
|
{ title: "x-runtime-lib.dashed", value: "dashed" },
|
|
6756
6768
|
{ title: "x-runtime-lib.dotted", value: "dotted" }
|
|
6757
|
-
],
|
|
6769
|
+
], wu = [
|
|
6758
6770
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6759
6771
|
{ title: "x-runtime-lib.theme", value: "theme" },
|
|
6760
6772
|
{ title: "x-runtime-lib.custom", value: "custom" }
|
|
6761
|
-
],
|
|
6773
|
+
], Vu = [
|
|
6762
6774
|
{ title: "x-runtime-lib.default", value: "default" },
|
|
6763
6775
|
{ title: "x-runtime-lib.comfortable", value: "comfortable" },
|
|
6764
6776
|
{ title: "x-runtime-lib.compact", value: "compact" }
|
|
6765
|
-
],
|
|
6777
|
+
], $u = [
|
|
6766
6778
|
{ title: "x-runtime-lib.horizontal", value: "horizontal" },
|
|
6767
6779
|
{ title: "x-runtime-lib.vertical", value: "vertical" }
|
|
6768
|
-
],
|
|
6780
|
+
], Iu = [
|
|
6769
6781
|
{ title: "x-runtime-lib.underlined", value: "underlined" },
|
|
6770
6782
|
{ title: "x-runtime-lib.outlined", value: "outlined" },
|
|
6771
6783
|
{ title: "x-runtime-lib.filled", value: "filled" },
|
|
@@ -6773,20 +6785,20 @@ const hu = [
|
|
|
6773
6785
|
{ title: "x-runtime-lib.soloInverted", value: "solo-inverted" },
|
|
6774
6786
|
{ title: "x-runtime-lib.soloFilled", value: "solo-filled" },
|
|
6775
6787
|
{ title: "x-runtime-lib.plain", value: "plain" }
|
|
6776
|
-
],
|
|
6788
|
+
], Su = [
|
|
6777
6789
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6778
6790
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6779
6791
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6780
6792
|
{ title: "x-runtime-lib.center", value: "center" },
|
|
6781
6793
|
{ title: "x-runtime-lib.baseline", value: "baseline" },
|
|
6782
6794
|
{ title: "x-runtime-lib.stretch", value: "stretch" }
|
|
6783
|
-
],
|
|
6795
|
+
], Cu = [
|
|
6784
6796
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6785
6797
|
{ title: "x-runtime-lib.row", value: "row" },
|
|
6786
6798
|
{ title: "x-runtime-lib.rowReverse", value: "rowReverse" },
|
|
6787
6799
|
{ title: "x-runtime-lib.column", value: "column" },
|
|
6788
6800
|
{ title: "x-runtime-lib.columnReverse", value: "columnReverse" }
|
|
6789
|
-
],
|
|
6801
|
+
], Tu = [
|
|
6790
6802
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6791
6803
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6792
6804
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
@@ -6794,12 +6806,12 @@ const hu = [
|
|
|
6794
6806
|
{ title: "x-runtime-lib.spaceBetween", value: "spaceBetween" },
|
|
6795
6807
|
{ title: "x-runtime-lib.spaceAround", value: "spaceAround" },
|
|
6796
6808
|
{ title: "x-runtime-lib.spaceEvenly", value: "spaceEvenly" }
|
|
6797
|
-
],
|
|
6809
|
+
], Pu = [
|
|
6798
6810
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6799
6811
|
{ title: "x-runtime-lib.no", value: "no" },
|
|
6800
6812
|
{ title: "x-runtime-lib.yes", value: "yes" },
|
|
6801
6813
|
{ title: "x-runtime-lib.reverse", value: "reverse" }
|
|
6802
|
-
],
|
|
6814
|
+
], zu = [
|
|
6803
6815
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6804
6816
|
{ title: "x-runtime-lib.black", value: "black" },
|
|
6805
6817
|
{ title: "x-runtime-lib.bold", value: "bold" },
|
|
@@ -6807,24 +6819,24 @@ const hu = [
|
|
|
6807
6819
|
{ title: "x-runtime-lib.regular", value: "regular" },
|
|
6808
6820
|
{ title: "x-runtime-lib.light", value: "light" },
|
|
6809
6821
|
{ title: "x-runtime-lib.thin", value: "thin" }
|
|
6810
|
-
],
|
|
6822
|
+
], Au = [
|
|
6811
6823
|
{ title: "x-runtime-lib.elevated", value: "elevated" },
|
|
6812
6824
|
{ title: "x-runtime-lib.flat", value: "flat" },
|
|
6813
6825
|
{ title: "x-runtime-lib.tonal", value: "tonal" },
|
|
6814
6826
|
{ title: "x-runtime-lib.outlined", value: "outlined" },
|
|
6815
6827
|
{ title: "x-runtime-lib.text", value: "text" },
|
|
6816
6828
|
{ title: "x-runtime-lib.plain", value: "plain" }
|
|
6817
|
-
],
|
|
6829
|
+
], Lu = [
|
|
6818
6830
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6819
6831
|
{ title: "x-runtime-lib.show", value: "show" },
|
|
6820
6832
|
{ title: "x-runtime-lib.always", value: "always" }
|
|
6821
|
-
],
|
|
6833
|
+
], Bu = [
|
|
6822
6834
|
{ title: "x-runtime-lib.xSmall", value: "x-small" },
|
|
6823
6835
|
{ title: "x-runtime-lib.small", value: "small" },
|
|
6824
6836
|
{ title: "x-runtime-lib.default", value: "default" },
|
|
6825
6837
|
{ title: "x-runtime-lib.large", value: "large" },
|
|
6826
6838
|
{ title: "x-runtime-lib.xLarge", value: "x-large" }
|
|
6827
|
-
],
|
|
6839
|
+
], Wu = [
|
|
6828
6840
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6829
6841
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6830
6842
|
{ title: "x-runtime-lib.center", value: "center" },
|
|
@@ -6832,18 +6844,18 @@ const hu = [
|
|
|
6832
6844
|
{ title: "x-runtime-lib.justify", value: "justify" },
|
|
6833
6845
|
{ title: "x-runtime-lib.left", value: "left" },
|
|
6834
6846
|
{ title: "x-runtime-lib.right", value: "right" }
|
|
6835
|
-
],
|
|
6847
|
+
], Eu = [
|
|
6836
6848
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6837
6849
|
{ title: "x-runtime-lib.none", value: "none" },
|
|
6838
6850
|
{ title: "x-runtime-lib.overline", value: "overline" },
|
|
6839
6851
|
{ title: "x-runtime-lib.underline", value: "underline" },
|
|
6840
6852
|
{ title: "x-runtime-lib.lineThrough", value: "line-through" }
|
|
6841
|
-
],
|
|
6853
|
+
], Nu = [
|
|
6842
6854
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6843
6855
|
{ title: "x-runtime-lib.high", value: "high" },
|
|
6844
6856
|
{ title: "x-runtime-lib.medium", value: "medium" },
|
|
6845
6857
|
{ title: "x-runtime-lib.disabled", value: "disabled" }
|
|
6846
|
-
],
|
|
6858
|
+
], Mu = [
|
|
6847
6859
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6848
6860
|
{ title: "x-runtime-lib.h1", value: "h1" },
|
|
6849
6861
|
{ title: "x-runtime-lib.h2", value: "h2" },
|
|
@@ -6858,7 +6870,7 @@ const hu = [
|
|
|
6858
6870
|
{ title: "x-runtime-lib.button", value: "button" },
|
|
6859
6871
|
{ title: "x-runtime-lib.caption", value: "caption" },
|
|
6860
6872
|
{ title: "x-runtime-lib.overline", value: "overline" }
|
|
6861
|
-
],
|
|
6873
|
+
], Ru = [
|
|
6862
6874
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6863
6875
|
{ title: "x-runtime-lib.primary", value: "primary" },
|
|
6864
6876
|
{ title: "x-runtime-lib.secondary", value: "secondary" },
|
|
@@ -6869,53 +6881,53 @@ const hu = [
|
|
|
6869
6881
|
{ title: "x-runtime-lib.background0", value: "background0" },
|
|
6870
6882
|
{ title: "x-runtime-lib.background1", value: "background1" },
|
|
6871
6883
|
{ title: "x-runtime-lib.background2", value: "background2" }
|
|
6872
|
-
],
|
|
6884
|
+
], Du = [
|
|
6873
6885
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6874
6886
|
{ title: "x-runtime-lib.show", value: "show" },
|
|
6875
6887
|
{ title: "x-runtime-lib.always", value: "always" }
|
|
6876
|
-
],
|
|
6888
|
+
], Fu = [
|
|
6877
6889
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6878
6890
|
{ title: "x-runtime-lib.center", value: "center" }
|
|
6879
|
-
],
|
|
6891
|
+
], Gu = [
|
|
6880
6892
|
{ title: "x-runtime-lib.horizontal", value: "horizontal" },
|
|
6881
6893
|
{ title: "x-runtime-lib.vertical", value: "vertical" }
|
|
6882
|
-
],
|
|
6894
|
+
], Hu = [
|
|
6883
6895
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6884
6896
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6885
6897
|
{ title: "x-runtime-lib.start", value: "start" }
|
|
6886
|
-
],
|
|
6898
|
+
], Ku = [
|
|
6887
6899
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6888
6900
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6889
6901
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6890
6902
|
{ title: "x-runtime-lib.both", value: "both" }
|
|
6891
|
-
],
|
|
6903
|
+
], ju = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6892
6904
|
__proto__: null,
|
|
6893
|
-
alignTabsItemsV1:
|
|
6894
|
-
axisTypeItemsV1:
|
|
6895
|
-
borderStyleItemsV1:
|
|
6896
|
-
colorModeItemsV1:
|
|
6897
|
-
densityItemsV1:
|
|
6898
|
-
directionItemsV1:
|
|
6899
|
-
fieldVariantItemsV1:
|
|
6900
|
-
flexCrossAlignItemsV1:
|
|
6901
|
-
flexDirectionItemsV1:
|
|
6902
|
-
flexMainAlignItemsV1:
|
|
6903
|
-
flexWrapItemsV1:
|
|
6904
|
-
fontWeightItemsV1:
|
|
6905
|
-
sheetVariantItemsV1:
|
|
6906
|
-
showTicksItemsV1:
|
|
6907
|
-
sizeItemsV1:
|
|
6908
|
-
textAlignItemsV1:
|
|
6909
|
-
textDecorationItemsV1:
|
|
6910
|
-
textEmphasisItemsV1:
|
|
6911
|
-
textStyleItemsV1:
|
|
6912
|
-
themeColorItemsV1:
|
|
6913
|
-
thumbLabelItemsV1:
|
|
6914
|
-
timelineAlignItemsV1:
|
|
6915
|
-
timelineDirectionItemsV1:
|
|
6916
|
-
timelineSideItemsV1:
|
|
6917
|
-
timelineTruncateLineItemsV1:
|
|
6918
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6905
|
+
alignTabsItemsV1: vu,
|
|
6906
|
+
axisTypeItemsV1: ku,
|
|
6907
|
+
borderStyleItemsV1: _u,
|
|
6908
|
+
colorModeItemsV1: wu,
|
|
6909
|
+
densityItemsV1: Vu,
|
|
6910
|
+
directionItemsV1: $u,
|
|
6911
|
+
fieldVariantItemsV1: Iu,
|
|
6912
|
+
flexCrossAlignItemsV1: Su,
|
|
6913
|
+
flexDirectionItemsV1: Cu,
|
|
6914
|
+
flexMainAlignItemsV1: Tu,
|
|
6915
|
+
flexWrapItemsV1: Pu,
|
|
6916
|
+
fontWeightItemsV1: zu,
|
|
6917
|
+
sheetVariantItemsV1: Au,
|
|
6918
|
+
showTicksItemsV1: Lu,
|
|
6919
|
+
sizeItemsV1: Bu,
|
|
6920
|
+
textAlignItemsV1: Wu,
|
|
6921
|
+
textDecorationItemsV1: Eu,
|
|
6922
|
+
textEmphasisItemsV1: Nu,
|
|
6923
|
+
textStyleItemsV1: Mu,
|
|
6924
|
+
themeColorItemsV1: Ru,
|
|
6925
|
+
thumbLabelItemsV1: Du,
|
|
6926
|
+
timelineAlignItemsV1: Fu,
|
|
6927
|
+
timelineDirectionItemsV1: Gu,
|
|
6928
|
+
timelineSideItemsV1: Hu,
|
|
6929
|
+
timelineTruncateLineItemsV1: Ku
|
|
6930
|
+
}, Symbol.toStringTag, { value: "Module" })), Ou = [
|
|
6919
6931
|
{
|
|
6920
6932
|
title: "x-runtime-lib.notSet",
|
|
6921
6933
|
value: "",
|
|
@@ -6955,7 +6967,7 @@ const hu = [
|
|
|
6955
6967
|
max: 1 / 0,
|
|
6956
6968
|
step: 1
|
|
6957
6969
|
}
|
|
6958
|
-
],
|
|
6970
|
+
], Uu = [
|
|
6959
6971
|
{
|
|
6960
6972
|
title: "x-runtime-lib.notSet",
|
|
6961
6973
|
value: "",
|
|
@@ -6977,7 +6989,7 @@ const hu = [
|
|
|
6977
6989
|
validator: (t) => t === "right",
|
|
6978
6990
|
default: "right"
|
|
6979
6991
|
}
|
|
6980
|
-
],
|
|
6992
|
+
], Xu = [
|
|
6981
6993
|
{
|
|
6982
6994
|
title: "x-runtime-lib.notSet",
|
|
6983
6995
|
value: "",
|
|
@@ -7007,7 +7019,7 @@ const hu = [
|
|
|
7007
7019
|
precision: 6,
|
|
7008
7020
|
default: "0%"
|
|
7009
7021
|
}
|
|
7010
|
-
],
|
|
7022
|
+
], Yu = [
|
|
7011
7023
|
{
|
|
7012
7024
|
title: "x-runtime-lib.notSet",
|
|
7013
7025
|
value: "",
|
|
@@ -7032,7 +7044,7 @@ const hu = [
|
|
|
7032
7044
|
min: 0,
|
|
7033
7045
|
default: "0%"
|
|
7034
7046
|
}
|
|
7035
|
-
],
|
|
7047
|
+
], Ju = [
|
|
7036
7048
|
{
|
|
7037
7049
|
title: "x-runtime-lib.notSet",
|
|
7038
7050
|
value: "",
|
|
@@ -7057,7 +7069,7 @@ const hu = [
|
|
|
7057
7069
|
min: 0,
|
|
7058
7070
|
default: "0%"
|
|
7059
7071
|
}
|
|
7060
|
-
],
|
|
7072
|
+
], Zu = [
|
|
7061
7073
|
{
|
|
7062
7074
|
title: "x-runtime-lib.notSet",
|
|
7063
7075
|
value: "",
|
|
@@ -7086,7 +7098,7 @@ const hu = [
|
|
|
7086
7098
|
validator: (t) => t === "end",
|
|
7087
7099
|
default: "end"
|
|
7088
7100
|
}
|
|
7089
|
-
],
|
|
7101
|
+
], qu = [
|
|
7090
7102
|
{
|
|
7091
7103
|
title: "x-runtime-lib.notSet",
|
|
7092
7104
|
value: "",
|
|
@@ -7108,16 +7120,16 @@ const hu = [
|
|
|
7108
7120
|
validator: (t) => t === "bottom",
|
|
7109
7121
|
default: "bottom"
|
|
7110
7122
|
}
|
|
7111
|
-
],
|
|
7123
|
+
], Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7112
7124
|
__proto__: null,
|
|
7113
|
-
borderWidthTypesV1:
|
|
7114
|
-
leftRightTypesV1:
|
|
7115
|
-
marginTypesV1:
|
|
7116
|
-
paddingTypesV1:
|
|
7117
|
-
sizeTypesV1:
|
|
7118
|
-
tableColumnAlignTypesV1:
|
|
7119
|
-
topBottomTypesV1:
|
|
7120
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
7125
|
+
borderWidthTypesV1: Ou,
|
|
7126
|
+
leftRightTypesV1: Uu,
|
|
7127
|
+
marginTypesV1: Xu,
|
|
7128
|
+
paddingTypesV1: Yu,
|
|
7129
|
+
sizeTypesV1: Ju,
|
|
7130
|
+
tableColumnAlignTypesV1: Zu,
|
|
7131
|
+
topBottomTypesV1: qu
|
|
7132
|
+
}, Symbol.toStringTag, { value: "Module" })), ec = [
|
|
7121
7133
|
{
|
|
7122
7134
|
key: "containment",
|
|
7123
7135
|
name: "x-runtime-lib.containment",
|
|
@@ -7191,7 +7203,7 @@ const hu = [
|
|
|
7191
7203
|
name: "x-runtime-lib.dynamic",
|
|
7192
7204
|
items: [De, Mn, Rn]
|
|
7193
7205
|
}
|
|
7194
|
-
],
|
|
7206
|
+
], tc = [
|
|
7195
7207
|
{
|
|
7196
7208
|
key: "objects",
|
|
7197
7209
|
name: "x-runtime-lib.objects",
|
|
@@ -7222,7 +7234,7 @@ const hu = [
|
|
|
7222
7234
|
name: "x-runtime-lib.controls",
|
|
7223
7235
|
items: [_t, gt, yt]
|
|
7224
7236
|
}
|
|
7225
|
-
],
|
|
7237
|
+
], nc = [
|
|
7226
7238
|
{
|
|
7227
7239
|
key: "containment",
|
|
7228
7240
|
name: "x-runtime-lib.containment",
|
|
@@ -7296,7 +7308,7 @@ const hu = [
|
|
|
7296
7308
|
name: "x-runtime-lib.dynamic",
|
|
7297
7309
|
items: [De, Mn, Rn]
|
|
7298
7310
|
}
|
|
7299
|
-
],
|
|
7311
|
+
], ic = [
|
|
7300
7312
|
{
|
|
7301
7313
|
key: "objects",
|
|
7302
7314
|
name: "x-runtime-lib.objects",
|
|
@@ -7327,12 +7339,12 @@ const hu = [
|
|
|
7327
7339
|
name: "x-runtime-lib.controls",
|
|
7328
7340
|
items: [_t, gt, yt]
|
|
7329
7341
|
}
|
|
7330
|
-
],
|
|
7342
|
+
], oc = {
|
|
7331
7343
|
version: "v1",
|
|
7332
7344
|
globalityKey: tn,
|
|
7333
7345
|
refKey: De,
|
|
7334
|
-
items: { ...
|
|
7335
|
-
types: { ...
|
|
7346
|
+
items: { ...ju },
|
|
7347
|
+
types: { ...Qu },
|
|
7336
7348
|
elements: /* @__PURE__ */ new Set([
|
|
7337
7349
|
Ue,
|
|
7338
7350
|
Xe,
|
|
@@ -7400,13 +7412,13 @@ const hu = [
|
|
|
7400
7412
|
Vo
|
|
7401
7413
|
]),
|
|
7402
7414
|
groups: {
|
|
7403
|
-
pageCommon:
|
|
7404
|
-
pageScene:
|
|
7405
|
-
compCommon:
|
|
7406
|
-
compScene:
|
|
7415
|
+
pageCommon: nc,
|
|
7416
|
+
pageScene: ic,
|
|
7417
|
+
compCommon: ec,
|
|
7418
|
+
compScene: tc
|
|
7407
7419
|
}
|
|
7408
7420
|
}, $o = {
|
|
7409
|
-
v1:
|
|
7421
|
+
v1: oc
|
|
7410
7422
|
};
|
|
7411
7423
|
function A(t, e) {
|
|
7412
7424
|
if (t === "page") {
|
|
@@ -7429,20 +7441,20 @@ function Ui(t, e) {
|
|
|
7429
7441
|
}
|
|
7430
7442
|
}
|
|
7431
7443
|
function P(t, e) {
|
|
7432
|
-
function i(o,
|
|
7433
|
-
if (
|
|
7434
|
-
if (
|
|
7444
|
+
function i(o, r) {
|
|
7445
|
+
if (r.ui) {
|
|
7446
|
+
if (r.ui === "strInput" && r.static)
|
|
7435
7447
|
return;
|
|
7436
|
-
o[
|
|
7448
|
+
o[r.key] = Ui(r);
|
|
7437
7449
|
} else
|
|
7438
|
-
|
|
7439
|
-
o[
|
|
7450
|
+
r.array ? o[r.key] = Ui(r) : r.children.forEach((s) => {
|
|
7451
|
+
o[r.key] || (o[r.key] = {}), i(o[r.key], s);
|
|
7440
7452
|
});
|
|
7441
7453
|
}
|
|
7442
7454
|
e.forEach((o) => i(t, o));
|
|
7443
7455
|
}
|
|
7444
|
-
function Fc(t, e, i, o,
|
|
7445
|
-
const s = `type=${t} subtype=${e} version=${i} ref=${o} keyOrRefid=${
|
|
7456
|
+
function Fc(t, e, i, o, r) {
|
|
7457
|
+
const s = `type=${t} subtype=${e} version=${i} ref=${o} keyOrRefid=${r}`, a = A(t, e);
|
|
7446
7458
|
if (!a) {
|
|
7447
7459
|
console.error(`spawnNode prop tag not found, ${s}`);
|
|
7448
7460
|
return;
|
|
@@ -7453,7 +7465,7 @@ function Fc(t, e, i, o, l) {
|
|
|
7453
7465
|
return;
|
|
7454
7466
|
}
|
|
7455
7467
|
if (o) {
|
|
7456
|
-
const d = p.refKey, b =
|
|
7468
|
+
const d = p.refKey, b = r;
|
|
7457
7469
|
if (!p.elements.has(d)) {
|
|
7458
7470
|
console.error(`spawnNode [ref] element not found in pkg, ${s}`);
|
|
7459
7471
|
return;
|
|
@@ -7478,7 +7490,7 @@ function Fc(t, e, i, o, l) {
|
|
|
7478
7490
|
comp: b
|
|
7479
7491
|
}, c;
|
|
7480
7492
|
} else {
|
|
7481
|
-
const d =
|
|
7493
|
+
const d = r;
|
|
7482
7494
|
if (!p.elements.has(d)) {
|
|
7483
7495
|
console.error(`spawnNode [key] element not found in pkg, ${s}`);
|
|
7484
7496
|
return;
|
|
@@ -7511,21 +7523,21 @@ function Gc(t, e) {
|
|
|
7511
7523
|
if (o.basic.id === e)
|
|
7512
7524
|
return o;
|
|
7513
7525
|
if (o.children)
|
|
7514
|
-
for (let
|
|
7515
|
-
const s = i(o.children[
|
|
7526
|
+
for (let r = 0; r < o.children.length; r++) {
|
|
7527
|
+
const s = i(o.children[r]);
|
|
7516
7528
|
if (s)
|
|
7517
7529
|
return s;
|
|
7518
7530
|
}
|
|
7519
7531
|
}
|
|
7520
7532
|
for (let o = 0; o < t.length; o++) {
|
|
7521
|
-
const
|
|
7522
|
-
if (
|
|
7523
|
-
return
|
|
7533
|
+
const r = i(t[o]);
|
|
7534
|
+
if (r)
|
|
7535
|
+
return r;
|
|
7524
7536
|
}
|
|
7525
7537
|
}
|
|
7526
|
-
function
|
|
7538
|
+
function sc(t) {
|
|
7527
7539
|
function e(o) {
|
|
7528
|
-
o.basic.id = T(16), o.children?.forEach((
|
|
7540
|
+
o.basic.id = T(16), o.children?.forEach((r) => e(r));
|
|
7529
7541
|
}
|
|
7530
7542
|
const i = B(t);
|
|
7531
7543
|
return e(i), i;
|
|
@@ -7533,20 +7545,20 @@ function nc(t) {
|
|
|
7533
7545
|
function Hc(t) {
|
|
7534
7546
|
const e = [];
|
|
7535
7547
|
return t.forEach((i) => {
|
|
7536
|
-
e.push(
|
|
7548
|
+
e.push(sc(i));
|
|
7537
7549
|
}), e;
|
|
7538
7550
|
}
|
|
7539
7551
|
const Io = "runtimeOrg", So = "runtimeEnv", Co = "runtimeMode", To = "runtimeDevice", Po = "runtimeDark", zo = "runtimeType", Ao = "runtimeData", Lo = "runtimeDepends", Bo = "runtimeSandbox";
|
|
7540
|
-
function
|
|
7552
|
+
function Kc(t) {
|
|
7541
7553
|
se(Io, t);
|
|
7542
7554
|
}
|
|
7543
|
-
function
|
|
7555
|
+
function rc() {
|
|
7544
7556
|
return oe(Io);
|
|
7545
7557
|
}
|
|
7546
|
-
function
|
|
7558
|
+
function jc(t) {
|
|
7547
7559
|
se(So, t);
|
|
7548
7560
|
}
|
|
7549
|
-
function
|
|
7561
|
+
function lc() {
|
|
7550
7562
|
return oe(So);
|
|
7551
7563
|
}
|
|
7552
7564
|
function Oc(t) {
|
|
@@ -7582,10 +7594,10 @@ function de() {
|
|
|
7582
7594
|
function Zc(t) {
|
|
7583
7595
|
se(Lo, zn(t));
|
|
7584
7596
|
}
|
|
7585
|
-
function
|
|
7597
|
+
function ac() {
|
|
7586
7598
|
return oe(Lo);
|
|
7587
7599
|
}
|
|
7588
|
-
function
|
|
7600
|
+
function uc(t) {
|
|
7589
7601
|
se(Bo, t);
|
|
7590
7602
|
}
|
|
7591
7603
|
function Ee() {
|
|
@@ -7595,7 +7607,7 @@ function Se(t) {
|
|
|
7595
7607
|
const e = [t.type];
|
|
7596
7608
|
return t.type === "elementProp" ? e.push(t.nodeId, t.propKeys) : t.type === "customProp" || t.type === "adaptSlotProp" ? e.push(t.propId) : t.type === "customState" ? e.push(t.stateId) : console.assert(!1), e.join("@");
|
|
7597
7609
|
}
|
|
7598
|
-
function Me(t, e, i, o,
|
|
7610
|
+
function Me(t, e, i, o, r) {
|
|
7599
7611
|
const { watchEffect: s, bind: a } = e;
|
|
7600
7612
|
if (s[i])
|
|
7601
7613
|
for (const p of s[i]) {
|
|
@@ -7615,12 +7627,12 @@ function Me(t, e, i, o, l) {
|
|
|
7615
7627
|
if (u.subKeys) {
|
|
7616
7628
|
if (!ne(
|
|
7617
7629
|
ke(o, u.subKeys),
|
|
7618
|
-
ke(
|
|
7630
|
+
ke(r, u.subKeys)
|
|
7619
7631
|
)) {
|
|
7620
7632
|
b = u;
|
|
7621
7633
|
break;
|
|
7622
7634
|
}
|
|
7623
|
-
} else if (!ne(o,
|
|
7635
|
+
} else if (!ne(o, r)) {
|
|
7624
7636
|
b = u;
|
|
7625
7637
|
break;
|
|
7626
7638
|
}
|
|
@@ -7673,7 +7685,7 @@ function Me(t, e, i, o, l) {
|
|
|
7673
7685
|
}
|
|
7674
7686
|
}
|
|
7675
7687
|
}
|
|
7676
|
-
function
|
|
7688
|
+
function cc(t, e) {
|
|
7677
7689
|
function i(m) {
|
|
7678
7690
|
const u = t.pseudoToNative(m), c = [], f = u.split(".");
|
|
7679
7691
|
for (let h = 0; h < f.length; h++) {
|
|
@@ -7696,7 +7708,7 @@ function lc(t, e) {
|
|
|
7696
7708
|
return t.nativeToPseudo({});
|
|
7697
7709
|
}
|
|
7698
7710
|
}
|
|
7699
|
-
function
|
|
7711
|
+
function r(m) {
|
|
7700
7712
|
const u = t.pseudoToNative(m), c = JSON.stringify(u);
|
|
7701
7713
|
return t.nativeToPseudo(c);
|
|
7702
7714
|
}
|
|
@@ -7736,7 +7748,7 @@ function lc(t, e) {
|
|
|
7736
7748
|
), t.setProperty(
|
|
7737
7749
|
e,
|
|
7738
7750
|
"__jsonStringifyV1__",
|
|
7739
|
-
t.createNativeFunction(
|
|
7751
|
+
t.createNativeFunction(r)
|
|
7740
7752
|
), t.setProperty(
|
|
7741
7753
|
e,
|
|
7742
7754
|
"__consoleLogV1__",
|
|
@@ -7759,7 +7771,7 @@ function lc(t, e) {
|
|
|
7759
7771
|
t.createAsyncFunction(b)
|
|
7760
7772
|
);
|
|
7761
7773
|
}
|
|
7762
|
-
const Wo =
|
|
7774
|
+
const Wo = Ko({
|
|
7763
7775
|
baseUrl: "http://localhost/computebase/",
|
|
7764
7776
|
onError: (t) => {
|
|
7765
7777
|
const { i18n: e } = be;
|
|
@@ -7767,14 +7779,14 @@ const Wo = jo({
|
|
|
7767
7779
|
}
|
|
7768
7780
|
});
|
|
7769
7781
|
window.API_URL && (Wo.defaults.baseURL = window.API_URL + "/computebase/");
|
|
7770
|
-
function
|
|
7782
|
+
function mc(t) {
|
|
7771
7783
|
return Wo.post("callFunc", t);
|
|
7772
7784
|
}
|
|
7773
|
-
function
|
|
7774
|
-
async function i(o,
|
|
7775
|
-
const b = t.pseudoToNative(o), m = t.pseudoToNative(
|
|
7785
|
+
function pc(t, e) {
|
|
7786
|
+
async function i(o, r, s, a, p, d) {
|
|
7787
|
+
const b = t.pseudoToNative(o), m = t.pseudoToNative(r), u = t.pseudoToNative(s), c = t.pseudoToNative(a), f = t.pseudoToNative(p);
|
|
7776
7788
|
try {
|
|
7777
|
-
const h = JSON.stringify(u), { strOutputs: x } = await
|
|
7789
|
+
const h = JSON.stringify(u), { strOutputs: x } = await mc({
|
|
7778
7790
|
spaceId: b,
|
|
7779
7791
|
id: m,
|
|
7780
7792
|
strInputs: h,
|
|
@@ -7791,7 +7803,7 @@ function uc(t, e) {
|
|
|
7791
7803
|
t.createAsyncFunction(i)
|
|
7792
7804
|
);
|
|
7793
7805
|
}
|
|
7794
|
-
function
|
|
7806
|
+
function dc(t, e, i) {
|
|
7795
7807
|
function o(u, c, f) {
|
|
7796
7808
|
let h;
|
|
7797
7809
|
const x = e.pseudoToNative(u);
|
|
@@ -7808,7 +7820,7 @@ function cc(t, e, i) {
|
|
|
7808
7820
|
console.assert(!1);
|
|
7809
7821
|
return e.nativeToPseudo(h);
|
|
7810
7822
|
}
|
|
7811
|
-
function
|
|
7823
|
+
function r(u, c, f, h) {
|
|
7812
7824
|
const x = e.pseudoToNative(u);
|
|
7813
7825
|
if (x === "elementProp") {
|
|
7814
7826
|
const g = e.pseudoToNative(c), w = e.pseudoToNative(f), C = e.pseudoToNative(h);
|
|
@@ -7851,7 +7863,7 @@ function cc(t, e, i) {
|
|
|
7851
7863
|
}
|
|
7852
7864
|
function b(u, c, f) {
|
|
7853
7865
|
const h = e.pseudoToNative(u), x = e.pseudoToNative(c);
|
|
7854
|
-
|
|
7866
|
+
jo({ title: h, text: x }).then((g) => {
|
|
7855
7867
|
f(e.nativeToPseudo(g)), e.run();
|
|
7856
7868
|
});
|
|
7857
7869
|
}
|
|
@@ -7868,7 +7880,7 @@ function cc(t, e, i) {
|
|
|
7868
7880
|
), e.setProperty(
|
|
7869
7881
|
i,
|
|
7870
7882
|
"__setPropV1__",
|
|
7871
|
-
e.createNativeFunction(
|
|
7883
|
+
e.createNativeFunction(r)
|
|
7872
7884
|
), e.setProperty(
|
|
7873
7885
|
i,
|
|
7874
7886
|
"__callMethodV1__",
|
|
@@ -7895,10 +7907,10 @@ function cc(t, e, i) {
|
|
|
7895
7907
|
e.createAsyncFunction(m)
|
|
7896
7908
|
);
|
|
7897
7909
|
}
|
|
7898
|
-
function
|
|
7899
|
-
|
|
7910
|
+
function fc(t, e, i) {
|
|
7911
|
+
cc(e, i), pc(e, i), dc(t, e, i);
|
|
7900
7912
|
}
|
|
7901
|
-
const
|
|
7913
|
+
const bc = `
|
|
7902
7914
|
var __env__ = 'dev'
|
|
7903
7915
|
var __mode__ = 'editor'
|
|
7904
7916
|
|
|
@@ -7908,7 +7920,7 @@ function __getEnvV1__() {
|
|
|
7908
7920
|
|
|
7909
7921
|
var __pointerPosX__ = 0
|
|
7910
7922
|
var __pointerPosY__ = 0
|
|
7911
|
-
`,
|
|
7923
|
+
`, yc = `
|
|
7912
7924
|
var __events__ = {}
|
|
7913
7925
|
|
|
7914
7926
|
function __onEventV1__(id, callback) {
|
|
@@ -7945,7 +7957,7 @@ function __triggerEventV1__(id, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p1
|
|
|
7945
7957
|
callbacks[i](p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16)
|
|
7946
7958
|
}
|
|
7947
7959
|
}
|
|
7948
|
-
`,
|
|
7960
|
+
`, hc = `
|
|
7949
7961
|
var __timers__ = {}
|
|
7950
7962
|
var __currTimerId__ = 0
|
|
7951
7963
|
|
|
@@ -7987,21 +7999,21 @@ function __timeoutCallbackV1__(timerId) {
|
|
|
7987
7999
|
}
|
|
7988
8000
|
}
|
|
7989
8001
|
}
|
|
7990
|
-
`,
|
|
8002
|
+
`, gc = `
|
|
7991
8003
|
function __destroy__() {
|
|
7992
8004
|
__events__ = {}
|
|
7993
8005
|
__timers__ = {}
|
|
7994
8006
|
}
|
|
7995
|
-
`,
|
|
7996
|
-
class
|
|
8007
|
+
`, xc = bc + yc + hc + gc;
|
|
8008
|
+
class vc {
|
|
7997
8009
|
org;
|
|
7998
8010
|
env;
|
|
7999
8011
|
mode;
|
|
8000
8012
|
type;
|
|
8001
8013
|
eventBus = cs();
|
|
8002
8014
|
hooks;
|
|
8003
|
-
constructor(e, i, o,
|
|
8004
|
-
this.org = e, this.env = i, this.mode = o, this.type =
|
|
8015
|
+
constructor(e, i, o, r, s) {
|
|
8016
|
+
this.org = e, this.env = i, this.mode = o, this.type = r, this.hooks = s;
|
|
8005
8017
|
}
|
|
8006
8018
|
//--------------------------
|
|
8007
8019
|
// 元素属性
|
|
@@ -8011,7 +8023,7 @@ class hc {
|
|
|
8011
8023
|
if (e) {
|
|
8012
8024
|
this.nodes = { globality: e.view };
|
|
8013
8025
|
const i = (o) => {
|
|
8014
|
-
this.nodes[o.basic.id] = o, o.children?.forEach((
|
|
8026
|
+
this.nodes[o.basic.id] = o, o.children?.forEach((r) => i(r));
|
|
8015
8027
|
};
|
|
8016
8028
|
e.view.nodes.forEach((o) => i(o));
|
|
8017
8029
|
} else
|
|
@@ -8029,12 +8041,12 @@ class hc {
|
|
|
8029
8041
|
return this.getElementPropInner(o, i);
|
|
8030
8042
|
}
|
|
8031
8043
|
setElementPropInner(e, i, o) {
|
|
8032
|
-
const
|
|
8033
|
-
ne(o,
|
|
8044
|
+
const r = ke(e, i);
|
|
8045
|
+
ne(o, r) || (ao(e, i, o), this.hooks?.onElementPropChange(e.basic.id, i, o, r));
|
|
8034
8046
|
}
|
|
8035
8047
|
setElementProp(e, i, o) {
|
|
8036
|
-
const
|
|
8037
|
-
if (!
|
|
8048
|
+
const r = this.nodes[e];
|
|
8049
|
+
if (!r) {
|
|
8038
8050
|
console.warn(
|
|
8039
8051
|
"Sandbox/setElementProp node not found",
|
|
8040
8052
|
e,
|
|
@@ -8043,7 +8055,7 @@ class hc {
|
|
|
8043
8055
|
);
|
|
8044
8056
|
return;
|
|
8045
8057
|
}
|
|
8046
|
-
this.setElementPropInner(
|
|
8058
|
+
this.setElementPropInner(r, i, o);
|
|
8047
8059
|
}
|
|
8048
8060
|
//--------------------------
|
|
8049
8061
|
// 自定义属性
|
|
@@ -8093,12 +8105,12 @@ class hc {
|
|
|
8093
8105
|
interpreter;
|
|
8094
8106
|
createInterpreter(e) {
|
|
8095
8107
|
this.interpreter = new ms(
|
|
8096
|
-
|
|
8108
|
+
xc,
|
|
8097
8109
|
(i, o) => {
|
|
8098
|
-
|
|
8110
|
+
fc(this, i, o);
|
|
8099
8111
|
}
|
|
8100
8112
|
), this.interpreter.appendCode(e), this.interpreter.run(), this.setVariable("__env__", this.env), this.setVariable("__mode__", this.mode), this.callFunction("__triggerEventV1__", [
|
|
8101
|
-
Ce("elementEvent", "
|
|
8113
|
+
Ce("elementEvent", "globality", "startup")
|
|
8102
8114
|
]);
|
|
8103
8115
|
}
|
|
8104
8116
|
destroyInterpreter() {
|
|
@@ -8127,12 +8139,12 @@ class hc {
|
|
|
8127
8139
|
if (i)
|
|
8128
8140
|
for (const s of i)
|
|
8129
8141
|
o.push(JSON.stringify(s));
|
|
8130
|
-
const
|
|
8131
|
-
console.log(
|
|
8142
|
+
const r = `${e}(${o.join(", ")});`;
|
|
8143
|
+
console.log(r), this.interpreter.appendCode(r), this.interpreter.run();
|
|
8132
8144
|
}
|
|
8133
8145
|
}
|
|
8134
|
-
function
|
|
8135
|
-
const e =
|
|
8146
|
+
function kc(t) {
|
|
8147
|
+
const e = rc(), i = lc(), o = G(), r = pe(), s = $e(), a = We(), p = (f, h, x, g) => {
|
|
8136
8148
|
if (!(o !== "runtime" && o !== "preview") && (u.callFunction("__triggerEventV1__", [
|
|
8137
8149
|
`elementPropChange@${f}@${h}`,
|
|
8138
8150
|
x,
|
|
@@ -8183,26 +8195,26 @@ function gc(t) {
|
|
|
8183
8195
|
h,
|
|
8184
8196
|
x
|
|
8185
8197
|
));
|
|
8186
|
-
}, u = new
|
|
8198
|
+
}, u = new vc(e, i, o, r, {
|
|
8187
8199
|
onElementPropChange: p,
|
|
8188
8200
|
onCustomPropChange: d,
|
|
8189
8201
|
onCustomStateChange: b,
|
|
8190
8202
|
onAdaptSlotPropChange: m
|
|
8191
8203
|
});
|
|
8192
|
-
|
|
8204
|
+
uc(u);
|
|
8193
8205
|
const c = () => {
|
|
8194
8206
|
o !== "runtime" && o !== "preview" || (u.destroyInterpreter(), u.syncNodes(t.value), u.resetCustomProps(), u.resetCustomStates(), u.resetAdaptSlotProps(), !(!t.value || !t.value.code.script) && u.createInterpreter(t.value.code.script));
|
|
8195
8207
|
};
|
|
8196
8208
|
c(), q(t, () => {
|
|
8197
8209
|
c();
|
|
8198
|
-
}),
|
|
8210
|
+
}), je(() => {
|
|
8199
8211
|
u.destroyInterpreter();
|
|
8200
8212
|
}), (o === "runtime" || o === "preview") && q(
|
|
8201
8213
|
s,
|
|
8202
8214
|
(f, h) => {
|
|
8203
8215
|
const x = Re(f.width), g = Re(h?.width ?? f.width);
|
|
8204
8216
|
u.callFunction("__triggerEventV1__", [
|
|
8205
|
-
Ce("elementEvent", "
|
|
8217
|
+
Ce("elementEvent", "globality", "screenSizeChange"),
|
|
8206
8218
|
x,
|
|
8207
8219
|
g
|
|
8208
8220
|
]);
|
|
@@ -8212,50 +8224,50 @@ function gc(t) {
|
|
|
8212
8224
|
a,
|
|
8213
8225
|
(f) => {
|
|
8214
8226
|
u.callFunction("__triggerEventV1__", [
|
|
8215
|
-
Ce("elementEvent", "
|
|
8227
|
+
Ce("elementEvent", "globality", "darkModeChange"),
|
|
8216
8228
|
f
|
|
8217
8229
|
]);
|
|
8218
8230
|
},
|
|
8219
8231
|
{ immediate: !0 }
|
|
8220
8232
|
);
|
|
8221
8233
|
}
|
|
8222
|
-
const
|
|
8234
|
+
const _c = (t, e, i) => {
|
|
8223
8235
|
const o = t[e];
|
|
8224
|
-
return o ? typeof o == "function" ? o() : Promise.resolve(o) : new Promise((
|
|
8236
|
+
return o ? typeof o == "function" ? o() : Promise.resolve(o) : new Promise((r, s) => {
|
|
8225
8237
|
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(s.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + e + (e.split("/").length !== i ? ". Note that variables only represent file names one level deep." : ""))));
|
|
8226
8238
|
});
|
|
8227
8239
|
};
|
|
8228
8240
|
async function qc(t) {
|
|
8229
|
-
return (await
|
|
8241
|
+
return (await _c(/* @__PURE__ */ Object.assign({ "./locales/en/index.ts": () => import("./i18n-en.escg6ifs.js"), "./locales/zhHans/index.ts": () => import("./i18n-zhHans.ht3um6fb.js") }), `./locales/${t}/index.ts`, 4)).default;
|
|
8230
8242
|
}
|
|
8231
8243
|
export {
|
|
8232
|
-
|
|
8233
|
-
|
|
8244
|
+
vc as Sandbox,
|
|
8245
|
+
wa as ambientLightV1,
|
|
8234
8246
|
Rc as badgeV1,
|
|
8235
8247
|
sn as barChartV1,
|
|
8236
|
-
|
|
8248
|
+
fc as bind,
|
|
8237
8249
|
nn as boxGeometryV1,
|
|
8238
8250
|
lo as breakpoints,
|
|
8239
|
-
|
|
8240
|
-
|
|
8251
|
+
La as btnGroupV1,
|
|
8252
|
+
Ba as btnToggleV1,
|
|
8241
8253
|
ln as btnV1,
|
|
8242
8254
|
Re as calcBreakpoint,
|
|
8243
8255
|
Ae as cardV1,
|
|
8244
|
-
|
|
8256
|
+
Ea as checkboxV1,
|
|
8245
8257
|
un as chipGroupV1,
|
|
8246
8258
|
an as chipV1,
|
|
8247
|
-
|
|
8248
|
-
|
|
8259
|
+
Ra as colorPickerV1,
|
|
8260
|
+
Da as comboboxV1,
|
|
8249
8261
|
ys as compTypes,
|
|
8250
8262
|
cn as containerV1,
|
|
8251
|
-
|
|
8252
|
-
|
|
8253
|
-
|
|
8254
|
-
|
|
8255
|
-
|
|
8263
|
+
Fa as dataTableV1,
|
|
8264
|
+
Ga as datePickerV1,
|
|
8265
|
+
Ha as dialogV1,
|
|
8266
|
+
Va as directionalLightV1,
|
|
8267
|
+
sc as duplicateNode,
|
|
8256
8268
|
Hc as duplicateNodes,
|
|
8257
8269
|
Te as elements,
|
|
8258
|
-
|
|
8270
|
+
Ac as ensureContext,
|
|
8259
8271
|
Dc as fileInputV1,
|
|
8260
8272
|
mn as flexLayoutEntryV1,
|
|
8261
8273
|
Le as flexLayoutV1,
|
|
@@ -8267,73 +8279,73 @@ export {
|
|
|
8267
8279
|
Gc as getNode,
|
|
8268
8280
|
Ui as getPropDefault,
|
|
8269
8281
|
A as getPropTag,
|
|
8270
|
-
|
|
8271
|
-
|
|
8272
|
-
|
|
8273
|
-
|
|
8282
|
+
zc as getTypeColor,
|
|
8283
|
+
Pa as globalityV1,
|
|
8284
|
+
Sa as groupV1,
|
|
8285
|
+
Ya as iconV1,
|
|
8274
8286
|
P as initProps,
|
|
8275
8287
|
We as injectDark,
|
|
8276
8288
|
de as injectData,
|
|
8277
|
-
|
|
8289
|
+
ac as injectDepends,
|
|
8278
8290
|
$e as injectDevice,
|
|
8279
|
-
|
|
8291
|
+
lc as injectEnv,
|
|
8280
8292
|
G as injectMode,
|
|
8281
|
-
|
|
8293
|
+
rc as injectOrg,
|
|
8282
8294
|
Ee as injectSandbox,
|
|
8283
8295
|
pe as injectType,
|
|
8284
|
-
|
|
8285
|
-
|
|
8296
|
+
ks as isLocaleOfEventKind,
|
|
8297
|
+
xs as isLocaleOfMethodKind,
|
|
8286
8298
|
hs as isLocaleOfPropertyKind,
|
|
8287
8299
|
An as isPercentStr,
|
|
8288
8300
|
Oe as isPixelStr,
|
|
8289
|
-
|
|
8301
|
+
fa as keyboardControlsV1,
|
|
8290
8302
|
rn as lineChartV1,
|
|
8291
8303
|
qc as loadLocaleMessageRuntime,
|
|
8292
8304
|
Ce as makeEventId,
|
|
8293
|
-
|
|
8294
|
-
|
|
8305
|
+
Bc as makeMethodId,
|
|
8306
|
+
Lc as makePropertyId,
|
|
8295
8307
|
Se as makeTriggerId,
|
|
8296
|
-
|
|
8297
|
-
|
|
8308
|
+
ba as mapControlsV1,
|
|
8309
|
+
Ja as menuV1,
|
|
8298
8310
|
Pe as meshBasicMaterialV1,
|
|
8299
8311
|
ze as meshV1,
|
|
8300
8312
|
bn as numberInputV1,
|
|
8301
|
-
|
|
8302
|
-
|
|
8313
|
+
ya as orbitControlsV1,
|
|
8314
|
+
ua as orthographicCameraV1,
|
|
8303
8315
|
bs as pageTypes,
|
|
8304
|
-
|
|
8316
|
+
qa as paginationV1,
|
|
8305
8317
|
Xt as parsePercentStr,
|
|
8306
8318
|
Wc as parsePixelStr,
|
|
8307
|
-
|
|
8319
|
+
ca as perspectiveCameraV1,
|
|
8308
8320
|
$o as pkgs,
|
|
8309
|
-
|
|
8321
|
+
$a as pointLightV1,
|
|
8310
8322
|
Xc as provideDark,
|
|
8311
8323
|
Jc as provideData,
|
|
8312
8324
|
Zc as provideDepends,
|
|
8313
8325
|
Uc as provideDevice,
|
|
8314
|
-
|
|
8326
|
+
jc as provideEnv,
|
|
8315
8327
|
Oc as provideMode,
|
|
8316
|
-
|
|
8317
|
-
|
|
8328
|
+
Kc as provideOrg,
|
|
8329
|
+
uc as provideSandbox,
|
|
8318
8330
|
Yc as provideType,
|
|
8319
8331
|
hn as radioGroupV1,
|
|
8320
8332
|
yn as radioV1,
|
|
8321
|
-
|
|
8322
|
-
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
|
|
8333
|
+
tu as rangeSliderV1,
|
|
8334
|
+
nu as ratingV1,
|
|
8335
|
+
ws as reverseBreakpoints,
|
|
8336
|
+
xc as runtime,
|
|
8337
|
+
iu as selectV1,
|
|
8326
8338
|
ao as setField,
|
|
8327
|
-
|
|
8339
|
+
ou as sliderV1,
|
|
8328
8340
|
Fc as spawnNode,
|
|
8329
8341
|
on as sphereGeometryV1,
|
|
8330
|
-
|
|
8342
|
+
Ia as spotLightV1,
|
|
8331
8343
|
gn as stepperHeaderV1,
|
|
8332
8344
|
xn as stepperItemV1,
|
|
8333
8345
|
_n as stepperV1,
|
|
8334
8346
|
kn as stepperWindowItemV1,
|
|
8335
8347
|
vn as stepperWindowV1,
|
|
8336
|
-
|
|
8348
|
+
uu as switchV1,
|
|
8337
8349
|
wn as tabV1,
|
|
8338
8350
|
Vn as tabsV1,
|
|
8339
8351
|
dn as textFieldV1,
|
|
@@ -8345,11 +8357,11 @@ export {
|
|
|
8345
8357
|
Nc as toMethodName,
|
|
8346
8358
|
Ec as toPropertyName,
|
|
8347
8359
|
Me as triggerReactivity,
|
|
8348
|
-
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8360
|
+
Pc as types,
|
|
8361
|
+
_s as unwrapEventId,
|
|
8362
|
+
vs as unwrapMethodId,
|
|
8363
|
+
gs as unwrapPropertyId,
|
|
8364
|
+
kc as useSandbox,
|
|
8353
8365
|
Cn as windowItemV1,
|
|
8354
8366
|
Tn as windowV1
|
|
8355
8367
|
};
|