x-runtime-lib 0.8.25 → 0.8.27
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 +382 -347
- package/dist/types/kind.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
2
|
-
import { globalObjects as be, waitUtil as
|
|
3
|
-
import { CameraHelper as io, DirectionalLightHelper as
|
|
4
|
-
import { c as B, i as ne, q as Be, u 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 Ke, 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 jo, openConfirmDlg as Ko, openPromptDlg as Oo } from "x-essential-lib";
|
|
3
|
+
import { CameraHelper as io, DirectionalLightHelper as Uo, PointLightHelper as Xo, SpotLightHelper as Yo } from "three";
|
|
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";
|
|
@@ -42,14 +42,44 @@ const bs = ["common", "scene"], ys = ["common", "scene"];
|
|
|
42
42
|
function hs(t) {
|
|
43
43
|
return t === "elementProperty" || t === "elementSlotProperty";
|
|
44
44
|
}
|
|
45
|
+
function Pc(t, e, i) {
|
|
46
|
+
return `${t}/${e}/${i}`;
|
|
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
|
+
}
|
|
45
56
|
function gs(t) {
|
|
46
57
|
return t === "elementMethod" || t === "elementSlotMethod";
|
|
47
58
|
}
|
|
59
|
+
function Ac(t, e, i) {
|
|
60
|
+
return `${t}/${e}/${i}`;
|
|
61
|
+
}
|
|
62
|
+
function Lc(t) {
|
|
63
|
+
const e = t.indexOf("/"), i = t.lastIndexOf("/");
|
|
64
|
+
return e < 0 || i < 0 ? (console.assert(!1, "invalid method id"), ["elementMethod", "", ""]) : [
|
|
65
|
+
t.substring(0, e),
|
|
66
|
+
t.substring(e + 1, i),
|
|
67
|
+
t.substring(i + 1)
|
|
68
|
+
];
|
|
69
|
+
}
|
|
48
70
|
function xs(t) {
|
|
49
71
|
return t === "elementEvent" || t === "elementPropertyChangeEvent";
|
|
50
72
|
}
|
|
51
73
|
function Ce(t, e, i) {
|
|
52
|
-
return `${t}
|
|
74
|
+
return `${t}/${e}/${i}`;
|
|
75
|
+
}
|
|
76
|
+
function Bc(t) {
|
|
77
|
+
const e = t.indexOf("/"), i = t.lastIndexOf("/");
|
|
78
|
+
return e < 0 || i < 0 ? (console.assert(!1, "invalid event id"), ["elementEvent", "", ""]) : [
|
|
79
|
+
t.substring(0, e),
|
|
80
|
+
t.substring(e + 1, i),
|
|
81
|
+
t.substring(i + 1)
|
|
82
|
+
];
|
|
53
83
|
}
|
|
54
84
|
const Yn = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
55
85
|
function T(t) {
|
|
@@ -60,7 +90,7 @@ function T(t) {
|
|
|
60
90
|
}
|
|
61
91
|
return e;
|
|
62
92
|
}
|
|
63
|
-
function
|
|
93
|
+
function Oe(t) {
|
|
64
94
|
if (typeof t != "string" || !t.endsWith("px"))
|
|
65
95
|
return !1;
|
|
66
96
|
const e = t.substring(0, t.length - 2), i = parseFloat(e);
|
|
@@ -72,7 +102,7 @@ function An(t) {
|
|
|
72
102
|
const e = t.substring(0, t.length - 1), i = parseFloat(e);
|
|
73
103
|
return !isNaN(i);
|
|
74
104
|
}
|
|
75
|
-
function
|
|
105
|
+
function Wc(t) {
|
|
76
106
|
if (typeof t != "string" || !t.endsWith("px"))
|
|
77
107
|
return;
|
|
78
108
|
const e = t.substring(0, t.length - 2), i = parseFloat(e);
|
|
@@ -87,16 +117,16 @@ function Xt(t) {
|
|
|
87
117
|
return i;
|
|
88
118
|
}
|
|
89
119
|
const lo = ["xs", "sm", "md", "lg", "xl"], vs = [...lo].reverse();
|
|
90
|
-
function
|
|
120
|
+
function Re(t) {
|
|
91
121
|
return t < 600 ? "xs" : t < 960 ? "sm" : t < 1280 ? "md" : t < 1920 ? "lg" : "xl";
|
|
92
122
|
}
|
|
93
|
-
function
|
|
123
|
+
function Jn(t) {
|
|
94
124
|
return lo.findIndex((e) => e === t);
|
|
95
125
|
}
|
|
96
126
|
function Ie(t, e) {
|
|
97
127
|
let i;
|
|
98
128
|
for (const o of vs) {
|
|
99
|
-
if (
|
|
129
|
+
if (Jn(o) < Jn(t))
|
|
100
130
|
break;
|
|
101
131
|
e[o] && (i = e[o]);
|
|
102
132
|
}
|
|
@@ -137,17 +167,17 @@ function Ln(t, e, i) {
|
|
|
137
167
|
a > 0 && (l += " - "), i ? l += o.global.t(s) : l += s;
|
|
138
168
|
}), l;
|
|
139
169
|
}
|
|
140
|
-
function
|
|
170
|
+
function Ec(t, e) {
|
|
141
171
|
const { i18n: i } = be;
|
|
142
172
|
let o = "";
|
|
143
173
|
return e === "elementProperty" || (e === "refProperty" ? o = `${i.global.t("x-runtime-lib.ref")} / ` : e === "customProperty" ? o = `${i.global.t("x-runtime-lib.custom")} / ` : e === "elementSlotProperty" ? o = `${i.global.t("x-runtime-lib.slot")} / ` : e === "customSlotProperty" ? o = `${i.global.t("x-runtime-lib.slot")} / ` : console.assert(!1)), Ln(o, t, hs(e));
|
|
144
174
|
}
|
|
145
|
-
function
|
|
175
|
+
function Nc(t, e) {
|
|
146
176
|
const { i18n: i } = be;
|
|
147
177
|
let o = "";
|
|
148
178
|
return e === "elementMethod" || (e === "refMethod" ? o = `${i.global.t("x-runtime-lib.ref")} / ` : e === "customMethod" ? o = `${i.global.t("x-runtime-lib.custom")} / ` : e === "elementSlotMethod" ? o = `${i.global.t("x-runtime-lib.slot")} / ` : e === "customSlotMethod" ? o = `${i.global.t("x-runtime-lib.slot")} / ` : console.assert(!1)), Ln(o, t, gs(e));
|
|
149
179
|
}
|
|
150
|
-
function
|
|
180
|
+
function Mc(t, e) {
|
|
151
181
|
const { i18n: i } = be;
|
|
152
182
|
let o = "";
|
|
153
183
|
return e === "elementEvent" || (e === "refEvent" ? o = `${i.global.t("x-runtime-lib.ref")} / ` : e === "customEvent" ? o = `${i.global.t("x-runtime-lib.custom")} / ` : e === "elementPropertyChangeEvent" || e === "customPropertyChangeEvent" ? o = `${i.global.t("x-runtime-lib.propertyChange")} / ` : e === "stateChangeEvent" ? o = `${i.global.t("x-runtime-lib.stateChange")} / ` : console.assert(!1)), Ln(o, t, xs(e));
|
|
@@ -175,7 +205,7 @@ const Te = {}, _ = (t) => {
|
|
|
175
205
|
L(i.$slots, "default")
|
|
176
206
|
], 8, ks)) : L(i.$slots, "default", { key: 1 });
|
|
177
207
|
}
|
|
178
|
-
}),
|
|
208
|
+
}), Z = /* @__PURE__ */ $({
|
|
179
209
|
__name: "index",
|
|
180
210
|
props: {
|
|
181
211
|
fitContent: { type: Boolean, default: !1 }
|
|
@@ -210,7 +240,7 @@ function r(t, e, i) {
|
|
|
210
240
|
return ue(() => {
|
|
211
241
|
let a = _s(l, t.node, e, i);
|
|
212
242
|
o === "editor" && e[e.length - 1] === "readonly" && (a = !0), s.value = a;
|
|
213
|
-
}),
|
|
243
|
+
}), q(s, (a, p) => {
|
|
214
244
|
ne(a, p) || ws(l, t.node, e, s.value, i);
|
|
215
245
|
}), { prop: s };
|
|
216
246
|
}
|
|
@@ -533,7 +563,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
533
563
|
}, [
|
|
534
564
|
n(i) === "editor" ? (v(), V(n(Be), {
|
|
535
565
|
key: 0,
|
|
536
|
-
type: n(
|
|
566
|
+
type: n(Uo)
|
|
537
567
|
}, null, 8, ["type"])) : ee("", !0),
|
|
538
568
|
L(b.$slots, "default")
|
|
539
569
|
], 8, Bs)
|
|
@@ -574,7 +604,7 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
574
604
|
_: 3
|
|
575
605
|
}, 8, ["position", "rotation", "scale"]));
|
|
576
606
|
}
|
|
577
|
-
}),
|
|
607
|
+
}), Ms = ["angle", "color", "decay", "distance", "intensity", "penumbra", "position", "rotation", "scale"], Rs = /* @__PURE__ */ $({
|
|
578
608
|
__name: "index",
|
|
579
609
|
props: {
|
|
580
610
|
node: {},
|
|
@@ -604,16 +634,16 @@ const Vs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
604
634
|
type: n(Yo)
|
|
605
635
|
}, null, 8, ["type"])) : ee("", !0),
|
|
606
636
|
L(f.$slots, "default")
|
|
607
|
-
], 8,
|
|
637
|
+
], 8, Ms)
|
|
608
638
|
]),
|
|
609
639
|
_: 3
|
|
610
640
|
}, 8, ["position", "rotation", "scale"]));
|
|
611
641
|
}
|
|
612
|
-
}),
|
|
642
|
+
}), Ds = {};
|
|
613
643
|
function Fs(t, e) {
|
|
614
644
|
return v(), Y("TresMeshBasicMaterial");
|
|
615
645
|
}
|
|
616
|
-
const Gs = /* @__PURE__ */ xe(
|
|
646
|
+
const Gs = /* @__PURE__ */ xe(Ds, [["render", Fs]]), Hs = ["position", "rotation", "scale"], js = /* @__PURE__ */ $({
|
|
617
647
|
__name: "index",
|
|
618
648
|
props: {
|
|
619
649
|
node: {},
|
|
@@ -638,7 +668,7 @@ const Gs = /* @__PURE__ */ xe(Ms, [["render", Fs]]), Hs = ["position", "rotation
|
|
|
638
668
|
_: 3
|
|
639
669
|
}, 8, ["position", "rotation", "scale"]));
|
|
640
670
|
}
|
|
641
|
-
}), Ks = ["position", "rotation", "scale"],
|
|
671
|
+
}), Ks = ["position", "rotation", "scale"], Os = /* @__PURE__ */ $({
|
|
642
672
|
__name: "index",
|
|
643
673
|
props: {
|
|
644
674
|
node: {},
|
|
@@ -654,13 +684,13 @@ const Gs = /* @__PURE__ */ xe(Ms, [["render", Fs]]), Hs = ["position", "rotation
|
|
|
654
684
|
L(s.$slots, "default")
|
|
655
685
|
], 8, Ks));
|
|
656
686
|
}
|
|
657
|
-
}),
|
|
658
|
-
color:
|
|
687
|
+
}), Us = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Xs = "#242424", Ys = {}, Js = { textStyle: { color: "#eeeeee" }, subtextStyle: { color: "#aaaaaa" } }, Zs = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, qs = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Qs = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, er = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, tr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, nr = { itemStyle: { borderWidth: 0, borderColor: "#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: { color: "#fd1050", color0: "#0cf49b", borderColor: "#fd1050", borderColor0: "#0cf49b", borderWidth: 1 } }, ar = { 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" } }, ur = { 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)" } } }, cr = { 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)" } } }, mr = { 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"] } } }, pr = { 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"] } } }, dr = { 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"] } } }, 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 = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, yr = { textStyle: { color: "#eeeeee" } }, hr = { axisPointer: { lineStyle: { color: "#eeeeee", width: "1" }, crossStyle: { color: "#eeeeee", width: "1" } } }, gr = { 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" } } }, xr = { color: ["#bf444c", "#d88273", "#f6efa6"] }, vr = { 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" } }, kr = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, _r = {
|
|
688
|
+
color: Us,
|
|
659
689
|
backgroundColor: Xs,
|
|
660
690
|
textStyle: Ys,
|
|
661
|
-
title:
|
|
662
|
-
line:
|
|
663
|
-
radar:
|
|
691
|
+
title: Js,
|
|
692
|
+
line: Zs,
|
|
693
|
+
radar: qs,
|
|
664
694
|
bar: Qs,
|
|
665
695
|
pie: er,
|
|
666
696
|
scatter: tr,
|
|
@@ -684,7 +714,7 @@ const Gs = /* @__PURE__ */ xe(Ms, [["render", Fs]]), Hs = ["position", "rotation
|
|
|
684
714
|
visualMap: xr,
|
|
685
715
|
dataZoom: vr,
|
|
686
716
|
markPoint: kr
|
|
687
|
-
}, wr = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Vr = "#f5f5f5", $r = {}, Ir = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, Sr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Cr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Tr = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, Pr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, zr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Ar = { itemStyle: { borderWidth: 0, borderColor: "#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: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", borderWidth: 1 } },
|
|
717
|
+
}, wr = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Vr = "#f5f5f5", $r = {}, Ir = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, Sr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Cr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Tr = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, Pr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, zr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Ar = { itemStyle: { borderWidth: 0, borderColor: "#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: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", 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" } }, Rr = { 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: "#6e7079" } }, axisTick: { show: !0, lineStyle: { color: "#6e7079" } }, axisLabel: { show: !0, color: "#6e7079" }, splitLine: { show: !0, lineStyle: { color: ["#e0e6f1"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Gr = { 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"] } } }, Hr = { 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"] } } }, Kr = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, Or = { textStyle: { color: "#333333" } }, Ur = { axisPointer: { lineStyle: { color: "#cccccc", width: "1" }, crossStyle: { color: "#cccccc", width: "1" } } }, Xr = { 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" } } }, Yr = { color: ["#bf444c", "#d88273", "#f6efa6"] }, Jr = { 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" } }, Zr = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, qr = {
|
|
688
718
|
color: wr,
|
|
689
719
|
backgroundColor: Vr,
|
|
690
720
|
textStyle: $r,
|
|
@@ -700,24 +730,24 @@ const Gs = /* @__PURE__ */ xe(Ms, [["render", Fs]]), Hs = ["position", "rotation
|
|
|
700
730
|
funnel: Wr,
|
|
701
731
|
gauge: Er,
|
|
702
732
|
candlestick: Nr,
|
|
703
|
-
graph:
|
|
704
|
-
map:
|
|
705
|
-
geo:
|
|
733
|
+
graph: Mr,
|
|
734
|
+
map: Rr,
|
|
735
|
+
geo: Dr,
|
|
706
736
|
categoryAxis: Fr,
|
|
707
737
|
valueAxis: Gr,
|
|
708
738
|
logAxis: Hr,
|
|
709
739
|
timeAxis: jr,
|
|
710
740
|
toolbox: Kr,
|
|
711
|
-
legend:
|
|
712
|
-
tooltip:
|
|
741
|
+
legend: Or,
|
|
742
|
+
tooltip: Ur,
|
|
713
743
|
timeline: Xr,
|
|
714
744
|
visualMap: Yr,
|
|
715
|
-
dataZoom:
|
|
716
|
-
markPoint:
|
|
745
|
+
dataZoom: Jr,
|
|
746
|
+
markPoint: Zr
|
|
717
747
|
};
|
|
718
|
-
|
|
719
|
-
Jo,
|
|
748
|
+
Jo([
|
|
720
749
|
Zo,
|
|
750
|
+
qo,
|
|
721
751
|
Qo,
|
|
722
752
|
es,
|
|
723
753
|
ts,
|
|
@@ -726,7 +756,7 @@ qo([
|
|
|
726
756
|
os
|
|
727
757
|
]);
|
|
728
758
|
oo("dark", _r);
|
|
729
|
-
oo("light",
|
|
759
|
+
oo("light", qr);
|
|
730
760
|
const Qr = /* @__PURE__ */ $({
|
|
731
761
|
__name: "index",
|
|
732
762
|
props: {
|
|
@@ -735,25 +765,25 @@ const Qr = /* @__PURE__ */ $({
|
|
|
735
765
|
},
|
|
736
766
|
setup(t) {
|
|
737
767
|
const e = t, i = $e(), o = We(), l = 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(() => {
|
|
738
|
-
const S = {},
|
|
739
|
-
return l === "page" ?
|
|
740
|
-
}),
|
|
768
|
+
const S = {}, D = s.value.type;
|
|
769
|
+
return l === "page" ? D === "common" ? c(S) : console.assert(!1) : l === "comp" && D === "common" ? c(S) : console.assert(!1), S;
|
|
770
|
+
}), M = Xi("chart");
|
|
741
771
|
let W;
|
|
742
772
|
const F = () => {
|
|
743
|
-
W?.dispose(), W = so.init(
|
|
773
|
+
W?.dispose(), W = so.init(M.value, o.value ? "dark" : "light");
|
|
744
774
|
const S = {};
|
|
745
775
|
W.setOption(S);
|
|
746
|
-
},
|
|
776
|
+
}, R = () => {
|
|
747
777
|
W?.resize();
|
|
748
778
|
}, E = () => {
|
|
749
779
|
const S = {};
|
|
750
780
|
f(S), h(S), x(S), g(S), w(S), W?.setOption(S, !0);
|
|
751
781
|
};
|
|
752
782
|
return Yi(async () => {
|
|
753
|
-
window.addEventListener("resize",
|
|
783
|
+
window.addEventListener("resize", R, !1), await qi(() => !!M.value), F(), E();
|
|
754
784
|
}), Ke(() => {
|
|
755
|
-
window.removeEventListener("resize",
|
|
756
|
-
}),
|
|
785
|
+
window.removeEventListener("resize", R, !1), W?.dispose();
|
|
786
|
+
}), q(
|
|
757
787
|
[
|
|
758
788
|
() => i.value.width,
|
|
759
789
|
() => i.value.height,
|
|
@@ -765,17 +795,17 @@ const Qr = /* @__PURE__ */ $({
|
|
|
765
795
|
u
|
|
766
796
|
],
|
|
767
797
|
async () => {
|
|
768
|
-
await
|
|
798
|
+
await Ji(), R();
|
|
769
799
|
}
|
|
770
|
-
),
|
|
800
|
+
), q([o], () => {
|
|
771
801
|
F(), E();
|
|
772
|
-
}),
|
|
802
|
+
}), q(
|
|
773
803
|
[e],
|
|
774
804
|
() => {
|
|
775
805
|
E();
|
|
776
806
|
},
|
|
777
807
|
{ deep: !0 }
|
|
778
|
-
), (S,
|
|
808
|
+
), (S, D) => (v(), Y("div", {
|
|
779
809
|
ref: "chart",
|
|
780
810
|
style: Q(C.value)
|
|
781
811
|
}, null, 4));
|
|
@@ -788,25 +818,25 @@ const Qr = /* @__PURE__ */ $({
|
|
|
788
818
|
},
|
|
789
819
|
setup(t) {
|
|
790
820
|
const e = t, i = $e(), o = We(), l = 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(() => {
|
|
791
|
-
const S = {},
|
|
792
|
-
return l === "page" ?
|
|
793
|
-
}),
|
|
821
|
+
const S = {}, D = s.value.type;
|
|
822
|
+
return l === "page" ? D === "common" ? c(S) : console.assert(!1) : l === "comp" && D === "common" ? c(S) : console.assert(!1), S;
|
|
823
|
+
}), M = Xi("chart");
|
|
794
824
|
let W;
|
|
795
825
|
const F = () => {
|
|
796
|
-
W?.dispose(), W = so.init(
|
|
826
|
+
W?.dispose(), W = so.init(M.value, o.value ? "dark" : "light");
|
|
797
827
|
const S = {};
|
|
798
828
|
W.setOption(S);
|
|
799
|
-
},
|
|
829
|
+
}, R = () => {
|
|
800
830
|
W?.resize();
|
|
801
831
|
}, E = () => {
|
|
802
832
|
const S = {};
|
|
803
833
|
f(S), h(S), x(S), g(S), w(S), W?.setOption(S, !0);
|
|
804
834
|
};
|
|
805
835
|
return Yi(async () => {
|
|
806
|
-
window.addEventListener("resize",
|
|
836
|
+
window.addEventListener("resize", R, !1), await qi(() => !!M.value), F(), E();
|
|
807
837
|
}), Ke(() => {
|
|
808
|
-
window.removeEventListener("resize",
|
|
809
|
-
}),
|
|
838
|
+
window.removeEventListener("resize", R, !1), W?.dispose();
|
|
839
|
+
}), q(
|
|
810
840
|
[
|
|
811
841
|
() => i.value.width,
|
|
812
842
|
() => i.value.height,
|
|
@@ -818,17 +848,17 @@ const Qr = /* @__PURE__ */ $({
|
|
|
818
848
|
u
|
|
819
849
|
],
|
|
820
850
|
async () => {
|
|
821
|
-
await
|
|
851
|
+
await Ji(), R();
|
|
822
852
|
}
|
|
823
|
-
),
|
|
853
|
+
), q([o], () => {
|
|
824
854
|
F(), E();
|
|
825
|
-
}),
|
|
855
|
+
}), q(
|
|
826
856
|
[e],
|
|
827
857
|
() => {
|
|
828
858
|
E();
|
|
829
859
|
},
|
|
830
860
|
{ deep: !0 }
|
|
831
|
-
), (S,
|
|
861
|
+
), (S, D) => (v(), Y("div", {
|
|
832
862
|
ref: "chart",
|
|
833
863
|
style: Q(C.value)
|
|
834
864
|
}, null, 4));
|
|
@@ -940,14 +970,14 @@ const Qr = /* @__PURE__ */ $({
|
|
|
940
970
|
"settings",
|
|
941
971
|
"addIcon",
|
|
942
972
|
"prepend"
|
|
943
|
-
]), { prop: w } = r(e, ["settings", "readonly"]), { prop: C } = r(e, ["settings", "ripple"]), { prop:
|
|
944
|
-
i !== "runtime" && i !== "preview" || (o.setVariable("__pointerPosX__",
|
|
973
|
+
]), { prop: w } = r(e, ["settings", "readonly"]), { prop: C } = r(e, ["settings", "ripple"]), { prop: M } = r(e, ["settings", "size"]), { prop: W } = r(e, ["settings", "stacked"]), { prop: F } = r(e, ["settings", "text"]), { theme: R } = N(), { prop: E } = r(e, ["settings", "variant"]), { prop: S } = r(e, ["size", "width"]), D = (J) => {
|
|
974
|
+
i !== "runtime" && i !== "preview" || (o.setVariable("__pointerPosX__", J.clientX), o.setVariable("__pointerPosY__", J.clientY), o.callFunction("__triggerEventV1__", [
|
|
945
975
|
Ce("elementEvent", "click", e.node.basic.id)
|
|
946
976
|
]));
|
|
947
977
|
};
|
|
948
|
-
return (
|
|
978
|
+
return (J, te) => {
|
|
949
979
|
const re = z("v-btn");
|
|
950
|
-
return v(), V(n(
|
|
980
|
+
return v(), V(n(Z), null, {
|
|
951
981
|
default: I(() => [
|
|
952
982
|
H(re, {
|
|
953
983
|
"append-icon": n(l),
|
|
@@ -964,13 +994,13 @@ const Qr = /* @__PURE__ */ $({
|
|
|
964
994
|
"prepend-icon": n(g),
|
|
965
995
|
readonly: n(w),
|
|
966
996
|
ripple: n(C),
|
|
967
|
-
size: n(
|
|
997
|
+
size: n(M),
|
|
968
998
|
stacked: n(W),
|
|
969
999
|
text: n(F),
|
|
970
|
-
theme: n(
|
|
1000
|
+
theme: n(R),
|
|
971
1001
|
variant: n(E),
|
|
972
1002
|
width: n(S),
|
|
973
|
-
onClick:
|
|
1003
|
+
onClick: D
|
|
974
1004
|
}, null, 8, ["append-icon", "block", "color", "density", "disabled", "height", "loading", "max-height", "max-width", "min-height", "min-width", "prepend-icon", "readonly", "ripple", "size", "stacked", "text", "theme", "variant", "width"])
|
|
975
1005
|
]),
|
|
976
1006
|
_: 1
|
|
@@ -1026,8 +1056,8 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1026
1056
|
setup(t) {
|
|
1027
1057
|
const e = t, { prop: i } = r(e, ["settings", "density"]), { prop: o } = r(e, ["settings", "disabled"]), { prop: l } = r(e, ["size", "height"]), { prop: s } = r(e, ["settings", "hover"]), { prop: a } = r(e, ["settings", "loading"]), { prop: p } = r(e, ["size", "maxHeight"]), { prop: d } = r(e, ["size", "maxWidth"]), { prop: b } = r(e, ["size", "minHeight"]), { prop: m } = r(e, ["size", "minWidth"]), { prop: u } = r(e, ["settings", "subtitle"]), { prop: c } = r(e, ["settings", "text"]), { theme: f } = N(), { prop: h } = r(e, ["settings", "title"]), { prop: x } = r(e, ["settings", "variant"]), { prop: g } = r(e, ["size", "width"]);
|
|
1028
1058
|
return (w, C) => {
|
|
1029
|
-
const
|
|
1030
|
-
return v(), V(
|
|
1059
|
+
const M = z("v-card");
|
|
1060
|
+
return v(), V(M, {
|
|
1031
1061
|
density: n(i),
|
|
1032
1062
|
disabled: n(o),
|
|
1033
1063
|
height: n(l),
|
|
@@ -1106,7 +1136,7 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1106
1136
|
const f = z("v-chip-group");
|
|
1107
1137
|
return v(), V(f, {
|
|
1108
1138
|
modelValue: n(m),
|
|
1109
|
-
"onUpdate:modelValue": c[0] || (c[0] = (h) =>
|
|
1139
|
+
"onUpdate:modelValue": c[0] || (c[0] = (h) => O(m) ? m.value = h : null),
|
|
1110
1140
|
column: n(i),
|
|
1111
1141
|
direction: n(o),
|
|
1112
1142
|
disabled: n(l),
|
|
@@ -1162,11 +1192,11 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1162
1192
|
const e = t, { prop: i } = r(e, ["settings", "hideDetails"]), { prop: o } = r(e, ["settings", "label"]), { prop: l } = r(e, ["settings", "placeholder"]), { prop: s } = r(e, ["settings", "readonly"]), { prop: a } = r(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = r(e, ["settings", "value"]);
|
|
1163
1193
|
return (b, m) => {
|
|
1164
1194
|
const u = z("v-combobox");
|
|
1165
|
-
return v(), V(n(
|
|
1195
|
+
return v(), V(n(Z), null, {
|
|
1166
1196
|
default: I(() => [
|
|
1167
1197
|
H(u, {
|
|
1168
1198
|
modelValue: n(d),
|
|
1169
|
-
"onUpdate:modelValue": m[0] || (m[0] = (c) =>
|
|
1199
|
+
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1170
1200
|
"hide-details": n(i),
|
|
1171
1201
|
label: n(o),
|
|
1172
1202
|
placeholder: n(l),
|
|
@@ -1227,7 +1257,7 @@ const sl = /* @__PURE__ */ xe(il, [["render", ol]]), rl = /* @__PURE__ */ $({
|
|
|
1227
1257
|
theme: n(u),
|
|
1228
1258
|
width: n(c)
|
|
1229
1259
|
}, Pn({ _: 2 }, [
|
|
1230
|
-
|
|
1260
|
+
Mo(f.value, (w) => ({
|
|
1231
1261
|
name: `item.${w.column}`,
|
|
1232
1262
|
fn: I(({ value: C }) => [
|
|
1233
1263
|
H(n(fe), {
|
|
@@ -1251,7 +1281,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1251
1281
|
outer: { type: Boolean }
|
|
1252
1282
|
},
|
|
1253
1283
|
setup(t) {
|
|
1254
|
-
const e = t, i = G(), o = Ee(), l = k(() => e.node.basic?.id), { open: s } = eo(`runtimeDlg/${
|
|
1284
|
+
const e = t, i = G(), o = Ee(), l = k(() => e.node.basic?.id), { open: s } = eo(`runtimeDlg/${Zi()}`);
|
|
1255
1285
|
return bo(o, e, (p) => {
|
|
1256
1286
|
if (i !== "runtime" && i !== "preview")
|
|
1257
1287
|
return;
|
|
@@ -1261,7 +1291,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1261
1291
|
const b = z("v-dialog");
|
|
1262
1292
|
return v(), V(b, {
|
|
1263
1293
|
modelValue: n(s),
|
|
1264
|
-
"onUpdate:modelValue": d[0] || (d[0] = (m) =>
|
|
1294
|
+
"onUpdate:modelValue": d[0] || (d[0] = (m) => O(s) ? s.value = m : null),
|
|
1265
1295
|
attach: "#dialogContainer"
|
|
1266
1296
|
}, {
|
|
1267
1297
|
activator: I(() => [
|
|
@@ -1313,7 +1343,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1313
1343
|
"backgroundColor"
|
|
1314
1344
|
]), { color: m } = j(b), u = (f) => {
|
|
1315
1345
|
m.value && (f.backgroundColor = m.value), f.display = "flex";
|
|
1316
|
-
const h =
|
|
1346
|
+
const h = Re(i.value.width), x = Ie(h, e.node.settings?.direction);
|
|
1317
1347
|
x === "row" ? f.flexDirection = "row" : x === "rowReverse" ? f.flexDirection = "row-reverse" : x === "column" ? f.flexDirection = "column" : x === "columnReverse" && (f.flexDirection = "column-reverse");
|
|
1318
1348
|
const g = Ie(h, e.node.settings?.wrap);
|
|
1319
1349
|
g === "no" ? f.flexWrap = "nowrap" : g === "yes" ? f.flexWrap = "wrap" : g === "reverse" && (f.flexWrap = "wrap-reverse");
|
|
@@ -1370,10 +1400,10 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1370
1400
|
const C = z("v-form");
|
|
1371
1401
|
return v(), V(C, {
|
|
1372
1402
|
modelValue: n(a),
|
|
1373
|
-
"onUpdate:modelValue": w[0] || (w[0] = (
|
|
1403
|
+
"onUpdate:modelValue": w[0] || (w[0] = (M) => O(a) ? a.value = M : null),
|
|
1374
1404
|
"fast-fail": n(p),
|
|
1375
1405
|
style: Q(h.value),
|
|
1376
|
-
onSubmit:
|
|
1406
|
+
onSubmit: Ro(x, ["prevent"])
|
|
1377
1407
|
}, {
|
|
1378
1408
|
default: I(() => [
|
|
1379
1409
|
L(g.$slots, "default")
|
|
@@ -1408,7 +1438,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1408
1438
|
outer: { type: Boolean }
|
|
1409
1439
|
},
|
|
1410
1440
|
setup(t) {
|
|
1411
|
-
const e = t, i = G(), o = Ee(), l = ce(0), s = ce(0), a = k(() => [l.value, s.value]), p = k(() => e.node.basic?.id), { open: d } = eo(`runtimeMenu/${
|
|
1441
|
+
const e = t, i = G(), o = Ee(), l = ce(0), s = ce(0), a = k(() => [l.value, s.value]), p = k(() => e.node.basic?.id), { open: d } = eo(`runtimeMenu/${Zi()}`);
|
|
1412
1442
|
return bo(o, e, (m) => {
|
|
1413
1443
|
if (i !== "runtime" && i !== "preview")
|
|
1414
1444
|
return;
|
|
@@ -1418,7 +1448,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1418
1448
|
const c = z("v-menu");
|
|
1419
1449
|
return v(), V(c, {
|
|
1420
1450
|
modelValue: n(d),
|
|
1421
|
-
"onUpdate:modelValue": u[0] || (u[0] = (f) =>
|
|
1451
|
+
"onUpdate:modelValue": u[0] || (u[0] = (f) => O(d) ? d.value = f : null),
|
|
1422
1452
|
attach: "menuContainer",
|
|
1423
1453
|
"location-strategy": "connected",
|
|
1424
1454
|
scrim: "transparent",
|
|
@@ -1460,14 +1490,14 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1460
1490
|
"settings",
|
|
1461
1491
|
"addIcon",
|
|
1462
1492
|
"prependInner"
|
|
1463
|
-
]), { prop: w } = r(e, ["settings", "readonly"]), { prop: C } = r(e, ["settings", "reverse"]), { prop:
|
|
1464
|
-
return (
|
|
1493
|
+
]), { prop: w } = r(e, ["settings", "readonly"]), { prop: C } = r(e, ["settings", "reverse"]), { prop: M } = r(e, ["settings", "singleLine"]), { prop: W } = r(e, ["settings", "step"]), { prop: F } = r(e, ["settings", "suffix"]), { theme: R } = N(), { prop: E } = r(e, ["settings", "value"]), { prop: S } = r(e, ["settings", "variant"]), { prop: D } = r(e, ["size", "width"]);
|
|
1494
|
+
return (J, te) => {
|
|
1465
1495
|
const re = z("v-number-input");
|
|
1466
|
-
return v(), V(n(
|
|
1496
|
+
return v(), V(n(Z), null, {
|
|
1467
1497
|
default: I(() => [
|
|
1468
1498
|
H(re, {
|
|
1469
1499
|
modelValue: n(E),
|
|
1470
|
-
"onUpdate:modelValue": te[0] || (te[0] = (le) =>
|
|
1500
|
+
"onUpdate:modelValue": te[0] || (te[0] = (le) => O(E) ? E.value = le : null),
|
|
1471
1501
|
"append-icon": n(i),
|
|
1472
1502
|
"append-inner-icon": n(o),
|
|
1473
1503
|
clearable: n(l),
|
|
@@ -1485,12 +1515,12 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1485
1515
|
"prepend-inner-icon": n(g),
|
|
1486
1516
|
readonly: n(w),
|
|
1487
1517
|
reverse: n(C),
|
|
1488
|
-
"single-line": n(
|
|
1518
|
+
"single-line": n(M),
|
|
1489
1519
|
step: n(W),
|
|
1490
1520
|
suffix: n(F),
|
|
1491
|
-
theme: n(
|
|
1521
|
+
theme: n(R),
|
|
1492
1522
|
variant: n(S),
|
|
1493
|
-
width: n(
|
|
1523
|
+
width: n(D)
|
|
1494
1524
|
}, null, 8, ["modelValue", "append-icon", "append-inner-icon", "clearable", "hide-details", "label", "loading", "max", "max-width", "min", "min-width", "placeholder", "precision", "prefix", "prepend-icon", "prepend-inner-icon", "readonly", "reverse", "single-line", "step", "suffix", "theme", "variant", "width"])
|
|
1495
1525
|
]),
|
|
1496
1526
|
_: 1
|
|
@@ -1513,11 +1543,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1513
1543
|
});
|
|
1514
1544
|
return (h, x) => {
|
|
1515
1545
|
const g = z("v-pagination");
|
|
1516
|
-
return v(), V(n(
|
|
1546
|
+
return v(), V(n(Z), null, {
|
|
1517
1547
|
default: I(() => [
|
|
1518
1548
|
H(g, {
|
|
1519
1549
|
modelValue: n(u),
|
|
1520
|
-
"onUpdate:modelValue": x[0] || (x[0] = (w) =>
|
|
1550
|
+
"onUpdate:modelValue": x[0] || (x[0] = (w) => O(u) ? u.value = w : null),
|
|
1521
1551
|
density: n(o),
|
|
1522
1552
|
disabled: n(l),
|
|
1523
1553
|
length: n(s),
|
|
@@ -1565,11 +1595,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1565
1595
|
const e = t, { prop: i } = r(e, ["settings", "density"]), { prop: o } = r(e, ["settings", "direction"]), { prop: l } = r(e, ["settings", "disabled"]), { prop: s } = r(e, ["settings", "inline"]), { prop: a } = r(e, ["settings", "readonly"]), { theme: p } = N(), { prop: d } = r(e, ["settings", "value"]);
|
|
1566
1596
|
return (b, m) => {
|
|
1567
1597
|
const u = z("v-radio-group");
|
|
1568
|
-
return v(), V(n(
|
|
1598
|
+
return v(), V(n(Z), null, {
|
|
1569
1599
|
default: I(() => [
|
|
1570
1600
|
H(u, {
|
|
1571
1601
|
modelValue: n(d),
|
|
1572
|
-
"onUpdate:modelValue": m[0] || (m[0] = (c) =>
|
|
1602
|
+
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1573
1603
|
density: n(i),
|
|
1574
1604
|
direction: n(o),
|
|
1575
1605
|
disabled: n(l),
|
|
@@ -1611,30 +1641,30 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1611
1641
|
if (!w.value)
|
|
1612
1642
|
return;
|
|
1613
1643
|
const E = {};
|
|
1614
|
-
for (const { value: S, label:
|
|
1615
|
-
E[S] =
|
|
1644
|
+
for (const { value: S, label: D } of w.value)
|
|
1645
|
+
E[S] = D;
|
|
1616
1646
|
if (!ro(E))
|
|
1617
1647
|
return E;
|
|
1618
|
-
}), { prop:
|
|
1648
|
+
}), { prop: M } = r(e, ["settings", "tickSize"]), { prop: W } = r(e, [
|
|
1619
1649
|
"settings",
|
|
1620
1650
|
"value",
|
|
1621
1651
|
"start"
|
|
1622
|
-
]), { prop: F } = r(e, ["settings", "value", "end"]),
|
|
1652
|
+
]), { prop: F } = r(e, ["settings", "value", "end"]), R = k({
|
|
1623
1653
|
get: () => [W.value, F.value],
|
|
1624
1654
|
set: ([E, S]) => {
|
|
1625
1655
|
W.value = E, F.value = S;
|
|
1626
1656
|
}
|
|
1627
1657
|
});
|
|
1628
1658
|
return (E, S) => {
|
|
1629
|
-
const
|
|
1630
|
-
return v(), V(n(
|
|
1631
|
-
modelValue:
|
|
1632
|
-
"onUpdate:modelValue": S[1] || (S[1] = (
|
|
1659
|
+
const D = z("v-range-slider");
|
|
1660
|
+
return v(), V(n(Z), {
|
|
1661
|
+
modelValue: R.value,
|
|
1662
|
+
"onUpdate:modelValue": S[1] || (S[1] = (J) => R.value = J)
|
|
1633
1663
|
}, {
|
|
1634
1664
|
default: I(() => [
|
|
1635
|
-
H(
|
|
1636
|
-
modelValue:
|
|
1637
|
-
"onUpdate:modelValue": S[0] || (S[0] = (
|
|
1665
|
+
H(D, {
|
|
1666
|
+
modelValue: R.value,
|
|
1667
|
+
"onUpdate:modelValue": S[0] || (S[0] = (J) => R.value = J),
|
|
1638
1668
|
density: n(i),
|
|
1639
1669
|
direction: n(o),
|
|
1640
1670
|
disabled: n(l),
|
|
@@ -1648,7 +1678,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1648
1678
|
theme: n(f),
|
|
1649
1679
|
"thumb-label": x.value,
|
|
1650
1680
|
"thumb-size": n(g),
|
|
1651
|
-
"tick-size": n(
|
|
1681
|
+
"tick-size": n(M),
|
|
1652
1682
|
ticks: C.value
|
|
1653
1683
|
}, null, 8, ["modelValue", "density", "direction", "disabled", "hide-details", "label", "max", "min", "readonly", "show-ticks", "step", "theme", "thumb-label", "thumb-size", "tick-size", "ticks"])
|
|
1654
1684
|
]),
|
|
@@ -1669,11 +1699,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1669
1699
|
]), { prop: a } = r(e, ["settings", "hover"]), { prop: p } = r(e, ["settings", "length"]), { prop: d } = r(e, ["settings", "readonly"]), { theme: b } = N(), { prop: m } = r(e, ["settings", "value"]);
|
|
1670
1700
|
return (u, c) => {
|
|
1671
1701
|
const f = z("v-rating");
|
|
1672
|
-
return v(), V(n(
|
|
1702
|
+
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
1673
1703
|
default: I(() => [
|
|
1674
1704
|
H(f, {
|
|
1675
1705
|
modelValue: n(m),
|
|
1676
|
-
"onUpdate:modelValue": c[0] || (c[0] = (h) =>
|
|
1706
|
+
"onUpdate:modelValue": c[0] || (c[0] = (h) => O(m) ? m.value = h : null),
|
|
1677
1707
|
clearable: n(i),
|
|
1678
1708
|
density: n(o),
|
|
1679
1709
|
disabled: n(l),
|
|
@@ -1698,11 +1728,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1698
1728
|
const e = t, { prop: i } = r(e, ["settings", "hideDetails"]), { prop: o } = r(e, ["settings", "label"]), { prop: l } = r(e, ["settings", "placeholder"]), { prop: s } = r(e, ["settings", "readonly"]), { prop: a } = r(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = r(e, ["settings", "value"]);
|
|
1699
1729
|
return (b, m) => {
|
|
1700
1730
|
const u = z("v-select");
|
|
1701
|
-
return v(), V(n(
|
|
1731
|
+
return v(), V(n(Z), null, {
|
|
1702
1732
|
default: I(() => [
|
|
1703
1733
|
H(u, {
|
|
1704
1734
|
modelValue: n(d),
|
|
1705
|
-
"onUpdate:modelValue": m[0] || (m[0] = (c) =>
|
|
1735
|
+
"onUpdate:modelValue": m[0] || (m[0] = (c) => O(d) ? d.value = c : null),
|
|
1706
1736
|
"hide-details": n(i),
|
|
1707
1737
|
label: n(o),
|
|
1708
1738
|
placeholder: n(l),
|
|
@@ -1733,30 +1763,30 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1733
1763
|
]), { color: w } = j(g), { prop: C } = r(e, [
|
|
1734
1764
|
"settings",
|
|
1735
1765
|
"thumbLabel"
|
|
1736
|
-
]),
|
|
1766
|
+
]), M = k(() => {
|
|
1737
1767
|
if (C.value === "always")
|
|
1738
1768
|
return "always";
|
|
1739
1769
|
if (C.value === "show")
|
|
1740
1770
|
return !0;
|
|
1741
|
-
}), { prop: W } = r(e, ["settings", "thumbSize"]), { prop: F } = r(e, ["settings", "ticks"]),
|
|
1771
|
+
}), { prop: W } = r(e, ["settings", "thumbSize"]), { prop: F } = r(e, ["settings", "ticks"]), R = k(() => {
|
|
1742
1772
|
if (!F.value)
|
|
1743
1773
|
return;
|
|
1744
1774
|
const le = {};
|
|
1745
|
-
for (const { value: Ne, label:
|
|
1746
|
-
le[Ne] =
|
|
1775
|
+
for (const { value: Ne, label: Ut } of F.value)
|
|
1776
|
+
le[Ne] = Ut;
|
|
1747
1777
|
if (!ro(le))
|
|
1748
1778
|
return le;
|
|
1749
1779
|
}), { prop: E } = r(e, ["settings", "tickSize"]), { prop: S } = r(e, [
|
|
1750
1780
|
"settings",
|
|
1751
1781
|
"trackColor"
|
|
1752
|
-
]), { color:
|
|
1782
|
+
]), { color: D } = j(S), { prop: J } = r(e, ["settings", "value"]), { prop: te } = r(e, ["slots", "append"]), { prop: re } = r(e, ["slots", "prepend"]);
|
|
1753
1783
|
return (le, Ne) => {
|
|
1754
|
-
const
|
|
1755
|
-
return v(), V(n(
|
|
1784
|
+
const Ut = z("v-slider");
|
|
1785
|
+
return v(), V(n(Z), null, {
|
|
1756
1786
|
default: I(() => [
|
|
1757
|
-
H(
|
|
1758
|
-
modelValue: n(
|
|
1759
|
-
"onUpdate:modelValue": Ne[0] || (Ne[0] = (Eo) =>
|
|
1787
|
+
H(Ut, {
|
|
1788
|
+
modelValue: n(J),
|
|
1789
|
+
"onUpdate:modelValue": Ne[0] || (Ne[0] = (Eo) => O(J) ? J.value = Eo : null),
|
|
1760
1790
|
color: n(o),
|
|
1761
1791
|
direction: n(l),
|
|
1762
1792
|
disabled: n(s),
|
|
@@ -1770,11 +1800,11 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1770
1800
|
step: n(h),
|
|
1771
1801
|
theme: n(x),
|
|
1772
1802
|
"thumb-color": n(w),
|
|
1773
|
-
"thumb-label":
|
|
1803
|
+
"thumb-label": M.value,
|
|
1774
1804
|
"thumb-size": n(W),
|
|
1775
1805
|
"tick-size": n(E),
|
|
1776
|
-
ticks:
|
|
1777
|
-
"track-color": n(
|
|
1806
|
+
ticks: R.value,
|
|
1807
|
+
"track-color": n(D)
|
|
1778
1808
|
}, Pn({ _: 2 }, [
|
|
1779
1809
|
n(te) ? {
|
|
1780
1810
|
name: "append",
|
|
@@ -1814,7 +1844,7 @@ const hl = /* @__PURE__ */ xe(bl, [["render", yl]]), gl = ["id"], xl = /* @__PUR
|
|
|
1814
1844
|
const p = z("v-stepper");
|
|
1815
1845
|
return v(), V(p, {
|
|
1816
1846
|
modelValue: n(l),
|
|
1817
|
-
"onUpdate:modelValue": a[0] || (a[0] = (d) =>
|
|
1847
|
+
"onUpdate:modelValue": a[0] || (a[0] = (d) => O(l) ? l.value = d : null),
|
|
1818
1848
|
"hide-actions": n(i),
|
|
1819
1849
|
theme: n(o)
|
|
1820
1850
|
}, {
|
|
@@ -1835,7 +1865,7 @@ function Nl(t, e) {
|
|
|
1835
1865
|
_: 3
|
|
1836
1866
|
});
|
|
1837
1867
|
}
|
|
1838
|
-
const
|
|
1868
|
+
const Ml = /* @__PURE__ */ xe(El, [["render", Nl]]), Rl = /* @__PURE__ */ $({
|
|
1839
1869
|
__name: "index",
|
|
1840
1870
|
props: {
|
|
1841
1871
|
node: {},
|
|
@@ -1853,7 +1883,7 @@ const Rl = /* @__PURE__ */ xe(El, [["render", Nl]]), Dl = /* @__PURE__ */ $({
|
|
|
1853
1883
|
}, 8, ["value"]);
|
|
1854
1884
|
};
|
|
1855
1885
|
}
|
|
1856
|
-
}),
|
|
1886
|
+
}), Dl = {};
|
|
1857
1887
|
function Fl(t, e) {
|
|
1858
1888
|
const i = z("v-stepper-window");
|
|
1859
1889
|
return v(), V(i, null, {
|
|
@@ -1863,7 +1893,7 @@ function Fl(t, e) {
|
|
|
1863
1893
|
_: 3
|
|
1864
1894
|
});
|
|
1865
1895
|
}
|
|
1866
|
-
const Gl = /* @__PURE__ */ xe(
|
|
1896
|
+
const Gl = /* @__PURE__ */ xe(Dl, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
1867
1897
|
__name: "index",
|
|
1868
1898
|
props: {
|
|
1869
1899
|
node: {},
|
|
@@ -1894,11 +1924,11 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1894
1924
|
]), { prop: p } = r(e, ["settings", "inline"]), { prop: d } = r(e, ["settings", "inset"]), { prop: b } = r(e, ["settings", "label"]), { prop: m } = r(e, ["settings", "loading"]), { theme: u } = N(), { prop: c } = r(e, ["settings", "value"]);
|
|
1895
1925
|
return (f, h) => {
|
|
1896
1926
|
const x = z("v-switch");
|
|
1897
|
-
return v(), V(n(
|
|
1927
|
+
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
1898
1928
|
default: I(() => [
|
|
1899
1929
|
H(x, {
|
|
1900
1930
|
modelValue: n(c),
|
|
1901
|
-
"onUpdate:modelValue": h[0] || (h[0] = (g) =>
|
|
1931
|
+
"onUpdate:modelValue": h[0] || (h[0] = (g) => O(c) ? c.value = g : null),
|
|
1902
1932
|
density: n(i),
|
|
1903
1933
|
direction: n(o),
|
|
1904
1934
|
disabled: n(l),
|
|
@@ -1928,7 +1958,7 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1928
1958
|
});
|
|
1929
1959
|
return (p, d) => {
|
|
1930
1960
|
const b = z("v-tab");
|
|
1931
|
-
return v(), V(n(
|
|
1961
|
+
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
1932
1962
|
default: I(() => [
|
|
1933
1963
|
H(b, {
|
|
1934
1964
|
style: Q(a.value),
|
|
@@ -1941,7 +1971,7 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1941
1971
|
});
|
|
1942
1972
|
};
|
|
1943
1973
|
}
|
|
1944
|
-
}),
|
|
1974
|
+
}), Ol = /* @__PURE__ */ $({
|
|
1945
1975
|
__name: "index",
|
|
1946
1976
|
props: {
|
|
1947
1977
|
node: {},
|
|
@@ -1963,12 +1993,12 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1963
1993
|
"settings",
|
|
1964
1994
|
"color",
|
|
1965
1995
|
"sliderColor"
|
|
1966
|
-
]), { color: C } = j(w), { prop:
|
|
1967
|
-
return (
|
|
1996
|
+
]), { color: C } = j(w), { prop: M } = r(e, ["settings", "stacked"]), { theme: W } = N(), { prop: F } = r(e, ["settings", "value"]);
|
|
1997
|
+
return (R, E) => {
|
|
1968
1998
|
const S = z("v-tabs");
|
|
1969
1999
|
return v(), V(S, {
|
|
1970
2000
|
modelValue: n(F),
|
|
1971
|
-
"onUpdate:modelValue": E[0] || (E[0] = (
|
|
2001
|
+
"onUpdate:modelValue": E[0] || (E[0] = (D) => O(F) ? F.value = D : null),
|
|
1972
2002
|
"align-tabs": n(i),
|
|
1973
2003
|
"bg-color": n(l),
|
|
1974
2004
|
"center-active": n(s),
|
|
@@ -1983,17 +2013,17 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
1983
2013
|
mandatory: n(x),
|
|
1984
2014
|
"show-arrows": n(g),
|
|
1985
2015
|
"slider-color": n(C),
|
|
1986
|
-
stacked: n(
|
|
2016
|
+
stacked: n(M),
|
|
1987
2017
|
theme: n(W)
|
|
1988
2018
|
}, {
|
|
1989
2019
|
default: I(() => [
|
|
1990
|
-
L(
|
|
2020
|
+
L(R.$slots, "default")
|
|
1991
2021
|
]),
|
|
1992
2022
|
_: 3
|
|
1993
2023
|
}, 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"]);
|
|
1994
2024
|
};
|
|
1995
2025
|
}
|
|
1996
|
-
}),
|
|
2026
|
+
}), Ul = /* @__PURE__ */ $({
|
|
1997
2027
|
__name: "index",
|
|
1998
2028
|
props: {
|
|
1999
2029
|
node: {},
|
|
@@ -2001,11 +2031,11 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2001
2031
|
},
|
|
2002
2032
|
setup(t) {
|
|
2003
2033
|
const e = t, i = $e(), { prop: o } = r(e, ["settings", "align"]), { prop: l } = r(e, ["settings", "decoration"]), { prop: s } = r(e, ["settings", "emphasis"]), { prop: a } = r(e, ["settings", "italic"]), { prop: p } = r(e, ["settings", "text"]), { prop: d } = r(e, ["settings", "weight"]), b = k(() => {
|
|
2004
|
-
const m = [], u =
|
|
2034
|
+
const m = [], u = Re(i.value.width), c = Ie(u, e.node.settings?.style);
|
|
2005
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}`), l.value && m.push(`text-decoration-${l.value}`), d.value && m.push(`font-weight-${d.value}`), a.value && m.push("font-italic"), m.join(" ");
|
|
2006
2036
|
});
|
|
2007
2037
|
return (m, u) => (v(), Y("span", {
|
|
2008
|
-
class:
|
|
2038
|
+
class: Do(b.value)
|
|
2009
2039
|
}, Fo(n(p)), 3));
|
|
2010
2040
|
}
|
|
2011
2041
|
}), Xl = /* @__PURE__ */ $({
|
|
@@ -2017,12 +2047,12 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2017
2047
|
setup(t) {
|
|
2018
2048
|
const e = t, { prop: i } = r(e, ["settings", "autoGrow"]), { prop: o } = r(e, ["settings", "clearable"]), { prop: l } = r(e, ["settings", "density"]), { prop: s } = r(e, ["settings", "disabled"]), { prop: a } = r(e, ["settings", "label"]), { prop: p } = r(e, ["settings", "loading"]), { prop: d } = r(e, ["settings", "maxRows"]), { prop: b } = r(e, ["settings", "placeholder"]), { prop: m } = r(e, ["settings", "readonly"]), { prop: u } = r(e, ["settings", "reverse"]), { prop: c } = r(e, ["settings", "rows"]), { prop: f } = r(e, ["settings", "singleLine"]), { theme: h } = N(), { prop: x } = r(e, ["settings", "value"]), { prop: g } = r(e, ["settings", "variant"]);
|
|
2019
2049
|
return (w, C) => {
|
|
2020
|
-
const
|
|
2021
|
-
return v(), V(n(
|
|
2050
|
+
const M = z("v-textarea");
|
|
2051
|
+
return v(), V(n(Z), null, {
|
|
2022
2052
|
default: I(() => [
|
|
2023
|
-
H(
|
|
2053
|
+
H(M, {
|
|
2024
2054
|
modelValue: n(x),
|
|
2025
|
-
"onUpdate:modelValue": C[0] || (C[0] = (W) =>
|
|
2055
|
+
"onUpdate:modelValue": C[0] || (C[0] = (W) => O(x) ? x.value = W : null),
|
|
2026
2056
|
"auto-grow": n(i),
|
|
2027
2057
|
clearable: n(o),
|
|
2028
2058
|
density: n(l),
|
|
@@ -2056,20 +2086,20 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2056
2086
|
]), { prop: l } = r(e, ["settings", "autofocus"]), { prop: s } = r(e, ["settings", "clearable"]), { prop: a } = r(e, ["settings", "density"]), { prop: p } = r(e, ["settings", "disabled"]), { prop: d } = r(e, ["settings", "hideDetails"]), { prop: b } = r(e, ["settings", "label"]), { prop: m } = r(e, ["settings", "loading"]), { prop: u } = r(e, ["settings", "placeholder"]), { prop: c } = r(e, ["settings", "prefix"]), { prop: f } = r(e, ["settings", "prependIcon"]), { prop: h } = r(e, [
|
|
2057
2087
|
"settings",
|
|
2058
2088
|
"prependInnerIcon"
|
|
2059
|
-
]), { prop: x } = r(e, ["settings", "readonly"]), { prop: g } = r(e, ["settings", "reverse"]), { prop: w } = r(e, ["settings", "singleLine"]), { prop: C } = r(e, ["settings", "suffix"]), { theme:
|
|
2089
|
+
]), { prop: x } = r(e, ["settings", "readonly"]), { prop: g } = r(e, ["settings", "reverse"]), { prop: w } = r(e, ["settings", "singleLine"]), { prop: C } = r(e, ["settings", "suffix"]), { theme: M } = N(), { prop: W } = r(e, ["settings", "value"]), { prop: F } = r(e, ["settings", "variant"]), { prop: R } = r(e, ["slots", "append"]), { prop: E } = r(e, [
|
|
2060
2090
|
"slots",
|
|
2061
2091
|
"appendInner"
|
|
2062
|
-
]), { prop: S } = r(e, ["slots", "prepend"]), { prop:
|
|
2092
|
+
]), { prop: S } = r(e, ["slots", "prepend"]), { prop: D } = r(e, [
|
|
2063
2093
|
"slots",
|
|
2064
2094
|
"prependInner"
|
|
2065
2095
|
]);
|
|
2066
|
-
return (
|
|
2096
|
+
return (J, te) => {
|
|
2067
2097
|
const re = z("v-text-field");
|
|
2068
|
-
return v(), V(n(
|
|
2098
|
+
return v(), V(n(Z), null, {
|
|
2069
2099
|
default: I(() => [
|
|
2070
2100
|
H(re, {
|
|
2071
2101
|
modelValue: n(W),
|
|
2072
|
-
"onUpdate:modelValue": te[0] || (te[0] = (le) =>
|
|
2102
|
+
"onUpdate:modelValue": te[0] || (te[0] = (le) => O(W) ? W.value = le : null),
|
|
2073
2103
|
"append-icon": n(i),
|
|
2074
2104
|
"append-inner-icon": n(o),
|
|
2075
2105
|
autofocus: n(l),
|
|
@@ -2087,14 +2117,14 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2087
2117
|
reverse: n(g),
|
|
2088
2118
|
"single-line": n(w),
|
|
2089
2119
|
suffix: n(C),
|
|
2090
|
-
theme: n(
|
|
2120
|
+
theme: n(M),
|
|
2091
2121
|
variant: n(F)
|
|
2092
2122
|
}, Pn({ _: 2 }, [
|
|
2093
|
-
n(
|
|
2123
|
+
n(R) ? {
|
|
2094
2124
|
name: "append",
|
|
2095
2125
|
fn: I(() => [
|
|
2096
2126
|
H(n(fe), {
|
|
2097
|
-
"ref-context": { refid: n(
|
|
2127
|
+
"ref-context": { refid: n(R) },
|
|
2098
2128
|
state: {}
|
|
2099
2129
|
}, null, 8, ["ref-context"])
|
|
2100
2130
|
]),
|
|
@@ -2120,11 +2150,11 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2120
2150
|
]),
|
|
2121
2151
|
key: "2"
|
|
2122
2152
|
} : void 0,
|
|
2123
|
-
n(
|
|
2153
|
+
n(D) ? {
|
|
2124
2154
|
name: "prepend-inner",
|
|
2125
2155
|
fn: I(() => [
|
|
2126
2156
|
H(n(fe), {
|
|
2127
|
-
"ref-context": { refid: n(
|
|
2157
|
+
"ref-context": { refid: n(D) },
|
|
2128
2158
|
state: {}
|
|
2129
2159
|
}, null, 8, ["ref-context"])
|
|
2130
2160
|
]),
|
|
@@ -2136,7 +2166,7 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2136
2166
|
});
|
|
2137
2167
|
};
|
|
2138
2168
|
}
|
|
2139
|
-
}),
|
|
2169
|
+
}), Jl = /* @__PURE__ */ $({
|
|
2140
2170
|
__name: "index",
|
|
2141
2171
|
props: {
|
|
2142
2172
|
node: {},
|
|
@@ -2186,8 +2216,8 @@ const Gl = /* @__PURE__ */ xe(Ml, [["render", Fl]]), Hl = /* @__PURE__ */ $({
|
|
|
2186
2216
|
}, 8, ["align", "density", "direction", "dot-color", "fill-dot", "hide-opposite", "line-color", "line-inset", "line-thickness", "side", "theme", "truncate-line"]);
|
|
2187
2217
|
};
|
|
2188
2218
|
}
|
|
2189
|
-
}),
|
|
2190
|
-
function
|
|
2219
|
+
}), Zl = {};
|
|
2220
|
+
function ql(t, e) {
|
|
2191
2221
|
const i = z("v-timeline-item");
|
|
2192
2222
|
return v(), V(i, null, {
|
|
2193
2223
|
default: I(() => [
|
|
@@ -2196,7 +2226,7 @@ function Zl(t, e) {
|
|
|
2196
2226
|
_: 3
|
|
2197
2227
|
});
|
|
2198
2228
|
}
|
|
2199
|
-
const Ql = /* @__PURE__ */ xe(
|
|
2229
|
+
const Ql = /* @__PURE__ */ xe(Zl, [["render", ql]]), ea = /* @__PURE__ */ $({
|
|
2200
2230
|
__name: "index",
|
|
2201
2231
|
props: {
|
|
2202
2232
|
node: {},
|
|
@@ -2208,7 +2238,7 @@ const Ql = /* @__PURE__ */ xe(Jl, [["render", Zl]]), ea = /* @__PURE__ */ $({
|
|
|
2208
2238
|
const c = z("v-window");
|
|
2209
2239
|
return v(), V(c, {
|
|
2210
2240
|
modelValue: n(b),
|
|
2211
|
-
"onUpdate:modelValue": u[0] || (u[0] = (f) =>
|
|
2241
|
+
"onUpdate:modelValue": u[0] || (u[0] = (f) => O(b) ? b.value = f : null),
|
|
2212
2242
|
continuous: n(i),
|
|
2213
2243
|
direction: n(l),
|
|
2214
2244
|
disabled: n(o),
|
|
@@ -2234,7 +2264,7 @@ function na(t, e) {
|
|
|
2234
2264
|
_: 3
|
|
2235
2265
|
});
|
|
2236
2266
|
}
|
|
2237
|
-
const ia = /* @__PURE__ */ xe(ta, [["render", na]]),
|
|
2267
|
+
const ia = /* @__PURE__ */ xe(ta, [["render", na]]), 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", oa = "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 = {
|
|
2238
2268
|
key: "basic",
|
|
2239
2269
|
name: "x-runtime-lib.basic",
|
|
2240
2270
|
children: [
|
|
@@ -2441,7 +2471,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Oe = "ambient_light_v1", Xe
|
|
|
2441
2471
|
default: ""
|
|
2442
2472
|
}
|
|
2443
2473
|
]
|
|
2444
|
-
},
|
|
2474
|
+
}, U = {
|
|
2445
2475
|
key: "size",
|
|
2446
2476
|
name: "x-runtime-lib.size",
|
|
2447
2477
|
children: [
|
|
@@ -2663,7 +2693,7 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Oe = "ambient_light_v1", Xe
|
|
|
2663
2693
|
defaultArray: []
|
|
2664
2694
|
}
|
|
2665
2695
|
]
|
|
2666
|
-
},
|
|
2696
|
+
}, Zn = {
|
|
2667
2697
|
key: "settings",
|
|
2668
2698
|
name: "x-runtime-lib.settings",
|
|
2669
2699
|
children: [
|
|
@@ -2715,15 +2745,15 @@ const ia = /* @__PURE__ */ xe(ta, [["render", na]]), Oe = "ambient_light_v1", Xe
|
|
|
2715
2745
|
name: "x-runtime-lib.orthographicCamera",
|
|
2716
2746
|
comp: $s,
|
|
2717
2747
|
props: {
|
|
2718
|
-
pageScene: [y, X,
|
|
2719
|
-
compScene: [y, X,
|
|
2748
|
+
pageScene: [y, X, Zn],
|
|
2749
|
+
compScene: [y, X, Zn]
|
|
2720
2750
|
},
|
|
2721
2751
|
events: [],
|
|
2722
2752
|
methods: [],
|
|
2723
2753
|
slots: []
|
|
2724
2754
|
};
|
|
2725
2755
|
_(ra);
|
|
2726
|
-
const
|
|
2756
|
+
const qn = {
|
|
2727
2757
|
key: "settings",
|
|
2728
2758
|
name: "x-runtime-lib.settings",
|
|
2729
2759
|
children: [
|
|
@@ -2761,8 +2791,8 @@ const Zn = {
|
|
|
2761
2791
|
name: "x-runtime-lib.perspectiveCamera",
|
|
2762
2792
|
comp: Ss,
|
|
2763
2793
|
props: {
|
|
2764
|
-
pageScene: [y, X,
|
|
2765
|
-
compScene: [y, X,
|
|
2794
|
+
pageScene: [y, X, qn],
|
|
2795
|
+
compScene: [y, X, qn]
|
|
2766
2796
|
},
|
|
2767
2797
|
events: [],
|
|
2768
2798
|
methods: [],
|
|
@@ -2950,7 +2980,7 @@ const Qn = {
|
|
|
2950
2980
|
}
|
|
2951
2981
|
]
|
|
2952
2982
|
}, nn = {
|
|
2953
|
-
key:
|
|
2983
|
+
key: Je,
|
|
2954
2984
|
name: "x-runtime-lib.boxGeometry",
|
|
2955
2985
|
comp: Ts,
|
|
2956
2986
|
props: {
|
|
@@ -3126,7 +3156,7 @@ const ti = {
|
|
|
3126
3156
|
}
|
|
3127
3157
|
]
|
|
3128
3158
|
}, va = {
|
|
3129
|
-
key:
|
|
3159
|
+
key: Ue,
|
|
3130
3160
|
name: "x-runtime-lib.ambientLight",
|
|
3131
3161
|
comp: Ls,
|
|
3132
3162
|
props: {
|
|
@@ -3263,7 +3293,7 @@ const oi = {
|
|
|
3263
3293
|
}, wa = {
|
|
3264
3294
|
key: Lt,
|
|
3265
3295
|
name: "x-runtime-lib.spotLight",
|
|
3266
|
-
comp:
|
|
3296
|
+
comp: Rs,
|
|
3267
3297
|
props: {
|
|
3268
3298
|
pageScene: [y, X, oi],
|
|
3269
3299
|
compScene: [y, X, oi]
|
|
@@ -3303,7 +3333,7 @@ _(Va);
|
|
|
3303
3333
|
const ze = {
|
|
3304
3334
|
key: vt,
|
|
3305
3335
|
name: "x-runtime-lib.mesh",
|
|
3306
|
-
comp:
|
|
3336
|
+
comp: Os,
|
|
3307
3337
|
props: {
|
|
3308
3338
|
pageScene: [y, X],
|
|
3309
3339
|
compScene: [y, X]
|
|
@@ -3358,8 +3388,8 @@ const si = {
|
|
|
3358
3388
|
name: "x-runtime-lib.barChart",
|
|
3359
3389
|
comp: Qr,
|
|
3360
3390
|
props: {
|
|
3361
|
-
pageCommon: [y,
|
|
3362
|
-
compCommon: [y,
|
|
3391
|
+
pageCommon: [y, U, Ge, He, je, Fe, si],
|
|
3392
|
+
compCommon: [y, U, Ge, He, je, Fe, si]
|
|
3363
3393
|
},
|
|
3364
3394
|
events: [],
|
|
3365
3395
|
methods: [],
|
|
@@ -3413,8 +3443,8 @@ const ri = {
|
|
|
3413
3443
|
name: "x-runtime-lib.lineChart",
|
|
3414
3444
|
comp: el,
|
|
3415
3445
|
props: {
|
|
3416
|
-
pageCommon: [y,
|
|
3417
|
-
compCommon: [y,
|
|
3446
|
+
pageCommon: [y, U, Ge, He, je, Fe, ri],
|
|
3447
|
+
compCommon: [y, U, Ge, He, je, Fe, ri]
|
|
3418
3448
|
},
|
|
3419
3449
|
events: [],
|
|
3420
3450
|
methods: [],
|
|
@@ -3423,17 +3453,17 @@ const ri = {
|
|
|
3423
3453
|
spawn: Ia
|
|
3424
3454
|
};
|
|
3425
3455
|
_(rn);
|
|
3426
|
-
const
|
|
3427
|
-
|
|
3428
|
-
|
|
3456
|
+
const Ot = B(K);
|
|
3457
|
+
Ot.key = "backgroundColor";
|
|
3458
|
+
Ot.name = "x-runtime-lib.backgroundColor";
|
|
3429
3459
|
const li = {
|
|
3430
3460
|
key: "settings",
|
|
3431
3461
|
name: "x-runtime-lib.settings",
|
|
3432
|
-
children: [
|
|
3462
|
+
children: [Ot]
|
|
3433
3463
|
}, ai = {
|
|
3434
3464
|
key: "settings",
|
|
3435
3465
|
name: "x-runtime-lib.settings",
|
|
3436
|
-
children: [
|
|
3466
|
+
children: [Ot]
|
|
3437
3467
|
}, Sa = {
|
|
3438
3468
|
key: tn,
|
|
3439
3469
|
name: "x-runtime-lib.globality",
|
|
@@ -3518,7 +3548,7 @@ const ui = {
|
|
|
3518
3548
|
default: !1
|
|
3519
3549
|
}
|
|
3520
3550
|
]
|
|
3521
|
-
},
|
|
3551
|
+
}, Rc = {
|
|
3522
3552
|
key: Xe,
|
|
3523
3553
|
name: "x-runtime-lib.badge",
|
|
3524
3554
|
comp: tl,
|
|
@@ -3632,12 +3662,12 @@ const Ta = B(K), ci = {
|
|
|
3632
3662
|
}
|
|
3633
3663
|
]
|
|
3634
3664
|
}, ln = {
|
|
3635
|
-
key:
|
|
3665
|
+
key: Ze,
|
|
3636
3666
|
name: "x-runtime-lib.button",
|
|
3637
3667
|
comp: nl,
|
|
3638
3668
|
props: {
|
|
3639
|
-
pageCommon: [y,
|
|
3640
|
-
compCommon: [y,
|
|
3669
|
+
pageCommon: [y, U, ci],
|
|
3670
|
+
compCommon: [y, U, ci]
|
|
3641
3671
|
},
|
|
3642
3672
|
events: [
|
|
3643
3673
|
{
|
|
@@ -3653,7 +3683,7 @@ const Ta = B(K), ci = {
|
|
|
3653
3683
|
};
|
|
3654
3684
|
_(ln);
|
|
3655
3685
|
const Pa = {
|
|
3656
|
-
key:
|
|
3686
|
+
key: qe,
|
|
3657
3687
|
name: "x-runtime-lib.buttonGroup",
|
|
3658
3688
|
comp: sl,
|
|
3659
3689
|
props: {
|
|
@@ -3813,8 +3843,8 @@ const pi = {
|
|
|
3813
3843
|
name: "x-runtime-lib.card",
|
|
3814
3844
|
comp: ll,
|
|
3815
3845
|
props: {
|
|
3816
|
-
pageCommon: [y,
|
|
3817
|
-
compCommon: [y,
|
|
3846
|
+
pageCommon: [y, U, pi],
|
|
3847
|
+
compCommon: [y, U, pi]
|
|
3818
3848
|
},
|
|
3819
3849
|
events: [],
|
|
3820
3850
|
methods: [],
|
|
@@ -4126,8 +4156,8 @@ const hi = {
|
|
|
4126
4156
|
name: "x-runtime-lib.container",
|
|
4127
4157
|
comp: dl,
|
|
4128
4158
|
props: {
|
|
4129
|
-
pageCommon: [y,
|
|
4130
|
-
compCommon: [y,
|
|
4159
|
+
pageCommon: [y, U, _e, we, Ve, hi],
|
|
4160
|
+
compCommon: [y, U, _e, we, Ve, hi]
|
|
4131
4161
|
},
|
|
4132
4162
|
events: [
|
|
4133
4163
|
{
|
|
@@ -4292,7 +4322,7 @@ const gi = {
|
|
|
4292
4322
|
defaultArray: []
|
|
4293
4323
|
}
|
|
4294
4324
|
]
|
|
4295
|
-
},
|
|
4325
|
+
}, Ma = {
|
|
4296
4326
|
key: lt,
|
|
4297
4327
|
name: "x-runtime-lib.dataTable",
|
|
4298
4328
|
comp: fl,
|
|
@@ -4305,8 +4335,8 @@ const gi = {
|
|
|
4305
4335
|
slots: [],
|
|
4306
4336
|
leaf: !0
|
|
4307
4337
|
};
|
|
4308
|
-
_(
|
|
4309
|
-
const
|
|
4338
|
+
_(Ma);
|
|
4339
|
+
const Ra = {
|
|
4310
4340
|
key: at,
|
|
4311
4341
|
name: "x-runtime-lib.datePicker",
|
|
4312
4342
|
comp: hl,
|
|
@@ -4319,8 +4349,8 @@ const Da = {
|
|
|
4319
4349
|
slots: [],
|
|
4320
4350
|
leaf: !0
|
|
4321
4351
|
};
|
|
4322
|
-
_(
|
|
4323
|
-
const
|
|
4352
|
+
_(Ra);
|
|
4353
|
+
const Da = {
|
|
4324
4354
|
key: ut,
|
|
4325
4355
|
name: "x-runtime-lib.dialog",
|
|
4326
4356
|
comp: xl,
|
|
@@ -4346,12 +4376,12 @@ const Ma = {
|
|
|
4346
4376
|
slots: [],
|
|
4347
4377
|
teleport: !0
|
|
4348
4378
|
};
|
|
4349
|
-
_(
|
|
4379
|
+
_(Da);
|
|
4350
4380
|
const ki = {
|
|
4351
4381
|
key: "settings",
|
|
4352
4382
|
name: "x-runtime-lib.settings",
|
|
4353
4383
|
children: []
|
|
4354
|
-
},
|
|
4384
|
+
}, Dc = {
|
|
4355
4385
|
key: mt,
|
|
4356
4386
|
name: "x-runtime-lib.fileInput",
|
|
4357
4387
|
comp: vl,
|
|
@@ -4385,8 +4415,8 @@ const ki = {
|
|
|
4385
4415
|
name: "x-runtime-lib.flexLayoutEntry",
|
|
4386
4416
|
comp: _l,
|
|
4387
4417
|
props: {
|
|
4388
|
-
pageCommon: [y,
|
|
4389
|
-
compCommon: [y,
|
|
4418
|
+
pageCommon: [y, U, _i],
|
|
4419
|
+
compCommon: [y, U, _i]
|
|
4390
4420
|
},
|
|
4391
4421
|
events: [],
|
|
4392
4422
|
methods: [],
|
|
@@ -4653,8 +4683,8 @@ const wi = {
|
|
|
4653
4683
|
name: "x-runtime-lib.flexLayout",
|
|
4654
4684
|
comp: kl,
|
|
4655
4685
|
props: {
|
|
4656
|
-
pageCommon: [y,
|
|
4657
|
-
compCommon: [y,
|
|
4686
|
+
pageCommon: [y, U, _e, we, Ve, wi],
|
|
4687
|
+
compCommon: [y, U, _e, we, Ve, wi]
|
|
4658
4688
|
},
|
|
4659
4689
|
events: [
|
|
4660
4690
|
{
|
|
@@ -4819,7 +4849,7 @@ const Vi = {
|
|
|
4819
4849
|
}
|
|
4820
4850
|
]
|
|
4821
4851
|
}, dn = {
|
|
4822
|
-
key:
|
|
4852
|
+
key: Rt,
|
|
4823
4853
|
name: "x-runtime-lib.textField",
|
|
4824
4854
|
comp: Yl,
|
|
4825
4855
|
props: {
|
|
@@ -4908,8 +4938,8 @@ const Ii = {
|
|
|
4908
4938
|
name: "x-runtime-lib.form",
|
|
4909
4939
|
comp: wl,
|
|
4910
4940
|
props: {
|
|
4911
|
-
pageCommon: [y,
|
|
4912
|
-
compCommon: [y,
|
|
4941
|
+
pageCommon: [y, U, _e, we, Ve, Ii],
|
|
4942
|
+
compCommon: [y, U, _e, we, Ve, Ii]
|
|
4913
4943
|
},
|
|
4914
4944
|
events: [
|
|
4915
4945
|
{
|
|
@@ -4948,7 +4978,7 @@ const Ka = B(K), Si = {
|
|
|
4948
4978
|
},
|
|
4949
4979
|
Ka
|
|
4950
4980
|
]
|
|
4951
|
-
},
|
|
4981
|
+
}, Oa = {
|
|
4952
4982
|
key: bt,
|
|
4953
4983
|
name: "x-runtime-lib.icon",
|
|
4954
4984
|
comp: Vl,
|
|
@@ -4961,8 +4991,8 @@ const Ka = B(K), Si = {
|
|
|
4961
4991
|
slots: [],
|
|
4962
4992
|
leaf: !0
|
|
4963
4993
|
};
|
|
4964
|
-
_(
|
|
4965
|
-
const
|
|
4994
|
+
_(Oa);
|
|
4995
|
+
const Ua = {
|
|
4966
4996
|
key: xt,
|
|
4967
4997
|
name: "x-runtime-lib.menu",
|
|
4968
4998
|
comp: Il,
|
|
@@ -4988,7 +5018,7 @@ const Oa = {
|
|
|
4988
5018
|
slots: [],
|
|
4989
5019
|
teleport: !0
|
|
4990
5020
|
};
|
|
4991
|
-
_(
|
|
5021
|
+
_(Ua);
|
|
4992
5022
|
function Xa(t, e) {
|
|
4993
5023
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
4994
5024
|
if (!o) {
|
|
@@ -5288,7 +5318,7 @@ const Pi = {
|
|
|
5288
5318
|
leaf: !0
|
|
5289
5319
|
};
|
|
5290
5320
|
_(Ya);
|
|
5291
|
-
const
|
|
5321
|
+
const Ja = B(K), zi = {
|
|
5292
5322
|
key: "settings",
|
|
5293
5323
|
name: "x-runtime-lib.settings",
|
|
5294
5324
|
children: [
|
|
@@ -5323,7 +5353,7 @@ const qa = B(K), zi = {
|
|
|
5323
5353
|
items: "densityItemsV1",
|
|
5324
5354
|
default: "default"
|
|
5325
5355
|
},
|
|
5326
|
-
|
|
5356
|
+
Ja
|
|
5327
5357
|
]
|
|
5328
5358
|
}, yn = {
|
|
5329
5359
|
key: ho,
|
|
@@ -5339,7 +5369,7 @@ const qa = B(K), zi = {
|
|
|
5339
5369
|
leaf: !0
|
|
5340
5370
|
};
|
|
5341
5371
|
_(yn);
|
|
5342
|
-
function
|
|
5372
|
+
function Za(t, e) {
|
|
5343
5373
|
const i = `type=${t} subtype=${e}`, o = A(t, e);
|
|
5344
5374
|
if (!o) {
|
|
5345
5375
|
console.error(`radioGroupV1/spawn prop tag not found, ${i}`);
|
|
@@ -5425,7 +5455,7 @@ const Ai = {
|
|
|
5425
5455
|
events: [],
|
|
5426
5456
|
methods: [],
|
|
5427
5457
|
slots: [],
|
|
5428
|
-
spawn:
|
|
5458
|
+
spawn: Za
|
|
5429
5459
|
};
|
|
5430
5460
|
_(hn);
|
|
5431
5461
|
const Li = {
|
|
@@ -5545,7 +5575,7 @@ const Li = {
|
|
|
5545
5575
|
]
|
|
5546
5576
|
}
|
|
5547
5577
|
]
|
|
5548
|
-
},
|
|
5578
|
+
}, qa = {
|
|
5549
5579
|
key: Ct,
|
|
5550
5580
|
name: "x-runtime-lib.rangeSlider",
|
|
5551
5581
|
comp: zl,
|
|
@@ -5558,7 +5588,7 @@ const Li = {
|
|
|
5558
5588
|
slots: [],
|
|
5559
5589
|
leaf: !0
|
|
5560
5590
|
};
|
|
5561
|
-
_(
|
|
5591
|
+
_(qa);
|
|
5562
5592
|
const Bi = {
|
|
5563
5593
|
key: "settings",
|
|
5564
5594
|
name: "x-runtime-lib.settings",
|
|
@@ -5835,7 +5865,7 @@ _(tu);
|
|
|
5835
5865
|
const gn = {
|
|
5836
5866
|
key: go,
|
|
5837
5867
|
name: "x-runtime-lib.stepperHeader",
|
|
5838
|
-
comp:
|
|
5868
|
+
comp: Ml,
|
|
5839
5869
|
props: {
|
|
5840
5870
|
pageCommon: [y],
|
|
5841
5871
|
compCommon: [y]
|
|
@@ -5845,7 +5875,7 @@ const gn = {
|
|
|
5845
5875
|
slots: []
|
|
5846
5876
|
};
|
|
5847
5877
|
_(gn);
|
|
5848
|
-
const
|
|
5878
|
+
const Mi = {
|
|
5849
5879
|
key: "settings",
|
|
5850
5880
|
name: "x-runtime-lib.settings",
|
|
5851
5881
|
children: [
|
|
@@ -5859,10 +5889,10 @@ const Ri = {
|
|
|
5859
5889
|
}, xn = {
|
|
5860
5890
|
key: xo,
|
|
5861
5891
|
name: "x-runtime-lib.stepperItem",
|
|
5862
|
-
comp:
|
|
5892
|
+
comp: Rl,
|
|
5863
5893
|
props: {
|
|
5864
|
-
pageCommon: [y,
|
|
5865
|
-
compCommon: [y,
|
|
5894
|
+
pageCommon: [y, Mi],
|
|
5895
|
+
compCommon: [y, Mi]
|
|
5866
5896
|
},
|
|
5867
5897
|
events: [],
|
|
5868
5898
|
methods: [],
|
|
@@ -5882,7 +5912,7 @@ const vn = {
|
|
|
5882
5912
|
slots: []
|
|
5883
5913
|
};
|
|
5884
5914
|
_(vn);
|
|
5885
|
-
const
|
|
5915
|
+
const Ri = {
|
|
5886
5916
|
key: "settings",
|
|
5887
5917
|
name: "x-runtime-lib.settings",
|
|
5888
5918
|
children: [
|
|
@@ -5898,8 +5928,8 @@ const Di = {
|
|
|
5898
5928
|
name: "x-runtime-lib.stepperWindowItem",
|
|
5899
5929
|
comp: Hl,
|
|
5900
5930
|
props: {
|
|
5901
|
-
pageCommon: [y,
|
|
5902
|
-
compCommon: [y,
|
|
5931
|
+
pageCommon: [y, Ri],
|
|
5932
|
+
compCommon: [y, Ri]
|
|
5903
5933
|
},
|
|
5904
5934
|
events: [],
|
|
5905
5935
|
methods: [],
|
|
@@ -5933,12 +5963,12 @@ function iu(t, e) {
|
|
|
5933
5963
|
}
|
|
5934
5964
|
const s = {};
|
|
5935
5965
|
return P(s, l), s.basic.id = T(16), s.basic.key = gn.key, s.children = [
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5966
|
+
Jt(t, e, "step1"),
|
|
5967
|
+
Jt(t, e, "step2"),
|
|
5968
|
+
Jt(t, e, "step3")
|
|
5939
5969
|
], s;
|
|
5940
5970
|
}
|
|
5941
|
-
function
|
|
5971
|
+
function Jt(t, e, i) {
|
|
5942
5972
|
const o = `type=${t} subtype=${e}`, l = A(t, e);
|
|
5943
5973
|
if (!l) {
|
|
5944
5974
|
console.error(`stepperV1/spawnItem prop tag not found, ${o}`);
|
|
@@ -5965,12 +5995,12 @@ function ou(t, e) {
|
|
|
5965
5995
|
}
|
|
5966
5996
|
const s = {};
|
|
5967
5997
|
return P(s, l), s.basic.id = T(16), s.basic.key = vn.key, s.children = [
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5998
|
+
Zt(t, e, "step1", "step 1"),
|
|
5999
|
+
Zt(t, e, "step2", "step 2"),
|
|
6000
|
+
Zt(t, e, "step3", "step 3")
|
|
5971
6001
|
], s;
|
|
5972
6002
|
}
|
|
5973
|
-
function
|
|
6003
|
+
function Zt(t, e, i, o) {
|
|
5974
6004
|
const l = `type=${t} subtype=${e}`, s = A(t, e);
|
|
5975
6005
|
if (!s) {
|
|
5976
6006
|
console.error(`stepperV1/spawnWindowItem prop tag not found, ${l}`);
|
|
@@ -5998,7 +6028,7 @@ function su(t, e, i) {
|
|
|
5998
6028
|
const a = {};
|
|
5999
6029
|
return P(a, s), a.basic.id = T(16), a.basic.key = Ae.key, a.children = [], a.settings.title = i, a;
|
|
6000
6030
|
}
|
|
6001
|
-
const
|
|
6031
|
+
const Di = {
|
|
6002
6032
|
key: "settings",
|
|
6003
6033
|
name: "x-runtime-lib.settings",
|
|
6004
6034
|
children: [
|
|
@@ -6020,8 +6050,8 @@ const Mi = {
|
|
|
6020
6050
|
name: "x-runtime-lib.stepper",
|
|
6021
6051
|
comp: Wl,
|
|
6022
6052
|
props: {
|
|
6023
|
-
pageCommon: [y,
|
|
6024
|
-
compCommon: [y,
|
|
6053
|
+
pageCommon: [y, Di],
|
|
6054
|
+
compCommon: [y, Di]
|
|
6025
6055
|
},
|
|
6026
6056
|
events: [],
|
|
6027
6057
|
methods: [],
|
|
@@ -6087,12 +6117,12 @@ function lu(t, e) {
|
|
|
6087
6117
|
}
|
|
6088
6118
|
const s = {};
|
|
6089
6119
|
return P(s, l), s.basic.id = T(16), s.basic.key = Vn.key, s.children = [
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6120
|
+
qt(t, e, "tab1", "tab 1"),
|
|
6121
|
+
qt(t, e, "tab2", "tab 2"),
|
|
6122
|
+
qt(t, e, "tab3", "tab 3")
|
|
6093
6123
|
], s;
|
|
6094
6124
|
}
|
|
6095
|
-
function
|
|
6125
|
+
function qt(t, e, i, o) {
|
|
6096
6126
|
const l = `type=${t} subtype=${e}`, s = A(t, e);
|
|
6097
6127
|
if (!s) {
|
|
6098
6128
|
console.error(`tabsV1/spawnTab prop tag not found, ${l}`);
|
|
@@ -6106,12 +6136,12 @@ function Zt(t, e, i, o) {
|
|
|
6106
6136
|
const p = {};
|
|
6107
6137
|
return P(p, a), p.basic.id = T(16), p.basic.key = wn.key, p.settings.value = i, p.settings.text = o, p;
|
|
6108
6138
|
}
|
|
6109
|
-
const Un = B(K);
|
|
6110
|
-
Un.key = "backgroundColor";
|
|
6111
|
-
Un.name = "x-runtime-lib.backgroundColor";
|
|
6112
6139
|
const On = B(K);
|
|
6113
|
-
On.key = "
|
|
6114
|
-
On.name = "x-runtime-lib.
|
|
6140
|
+
On.key = "backgroundColor";
|
|
6141
|
+
On.name = "x-runtime-lib.backgroundColor";
|
|
6142
|
+
const Un = B(K);
|
|
6143
|
+
Un.key = "selectedColor";
|
|
6144
|
+
Un.name = "x-runtime-lib.selectedColor";
|
|
6115
6145
|
const Xn = B(K);
|
|
6116
6146
|
Xn.key = "sliderColor";
|
|
6117
6147
|
Xn.name = "x-runtime-lib.sliderColor";
|
|
@@ -6191,13 +6221,13 @@ const Gi = {
|
|
|
6191
6221
|
{
|
|
6192
6222
|
key: "color",
|
|
6193
6223
|
name: "x-runtime-lib.color",
|
|
6194
|
-
children: [
|
|
6224
|
+
children: [On, Un, Xn]
|
|
6195
6225
|
}
|
|
6196
6226
|
]
|
|
6197
6227
|
}, Vn = {
|
|
6198
6228
|
key: Et,
|
|
6199
6229
|
name: "x-runtime-lib.tabs",
|
|
6200
|
-
comp:
|
|
6230
|
+
comp: Ol,
|
|
6201
6231
|
props: {
|
|
6202
6232
|
pageCommon: [y, Gi],
|
|
6203
6233
|
compCommon: [y, Gi]
|
|
@@ -6311,7 +6341,7 @@ const Hi = {
|
|
|
6311
6341
|
}, ye = {
|
|
6312
6342
|
key: Nt,
|
|
6313
6343
|
name: "x-runtime-lib.text",
|
|
6314
|
-
comp:
|
|
6344
|
+
comp: Ul,
|
|
6315
6345
|
props: {
|
|
6316
6346
|
pageCommon: [y, Hi],
|
|
6317
6347
|
compCommon: [y, Hi]
|
|
@@ -6409,7 +6439,7 @@ const ji = {
|
|
|
6409
6439
|
}
|
|
6410
6440
|
]
|
|
6411
6441
|
}, $n = {
|
|
6412
|
-
key:
|
|
6442
|
+
key: Mt,
|
|
6413
6443
|
name: "x-runtime-lib.textarea",
|
|
6414
6444
|
comp: Xl,
|
|
6415
6445
|
props: {
|
|
@@ -6561,9 +6591,9 @@ const pu = B(K), du = B(K), Ki = {
|
|
|
6561
6591
|
}
|
|
6562
6592
|
]
|
|
6563
6593
|
}, Sn = {
|
|
6564
|
-
key:
|
|
6594
|
+
key: Dt,
|
|
6565
6595
|
name: "x-runtime-lib.timeline",
|
|
6566
|
-
comp:
|
|
6596
|
+
comp: Jl,
|
|
6567
6597
|
props: {
|
|
6568
6598
|
pageCommon: [y, Ki],
|
|
6569
6599
|
compCommon: [y, Ki]
|
|
@@ -6647,7 +6677,7 @@ function yu(t, e, i) {
|
|
|
6647
6677
|
const a = {};
|
|
6648
6678
|
return P(a, s), a.basic.id = T(16), a.basic.key = ye.key, a.settings.text = i, a.settings.style.xs = "h6", a;
|
|
6649
6679
|
}
|
|
6650
|
-
const
|
|
6680
|
+
const Oi = {
|
|
6651
6681
|
key: "settings",
|
|
6652
6682
|
name: "x-runtime-lib.settings",
|
|
6653
6683
|
children: [
|
|
@@ -6700,8 +6730,8 @@ const Ui = {
|
|
|
6700
6730
|
name: "x-runtime-lib.window",
|
|
6701
6731
|
comp: ea,
|
|
6702
6732
|
props: {
|
|
6703
|
-
pageCommon: [y,
|
|
6704
|
-
compCommon: [y,
|
|
6733
|
+
pageCommon: [y, Oi],
|
|
6734
|
+
compCommon: [y, Oi]
|
|
6705
6735
|
},
|
|
6706
6736
|
events: [],
|
|
6707
6737
|
methods: [],
|
|
@@ -6843,13 +6873,13 @@ const hu = [
|
|
|
6843
6873
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6844
6874
|
{ title: "x-runtime-lib.show", value: "show" },
|
|
6845
6875
|
{ title: "x-runtime-lib.always", value: "always" }
|
|
6846
|
-
],
|
|
6876
|
+
], Mu = [
|
|
6847
6877
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6848
6878
|
{ title: "x-runtime-lib.center", value: "center" }
|
|
6849
|
-
],
|
|
6879
|
+
], Ru = [
|
|
6850
6880
|
{ title: "x-runtime-lib.horizontal", value: "horizontal" },
|
|
6851
6881
|
{ title: "x-runtime-lib.vertical", value: "vertical" }
|
|
6852
|
-
],
|
|
6882
|
+
], Du = [
|
|
6853
6883
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6854
6884
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6855
6885
|
{ title: "x-runtime-lib.start", value: "start" }
|
|
@@ -6881,9 +6911,9 @@ const hu = [
|
|
|
6881
6911
|
textStyleItemsV1: Wu,
|
|
6882
6912
|
themeColorItemsV1: Eu,
|
|
6883
6913
|
thumbLabelItemsV1: Nu,
|
|
6884
|
-
timelineAlignItemsV1:
|
|
6885
|
-
timelineDirectionItemsV1:
|
|
6886
|
-
timelineSideItemsV1:
|
|
6914
|
+
timelineAlignItemsV1: Mu,
|
|
6915
|
+
timelineDirectionItemsV1: Ru,
|
|
6916
|
+
timelineSideItemsV1: Du,
|
|
6887
6917
|
timelineTruncateLineItemsV1: Fu
|
|
6888
6918
|
}, Symbol.toStringTag, { value: "Module" })), Hu = [
|
|
6889
6919
|
{
|
|
@@ -6918,7 +6948,7 @@ const hu = [
|
|
|
6918
6948
|
title: "x-runtime-lib.pixel",
|
|
6919
6949
|
value: "pixel",
|
|
6920
6950
|
ui: "pixelInput",
|
|
6921
|
-
validator:
|
|
6951
|
+
validator: Oe,
|
|
6922
6952
|
default: "0px",
|
|
6923
6953
|
precision: 0,
|
|
6924
6954
|
min: 0,
|
|
@@ -6966,7 +6996,7 @@ const hu = [
|
|
|
6966
6996
|
title: "x-runtime-lib.pixel",
|
|
6967
6997
|
value: "pixel",
|
|
6968
6998
|
ui: "pixelInput",
|
|
6969
|
-
validator:
|
|
6999
|
+
validator: Oe,
|
|
6970
7000
|
default: "0px"
|
|
6971
7001
|
},
|
|
6972
7002
|
{
|
|
@@ -6977,7 +7007,7 @@ const hu = [
|
|
|
6977
7007
|
precision: 6,
|
|
6978
7008
|
default: "0%"
|
|
6979
7009
|
}
|
|
6980
|
-
],
|
|
7010
|
+
], Ou = [
|
|
6981
7011
|
{
|
|
6982
7012
|
title: "x-runtime-lib.notSet",
|
|
6983
7013
|
value: "",
|
|
@@ -6989,7 +7019,7 @@ const hu = [
|
|
|
6989
7019
|
title: "x-runtime-lib.pixel",
|
|
6990
7020
|
value: "pixel",
|
|
6991
7021
|
ui: "pixelInput",
|
|
6992
|
-
validator:
|
|
7022
|
+
validator: Oe,
|
|
6993
7023
|
min: 0,
|
|
6994
7024
|
default: "0px"
|
|
6995
7025
|
},
|
|
@@ -7002,7 +7032,7 @@ const hu = [
|
|
|
7002
7032
|
min: 0,
|
|
7003
7033
|
default: "0%"
|
|
7004
7034
|
}
|
|
7005
|
-
],
|
|
7035
|
+
], Uu = [
|
|
7006
7036
|
{
|
|
7007
7037
|
title: "x-runtime-lib.notSet",
|
|
7008
7038
|
value: "",
|
|
@@ -7014,7 +7044,7 @@ const hu = [
|
|
|
7014
7044
|
title: "x-runtime-lib.pixel",
|
|
7015
7045
|
value: "pixel",
|
|
7016
7046
|
ui: "pixelInput",
|
|
7017
|
-
validator:
|
|
7047
|
+
validator: Oe,
|
|
7018
7048
|
min: 0,
|
|
7019
7049
|
default: "0px"
|
|
7020
7050
|
},
|
|
@@ -7078,21 +7108,21 @@ const hu = [
|
|
|
7078
7108
|
validator: (t) => t === "bottom",
|
|
7079
7109
|
default: "bottom"
|
|
7080
7110
|
}
|
|
7081
|
-
],
|
|
7111
|
+
], Ju = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7082
7112
|
__proto__: null,
|
|
7083
7113
|
borderWidthTypesV1: Hu,
|
|
7084
7114
|
leftRightTypesV1: ju,
|
|
7085
7115
|
marginTypesV1: Ku,
|
|
7086
|
-
paddingTypesV1:
|
|
7087
|
-
sizeTypesV1:
|
|
7116
|
+
paddingTypesV1: Ou,
|
|
7117
|
+
sizeTypesV1: Uu,
|
|
7088
7118
|
tableColumnAlignTypesV1: Xu,
|
|
7089
7119
|
topBottomTypesV1: Yu
|
|
7090
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
7120
|
+
}, Symbol.toStringTag, { value: "Module" })), Zu = [
|
|
7091
7121
|
{
|
|
7092
7122
|
key: "containment",
|
|
7093
7123
|
name: "x-runtime-lib.containment",
|
|
7094
7124
|
items: [
|
|
7095
|
-
|
|
7125
|
+
Ze,
|
|
7096
7126
|
et,
|
|
7097
7127
|
nt,
|
|
7098
7128
|
rt,
|
|
@@ -7112,8 +7142,8 @@ const hu = [
|
|
|
7112
7142
|
items: [
|
|
7113
7143
|
dt,
|
|
7114
7144
|
Nt,
|
|
7115
|
-
Dt,
|
|
7116
7145
|
Rt,
|
|
7146
|
+
Mt,
|
|
7117
7147
|
kt,
|
|
7118
7148
|
Pt,
|
|
7119
7149
|
st,
|
|
@@ -7128,14 +7158,14 @@ const hu = [
|
|
|
7128
7158
|
{
|
|
7129
7159
|
key: "dataDisplay",
|
|
7130
7160
|
name: "x-runtime-lib.dataDisplay",
|
|
7131
|
-
items: [
|
|
7161
|
+
items: [Dn, lt, Ye, ht]
|
|
7132
7162
|
},
|
|
7133
7163
|
{
|
|
7134
7164
|
key: "selection",
|
|
7135
7165
|
name: "x-runtime-lib.selection",
|
|
7136
7166
|
items: [
|
|
7137
7167
|
Qe,
|
|
7138
|
-
|
|
7168
|
+
qe,
|
|
7139
7169
|
it,
|
|
7140
7170
|
Bt,
|
|
7141
7171
|
Ft
|
|
@@ -7144,7 +7174,7 @@ const hu = [
|
|
|
7144
7174
|
{
|
|
7145
7175
|
key: "feedback",
|
|
7146
7176
|
name: "x-runtime-lib.feedback",
|
|
7147
|
-
items: [Xe, Tt,
|
|
7177
|
+
items: [Xe, Tt, Dt]
|
|
7148
7178
|
},
|
|
7149
7179
|
{
|
|
7150
7180
|
key: "imagesAndIcons",
|
|
@@ -7159,9 +7189,9 @@ const hu = [
|
|
|
7159
7189
|
{
|
|
7160
7190
|
key: "dynamic",
|
|
7161
7191
|
name: "x-runtime-lib.dynamic",
|
|
7162
|
-
items: [
|
|
7192
|
+
items: [De, Mn, Rn]
|
|
7163
7193
|
}
|
|
7164
|
-
],
|
|
7194
|
+
], qu = [
|
|
7165
7195
|
{
|
|
7166
7196
|
key: "objects",
|
|
7167
7197
|
name: "x-runtime-lib.objects",
|
|
@@ -7170,13 +7200,13 @@ const hu = [
|
|
|
7170
7200
|
{
|
|
7171
7201
|
key: "geometries",
|
|
7172
7202
|
name: "x-runtime-lib.geometries",
|
|
7173
|
-
items: [
|
|
7203
|
+
items: [Je, At]
|
|
7174
7204
|
},
|
|
7175
7205
|
{
|
|
7176
7206
|
key: "lights",
|
|
7177
7207
|
name: "x-runtime-lib.lights",
|
|
7178
7208
|
items: [
|
|
7179
|
-
|
|
7209
|
+
Ue,
|
|
7180
7210
|
ct,
|
|
7181
7211
|
It,
|
|
7182
7212
|
Lt
|
|
@@ -7197,7 +7227,7 @@ const hu = [
|
|
|
7197
7227
|
key: "containment",
|
|
7198
7228
|
name: "x-runtime-lib.containment",
|
|
7199
7229
|
items: [
|
|
7200
|
-
|
|
7230
|
+
Ze,
|
|
7201
7231
|
et,
|
|
7202
7232
|
nt,
|
|
7203
7233
|
rt,
|
|
@@ -7217,8 +7247,8 @@ const hu = [
|
|
|
7217
7247
|
items: [
|
|
7218
7248
|
dt,
|
|
7219
7249
|
Nt,
|
|
7220
|
-
Dt,
|
|
7221
7250
|
Rt,
|
|
7251
|
+
Mt,
|
|
7222
7252
|
kt,
|
|
7223
7253
|
Pt,
|
|
7224
7254
|
st,
|
|
@@ -7233,14 +7263,14 @@ const hu = [
|
|
|
7233
7263
|
{
|
|
7234
7264
|
key: "dataDisplay",
|
|
7235
7265
|
name: "x-runtime-lib.dataDisplay",
|
|
7236
|
-
items: [
|
|
7266
|
+
items: [Dn, lt, Ye, ht]
|
|
7237
7267
|
},
|
|
7238
7268
|
{
|
|
7239
7269
|
key: "selection",
|
|
7240
7270
|
name: "x-runtime-lib.selection",
|
|
7241
7271
|
items: [
|
|
7242
7272
|
Qe,
|
|
7243
|
-
|
|
7273
|
+
qe,
|
|
7244
7274
|
it,
|
|
7245
7275
|
Bt,
|
|
7246
7276
|
Ft
|
|
@@ -7249,7 +7279,7 @@ const hu = [
|
|
|
7249
7279
|
{
|
|
7250
7280
|
key: "feedback",
|
|
7251
7281
|
name: "x-runtime-lib.feedback",
|
|
7252
|
-
items: [Xe, Tt,
|
|
7282
|
+
items: [Xe, Tt, Dt]
|
|
7253
7283
|
},
|
|
7254
7284
|
{
|
|
7255
7285
|
key: "imagesAndIcons",
|
|
@@ -7264,7 +7294,7 @@ const hu = [
|
|
|
7264
7294
|
{
|
|
7265
7295
|
key: "dynamic",
|
|
7266
7296
|
name: "x-runtime-lib.dynamic",
|
|
7267
|
-
items: [
|
|
7297
|
+
items: [De, Mn, Rn]
|
|
7268
7298
|
}
|
|
7269
7299
|
], ec = [
|
|
7270
7300
|
{
|
|
@@ -7275,13 +7305,13 @@ const hu = [
|
|
|
7275
7305
|
{
|
|
7276
7306
|
key: "geometries",
|
|
7277
7307
|
name: "x-runtime-lib.geometries",
|
|
7278
|
-
items: [
|
|
7308
|
+
items: [Je, At]
|
|
7279
7309
|
},
|
|
7280
7310
|
{
|
|
7281
7311
|
key: "lights",
|
|
7282
7312
|
name: "x-runtime-lib.lights",
|
|
7283
7313
|
items: [
|
|
7284
|
-
|
|
7314
|
+
Ue,
|
|
7285
7315
|
ct,
|
|
7286
7316
|
It,
|
|
7287
7317
|
Lt
|
|
@@ -7300,17 +7330,17 @@ const hu = [
|
|
|
7300
7330
|
], tc = {
|
|
7301
7331
|
version: "v1",
|
|
7302
7332
|
globalityKey: tn,
|
|
7303
|
-
refKey:
|
|
7333
|
+
refKey: De,
|
|
7304
7334
|
items: { ...Gu },
|
|
7305
|
-
types: { ...
|
|
7335
|
+
types: { ...Ju },
|
|
7306
7336
|
elements: /* @__PURE__ */ new Set([
|
|
7307
|
-
|
|
7337
|
+
Ue,
|
|
7308
7338
|
Xe,
|
|
7309
7339
|
Ye,
|
|
7310
|
-
qe,
|
|
7311
|
-
Nn,
|
|
7312
7340
|
Je,
|
|
7341
|
+
Nn,
|
|
7313
7342
|
Ze,
|
|
7343
|
+
qe,
|
|
7314
7344
|
Qe,
|
|
7315
7345
|
et,
|
|
7316
7346
|
tt,
|
|
@@ -7335,7 +7365,7 @@ const hu = [
|
|
|
7335
7365
|
gt,
|
|
7336
7366
|
xt,
|
|
7337
7367
|
vt,
|
|
7338
|
-
|
|
7368
|
+
Mn,
|
|
7339
7369
|
kt,
|
|
7340
7370
|
_t,
|
|
7341
7371
|
wt,
|
|
@@ -7346,9 +7376,9 @@ const hu = [
|
|
|
7346
7376
|
St,
|
|
7347
7377
|
Ct,
|
|
7348
7378
|
Tt,
|
|
7349
|
-
|
|
7379
|
+
Rn,
|
|
7350
7380
|
Pt,
|
|
7351
|
-
|
|
7381
|
+
De,
|
|
7352
7382
|
zt,
|
|
7353
7383
|
At,
|
|
7354
7384
|
Lt,
|
|
@@ -7359,12 +7389,12 @@ const hu = [
|
|
|
7359
7389
|
ko,
|
|
7360
7390
|
Wt,
|
|
7361
7391
|
_o,
|
|
7362
|
-
|
|
7392
|
+
Dn,
|
|
7363
7393
|
Et,
|
|
7364
7394
|
Nt,
|
|
7395
|
+
Mt,
|
|
7365
7396
|
Rt,
|
|
7366
7397
|
Dt,
|
|
7367
|
-
Mt,
|
|
7368
7398
|
wo,
|
|
7369
7399
|
Ft,
|
|
7370
7400
|
Vo
|
|
@@ -7372,8 +7402,8 @@ const hu = [
|
|
|
7372
7402
|
groups: {
|
|
7373
7403
|
pageCommon: Qu,
|
|
7374
7404
|
pageScene: ec,
|
|
7375
|
-
compCommon:
|
|
7376
|
-
compScene:
|
|
7405
|
+
compCommon: Zu,
|
|
7406
|
+
compScene: qu
|
|
7377
7407
|
}
|
|
7378
7408
|
}, $o = {
|
|
7379
7409
|
v1: tc
|
|
@@ -7390,7 +7420,7 @@ function A(t, e) {
|
|
|
7390
7420
|
}
|
|
7391
7421
|
return `${t}${as(e)}`;
|
|
7392
7422
|
}
|
|
7393
|
-
function
|
|
7423
|
+
function Ui(t, e) {
|
|
7394
7424
|
if (t.array)
|
|
7395
7425
|
return e ? B(t.default) : B(t.defaultArray);
|
|
7396
7426
|
{
|
|
@@ -7403,15 +7433,15 @@ function P(t, e) {
|
|
|
7403
7433
|
if (l.ui) {
|
|
7404
7434
|
if (l.ui === "strInput" && l.static)
|
|
7405
7435
|
return;
|
|
7406
|
-
o[l.key] =
|
|
7436
|
+
o[l.key] = Ui(l);
|
|
7407
7437
|
} else
|
|
7408
|
-
l.array ? o[l.key] =
|
|
7438
|
+
l.array ? o[l.key] = Ui(l) : l.children.forEach((s) => {
|
|
7409
7439
|
o[l.key] || (o[l.key] = {}), i(o[l.key], s);
|
|
7410
7440
|
});
|
|
7411
7441
|
}
|
|
7412
7442
|
e.forEach((o) => i(t, o));
|
|
7413
7443
|
}
|
|
7414
|
-
function
|
|
7444
|
+
function Fc(t, e, i, o, l) {
|
|
7415
7445
|
const s = `type=${t} subtype=${e} version=${i} ref=${o} keyOrRefid=${l}`, a = A(t, e);
|
|
7416
7446
|
if (!a) {
|
|
7417
7447
|
console.error(`spawnNode prop tag not found, ${s}`);
|
|
@@ -7476,7 +7506,7 @@ function Ec(t, e, i, o, l) {
|
|
|
7476
7506
|
}
|
|
7477
7507
|
}
|
|
7478
7508
|
}
|
|
7479
|
-
function
|
|
7509
|
+
function Gc(t, e) {
|
|
7480
7510
|
function i(o) {
|
|
7481
7511
|
if (o.basic.id === e)
|
|
7482
7512
|
return o;
|
|
@@ -7500,56 +7530,56 @@ function nc(t) {
|
|
|
7500
7530
|
const i = B(t);
|
|
7501
7531
|
return e(i), i;
|
|
7502
7532
|
}
|
|
7503
|
-
function
|
|
7533
|
+
function Hc(t) {
|
|
7504
7534
|
const e = [];
|
|
7505
7535
|
return t.forEach((i) => {
|
|
7506
7536
|
e.push(nc(i));
|
|
7507
7537
|
}), e;
|
|
7508
7538
|
}
|
|
7509
7539
|
const Io = "runtimeOrg", So = "runtimeEnv", Co = "runtimeMode", To = "runtimeDevice", Po = "runtimeDark", zo = "runtimeType", Ao = "runtimeData", Lo = "runtimeDepends", Bo = "runtimeSandbox";
|
|
7510
|
-
function
|
|
7540
|
+
function jc(t) {
|
|
7511
7541
|
se(Io, t);
|
|
7512
7542
|
}
|
|
7513
7543
|
function ic() {
|
|
7514
7544
|
return oe(Io);
|
|
7515
7545
|
}
|
|
7516
|
-
function
|
|
7546
|
+
function Kc(t) {
|
|
7517
7547
|
se(So, t);
|
|
7518
7548
|
}
|
|
7519
7549
|
function oc() {
|
|
7520
7550
|
return oe(So);
|
|
7521
7551
|
}
|
|
7522
|
-
function
|
|
7552
|
+
function Oc(t) {
|
|
7523
7553
|
se(Co, t);
|
|
7524
7554
|
}
|
|
7525
7555
|
function G() {
|
|
7526
7556
|
return oe(Co);
|
|
7527
7557
|
}
|
|
7528
|
-
function
|
|
7558
|
+
function Uc(t) {
|
|
7529
7559
|
se(To, zn(t));
|
|
7530
7560
|
}
|
|
7531
7561
|
function $e() {
|
|
7532
7562
|
return oe(To);
|
|
7533
7563
|
}
|
|
7534
|
-
function
|
|
7564
|
+
function Xc(t) {
|
|
7535
7565
|
se(Po, zn(t));
|
|
7536
7566
|
}
|
|
7537
7567
|
function We() {
|
|
7538
7568
|
return oe(Po);
|
|
7539
7569
|
}
|
|
7540
|
-
function
|
|
7570
|
+
function Yc(t) {
|
|
7541
7571
|
se(zo, t);
|
|
7542
7572
|
}
|
|
7543
7573
|
function pe() {
|
|
7544
7574
|
return oe(zo);
|
|
7545
7575
|
}
|
|
7546
|
-
function
|
|
7576
|
+
function Jc(t) {
|
|
7547
7577
|
se(Ao, t);
|
|
7548
7578
|
}
|
|
7549
7579
|
function de() {
|
|
7550
7580
|
return oe(Ao);
|
|
7551
7581
|
}
|
|
7552
|
-
function
|
|
7582
|
+
function Zc(t) {
|
|
7553
7583
|
se(Lo, zn(t));
|
|
7554
7584
|
}
|
|
7555
7585
|
function sc() {
|
|
@@ -7565,7 +7595,7 @@ function Se(t) {
|
|
|
7565
7595
|
const e = [t.type];
|
|
7566
7596
|
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("@");
|
|
7567
7597
|
}
|
|
7568
|
-
function
|
|
7598
|
+
function Me(t, e, i, o, l) {
|
|
7569
7599
|
const { watchEffect: s, bind: a } = e;
|
|
7570
7600
|
if (s[i])
|
|
7571
7601
|
for (const p of s[i]) {
|
|
@@ -7827,7 +7857,7 @@ function cc(t, e, i) {
|
|
|
7827
7857
|
}
|
|
7828
7858
|
function m(u, c, f, h) {
|
|
7829
7859
|
const x = e.pseudoToNative(u), g = e.pseudoToNative(c), w = e.pseudoToNative(f);
|
|
7830
|
-
|
|
7860
|
+
Oo({ title: x, label: g, value: w }).then((C) => {
|
|
7831
7861
|
h(e.nativeToPseudo(C)), e.run();
|
|
7832
7862
|
});
|
|
7833
7863
|
}
|
|
@@ -8109,7 +8139,7 @@ function gc(t) {
|
|
|
8109
8139
|
g ?? x
|
|
8110
8140
|
]), t.value?.code.reactivity)) {
|
|
8111
8141
|
let w = "";
|
|
8112
|
-
h instanceof Array ? w = h.join(".") : w = h,
|
|
8142
|
+
h instanceof Array ? w = h.join(".") : w = h, Me(
|
|
8113
8143
|
u,
|
|
8114
8144
|
t.value.code.reactivity,
|
|
8115
8145
|
Se({
|
|
@@ -8126,7 +8156,7 @@ function gc(t) {
|
|
|
8126
8156
|
`customPropChange@${f}`,
|
|
8127
8157
|
h,
|
|
8128
8158
|
x ?? h
|
|
8129
|
-
]), t.value?.code.reactivity &&
|
|
8159
|
+
]), t.value?.code.reactivity && Me(
|
|
8130
8160
|
u,
|
|
8131
8161
|
t.value.code.reactivity,
|
|
8132
8162
|
Se({ type: "customProp", propId: f }),
|
|
@@ -8134,7 +8164,7 @@ function gc(t) {
|
|
|
8134
8164
|
x
|
|
8135
8165
|
));
|
|
8136
8166
|
}, b = (f, h, x) => {
|
|
8137
|
-
o !== "runtime" && o !== "preview" || t.value?.code.reactivity &&
|
|
8167
|
+
o !== "runtime" && o !== "preview" || t.value?.code.reactivity && Me(
|
|
8138
8168
|
u,
|
|
8139
8169
|
t.value.code.reactivity,
|
|
8140
8170
|
Se({ type: "customState", stateId: f }),
|
|
@@ -8146,7 +8176,7 @@ function gc(t) {
|
|
|
8146
8176
|
`adaptSlotProp@${f}`,
|
|
8147
8177
|
h,
|
|
8148
8178
|
x ?? h
|
|
8149
|
-
]), t.value?.code.reactivity &&
|
|
8179
|
+
]), t.value?.code.reactivity && Me(
|
|
8150
8180
|
u,
|
|
8151
8181
|
t.value.code.reactivity,
|
|
8152
8182
|
Se({ type: "adaptSlotProp", propId: f }),
|
|
@@ -8163,14 +8193,14 @@ function gc(t) {
|
|
|
8163
8193
|
const c = () => {
|
|
8164
8194
|
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));
|
|
8165
8195
|
};
|
|
8166
|
-
c(),
|
|
8196
|
+
c(), q(t, () => {
|
|
8167
8197
|
c();
|
|
8168
8198
|
}), Ke(() => {
|
|
8169
8199
|
u.destroyInterpreter();
|
|
8170
|
-
}), (o === "runtime" || o === "preview") &&
|
|
8200
|
+
}), (o === "runtime" || o === "preview") && q(
|
|
8171
8201
|
s,
|
|
8172
8202
|
(f, h) => {
|
|
8173
|
-
const x =
|
|
8203
|
+
const x = Re(f.width), g = Re(h?.width ?? f.width);
|
|
8174
8204
|
u.callFunction("__triggerEventV1__", [
|
|
8175
8205
|
Ce("elementEvent", "screenSizeChange", "globality"),
|
|
8176
8206
|
x,
|
|
@@ -8178,7 +8208,7 @@ function gc(t) {
|
|
|
8178
8208
|
]);
|
|
8179
8209
|
},
|
|
8180
8210
|
{ immediate: !0 }
|
|
8181
|
-
), (o === "runtime" || o === "preview") &&
|
|
8211
|
+
), (o === "runtime" || o === "preview") && q(
|
|
8182
8212
|
a,
|
|
8183
8213
|
(f) => {
|
|
8184
8214
|
u.callFunction("__triggerEventV1__", [
|
|
@@ -8195,13 +8225,13 @@ const xc = (t, e, i) => {
|
|
|
8195
8225
|
(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." : ""))));
|
|
8196
8226
|
});
|
|
8197
8227
|
};
|
|
8198
|
-
async function
|
|
8228
|
+
async function qc(t) {
|
|
8199
8229
|
return (await xc(/* @__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;
|
|
8200
8230
|
}
|
|
8201
8231
|
export {
|
|
8202
8232
|
hc as Sandbox,
|
|
8203
8233
|
va as ambientLightV1,
|
|
8204
|
-
|
|
8234
|
+
Rc as badgeV1,
|
|
8205
8235
|
sn as barChartV1,
|
|
8206
8236
|
mc as bind,
|
|
8207
8237
|
nn as boxGeometryV1,
|
|
@@ -8209,7 +8239,7 @@ export {
|
|
|
8209
8239
|
Pa as btnGroupV1,
|
|
8210
8240
|
za as btnToggleV1,
|
|
8211
8241
|
ln as btnV1,
|
|
8212
|
-
|
|
8242
|
+
Re as calcBreakpoint,
|
|
8213
8243
|
Ae as cardV1,
|
|
8214
8244
|
La as checkboxV1,
|
|
8215
8245
|
un as chipGroupV1,
|
|
@@ -8218,29 +8248,29 @@ export {
|
|
|
8218
8248
|
Na as comboboxV1,
|
|
8219
8249
|
ys as compTypes,
|
|
8220
8250
|
cn as containerV1,
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
|
|
8251
|
+
Ma as dataTableV1,
|
|
8252
|
+
Ra as datePickerV1,
|
|
8253
|
+
Da as dialogV1,
|
|
8224
8254
|
ka as directionalLightV1,
|
|
8225
8255
|
nc as duplicateNode,
|
|
8226
|
-
|
|
8256
|
+
Hc as duplicateNodes,
|
|
8227
8257
|
Te as elements,
|
|
8228
8258
|
Tc as ensureContext,
|
|
8229
|
-
|
|
8259
|
+
Dc as fileInputV1,
|
|
8230
8260
|
mn as flexLayoutEntryV1,
|
|
8231
8261
|
Le as flexLayoutV1,
|
|
8232
8262
|
fn as formV1,
|
|
8233
8263
|
T as genId,
|
|
8234
8264
|
Ie as getBreakpointProp,
|
|
8235
8265
|
ke as getField,
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8266
|
+
Jn as getIndexOfBreakpoint,
|
|
8267
|
+
Gc as getNode,
|
|
8268
|
+
Ui as getPropDefault,
|
|
8239
8269
|
A as getPropTag,
|
|
8240
8270
|
Cc as getTypeColor,
|
|
8241
8271
|
Sa as globalityV1,
|
|
8242
8272
|
Va as groupV1,
|
|
8243
|
-
|
|
8273
|
+
Oa as iconV1,
|
|
8244
8274
|
P as initProps,
|
|
8245
8275
|
We as injectDark,
|
|
8246
8276
|
de as injectData,
|
|
@@ -8255,14 +8285,16 @@ export {
|
|
|
8255
8285
|
gs as isLocaleOfMethodKind,
|
|
8256
8286
|
hs as isLocaleOfPropertyKind,
|
|
8257
8287
|
An as isPercentStr,
|
|
8258
|
-
|
|
8288
|
+
Oe as isPixelStr,
|
|
8259
8289
|
ma as keyboardControlsV1,
|
|
8260
8290
|
rn as lineChartV1,
|
|
8261
|
-
|
|
8291
|
+
qc as loadLocaleMessageRuntime,
|
|
8292
|
+
Ce as makeEventId,
|
|
8293
|
+
Ac as makeMethodId,
|
|
8294
|
+
Pc as makePropertyId,
|
|
8262
8295
|
Se as makeTriggerId,
|
|
8263
|
-
Ce as makeUniqueEventId,
|
|
8264
8296
|
pa as mapControlsV1,
|
|
8265
|
-
|
|
8297
|
+
Ua as menuV1,
|
|
8266
8298
|
Pe as meshBasicMaterialV1,
|
|
8267
8299
|
ze as meshV1,
|
|
8268
8300
|
bn as numberInputV1,
|
|
@@ -8271,29 +8303,29 @@ export {
|
|
|
8271
8303
|
bs as pageTypes,
|
|
8272
8304
|
Ya as paginationV1,
|
|
8273
8305
|
Xt as parsePercentStr,
|
|
8274
|
-
|
|
8306
|
+
Wc as parsePixelStr,
|
|
8275
8307
|
la as perspectiveCameraV1,
|
|
8276
8308
|
$o as pkgs,
|
|
8277
8309
|
_a as pointLightV1,
|
|
8278
|
-
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
|
|
8282
|
-
|
|
8283
|
-
|
|
8284
|
-
|
|
8310
|
+
Xc as provideDark,
|
|
8311
|
+
Jc as provideData,
|
|
8312
|
+
Zc as provideDepends,
|
|
8313
|
+
Uc as provideDevice,
|
|
8314
|
+
Kc as provideEnv,
|
|
8315
|
+
Oc as provideMode,
|
|
8316
|
+
jc as provideOrg,
|
|
8285
8317
|
rc as provideSandbox,
|
|
8286
|
-
|
|
8318
|
+
Yc as provideType,
|
|
8287
8319
|
hn as radioGroupV1,
|
|
8288
8320
|
yn as radioV1,
|
|
8289
|
-
|
|
8321
|
+
qa as rangeSliderV1,
|
|
8290
8322
|
Qa as ratingV1,
|
|
8291
8323
|
vs as reverseBreakpoints,
|
|
8292
8324
|
yc as runtime,
|
|
8293
8325
|
eu as selectV1,
|
|
8294
8326
|
ao as setField,
|
|
8295
8327
|
tu as sliderV1,
|
|
8296
|
-
|
|
8328
|
+
Fc as spawnNode,
|
|
8297
8329
|
on as sphereGeometryV1,
|
|
8298
8330
|
wa as spotLightV1,
|
|
8299
8331
|
gn as stepperHeaderV1,
|
|
@@ -8309,11 +8341,14 @@ export {
|
|
|
8309
8341
|
$n as textareaV1,
|
|
8310
8342
|
In as timelineItemV1,
|
|
8311
8343
|
Sn as timelineV1,
|
|
8312
|
-
|
|
8313
|
-
|
|
8314
|
-
|
|
8315
|
-
|
|
8344
|
+
Mc as toEventName,
|
|
8345
|
+
Nc as toMethodName,
|
|
8346
|
+
Ec as toPropertyName,
|
|
8347
|
+
Me as triggerReactivity,
|
|
8316
8348
|
Sc as types,
|
|
8349
|
+
Bc as unwrapEventId,
|
|
8350
|
+
Lc as unwrapMethodId,
|
|
8351
|
+
zc as unwrapPropertyId,
|
|
8317
8352
|
gc as useSandbox,
|
|
8318
8353
|
Cn as windowItemV1,
|
|
8319
8354
|
Tn as windowV1
|