x-runtime-lib 0.8.20 → 0.8.21
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 +1134 -1086
- package/dist/types/data.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/kind.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,91 +1,91 @@
|
|
|
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 Wo, onUnmounted 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 Wo, onUnmounted as je, createBlock as V, withCtx as I, createCommentVNode as ee, useTemplateRef as Ui, onMounted as Oi, nextTick as Xi, h as ae, resolveComponent as z, createVNode as H, isRef as U, createSlots as Tn, renderList as Eo, useId as Yi, withModifiers as No, normalizeClass as Ro, toDisplayString as Do, inject as oe, provide as se, readonly as Pn } from "vue";
|
|
2
2
|
import { CameraHelper as Ji, DirectionalLightHelper as Mo, PointLightHelper as Fo, SpotLightHelper as Go } from "three";
|
|
3
|
-
import { i as ne, q as
|
|
4
|
-
import { waitUtil as eo, eventBus as to, useViewStack as no, messageInfo as ss, messageSuccess as rs, messageWarning as io, messageError as oo, createAxios as ls,
|
|
3
|
+
import { i as ne, q as Le, u as Ho, r as Zi, e as qi, a as jo, b as Ko, c as Uo, d as Oo, f as Xo, g as Yo, h as Jo, j as Zo, k as B, l as Qi, X as qo, Y as Qo, K as es, m as ts, n as ns, o as is, I as os } from "./vendor.ghqz34q2.js";
|
|
4
|
+
import { waitUtil as eo, eventBus as to, useViewStack as no, globalObjects as ke, messageInfo as ss, messageSuccess as rs, messageWarning as io, messageError as oo, createAxios as ls, openConfirmDlg as as, openPromptDlg as us } from "x-essential-lib";
|
|
5
5
|
import { getErrorMessage as cs } from "x-error-lib";
|
|
6
6
|
import { useTheme as ms } from "vuetify";
|
|
7
7
|
import { useI18n as ps } from "vue-i18n";
|
|
8
8
|
const On = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
9
9
|
function T(t) {
|
|
10
10
|
let e = "";
|
|
11
|
-
for (let
|
|
12
|
-
const
|
|
13
|
-
e += On[
|
|
11
|
+
for (let o = 0; o < t; o++) {
|
|
12
|
+
const i = Math.floor(Math.random() * On.length);
|
|
13
|
+
e += On[i];
|
|
14
14
|
}
|
|
15
15
|
return e;
|
|
16
16
|
}
|
|
17
|
-
function
|
|
17
|
+
function Ke(t) {
|
|
18
18
|
if (typeof t != "string" || !t.endsWith("px"))
|
|
19
19
|
return !1;
|
|
20
|
-
const e = t.substring(0, t.length - 2),
|
|
21
|
-
return !(isNaN(
|
|
20
|
+
const e = t.substring(0, t.length - 2), o = parseFloat(e);
|
|
21
|
+
return !(isNaN(o) || o % 1 !== 0);
|
|
22
22
|
}
|
|
23
23
|
function zn(t) {
|
|
24
24
|
if (typeof t != "string" || !t.endsWith("%"))
|
|
25
25
|
return !1;
|
|
26
|
-
const e = t.substring(0, t.length - 1),
|
|
27
|
-
return !isNaN(
|
|
26
|
+
const e = t.substring(0, t.length - 1), o = parseFloat(e);
|
|
27
|
+
return !isNaN(o);
|
|
28
28
|
}
|
|
29
29
|
function _c(t) {
|
|
30
30
|
if (typeof t != "string" || !t.endsWith("px"))
|
|
31
31
|
return;
|
|
32
|
-
const e = t.substring(0, t.length - 2),
|
|
33
|
-
if (!isNaN(
|
|
34
|
-
return
|
|
32
|
+
const e = t.substring(0, t.length - 2), o = parseFloat(e);
|
|
33
|
+
if (!isNaN(o) && o % 1 === 0)
|
|
34
|
+
return o;
|
|
35
35
|
}
|
|
36
|
-
function
|
|
36
|
+
function Ot(t) {
|
|
37
37
|
if (typeof t != "string" || !t.endsWith("%"))
|
|
38
38
|
return;
|
|
39
|
-
const e = t.substring(0, t.length - 1),
|
|
40
|
-
if (!isNaN(
|
|
41
|
-
return
|
|
39
|
+
const e = t.substring(0, t.length - 1), o = parseFloat(e);
|
|
40
|
+
if (!isNaN(o))
|
|
41
|
+
return o;
|
|
42
42
|
}
|
|
43
43
|
const so = ["xs", "sm", "md", "lg", "xl"], ds = [...so].reverse();
|
|
44
|
-
function
|
|
44
|
+
function Re(t) {
|
|
45
45
|
return t < 600 ? "xs" : t < 960 ? "sm" : t < 1280 ? "md" : t < 1920 ? "lg" : "xl";
|
|
46
46
|
}
|
|
47
47
|
function Xn(t) {
|
|
48
48
|
return so.findIndex((e) => e === t);
|
|
49
49
|
}
|
|
50
|
-
function
|
|
51
|
-
let
|
|
52
|
-
for (const
|
|
53
|
-
if (Xn(
|
|
50
|
+
function Ie(t, e) {
|
|
51
|
+
let o;
|
|
52
|
+
for (const i of ds) {
|
|
53
|
+
if (Xn(i) < Xn(t))
|
|
54
54
|
break;
|
|
55
|
-
e[
|
|
55
|
+
e[i] && (o = e[i]);
|
|
56
56
|
}
|
|
57
|
-
return
|
|
57
|
+
return o;
|
|
58
58
|
}
|
|
59
59
|
function ve(t, e) {
|
|
60
|
-
let
|
|
61
|
-
if (typeof
|
|
60
|
+
let o = t;
|
|
61
|
+
if (typeof o != "object")
|
|
62
62
|
return;
|
|
63
|
-
let
|
|
64
|
-
if (e instanceof Array ?
|
|
65
|
-
for (const
|
|
66
|
-
if (typeof
|
|
63
|
+
let i = [];
|
|
64
|
+
if (e instanceof Array ? i = e : i = e.split("."), !(i.length <= 0)) {
|
|
65
|
+
for (const r of i) {
|
|
66
|
+
if (typeof o != "object")
|
|
67
67
|
return;
|
|
68
|
-
|
|
68
|
+
o = o[r];
|
|
69
69
|
}
|
|
70
|
-
return
|
|
70
|
+
return o;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
function ro(t, e,
|
|
74
|
-
let
|
|
75
|
-
if (typeof
|
|
73
|
+
function ro(t, e, o) {
|
|
74
|
+
let i = t;
|
|
75
|
+
if (typeof i != "object")
|
|
76
76
|
return;
|
|
77
|
-
let
|
|
78
|
-
if (e instanceof Array ?
|
|
77
|
+
let r = [];
|
|
78
|
+
if (e instanceof Array ? r = e : r = e.split("."), r.length <= 0)
|
|
79
79
|
return;
|
|
80
|
-
for (let a = 0; a <
|
|
81
|
-
const p =
|
|
82
|
-
|
|
80
|
+
for (let a = 0; a < r.length - 1; a++) {
|
|
81
|
+
const p = r[a];
|
|
82
|
+
i = i[p], i || (i = {});
|
|
83
83
|
}
|
|
84
|
-
const s =
|
|
85
|
-
|
|
84
|
+
const s = r[r.length - 1];
|
|
85
|
+
i[s] = o;
|
|
86
86
|
}
|
|
87
|
-
const
|
|
88
|
-
|
|
87
|
+
const Ce = {}, _ = (t) => {
|
|
88
|
+
Ce[t.key] = t;
|
|
89
89
|
}, fs = ["position", "rotation", "scale"], ye = /* @__PURE__ */ $({
|
|
90
90
|
__name: "index",
|
|
91
91
|
props: {
|
|
@@ -95,17 +95,17 @@ const Se = {}, _ = (t) => {
|
|
|
95
95
|
},
|
|
96
96
|
setup(t) {
|
|
97
97
|
const e = G();
|
|
98
|
-
return (
|
|
98
|
+
return (o, i) => n(e) === "editor" ? (v(), Y("TresMesh", {
|
|
99
99
|
key: 0,
|
|
100
100
|
position: t.position,
|
|
101
101
|
rotation: t.rotation,
|
|
102
102
|
scale: t.scale,
|
|
103
103
|
visible: !1
|
|
104
104
|
}, [
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
L(
|
|
108
|
-
], 8, fs)) : L(
|
|
105
|
+
i[0] || (i[0] = ie("TresBoxGeometry", { args: [1, 1, 1] }, null, -1)),
|
|
106
|
+
i[1] || (i[1] = ie("TresMeshBasicMaterial", null, null, -1)),
|
|
107
|
+
L(o.$slots, "default")
|
|
108
|
+
], 8, fs)) : L(o.$slots, "default", { key: 1 });
|
|
109
109
|
}
|
|
110
110
|
}), Z = /* @__PURE__ */ $({
|
|
111
111
|
__name: "index",
|
|
@@ -113,49 +113,49 @@ const Se = {}, _ = (t) => {
|
|
|
113
113
|
fitContent: { type: Boolean, default: !1 }
|
|
114
114
|
},
|
|
115
115
|
setup(t) {
|
|
116
|
-
const e = G(),
|
|
117
|
-
const
|
|
118
|
-
return t.fitContent && (
|
|
116
|
+
const e = G(), o = k(() => {
|
|
117
|
+
const i = {};
|
|
118
|
+
return t.fitContent && (i.width = "fit-content", i.height = "fit-content"), i;
|
|
119
119
|
});
|
|
120
|
-
return (
|
|
120
|
+
return (i, r) => n(e) === "editor" ? (v(), Y("div", {
|
|
121
121
|
key: 0,
|
|
122
|
-
style: Q(
|
|
122
|
+
style: Q(o.value)
|
|
123
123
|
}, [
|
|
124
|
-
L(
|
|
125
|
-
], 4)) : L(
|
|
124
|
+
L(i.$slots, "default")
|
|
125
|
+
], 4)) : L(i.$slots, "default", { key: 1 });
|
|
126
126
|
}
|
|
127
|
-
}), bs = (t, e,
|
|
128
|
-
const
|
|
129
|
-
if (
|
|
130
|
-
if (typeof
|
|
131
|
-
return JSON.parse(
|
|
127
|
+
}), bs = (t, e, o, i) => {
|
|
128
|
+
const r = t.getElementPropInner(e, o);
|
|
129
|
+
if (i) {
|
|
130
|
+
if (typeof r == "string")
|
|
131
|
+
return JSON.parse(r);
|
|
132
132
|
console.assert(!1);
|
|
133
133
|
return;
|
|
134
134
|
} else
|
|
135
|
-
return
|
|
136
|
-
}, ys = (t, e,
|
|
135
|
+
return r;
|
|
136
|
+
}, ys = (t, e, o, i, r) => {
|
|
137
137
|
let s;
|
|
138
|
-
|
|
138
|
+
r ? typeof i == "object" ? s = JSON.stringify(i, null, 2) : (console.assert(!1), s = "{}") : s = i, t.setElementPropInner(e, o, s);
|
|
139
139
|
};
|
|
140
|
-
function
|
|
141
|
-
const
|
|
140
|
+
function l(t, e, o) {
|
|
141
|
+
const i = G(), r = We(), s = ce();
|
|
142
142
|
return ue(() => {
|
|
143
|
-
let a = bs(
|
|
144
|
-
|
|
143
|
+
let a = bs(r, t.node, e, o);
|
|
144
|
+
i === "editor" && e[e.length - 1] === "readonly" && (a = !0), s.value = a;
|
|
145
145
|
}), q(s, (a, p) => {
|
|
146
|
-
ne(a, p) || ys(
|
|
146
|
+
ne(a, p) || ys(r, t.node, e, s.value, o);
|
|
147
147
|
}), { prop: s };
|
|
148
148
|
}
|
|
149
149
|
function me(t) {
|
|
150
|
-
const { prop: e } =
|
|
150
|
+
const { prop: e } = l(t, ["transform", "position", "x"]), { prop: o } = l(t, ["transform", "position", "y"]), { prop: i } = l(t, ["transform", "position", "z"]), { prop: r } = l(t, ["transform", "rotation", "x"]), { prop: s } = l(t, ["transform", "rotation", "y"]), { prop: a } = l(t, ["transform", "rotation", "z"]), { prop: p } = l(t, ["transform", "scale", "x"]), { prop: d } = l(t, ["transform", "scale", "y"]), { prop: b } = l(t, ["transform", "scale", "z"]), m = ce([0, 0, 0]), u = ce([0, 0, 0]), c = ce([1, 1, 1]);
|
|
151
151
|
return ue(() => {
|
|
152
|
-
m.value = [e.value,
|
|
152
|
+
m.value = [e.value, o.value, i.value];
|
|
153
153
|
}), ue(() => {
|
|
154
|
-
e.value = m.value[0],
|
|
154
|
+
e.value = m.value[0], o.value = m.value[1], i.value = m.value[2];
|
|
155
155
|
}), ue(() => {
|
|
156
|
-
u.value = [
|
|
156
|
+
u.value = [r.value, s.value, a.value];
|
|
157
157
|
}), ue(() => {
|
|
158
|
-
|
|
158
|
+
r.value = u.value[0], s.value = u.value[1], a.value = u.value[2];
|
|
159
159
|
}), ue(() => {
|
|
160
160
|
c.value = [p.value, d.value, b.value];
|
|
161
161
|
}), ue(() => {
|
|
@@ -163,62 +163,62 @@ function me(t) {
|
|
|
163
163
|
}), { position: m, rotation: u, scale: c };
|
|
164
164
|
}
|
|
165
165
|
function lo(t) {
|
|
166
|
-
const e = k(() => t.node.legend?.show),
|
|
167
|
-
function
|
|
168
|
-
|
|
166
|
+
const e = k(() => t.node.legend?.show), o = k(() => t.node.legend?.data);
|
|
167
|
+
function i(r) {
|
|
168
|
+
r.legend = {
|
|
169
169
|
show: e.value,
|
|
170
|
-
data:
|
|
170
|
+
data: o.value
|
|
171
171
|
};
|
|
172
172
|
}
|
|
173
|
-
return { show: e, data:
|
|
173
|
+
return { show: e, data: o, applyLegend: i };
|
|
174
174
|
}
|
|
175
175
|
function ao(t) {
|
|
176
176
|
const e = k(() => t.node.series);
|
|
177
|
-
function i
|
|
178
|
-
|
|
177
|
+
function o(i) {
|
|
178
|
+
i.series = e.value;
|
|
179
179
|
}
|
|
180
|
-
return { series: e, applySeries:
|
|
180
|
+
return { series: e, applySeries: o };
|
|
181
181
|
}
|
|
182
182
|
function uo(t) {
|
|
183
|
-
const e = k(() => t.node.title?.show),
|
|
184
|
-
function
|
|
183
|
+
const e = k(() => t.node.title?.show), o = k(() => t.node.title?.text), i = k(() => t.node.title?.subtext);
|
|
184
|
+
function r(s) {
|
|
185
185
|
s.title = {
|
|
186
186
|
show: e.value,
|
|
187
|
-
text:
|
|
188
|
-
subtext:
|
|
187
|
+
text: o.value,
|
|
188
|
+
subtext: i.value
|
|
189
189
|
};
|
|
190
190
|
}
|
|
191
|
-
return { show: e, text:
|
|
191
|
+
return { show: e, text: o, subtext: i, applyTitle: r };
|
|
192
192
|
}
|
|
193
193
|
function co(t) {
|
|
194
|
-
const e = k(() => t.node.xAxis?.show),
|
|
194
|
+
const e = k(() => t.node.xAxis?.show), o = k(() => t.node.xAxis?.position), i = k(() => t.node.xAxis?.type), r = k(() => t.node.xAxis?.data);
|
|
195
195
|
function s(a) {
|
|
196
196
|
a.xAxis = {
|
|
197
197
|
show: e.value,
|
|
198
|
-
position:
|
|
199
|
-
type:
|
|
200
|
-
data:
|
|
198
|
+
position: o.value,
|
|
199
|
+
type: i.value,
|
|
200
|
+
data: r.value
|
|
201
201
|
};
|
|
202
202
|
}
|
|
203
|
-
return { show: e, position:
|
|
203
|
+
return { show: e, position: o, type: i, data: r, applyXAxis: s };
|
|
204
204
|
}
|
|
205
205
|
function mo(t) {
|
|
206
|
-
const e = k(() => t.node.yAxis?.show),
|
|
206
|
+
const e = k(() => t.node.yAxis?.show), o = k(() => t.node.yAxis?.position), i = k(() => t.node.yAxis?.type), r = k(() => t.node.yAxis?.data);
|
|
207
207
|
function s(a) {
|
|
208
208
|
a.yAxis = {
|
|
209
209
|
show: e.value,
|
|
210
|
-
position:
|
|
211
|
-
type:
|
|
212
|
-
data:
|
|
210
|
+
position: o.value,
|
|
211
|
+
type: i.value,
|
|
212
|
+
data: r.value
|
|
213
213
|
};
|
|
214
214
|
}
|
|
215
|
-
return { show: e, position:
|
|
215
|
+
return { show: e, position: o, type: i, data: r, applyYAxis: s };
|
|
216
216
|
}
|
|
217
217
|
function j(t) {
|
|
218
|
-
const { computedThemes: e } = ms(),
|
|
218
|
+
const { computedThemes: e } = ms(), o = Be(), i = k(() => t.value?.mode), r = k(() => {
|
|
219
219
|
const b = t.value?.theme;
|
|
220
|
-
return b ? b === "background0" ?
|
|
221
|
-
}), s = k(() =>
|
|
220
|
+
return b ? b === "background0" ? o.value ? "#2e2e2e" : "#bdbdbd" : b === "background1" ? o.value ? "#272727" : "#eeeeee" : b === "background2" ? o.value ? "#1e1e1e" : "#ffffff" : (o.value ? e.value.dark : e.value.light).colors[b] : void 0;
|
|
221
|
+
}), s = k(() => o.value ? t.value.custom?.dark : t.value.custom?.light), a = k(() => i.value === "theme" ? r.value ?? "" : i.value === "custom" ? s.value ?? "" : ""), p = k(() => {
|
|
222
222
|
const b = a.value;
|
|
223
223
|
return !b.startsWith("#") || b.length < 7 ? "" : b.substring(0, 7);
|
|
224
224
|
}), d = k(() => {
|
|
@@ -228,64 +228,64 @@ function j(t) {
|
|
|
228
228
|
return { color: a, rgb: p, alpha: d };
|
|
229
229
|
}
|
|
230
230
|
function An(t) {
|
|
231
|
-
const e = k(() => t.node.border?.style),
|
|
231
|
+
const e = k(() => t.node.border?.style), o = k(() => t.node.border?.width), i = k(() => t.node.border?.color), { color: r } = j(i), s = k(() => t.node.border?.roundRadius?.tl), a = k(() => t.node.border?.roundRadius?.tr), p = k(() => t.node.border?.roundRadius?.bl), d = k(() => t.node.border?.roundRadius?.br);
|
|
232
232
|
function b(m) {
|
|
233
|
-
e.value && (m.borderStyle = e.value),
|
|
233
|
+
e.value && (m.borderStyle = e.value), o.value && (m.borderWidth = o.value), r.value && (m.borderColor = r.value), s.value && (m.borderTopLeftRadius = s.value), a.value && (m.borderTopRightRadius = a.value), p.value && (m.borderBottomLeftRadius = p.value), d.value && (m.borderBottomRightRadius = d.value);
|
|
234
234
|
}
|
|
235
|
-
return { borderStyle: e, borderWidth:
|
|
235
|
+
return { borderStyle: e, borderWidth: o, borderColor: r, applyBorder: b };
|
|
236
236
|
}
|
|
237
237
|
function Ln(t) {
|
|
238
|
-
const e = k(() => t.node.margin?.top),
|
|
238
|
+
const e = k(() => t.node.margin?.top), o = k(() => t.node.margin?.left), i = k(() => t.node.margin?.bottom), r = k(() => t.node.margin?.right);
|
|
239
239
|
function s(a) {
|
|
240
|
-
e.value && (a.marginTop = e.value),
|
|
240
|
+
e.value && (a.marginTop = e.value), o.value && (a.marginLeft = o.value), i.value && (a.marginBottom = i.value), r.value && (a.marginRight = r.value);
|
|
241
241
|
}
|
|
242
|
-
return { marginTop: e, marginLeft:
|
|
242
|
+
return { marginTop: e, marginLeft: o, marginBottom: i, marginRight: r, applyMargin: s };
|
|
243
243
|
}
|
|
244
244
|
function Bn(t) {
|
|
245
|
-
const e = k(() => t.node.padding?.top),
|
|
245
|
+
const e = k(() => t.node.padding?.top), o = k(() => t.node.padding?.left), i = k(() => t.node.padding?.bottom), r = k(() => t.node.padding?.right);
|
|
246
246
|
function s(a) {
|
|
247
|
-
e.value && (a.paddingTop = e.value),
|
|
247
|
+
e.value && (a.paddingTop = e.value), o.value && (a.paddingLeft = o.value), i.value && (a.paddingBottom = i.value), r.value && (a.paddingRight = r.value);
|
|
248
248
|
}
|
|
249
|
-
return { paddingTop: e, paddingLeft:
|
|
249
|
+
return { paddingTop: e, paddingLeft: o, paddingBottom: i, paddingRight: r, applyPadding: s };
|
|
250
250
|
}
|
|
251
251
|
function he(t) {
|
|
252
|
-
const e = G(),
|
|
252
|
+
const e = G(), o = $e(), i = k(() => t.node.size?.width), r = k(() => t.node.size?.minWidth), s = k(() => t.node.size?.maxWidth), a = k(() => {
|
|
253
253
|
if (t.outer && e === "editor") {
|
|
254
|
-
const m =
|
|
254
|
+
const m = Ot(t.node.size?.height);
|
|
255
255
|
if (m)
|
|
256
|
-
return m / 100 *
|
|
256
|
+
return m / 100 * o.value.height + "px";
|
|
257
257
|
}
|
|
258
258
|
return t.node.size?.height;
|
|
259
259
|
}), p = k(() => {
|
|
260
260
|
if (t.outer && e === "editor") {
|
|
261
|
-
const m =
|
|
261
|
+
const m = Ot(t.node.size?.minHeight);
|
|
262
262
|
if (m)
|
|
263
|
-
return m / 100 *
|
|
263
|
+
return m / 100 * o.value.height + "px";
|
|
264
264
|
}
|
|
265
265
|
return t.node.size?.minHeight;
|
|
266
266
|
}), d = k(() => {
|
|
267
267
|
if (t.outer && e === "editor") {
|
|
268
|
-
const m =
|
|
268
|
+
const m = Ot(t.node.size?.maxHeight);
|
|
269
269
|
if (m)
|
|
270
|
-
return m / 100 *
|
|
270
|
+
return m / 100 * o.value.height + "px";
|
|
271
271
|
}
|
|
272
272
|
return t.node.size?.maxHeight;
|
|
273
273
|
});
|
|
274
274
|
function b(m) {
|
|
275
|
-
|
|
275
|
+
i.value && (m.width = i.value), r.value && (m.minWidth = r.value), s.value && (m.maxWidth = s.value), a.value && (m.height = a.value), p.value && (m.minHeight = p.value), d.value && (m.maxHeight = d.value);
|
|
276
276
|
}
|
|
277
|
-
return { width:
|
|
277
|
+
return { width: i, minWidth: r, maxWidth: s, height: a, minHeight: p, maxHeight: d, applySize: b };
|
|
278
278
|
}
|
|
279
|
-
function po(t, e,
|
|
280
|
-
const
|
|
279
|
+
function po(t, e, o) {
|
|
280
|
+
const i = k(() => e.node.basic.id), r = k(() => `callMethod@${i.value}`);
|
|
281
281
|
Wo(() => {
|
|
282
|
-
t.eventBus?.on(
|
|
283
|
-
}),
|
|
284
|
-
t.eventBus?.off(
|
|
282
|
+
t.eventBus?.on(r.value, o);
|
|
283
|
+
}), je(() => {
|
|
284
|
+
t.eventBus?.off(r.value, o);
|
|
285
285
|
});
|
|
286
286
|
}
|
|
287
|
-
function
|
|
288
|
-
const t =
|
|
287
|
+
function N() {
|
|
288
|
+
const t = Be();
|
|
289
289
|
return { theme: k(() => t.value ? "dark" : "light") };
|
|
290
290
|
}
|
|
291
291
|
const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "scale", "top"], gs = /* @__PURE__ */ $({
|
|
@@ -295,10 +295,10 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
295
295
|
outer: { type: Boolean }
|
|
296
296
|
},
|
|
297
297
|
setup(t) {
|
|
298
|
-
const e = t,
|
|
298
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "bottom"]), { prop: p } = l(e, ["settings", "far"]), { prop: d } = l(e, ["settings", "left"]), { prop: b } = l(e, ["settings", "near"]), { prop: m } = l(e, ["settings", "right"]), { prop: u } = l(e, ["settings", "top"]);
|
|
299
299
|
return (c, f) => (v(), V(n(ye), {
|
|
300
|
-
position: n(
|
|
301
|
-
rotation: n(
|
|
300
|
+
position: n(i),
|
|
301
|
+
rotation: n(r),
|
|
302
302
|
scale: n(s)
|
|
303
303
|
}, {
|
|
304
304
|
default: I(() => [
|
|
@@ -307,13 +307,13 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
307
307
|
far: n(p),
|
|
308
308
|
left: n(d),
|
|
309
309
|
near: n(b),
|
|
310
|
-
position: n(
|
|
310
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
311
311
|
right: n(m),
|
|
312
|
-
rotation: n(
|
|
313
|
-
scale: n(
|
|
312
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
313
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1],
|
|
314
314
|
top: n(u)
|
|
315
315
|
}, [
|
|
316
|
-
n(
|
|
316
|
+
n(o) === "editor" ? (v(), V(n(Le), {
|
|
317
317
|
key: 0,
|
|
318
318
|
type: n(Ji)
|
|
319
319
|
}, null, 8, ["type"])) : ee("", !0),
|
|
@@ -330,10 +330,10 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
330
330
|
outer: { type: Boolean }
|
|
331
331
|
},
|
|
332
332
|
setup(t) {
|
|
333
|
-
const e = t,
|
|
333
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "aspect"]), { prop: p } = l(e, ["settings", "far"]), { prop: d } = l(e, ["settings", "fov"]), { prop: b } = l(e, ["settings", "near"]);
|
|
334
334
|
return (m, u) => (v(), V(n(ye), {
|
|
335
|
-
position: n(
|
|
336
|
-
rotation: n(
|
|
335
|
+
position: n(i),
|
|
336
|
+
rotation: n(r),
|
|
337
337
|
scale: n(s)
|
|
338
338
|
}, {
|
|
339
339
|
default: I(() => [
|
|
@@ -342,11 +342,11 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
342
342
|
far: n(p),
|
|
343
343
|
fov: n(d),
|
|
344
344
|
near: n(b),
|
|
345
|
-
position: n(
|
|
346
|
-
rotation: n(
|
|
347
|
-
scale: n(
|
|
345
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
346
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
347
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
348
348
|
}, [
|
|
349
|
-
n(
|
|
349
|
+
n(o) === "editor" ? (v(), V(n(Le), {
|
|
350
350
|
key: 0,
|
|
351
351
|
type: n(Ji)
|
|
352
352
|
}, null, 8, ["type"])) : ee("", !0),
|
|
@@ -363,32 +363,32 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
363
363
|
outer: { type: Boolean }
|
|
364
364
|
},
|
|
365
365
|
setup(t) {
|
|
366
|
-
const e = t, { prop:
|
|
366
|
+
const e = t, { prop: o } = l(e, ["settings", "depth"]), { prop: i } = l(e, [
|
|
367
367
|
"settings",
|
|
368
368
|
"depthSegements"
|
|
369
|
-
]), { prop:
|
|
369
|
+
]), { prop: r } = l(e, ["settings", "height"]), { prop: s } = l(e, [
|
|
370
370
|
"settings",
|
|
371
371
|
"heightSegements"
|
|
372
|
-
]), { prop: a } =
|
|
372
|
+
]), { prop: a } = l(e, ["settings", "width"]), { prop: p } = l(e, [
|
|
373
373
|
"settings",
|
|
374
374
|
"widthSegements"
|
|
375
375
|
]);
|
|
376
376
|
return (d, b) => (v(), Y("TresBoxGeometry", {
|
|
377
377
|
args: [
|
|
378
378
|
n(a),
|
|
379
|
-
n(
|
|
380
|
-
n(
|
|
379
|
+
n(r),
|
|
380
|
+
n(o),
|
|
381
381
|
n(p),
|
|
382
382
|
n(s),
|
|
383
|
-
n(
|
|
383
|
+
n(i)
|
|
384
384
|
]
|
|
385
385
|
}, null, 8, ks));
|
|
386
386
|
}
|
|
387
387
|
}), ge = (t, e) => {
|
|
388
|
-
const
|
|
389
|
-
for (const [
|
|
390
|
-
i
|
|
391
|
-
return
|
|
388
|
+
const o = t.__vccOpts || t;
|
|
389
|
+
for (const [i, r] of e)
|
|
390
|
+
o[i] = r;
|
|
391
|
+
return o;
|
|
392
392
|
}, ws = ["args"], Vs = /* @__PURE__ */ $({
|
|
393
393
|
__name: "index",
|
|
394
394
|
props: {
|
|
@@ -396,10 +396,10 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
396
396
|
outer: { type: Boolean }
|
|
397
397
|
},
|
|
398
398
|
setup(t) {
|
|
399
|
-
const e = t, { prop:
|
|
399
|
+
const e = t, { prop: o } = l(e, [
|
|
400
400
|
"settings",
|
|
401
401
|
"heightSegments"
|
|
402
|
-
]), { prop:
|
|
402
|
+
]), { prop: i } = l(e, ["settings", "phiLength"]), { prop: r } = l(e, ["settings", "phiStart"]), { prop: s } = l(e, ["settings", "radius"]), { prop: a } = l(e, ["settings", "thetaLength"]), { prop: p } = l(e, ["settings", "thetaStart"]), { prop: d } = l(e, [
|
|
403
403
|
"settings",
|
|
404
404
|
"widthSegments"
|
|
405
405
|
]);
|
|
@@ -407,9 +407,9 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
407
407
|
args: [
|
|
408
408
|
n(s),
|
|
409
409
|
n(d),
|
|
410
|
-
n(i),
|
|
411
|
-
n(l),
|
|
412
410
|
n(o),
|
|
411
|
+
n(r),
|
|
412
|
+
n(i),
|
|
413
413
|
n(p),
|
|
414
414
|
n(a)
|
|
415
415
|
]
|
|
@@ -422,19 +422,19 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
422
422
|
outer: { type: Boolean }
|
|
423
423
|
},
|
|
424
424
|
setup(t) {
|
|
425
|
-
const e = t,
|
|
425
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = j(a), { prop: d } = l(e, ["settings", "intensity"]);
|
|
426
426
|
return (b, m) => (v(), V(n(ye), {
|
|
427
|
-
position: n(
|
|
428
|
-
rotation: n(
|
|
427
|
+
position: n(i),
|
|
428
|
+
rotation: n(r),
|
|
429
429
|
scale: n(s)
|
|
430
430
|
}, {
|
|
431
431
|
default: I(() => [
|
|
432
432
|
ie("TresAmbientLight", {
|
|
433
433
|
color: n(p),
|
|
434
434
|
intensity: n(d),
|
|
435
|
-
position: n(
|
|
436
|
-
rotation: n(
|
|
437
|
-
scale: n(
|
|
435
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
436
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
437
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
438
438
|
}, [
|
|
439
439
|
L(b.$slots, "default")
|
|
440
440
|
], 8, $s)
|
|
@@ -449,21 +449,21 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
449
449
|
outer: { type: Boolean }
|
|
450
450
|
},
|
|
451
451
|
setup(t) {
|
|
452
|
-
const e = t,
|
|
452
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = j(a), { prop: d } = l(e, ["settings", "intensity"]);
|
|
453
453
|
return (b, m) => (v(), V(n(ye), {
|
|
454
|
-
position: n(
|
|
455
|
-
rotation: n(
|
|
454
|
+
position: n(i),
|
|
455
|
+
rotation: n(r),
|
|
456
456
|
scale: n(s)
|
|
457
457
|
}, {
|
|
458
458
|
default: I(() => [
|
|
459
459
|
ie("TresDirectionalLight", {
|
|
460
460
|
color: n(p),
|
|
461
461
|
intensity: n(d),
|
|
462
|
-
position: n(
|
|
463
|
-
rotation: n(
|
|
464
|
-
scale: n(
|
|
462
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
463
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
464
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
465
465
|
}, [
|
|
466
|
-
n(
|
|
466
|
+
n(o) === "editor" ? (v(), V(n(Le), {
|
|
467
467
|
key: 0,
|
|
468
468
|
type: n(Mo)
|
|
469
469
|
}, null, 8, ["type"])) : ee("", !0),
|
|
@@ -480,10 +480,10 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
480
480
|
outer: { type: Boolean }
|
|
481
481
|
},
|
|
482
482
|
setup(t) {
|
|
483
|
-
const e = t,
|
|
483
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "color"]), { color: p } = j(a), { prop: d } = l(e, ["settings", "decay"]), { prop: b } = l(e, ["settings", "distance"]), { prop: m } = l(e, ["settings", "intensity"]);
|
|
484
484
|
return (u, c) => (v(), V(n(ye), {
|
|
485
|
-
position: n(
|
|
486
|
-
rotation: n(
|
|
485
|
+
position: n(i),
|
|
486
|
+
rotation: n(r),
|
|
487
487
|
scale: n(s)
|
|
488
488
|
}, {
|
|
489
489
|
default: I(() => [
|
|
@@ -492,11 +492,11 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
492
492
|
decay: n(d),
|
|
493
493
|
distance: n(b),
|
|
494
494
|
intensity: n(m),
|
|
495
|
-
position: n(
|
|
496
|
-
rotation: n(
|
|
497
|
-
scale: n(
|
|
495
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
496
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
497
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
498
498
|
}, [
|
|
499
|
-
n(
|
|
499
|
+
n(o) === "editor" ? (v(), V(n(Le), {
|
|
500
500
|
key: 0,
|
|
501
501
|
type: n(Fo)
|
|
502
502
|
}, null, 8, ["type"])) : ee("", !0),
|
|
@@ -513,10 +513,10 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
513
513
|
outer: { type: Boolean }
|
|
514
514
|
},
|
|
515
515
|
setup(t) {
|
|
516
|
-
const e = t,
|
|
516
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e), { prop: a } = l(e, ["settings", "angle"]), { prop: p } = l(e, ["settings", "color"]), { color: d } = j(p), { prop: b } = l(e, ["settings", "decay"]), { prop: m } = l(e, ["settings", "distance"]), { prop: u } = l(e, ["settings", "intensity"]), { prop: c } = l(e, ["settings", "penumbra"]);
|
|
517
517
|
return (f, h) => (v(), V(n(ye), {
|
|
518
|
-
position: n(
|
|
519
|
-
rotation: n(
|
|
518
|
+
position: n(i),
|
|
519
|
+
rotation: n(r),
|
|
520
520
|
scale: n(s)
|
|
521
521
|
}, {
|
|
522
522
|
default: I(() => [
|
|
@@ -527,11 +527,11 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
527
527
|
distance: n(m),
|
|
528
528
|
intensity: n(u),
|
|
529
529
|
penumbra: n(c),
|
|
530
|
-
position: n(
|
|
531
|
-
rotation: n(
|
|
532
|
-
scale: n(
|
|
530
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
531
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
532
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
533
533
|
}, [
|
|
534
|
-
n(
|
|
534
|
+
n(o) === "editor" ? (v(), V(n(Le), {
|
|
535
535
|
key: 0,
|
|
536
536
|
type: n(Go)
|
|
537
537
|
}, null, 8, ["type"])) : ee("", !0),
|
|
@@ -545,27 +545,27 @@ const hs = ["bottom", "far", "left", "near", "position", "right", "rotation", "s
|
|
|
545
545
|
function Bs(t, e) {
|
|
546
546
|
return v(), Y("TresMeshBasicMaterial");
|
|
547
547
|
}
|
|
548
|
-
const Ws = /* @__PURE__ */ ge(Ls, [["render", Bs]]),
|
|
548
|
+
const Ws = /* @__PURE__ */ ge(Ls, [["render", Bs]]), Es = ["position", "rotation", "scale"], Ns = /* @__PURE__ */ $({
|
|
549
549
|
__name: "index",
|
|
550
550
|
props: {
|
|
551
551
|
node: {},
|
|
552
552
|
outer: { type: Boolean }
|
|
553
553
|
},
|
|
554
554
|
setup(t) {
|
|
555
|
-
const e = t,
|
|
555
|
+
const e = t, o = G(), { position: i, rotation: r, scale: s } = me(e);
|
|
556
556
|
return (a, p) => (v(), V(n(ye), {
|
|
557
|
-
position: n(
|
|
558
|
-
rotation: n(
|
|
557
|
+
position: n(i),
|
|
558
|
+
rotation: n(r),
|
|
559
559
|
scale: n(s)
|
|
560
560
|
}, {
|
|
561
561
|
default: I(() => [
|
|
562
562
|
ie("TresGroup", {
|
|
563
|
-
position: n(
|
|
564
|
-
rotation: n(
|
|
565
|
-
scale: n(
|
|
563
|
+
position: n(o) !== "editor" ? n(i) : [0, 0, 0],
|
|
564
|
+
rotation: n(o) !== "editor" ? n(r) : [0, 0, 0],
|
|
565
|
+
scale: n(o) !== "editor" ? n(s) : [1, 1, 1]
|
|
566
566
|
}, [
|
|
567
567
|
L(a.$slots, "default")
|
|
568
|
-
], 8,
|
|
568
|
+
], 8, Es)
|
|
569
569
|
]),
|
|
570
570
|
_: 3
|
|
571
571
|
}, 8, ["position", "rotation", "scale"]));
|
|
@@ -577,11 +577,11 @@ const Ws = /* @__PURE__ */ ge(Ls, [["render", Bs]]), Ns = ["position", "rotation
|
|
|
577
577
|
outer: { type: Boolean }
|
|
578
578
|
},
|
|
579
579
|
setup(t) {
|
|
580
|
-
const e = t, { position:
|
|
580
|
+
const e = t, { position: o, rotation: i, scale: r } = me(e);
|
|
581
581
|
return (s, a) => (v(), Y("TresMesh", {
|
|
582
|
-
position: n(
|
|
583
|
-
rotation: n(
|
|
584
|
-
scale: n(
|
|
582
|
+
position: n(o),
|
|
583
|
+
rotation: n(i),
|
|
584
|
+
scale: n(r)
|
|
585
585
|
}, [
|
|
586
586
|
L(s.$slots, "default")
|
|
587
587
|
], 8, Rs));
|
|
@@ -616,7 +616,7 @@ const Ws = /* @__PURE__ */ ge(Ls, [["render", Bs]]), Ns = ["position", "rotation
|
|
|
616
616
|
visualMap: pr,
|
|
617
617
|
dataZoom: dr,
|
|
618
618
|
markPoint: fr
|
|
619
|
-
}, yr = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], hr = "#f5f5f5", gr = {}, xr = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, vr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, kr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, _r = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, wr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Vr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, $r = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Ir = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Sr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Cr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Tr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Pr = { itemStyle: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", borderWidth: 1 } }, zr = { 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" } }, Ar = { 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)" } } }, Lr = { 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)" } } }, Br = { 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"] } } }, Wr = { 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"] } } },
|
|
619
|
+
}, yr = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], hr = "#f5f5f5", gr = {}, xr = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, vr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, kr = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, _r = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, wr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Vr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, $r = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Ir = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Sr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Cr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Tr = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Pr = { itemStyle: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", borderWidth: 1 } }, zr = { 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" } }, Ar = { 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)" } } }, Lr = { 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)" } } }, Br = { 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"] } } }, Wr = { 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"] } } }, Er = { 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"] } } }, Nr = { 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"] } } }, Rr = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, Dr = { textStyle: { color: "#333333" } }, Mr = { axisPointer: { lineStyle: { color: "#cccccc", width: "1" }, crossStyle: { color: "#cccccc", width: "1" } } }, Fr = { 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" } } }, Gr = { color: ["#bf444c", "#d88273", "#f6efa6"] }, Hr = { 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" } }, jr = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, Kr = {
|
|
620
620
|
color: yr,
|
|
621
621
|
backgroundColor: hr,
|
|
622
622
|
textStyle: gr,
|
|
@@ -637,8 +637,8 @@ const Ws = /* @__PURE__ */ ge(Ls, [["render", Bs]]), Ns = ["position", "rotation
|
|
|
637
637
|
geo: Lr,
|
|
638
638
|
categoryAxis: Br,
|
|
639
639
|
valueAxis: Wr,
|
|
640
|
-
logAxis:
|
|
641
|
-
timeAxis:
|
|
640
|
+
logAxis: Er,
|
|
641
|
+
timeAxis: Nr,
|
|
642
642
|
toolbox: Rr,
|
|
643
643
|
legend: Dr,
|
|
644
644
|
tooltip: Mr,
|
|
@@ -666,29 +666,29 @@ const Ur = /* @__PURE__ */ $({
|
|
|
666
666
|
outer: { type: Boolean }
|
|
667
667
|
},
|
|
668
668
|
setup(t) {
|
|
669
|
-
const e = t,
|
|
669
|
+
const e = t, o = $e(), i = Be(), r = pe(), s = de(), { width: a, minWidth: p, maxWidth: d, height: b, minHeight: m, maxHeight: u, applySize: c } = he(e), { applyTitle: f } = uo(e), { applyXAxis: h } = co(e), { applyYAxis: x } = mo(e), { applyLegend: g } = lo(e), { applySeries: w } = ao(e), C = k(() => {
|
|
670
670
|
const S = {}, M = s.value.type;
|
|
671
|
-
return
|
|
671
|
+
return r === "page" ? M === "common" ? c(S) : console.assert(!1) : r === "comp" && M === "common" ? c(S) : console.assert(!1), S;
|
|
672
672
|
}), R = Ui("chart");
|
|
673
673
|
let W;
|
|
674
674
|
const F = () => {
|
|
675
|
-
W?.dispose(), W = qi.init(R.value,
|
|
675
|
+
W?.dispose(), W = qi.init(R.value, i.value ? "dark" : "light");
|
|
676
676
|
const S = {};
|
|
677
677
|
W.setOption(S);
|
|
678
678
|
}, D = () => {
|
|
679
679
|
W?.resize();
|
|
680
|
-
},
|
|
680
|
+
}, E = () => {
|
|
681
681
|
const S = {};
|
|
682
682
|
f(S), h(S), x(S), g(S), w(S), W?.setOption(S, !0);
|
|
683
683
|
};
|
|
684
684
|
return Oi(async () => {
|
|
685
|
-
window.addEventListener("resize", D, !1), await eo(() => !!R.value), F(),
|
|
686
|
-
}),
|
|
685
|
+
window.addEventListener("resize", D, !1), await eo(() => !!R.value), F(), E();
|
|
686
|
+
}), je(() => {
|
|
687
687
|
window.removeEventListener("resize", D, !1), W?.dispose();
|
|
688
688
|
}), q(
|
|
689
689
|
[
|
|
690
|
-
() =>
|
|
691
|
-
() =>
|
|
690
|
+
() => o.value.width,
|
|
691
|
+
() => o.value.height,
|
|
692
692
|
a,
|
|
693
693
|
p,
|
|
694
694
|
d,
|
|
@@ -699,12 +699,12 @@ const Ur = /* @__PURE__ */ $({
|
|
|
699
699
|
async () => {
|
|
700
700
|
await Xi(), D();
|
|
701
701
|
}
|
|
702
|
-
), q([
|
|
703
|
-
F(),
|
|
702
|
+
), q([i], () => {
|
|
703
|
+
F(), E();
|
|
704
704
|
}), q(
|
|
705
705
|
[e],
|
|
706
706
|
() => {
|
|
707
|
-
|
|
707
|
+
E();
|
|
708
708
|
},
|
|
709
709
|
{ deep: !0 }
|
|
710
710
|
), (S, M) => (v(), Y("div", {
|
|
@@ -719,29 +719,29 @@ const Ur = /* @__PURE__ */ $({
|
|
|
719
719
|
outer: { type: Boolean }
|
|
720
720
|
},
|
|
721
721
|
setup(t) {
|
|
722
|
-
const e = t,
|
|
722
|
+
const e = t, o = $e(), i = Be(), r = pe(), s = de(), { width: a, minWidth: p, maxWidth: d, height: b, minHeight: m, maxHeight: u, applySize: c } = he(e), { applyTitle: f } = uo(e), { applyXAxis: h } = co(e), { applyYAxis: x } = mo(e), { applyLegend: g } = lo(e), { applySeries: w } = ao(e), C = k(() => {
|
|
723
723
|
const S = {}, M = s.value.type;
|
|
724
|
-
return
|
|
724
|
+
return r === "page" ? M === "common" ? c(S) : console.assert(!1) : r === "comp" && M === "common" ? c(S) : console.assert(!1), S;
|
|
725
725
|
}), R = Ui("chart");
|
|
726
726
|
let W;
|
|
727
727
|
const F = () => {
|
|
728
|
-
W?.dispose(), W = qi.init(R.value,
|
|
728
|
+
W?.dispose(), W = qi.init(R.value, i.value ? "dark" : "light");
|
|
729
729
|
const S = {};
|
|
730
730
|
W.setOption(S);
|
|
731
731
|
}, D = () => {
|
|
732
732
|
W?.resize();
|
|
733
|
-
},
|
|
733
|
+
}, E = () => {
|
|
734
734
|
const S = {};
|
|
735
735
|
f(S), h(S), x(S), g(S), w(S), W?.setOption(S, !0);
|
|
736
736
|
};
|
|
737
737
|
return Oi(async () => {
|
|
738
|
-
window.addEventListener("resize", D, !1), await eo(() => !!R.value), F(),
|
|
739
|
-
}),
|
|
738
|
+
window.addEventListener("resize", D, !1), await eo(() => !!R.value), F(), E();
|
|
739
|
+
}), je(() => {
|
|
740
740
|
window.removeEventListener("resize", D, !1), W?.dispose();
|
|
741
741
|
}), q(
|
|
742
742
|
[
|
|
743
|
-
() =>
|
|
744
|
-
() =>
|
|
743
|
+
() => o.value.width,
|
|
744
|
+
() => o.value.height,
|
|
745
745
|
a,
|
|
746
746
|
p,
|
|
747
747
|
d,
|
|
@@ -752,12 +752,12 @@ const Ur = /* @__PURE__ */ $({
|
|
|
752
752
|
async () => {
|
|
753
753
|
await Xi(), D();
|
|
754
754
|
}
|
|
755
|
-
), q([
|
|
756
|
-
F(),
|
|
755
|
+
), q([i], () => {
|
|
756
|
+
F(), E();
|
|
757
757
|
}), q(
|
|
758
758
|
[e],
|
|
759
759
|
() => {
|
|
760
|
-
|
|
760
|
+
E();
|
|
761
761
|
},
|
|
762
762
|
{ deep: !0 }
|
|
763
763
|
), (S, M) => (v(), Y("div", {
|
|
@@ -772,31 +772,31 @@ const Ur = /* @__PURE__ */ $({
|
|
|
772
772
|
state: {}
|
|
773
773
|
},
|
|
774
774
|
setup(t) {
|
|
775
|
-
const { t: e } = ps(),
|
|
775
|
+
const { t: e } = ps(), o = t, i = de(), r = ec(), s = ce(-1), a = ce();
|
|
776
776
|
dc(a), ue(() => {
|
|
777
|
-
if (!
|
|
777
|
+
if (!o.refContext.refid) {
|
|
778
778
|
s.value = -1, a.value = void 0;
|
|
779
779
|
return;
|
|
780
780
|
}
|
|
781
|
-
const c =
|
|
781
|
+
const c = r.value[o.refContext.refid];
|
|
782
782
|
if (!c) {
|
|
783
|
-
s.value = -1, a.value = void 0, to.emit("compNotAvail",
|
|
783
|
+
s.value = -1, a.value = void 0, to.emit("compNotAvail", o.refContext.refid);
|
|
784
784
|
return;
|
|
785
785
|
}
|
|
786
786
|
s.value !== c.dataSeq && (s.value = c.dataSeq, a.value = B(c.data));
|
|
787
787
|
});
|
|
788
788
|
function p(c) {
|
|
789
|
-
const f = wo[
|
|
789
|
+
const f = wo[i.value.version].refKey, h = Ce[f];
|
|
790
790
|
return h ? ae(h.comp, {
|
|
791
791
|
refContext: {
|
|
792
|
-
parent:
|
|
792
|
+
parent: o.refContext,
|
|
793
793
|
refid: c.ref.comp
|
|
794
794
|
},
|
|
795
795
|
node: c
|
|
796
796
|
}) : (console.assert(!1, `ref element not found key=${f}`), ae("div", `ref element not found key=${f}`));
|
|
797
797
|
}
|
|
798
798
|
function d(c) {
|
|
799
|
-
const f =
|
|
799
|
+
const f = Ce[c.basic.key];
|
|
800
800
|
if (!f)
|
|
801
801
|
return console.assert(!1, `element not found key=${c.basic.key}`), ae("div", `element not found key=${c.basic.key}`);
|
|
802
802
|
const h = [];
|
|
@@ -809,9 +809,9 @@ const Ur = /* @__PURE__ */ $({
|
|
|
809
809
|
return c.ref ? p(c) : d(c);
|
|
810
810
|
}
|
|
811
811
|
function m() {
|
|
812
|
-
let c =
|
|
812
|
+
let c = o.refContext.parent;
|
|
813
813
|
for (; c; ) {
|
|
814
|
-
if (c.refid ===
|
|
814
|
+
if (c.refid === o.refContext.refid)
|
|
815
815
|
return !0;
|
|
816
816
|
c = c.parent;
|
|
817
817
|
}
|
|
@@ -840,15 +840,15 @@ const Ur = /* @__PURE__ */ $({
|
|
|
840
840
|
outer: { type: Boolean }
|
|
841
841
|
},
|
|
842
842
|
setup(t) {
|
|
843
|
-
const e = t, { prop:
|
|
843
|
+
const e = t, { prop: o } = l(e, ["settings", "content"]), { prop: i } = l(e, ["settings", "dot"]), { theme: r } = N(), { prop: s } = l(e, ["settings", "offset", "x"]), { prop: a } = l(e, ["settings", "offset", "y"]);
|
|
844
844
|
return (p, d) => {
|
|
845
845
|
const b = z("v-badge");
|
|
846
846
|
return v(), V(b, {
|
|
847
|
-
content: n(
|
|
848
|
-
dot: n(
|
|
847
|
+
content: n(o),
|
|
848
|
+
dot: n(i),
|
|
849
849
|
"offset-x": n(s),
|
|
850
850
|
"offset-y": n(a),
|
|
851
|
-
theme: n(
|
|
851
|
+
theme: n(r)
|
|
852
852
|
}, {
|
|
853
853
|
default: I(() => [
|
|
854
854
|
L(p.$slots, "default")
|
|
@@ -864,16 +864,16 @@ const Ur = /* @__PURE__ */ $({
|
|
|
864
864
|
outer: { type: Boolean }
|
|
865
865
|
},
|
|
866
866
|
setup(t) {
|
|
867
|
-
const e = t,
|
|
867
|
+
const e = t, o = G(), i = We(), { prop: r } = l(e, [
|
|
868
868
|
"settings",
|
|
869
869
|
"addIcon",
|
|
870
870
|
"append"
|
|
871
|
-
]), { prop: s } =
|
|
871
|
+
]), { prop: s } = l(e, ["settings", "block"]), { prop: a } = l(e, ["settings", "color"]), { color: p } = j(a), { prop: d } = l(e, ["settings", "density"]), { prop: b } = l(e, ["settings", "disabled"]), { prop: m } = l(e, ["size", "height"]), { prop: u } = l(e, ["settings", "loading"]), { prop: c } = l(e, ["size", "maxHeight"]), { prop: f } = l(e, ["size", "maxWidth"]), { prop: h } = l(e, ["size", "minHeight"]), { prop: x } = l(e, ["size", "minWidth"]), { prop: g } = l(e, [
|
|
872
872
|
"settings",
|
|
873
873
|
"addIcon",
|
|
874
874
|
"prepend"
|
|
875
|
-
]), { prop: w } =
|
|
876
|
-
|
|
875
|
+
]), { prop: w } = l(e, ["settings", "readonly"]), { prop: C } = l(e, ["settings", "ripple"]), { prop: R } = l(e, ["settings", "size"]), { prop: W } = l(e, ["settings", "stacked"]), { prop: F } = l(e, ["settings", "text"]), { theme: D } = N(), { prop: E } = l(e, ["settings", "variant"]), { prop: S } = l(e, ["size", "width"]), M = (J) => {
|
|
876
|
+
o !== "runtime" && o !== "preview" || (i.setVariable("__pointerPosX__", J.clientX), i.setVariable("__pointerPosY__", J.clientY), i.callFunction("__triggerEventV1__", [
|
|
877
877
|
`elementEvent@click@${e.node.basic.id}`
|
|
878
878
|
]));
|
|
879
879
|
};
|
|
@@ -882,7 +882,7 @@ const Ur = /* @__PURE__ */ $({
|
|
|
882
882
|
return v(), V(n(Z), null, {
|
|
883
883
|
default: I(() => [
|
|
884
884
|
H(re, {
|
|
885
|
-
"append-icon": n(
|
|
885
|
+
"append-icon": n(r),
|
|
886
886
|
block: n(s),
|
|
887
887
|
color: n(p),
|
|
888
888
|
density: n(d),
|
|
@@ -900,7 +900,7 @@ const Ur = /* @__PURE__ */ $({
|
|
|
900
900
|
stacked: n(W),
|
|
901
901
|
text: n(F),
|
|
902
902
|
theme: n(D),
|
|
903
|
-
variant: n(
|
|
903
|
+
variant: n(E),
|
|
904
904
|
width: n(S),
|
|
905
905
|
onClick: M
|
|
906
906
|
}, 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"])
|
|
@@ -911,8 +911,8 @@ const Ur = /* @__PURE__ */ $({
|
|
|
911
911
|
}
|
|
912
912
|
}), Jr = {};
|
|
913
913
|
function Zr(t, e) {
|
|
914
|
-
const
|
|
915
|
-
return v(), V(
|
|
914
|
+
const o = z("v-btn-group");
|
|
915
|
+
return v(), V(o, null, {
|
|
916
916
|
default: I(() => [
|
|
917
917
|
L(t.$slots, "default")
|
|
918
918
|
]),
|
|
@@ -926,13 +926,13 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
926
926
|
outer: { type: Boolean }
|
|
927
927
|
},
|
|
928
928
|
setup(t) {
|
|
929
|
-
const e = t, { prop:
|
|
929
|
+
const e = t, { prop: o } = l(e, ["settings", "block"]), { prop: i } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["settings", "divided"]), { prop: s } = l(e, ["settings", "mandatory"]), { prop: a } = l(e, ["settings", "multiple"]), { prop: p } = l(e, ["settings", "readonly"]), { prop: d } = l(e, ["settings", "size"]), { prop: b } = l(e, ["settings", "stacked"]), { theme: m } = N(), { prop: u } = l(e, ["settings", "tile"]), { prop: c } = l(e, ["settings", "variant"]);
|
|
930
930
|
return (f, h) => {
|
|
931
931
|
const x = z("v-btn-toggle");
|
|
932
932
|
return v(), V(x, {
|
|
933
|
-
block: n(
|
|
934
|
-
disabled: n(
|
|
935
|
-
divided: n(
|
|
933
|
+
block: n(o),
|
|
934
|
+
disabled: n(i),
|
|
935
|
+
divided: n(r),
|
|
936
936
|
mandatory: n(s),
|
|
937
937
|
multiple: n(a),
|
|
938
938
|
readonly: n(p),
|
|
@@ -956,13 +956,13 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
956
956
|
outer: { type: Boolean }
|
|
957
957
|
},
|
|
958
958
|
setup(t) {
|
|
959
|
-
const e = t, { prop:
|
|
959
|
+
const e = t, { prop: o } = l(e, ["settings", "density"]), { prop: i } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["size", "height"]), { prop: s } = l(e, ["settings", "hover"]), { prop: a } = l(e, ["settings", "loading"]), { prop: p } = l(e, ["size", "maxHeight"]), { prop: d } = l(e, ["size", "maxWidth"]), { prop: b } = l(e, ["size", "minHeight"]), { prop: m } = l(e, ["size", "minWidth"]), { prop: u } = l(e, ["settings", "subtitle"]), { prop: c } = l(e, ["settings", "text"]), { theme: f } = N(), { prop: h } = l(e, ["settings", "title"]), { prop: x } = l(e, ["settings", "variant"]), { prop: g } = l(e, ["size", "width"]);
|
|
960
960
|
return (w, C) => {
|
|
961
961
|
const R = z("v-card");
|
|
962
962
|
return v(), V(R, {
|
|
963
|
-
density: n(
|
|
964
|
-
disabled: n(
|
|
965
|
-
height: n(
|
|
963
|
+
density: n(o),
|
|
964
|
+
disabled: n(i),
|
|
965
|
+
height: n(r),
|
|
966
966
|
hover: n(s),
|
|
967
967
|
loading: n(a),
|
|
968
968
|
"max-height": n(p),
|
|
@@ -990,12 +990,12 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
990
990
|
outer: { type: Boolean }
|
|
991
991
|
},
|
|
992
992
|
setup(t) {
|
|
993
|
-
const e = t, { prop:
|
|
994
|
-
return (
|
|
993
|
+
const e = t, { prop: o } = l(e, ["settings", "disabled"]), { prop: i } = l(e, ["settings", "readonly"]);
|
|
994
|
+
return (r, s) => {
|
|
995
995
|
const a = z("v-checkbox");
|
|
996
996
|
return v(), V(a, {
|
|
997
|
-
disabled: n(
|
|
998
|
-
readonly: n(
|
|
997
|
+
disabled: n(o),
|
|
998
|
+
readonly: n(i)
|
|
999
999
|
}, null, 8, ["disabled", "readonly"]);
|
|
1000
1000
|
};
|
|
1001
1001
|
}
|
|
@@ -1006,12 +1006,12 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1006
1006
|
outer: { type: Boolean }
|
|
1007
1007
|
},
|
|
1008
1008
|
setup(t) {
|
|
1009
|
-
const e = t, { prop:
|
|
1009
|
+
const e = t, { prop: o } = l(e, ["settings", "closable"]), { prop: i } = l(e, ["settings", "color"]), { color: r } = j(i), { prop: s } = l(e, ["settings", "density"]), { prop: a } = l(e, ["settings", "disabled"]), { prop: p } = l(e, ["settings", "draggable"]), { prop: d } = l(e, ["settings", "filter"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "size"]), { prop: u } = l(e, ["settings", "text"]), { theme: c } = N(), { prop: f } = l(e, ["settings", "tile"]), { prop: h } = l(e, ["settings", "value"]), { prop: x } = l(e, ["settings", "variant"]);
|
|
1010
1010
|
return (g, w) => {
|
|
1011
1011
|
const C = z("v-chip");
|
|
1012
1012
|
return v(), V(C, {
|
|
1013
|
-
closable: n(
|
|
1014
|
-
color: n(
|
|
1013
|
+
closable: n(o),
|
|
1014
|
+
color: n(r),
|
|
1015
1015
|
density: n(s),
|
|
1016
1016
|
disabled: n(a),
|
|
1017
1017
|
draggable: n(p),
|
|
@@ -1033,15 +1033,15 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1033
1033
|
outer: { type: Boolean }
|
|
1034
1034
|
},
|
|
1035
1035
|
setup(t) {
|
|
1036
|
-
const e = t, { prop:
|
|
1036
|
+
const e = t, { prop: o } = l(e, ["settings", "column"]), { prop: i } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "filter"]), { prop: a } = l(e, ["settings", "mandatory"]), { prop: p } = l(e, ["settings", "multiple"]), { prop: d } = l(e, ["settings", "showArrows"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "value"]);
|
|
1037
1037
|
return (u, c) => {
|
|
1038
1038
|
const f = z("v-chip-group");
|
|
1039
1039
|
return v(), V(f, {
|
|
1040
1040
|
modelValue: n(m),
|
|
1041
1041
|
"onUpdate:modelValue": c[0] || (c[0] = (h) => U(m) ? m.value = h : null),
|
|
1042
|
-
column: n(
|
|
1043
|
-
direction: n(
|
|
1044
|
-
disabled: n(
|
|
1042
|
+
column: n(o),
|
|
1043
|
+
direction: n(i),
|
|
1044
|
+
disabled: n(r),
|
|
1045
1045
|
filter: n(s),
|
|
1046
1046
|
mandatory: n(a),
|
|
1047
1047
|
multiple: n(p),
|
|
@@ -1062,13 +1062,13 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1062
1062
|
outer: { type: Boolean }
|
|
1063
1063
|
},
|
|
1064
1064
|
setup(t) {
|
|
1065
|
-
const e = t,
|
|
1066
|
-
const h = {}, x =
|
|
1067
|
-
return
|
|
1068
|
-
}), { prop: a } =
|
|
1065
|
+
const e = t, o = pe(), i = de(), { applySize: r } = he(e), s = k(() => {
|
|
1066
|
+
const h = {}, x = i.value.type;
|
|
1067
|
+
return o === "page" ? x === "common" ? r(h) : console.assert(!1) : o === "comp" && x === "common" ? r(h) : console.assert(!1), h;
|
|
1068
|
+
}), { prop: a } = l(e, ["settings", "disabled"]), { prop: p } = l(e, ["settings", "hideCanvas"]), { prop: d } = l(e, ["settings", "hideHeader"]), { prop: b } = l(e, ["settings", "hideInputs"]), { prop: m } = l(e, ["settings", "hideSliders"]), { prop: u } = l(e, ["settings", "landscape"]), { prop: c } = l(e, [
|
|
1069
1069
|
"settings",
|
|
1070
1070
|
"showSwatches"
|
|
1071
|
-
]), { theme: f } =
|
|
1071
|
+
]), { theme: f } = N();
|
|
1072
1072
|
return (h, x) => {
|
|
1073
1073
|
const g = z("v-color-picker");
|
|
1074
1074
|
return v(), V(g, {
|
|
@@ -1091,7 +1091,7 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1091
1091
|
outer: { type: Boolean }
|
|
1092
1092
|
},
|
|
1093
1093
|
setup(t) {
|
|
1094
|
-
const e = t, { prop:
|
|
1094
|
+
const e = t, { prop: o } = l(e, ["settings", "hideDetails"]), { prop: i } = l(e, ["settings", "label"]), { prop: r } = l(e, ["settings", "placeholder"]), { prop: s } = l(e, ["settings", "readonly"]), { prop: a } = l(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1095
1095
|
return (b, m) => {
|
|
1096
1096
|
const u = z("v-combobox");
|
|
1097
1097
|
return v(), V(n(Z), null, {
|
|
@@ -1099,9 +1099,9 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1099
1099
|
H(u, {
|
|
1100
1100
|
modelValue: n(d),
|
|
1101
1101
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => U(d) ? d.value = c : null),
|
|
1102
|
-
"hide-details": n(
|
|
1103
|
-
label: n(
|
|
1104
|
-
placeholder: n(
|
|
1102
|
+
"hide-details": n(o),
|
|
1103
|
+
label: n(i),
|
|
1104
|
+
placeholder: n(r),
|
|
1105
1105
|
readonly: n(s),
|
|
1106
1106
|
"single-line": n(a),
|
|
1107
1107
|
theme: n(p)
|
|
@@ -1118,12 +1118,12 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1118
1118
|
outer: { type: Boolean }
|
|
1119
1119
|
},
|
|
1120
1120
|
setup(t) {
|
|
1121
|
-
const e = t,
|
|
1121
|
+
const e = t, o = pe(), i = de(), { prop: r } = l(e, [
|
|
1122
1122
|
"settings",
|
|
1123
1123
|
"backgroundColor"
|
|
1124
|
-
]), { color: s } = j(
|
|
1125
|
-
const u = {}, c =
|
|
1126
|
-
return
|
|
1124
|
+
]), { color: s } = j(r), { applySize: a } = he(e), { applyMargin: p } = Ln(e), { applyPadding: d } = Bn(e), { applyBorder: b } = An(e), m = k(() => {
|
|
1125
|
+
const u = {}, c = i.value.type;
|
|
1126
|
+
return o === "page" ? c === "common" ? (a(u), p(u), d(u), b(u), s.value && (u.backgroundColor = s.value)) : console.assert(!1) : o === "comp" && c === "common" ? (a(u), p(u), d(u), b(u), s.value && (u.backgroundColor = s.value)) : console.assert(!1), u;
|
|
1127
1127
|
});
|
|
1128
1128
|
return (u, c) => (v(), Y("div", {
|
|
1129
1129
|
style: Q(m.value)
|
|
@@ -1138,7 +1138,7 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1138
1138
|
outer: { type: Boolean }
|
|
1139
1139
|
},
|
|
1140
1140
|
setup(t) {
|
|
1141
|
-
const e = t, { prop:
|
|
1141
|
+
const e = t, { prop: o } = l(e, ["settings", "density"]), { prop: i } = l(e, ["settings", "fixedFooter"]), { prop: r } = l(e, ["settings", "fixedHeader"]), { prop: s } = l(e, ["settings", "headers"]), { prop: a } = l(e, ["size", "height"]), { prop: p } = l(e, ["settings", "hover"]), { prop: d } = l(e, ["settings", "data"], !0), { prop: b } = l(e, ["settings", "loading"]), { prop: m } = l(e, ["settings", "multiSort"]), { theme: u } = N(), { prop: c } = l(e, ["size", "width"]), f = k(() => {
|
|
1142
1142
|
const h = [];
|
|
1143
1143
|
return (e.node.slots?.items ?? []).forEach((g) => {
|
|
1144
1144
|
g.column && g.comp && h.push(g);
|
|
@@ -1147,9 +1147,9 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1147
1147
|
return (h, x) => {
|
|
1148
1148
|
const g = z("v-data-table");
|
|
1149
1149
|
return v(), V(g, {
|
|
1150
|
-
density: n(
|
|
1151
|
-
"fixed-footer": n(
|
|
1152
|
-
"fixed-header": n(
|
|
1150
|
+
density: n(o),
|
|
1151
|
+
"fixed-footer": n(i),
|
|
1152
|
+
"fixed-header": n(r),
|
|
1153
1153
|
headers: n(s),
|
|
1154
1154
|
height: n(a),
|
|
1155
1155
|
hover: n(p),
|
|
@@ -1159,7 +1159,7 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1159
1159
|
theme: n(u),
|
|
1160
1160
|
width: n(c)
|
|
1161
1161
|
}, Tn({ _: 2 }, [
|
|
1162
|
-
|
|
1162
|
+
Eo(f.value, (w) => ({
|
|
1163
1163
|
name: `item.${w.column}`,
|
|
1164
1164
|
fn: I(({ value: C }) => [
|
|
1165
1165
|
H(n(fe), {
|
|
@@ -1173,8 +1173,8 @@ const qr = /* @__PURE__ */ ge(Jr, [["render", Zr]]), Qr = /* @__PURE__ */ $({
|
|
|
1173
1173
|
}
|
|
1174
1174
|
}), al = {};
|
|
1175
1175
|
function ul(t, e) {
|
|
1176
|
-
const
|
|
1177
|
-
return v(), V(
|
|
1176
|
+
const o = z("v-date-picker");
|
|
1177
|
+
return v(), V(o);
|
|
1178
1178
|
}
|
|
1179
1179
|
const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PURE__ */ $({
|
|
1180
1180
|
__name: "index",
|
|
@@ -1183,9 +1183,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1183
1183
|
outer: { type: Boolean }
|
|
1184
1184
|
},
|
|
1185
1185
|
setup(t) {
|
|
1186
|
-
const e = t,
|
|
1187
|
-
return po(
|
|
1188
|
-
if (
|
|
1186
|
+
const e = t, o = G(), i = We(), r = k(() => e.node.basic?.id), { open: s } = no(`runtimeDlg/${Yi()}`);
|
|
1187
|
+
return po(i, e, (p) => {
|
|
1188
|
+
if (o !== "runtime" && o !== "preview")
|
|
1189
1189
|
return;
|
|
1190
1190
|
const { name: d } = p;
|
|
1191
1191
|
d === "open" ? s.value = !0 : d === "close" && (s.value = !1);
|
|
@@ -1197,9 +1197,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1197
1197
|
attach: "#dialogContainer"
|
|
1198
1198
|
}, {
|
|
1199
1199
|
activator: I(() => [
|
|
1200
|
-
n(
|
|
1200
|
+
n(o) === "editor" ? (v(), Y("div", {
|
|
1201
1201
|
key: 0,
|
|
1202
|
-
id: `__node__@${
|
|
1202
|
+
id: `__node__@${r.value}`
|
|
1203
1203
|
}, null, 8, ml)) : ee("", !0)
|
|
1204
1204
|
]),
|
|
1205
1205
|
default: I(() => [
|
|
@@ -1216,13 +1216,13 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1216
1216
|
outer: { type: Boolean }
|
|
1217
1217
|
},
|
|
1218
1218
|
setup(t) {
|
|
1219
|
-
const e = t, { prop:
|
|
1219
|
+
const e = t, { prop: o } = l(e, ["settings", "chips"]), { prop: i } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "multiple"]), { prop: b } = l(e, ["settings", "readonly"]), { prop: m } = l(e, ["settings", "reverse"]), { prop: u } = l(e, ["settings", "singleLine"]);
|
|
1220
1220
|
return (c, f) => {
|
|
1221
1221
|
const h = z("v-file-input");
|
|
1222
1222
|
return v(), V(h, {
|
|
1223
|
-
chips: n(
|
|
1224
|
-
density: n(
|
|
1225
|
-
direction: n(
|
|
1223
|
+
chips: n(o),
|
|
1224
|
+
density: n(i),
|
|
1225
|
+
direction: n(r),
|
|
1226
1226
|
disabled: n(s),
|
|
1227
1227
|
label: n(a),
|
|
1228
1228
|
loading: n(p),
|
|
@@ -1240,22 +1240,22 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1240
1240
|
outer: { type: Boolean }
|
|
1241
1241
|
},
|
|
1242
1242
|
setup(t) {
|
|
1243
|
-
const e = t,
|
|
1243
|
+
const e = t, o = $e(), i = pe(), r = de(), { applySize: s } = he(e), { applyMargin: a } = Ln(e), { applyPadding: p } = Bn(e), { applyBorder: d } = An(e), { prop: b } = l(e, [
|
|
1244
1244
|
"settings",
|
|
1245
1245
|
"backgroundColor"
|
|
1246
1246
|
]), { color: m } = j(b), u = (f) => {
|
|
1247
1247
|
m.value && (f.backgroundColor = m.value), f.display = "flex";
|
|
1248
|
-
const h =
|
|
1248
|
+
const h = Re(o.value.width), x = Ie(h, e.node.settings?.direction);
|
|
1249
1249
|
x === "row" ? f.flexDirection = "row" : x === "rowReverse" ? f.flexDirection = "row-reverse" : x === "column" ? f.flexDirection = "column" : x === "columnReverse" && (f.flexDirection = "column-reverse");
|
|
1250
|
-
const g =
|
|
1250
|
+
const g = Ie(h, e.node.settings?.wrap);
|
|
1251
1251
|
g === "no" ? f.flexWrap = "nowrap" : g === "yes" ? f.flexWrap = "wrap" : g === "reverse" && (f.flexWrap = "wrap-reverse");
|
|
1252
|
-
const w =
|
|
1252
|
+
const w = Ie(h, e.node.settings?.mainAlign);
|
|
1253
1253
|
w === "start" ? f.justifyContent = "flex-start" : w === "end" ? f.justifyContent = "flex-end" : w === "center" ? f.justifyContent = "center" : w === "spaceBetween" ? f.justifyContent = "space-between" : w === "spaceAround" ? f.justifyContent = "space-around" : w === "spaceEvenly" && (f.justifyContent = "space-evenly");
|
|
1254
|
-
const C =
|
|
1254
|
+
const C = Ie(h, e.node.settings?.crossAlign);
|
|
1255
1255
|
C === "start" ? f.alignItems = "flex-start" : C === "end" ? f.alignItems = "flex-end" : C === "center" ? f.alignItems = "center" : C === "baseline" ? f.alignItems = "baseline" : C === "stretch" && (f.alignItems = "stretch");
|
|
1256
1256
|
}, c = k(() => {
|
|
1257
|
-
const f = {}, h =
|
|
1258
|
-
return
|
|
1257
|
+
const f = {}, h = r.value.type;
|
|
1258
|
+
return i === "page" ? h === "common" ? (s(f), a(f), p(f), d(f), u(f)) : console.assert(!1) : i === "comp" && h === "common" ? (s(f), a(f), p(f), d(f), u(f)) : console.assert(!1), f;
|
|
1259
1259
|
});
|
|
1260
1260
|
return (f, h) => (v(), Y("div", {
|
|
1261
1261
|
style: Q(c.value)
|
|
@@ -1270,9 +1270,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1270
1270
|
outer: { type: Boolean }
|
|
1271
1271
|
},
|
|
1272
1272
|
setup(t) {
|
|
1273
|
-
const e = t,
|
|
1274
|
-
const d = {}, b =
|
|
1275
|
-
return
|
|
1273
|
+
const e = t, o = pe(), i = de(), { applySize: r } = he(e), { prop: s } = l(e, ["settings", "grow"]), { prop: a } = l(e, ["settings", "shrink"]), p = k(() => {
|
|
1274
|
+
const d = {}, b = i.value.type;
|
|
1275
|
+
return o === "page" ? b === "common" ? (r(d), d.flexGrow = s.value ? 1 : 0, d.flexShrink = a.value ? 1 : 0) : console.assert(!1) : o === "comp" && b === "common" ? (r(d), d.flexGrow = s.value ? 1 : 0, d.flexShrink = a.value ? 1 : 0) : console.assert(!1), d;
|
|
1276
1276
|
});
|
|
1277
1277
|
return (d, b) => (v(), Y("div", {
|
|
1278
1278
|
style: Q(p.value)
|
|
@@ -1287,14 +1287,14 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1287
1287
|
outer: { type: Boolean }
|
|
1288
1288
|
},
|
|
1289
1289
|
setup(t) {
|
|
1290
|
-
const e = t,
|
|
1290
|
+
const e = t, o = G(), i = pe(), r = de(), s = We(), { prop: a } = l(e, ["settings", "valid"]), { prop: p } = l(e, ["settings", "fastFail"]), { prop: d } = l(e, [
|
|
1291
1291
|
"settings",
|
|
1292
1292
|
"backgroundColor"
|
|
1293
1293
|
]), { color: b } = j(d), { applySize: m } = he(e), { applyMargin: u } = Ln(e), { applyPadding: c } = Bn(e), { applyBorder: f } = An(e), h = k(() => {
|
|
1294
|
-
const g = {}, w =
|
|
1295
|
-
return
|
|
1294
|
+
const g = {}, w = r.value.type;
|
|
1295
|
+
return i === "page" ? w === "common" ? (m(g), u(g), c(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1) : i === "comp" && w === "common" ? (m(g), u(g), c(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1), g;
|
|
1296
1296
|
}), x = () => {
|
|
1297
|
-
|
|
1297
|
+
o !== "runtime" && o !== "preview" || s.callFunction("__triggerEventV1__", [
|
|
1298
1298
|
`elementEvent@submit@${e.node.basic.id}`
|
|
1299
1299
|
]);
|
|
1300
1300
|
};
|
|
@@ -1305,7 +1305,7 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1305
1305
|
"onUpdate:modelValue": w[0] || (w[0] = (R) => U(a) ? a.value = R : null),
|
|
1306
1306
|
"fast-fail": n(p),
|
|
1307
1307
|
style: Q(h.value),
|
|
1308
|
-
onSubmit:
|
|
1308
|
+
onSubmit: No(x, ["prevent"])
|
|
1309
1309
|
}, {
|
|
1310
1310
|
default: I(() => [
|
|
1311
1311
|
L(g.$slots, "default")
|
|
@@ -1321,12 +1321,12 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1321
1321
|
outer: { type: Boolean }
|
|
1322
1322
|
},
|
|
1323
1323
|
setup(t) {
|
|
1324
|
-
const e = t, { prop:
|
|
1324
|
+
const e = t, { prop: o } = l(e, ["settings", "color"]), { color: i } = j(o), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "icon"]), { prop: a } = l(e, ["settings", "size"]), { theme: p } = N();
|
|
1325
1325
|
return (d, b) => {
|
|
1326
1326
|
const m = z("v-icon");
|
|
1327
1327
|
return v(), V(m, {
|
|
1328
|
-
color: n(
|
|
1329
|
-
disabled: n(
|
|
1328
|
+
color: n(i),
|
|
1329
|
+
disabled: n(r),
|
|
1330
1330
|
icon: n(s),
|
|
1331
1331
|
size: n(a),
|
|
1332
1332
|
theme: n(p)
|
|
@@ -1340,12 +1340,12 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1340
1340
|
outer: { type: Boolean }
|
|
1341
1341
|
},
|
|
1342
1342
|
setup(t) {
|
|
1343
|
-
const e = t,
|
|
1344
|
-
return po(
|
|
1345
|
-
if (
|
|
1343
|
+
const e = t, o = G(), i = We(), r = ce(0), s = ce(0), a = k(() => [r.value, s.value]), p = k(() => e.node.basic?.id), { open: d } = no(`runtimeMenu/${Yi()}`);
|
|
1344
|
+
return po(i, e, (m) => {
|
|
1345
|
+
if (o !== "runtime" && o !== "preview")
|
|
1346
1346
|
return;
|
|
1347
1347
|
const { name: u } = m;
|
|
1348
|
-
u === "open" ? (
|
|
1348
|
+
u === "open" ? (r.value = i.getVariable("__pointerPosX__"), s.value = i.getVariable("__pointerPosY__"), d.value = !0) : u === "close" && (d.value = !1);
|
|
1349
1349
|
}), (m, u) => {
|
|
1350
1350
|
const c = z("v-menu");
|
|
1351
1351
|
return v(), V(c, {
|
|
@@ -1357,7 +1357,7 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1357
1357
|
target: a.value
|
|
1358
1358
|
}, {
|
|
1359
1359
|
activator: I(() => [
|
|
1360
|
-
n(
|
|
1360
|
+
n(o) === "editor" ? (v(), Y("div", {
|
|
1361
1361
|
key: 0,
|
|
1362
1362
|
id: `__node__@${p.value}`
|
|
1363
1363
|
}, null, 8, gl)) : ee("", !0)
|
|
@@ -1376,33 +1376,33 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1376
1376
|
outer: { type: Boolean }
|
|
1377
1377
|
},
|
|
1378
1378
|
setup(t) {
|
|
1379
|
-
const e = t, { prop:
|
|
1379
|
+
const e = t, { prop: o } = l(e, [
|
|
1380
1380
|
"settings",
|
|
1381
1381
|
"addIcon",
|
|
1382
1382
|
"append"
|
|
1383
|
-
]), { prop:
|
|
1383
|
+
]), { prop: i } = l(e, [
|
|
1384
1384
|
"settings",
|
|
1385
1385
|
"addIcon",
|
|
1386
1386
|
"appendInner"
|
|
1387
|
-
]), { prop:
|
|
1387
|
+
]), { prop: r } = l(e, ["settings", "clearable"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "max"]), { prop: b } = l(e, ["size", "maxWidth"]), { prop: m } = l(e, ["settings", "min"]), { prop: u } = l(e, ["size", "minWidth"]), { prop: c } = l(e, ["settings", "placeholder"]), { prop: f } = l(e, ["settings", "precision"]), { prop: h } = l(e, ["settings", "prefix"]), { prop: x } = l(e, [
|
|
1388
1388
|
"settings",
|
|
1389
1389
|
"addIcon",
|
|
1390
1390
|
"prepend"
|
|
1391
|
-
]), { prop: g } =
|
|
1391
|
+
]), { prop: g } = l(e, [
|
|
1392
1392
|
"settings",
|
|
1393
1393
|
"addIcon",
|
|
1394
1394
|
"prependInner"
|
|
1395
|
-
]), { prop: w } =
|
|
1395
|
+
]), { prop: w } = l(e, ["settings", "readonly"]), { prop: C } = l(e, ["settings", "reverse"]), { prop: R } = l(e, ["settings", "singleLine"]), { prop: W } = l(e, ["settings", "step"]), { prop: F } = l(e, ["settings", "suffix"]), { theme: D } = N(), { prop: E } = l(e, ["settings", "value"]), { prop: S } = l(e, ["settings", "variant"]), { prop: M } = l(e, ["size", "width"]);
|
|
1396
1396
|
return (J, te) => {
|
|
1397
1397
|
const re = z("v-number-input");
|
|
1398
1398
|
return v(), V(n(Z), null, {
|
|
1399
1399
|
default: I(() => [
|
|
1400
1400
|
H(re, {
|
|
1401
|
-
modelValue: n(
|
|
1402
|
-
"onUpdate:modelValue": te[0] || (te[0] = (le) => U(
|
|
1403
|
-
"append-icon": n(
|
|
1404
|
-
"append-inner-icon": n(
|
|
1405
|
-
clearable: n(
|
|
1401
|
+
modelValue: n(E),
|
|
1402
|
+
"onUpdate:modelValue": te[0] || (te[0] = (le) => U(E) ? E.value = le : null),
|
|
1403
|
+
"append-icon": n(o),
|
|
1404
|
+
"append-inner-icon": n(i),
|
|
1405
|
+
clearable: n(r),
|
|
1406
1406
|
"hide-details": n(s),
|
|
1407
1407
|
label: n(a),
|
|
1408
1408
|
loading: n(p),
|
|
@@ -1436,12 +1436,12 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1436
1436
|
outer: { type: Boolean }
|
|
1437
1437
|
},
|
|
1438
1438
|
setup(t) {
|
|
1439
|
-
const e = t,
|
|
1439
|
+
const e = t, o = G(), { prop: i } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "length"]), { prop: a } = l(e, [
|
|
1440
1440
|
"settings",
|
|
1441
1441
|
"showFirstLastPage"
|
|
1442
|
-
]), { prop: p } =
|
|
1442
|
+
]), { prop: p } = l(e, ["settings", "size"]), { prop: d } = l(e, ["settings", "start"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "tile"]), { prop: u } = l(e, ["settings", "value"]), { prop: c } = l(e, ["settings", "variant"]), f = k(() => {
|
|
1443
1443
|
const h = {};
|
|
1444
|
-
return
|
|
1444
|
+
return o === "editor" && (h.pointerEvents = "none"), h;
|
|
1445
1445
|
});
|
|
1446
1446
|
return (h, x) => {
|
|
1447
1447
|
const g = z("v-pagination");
|
|
@@ -1450,8 +1450,8 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1450
1450
|
H(g, {
|
|
1451
1451
|
modelValue: n(u),
|
|
1452
1452
|
"onUpdate:modelValue": x[0] || (x[0] = (w) => U(u) ? u.value = w : null),
|
|
1453
|
-
density: n(
|
|
1454
|
-
disabled: n(
|
|
1453
|
+
density: n(i),
|
|
1454
|
+
disabled: n(r),
|
|
1455
1455
|
length: n(s),
|
|
1456
1456
|
"show-first-last-page": n(a),
|
|
1457
1457
|
size: n(p),
|
|
@@ -1473,12 +1473,12 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1473
1473
|
outer: { type: Boolean }
|
|
1474
1474
|
},
|
|
1475
1475
|
setup(t) {
|
|
1476
|
-
const e = t, { prop:
|
|
1476
|
+
const e = t, { prop: o } = l(e, ["settings", "color"]), { color: i } = j(o), { prop: r } = l(e, ["settings", "density"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "readonly"]), { theme: d } = N(), { prop: b } = l(e, ["settings", "value"]);
|
|
1477
1477
|
return (m, u) => {
|
|
1478
1478
|
const c = z("v-radio");
|
|
1479
1479
|
return v(), V(c, {
|
|
1480
|
-
color: n(
|
|
1481
|
-
density: n(
|
|
1480
|
+
color: n(i),
|
|
1481
|
+
density: n(r),
|
|
1482
1482
|
disabled: n(s),
|
|
1483
1483
|
label: n(a),
|
|
1484
1484
|
readonly: n(p),
|
|
@@ -1494,7 +1494,7 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1494
1494
|
outer: { type: Boolean }
|
|
1495
1495
|
},
|
|
1496
1496
|
setup(t) {
|
|
1497
|
-
const e = t, { prop:
|
|
1497
|
+
const e = t, { prop: o } = l(e, ["settings", "density"]), { prop: i } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "inline"]), { prop: a } = l(e, ["settings", "readonly"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1498
1498
|
return (b, m) => {
|
|
1499
1499
|
const u = z("v-radio-group");
|
|
1500
1500
|
return v(), V(n(Z), null, {
|
|
@@ -1502,9 +1502,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1502
1502
|
H(u, {
|
|
1503
1503
|
modelValue: n(d),
|
|
1504
1504
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => U(d) ? d.value = c : null),
|
|
1505
|
-
density: n(
|
|
1506
|
-
direction: n(
|
|
1507
|
-
disabled: n(
|
|
1505
|
+
density: n(o),
|
|
1506
|
+
direction: n(i),
|
|
1507
|
+
disabled: n(r),
|
|
1508
1508
|
inline: n(s),
|
|
1509
1509
|
readonly: n(a),
|
|
1510
1510
|
theme: n(p)
|
|
@@ -1526,12 +1526,12 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1526
1526
|
outer: { type: Boolean }
|
|
1527
1527
|
},
|
|
1528
1528
|
setup(t) {
|
|
1529
|
-
const e = t, { prop:
|
|
1529
|
+
const e = t, { prop: o } = l(e, ["settings", "density"]), { prop: i } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "max"]), { prop: d } = l(e, ["settings", "min"]), { prop: b } = l(e, ["settings", "readonly"]), { prop: m } = l(e, ["settings", "showTicks"]), u = k(() => {
|
|
1530
1530
|
if (m.value === "always")
|
|
1531
1531
|
return "always";
|
|
1532
1532
|
if (m.value === "show")
|
|
1533
1533
|
return !0;
|
|
1534
|
-
}), { prop: c } =
|
|
1534
|
+
}), { prop: c } = l(e, ["settings", "step"]), { theme: f } = N(), { prop: h } = l(e, [
|
|
1535
1535
|
"settings",
|
|
1536
1536
|
"thumbLabel"
|
|
1537
1537
|
]), x = k(() => {
|
|
@@ -1539,25 +1539,25 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1539
1539
|
return "always";
|
|
1540
1540
|
if (h.value === "show")
|
|
1541
1541
|
return !0;
|
|
1542
|
-
}), { prop: g } =
|
|
1542
|
+
}), { prop: g } = l(e, ["settings", "thumbSize"]), { prop: w } = l(e, ["settings", "ticks"]), C = k(() => {
|
|
1543
1543
|
if (!w.value)
|
|
1544
1544
|
return;
|
|
1545
|
-
const
|
|
1545
|
+
const E = {};
|
|
1546
1546
|
for (const { value: S, label: M } of w.value)
|
|
1547
|
-
|
|
1548
|
-
if (!Qi(
|
|
1549
|
-
return
|
|
1550
|
-
}), { prop: R } =
|
|
1547
|
+
E[S] = M;
|
|
1548
|
+
if (!Qi(E))
|
|
1549
|
+
return E;
|
|
1550
|
+
}), { prop: R } = l(e, ["settings", "tickSize"]), { prop: W } = l(e, [
|
|
1551
1551
|
"settings",
|
|
1552
1552
|
"value",
|
|
1553
1553
|
"start"
|
|
1554
|
-
]), { prop: F } =
|
|
1554
|
+
]), { prop: F } = l(e, ["settings", "value", "end"]), D = k({
|
|
1555
1555
|
get: () => [W.value, F.value],
|
|
1556
|
-
set: ([
|
|
1557
|
-
W.value =
|
|
1556
|
+
set: ([E, S]) => {
|
|
1557
|
+
W.value = E, F.value = S;
|
|
1558
1558
|
}
|
|
1559
1559
|
});
|
|
1560
|
-
return (
|
|
1560
|
+
return (E, S) => {
|
|
1561
1561
|
const M = z("v-range-slider");
|
|
1562
1562
|
return v(), V(n(Z), {
|
|
1563
1563
|
modelValue: D.value,
|
|
@@ -1567,9 +1567,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1567
1567
|
H(M, {
|
|
1568
1568
|
modelValue: D.value,
|
|
1569
1569
|
"onUpdate:modelValue": S[0] || (S[0] = (J) => D.value = J),
|
|
1570
|
-
density: n(
|
|
1571
|
-
direction: n(
|
|
1572
|
-
disabled: n(
|
|
1570
|
+
density: n(o),
|
|
1571
|
+
direction: n(i),
|
|
1572
|
+
disabled: n(r),
|
|
1573
1573
|
"hide-details": n(s),
|
|
1574
1574
|
label: n(a),
|
|
1575
1575
|
max: n(p),
|
|
@@ -1595,10 +1595,10 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1595
1595
|
outer: { type: Boolean }
|
|
1596
1596
|
},
|
|
1597
1597
|
setup(t) {
|
|
1598
|
-
const e = t, { prop:
|
|
1598
|
+
const e = t, { prop: o } = l(e, ["settings", "clearable"]), { prop: i } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, [
|
|
1599
1599
|
"settings",
|
|
1600
1600
|
"halfIncrements"
|
|
1601
|
-
]), { prop: a } =
|
|
1601
|
+
]), { prop: a } = l(e, ["settings", "hover"]), { prop: p } = l(e, ["settings", "length"]), { prop: d } = l(e, ["settings", "readonly"]), { theme: b } = N(), { prop: m } = l(e, ["settings", "value"]);
|
|
1602
1602
|
return (u, c) => {
|
|
1603
1603
|
const f = z("v-rating");
|
|
1604
1604
|
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
@@ -1606,9 +1606,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1606
1606
|
H(f, {
|
|
1607
1607
|
modelValue: n(m),
|
|
1608
1608
|
"onUpdate:modelValue": c[0] || (c[0] = (h) => U(m) ? m.value = h : null),
|
|
1609
|
-
clearable: n(
|
|
1610
|
-
density: n(
|
|
1611
|
-
disabled: n(
|
|
1609
|
+
clearable: n(o),
|
|
1610
|
+
density: n(i),
|
|
1611
|
+
disabled: n(r),
|
|
1612
1612
|
"half-increments": n(s),
|
|
1613
1613
|
hover: n(a),
|
|
1614
1614
|
length: n(p),
|
|
@@ -1627,7 +1627,7 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1627
1627
|
outer: { type: Boolean }
|
|
1628
1628
|
},
|
|
1629
1629
|
setup(t) {
|
|
1630
|
-
const e = t, { prop:
|
|
1630
|
+
const e = t, { prop: o } = l(e, ["settings", "hideDetails"]), { prop: i } = l(e, ["settings", "label"]), { prop: r } = l(e, ["settings", "placeholder"]), { prop: s } = l(e, ["settings", "readonly"]), { prop: a } = l(e, ["settings", "singleLine"]), { theme: p } = N(), { prop: d } = l(e, ["settings", "value"]);
|
|
1631
1631
|
return (b, m) => {
|
|
1632
1632
|
const u = z("v-select");
|
|
1633
1633
|
return v(), V(n(Z), null, {
|
|
@@ -1635,9 +1635,9 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1635
1635
|
H(u, {
|
|
1636
1636
|
modelValue: n(d),
|
|
1637
1637
|
"onUpdate:modelValue": m[0] || (m[0] = (c) => U(d) ? d.value = c : null),
|
|
1638
|
-
"hide-details": n(
|
|
1639
|
-
label: n(
|
|
1640
|
-
placeholder: n(
|
|
1638
|
+
"hide-details": n(o),
|
|
1639
|
+
label: n(i),
|
|
1640
|
+
placeholder: n(r),
|
|
1641
1641
|
readonly: n(s),
|
|
1642
1642
|
"single-line": n(a),
|
|
1643
1643
|
theme: n(p)
|
|
@@ -1654,15 +1654,15 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1654
1654
|
outer: { type: Boolean }
|
|
1655
1655
|
},
|
|
1656
1656
|
setup(t) {
|
|
1657
|
-
const e = t, { prop:
|
|
1657
|
+
const e = t, { prop: o } = l(e, ["settings", "color"]), { color: i } = j(o), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "hideDetails"]), { prop: p } = l(e, ["settings", "label"]), { prop: d } = l(e, ["settings", "max"]), { prop: b } = l(e, ["settings", "min"]), { prop: m } = l(e, ["settings", "readonly"]), { prop: u } = l(e, ["settings", "reverse"]), { prop: c } = l(e, ["settings", "showTicks"]), f = k(() => {
|
|
1658
1658
|
if (c.value === "always")
|
|
1659
1659
|
return "always";
|
|
1660
1660
|
if (c.value === "show")
|
|
1661
1661
|
return !0;
|
|
1662
|
-
}), { prop: h } =
|
|
1662
|
+
}), { prop: h } = l(e, ["settings", "step"]), { theme: x } = N(), { prop: g } = l(e, [
|
|
1663
1663
|
"settings",
|
|
1664
1664
|
"thumbColor"
|
|
1665
|
-
]), { color: w } = j(g), { prop: C } =
|
|
1665
|
+
]), { color: w } = j(g), { prop: C } = l(e, [
|
|
1666
1666
|
"settings",
|
|
1667
1667
|
"thumbLabel"
|
|
1668
1668
|
]), R = k(() => {
|
|
@@ -1670,27 +1670,27 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1670
1670
|
return "always";
|
|
1671
1671
|
if (C.value === "show")
|
|
1672
1672
|
return !0;
|
|
1673
|
-
}), { prop: W } =
|
|
1673
|
+
}), { prop: W } = l(e, ["settings", "thumbSize"]), { prop: F } = l(e, ["settings", "ticks"]), D = k(() => {
|
|
1674
1674
|
if (!F.value)
|
|
1675
1675
|
return;
|
|
1676
1676
|
const le = {};
|
|
1677
|
-
for (const { value:
|
|
1678
|
-
le[
|
|
1677
|
+
for (const { value: Ee, label: Ut } of F.value)
|
|
1678
|
+
le[Ee] = Ut;
|
|
1679
1679
|
if (!Qi(le))
|
|
1680
1680
|
return le;
|
|
1681
|
-
}), { prop:
|
|
1681
|
+
}), { prop: E } = l(e, ["settings", "tickSize"]), { prop: S } = l(e, [
|
|
1682
1682
|
"settings",
|
|
1683
1683
|
"trackColor"
|
|
1684
|
-
]), { color: M } = j(S), { prop: J } =
|
|
1685
|
-
return (le,
|
|
1686
|
-
const
|
|
1684
|
+
]), { color: M } = j(S), { prop: J } = l(e, ["settings", "value"]), { prop: te } = l(e, ["slots", "append"]), { prop: re } = l(e, ["slots", "prepend"]);
|
|
1685
|
+
return (le, Ee) => {
|
|
1686
|
+
const Ut = z("v-slider");
|
|
1687
1687
|
return v(), V(n(Z), null, {
|
|
1688
1688
|
default: I(() => [
|
|
1689
|
-
H(
|
|
1689
|
+
H(Ut, {
|
|
1690
1690
|
modelValue: n(J),
|
|
1691
|
-
"onUpdate:modelValue":
|
|
1692
|
-
color: n(
|
|
1693
|
-
direction: n(
|
|
1691
|
+
"onUpdate:modelValue": Ee[0] || (Ee[0] = (Bo) => U(J) ? J.value = Bo : null),
|
|
1692
|
+
color: n(i),
|
|
1693
|
+
direction: n(r),
|
|
1694
1694
|
disabled: n(s),
|
|
1695
1695
|
"hide-details": n(a),
|
|
1696
1696
|
label: n(p),
|
|
@@ -1704,7 +1704,7 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1704
1704
|
"thumb-color": n(w),
|
|
1705
1705
|
"thumb-label": R.value,
|
|
1706
1706
|
"thumb-size": n(W),
|
|
1707
|
-
"tick-size": n(
|
|
1707
|
+
"tick-size": n(E),
|
|
1708
1708
|
ticks: D.value,
|
|
1709
1709
|
"track-color": n(M)
|
|
1710
1710
|
}, Tn({ _: 2 }, [
|
|
@@ -1741,14 +1741,14 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1741
1741
|
outer: { type: Boolean }
|
|
1742
1742
|
},
|
|
1743
1743
|
setup(t) {
|
|
1744
|
-
const e = t, { prop:
|
|
1744
|
+
const e = t, { prop: o } = l(e, ["settings", "hideActions"]), { theme: i } = N(), { prop: r } = l(e, ["settings", "value"]);
|
|
1745
1745
|
return (s, a) => {
|
|
1746
1746
|
const p = z("v-stepper");
|
|
1747
1747
|
return v(), V(p, {
|
|
1748
|
-
modelValue: n(
|
|
1749
|
-
"onUpdate:modelValue": a[0] || (a[0] = (d) => U(
|
|
1750
|
-
"hide-actions": n(
|
|
1751
|
-
theme: n(
|
|
1748
|
+
modelValue: n(r),
|
|
1749
|
+
"onUpdate:modelValue": a[0] || (a[0] = (d) => U(r) ? r.value = d : null),
|
|
1750
|
+
"hide-actions": n(o),
|
|
1751
|
+
theme: n(i)
|
|
1752
1752
|
}, {
|
|
1753
1753
|
default: I(() => [
|
|
1754
1754
|
L(s.$slots, "default")
|
|
@@ -1759,8 +1759,8 @@ const cl = /* @__PURE__ */ ge(al, [["render", ul]]), ml = ["id"], pl = /* @__PUR
|
|
|
1759
1759
|
}
|
|
1760
1760
|
}), Tl = {};
|
|
1761
1761
|
function Pl(t, e) {
|
|
1762
|
-
const
|
|
1763
|
-
return v(), V(
|
|
1762
|
+
const o = z("v-stepper-header");
|
|
1763
|
+
return v(), V(o, null, {
|
|
1764
1764
|
default: I(() => [
|
|
1765
1765
|
L(t.$slots, "default")
|
|
1766
1766
|
]),
|
|
@@ -1774,12 +1774,12 @@ const zl = /* @__PURE__ */ ge(Tl, [["render", Pl]]), Al = /* @__PURE__ */ $({
|
|
|
1774
1774
|
outer: { type: Boolean }
|
|
1775
1775
|
},
|
|
1776
1776
|
setup(t) {
|
|
1777
|
-
const e = t, { prop:
|
|
1778
|
-
return (
|
|
1777
|
+
const e = t, { prop: o } = l(e, ["settings", "value"]);
|
|
1778
|
+
return (i, r) => {
|
|
1779
1779
|
const s = z("v-stepper-item");
|
|
1780
|
-
return v(), V(s, { value: n(
|
|
1780
|
+
return v(), V(s, { value: n(o) }, {
|
|
1781
1781
|
default: I(() => [
|
|
1782
|
-
L(
|
|
1782
|
+
L(i.$slots, "default")
|
|
1783
1783
|
]),
|
|
1784
1784
|
_: 3
|
|
1785
1785
|
}, 8, ["value"]);
|
|
@@ -1787,43 +1787,43 @@ const zl = /* @__PURE__ */ ge(Tl, [["render", Pl]]), Al = /* @__PURE__ */ $({
|
|
|
1787
1787
|
}
|
|
1788
1788
|
}), Ll = {};
|
|
1789
1789
|
function Bl(t, e) {
|
|
1790
|
-
const
|
|
1791
|
-
return v(), V(
|
|
1790
|
+
const o = z("v-stepper-window");
|
|
1791
|
+
return v(), V(o, null, {
|
|
1792
1792
|
default: I(() => [
|
|
1793
1793
|
L(t.$slots, "default")
|
|
1794
1794
|
]),
|
|
1795
1795
|
_: 3
|
|
1796
1796
|
});
|
|
1797
1797
|
}
|
|
1798
|
-
const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]),
|
|
1798
|
+
const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), El = /* @__PURE__ */ $({
|
|
1799
1799
|
__name: "index",
|
|
1800
1800
|
props: {
|
|
1801
1801
|
node: {},
|
|
1802
1802
|
outer: { type: Boolean }
|
|
1803
1803
|
},
|
|
1804
1804
|
setup(t) {
|
|
1805
|
-
const e = t, { prop:
|
|
1806
|
-
return (
|
|
1805
|
+
const e = t, { prop: o } = l(e, ["settings", "value"]);
|
|
1806
|
+
return (i, r) => {
|
|
1807
1807
|
const s = z("v-stepper-window-item");
|
|
1808
|
-
return v(), V(s, { value: n(
|
|
1808
|
+
return v(), V(s, { value: n(o) }, {
|
|
1809
1809
|
default: I(() => [
|
|
1810
|
-
L(
|
|
1810
|
+
L(i.$slots, "default")
|
|
1811
1811
|
]),
|
|
1812
1812
|
_: 3
|
|
1813
1813
|
}, 8, ["value"]);
|
|
1814
1814
|
};
|
|
1815
1815
|
}
|
|
1816
|
-
}),
|
|
1816
|
+
}), Nl = /* @__PURE__ */ $({
|
|
1817
1817
|
__name: "index",
|
|
1818
1818
|
props: {
|
|
1819
1819
|
node: {},
|
|
1820
1820
|
outer: { type: Boolean }
|
|
1821
1821
|
},
|
|
1822
1822
|
setup(t) {
|
|
1823
|
-
const e = t, { prop:
|
|
1823
|
+
const e = t, { prop: o } = l(e, ["settings", "density"]), { prop: i } = l(e, ["settings", "direction"]), { prop: r } = l(e, ["settings", "disabled"]), { prop: s } = l(e, ["settings", "hideDetails"]), { prop: a } = l(e, [
|
|
1824
1824
|
"settings",
|
|
1825
1825
|
"indeterminate"
|
|
1826
|
-
]), { prop: p } =
|
|
1826
|
+
]), { prop: p } = l(e, ["settings", "inline"]), { prop: d } = l(e, ["settings", "inset"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "loading"]), { theme: u } = N(), { prop: c } = l(e, ["settings", "value"]);
|
|
1827
1827
|
return (f, h) => {
|
|
1828
1828
|
const x = z("v-switch");
|
|
1829
1829
|
return v(), V(n(Z), { "fit-content": !0 }, {
|
|
@@ -1831,9 +1831,9 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1831
1831
|
H(x, {
|
|
1832
1832
|
modelValue: n(c),
|
|
1833
1833
|
"onUpdate:modelValue": h[0] || (h[0] = (g) => U(c) ? c.value = g : null),
|
|
1834
|
-
density: n(
|
|
1835
|
-
direction: n(
|
|
1836
|
-
disabled: n(
|
|
1834
|
+
density: n(o),
|
|
1835
|
+
direction: n(i),
|
|
1836
|
+
disabled: n(r),
|
|
1837
1837
|
"hide-details": n(s),
|
|
1838
1838
|
indeterminate: n(a),
|
|
1839
1839
|
inline: n(p),
|
|
@@ -1854,9 +1854,9 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1854
1854
|
outer: { type: Boolean }
|
|
1855
1855
|
},
|
|
1856
1856
|
setup(t) {
|
|
1857
|
-
const e = t,
|
|
1857
|
+
const e = t, o = G(), { prop: i } = l(e, ["settings", "text"]), { theme: r } = N(), { prop: s } = l(e, ["settings", "value"]), a = k(() => {
|
|
1858
1858
|
const p = {};
|
|
1859
|
-
return
|
|
1859
|
+
return o === "editor" && (p.pointerEvents = "none"), p;
|
|
1860
1860
|
});
|
|
1861
1861
|
return (p, d) => {
|
|
1862
1862
|
const b = z("v-tab");
|
|
@@ -1864,8 +1864,8 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1864
1864
|
default: I(() => [
|
|
1865
1865
|
H(b, {
|
|
1866
1866
|
style: Q(a.value),
|
|
1867
|
-
text: n(
|
|
1868
|
-
theme: n(
|
|
1867
|
+
text: n(i),
|
|
1868
|
+
theme: n(r),
|
|
1869
1869
|
value: n(s)
|
|
1870
1870
|
}, null, 8, ["style", "text", "theme", "value"])
|
|
1871
1871
|
]),
|
|
@@ -1880,29 +1880,29 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1880
1880
|
outer: { type: Boolean }
|
|
1881
1881
|
},
|
|
1882
1882
|
setup(t) {
|
|
1883
|
-
const e = t, { prop:
|
|
1883
|
+
const e = t, { prop: o } = l(e, ["settings", "alignTabs"]), { prop: i } = l(e, [
|
|
1884
1884
|
"settings",
|
|
1885
1885
|
"color",
|
|
1886
1886
|
"backgroundColor"
|
|
1887
|
-
]), { color:
|
|
1887
|
+
]), { color: r } = j(i), { prop: s } = l(e, [
|
|
1888
1888
|
"settings",
|
|
1889
1889
|
"centerActive"
|
|
1890
|
-
]), { prop: a } =
|
|
1890
|
+
]), { prop: a } = l(e, [
|
|
1891
1891
|
"settings",
|
|
1892
1892
|
"color",
|
|
1893
1893
|
"selectedColor"
|
|
1894
|
-
]), { color: p } = j(a), { prop: d } =
|
|
1894
|
+
]), { color: p } = j(a), { prop: d } = l(e, ["settings", "density"]), { prop: b } = l(e, ["settings", "direction"]), { prop: m } = l(e, ["settings", "disabled"]), { prop: u } = l(e, ["settings", "fixedTabs"]), { prop: c } = l(e, ["settings", "grow"]), { prop: f } = l(e, ["settings", "hideSlider"]), { prop: h } = l(e, ["settings", "items"]), { prop: x } = l(e, ["settings", "mandatory"]), { prop: g } = l(e, ["settings", "showArrows"]), { prop: w } = l(e, [
|
|
1895
1895
|
"settings",
|
|
1896
1896
|
"color",
|
|
1897
1897
|
"sliderColor"
|
|
1898
|
-
]), { color: C } = j(w), { prop: R } =
|
|
1899
|
-
return (D,
|
|
1898
|
+
]), { color: C } = j(w), { prop: R } = l(e, ["settings", "stacked"]), { theme: W } = N(), { prop: F } = l(e, ["settings", "value"]);
|
|
1899
|
+
return (D, E) => {
|
|
1900
1900
|
const S = z("v-tabs");
|
|
1901
1901
|
return v(), V(S, {
|
|
1902
1902
|
modelValue: n(F),
|
|
1903
|
-
"onUpdate:modelValue":
|
|
1904
|
-
"align-tabs": n(
|
|
1905
|
-
"bg-color": n(
|
|
1903
|
+
"onUpdate:modelValue": E[0] || (E[0] = (M) => U(F) ? F.value = M : null),
|
|
1904
|
+
"align-tabs": n(o),
|
|
1905
|
+
"bg-color": n(r),
|
|
1906
1906
|
"center-active": n(s),
|
|
1907
1907
|
color: n(p),
|
|
1908
1908
|
density: n(d),
|
|
@@ -1932,9 +1932,9 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1932
1932
|
outer: { type: Boolean }
|
|
1933
1933
|
},
|
|
1934
1934
|
setup(t) {
|
|
1935
|
-
const e = t,
|
|
1936
|
-
const m = [], u =
|
|
1937
|
-
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"),
|
|
1935
|
+
const e = t, o = $e(), { prop: i } = l(e, ["settings", "align"]), { prop: r } = l(e, ["settings", "decoration"]), { prop: s } = l(e, ["settings", "emphasis"]), { prop: a } = l(e, ["settings", "italic"]), { prop: p } = l(e, ["settings", "text"]), { prop: d } = l(e, ["settings", "weight"]), b = k(() => {
|
|
1936
|
+
const m = [], u = Re(o.value.width), c = Ie(u, e.node.settings?.style);
|
|
1937
|
+
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"), i.value && m.push(`font-${i.value}`), r.value && m.push(`text-decoration-${r.value}`), d.value && m.push(`font-weight-${d.value}`), a.value && m.push("font-italic"), m.join(" ");
|
|
1938
1938
|
});
|
|
1939
1939
|
return (m, u) => (v(), Y("span", {
|
|
1940
1940
|
class: Ro(b.value)
|
|
@@ -1947,7 +1947,7 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1947
1947
|
outer: { type: Boolean }
|
|
1948
1948
|
},
|
|
1949
1949
|
setup(t) {
|
|
1950
|
-
const e = t, { prop:
|
|
1950
|
+
const e = t, { prop: o } = l(e, ["settings", "autoGrow"]), { prop: i } = l(e, ["settings", "clearable"]), { prop: r } = l(e, ["settings", "density"]), { prop: s } = l(e, ["settings", "disabled"]), { prop: a } = l(e, ["settings", "label"]), { prop: p } = l(e, ["settings", "loading"]), { prop: d } = l(e, ["settings", "maxRows"]), { prop: b } = l(e, ["settings", "placeholder"]), { prop: m } = l(e, ["settings", "readonly"]), { prop: u } = l(e, ["settings", "reverse"]), { prop: c } = l(e, ["settings", "rows"]), { prop: f } = l(e, ["settings", "singleLine"]), { theme: h } = N(), { prop: x } = l(e, ["settings", "value"]), { prop: g } = l(e, ["settings", "variant"]);
|
|
1951
1951
|
return (w, C) => {
|
|
1952
1952
|
const R = z("v-textarea");
|
|
1953
1953
|
return v(), V(n(Z), null, {
|
|
@@ -1955,9 +1955,9 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1955
1955
|
H(R, {
|
|
1956
1956
|
modelValue: n(x),
|
|
1957
1957
|
"onUpdate:modelValue": C[0] || (C[0] = (W) => U(x) ? x.value = W : null),
|
|
1958
|
-
"auto-grow": n(
|
|
1959
|
-
clearable: n(
|
|
1960
|
-
density: n(
|
|
1958
|
+
"auto-grow": n(o),
|
|
1959
|
+
clearable: n(i),
|
|
1960
|
+
density: n(r),
|
|
1961
1961
|
disabled: n(s),
|
|
1962
1962
|
label: n(a),
|
|
1963
1963
|
loading: n(p),
|
|
@@ -1982,16 +1982,16 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
1982
1982
|
outer: { type: Boolean }
|
|
1983
1983
|
},
|
|
1984
1984
|
setup(t) {
|
|
1985
|
-
const e = t, { prop:
|
|
1985
|
+
const e = t, { prop: o } = l(e, ["settings", "appendIcon"]), { prop: i } = l(e, [
|
|
1986
1986
|
"settings",
|
|
1987
1987
|
"appendInnerIcon"
|
|
1988
|
-
]), { prop:
|
|
1988
|
+
]), { prop: r } = l(e, ["settings", "autofocus"]), { prop: s } = l(e, ["settings", "clearable"]), { prop: a } = l(e, ["settings", "density"]), { prop: p } = l(e, ["settings", "disabled"]), { prop: d } = l(e, ["settings", "hideDetails"]), { prop: b } = l(e, ["settings", "label"]), { prop: m } = l(e, ["settings", "loading"]), { prop: u } = l(e, ["settings", "placeholder"]), { prop: c } = l(e, ["settings", "prefix"]), { prop: f } = l(e, ["settings", "prependIcon"]), { prop: h } = l(e, [
|
|
1989
1989
|
"settings",
|
|
1990
1990
|
"prependInnerIcon"
|
|
1991
|
-
]), { prop: x } =
|
|
1991
|
+
]), { prop: x } = l(e, ["settings", "readonly"]), { prop: g } = l(e, ["settings", "reverse"]), { prop: w } = l(e, ["settings", "singleLine"]), { prop: C } = l(e, ["settings", "suffix"]), { theme: R } = N(), { prop: W } = l(e, ["settings", "value"]), { prop: F } = l(e, ["settings", "variant"]), { prop: D } = l(e, ["slots", "append"]), { prop: E } = l(e, [
|
|
1992
1992
|
"slots",
|
|
1993
1993
|
"appendInner"
|
|
1994
|
-
]), { prop: S } =
|
|
1994
|
+
]), { prop: S } = l(e, ["slots", "prepend"]), { prop: M } = l(e, [
|
|
1995
1995
|
"slots",
|
|
1996
1996
|
"prependInner"
|
|
1997
1997
|
]);
|
|
@@ -2002,9 +2002,9 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
2002
2002
|
H(re, {
|
|
2003
2003
|
modelValue: n(W),
|
|
2004
2004
|
"onUpdate:modelValue": te[0] || (te[0] = (le) => U(W) ? W.value = le : null),
|
|
2005
|
-
"append-icon": n(
|
|
2006
|
-
"append-inner-icon": n(
|
|
2007
|
-
autofocus: n(
|
|
2005
|
+
"append-icon": n(o),
|
|
2006
|
+
"append-inner-icon": n(i),
|
|
2007
|
+
autofocus: n(r),
|
|
2008
2008
|
clearable: n(s),
|
|
2009
2009
|
density: n(a),
|
|
2010
2010
|
disabled: n(p),
|
|
@@ -2032,11 +2032,11 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
2032
2032
|
]),
|
|
2033
2033
|
key: "0"
|
|
2034
2034
|
} : void 0,
|
|
2035
|
-
n(
|
|
2035
|
+
n(E) ? {
|
|
2036
2036
|
name: "append-inner",
|
|
2037
2037
|
fn: I(() => [
|
|
2038
2038
|
H(n(fe), {
|
|
2039
|
-
"ref-context": { refid: n(
|
|
2039
|
+
"ref-context": { refid: n(E) },
|
|
2040
2040
|
state: {}
|
|
2041
2041
|
}, null, 8, ["ref-context"])
|
|
2042
2042
|
]),
|
|
@@ -2075,32 +2075,32 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
2075
2075
|
outer: { type: Boolean }
|
|
2076
2076
|
},
|
|
2077
2077
|
setup(t) {
|
|
2078
|
-
const e = t, { prop:
|
|
2078
|
+
const e = t, { prop: o } = l(e, ["settings", "align"]), { prop: i } = l(e, ["settings", "density"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, [
|
|
2079
2079
|
"settings",
|
|
2080
2080
|
"dot",
|
|
2081
2081
|
"color"
|
|
2082
|
-
]), { color: a } = j(s), { prop: p } =
|
|
2082
|
+
]), { color: a } = j(s), { prop: p } = l(e, ["settings", "dot", "fill"]), { prop: d } = l(e, [
|
|
2083
2083
|
"settings",
|
|
2084
2084
|
"hideOpposite"
|
|
2085
|
-
]), { prop: b } =
|
|
2085
|
+
]), { prop: b } = l(e, [
|
|
2086
2086
|
"settings",
|
|
2087
2087
|
"line",
|
|
2088
2088
|
"color"
|
|
2089
|
-
]), { color: m } = j(b), { prop: u } =
|
|
2089
|
+
]), { color: m } = j(b), { prop: u } = l(e, ["settings", "line", "inset"]), { prop: c } = l(e, [
|
|
2090
2090
|
"settings",
|
|
2091
2091
|
"line",
|
|
2092
2092
|
"thickness"
|
|
2093
|
-
]), { prop: f } =
|
|
2093
|
+
]), { prop: f } = l(e, ["settings", "side"]), { prop: h } = l(e, [
|
|
2094
2094
|
"settings",
|
|
2095
2095
|
"line",
|
|
2096
2096
|
"truncate"
|
|
2097
|
-
]), { theme: x } =
|
|
2097
|
+
]), { theme: x } = N();
|
|
2098
2098
|
return (g, w) => {
|
|
2099
2099
|
const C = z("v-timeline");
|
|
2100
2100
|
return v(), V(C, {
|
|
2101
|
-
align: n(
|
|
2102
|
-
density: n(
|
|
2103
|
-
direction: n(
|
|
2101
|
+
align: n(o),
|
|
2102
|
+
density: n(i),
|
|
2103
|
+
direction: n(r),
|
|
2104
2104
|
"dot-color": n(a),
|
|
2105
2105
|
"fill-dot": n(p),
|
|
2106
2106
|
"hide-opposite": n(d),
|
|
@@ -2120,8 +2120,8 @@ const Wl = /* @__PURE__ */ ge(Ll, [["render", Bl]]), Nl = /* @__PURE__ */ $({
|
|
|
2120
2120
|
}
|
|
2121
2121
|
}), jl = {};
|
|
2122
2122
|
function Kl(t, e) {
|
|
2123
|
-
const
|
|
2124
|
-
return v(), V(
|
|
2123
|
+
const o = z("v-timeline-item");
|
|
2124
|
+
return v(), V(o, null, {
|
|
2125
2125
|
default: I(() => [
|
|
2126
2126
|
L(t.$slots, "default")
|
|
2127
2127
|
]),
|
|
@@ -2135,15 +2135,15 @@ const Ul = /* @__PURE__ */ ge(jl, [["render", Kl]]), Ol = /* @__PURE__ */ $({
|
|
|
2135
2135
|
outer: { type: Boolean }
|
|
2136
2136
|
},
|
|
2137
2137
|
setup(t) {
|
|
2138
|
-
const e = t, { prop:
|
|
2138
|
+
const e = t, { prop: o } = l(e, ["settings", "continuous"]), { prop: i } = l(e, ["settings", "disabled"]), { prop: r } = l(e, ["settings", "direction"]), { prop: s } = l(e, ["settings", "reverse"]), { prop: a } = l(e, ["settings", "showArrows"]), { prop: p } = l(e, ["settings", "touch"]), { theme: d } = N(), { prop: b } = l(e, ["settings", "value"]);
|
|
2139
2139
|
return (m, u) => {
|
|
2140
2140
|
const c = z("v-window");
|
|
2141
2141
|
return v(), V(c, {
|
|
2142
2142
|
modelValue: n(b),
|
|
2143
2143
|
"onUpdate:modelValue": u[0] || (u[0] = (f) => U(b) ? b.value = f : null),
|
|
2144
|
-
continuous: n(
|
|
2145
|
-
direction: n(
|
|
2146
|
-
disabled: n(
|
|
2144
|
+
continuous: n(o),
|
|
2145
|
+
direction: n(r),
|
|
2146
|
+
disabled: n(i),
|
|
2147
2147
|
reverse: n(s),
|
|
2148
2148
|
"show-arrows": n(a),
|
|
2149
2149
|
theme: n(d),
|
|
@@ -2158,15 +2158,15 @@ const Ul = /* @__PURE__ */ ge(jl, [["render", Kl]]), Ol = /* @__PURE__ */ $({
|
|
|
2158
2158
|
}
|
|
2159
2159
|
}), Xl = {};
|
|
2160
2160
|
function Yl(t, e) {
|
|
2161
|
-
const
|
|
2162
|
-
return v(), V(
|
|
2161
|
+
const o = z("v-window-item");
|
|
2162
|
+
return v(), V(o, null, {
|
|
2163
2163
|
default: I(() => [
|
|
2164
2164
|
L(t.$slots, "default")
|
|
2165
2165
|
]),
|
|
2166
2166
|
_: 3
|
|
2167
2167
|
});
|
|
2168
2168
|
}
|
|
2169
|
-
const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]),
|
|
2169
|
+
const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ue = "ambient_light_v1", Oe = "badge_v1", Wn = "breadcrumbs_v1", Xe = "bar_chart_v1", Ye = "box_geometry_v1", Je = "btn_v1", Ze = "btn_group_v1", qe = "btn_toggle_v1", Qe = "card_v1", et = "checkbox_v1", tt = "chip_v1", nt = "chip_group_v1", it = "color_picker_v1", ot = "combobox_v1", st = "container_v1", rt = "data_table_v1", lt = "date_picker_v1", at = "dialog_v1", ut = "directional_light_v1", ct = "file_input_v1", mt = "flex_layout_v1", fo = "flex_layout_entry_v1", pt = "form_v1", en = "globality_v1", dt = "group_v1", ft = "icon_v1", bt = "keyboard_controls_v1", yt = "line_chart_v1", ht = "map_controls_v1", gt = "menu_v1", xt = "mesh_v1", Zl = "mesh_basic_material_v1", En = "multiple_ref_v1", vt = "number_input_v1", kt = "orbit_controls_v1", _t = "orthographic_camera_v1", wt = "pagination_v1", Vt = "perspective_camera_v1", $t = "point_light_v1", bo = "radio_v1", It = "radio_group_v1", St = "range_slider_v1", Ct = "rating_v1", Nn = "render_switch_v1", Tt = "select_v1", De = "single_ref_v1", Pt = "slider_v1", zt = "sphere_geometry_v1", At = "spot_light_v1", Lt = "stepper_v1", yo = "stepper_header_v1", ho = "stepper_item_v1", go = "stepper_window_v1", xo = "stepper_window_item_v1", Bt = "switch_v1", vo = "tab_v1", Rn = "table_v1", Wt = "tabs_v1", Et = "text_v1", Nt = "textarea_v1", Rt = "text_field_v1", Dt = "timeline_v1", ko = "timeline_item_v1", Mt = "window_v1", _o = "window_item_v1", y = {
|
|
2170
2170
|
key: "basic",
|
|
2171
2171
|
name: "x-runtime-lib.basic",
|
|
2172
2172
|
children: [
|
|
@@ -2228,7 +2228,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2228
2228
|
]
|
|
2229
2229
|
}
|
|
2230
2230
|
]
|
|
2231
|
-
}, ql = B(K),
|
|
2231
|
+
}, ql = B(K), _e = {
|
|
2232
2232
|
key: "border",
|
|
2233
2233
|
name: "x-runtime-lib.border",
|
|
2234
2234
|
children: [
|
|
@@ -2282,7 +2282,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2282
2282
|
]
|
|
2283
2283
|
}
|
|
2284
2284
|
]
|
|
2285
|
-
},
|
|
2285
|
+
}, Me = {
|
|
2286
2286
|
key: "legend",
|
|
2287
2287
|
name: "x-runtime-lib.legend",
|
|
2288
2288
|
children: [
|
|
@@ -2307,7 +2307,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2307
2307
|
defaultArray: []
|
|
2308
2308
|
}
|
|
2309
2309
|
]
|
|
2310
|
-
},
|
|
2310
|
+
}, we = {
|
|
2311
2311
|
key: "margin",
|
|
2312
2312
|
name: "x-runtime-lib.margin",
|
|
2313
2313
|
children: [
|
|
@@ -2340,7 +2340,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2340
2340
|
default: ""
|
|
2341
2341
|
}
|
|
2342
2342
|
]
|
|
2343
|
-
},
|
|
2343
|
+
}, Ve = {
|
|
2344
2344
|
key: "padding",
|
|
2345
2345
|
name: "x-runtime-lib.padding",
|
|
2346
2346
|
children: [
|
|
@@ -2420,7 +2420,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2420
2420
|
default: ""
|
|
2421
2421
|
}
|
|
2422
2422
|
]
|
|
2423
|
-
},
|
|
2423
|
+
}, Fe = {
|
|
2424
2424
|
key: "title",
|
|
2425
2425
|
name: "x-runtime-lib.title",
|
|
2426
2426
|
children: [
|
|
@@ -2529,7 +2529,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2529
2529
|
]
|
|
2530
2530
|
}
|
|
2531
2531
|
]
|
|
2532
|
-
},
|
|
2532
|
+
}, Ge = {
|
|
2533
2533
|
key: "xAxis",
|
|
2534
2534
|
name: "x-runtime-lib.xAxis",
|
|
2535
2535
|
children: [
|
|
@@ -2562,7 +2562,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2562
2562
|
defaultArray: []
|
|
2563
2563
|
}
|
|
2564
2564
|
]
|
|
2565
|
-
},
|
|
2565
|
+
}, He = {
|
|
2566
2566
|
key: "yAxis",
|
|
2567
2567
|
name: "x-runtime-lib.yAxis",
|
|
2568
2568
|
children: [
|
|
@@ -2643,7 +2643,7 @@ const Jl = /* @__PURE__ */ ge(Xl, [["render", Yl]]), Ke = "ambient_light_v1", Ue
|
|
|
2643
2643
|
}
|
|
2644
2644
|
]
|
|
2645
2645
|
}, Ql = {
|
|
2646
|
-
key:
|
|
2646
|
+
key: _t,
|
|
2647
2647
|
name: "x-runtime-lib.orthographicCamera",
|
|
2648
2648
|
comp: gs,
|
|
2649
2649
|
props: {
|
|
@@ -2689,7 +2689,7 @@ const Jn = {
|
|
|
2689
2689
|
}
|
|
2690
2690
|
]
|
|
2691
2691
|
}, ea = {
|
|
2692
|
-
key:
|
|
2692
|
+
key: Vt,
|
|
2693
2693
|
name: "x-runtime-lib.perspectiveCamera",
|
|
2694
2694
|
comp: vs,
|
|
2695
2695
|
props: {
|
|
@@ -2705,22 +2705,22 @@ const ta = /* @__PURE__ */ $({
|
|
|
2705
2705
|
__name: "index",
|
|
2706
2706
|
setup(t) {
|
|
2707
2707
|
const e = G();
|
|
2708
|
-
return (
|
|
2708
|
+
return (o, i) => n(e) !== "editor" ? (v(), V(n(qo), { key: 0 })) : ee("", !0);
|
|
2709
2709
|
}
|
|
2710
2710
|
}), na = /* @__PURE__ */ $({
|
|
2711
2711
|
__name: "index",
|
|
2712
2712
|
setup(t) {
|
|
2713
2713
|
const e = G();
|
|
2714
|
-
return (
|
|
2714
|
+
return (o, i) => n(e) !== "editor" ? (v(), V(n(Qo), { key: 0 })) : ee("", !0);
|
|
2715
2715
|
}
|
|
2716
2716
|
}), ia = /* @__PURE__ */ $({
|
|
2717
2717
|
__name: "index",
|
|
2718
2718
|
setup(t) {
|
|
2719
2719
|
const e = G();
|
|
2720
|
-
return (
|
|
2720
|
+
return (o, i) => n(e) !== "editor" ? (v(), V(n(es), { key: 0 })) : ee("", !0);
|
|
2721
2721
|
}
|
|
2722
2722
|
}), oa = {
|
|
2723
|
-
key:
|
|
2723
|
+
key: bt,
|
|
2724
2724
|
name: "x-runtime-lib.keyboardControls",
|
|
2725
2725
|
comp: ta,
|
|
2726
2726
|
props: {
|
|
@@ -2734,7 +2734,7 @@ const ta = /* @__PURE__ */ $({
|
|
|
2734
2734
|
};
|
|
2735
2735
|
_(oa);
|
|
2736
2736
|
const sa = {
|
|
2737
|
-
key:
|
|
2737
|
+
key: ht,
|
|
2738
2738
|
name: "x-runtime-lib.mapControls",
|
|
2739
2739
|
comp: na,
|
|
2740
2740
|
props: {
|
|
@@ -2748,7 +2748,7 @@ const sa = {
|
|
|
2748
2748
|
};
|
|
2749
2749
|
_(sa);
|
|
2750
2750
|
const ra = {
|
|
2751
|
-
key:
|
|
2751
|
+
key: kt,
|
|
2752
2752
|
name: "x-runtime-lib.orbitControls",
|
|
2753
2753
|
comp: ia,
|
|
2754
2754
|
props: {
|
|
@@ -2762,18 +2762,18 @@ const ra = {
|
|
|
2762
2762
|
};
|
|
2763
2763
|
_(ra);
|
|
2764
2764
|
function la(t, e) {
|
|
2765
|
-
const
|
|
2766
|
-
if (!
|
|
2767
|
-
console.error(`boxGeometryV1/spawn prop tag not found, ${
|
|
2765
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2766
|
+
if (!i) {
|
|
2767
|
+
console.error(`boxGeometryV1/spawn prop tag not found, ${o}`);
|
|
2768
2768
|
return;
|
|
2769
2769
|
}
|
|
2770
|
-
const
|
|
2771
|
-
if (!
|
|
2772
|
-
console.error(`boxGeometryV1/spawn props not found, ${
|
|
2770
|
+
const r = Pe.props[i];
|
|
2771
|
+
if (!r) {
|
|
2772
|
+
console.error(`boxGeometryV1/spawn props not found, ${o}`);
|
|
2773
2773
|
return;
|
|
2774
2774
|
}
|
|
2775
2775
|
const s = {};
|
|
2776
|
-
return P(s,
|
|
2776
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Pe.key, s.transform = {
|
|
2777
2777
|
position: {
|
|
2778
2778
|
x: 0,
|
|
2779
2779
|
y: 0,
|
|
@@ -2795,22 +2795,22 @@ function la(t, e) {
|
|
|
2795
2795
|
], s;
|
|
2796
2796
|
}
|
|
2797
2797
|
function aa(t, e) {
|
|
2798
|
-
const
|
|
2799
|
-
if (!
|
|
2798
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2799
|
+
if (!i) {
|
|
2800
2800
|
console.error(
|
|
2801
|
-
`boxGeometryV1/spawnBoxGeometry prop tag not found, ${
|
|
2801
|
+
`boxGeometryV1/spawnBoxGeometry prop tag not found, ${o}`
|
|
2802
2802
|
);
|
|
2803
2803
|
return;
|
|
2804
2804
|
}
|
|
2805
|
-
const
|
|
2806
|
-
if (!
|
|
2805
|
+
const r = tn.props[i];
|
|
2806
|
+
if (!r) {
|
|
2807
2807
|
console.error(
|
|
2808
|
-
`boxGeometryV1/spawnBoxGeometry props not found, ${
|
|
2808
|
+
`boxGeometryV1/spawnBoxGeometry props not found, ${o}`
|
|
2809
2809
|
);
|
|
2810
2810
|
return;
|
|
2811
2811
|
}
|
|
2812
2812
|
const s = {};
|
|
2813
|
-
return P(s,
|
|
2813
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = tn.key, s.settings = {
|
|
2814
2814
|
width: 1,
|
|
2815
2815
|
height: 1,
|
|
2816
2816
|
depth: 1,
|
|
@@ -2820,22 +2820,22 @@ function aa(t, e) {
|
|
|
2820
2820
|
}, s;
|
|
2821
2821
|
}
|
|
2822
2822
|
function ua(t, e) {
|
|
2823
|
-
const
|
|
2824
|
-
if (!
|
|
2823
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2824
|
+
if (!i) {
|
|
2825
2825
|
console.error(
|
|
2826
|
-
`boxGeometryV1/spawnMeshBasicMaterial prop tag not found, ${
|
|
2826
|
+
`boxGeometryV1/spawnMeshBasicMaterial prop tag not found, ${o}`
|
|
2827
2827
|
);
|
|
2828
2828
|
return;
|
|
2829
2829
|
}
|
|
2830
|
-
const
|
|
2831
|
-
if (!
|
|
2830
|
+
const r = Te.props[i];
|
|
2831
|
+
if (!r) {
|
|
2832
2832
|
console.error(
|
|
2833
|
-
`boxGeometryV1/spawnMeshBasicMaterial props not found, ${
|
|
2833
|
+
`boxGeometryV1/spawnMeshBasicMaterial props not found, ${o}`
|
|
2834
2834
|
);
|
|
2835
2835
|
return;
|
|
2836
2836
|
}
|
|
2837
2837
|
const s = {};
|
|
2838
|
-
return P(s,
|
|
2838
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Te.key, s;
|
|
2839
2839
|
}
|
|
2840
2840
|
const Zn = {
|
|
2841
2841
|
key: "settings",
|
|
@@ -2882,7 +2882,7 @@ const Zn = {
|
|
|
2882
2882
|
}
|
|
2883
2883
|
]
|
|
2884
2884
|
}, tn = {
|
|
2885
|
-
key:
|
|
2885
|
+
key: Ye,
|
|
2886
2886
|
name: "x-runtime-lib.boxGeometry",
|
|
2887
2887
|
comp: _s,
|
|
2888
2888
|
props: {
|
|
@@ -2897,18 +2897,18 @@ const Zn = {
|
|
|
2897
2897
|
};
|
|
2898
2898
|
_(tn);
|
|
2899
2899
|
function ca(t, e) {
|
|
2900
|
-
const
|
|
2901
|
-
if (!
|
|
2902
|
-
console.error(`sphereGeometryV1/spawn prop tag not found, ${
|
|
2900
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2901
|
+
if (!i) {
|
|
2902
|
+
console.error(`sphereGeometryV1/spawn prop tag not found, ${o}`);
|
|
2903
2903
|
return;
|
|
2904
2904
|
}
|
|
2905
|
-
const
|
|
2906
|
-
if (!
|
|
2907
|
-
console.error(`sphereGeometryV1/spawn props not found, ${
|
|
2905
|
+
const r = Pe.props[i];
|
|
2906
|
+
if (!r) {
|
|
2907
|
+
console.error(`sphereGeometryV1/spawn props not found, ${o}`);
|
|
2908
2908
|
return;
|
|
2909
2909
|
}
|
|
2910
2910
|
const s = {};
|
|
2911
|
-
return P(s,
|
|
2911
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Pe.key, s.transform = {
|
|
2912
2912
|
position: {
|
|
2913
2913
|
x: 0,
|
|
2914
2914
|
y: 0,
|
|
@@ -2930,22 +2930,22 @@ function ca(t, e) {
|
|
|
2930
2930
|
], s;
|
|
2931
2931
|
}
|
|
2932
2932
|
function ma(t, e) {
|
|
2933
|
-
const
|
|
2934
|
-
if (!
|
|
2933
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2934
|
+
if (!i) {
|
|
2935
2935
|
console.error(
|
|
2936
|
-
`sphereGeometryV1/spawnSphereGeometry prop tag not found, ${
|
|
2936
|
+
`sphereGeometryV1/spawnSphereGeometry prop tag not found, ${o}`
|
|
2937
2937
|
);
|
|
2938
2938
|
return;
|
|
2939
2939
|
}
|
|
2940
|
-
const
|
|
2941
|
-
if (!
|
|
2940
|
+
const r = nn.props[i];
|
|
2941
|
+
if (!r) {
|
|
2942
2942
|
console.error(
|
|
2943
|
-
`sphereGeometryV1/spawnSphereGeometry props not found, ${
|
|
2943
|
+
`sphereGeometryV1/spawnSphereGeometry props not found, ${o}`
|
|
2944
2944
|
);
|
|
2945
2945
|
return;
|
|
2946
2946
|
}
|
|
2947
2947
|
const s = {};
|
|
2948
|
-
return P(s,
|
|
2948
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = nn.key, s.settings = {
|
|
2949
2949
|
radius: 1,
|
|
2950
2950
|
widthSegements: 32,
|
|
2951
2951
|
heightSegements: 16,
|
|
@@ -2956,22 +2956,22 @@ function ma(t, e) {
|
|
|
2956
2956
|
}, s;
|
|
2957
2957
|
}
|
|
2958
2958
|
function pa(t, e) {
|
|
2959
|
-
const
|
|
2960
|
-
if (!
|
|
2959
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
2960
|
+
if (!i) {
|
|
2961
2961
|
console.error(
|
|
2962
|
-
`sphereGeometryV1/spawnMeshBasicMaterial prop tag not found, ${
|
|
2962
|
+
`sphereGeometryV1/spawnMeshBasicMaterial prop tag not found, ${o}`
|
|
2963
2963
|
);
|
|
2964
2964
|
return;
|
|
2965
2965
|
}
|
|
2966
|
-
const
|
|
2967
|
-
if (!
|
|
2966
|
+
const r = Te.props[i];
|
|
2967
|
+
if (!r) {
|
|
2968
2968
|
console.error(
|
|
2969
|
-
`sphereGeometryV1/spawnMeshBasicMaterial props not found, ${
|
|
2969
|
+
`sphereGeometryV1/spawnMeshBasicMaterial props not found, ${o}`
|
|
2970
2970
|
);
|
|
2971
2971
|
return;
|
|
2972
2972
|
}
|
|
2973
2973
|
const s = {};
|
|
2974
|
-
return P(s,
|
|
2974
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Te.key, s;
|
|
2975
2975
|
}
|
|
2976
2976
|
const qn = {
|
|
2977
2977
|
key: "settings",
|
|
@@ -3026,7 +3026,7 @@ const qn = {
|
|
|
3026
3026
|
}
|
|
3027
3027
|
]
|
|
3028
3028
|
}, nn = {
|
|
3029
|
-
key:
|
|
3029
|
+
key: zt,
|
|
3030
3030
|
name: "x-runtime-lib.sphereGeometry",
|
|
3031
3031
|
comp: Vs,
|
|
3032
3032
|
props: {
|
|
@@ -3040,15 +3040,15 @@ const qn = {
|
|
|
3040
3040
|
spawn: ca
|
|
3041
3041
|
};
|
|
3042
3042
|
_(nn);
|
|
3043
|
-
const
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3043
|
+
const Ft = B(K);
|
|
3044
|
+
Ft.children[0].default = "custom";
|
|
3045
|
+
Ft.children[2].children[0].default = "0xffffff";
|
|
3046
|
+
Ft.children[2].children[1].default = "0xffffff";
|
|
3047
3047
|
const Qn = {
|
|
3048
3048
|
key: "settings",
|
|
3049
3049
|
name: "x-runtime-lib.settings",
|
|
3050
3050
|
children: [
|
|
3051
|
-
|
|
3051
|
+
Ft,
|
|
3052
3052
|
{
|
|
3053
3053
|
key: "intensity",
|
|
3054
3054
|
name: "x-runtime-lib.intensity",
|
|
@@ -3058,7 +3058,7 @@ const Qn = {
|
|
|
3058
3058
|
}
|
|
3059
3059
|
]
|
|
3060
3060
|
}, da = {
|
|
3061
|
-
key:
|
|
3061
|
+
key: Ue,
|
|
3062
3062
|
name: "x-runtime-lib.ambientLight",
|
|
3063
3063
|
comp: Is,
|
|
3064
3064
|
props: {
|
|
@@ -3070,15 +3070,15 @@ const Qn = {
|
|
|
3070
3070
|
slots: []
|
|
3071
3071
|
};
|
|
3072
3072
|
_(da);
|
|
3073
|
-
const
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3073
|
+
const Gt = B(K);
|
|
3074
|
+
Gt.children[0].default = "custom";
|
|
3075
|
+
Gt.children[2].children[0].default = "0xffffff";
|
|
3076
|
+
Gt.children[2].children[1].default = "0xffffff";
|
|
3077
3077
|
const ei = {
|
|
3078
3078
|
key: "settings",
|
|
3079
3079
|
name: "x-runtime-lib.settings",
|
|
3080
3080
|
children: [
|
|
3081
|
-
|
|
3081
|
+
Gt,
|
|
3082
3082
|
{
|
|
3083
3083
|
key: "intensity",
|
|
3084
3084
|
name: "x-runtime-lib.intensity",
|
|
@@ -3088,7 +3088,7 @@ const ei = {
|
|
|
3088
3088
|
}
|
|
3089
3089
|
]
|
|
3090
3090
|
}, fa = {
|
|
3091
|
-
key:
|
|
3091
|
+
key: ut,
|
|
3092
3092
|
name: "x-runtime-lib.directionalLight",
|
|
3093
3093
|
comp: Cs,
|
|
3094
3094
|
props: {
|
|
@@ -3100,15 +3100,15 @@ const ei = {
|
|
|
3100
3100
|
slots: []
|
|
3101
3101
|
};
|
|
3102
3102
|
_(fa);
|
|
3103
|
-
const
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3103
|
+
const Ht = B(K);
|
|
3104
|
+
Ht.children[0].default = "custom";
|
|
3105
|
+
Ht.children[2].children[0].default = "0xffffff";
|
|
3106
|
+
Ht.children[2].children[1].default = "0xffffff";
|
|
3107
3107
|
const ti = {
|
|
3108
3108
|
key: "settings",
|
|
3109
3109
|
name: "x-runtime-lib.settings",
|
|
3110
3110
|
children: [
|
|
3111
|
-
|
|
3111
|
+
Ht,
|
|
3112
3112
|
{
|
|
3113
3113
|
key: "intensity",
|
|
3114
3114
|
name: "x-runtime-lib.intensity",
|
|
@@ -3132,7 +3132,7 @@ const ti = {
|
|
|
3132
3132
|
}
|
|
3133
3133
|
]
|
|
3134
3134
|
}, ba = {
|
|
3135
|
-
key:
|
|
3135
|
+
key: $t,
|
|
3136
3136
|
name: "x-runtime-lib.pointLight",
|
|
3137
3137
|
comp: Ps,
|
|
3138
3138
|
props: {
|
|
@@ -3144,15 +3144,15 @@ const ti = {
|
|
|
3144
3144
|
slots: []
|
|
3145
3145
|
};
|
|
3146
3146
|
_(ba);
|
|
3147
|
-
const
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3147
|
+
const jt = B(K);
|
|
3148
|
+
jt.children[0].default = "custom";
|
|
3149
|
+
jt.children[2].children[0].default = "0xffffff";
|
|
3150
|
+
jt.children[2].children[1].default = "0xffffff";
|
|
3151
3151
|
const ni = {
|
|
3152
3152
|
key: "settings",
|
|
3153
3153
|
name: "x-runtime-lib.settings",
|
|
3154
3154
|
children: [
|
|
3155
|
-
|
|
3155
|
+
jt,
|
|
3156
3156
|
{
|
|
3157
3157
|
key: "intensity",
|
|
3158
3158
|
name: "x-runtime-lib.intensity",
|
|
@@ -3193,7 +3193,7 @@ const ni = {
|
|
|
3193
3193
|
}
|
|
3194
3194
|
]
|
|
3195
3195
|
}, ya = {
|
|
3196
|
-
key:
|
|
3196
|
+
key: At,
|
|
3197
3197
|
name: "x-runtime-lib.spotLight",
|
|
3198
3198
|
comp: As,
|
|
3199
3199
|
props: {
|
|
@@ -3205,7 +3205,7 @@ const ni = {
|
|
|
3205
3205
|
slots: []
|
|
3206
3206
|
};
|
|
3207
3207
|
_(ya);
|
|
3208
|
-
const
|
|
3208
|
+
const Te = {
|
|
3209
3209
|
key: Zl,
|
|
3210
3210
|
name: "x-runtime-lib.meshBasicMaterial",
|
|
3211
3211
|
comp: Ws,
|
|
@@ -3218,11 +3218,11 @@ const Ce = {
|
|
|
3218
3218
|
slots: [],
|
|
3219
3219
|
leaf: !0
|
|
3220
3220
|
};
|
|
3221
|
-
_(
|
|
3221
|
+
_(Te);
|
|
3222
3222
|
const ha = {
|
|
3223
|
-
key:
|
|
3223
|
+
key: dt,
|
|
3224
3224
|
name: "x-runtime-lib.group",
|
|
3225
|
-
comp:
|
|
3225
|
+
comp: Ns,
|
|
3226
3226
|
props: {
|
|
3227
3227
|
pageScene: [y, X],
|
|
3228
3228
|
compScene: [y, X]
|
|
@@ -3232,8 +3232,8 @@ const ha = {
|
|
|
3232
3232
|
slots: []
|
|
3233
3233
|
};
|
|
3234
3234
|
_(ha);
|
|
3235
|
-
const
|
|
3236
|
-
key:
|
|
3235
|
+
const Pe = {
|
|
3236
|
+
key: xt,
|
|
3237
3237
|
name: "x-runtime-lib.mesh",
|
|
3238
3238
|
comp: Ds,
|
|
3239
3239
|
props: {
|
|
@@ -3244,20 +3244,20 @@ const Te = {
|
|
|
3244
3244
|
methods: [],
|
|
3245
3245
|
slots: []
|
|
3246
3246
|
};
|
|
3247
|
-
_(
|
|
3247
|
+
_(Pe);
|
|
3248
3248
|
function ga(t, e) {
|
|
3249
|
-
const
|
|
3250
|
-
if (!
|
|
3251
|
-
console.error(`barChartV1/spawn prop tag not found, ${
|
|
3249
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
3250
|
+
if (!i) {
|
|
3251
|
+
console.error(`barChartV1/spawn prop tag not found, ${o}`);
|
|
3252
3252
|
return;
|
|
3253
3253
|
}
|
|
3254
|
-
const
|
|
3255
|
-
if (!
|
|
3256
|
-
console.error(`barChartV1/spawn props not found, ${
|
|
3254
|
+
const r = on.props[i];
|
|
3255
|
+
if (!r) {
|
|
3256
|
+
console.error(`barChartV1/spawn props not found, ${o}`);
|
|
3257
3257
|
return;
|
|
3258
3258
|
}
|
|
3259
3259
|
const s = {};
|
|
3260
|
-
return P(s,
|
|
3260
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = on.key, s.size.height = "300px", s.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], s.series = [
|
|
3261
3261
|
{
|
|
3262
3262
|
type: "bar",
|
|
3263
3263
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -3286,12 +3286,12 @@ const ii = {
|
|
|
3286
3286
|
array: !0,
|
|
3287
3287
|
defaultArray: []
|
|
3288
3288
|
}, on = {
|
|
3289
|
-
key:
|
|
3289
|
+
key: Xe,
|
|
3290
3290
|
name: "x-runtime-lib.barChart",
|
|
3291
3291
|
comp: Ur,
|
|
3292
3292
|
props: {
|
|
3293
|
-
pageCommon: [y, O,
|
|
3294
|
-
compCommon: [y, O,
|
|
3293
|
+
pageCommon: [y, O, Fe, Ge, He, Me, ii],
|
|
3294
|
+
compCommon: [y, O, Fe, Ge, He, Me, ii]
|
|
3295
3295
|
},
|
|
3296
3296
|
events: [],
|
|
3297
3297
|
methods: [],
|
|
@@ -3301,18 +3301,18 @@ const ii = {
|
|
|
3301
3301
|
};
|
|
3302
3302
|
_(on);
|
|
3303
3303
|
function xa(t, e) {
|
|
3304
|
-
const
|
|
3305
|
-
if (!
|
|
3306
|
-
console.error(`lineChartV1/spawn prop tag not found, ${
|
|
3304
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
3305
|
+
if (!i) {
|
|
3306
|
+
console.error(`lineChartV1/spawn prop tag not found, ${o}`);
|
|
3307
3307
|
return;
|
|
3308
3308
|
}
|
|
3309
|
-
const
|
|
3310
|
-
if (!
|
|
3311
|
-
console.error(`lineChartV1/spawn props not found, ${
|
|
3309
|
+
const r = sn.props[i];
|
|
3310
|
+
if (!r) {
|
|
3311
|
+
console.error(`lineChartV1/spawn props not found, ${o}`);
|
|
3312
3312
|
return;
|
|
3313
3313
|
}
|
|
3314
3314
|
const s = {};
|
|
3315
|
-
return P(s,
|
|
3315
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = sn.key, s.size.height = "300px", s.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], s.series = [
|
|
3316
3316
|
{
|
|
3317
3317
|
type: "line",
|
|
3318
3318
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -3341,12 +3341,12 @@ const oi = {
|
|
|
3341
3341
|
array: !0,
|
|
3342
3342
|
defaultArray: []
|
|
3343
3343
|
}, sn = {
|
|
3344
|
-
key:
|
|
3344
|
+
key: yt,
|
|
3345
3345
|
name: "x-runtime-lib.lineChart",
|
|
3346
3346
|
comp: Or,
|
|
3347
3347
|
props: {
|
|
3348
|
-
pageCommon: [y, O,
|
|
3349
|
-
compCommon: [y, O,
|
|
3348
|
+
pageCommon: [y, O, Fe, Ge, He, Me, oi],
|
|
3349
|
+
compCommon: [y, O, Fe, Ge, He, Me, oi]
|
|
3350
3350
|
},
|
|
3351
3351
|
events: [],
|
|
3352
3352
|
methods: [],
|
|
@@ -3355,17 +3355,17 @@ const oi = {
|
|
|
3355
3355
|
spawn: xa
|
|
3356
3356
|
};
|
|
3357
3357
|
_(sn);
|
|
3358
|
-
const
|
|
3359
|
-
|
|
3360
|
-
|
|
3358
|
+
const Kt = B(K);
|
|
3359
|
+
Kt.key = "backgroundColor";
|
|
3360
|
+
Kt.name = "x-runtime-lib.backgroundColor";
|
|
3361
3361
|
const si = {
|
|
3362
3362
|
key: "settings",
|
|
3363
3363
|
name: "x-runtime-lib.settings",
|
|
3364
|
-
children: [
|
|
3364
|
+
children: [Kt]
|
|
3365
3365
|
}, ri = {
|
|
3366
3366
|
key: "settings",
|
|
3367
3367
|
name: "x-runtime-lib.settings",
|
|
3368
|
-
children: [
|
|
3368
|
+
children: [Kt]
|
|
3369
3369
|
}, va = {
|
|
3370
3370
|
key: en,
|
|
3371
3371
|
name: "x-runtime-lib.globality",
|
|
@@ -3451,7 +3451,7 @@ const li = {
|
|
|
3451
3451
|
}
|
|
3452
3452
|
]
|
|
3453
3453
|
}, wc = {
|
|
3454
|
-
key:
|
|
3454
|
+
key: Oe,
|
|
3455
3455
|
name: "x-runtime-lib.badge",
|
|
3456
3456
|
comp: Xr,
|
|
3457
3457
|
props: {
|
|
@@ -3463,18 +3463,18 @@ const li = {
|
|
|
3463
3463
|
slots: []
|
|
3464
3464
|
};
|
|
3465
3465
|
function ka(t, e) {
|
|
3466
|
-
const
|
|
3467
|
-
if (!
|
|
3468
|
-
console.error(`btnV1/spawn prop tag not found, ${
|
|
3466
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
3467
|
+
if (!i) {
|
|
3468
|
+
console.error(`btnV1/spawn prop tag not found, ${o}`);
|
|
3469
3469
|
return;
|
|
3470
3470
|
}
|
|
3471
|
-
const
|
|
3472
|
-
if (!
|
|
3473
|
-
console.error(`btnV1/spawn props not found, ${
|
|
3471
|
+
const r = rn.props[i];
|
|
3472
|
+
if (!r) {
|
|
3473
|
+
console.error(`btnV1/spawn props not found, ${o}`);
|
|
3474
3474
|
return;
|
|
3475
3475
|
}
|
|
3476
3476
|
const s = {};
|
|
3477
|
-
return P(s,
|
|
3477
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = rn.key, s.settings.text = "button", s;
|
|
3478
3478
|
}
|
|
3479
3479
|
const _a = B(K), ai = {
|
|
3480
3480
|
key: "settings",
|
|
@@ -3564,7 +3564,7 @@ const _a = B(K), ai = {
|
|
|
3564
3564
|
}
|
|
3565
3565
|
]
|
|
3566
3566
|
}, rn = {
|
|
3567
|
-
key:
|
|
3567
|
+
key: Je,
|
|
3568
3568
|
name: "x-runtime-lib.button",
|
|
3569
3569
|
comp: Yr,
|
|
3570
3570
|
props: {
|
|
@@ -3585,7 +3585,7 @@ const _a = B(K), ai = {
|
|
|
3585
3585
|
};
|
|
3586
3586
|
_(rn);
|
|
3587
3587
|
const wa = {
|
|
3588
|
-
key:
|
|
3588
|
+
key: Ze,
|
|
3589
3589
|
name: "x-runtime-lib.buttonGroup",
|
|
3590
3590
|
comp: qr,
|
|
3591
3591
|
props: {
|
|
@@ -3659,7 +3659,7 @@ const ui = {
|
|
|
3659
3659
|
}
|
|
3660
3660
|
]
|
|
3661
3661
|
}, Va = {
|
|
3662
|
-
key:
|
|
3662
|
+
key: qe,
|
|
3663
3663
|
name: "x-runtime-lib.buttonToggle",
|
|
3664
3664
|
comp: Qr,
|
|
3665
3665
|
props: {
|
|
@@ -3672,18 +3672,18 @@ const ui = {
|
|
|
3672
3672
|
};
|
|
3673
3673
|
_(Va);
|
|
3674
3674
|
function $a(t, e) {
|
|
3675
|
-
const
|
|
3676
|
-
if (!
|
|
3677
|
-
console.error(`cardV1/spawn prop tag not found, ${
|
|
3675
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
3676
|
+
if (!i) {
|
|
3677
|
+
console.error(`cardV1/spawn prop tag not found, ${o}`);
|
|
3678
3678
|
return;
|
|
3679
3679
|
}
|
|
3680
|
-
const
|
|
3681
|
-
if (!
|
|
3682
|
-
console.error(`cardV1/spawn props not found, ${
|
|
3680
|
+
const r = ze.props[i];
|
|
3681
|
+
if (!r) {
|
|
3682
|
+
console.error(`cardV1/spawn props not found, ${o}`);
|
|
3683
3683
|
return;
|
|
3684
3684
|
}
|
|
3685
3685
|
const s = {};
|
|
3686
|
-
return P(s,
|
|
3686
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = ze.key, s.children = [], s.settings.title = "title", s.settings.subtitle = "subtitle", s.settings.text = "text", s;
|
|
3687
3687
|
}
|
|
3688
3688
|
const ci = {
|
|
3689
3689
|
key: "settings",
|
|
@@ -3740,8 +3740,8 @@ const ci = {
|
|
|
3740
3740
|
default: !1
|
|
3741
3741
|
}
|
|
3742
3742
|
]
|
|
3743
|
-
},
|
|
3744
|
-
key:
|
|
3743
|
+
}, ze = {
|
|
3744
|
+
key: Qe,
|
|
3745
3745
|
name: "x-runtime-lib.card",
|
|
3746
3746
|
comp: el,
|
|
3747
3747
|
props: {
|
|
@@ -3753,7 +3753,7 @@ const ci = {
|
|
|
3753
3753
|
slots: [],
|
|
3754
3754
|
spawn: $a
|
|
3755
3755
|
};
|
|
3756
|
-
_(
|
|
3756
|
+
_(ze);
|
|
3757
3757
|
const mi = {
|
|
3758
3758
|
key: "settings",
|
|
3759
3759
|
name: "x-runtime-lib.settings",
|
|
@@ -3772,7 +3772,7 @@ const mi = {
|
|
|
3772
3772
|
}
|
|
3773
3773
|
]
|
|
3774
3774
|
}, Ia = {
|
|
3775
|
-
key:
|
|
3775
|
+
key: et,
|
|
3776
3776
|
name: "x-runtime-lib.checkbox",
|
|
3777
3777
|
comp: tl,
|
|
3778
3778
|
props: {
|
|
@@ -3861,7 +3861,7 @@ const Sa = B(K), pi = {
|
|
|
3861
3861
|
Sa
|
|
3862
3862
|
]
|
|
3863
3863
|
}, ln = {
|
|
3864
|
-
key:
|
|
3864
|
+
key: tt,
|
|
3865
3865
|
name: "x-runtime-lib.chip",
|
|
3866
3866
|
comp: nl,
|
|
3867
3867
|
props: {
|
|
@@ -3875,18 +3875,18 @@ const Sa = B(K), pi = {
|
|
|
3875
3875
|
};
|
|
3876
3876
|
_(ln);
|
|
3877
3877
|
function Ca(t, e) {
|
|
3878
|
-
const
|
|
3879
|
-
if (!
|
|
3880
|
-
console.error(`chipGroupV1/spawn prop tag not found, ${
|
|
3878
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
3879
|
+
if (!i) {
|
|
3880
|
+
console.error(`chipGroupV1/spawn prop tag not found, ${o}`);
|
|
3881
3881
|
return;
|
|
3882
3882
|
}
|
|
3883
|
-
const
|
|
3884
|
-
if (!
|
|
3885
|
-
console.error(`chipGroupV1/spawn props not found, ${
|
|
3883
|
+
const r = an.props[i];
|
|
3884
|
+
if (!r) {
|
|
3885
|
+
console.error(`chipGroupV1/spawn props not found, ${o}`);
|
|
3886
3886
|
return;
|
|
3887
3887
|
}
|
|
3888
3888
|
const s = {};
|
|
3889
|
-
return P(s,
|
|
3889
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = an.key, s.children = [
|
|
3890
3890
|
xe(t, e, "chip1", "chip 1"),
|
|
3891
3891
|
xe(t, e, "chip2", "chip 2"),
|
|
3892
3892
|
xe(t, e, "chip3", "chip 3"),
|
|
@@ -3895,19 +3895,19 @@ function Ca(t, e) {
|
|
|
3895
3895
|
xe(t, e, "chip6", "chip 6")
|
|
3896
3896
|
], s;
|
|
3897
3897
|
}
|
|
3898
|
-
function xe(t, e,
|
|
3899
|
-
const
|
|
3898
|
+
function xe(t, e, o, i) {
|
|
3899
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
3900
3900
|
if (!s) {
|
|
3901
|
-
console.error(`chipGroupV1/spawnChip prop tag not found, ${
|
|
3901
|
+
console.error(`chipGroupV1/spawnChip prop tag not found, ${r}`);
|
|
3902
3902
|
return;
|
|
3903
3903
|
}
|
|
3904
3904
|
const a = ln.props[s];
|
|
3905
3905
|
if (!a) {
|
|
3906
|
-
console.error(`chipGroupV1/spawnChip props not found, ${
|
|
3906
|
+
console.error(`chipGroupV1/spawnChip props not found, ${r}`);
|
|
3907
3907
|
return;
|
|
3908
3908
|
}
|
|
3909
3909
|
const p = {};
|
|
3910
|
-
return P(p, a), p.basic.id = T(16), p.basic.key = ln.key, p.settings.value =
|
|
3910
|
+
return P(p, a), p.basic.id = T(16), p.basic.key = ln.key, p.settings.value = o, p.settings.text = i, p;
|
|
3911
3911
|
}
|
|
3912
3912
|
const di = {
|
|
3913
3913
|
key: "settings",
|
|
@@ -3964,7 +3964,7 @@ const di = {
|
|
|
3964
3964
|
}
|
|
3965
3965
|
]
|
|
3966
3966
|
}, an = {
|
|
3967
|
-
key:
|
|
3967
|
+
key: nt,
|
|
3968
3968
|
name: "x-runtime-lib.chipGroup",
|
|
3969
3969
|
comp: il,
|
|
3970
3970
|
props: {
|
|
@@ -3978,7 +3978,7 @@ const di = {
|
|
|
3978
3978
|
};
|
|
3979
3979
|
_(an);
|
|
3980
3980
|
const Ta = {
|
|
3981
|
-
key:
|
|
3981
|
+
key: it,
|
|
3982
3982
|
name: "x-runtime-lib.colorPicker",
|
|
3983
3983
|
comp: ol,
|
|
3984
3984
|
props: {
|
|
@@ -4033,7 +4033,7 @@ const fi = {
|
|
|
4033
4033
|
}
|
|
4034
4034
|
]
|
|
4035
4035
|
}, Pa = {
|
|
4036
|
-
key:
|
|
4036
|
+
key: ot,
|
|
4037
4037
|
name: "x-runtime-lib.combobox",
|
|
4038
4038
|
comp: sl,
|
|
4039
4039
|
props: {
|
|
@@ -4054,12 +4054,12 @@ const bi = {
|
|
|
4054
4054
|
name: "x-runtime-lib.settings",
|
|
4055
4055
|
children: [Dn]
|
|
4056
4056
|
}, un = {
|
|
4057
|
-
key:
|
|
4057
|
+
key: st,
|
|
4058
4058
|
name: "x-runtime-lib.container",
|
|
4059
4059
|
comp: rl,
|
|
4060
4060
|
props: {
|
|
4061
|
-
pageCommon: [y, O,
|
|
4062
|
-
compCommon: [y, O,
|
|
4061
|
+
pageCommon: [y, O, _e, we, Ve, bi],
|
|
4062
|
+
compCommon: [y, O, _e, we, Ve, bi]
|
|
4063
4063
|
},
|
|
4064
4064
|
events: [
|
|
4065
4065
|
{
|
|
@@ -4225,7 +4225,7 @@ const yi = {
|
|
|
4225
4225
|
}
|
|
4226
4226
|
]
|
|
4227
4227
|
}, za = {
|
|
4228
|
-
key:
|
|
4228
|
+
key: rt,
|
|
4229
4229
|
name: "x-runtime-lib.dataTable",
|
|
4230
4230
|
comp: ll,
|
|
4231
4231
|
props: {
|
|
@@ -4239,7 +4239,7 @@ const yi = {
|
|
|
4239
4239
|
};
|
|
4240
4240
|
_(za);
|
|
4241
4241
|
const Aa = {
|
|
4242
|
-
key:
|
|
4242
|
+
key: lt,
|
|
4243
4243
|
name: "x-runtime-lib.datePicker",
|
|
4244
4244
|
comp: cl,
|
|
4245
4245
|
props: {
|
|
@@ -4253,7 +4253,7 @@ const Aa = {
|
|
|
4253
4253
|
};
|
|
4254
4254
|
_(Aa);
|
|
4255
4255
|
const La = {
|
|
4256
|
-
key:
|
|
4256
|
+
key: at,
|
|
4257
4257
|
name: "x-runtime-lib.dialog",
|
|
4258
4258
|
comp: pl,
|
|
4259
4259
|
props: {
|
|
@@ -4284,7 +4284,7 @@ const xi = {
|
|
|
4284
4284
|
name: "x-runtime-lib.settings",
|
|
4285
4285
|
children: []
|
|
4286
4286
|
}, Vc = {
|
|
4287
|
-
key:
|
|
4287
|
+
key: ct,
|
|
4288
4288
|
name: "x-runtime-lib.fileInput",
|
|
4289
4289
|
comp: dl,
|
|
4290
4290
|
props: {
|
|
@@ -4326,18 +4326,18 @@ const xi = {
|
|
|
4326
4326
|
};
|
|
4327
4327
|
_(cn);
|
|
4328
4328
|
function Ba(t, e) {
|
|
4329
|
-
const
|
|
4330
|
-
if (!
|
|
4331
|
-
console.error(`flexLayoutV1/spawn prop tag not found, ${
|
|
4329
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
4330
|
+
if (!i) {
|
|
4331
|
+
console.error(`flexLayoutV1/spawn prop tag not found, ${o}`);
|
|
4332
4332
|
return;
|
|
4333
4333
|
}
|
|
4334
|
-
const
|
|
4335
|
-
if (!
|
|
4336
|
-
console.error(`flexLayoutV1/spawn props not found, ${
|
|
4334
|
+
const r = Ae.props[i];
|
|
4335
|
+
if (!r) {
|
|
4336
|
+
console.error(`flexLayoutV1/spawn props not found, ${o}`);
|
|
4337
4337
|
return;
|
|
4338
4338
|
}
|
|
4339
4339
|
const s = {};
|
|
4340
|
-
return P(s,
|
|
4340
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Ae.key, s.children = [
|
|
4341
4341
|
mn(
|
|
4342
4342
|
t,
|
|
4343
4343
|
e,
|
|
@@ -4361,7 +4361,7 @@ function Ba(t, e) {
|
|
|
4361
4361
|
Wa(t, e)
|
|
4362
4362
|
], s;
|
|
4363
4363
|
}
|
|
4364
|
-
function mn(t, e,
|
|
4364
|
+
function mn(t, e, o, i, r, s, a, p, d) {
|
|
4365
4365
|
const b = `type=${t} subtype=${e}`, m = A(t, e);
|
|
4366
4366
|
if (!m) {
|
|
4367
4367
|
console.error(
|
|
@@ -4375,17 +4375,17 @@ function mn(t, e, i, o, l, s, a, p, d) {
|
|
|
4375
4375
|
return;
|
|
4376
4376
|
}
|
|
4377
4377
|
const c = {};
|
|
4378
|
-
return P(c, u), c.basic.id = T(16), c.basic.key = un.key,
|
|
4378
|
+
return P(c, u), c.basic.id = T(16), c.basic.key = un.key, i && (c.size.width = i), r && (c.size.minWidth = r), a && (c.size.height = a), p && (c.size.minHeight = p), o && (c.settings.backgroundColor.mode = "custom", c.settings.backgroundColor.custom.light = o, c.settings.backgroundColor.custom.dark = o), c.children = [], c;
|
|
4379
4379
|
}
|
|
4380
4380
|
function Wa(t, e) {
|
|
4381
|
-
const
|
|
4382
|
-
if (!
|
|
4383
|
-
console.error(`flexLayoutV1/spawnEntry prop tag not found, ${
|
|
4381
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
4382
|
+
if (!i) {
|
|
4383
|
+
console.error(`flexLayoutV1/spawnEntry prop tag not found, ${o}`);
|
|
4384
4384
|
return;
|
|
4385
4385
|
}
|
|
4386
|
-
const
|
|
4387
|
-
if (!
|
|
4388
|
-
console.error(`flexLayoutV1/spawnEntry props not found, ${
|
|
4386
|
+
const r = cn.props[i];
|
|
4387
|
+
if (!r) {
|
|
4388
|
+
console.error(`flexLayoutV1/spawnEntry props not found, ${o}`);
|
|
4389
4389
|
return;
|
|
4390
4390
|
}
|
|
4391
4391
|
const s = {
|
|
@@ -4394,7 +4394,7 @@ function Wa(t, e) {
|
|
|
4394
4394
|
key: ""
|
|
4395
4395
|
}
|
|
4396
4396
|
};
|
|
4397
|
-
return P(s,
|
|
4397
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = cn.key, s.children = [
|
|
4398
4398
|
mn(
|
|
4399
4399
|
t,
|
|
4400
4400
|
e,
|
|
@@ -4580,13 +4580,13 @@ const ki = {
|
|
|
4580
4580
|
},
|
|
4581
4581
|
Mn
|
|
4582
4582
|
]
|
|
4583
|
-
},
|
|
4584
|
-
key:
|
|
4583
|
+
}, Ae = {
|
|
4584
|
+
key: mt,
|
|
4585
4585
|
name: "x-runtime-lib.flexLayout",
|
|
4586
4586
|
comp: fl,
|
|
4587
4587
|
props: {
|
|
4588
|
-
pageCommon: [y, O,
|
|
4589
|
-
compCommon: [y, O,
|
|
4588
|
+
pageCommon: [y, O, _e, we, Ve, ki],
|
|
4589
|
+
compCommon: [y, O, _e, we, Ve, ki]
|
|
4590
4590
|
},
|
|
4591
4591
|
events: [
|
|
4592
4592
|
{
|
|
@@ -4599,7 +4599,7 @@ const ki = {
|
|
|
4599
4599
|
slots: [],
|
|
4600
4600
|
spawn: Ba
|
|
4601
4601
|
};
|
|
4602
|
-
_(
|
|
4602
|
+
_(Ae);
|
|
4603
4603
|
const _i = {
|
|
4604
4604
|
key: "settings",
|
|
4605
4605
|
name: "x-runtime-lib.settings",
|
|
@@ -4751,7 +4751,7 @@ const _i = {
|
|
|
4751
4751
|
}
|
|
4752
4752
|
]
|
|
4753
4753
|
}, pn = {
|
|
4754
|
-
key:
|
|
4754
|
+
key: Rt,
|
|
4755
4755
|
name: "x-runtime-lib.textField",
|
|
4756
4756
|
comp: Gl,
|
|
4757
4757
|
props: {
|
|
@@ -4789,33 +4789,33 @@ const _i = {
|
|
|
4789
4789
|
leaf: !0
|
|
4790
4790
|
};
|
|
4791
4791
|
_(pn);
|
|
4792
|
-
function
|
|
4793
|
-
const
|
|
4794
|
-
if (!
|
|
4795
|
-
console.error(`formV1/spawn prop tag not found, ${
|
|
4792
|
+
function Ea(t, e) {
|
|
4793
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
4794
|
+
if (!i) {
|
|
4795
|
+
console.error(`formV1/spawn prop tag not found, ${o}`);
|
|
4796
4796
|
return;
|
|
4797
4797
|
}
|
|
4798
|
-
const
|
|
4799
|
-
if (!
|
|
4800
|
-
console.error(`formV1/spawn props not found, ${
|
|
4798
|
+
const r = dn.props[i];
|
|
4799
|
+
if (!r) {
|
|
4800
|
+
console.error(`formV1/spawn props not found, ${o}`);
|
|
4801
4801
|
return;
|
|
4802
4802
|
}
|
|
4803
4803
|
const s = {};
|
|
4804
|
-
return P(s,
|
|
4804
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = dn.key, s.children = [Na(t, e)], s;
|
|
4805
4805
|
}
|
|
4806
|
-
function
|
|
4807
|
-
const
|
|
4808
|
-
if (!
|
|
4809
|
-
console.error(`formV1/spawnTextField prop tag not found, ${
|
|
4806
|
+
function Na(t, e) {
|
|
4807
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
4808
|
+
if (!i) {
|
|
4809
|
+
console.error(`formV1/spawnTextField prop tag not found, ${o}`);
|
|
4810
4810
|
return;
|
|
4811
4811
|
}
|
|
4812
|
-
const
|
|
4813
|
-
if (!
|
|
4814
|
-
console.error(`formV1/spawnTextField props not found, ${
|
|
4812
|
+
const r = pn.props[i];
|
|
4813
|
+
if (!r) {
|
|
4814
|
+
console.error(`formV1/spawnTextField props not found, ${o}`);
|
|
4815
4815
|
return;
|
|
4816
4816
|
}
|
|
4817
4817
|
const s = {};
|
|
4818
|
-
return P(s,
|
|
4818
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = pn.key, s;
|
|
4819
4819
|
}
|
|
4820
4820
|
const Vi = {
|
|
4821
4821
|
key: "settings",
|
|
@@ -4836,12 +4836,12 @@ const Vi = {
|
|
|
4836
4836
|
}
|
|
4837
4837
|
]
|
|
4838
4838
|
}, dn = {
|
|
4839
|
-
key:
|
|
4839
|
+
key: pt,
|
|
4840
4840
|
name: "x-runtime-lib.form",
|
|
4841
4841
|
comp: yl,
|
|
4842
4842
|
props: {
|
|
4843
|
-
pageCommon: [y, O,
|
|
4844
|
-
compCommon: [y, O,
|
|
4843
|
+
pageCommon: [y, O, _e, we, Ve, Vi],
|
|
4844
|
+
compCommon: [y, O, _e, we, Ve, Vi]
|
|
4845
4845
|
},
|
|
4846
4846
|
events: [
|
|
4847
4847
|
{
|
|
@@ -4852,7 +4852,7 @@ const Vi = {
|
|
|
4852
4852
|
],
|
|
4853
4853
|
methods: [],
|
|
4854
4854
|
slots: [],
|
|
4855
|
-
spawn:
|
|
4855
|
+
spawn: Ea
|
|
4856
4856
|
};
|
|
4857
4857
|
_(dn);
|
|
4858
4858
|
const Ra = B(K), $i = {
|
|
@@ -4881,7 +4881,7 @@ const Ra = B(K), $i = {
|
|
|
4881
4881
|
Ra
|
|
4882
4882
|
]
|
|
4883
4883
|
}, Da = {
|
|
4884
|
-
key:
|
|
4884
|
+
key: ft,
|
|
4885
4885
|
name: "x-runtime-lib.icon",
|
|
4886
4886
|
comp: hl,
|
|
4887
4887
|
props: {
|
|
@@ -4895,7 +4895,7 @@ const Ra = B(K), $i = {
|
|
|
4895
4895
|
};
|
|
4896
4896
|
_(Da);
|
|
4897
4897
|
const Ma = {
|
|
4898
|
-
key:
|
|
4898
|
+
key: gt,
|
|
4899
4899
|
name: "x-runtime-lib.menu",
|
|
4900
4900
|
comp: xl,
|
|
4901
4901
|
props: {
|
|
@@ -4922,18 +4922,18 @@ const Ma = {
|
|
|
4922
4922
|
};
|
|
4923
4923
|
_(Ma);
|
|
4924
4924
|
function Fa(t, e) {
|
|
4925
|
-
const
|
|
4926
|
-
if (!
|
|
4927
|
-
console.error(`numberInputV1/spawn prop tag not found, ${
|
|
4925
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
4926
|
+
if (!i) {
|
|
4927
|
+
console.error(`numberInputV1/spawn prop tag not found, ${o}`);
|
|
4928
4928
|
return;
|
|
4929
4929
|
}
|
|
4930
|
-
const
|
|
4931
|
-
if (!
|
|
4932
|
-
console.error(`numberInputV1/spawn props not found, ${
|
|
4930
|
+
const r = fn.props[i];
|
|
4931
|
+
if (!r) {
|
|
4932
|
+
console.error(`numberInputV1/spawn props not found, ${o}`);
|
|
4933
4933
|
return;
|
|
4934
4934
|
}
|
|
4935
4935
|
const s = {};
|
|
4936
|
-
return P(s,
|
|
4936
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = fn.key, s.settings.label = "label", s.settings.placeholder = "placeholder", s;
|
|
4937
4937
|
}
|
|
4938
4938
|
const Ii = {
|
|
4939
4939
|
key: "size",
|
|
@@ -5103,7 +5103,7 @@ const Ii = {
|
|
|
5103
5103
|
}
|
|
5104
5104
|
]
|
|
5105
5105
|
}, fn = {
|
|
5106
|
-
key:
|
|
5106
|
+
key: vt,
|
|
5107
5107
|
name: "x-runtime-lib.numberInput",
|
|
5108
5108
|
comp: vl,
|
|
5109
5109
|
props: {
|
|
@@ -5207,7 +5207,7 @@ const Ci = {
|
|
|
5207
5207
|
}
|
|
5208
5208
|
]
|
|
5209
5209
|
}, Ga = {
|
|
5210
|
-
key:
|
|
5210
|
+
key: wt,
|
|
5211
5211
|
name: "x-runtime-lib.pagination",
|
|
5212
5212
|
comp: kl,
|
|
5213
5213
|
props: {
|
|
@@ -5272,36 +5272,36 @@ const Ha = B(K), Ti = {
|
|
|
5272
5272
|
};
|
|
5273
5273
|
_(bn);
|
|
5274
5274
|
function ja(t, e) {
|
|
5275
|
-
const
|
|
5276
|
-
if (!
|
|
5277
|
-
console.error(`radioGroupV1/spawn prop tag not found, ${
|
|
5275
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
5276
|
+
if (!i) {
|
|
5277
|
+
console.error(`radioGroupV1/spawn prop tag not found, ${o}`);
|
|
5278
5278
|
return;
|
|
5279
5279
|
}
|
|
5280
|
-
const
|
|
5281
|
-
if (!
|
|
5282
|
-
console.error(`radioGroupV1/spawn props not found, ${
|
|
5280
|
+
const r = yn.props[i];
|
|
5281
|
+
if (!r) {
|
|
5282
|
+
console.error(`radioGroupV1/spawn props not found, ${o}`);
|
|
5283
5283
|
return;
|
|
5284
5284
|
}
|
|
5285
5285
|
const s = {};
|
|
5286
|
-
return P(s,
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5286
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = yn.key, s.children = [
|
|
5287
|
+
Xt(t, e, "option1", "Option 1"),
|
|
5288
|
+
Xt(t, e, "option2", "Option 2"),
|
|
5289
|
+
Xt(t, e, "option3", "Option 3")
|
|
5290
5290
|
], s.settings.value = "option1", s;
|
|
5291
5291
|
}
|
|
5292
|
-
function
|
|
5293
|
-
const
|
|
5292
|
+
function Xt(t, e, o, i) {
|
|
5293
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
5294
5294
|
if (!s) {
|
|
5295
|
-
console.error(`radioGroupV1/spawnEntry prop tag not found, ${
|
|
5295
|
+
console.error(`radioGroupV1/spawnEntry prop tag not found, ${r}`);
|
|
5296
5296
|
return;
|
|
5297
5297
|
}
|
|
5298
5298
|
const a = bn.props[s];
|
|
5299
5299
|
if (!a) {
|
|
5300
|
-
console.error(`radioGroupV1/spawnEntry props not found, ${
|
|
5300
|
+
console.error(`radioGroupV1/spawnEntry props not found, ${r}`);
|
|
5301
5301
|
return;
|
|
5302
5302
|
}
|
|
5303
5303
|
const p = {};
|
|
5304
|
-
return P(p, a), p.basic.id = T(16), p.basic.key = bn.key, p.settings.value =
|
|
5304
|
+
return P(p, a), p.basic.id = T(16), p.basic.key = bn.key, p.settings.value = o, p.settings.label = i, p;
|
|
5305
5305
|
}
|
|
5306
5306
|
const Pi = {
|
|
5307
5307
|
key: "settings",
|
|
@@ -5347,7 +5347,7 @@ const Pi = {
|
|
|
5347
5347
|
}
|
|
5348
5348
|
]
|
|
5349
5349
|
}, yn = {
|
|
5350
|
-
key:
|
|
5350
|
+
key: It,
|
|
5351
5351
|
name: "x-runtime-lib.radioGroup",
|
|
5352
5352
|
comp: wl,
|
|
5353
5353
|
props: {
|
|
@@ -5478,7 +5478,7 @@ const zi = {
|
|
|
5478
5478
|
}
|
|
5479
5479
|
]
|
|
5480
5480
|
}, Ka = {
|
|
5481
|
-
key:
|
|
5481
|
+
key: St,
|
|
5482
5482
|
name: "x-runtime-lib.rangeSlider",
|
|
5483
5483
|
comp: Vl,
|
|
5484
5484
|
props: {
|
|
@@ -5547,7 +5547,7 @@ const Ai = {
|
|
|
5547
5547
|
}
|
|
5548
5548
|
]
|
|
5549
5549
|
}, Ua = {
|
|
5550
|
-
key:
|
|
5550
|
+
key: Ct,
|
|
5551
5551
|
name: "x-runtime-lib.rating",
|
|
5552
5552
|
comp: $l,
|
|
5553
5553
|
props: {
|
|
@@ -5602,7 +5602,7 @@ const Li = {
|
|
|
5602
5602
|
}
|
|
5603
5603
|
]
|
|
5604
5604
|
}, Oa = {
|
|
5605
|
-
key:
|
|
5605
|
+
key: Tt,
|
|
5606
5606
|
name: "x-runtime-lib.select",
|
|
5607
5607
|
comp: Il,
|
|
5608
5608
|
props: {
|
|
@@ -5751,7 +5751,7 @@ const Bi = {
|
|
|
5751
5751
|
}
|
|
5752
5752
|
]
|
|
5753
5753
|
}, Xa = {
|
|
5754
|
-
key:
|
|
5754
|
+
key: Pt,
|
|
5755
5755
|
name: "x-runtime-lib.slider",
|
|
5756
5756
|
comp: Sl,
|
|
5757
5757
|
props: {
|
|
@@ -5777,7 +5777,7 @@ const hn = {
|
|
|
5777
5777
|
slots: []
|
|
5778
5778
|
};
|
|
5779
5779
|
_(hn);
|
|
5780
|
-
const
|
|
5780
|
+
const Ei = {
|
|
5781
5781
|
key: "settings",
|
|
5782
5782
|
name: "x-runtime-lib.settings",
|
|
5783
5783
|
children: [
|
|
@@ -5793,8 +5793,8 @@ const Ni = {
|
|
|
5793
5793
|
name: "x-runtime-lib.stepperItem",
|
|
5794
5794
|
comp: Al,
|
|
5795
5795
|
props: {
|
|
5796
|
-
pageCommon: [y,
|
|
5797
|
-
compCommon: [y,
|
|
5796
|
+
pageCommon: [y, Ei],
|
|
5797
|
+
compCommon: [y, Ei]
|
|
5798
5798
|
},
|
|
5799
5799
|
events: [],
|
|
5800
5800
|
methods: [],
|
|
@@ -5814,7 +5814,7 @@ const xn = {
|
|
|
5814
5814
|
slots: []
|
|
5815
5815
|
};
|
|
5816
5816
|
_(xn);
|
|
5817
|
-
const
|
|
5817
|
+
const Ni = {
|
|
5818
5818
|
key: "settings",
|
|
5819
5819
|
name: "x-runtime-lib.settings",
|
|
5820
5820
|
children: [
|
|
@@ -5828,10 +5828,10 @@ const Ei = {
|
|
|
5828
5828
|
}, vn = {
|
|
5829
5829
|
key: xo,
|
|
5830
5830
|
name: "x-runtime-lib.stepperWindowItem",
|
|
5831
|
-
comp:
|
|
5831
|
+
comp: El,
|
|
5832
5832
|
props: {
|
|
5833
|
-
pageCommon: [y,
|
|
5834
|
-
compCommon: [y,
|
|
5833
|
+
pageCommon: [y, Ni],
|
|
5834
|
+
compCommon: [y, Ni]
|
|
5835
5835
|
},
|
|
5836
5836
|
events: [],
|
|
5837
5837
|
methods: [],
|
|
@@ -5839,96 +5839,96 @@ const Ei = {
|
|
|
5839
5839
|
};
|
|
5840
5840
|
_(vn);
|
|
5841
5841
|
function Ya(t, e) {
|
|
5842
|
-
const
|
|
5843
|
-
if (!
|
|
5844
|
-
console.error(`stepperV1/spawn prop tag not found, ${
|
|
5842
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
5843
|
+
if (!i) {
|
|
5844
|
+
console.error(`stepperV1/spawn prop tag not found, ${o}`);
|
|
5845
5845
|
return;
|
|
5846
5846
|
}
|
|
5847
|
-
const
|
|
5848
|
-
if (!
|
|
5849
|
-
console.error(`stepperV1/spawn props not found, ${
|
|
5847
|
+
const r = kn.props[i];
|
|
5848
|
+
if (!r) {
|
|
5849
|
+
console.error(`stepperV1/spawn props not found, ${o}`);
|
|
5850
5850
|
return;
|
|
5851
5851
|
}
|
|
5852
5852
|
const s = {};
|
|
5853
|
-
return P(s,
|
|
5853
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = kn.key, s.children = [Ja(t, e), Za(t, e)], s;
|
|
5854
5854
|
}
|
|
5855
5855
|
function Ja(t, e) {
|
|
5856
|
-
const
|
|
5857
|
-
if (!
|
|
5858
|
-
console.error(`stepperV1/spawnHeader prop tag not found, ${
|
|
5856
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
5857
|
+
if (!i) {
|
|
5858
|
+
console.error(`stepperV1/spawnHeader prop tag not found, ${o}`);
|
|
5859
5859
|
return;
|
|
5860
5860
|
}
|
|
5861
|
-
const
|
|
5862
|
-
if (!
|
|
5863
|
-
console.error(`stepperV1/spawnHeader props not found, ${
|
|
5861
|
+
const r = hn.props[i];
|
|
5862
|
+
if (!r) {
|
|
5863
|
+
console.error(`stepperV1/spawnHeader props not found, ${o}`);
|
|
5864
5864
|
return;
|
|
5865
5865
|
}
|
|
5866
5866
|
const s = {};
|
|
5867
|
-
return P(s,
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5867
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = hn.key, s.children = [
|
|
5868
|
+
Yt(t, e, "step1"),
|
|
5869
|
+
Yt(t, e, "step2"),
|
|
5870
|
+
Yt(t, e, "step3")
|
|
5871
5871
|
], s;
|
|
5872
5872
|
}
|
|
5873
|
-
function
|
|
5874
|
-
const
|
|
5875
|
-
if (!
|
|
5876
|
-
console.error(`stepperV1/spawnItem prop tag not found, ${
|
|
5873
|
+
function Yt(t, e, o) {
|
|
5874
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
5875
|
+
if (!r) {
|
|
5876
|
+
console.error(`stepperV1/spawnItem prop tag not found, ${i}`);
|
|
5877
5877
|
return;
|
|
5878
5878
|
}
|
|
5879
|
-
const s = gn.props[
|
|
5879
|
+
const s = gn.props[r];
|
|
5880
5880
|
if (!s) {
|
|
5881
|
-
console.error(`stepperV1/spawnItem props not found, ${
|
|
5881
|
+
console.error(`stepperV1/spawnItem props not found, ${i}`);
|
|
5882
5882
|
return;
|
|
5883
5883
|
}
|
|
5884
5884
|
const a = {};
|
|
5885
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = gn.key, a.children = [], a.settings.value =
|
|
5885
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = gn.key, a.children = [], a.settings.value = o, a;
|
|
5886
5886
|
}
|
|
5887
5887
|
function Za(t, e) {
|
|
5888
|
-
const
|
|
5889
|
-
if (!
|
|
5890
|
-
console.error(`stepperV1/spawnWindow prop tag not found, ${
|
|
5888
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
5889
|
+
if (!i) {
|
|
5890
|
+
console.error(`stepperV1/spawnWindow prop tag not found, ${o}`);
|
|
5891
5891
|
return;
|
|
5892
5892
|
}
|
|
5893
|
-
const
|
|
5894
|
-
if (!
|
|
5895
|
-
console.error(`stepperV1/spawnWindow props not found, ${
|
|
5893
|
+
const r = xn.props[i];
|
|
5894
|
+
if (!r) {
|
|
5895
|
+
console.error(`stepperV1/spawnWindow props not found, ${o}`);
|
|
5896
5896
|
return;
|
|
5897
5897
|
}
|
|
5898
5898
|
const s = {};
|
|
5899
|
-
return P(s,
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5899
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = xn.key, s.children = [
|
|
5900
|
+
Jt(t, e, "step1", "step 1"),
|
|
5901
|
+
Jt(t, e, "step2", "step 2"),
|
|
5902
|
+
Jt(t, e, "step3", "step 3")
|
|
5903
5903
|
], s;
|
|
5904
5904
|
}
|
|
5905
|
-
function
|
|
5906
|
-
const
|
|
5905
|
+
function Jt(t, e, o, i) {
|
|
5906
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
5907
5907
|
if (!s) {
|
|
5908
|
-
console.error(`stepperV1/spawnWindowItem prop tag not found, ${
|
|
5908
|
+
console.error(`stepperV1/spawnWindowItem prop tag not found, ${r}`);
|
|
5909
5909
|
return;
|
|
5910
5910
|
}
|
|
5911
5911
|
const a = vn.props[s];
|
|
5912
5912
|
if (!a) {
|
|
5913
|
-
console.error(`stepperV1/spawnWindowItem props not found, ${
|
|
5913
|
+
console.error(`stepperV1/spawnWindowItem props not found, ${r}`);
|
|
5914
5914
|
return;
|
|
5915
5915
|
}
|
|
5916
5916
|
const p = {};
|
|
5917
|
-
return P(p, a), p.basic.id = T(16), p.basic.key = vn.key, p.children = [qa(t, e,
|
|
5917
|
+
return P(p, a), p.basic.id = T(16), p.basic.key = vn.key, p.children = [qa(t, e, i)], p.settings.value = o, p;
|
|
5918
5918
|
}
|
|
5919
|
-
function qa(t, e,
|
|
5920
|
-
const
|
|
5921
|
-
if (!
|
|
5922
|
-
console.error(`stepperV1/spawnCard prop tag not found, ${
|
|
5919
|
+
function qa(t, e, o) {
|
|
5920
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
5921
|
+
if (!r) {
|
|
5922
|
+
console.error(`stepperV1/spawnCard prop tag not found, ${i}`);
|
|
5923
5923
|
return;
|
|
5924
5924
|
}
|
|
5925
|
-
const s =
|
|
5925
|
+
const s = ze.props[r];
|
|
5926
5926
|
if (!s) {
|
|
5927
|
-
console.error(`stepperV1/spawnCard props not found, ${
|
|
5927
|
+
console.error(`stepperV1/spawnCard props not found, ${i}`);
|
|
5928
5928
|
return;
|
|
5929
5929
|
}
|
|
5930
5930
|
const a = {};
|
|
5931
|
-
return P(a, s), a.basic.id = T(16), a.basic.key =
|
|
5931
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = ze.key, a.children = [], a.settings.title = o, a;
|
|
5932
5932
|
}
|
|
5933
5933
|
const Ri = {
|
|
5934
5934
|
key: "settings",
|
|
@@ -5948,7 +5948,7 @@ const Ri = {
|
|
|
5948
5948
|
}
|
|
5949
5949
|
]
|
|
5950
5950
|
}, kn = {
|
|
5951
|
-
key:
|
|
5951
|
+
key: Lt,
|
|
5952
5952
|
name: "x-runtime-lib.stepper",
|
|
5953
5953
|
comp: Cl,
|
|
5954
5954
|
props: {
|
|
@@ -5962,9 +5962,9 @@ const Ri = {
|
|
|
5962
5962
|
};
|
|
5963
5963
|
_(kn);
|
|
5964
5964
|
const Qa = {
|
|
5965
|
-
key:
|
|
5965
|
+
key: Bt,
|
|
5966
5966
|
name: "x-runtime-lib.switch",
|
|
5967
|
-
comp:
|
|
5967
|
+
comp: Nl,
|
|
5968
5968
|
props: {
|
|
5969
5969
|
pageCommon: [y],
|
|
5970
5970
|
compCommon: [y]
|
|
@@ -6007,36 +6007,36 @@ const Di = {
|
|
|
6007
6007
|
};
|
|
6008
6008
|
_(_n);
|
|
6009
6009
|
function eu(t, e) {
|
|
6010
|
-
const
|
|
6011
|
-
if (!
|
|
6012
|
-
console.error(`tabsV1/spawn prop tag not found, ${
|
|
6010
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
6011
|
+
if (!i) {
|
|
6012
|
+
console.error(`tabsV1/spawn prop tag not found, ${o}`);
|
|
6013
6013
|
return;
|
|
6014
6014
|
}
|
|
6015
|
-
const
|
|
6016
|
-
if (!
|
|
6017
|
-
console.error(`tabsV1/spawn props not found, ${
|
|
6015
|
+
const r = wn.props[i];
|
|
6016
|
+
if (!r) {
|
|
6017
|
+
console.error(`tabsV1/spawn props not found, ${o}`);
|
|
6018
6018
|
return;
|
|
6019
6019
|
}
|
|
6020
6020
|
const s = {};
|
|
6021
|
-
return P(s,
|
|
6022
|
-
|
|
6023
|
-
|
|
6024
|
-
|
|
6021
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = wn.key, s.children = [
|
|
6022
|
+
Zt(t, e, "tab1", "tab 1"),
|
|
6023
|
+
Zt(t, e, "tab2", "tab 2"),
|
|
6024
|
+
Zt(t, e, "tab3", "tab 3")
|
|
6025
6025
|
], s;
|
|
6026
6026
|
}
|
|
6027
|
-
function
|
|
6028
|
-
const
|
|
6027
|
+
function Zt(t, e, o, i) {
|
|
6028
|
+
const r = `type=${t} subtype=${e}`, s = A(t, e);
|
|
6029
6029
|
if (!s) {
|
|
6030
|
-
console.error(`tabsV1/spawnTab prop tag not found, ${
|
|
6030
|
+
console.error(`tabsV1/spawnTab prop tag not found, ${r}`);
|
|
6031
6031
|
return;
|
|
6032
6032
|
}
|
|
6033
6033
|
const a = _n.props[s];
|
|
6034
6034
|
if (!a) {
|
|
6035
|
-
console.error(`tabsV1/spawnTab props not found, ${
|
|
6035
|
+
console.error(`tabsV1/spawnTab props not found, ${r}`);
|
|
6036
6036
|
return;
|
|
6037
6037
|
}
|
|
6038
6038
|
const p = {};
|
|
6039
|
-
return P(p, a), p.basic.id = T(16), p.basic.key = _n.key, p.settings.value =
|
|
6039
|
+
return P(p, a), p.basic.id = T(16), p.basic.key = _n.key, p.settings.value = o, p.settings.text = i, p;
|
|
6040
6040
|
}
|
|
6041
6041
|
const jn = B(K);
|
|
6042
6042
|
jn.key = "backgroundColor";
|
|
@@ -6127,7 +6127,7 @@ const Mi = {
|
|
|
6127
6127
|
}
|
|
6128
6128
|
]
|
|
6129
6129
|
}, wn = {
|
|
6130
|
-
key:
|
|
6130
|
+
key: Wt,
|
|
6131
6131
|
name: "x-runtime-lib.tabs",
|
|
6132
6132
|
comp: Dl,
|
|
6133
6133
|
props: {
|
|
@@ -6141,18 +6141,18 @@ const Mi = {
|
|
|
6141
6141
|
};
|
|
6142
6142
|
_(wn);
|
|
6143
6143
|
function tu(t, e) {
|
|
6144
|
-
const
|
|
6145
|
-
if (!
|
|
6146
|
-
console.error(`textV1/spawn prop tag not found, ${
|
|
6144
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
6145
|
+
if (!i) {
|
|
6146
|
+
console.error(`textV1/spawn prop tag not found, ${o}`);
|
|
6147
6147
|
return;
|
|
6148
6148
|
}
|
|
6149
|
-
const
|
|
6150
|
-
if (!
|
|
6151
|
-
console.error(`textV1/spawn props not found, ${
|
|
6149
|
+
const r = be.props[i];
|
|
6150
|
+
if (!r) {
|
|
6151
|
+
console.error(`textV1/spawn props not found, ${o}`);
|
|
6152
6152
|
return;
|
|
6153
6153
|
}
|
|
6154
6154
|
const s = {};
|
|
6155
|
-
return P(s,
|
|
6155
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = be.key, s.settings.text = "text", s;
|
|
6156
6156
|
}
|
|
6157
6157
|
const Fi = {
|
|
6158
6158
|
key: "settings",
|
|
@@ -6241,7 +6241,7 @@ const Fi = {
|
|
|
6241
6241
|
}
|
|
6242
6242
|
]
|
|
6243
6243
|
}, be = {
|
|
6244
|
-
key:
|
|
6244
|
+
key: Et,
|
|
6245
6245
|
name: "x-runtime-lib.text",
|
|
6246
6246
|
comp: Ml,
|
|
6247
6247
|
props: {
|
|
@@ -6256,18 +6256,18 @@ const Fi = {
|
|
|
6256
6256
|
};
|
|
6257
6257
|
_(be);
|
|
6258
6258
|
function nu(t, e) {
|
|
6259
|
-
const
|
|
6260
|
-
if (!
|
|
6261
|
-
console.error(`textareaV1/spawn prop tag not found, ${
|
|
6259
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
6260
|
+
if (!i) {
|
|
6261
|
+
console.error(`textareaV1/spawn prop tag not found, ${o}`);
|
|
6262
6262
|
return;
|
|
6263
6263
|
}
|
|
6264
|
-
const
|
|
6265
|
-
if (!
|
|
6266
|
-
console.error(`textareaV1/spawn props not found, ${
|
|
6264
|
+
const r = Vn.props[i];
|
|
6265
|
+
if (!r) {
|
|
6266
|
+
console.error(`textareaV1/spawn props not found, ${o}`);
|
|
6267
6267
|
return;
|
|
6268
6268
|
}
|
|
6269
6269
|
const s = {};
|
|
6270
|
-
return P(s,
|
|
6270
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Vn.key, s.settings.label = "label", s;
|
|
6271
6271
|
}
|
|
6272
6272
|
const Gi = {
|
|
6273
6273
|
key: "settings",
|
|
@@ -6369,50 +6369,50 @@ const $n = {
|
|
|
6369
6369
|
};
|
|
6370
6370
|
_($n);
|
|
6371
6371
|
function iu(t, e) {
|
|
6372
|
-
const
|
|
6373
|
-
if (!
|
|
6374
|
-
console.error(`timelineV1/spawn prop tag not found, ${
|
|
6372
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
6373
|
+
if (!i) {
|
|
6374
|
+
console.error(`timelineV1/spawn prop tag not found, ${o}`);
|
|
6375
6375
|
return;
|
|
6376
6376
|
}
|
|
6377
|
-
const
|
|
6378
|
-
if (!
|
|
6379
|
-
console.error(`timelineV1/spawn props not found, ${
|
|
6377
|
+
const r = In.props[i];
|
|
6378
|
+
if (!r) {
|
|
6379
|
+
console.error(`timelineV1/spawn props not found, ${o}`);
|
|
6380
6380
|
return;
|
|
6381
6381
|
}
|
|
6382
6382
|
const s = {};
|
|
6383
|
-
return P(s,
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6383
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = In.key, s.children = [
|
|
6384
|
+
qt(t, e, "timeline 1"),
|
|
6385
|
+
qt(t, e, "timeline 2"),
|
|
6386
|
+
qt(t, e, "timeline 3")
|
|
6387
6387
|
], s;
|
|
6388
6388
|
}
|
|
6389
|
-
function
|
|
6390
|
-
const
|
|
6391
|
-
if (!
|
|
6392
|
-
console.error(`timelineV1/spawnEntry prop tag not found, ${
|
|
6389
|
+
function qt(t, e, o) {
|
|
6390
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6391
|
+
if (!r) {
|
|
6392
|
+
console.error(`timelineV1/spawnEntry prop tag not found, ${i}`);
|
|
6393
6393
|
return;
|
|
6394
6394
|
}
|
|
6395
|
-
const s = $n.props[
|
|
6395
|
+
const s = $n.props[r];
|
|
6396
6396
|
if (!s) {
|
|
6397
|
-
console.error(`timelineV1/spawnEntry props not found, ${
|
|
6397
|
+
console.error(`timelineV1/spawnEntry props not found, ${i}`);
|
|
6398
6398
|
return;
|
|
6399
6399
|
}
|
|
6400
6400
|
const a = {};
|
|
6401
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = $n.key, a.children = [ou(t, e,
|
|
6401
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = $n.key, a.children = [ou(t, e, o)], a;
|
|
6402
6402
|
}
|
|
6403
|
-
function ou(t, e,
|
|
6404
|
-
const
|
|
6405
|
-
if (!
|
|
6406
|
-
console.error(`timelineV1/spawnText prop tag not found, ${
|
|
6403
|
+
function ou(t, e, o) {
|
|
6404
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6405
|
+
if (!r) {
|
|
6406
|
+
console.error(`timelineV1/spawnText prop tag not found, ${i}`);
|
|
6407
6407
|
return;
|
|
6408
6408
|
}
|
|
6409
|
-
const s = be.props[
|
|
6409
|
+
const s = be.props[r];
|
|
6410
6410
|
if (!s) {
|
|
6411
|
-
console.error(`timelineV1/spawnText props not found, ${
|
|
6411
|
+
console.error(`timelineV1/spawnText props not found, ${i}`);
|
|
6412
6412
|
return;
|
|
6413
6413
|
}
|
|
6414
6414
|
const a = {};
|
|
6415
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = be.key, a.settings.text =
|
|
6415
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = be.key, a.settings.text = o, a;
|
|
6416
6416
|
}
|
|
6417
6417
|
const su = B(K), ru = B(K), Hi = {
|
|
6418
6418
|
key: "settings",
|
|
@@ -6493,7 +6493,7 @@ const su = B(K), ru = B(K), Hi = {
|
|
|
6493
6493
|
}
|
|
6494
6494
|
]
|
|
6495
6495
|
}, In = {
|
|
6496
|
-
key:
|
|
6496
|
+
key: Dt,
|
|
6497
6497
|
name: "x-runtime-lib.timeline",
|
|
6498
6498
|
comp: Hl,
|
|
6499
6499
|
props: {
|
|
@@ -6520,64 +6520,64 @@ const Sn = {
|
|
|
6520
6520
|
};
|
|
6521
6521
|
_(Sn);
|
|
6522
6522
|
function lu(t, e) {
|
|
6523
|
-
const
|
|
6524
|
-
if (!
|
|
6525
|
-
console.error(`windowV1/spawn prop tag not found, ${
|
|
6523
|
+
const o = `type=${t} subtype=${e}`, i = A(t, e);
|
|
6524
|
+
if (!i) {
|
|
6525
|
+
console.error(`windowV1/spawn prop tag not found, ${o}`);
|
|
6526
6526
|
return;
|
|
6527
6527
|
}
|
|
6528
|
-
const
|
|
6529
|
-
if (!
|
|
6530
|
-
console.error(`windowV1/spawn props not found, ${
|
|
6528
|
+
const r = Cn.props[i];
|
|
6529
|
+
if (!r) {
|
|
6530
|
+
console.error(`windowV1/spawn props not found, ${o}`);
|
|
6531
6531
|
return;
|
|
6532
6532
|
}
|
|
6533
6533
|
const s = {};
|
|
6534
|
-
return P(s,
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6534
|
+
return P(s, r), s.basic.id = T(16), s.basic.key = Cn.key, s.children = [
|
|
6535
|
+
Qt(t, e, "window 1"),
|
|
6536
|
+
Qt(t, e, "window 2"),
|
|
6537
|
+
Qt(t, e, "window 3")
|
|
6538
6538
|
], s;
|
|
6539
6539
|
}
|
|
6540
|
-
function
|
|
6541
|
-
const
|
|
6542
|
-
if (!
|
|
6543
|
-
console.error(`windowV1/spawnEntry prop tag not found, ${
|
|
6540
|
+
function Qt(t, e, o) {
|
|
6541
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6542
|
+
if (!r) {
|
|
6543
|
+
console.error(`windowV1/spawnEntry prop tag not found, ${i}`);
|
|
6544
6544
|
return;
|
|
6545
6545
|
}
|
|
6546
|
-
const s = Sn.props[
|
|
6546
|
+
const s = Sn.props[r];
|
|
6547
6547
|
if (!s) {
|
|
6548
|
-
console.error(`windowV1/spawnEntry props not found, ${
|
|
6548
|
+
console.error(`windowV1/spawnEntry props not found, ${i}`);
|
|
6549
6549
|
return;
|
|
6550
6550
|
}
|
|
6551
6551
|
const a = {};
|
|
6552
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = Sn.key, a.children = [au(t, e,
|
|
6552
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = Sn.key, a.children = [au(t, e, o)], a;
|
|
6553
6553
|
}
|
|
6554
|
-
function au(t, e,
|
|
6555
|
-
const
|
|
6556
|
-
if (!
|
|
6557
|
-
console.error(`windowV1/spawnFlexLayout prop tag not found, ${
|
|
6554
|
+
function au(t, e, o) {
|
|
6555
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6556
|
+
if (!r) {
|
|
6557
|
+
console.error(`windowV1/spawnFlexLayout prop tag not found, ${i}`);
|
|
6558
6558
|
return;
|
|
6559
6559
|
}
|
|
6560
|
-
const s =
|
|
6560
|
+
const s = Ae.props[r];
|
|
6561
6561
|
if (!s) {
|
|
6562
|
-
console.error(`windowV1/spawnFlexLayout props not found, ${
|
|
6562
|
+
console.error(`windowV1/spawnFlexLayout props not found, ${i}`);
|
|
6563
6563
|
return;
|
|
6564
6564
|
}
|
|
6565
6565
|
const a = {};
|
|
6566
|
-
return P(a, s), a.basic.id = T(16), a.basic.key =
|
|
6566
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = Ae.key, a.size.height = "200px", a.settings.mainAlign.xs = "center", a.settings.crossAlign.xs = "center", a.settings.backgroundColor.mode = "theme", a.settings.backgroundColor.theme = "background2", a.children = [uu(t, e, o)], a;
|
|
6567
6567
|
}
|
|
6568
|
-
function uu(t, e,
|
|
6569
|
-
const
|
|
6570
|
-
if (!
|
|
6571
|
-
console.error(`windowV1/spawnText prop tag not found, ${
|
|
6568
|
+
function uu(t, e, o) {
|
|
6569
|
+
const i = `type=${t} subtype=${e}`, r = A(t, e);
|
|
6570
|
+
if (!r) {
|
|
6571
|
+
console.error(`windowV1/spawnText prop tag not found, ${i}`);
|
|
6572
6572
|
return;
|
|
6573
6573
|
}
|
|
6574
|
-
const s = be.props[
|
|
6574
|
+
const s = be.props[r];
|
|
6575
6575
|
if (!s) {
|
|
6576
|
-
console.error(`windowV1/spawnText props not found, ${
|
|
6576
|
+
console.error(`windowV1/spawnText props not found, ${i}`);
|
|
6577
6577
|
return;
|
|
6578
6578
|
}
|
|
6579
6579
|
const a = {};
|
|
6580
|
-
return P(a, s), a.basic.id = T(16), a.basic.key = be.key, a.settings.text =
|
|
6580
|
+
return P(a, s), a.basic.id = T(16), a.basic.key = be.key, a.settings.text = o, a.settings.style.xs = "h6", a;
|
|
6581
6581
|
}
|
|
6582
6582
|
const ji = {
|
|
6583
6583
|
key: "settings",
|
|
@@ -6628,7 +6628,7 @@ const ji = {
|
|
|
6628
6628
|
}
|
|
6629
6629
|
]
|
|
6630
6630
|
}, Cn = {
|
|
6631
|
-
key:
|
|
6631
|
+
key: Mt,
|
|
6632
6632
|
name: "x-runtime-lib.window",
|
|
6633
6633
|
comp: Ol,
|
|
6634
6634
|
props: {
|
|
@@ -6817,7 +6817,7 @@ const cu = [
|
|
|
6817
6817
|
timelineDirectionItemsV1: Au,
|
|
6818
6818
|
timelineSideItemsV1: Lu,
|
|
6819
6819
|
timelineTruncateLineItemsV1: Bu
|
|
6820
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6820
|
+
}, Symbol.toStringTag, { value: "Module" })), Eu = [
|
|
6821
6821
|
{
|
|
6822
6822
|
title: "x-runtime-lib.notSet",
|
|
6823
6823
|
value: "",
|
|
@@ -6850,14 +6850,14 @@ const cu = [
|
|
|
6850
6850
|
title: "x-runtime-lib.pixel",
|
|
6851
6851
|
value: "pixel",
|
|
6852
6852
|
ui: "pixelInput",
|
|
6853
|
-
validator:
|
|
6853
|
+
validator: Ke,
|
|
6854
6854
|
default: "0px",
|
|
6855
6855
|
precision: 0,
|
|
6856
6856
|
min: 0,
|
|
6857
6857
|
max: 1 / 0,
|
|
6858
6858
|
step: 1
|
|
6859
6859
|
}
|
|
6860
|
-
],
|
|
6860
|
+
], Nu = [
|
|
6861
6861
|
{
|
|
6862
6862
|
title: "x-runtime-lib.notSet",
|
|
6863
6863
|
value: "",
|
|
@@ -6898,7 +6898,7 @@ const cu = [
|
|
|
6898
6898
|
title: "x-runtime-lib.pixel",
|
|
6899
6899
|
value: "pixel",
|
|
6900
6900
|
ui: "pixelInput",
|
|
6901
|
-
validator:
|
|
6901
|
+
validator: Ke,
|
|
6902
6902
|
default: "0px"
|
|
6903
6903
|
},
|
|
6904
6904
|
{
|
|
@@ -6921,7 +6921,7 @@ const cu = [
|
|
|
6921
6921
|
title: "x-runtime-lib.pixel",
|
|
6922
6922
|
value: "pixel",
|
|
6923
6923
|
ui: "pixelInput",
|
|
6924
|
-
validator:
|
|
6924
|
+
validator: Ke,
|
|
6925
6925
|
min: 0,
|
|
6926
6926
|
default: "0px"
|
|
6927
6927
|
},
|
|
@@ -6946,7 +6946,7 @@ const cu = [
|
|
|
6946
6946
|
title: "x-runtime-lib.pixel",
|
|
6947
6947
|
value: "pixel",
|
|
6948
6948
|
ui: "pixelInput",
|
|
6949
|
-
validator:
|
|
6949
|
+
validator: Ke,
|
|
6950
6950
|
min: 0,
|
|
6951
6951
|
default: "0px"
|
|
6952
6952
|
},
|
|
@@ -7012,8 +7012,8 @@ const cu = [
|
|
|
7012
7012
|
}
|
|
7013
7013
|
], Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7014
7014
|
__proto__: null,
|
|
7015
|
-
borderWidthTypesV1:
|
|
7016
|
-
leftRightTypesV1:
|
|
7015
|
+
borderWidthTypesV1: Eu,
|
|
7016
|
+
leftRightTypesV1: Nu,
|
|
7017
7017
|
marginTypesV1: Ru,
|
|
7018
7018
|
paddingTypesV1: Du,
|
|
7019
7019
|
sizeTypesV1: Mu,
|
|
@@ -7024,224 +7024,223 @@ const cu = [
|
|
|
7024
7024
|
key: "containment",
|
|
7025
7025
|
name: "x-runtime-lib.containment",
|
|
7026
7026
|
items: [
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7027
|
+
Je,
|
|
7028
|
+
Qe,
|
|
7029
|
+
tt,
|
|
7030
|
+
st,
|
|
7031
|
+
mt,
|
|
7032
|
+
at,
|
|
7033
|
+
gt
|
|
7034
7034
|
]
|
|
7035
7035
|
},
|
|
7036
7036
|
{
|
|
7037
7037
|
key: "navigation",
|
|
7038
7038
|
name: "x-runtime-lib.navigation",
|
|
7039
|
-
items: [Wn,
|
|
7039
|
+
items: [Wn, wt, Wt]
|
|
7040
7040
|
},
|
|
7041
7041
|
{
|
|
7042
7042
|
key: "formRelated",
|
|
7043
7043
|
name: "x-runtime-lib.formRelated",
|
|
7044
7044
|
items: [
|
|
7045
|
-
|
|
7046
|
-
Wt,
|
|
7045
|
+
pt,
|
|
7047
7046
|
Et,
|
|
7047
|
+
Rt,
|
|
7048
7048
|
Nt,
|
|
7049
|
-
|
|
7050
|
-
Ct,
|
|
7051
|
-
it,
|
|
7052
|
-
Lt,
|
|
7053
|
-
$t,
|
|
7054
|
-
Qe,
|
|
7049
|
+
vt,
|
|
7055
7050
|
Tt,
|
|
7051
|
+
ot,
|
|
7052
|
+
Bt,
|
|
7056
7053
|
It,
|
|
7057
|
-
|
|
7054
|
+
et,
|
|
7055
|
+
Pt,
|
|
7056
|
+
St,
|
|
7057
|
+
ct
|
|
7058
7058
|
]
|
|
7059
7059
|
},
|
|
7060
7060
|
{
|
|
7061
7061
|
key: "dataDisplay",
|
|
7062
7062
|
name: "x-runtime-lib.dataDisplay",
|
|
7063
|
-
items: [Rn,
|
|
7063
|
+
items: [Rn, rt, Xe, yt]
|
|
7064
7064
|
},
|
|
7065
7065
|
{
|
|
7066
7066
|
key: "selection",
|
|
7067
7067
|
name: "x-runtime-lib.selection",
|
|
7068
7068
|
items: [
|
|
7069
|
+
qe,
|
|
7069
7070
|
Ze,
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
Dt
|
|
7071
|
+
nt,
|
|
7072
|
+
Lt,
|
|
7073
|
+
Mt
|
|
7074
7074
|
]
|
|
7075
7075
|
},
|
|
7076
7076
|
{
|
|
7077
7077
|
key: "feedback",
|
|
7078
7078
|
name: "x-runtime-lib.feedback",
|
|
7079
|
-
items: [
|
|
7079
|
+
items: [Oe, Ct, Dt]
|
|
7080
7080
|
},
|
|
7081
7081
|
{
|
|
7082
7082
|
key: "imagesAndIcons",
|
|
7083
7083
|
name: "x-runtime-lib.imagesAndIcons",
|
|
7084
|
-
items: [
|
|
7084
|
+
items: [ft]
|
|
7085
7085
|
},
|
|
7086
7086
|
{
|
|
7087
7087
|
key: "pickers",
|
|
7088
7088
|
name: "x-runtime-lib.pickers",
|
|
7089
|
-
items: [
|
|
7089
|
+
items: [it, lt]
|
|
7090
7090
|
},
|
|
7091
7091
|
{
|
|
7092
7092
|
key: "dynamic",
|
|
7093
7093
|
name: "x-runtime-lib.dynamic",
|
|
7094
|
-
items: [
|
|
7094
|
+
items: [De, En, Nn]
|
|
7095
7095
|
}
|
|
7096
7096
|
], Ku = [
|
|
7097
7097
|
{
|
|
7098
7098
|
key: "objects",
|
|
7099
7099
|
name: "x-runtime-lib.objects",
|
|
7100
|
-
items: [
|
|
7100
|
+
items: [dt, xt]
|
|
7101
7101
|
},
|
|
7102
7102
|
{
|
|
7103
7103
|
key: "geometries",
|
|
7104
7104
|
name: "x-runtime-lib.geometries",
|
|
7105
|
-
items: [
|
|
7105
|
+
items: [Ye, zt]
|
|
7106
7106
|
},
|
|
7107
7107
|
{
|
|
7108
7108
|
key: "lights",
|
|
7109
7109
|
name: "x-runtime-lib.lights",
|
|
7110
7110
|
items: [
|
|
7111
|
-
|
|
7112
|
-
|
|
7113
|
-
|
|
7114
|
-
|
|
7111
|
+
Ue,
|
|
7112
|
+
ut,
|
|
7113
|
+
$t,
|
|
7114
|
+
At
|
|
7115
7115
|
]
|
|
7116
7116
|
},
|
|
7117
7117
|
{
|
|
7118
7118
|
key: "cameras",
|
|
7119
7119
|
name: "x-runtime-lib.cameras",
|
|
7120
|
-
items: [
|
|
7120
|
+
items: [Vt, _t]
|
|
7121
7121
|
},
|
|
7122
7122
|
{
|
|
7123
7123
|
key: "controls",
|
|
7124
7124
|
name: "x-runtime-lib.controls",
|
|
7125
|
-
items: [
|
|
7125
|
+
items: [kt, ht, bt]
|
|
7126
7126
|
}
|
|
7127
7127
|
], Uu = [
|
|
7128
7128
|
{
|
|
7129
7129
|
key: "containment",
|
|
7130
7130
|
name: "x-runtime-lib.containment",
|
|
7131
7131
|
items: [
|
|
7132
|
-
|
|
7133
|
-
|
|
7134
|
-
|
|
7135
|
-
|
|
7136
|
-
|
|
7137
|
-
|
|
7138
|
-
|
|
7132
|
+
Je,
|
|
7133
|
+
Qe,
|
|
7134
|
+
tt,
|
|
7135
|
+
st,
|
|
7136
|
+
mt,
|
|
7137
|
+
at,
|
|
7138
|
+
gt
|
|
7139
7139
|
]
|
|
7140
7140
|
},
|
|
7141
7141
|
{
|
|
7142
7142
|
key: "navigation",
|
|
7143
7143
|
name: "x-runtime-lib.navigation",
|
|
7144
|
-
items: [Wn,
|
|
7144
|
+
items: [Wn, wt, Wt]
|
|
7145
7145
|
},
|
|
7146
7146
|
{
|
|
7147
7147
|
key: "formRelated",
|
|
7148
7148
|
name: "x-runtime-lib.formRelated",
|
|
7149
7149
|
items: [
|
|
7150
|
-
|
|
7151
|
-
Wt,
|
|
7150
|
+
pt,
|
|
7152
7151
|
Et,
|
|
7152
|
+
Rt,
|
|
7153
7153
|
Nt,
|
|
7154
|
-
|
|
7155
|
-
Ct,
|
|
7156
|
-
it,
|
|
7157
|
-
Lt,
|
|
7158
|
-
$t,
|
|
7159
|
-
Qe,
|
|
7154
|
+
vt,
|
|
7160
7155
|
Tt,
|
|
7156
|
+
ot,
|
|
7157
|
+
Bt,
|
|
7161
7158
|
It,
|
|
7162
|
-
|
|
7159
|
+
et,
|
|
7160
|
+
Pt,
|
|
7161
|
+
St,
|
|
7162
|
+
ct
|
|
7163
7163
|
]
|
|
7164
7164
|
},
|
|
7165
7165
|
{
|
|
7166
7166
|
key: "dataDisplay",
|
|
7167
7167
|
name: "x-runtime-lib.dataDisplay",
|
|
7168
|
-
items: [Rn,
|
|
7168
|
+
items: [Rn, rt, Xe, yt]
|
|
7169
7169
|
},
|
|
7170
7170
|
{
|
|
7171
7171
|
key: "selection",
|
|
7172
7172
|
name: "x-runtime-lib.selection",
|
|
7173
7173
|
items: [
|
|
7174
|
+
qe,
|
|
7174
7175
|
Ze,
|
|
7175
|
-
|
|
7176
|
-
|
|
7177
|
-
|
|
7178
|
-
Dt
|
|
7176
|
+
nt,
|
|
7177
|
+
Lt,
|
|
7178
|
+
Mt
|
|
7179
7179
|
]
|
|
7180
7180
|
},
|
|
7181
7181
|
{
|
|
7182
7182
|
key: "feedback",
|
|
7183
7183
|
name: "x-runtime-lib.feedback",
|
|
7184
|
-
items: [
|
|
7184
|
+
items: [Oe, Ct, Dt]
|
|
7185
7185
|
},
|
|
7186
7186
|
{
|
|
7187
7187
|
key: "imagesAndIcons",
|
|
7188
7188
|
name: "x-runtime-lib.imagesAndIcons",
|
|
7189
|
-
items: [
|
|
7189
|
+
items: [ft]
|
|
7190
7190
|
},
|
|
7191
7191
|
{
|
|
7192
7192
|
key: "pickers",
|
|
7193
7193
|
name: "x-runtime-lib.pickers",
|
|
7194
|
-
items: [
|
|
7194
|
+
items: [it, lt]
|
|
7195
7195
|
},
|
|
7196
7196
|
{
|
|
7197
7197
|
key: "dynamic",
|
|
7198
7198
|
name: "x-runtime-lib.dynamic",
|
|
7199
|
-
items: [
|
|
7199
|
+
items: [De, En, Nn]
|
|
7200
7200
|
}
|
|
7201
7201
|
], Ou = [
|
|
7202
7202
|
{
|
|
7203
7203
|
key: "objects",
|
|
7204
7204
|
name: "x-runtime-lib.objects",
|
|
7205
|
-
items: [
|
|
7205
|
+
items: [dt, xt]
|
|
7206
7206
|
},
|
|
7207
7207
|
{
|
|
7208
7208
|
key: "geometries",
|
|
7209
7209
|
name: "x-runtime-lib.geometries",
|
|
7210
|
-
items: [
|
|
7210
|
+
items: [Ye, zt]
|
|
7211
7211
|
},
|
|
7212
7212
|
{
|
|
7213
7213
|
key: "lights",
|
|
7214
7214
|
name: "x-runtime-lib.lights",
|
|
7215
7215
|
items: [
|
|
7216
|
-
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7216
|
+
Ue,
|
|
7217
|
+
ut,
|
|
7218
|
+
$t,
|
|
7219
|
+
At
|
|
7220
7220
|
]
|
|
7221
7221
|
},
|
|
7222
7222
|
{
|
|
7223
7223
|
key: "cameras",
|
|
7224
7224
|
name: "x-runtime-lib.cameras",
|
|
7225
|
-
items: [
|
|
7225
|
+
items: [Vt, _t]
|
|
7226
7226
|
},
|
|
7227
7227
|
{
|
|
7228
7228
|
key: "controls",
|
|
7229
7229
|
name: "x-runtime-lib.controls",
|
|
7230
|
-
items: [
|
|
7230
|
+
items: [kt, ht, bt]
|
|
7231
7231
|
}
|
|
7232
7232
|
], Xu = {
|
|
7233
7233
|
version: "v1",
|
|
7234
7234
|
globalityKey: en,
|
|
7235
|
-
refKey:
|
|
7235
|
+
refKey: De,
|
|
7236
7236
|
items: { ...Wu },
|
|
7237
7237
|
types: { ...Hu },
|
|
7238
7238
|
elements: /* @__PURE__ */ new Set([
|
|
7239
|
-
Ke,
|
|
7240
7239
|
Ue,
|
|
7241
7240
|
Oe,
|
|
7242
7241
|
Xe,
|
|
7243
|
-
Wn,
|
|
7244
7242
|
Ye,
|
|
7243
|
+
Wn,
|
|
7245
7244
|
Je,
|
|
7246
7245
|
Ze,
|
|
7247
7246
|
qe,
|
|
@@ -7257,48 +7256,49 @@ const cu = [
|
|
|
7257
7256
|
at,
|
|
7258
7257
|
ut,
|
|
7259
7258
|
ct,
|
|
7260
|
-
fo,
|
|
7261
7259
|
mt,
|
|
7262
|
-
|
|
7260
|
+
fo,
|
|
7263
7261
|
pt,
|
|
7262
|
+
en,
|
|
7264
7263
|
dt,
|
|
7265
7264
|
ft,
|
|
7266
7265
|
bt,
|
|
7267
7266
|
yt,
|
|
7268
7267
|
ht,
|
|
7269
7268
|
gt,
|
|
7270
|
-
Nn,
|
|
7271
7269
|
xt,
|
|
7270
|
+
En,
|
|
7272
7271
|
vt,
|
|
7273
7272
|
kt,
|
|
7274
7273
|
_t,
|
|
7275
7274
|
wt,
|
|
7276
7275
|
Vt,
|
|
7277
|
-
bo,
|
|
7278
7276
|
$t,
|
|
7277
|
+
bo,
|
|
7279
7278
|
It,
|
|
7280
7279
|
St,
|
|
7281
|
-
En,
|
|
7282
7280
|
Ct,
|
|
7283
|
-
|
|
7281
|
+
Nn,
|
|
7284
7282
|
Tt,
|
|
7283
|
+
De,
|
|
7285
7284
|
Pt,
|
|
7286
7285
|
zt,
|
|
7287
7286
|
At,
|
|
7287
|
+
Lt,
|
|
7288
7288
|
yo,
|
|
7289
7289
|
ho,
|
|
7290
7290
|
go,
|
|
7291
7291
|
xo,
|
|
7292
|
-
|
|
7292
|
+
Bt,
|
|
7293
7293
|
vo,
|
|
7294
7294
|
Rn,
|
|
7295
|
-
Bt,
|
|
7296
7295
|
Wt,
|
|
7297
|
-
Nt,
|
|
7298
7296
|
Et,
|
|
7297
|
+
Nt,
|
|
7299
7298
|
Rt,
|
|
7300
|
-
ko,
|
|
7301
7299
|
Dt,
|
|
7300
|
+
ko,
|
|
7301
|
+
Mt,
|
|
7302
7302
|
_o
|
|
7303
7303
|
]),
|
|
7304
7304
|
groups: {
|
|
@@ -7324,25 +7324,70 @@ function Ic(t) {
|
|
|
7324
7324
|
return "#80a55b";
|
|
7325
7325
|
}
|
|
7326
7326
|
}
|
|
7327
|
-
function Sc(t, e,
|
|
7327
|
+
function Sc(t, e, o, i, r) {
|
|
7328
7328
|
let s = t;
|
|
7329
7329
|
for (let p = 0; p < e.length; p++)
|
|
7330
7330
|
if (s = s.children[e[p]], !s) {
|
|
7331
7331
|
console.assert(!1, `unpkg context failed parentKeys=${e}`);
|
|
7332
7332
|
return;
|
|
7333
7333
|
}
|
|
7334
|
-
let a = s.children[
|
|
7335
|
-
a ? a.dataSeq !==
|
|
7336
|
-
dataSeq:
|
|
7337
|
-
data: B(
|
|
7334
|
+
let a = s.children[o];
|
|
7335
|
+
a ? a.dataSeq !== i && (a = {
|
|
7336
|
+
dataSeq: i,
|
|
7337
|
+
data: B(r),
|
|
7338
7338
|
children: {}
|
|
7339
7339
|
}) : (a = {
|
|
7340
|
-
dataSeq:
|
|
7341
|
-
data: B(
|
|
7340
|
+
dataSeq: i,
|
|
7341
|
+
data: B(r),
|
|
7342
7342
|
children: {}
|
|
7343
|
-
}, s.children[
|
|
7343
|
+
}, s.children[o] = a);
|
|
7344
7344
|
}
|
|
7345
7345
|
const Yu = ["common", "scene"], Ju = ["common", "scene"];
|
|
7346
|
+
function Cc(t, e) {
|
|
7347
|
+
const { i18n: o } = ke;
|
|
7348
|
+
let i = "";
|
|
7349
|
+
return e === "elementProperty" ? t.forEach((r, s) => {
|
|
7350
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7351
|
+
}) : e === "refProperty" ? (i += o.global.t("x-runtime-lib.ref"), i += " / ", t.forEach((r, s) => {
|
|
7352
|
+
s > 0 && (i += " - "), i += r;
|
|
7353
|
+
})) : e === "customProperty" ? (i += o.global.t("x-runtime-lib.custom"), i += " / ", t.forEach((r, s) => {
|
|
7354
|
+
s > 0 && (i += " - "), i += r;
|
|
7355
|
+
})) : e === "elementSlotProperty" ? (i += o.global.t("x-runtime-lib.slot"), i += " / ", t.forEach((r, s) => {
|
|
7356
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7357
|
+
})) : e === "customSlotProperty" ? (i += o.global.t("x-runtime-lib.slot"), i += " / ", t.forEach((r, s) => {
|
|
7358
|
+
s > 0 && (i += " - "), i += r;
|
|
7359
|
+
})) : console.assert(!1), i;
|
|
7360
|
+
}
|
|
7361
|
+
function Tc(t, e) {
|
|
7362
|
+
const { i18n: o } = ke;
|
|
7363
|
+
let i = "";
|
|
7364
|
+
return e === "elementMethod" ? t.forEach((r, s) => {
|
|
7365
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7366
|
+
}) : e === "refMethod" ? (i += o.global.t("x-runtime-lib.ref"), i += " / ", t.forEach((r, s) => {
|
|
7367
|
+
s > 0 && (i += " - "), i += r;
|
|
7368
|
+
})) : e === "customMethod" ? (i += o.global.t("x-runtime-lib.custom"), i += " / ", t.forEach((r, s) => {
|
|
7369
|
+
s > 0 && (i += " - "), i += r;
|
|
7370
|
+
})) : e === "elementSlotMethod" ? (i += o.global.t("x-runtime-lib.slot"), i += " / ", t.forEach((r, s) => {
|
|
7371
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7372
|
+
})) : e === "customSlotMethod" ? (i += o.global.t("x-runtime-lib.slot"), i += " / ", t.forEach((r, s) => {
|
|
7373
|
+
s > 0 && (i += " - "), i += r;
|
|
7374
|
+
})) : console.assert(!1), i;
|
|
7375
|
+
}
|
|
7376
|
+
function Pc(t, e) {
|
|
7377
|
+
const { i18n: o } = ke;
|
|
7378
|
+
let i = "";
|
|
7379
|
+
return e === "elementEvent" ? t.forEach((r, s) => {
|
|
7380
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7381
|
+
}) : e === "refEvent" ? (i += o.global.t("x-runtime-lib.ref"), i += " / ", t.forEach((r, s) => {
|
|
7382
|
+
s > 0 && (i += " - "), i += r;
|
|
7383
|
+
})) : e === "customEvent" ? (i += o.global.t("x-runtime-lib.custom"), i += " / ", t.forEach((r, s) => {
|
|
7384
|
+
s > 0 && (i += " - "), i += r;
|
|
7385
|
+
})) : e === "propertyChangeEvent" ? (i += o.global.t("x-runtime-lib.propertyChange"), i += " / ", t.forEach((r, s) => {
|
|
7386
|
+
s > 0 && (i += " - "), i += o.global.t(r);
|
|
7387
|
+
})) : e === "stateChangeEvent" ? (i += o.global.t("x-runtime-lib.stateChange"), i += " / ", t.forEach((r, s) => {
|
|
7388
|
+
s > 0 && (i += " - "), i += r;
|
|
7389
|
+
})) : console.assert(!1), i;
|
|
7390
|
+
}
|
|
7346
7391
|
function A(t, e) {
|
|
7347
7392
|
if (t === "page") {
|
|
7348
7393
|
if (!Yu.includes(e)) {
|
|
@@ -7359,41 +7404,41 @@ function Ki(t, e) {
|
|
|
7359
7404
|
if (t.array)
|
|
7360
7405
|
return e ? B(t.default) : B(t.defaultArray);
|
|
7361
7406
|
{
|
|
7362
|
-
const
|
|
7363
|
-
return (t.ui === "switch" || t.ui === "select" || t.ui === "colorPicker" || t.ui === "multiTypes" || t.ui === "compSelect") && !
|
|
7407
|
+
const o = B(t.default);
|
|
7408
|
+
return (t.ui === "switch" || t.ui === "select" || t.ui === "colorPicker" || t.ui === "multiTypes" || t.ui === "compSelect") && !o ? void 0 : o;
|
|
7364
7409
|
}
|
|
7365
7410
|
}
|
|
7366
7411
|
function P(t, e) {
|
|
7367
|
-
function i
|
|
7368
|
-
if (
|
|
7369
|
-
if (
|
|
7412
|
+
function o(i, r) {
|
|
7413
|
+
if (r.ui) {
|
|
7414
|
+
if (r.ui === "strInput" && r.static)
|
|
7370
7415
|
return;
|
|
7371
|
-
|
|
7416
|
+
i[r.key] = Ki(r);
|
|
7372
7417
|
} else
|
|
7373
|
-
|
|
7374
|
-
|
|
7418
|
+
r.array ? i[r.key] = Ki(r) : r.children.forEach((s) => {
|
|
7419
|
+
i[r.key] || (i[r.key] = {}), o(i[r.key], s);
|
|
7375
7420
|
});
|
|
7376
7421
|
}
|
|
7377
|
-
e.forEach((
|
|
7422
|
+
e.forEach((i) => o(t, i));
|
|
7378
7423
|
}
|
|
7379
|
-
function
|
|
7380
|
-
const s = `type=${t} subtype=${e} version=${
|
|
7424
|
+
function zc(t, e, o, i, r) {
|
|
7425
|
+
const s = `type=${t} subtype=${e} version=${o} ref=${i} keyOrRefid=${r}`, a = A(t, e);
|
|
7381
7426
|
if (!a) {
|
|
7382
7427
|
console.error(`spawnNode prop tag not found, ${s}`);
|
|
7383
7428
|
return;
|
|
7384
7429
|
}
|
|
7385
|
-
const p = wo[
|
|
7430
|
+
const p = wo[o];
|
|
7386
7431
|
if (!p) {
|
|
7387
7432
|
console.error(`spawnNode pkg not found version, ${s}`);
|
|
7388
7433
|
return;
|
|
7389
7434
|
}
|
|
7390
|
-
if (
|
|
7391
|
-
const d = p.refKey, b =
|
|
7435
|
+
if (i) {
|
|
7436
|
+
const d = p.refKey, b = r;
|
|
7392
7437
|
if (!p.elements.has(d)) {
|
|
7393
7438
|
console.error(`spawnNode [ref] element not found in pkg, ${s}`);
|
|
7394
7439
|
return;
|
|
7395
7440
|
}
|
|
7396
|
-
const m =
|
|
7441
|
+
const m = Ce[d];
|
|
7397
7442
|
if (!m) {
|
|
7398
7443
|
console.error(`spawnNode [ref] element not found in global, ${s}`);
|
|
7399
7444
|
return;
|
|
@@ -7413,12 +7458,12 @@ function Cc(t, e, i, o, l) {
|
|
|
7413
7458
|
comp: b
|
|
7414
7459
|
}, c;
|
|
7415
7460
|
} else {
|
|
7416
|
-
const d =
|
|
7461
|
+
const d = r;
|
|
7417
7462
|
if (!p.elements.has(d)) {
|
|
7418
7463
|
console.error(`spawnNode [key] element not found in pkg, ${s}`);
|
|
7419
7464
|
return;
|
|
7420
7465
|
}
|
|
7421
|
-
const b =
|
|
7466
|
+
const b = Ce[d];
|
|
7422
7467
|
if (!b) {
|
|
7423
7468
|
console.error(`spawnNode [key] element not found in global, ${s}`);
|
|
7424
7469
|
return;
|
|
@@ -7441,80 +7486,80 @@ function Cc(t, e, i, o, l) {
|
|
|
7441
7486
|
}
|
|
7442
7487
|
}
|
|
7443
7488
|
}
|
|
7444
|
-
function
|
|
7445
|
-
function i
|
|
7446
|
-
if (
|
|
7447
|
-
return
|
|
7448
|
-
if (
|
|
7449
|
-
for (let
|
|
7450
|
-
const s = i
|
|
7489
|
+
function Ac(t, e) {
|
|
7490
|
+
function o(i) {
|
|
7491
|
+
if (i.basic.id === e)
|
|
7492
|
+
return i;
|
|
7493
|
+
if (i.children)
|
|
7494
|
+
for (let r = 0; r < i.children.length; r++) {
|
|
7495
|
+
const s = o(i.children[r]);
|
|
7451
7496
|
if (s)
|
|
7452
7497
|
return s;
|
|
7453
7498
|
}
|
|
7454
7499
|
}
|
|
7455
|
-
for (let
|
|
7456
|
-
const
|
|
7457
|
-
if (
|
|
7458
|
-
return
|
|
7500
|
+
for (let i = 0; i < t.length; i++) {
|
|
7501
|
+
const r = o(t[i]);
|
|
7502
|
+
if (r)
|
|
7503
|
+
return r;
|
|
7459
7504
|
}
|
|
7460
7505
|
}
|
|
7461
7506
|
function Zu(t) {
|
|
7462
|
-
function e(
|
|
7463
|
-
|
|
7507
|
+
function e(i) {
|
|
7508
|
+
i.basic.id = T(16), i.children?.forEach((r) => e(r));
|
|
7464
7509
|
}
|
|
7465
|
-
const
|
|
7466
|
-
return e(
|
|
7510
|
+
const o = B(t);
|
|
7511
|
+
return e(o), o;
|
|
7467
7512
|
}
|
|
7468
|
-
function
|
|
7513
|
+
function Lc(t) {
|
|
7469
7514
|
const e = [];
|
|
7470
|
-
return t.forEach((
|
|
7471
|
-
e.push(Zu(
|
|
7515
|
+
return t.forEach((o) => {
|
|
7516
|
+
e.push(Zu(o));
|
|
7472
7517
|
}), e;
|
|
7473
7518
|
}
|
|
7474
7519
|
const Vo = "runtimeOrg", $o = "runtimeEnv", Io = "runtimeMode", So = "runtimeDevice", Co = "runtimeDark", To = "runtimeType", Po = "runtimeData", zo = "runtimeDepends", Ao = "runtimeSandbox";
|
|
7475
|
-
function
|
|
7520
|
+
function Bc(t) {
|
|
7476
7521
|
se(Vo, t);
|
|
7477
7522
|
}
|
|
7478
7523
|
function qu() {
|
|
7479
7524
|
return oe(Vo);
|
|
7480
7525
|
}
|
|
7481
|
-
function
|
|
7526
|
+
function Wc(t) {
|
|
7482
7527
|
se($o, t);
|
|
7483
7528
|
}
|
|
7484
7529
|
function Qu() {
|
|
7485
7530
|
return oe($o);
|
|
7486
7531
|
}
|
|
7487
|
-
function
|
|
7532
|
+
function Ec(t) {
|
|
7488
7533
|
se(Io, t);
|
|
7489
7534
|
}
|
|
7490
7535
|
function G() {
|
|
7491
7536
|
return oe(Io);
|
|
7492
7537
|
}
|
|
7493
|
-
function
|
|
7538
|
+
function Nc(t) {
|
|
7494
7539
|
se(So, Pn(t));
|
|
7495
7540
|
}
|
|
7496
|
-
function
|
|
7541
|
+
function $e() {
|
|
7497
7542
|
return oe(So);
|
|
7498
7543
|
}
|
|
7499
|
-
function
|
|
7544
|
+
function Rc(t) {
|
|
7500
7545
|
se(Co, Pn(t));
|
|
7501
7546
|
}
|
|
7502
|
-
function
|
|
7547
|
+
function Be() {
|
|
7503
7548
|
return oe(Co);
|
|
7504
7549
|
}
|
|
7505
|
-
function
|
|
7550
|
+
function Dc(t) {
|
|
7506
7551
|
se(To, t);
|
|
7507
7552
|
}
|
|
7508
7553
|
function pe() {
|
|
7509
7554
|
return oe(To);
|
|
7510
7555
|
}
|
|
7511
|
-
function
|
|
7556
|
+
function Mc(t) {
|
|
7512
7557
|
se(Po, t);
|
|
7513
7558
|
}
|
|
7514
7559
|
function de() {
|
|
7515
7560
|
return oe(Po);
|
|
7516
7561
|
}
|
|
7517
|
-
function
|
|
7562
|
+
function Fc(t) {
|
|
7518
7563
|
se(zo, Pn(t));
|
|
7519
7564
|
}
|
|
7520
7565
|
function ec() {
|
|
@@ -7523,22 +7568,22 @@ function ec() {
|
|
|
7523
7568
|
function tc(t) {
|
|
7524
7569
|
se(Ao, t);
|
|
7525
7570
|
}
|
|
7526
|
-
function
|
|
7571
|
+
function We() {
|
|
7527
7572
|
return oe(Ao);
|
|
7528
7573
|
}
|
|
7529
|
-
function
|
|
7574
|
+
function Se(t) {
|
|
7530
7575
|
const e = [t.type];
|
|
7531
7576
|
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("@");
|
|
7532
7577
|
}
|
|
7533
|
-
function Ne(t, e,
|
|
7578
|
+
function Ne(t, e, o, i, r) {
|
|
7534
7579
|
const { watchEffect: s, bind: a } = e;
|
|
7535
|
-
if (s[
|
|
7536
|
-
for (const p of s[
|
|
7580
|
+
if (s[o])
|
|
7581
|
+
for (const p of s[o]) {
|
|
7537
7582
|
const d = ns(p);
|
|
7538
7583
|
t.callFunction(`__watchEffect$${d}__`);
|
|
7539
7584
|
}
|
|
7540
|
-
if (a.triggers[
|
|
7541
|
-
for (const p of a.triggers[
|
|
7585
|
+
if (a.triggers[o])
|
|
7586
|
+
for (const p of a.triggers[o]) {
|
|
7542
7587
|
const d = a.sets[p];
|
|
7543
7588
|
if (!d) {
|
|
7544
7589
|
console.assert(!1);
|
|
@@ -7546,16 +7591,16 @@ function Ne(t, e, i, o, l) {
|
|
|
7546
7591
|
}
|
|
7547
7592
|
let b = null;
|
|
7548
7593
|
for (const u of d)
|
|
7549
|
-
if (
|
|
7594
|
+
if (o === Se(u)) {
|
|
7550
7595
|
if (u.subKeys) {
|
|
7551
7596
|
if (!ne(
|
|
7552
|
-
ve(
|
|
7553
|
-
ve(
|
|
7597
|
+
ve(i, u.subKeys),
|
|
7598
|
+
ve(r, u.subKeys)
|
|
7554
7599
|
)) {
|
|
7555
7600
|
b = u;
|
|
7556
7601
|
break;
|
|
7557
7602
|
}
|
|
7558
|
-
} else if (!ne(
|
|
7603
|
+
} else if (!ne(i, r)) {
|
|
7559
7604
|
b = u;
|
|
7560
7605
|
break;
|
|
7561
7606
|
}
|
|
@@ -7563,7 +7608,7 @@ function Ne(t, e, i, o, l) {
|
|
|
7563
7608
|
if (!b)
|
|
7564
7609
|
continue;
|
|
7565
7610
|
let m;
|
|
7566
|
-
b.subKeys ? m = ve(
|
|
7611
|
+
b.subKeys ? m = ve(i, b.subKeys) : m = i;
|
|
7567
7612
|
for (const u of d)
|
|
7568
7613
|
if (u.subKeys) {
|
|
7569
7614
|
let c;
|
|
@@ -7609,7 +7654,7 @@ function Ne(t, e, i, o, l) {
|
|
|
7609
7654
|
}
|
|
7610
7655
|
}
|
|
7611
7656
|
function nc(t, e) {
|
|
7612
|
-
function
|
|
7657
|
+
function o(m) {
|
|
7613
7658
|
const u = t.pseudoToNative(m), c = [], f = u.split(".");
|
|
7614
7659
|
for (let h = 0; h < f.length; h++) {
|
|
7615
7660
|
const x = f[h].trim();
|
|
@@ -7622,7 +7667,7 @@ function nc(t, e) {
|
|
|
7622
7667
|
}
|
|
7623
7668
|
return t.nativeToPseudo(c);
|
|
7624
7669
|
}
|
|
7625
|
-
function
|
|
7670
|
+
function i(m) {
|
|
7626
7671
|
const u = t.pseudoToNative(m);
|
|
7627
7672
|
try {
|
|
7628
7673
|
const c = JSON.parse(u);
|
|
@@ -7631,7 +7676,7 @@ function nc(t, e) {
|
|
|
7631
7676
|
return t.nativeToPseudo({});
|
|
7632
7677
|
}
|
|
7633
7678
|
}
|
|
7634
|
-
function
|
|
7679
|
+
function r(m) {
|
|
7635
7680
|
const u = t.pseudoToNative(m), c = JSON.stringify(u);
|
|
7636
7681
|
return t.nativeToPseudo(c);
|
|
7637
7682
|
}
|
|
@@ -7663,15 +7708,15 @@ function nc(t, e) {
|
|
|
7663
7708
|
t.setProperty(
|
|
7664
7709
|
e,
|
|
7665
7710
|
"__parseKeysV1__",
|
|
7666
|
-
t.createNativeFunction(
|
|
7711
|
+
t.createNativeFunction(o)
|
|
7667
7712
|
), t.setProperty(
|
|
7668
7713
|
e,
|
|
7669
7714
|
"__parseJsonV1__",
|
|
7670
|
-
t.createNativeFunction(
|
|
7715
|
+
t.createNativeFunction(i)
|
|
7671
7716
|
), t.setProperty(
|
|
7672
7717
|
e,
|
|
7673
7718
|
"__jsonStringifyV1__",
|
|
7674
|
-
t.createNativeFunction(
|
|
7719
|
+
t.createNativeFunction(r)
|
|
7675
7720
|
), t.setProperty(
|
|
7676
7721
|
e,
|
|
7677
7722
|
"__consoleLogV1__",
|
|
@@ -7697,7 +7742,7 @@ function nc(t, e) {
|
|
|
7697
7742
|
const Lo = ls({
|
|
7698
7743
|
baseUrl: "http://localhost/computebase/",
|
|
7699
7744
|
onError: (t) => {
|
|
7700
|
-
const { i18n: e } =
|
|
7745
|
+
const { i18n: e } = ke;
|
|
7701
7746
|
oo(cs(e, t));
|
|
7702
7747
|
}
|
|
7703
7748
|
});
|
|
@@ -7706,8 +7751,8 @@ function ic(t) {
|
|
|
7706
7751
|
return Lo.post("callFunc", t);
|
|
7707
7752
|
}
|
|
7708
7753
|
function oc(t, e) {
|
|
7709
|
-
async function i
|
|
7710
|
-
const b = t.pseudoToNative(
|
|
7754
|
+
async function o(i, r, s, a, p, d) {
|
|
7755
|
+
const b = t.pseudoToNative(i), m = t.pseudoToNative(r), u = t.pseudoToNative(s), c = t.pseudoToNative(a), f = t.pseudoToNative(p);
|
|
7711
7756
|
try {
|
|
7712
7757
|
const h = JSON.stringify(u), { strOutputs: x } = await ic({
|
|
7713
7758
|
spaceId: b,
|
|
@@ -7723,11 +7768,11 @@ function oc(t, e) {
|
|
|
7723
7768
|
t.setProperty(
|
|
7724
7769
|
e,
|
|
7725
7770
|
"__callFuncV1__",
|
|
7726
|
-
t.createAsyncFunction(
|
|
7771
|
+
t.createAsyncFunction(o)
|
|
7727
7772
|
);
|
|
7728
7773
|
}
|
|
7729
|
-
function sc(t, e,
|
|
7730
|
-
function
|
|
7774
|
+
function sc(t, e, o) {
|
|
7775
|
+
function i(u, c, f) {
|
|
7731
7776
|
let h;
|
|
7732
7777
|
const x = e.pseudoToNative(u);
|
|
7733
7778
|
if (x === "elementProp") {
|
|
@@ -7743,7 +7788,7 @@ function sc(t, e, i) {
|
|
|
7743
7788
|
console.assert(!1);
|
|
7744
7789
|
return e.nativeToPseudo(h);
|
|
7745
7790
|
}
|
|
7746
|
-
function
|
|
7791
|
+
function r(u, c, f, h) {
|
|
7747
7792
|
const x = e.pseudoToNative(u);
|
|
7748
7793
|
if (x === "elementProp") {
|
|
7749
7794
|
const g = e.pseudoToNative(c), w = e.pseudoToNative(f), C = e.pseudoToNative(h);
|
|
@@ -7777,9 +7822,9 @@ function sc(t, e, i) {
|
|
|
7777
7822
|
appId: `${f}${t.env}`,
|
|
7778
7823
|
pageId: h
|
|
7779
7824
|
};
|
|
7780
|
-
|
|
7825
|
+
ke.router.replace({ path: x, query: g });
|
|
7781
7826
|
} else t.mode === "preview" && io(
|
|
7782
|
-
|
|
7827
|
+
ke.i18n.global.t(
|
|
7783
7828
|
"x-runtime-lib.msg.takeEffectOnlyAfterReleased"
|
|
7784
7829
|
)
|
|
7785
7830
|
);
|
|
@@ -7797,41 +7842,41 @@ function sc(t, e, i) {
|
|
|
7797
7842
|
});
|
|
7798
7843
|
}
|
|
7799
7844
|
e.setProperty(
|
|
7800
|
-
|
|
7845
|
+
o,
|
|
7801
7846
|
"__getPropV1__",
|
|
7802
|
-
e.createNativeFunction(
|
|
7847
|
+
e.createNativeFunction(i)
|
|
7803
7848
|
), e.setProperty(
|
|
7804
|
-
|
|
7849
|
+
o,
|
|
7805
7850
|
"__setPropV1__",
|
|
7806
|
-
e.createNativeFunction(
|
|
7851
|
+
e.createNativeFunction(r)
|
|
7807
7852
|
), e.setProperty(
|
|
7808
|
-
|
|
7853
|
+
o,
|
|
7809
7854
|
"__callMethodV1__",
|
|
7810
7855
|
e.createAsyncFunction(s)
|
|
7811
7856
|
), e.setProperty(
|
|
7812
|
-
|
|
7857
|
+
o,
|
|
7813
7858
|
"__getStateV1__",
|
|
7814
7859
|
e.createNativeFunction(a)
|
|
7815
7860
|
), e.setProperty(
|
|
7816
|
-
|
|
7861
|
+
o,
|
|
7817
7862
|
"__setStateV1__",
|
|
7818
7863
|
e.createNativeFunction(p)
|
|
7819
7864
|
), e.setProperty(
|
|
7820
|
-
|
|
7865
|
+
o,
|
|
7821
7866
|
"__navigateToV1__",
|
|
7822
7867
|
e.createNativeFunction(d)
|
|
7823
7868
|
), e.setProperty(
|
|
7824
|
-
|
|
7869
|
+
o,
|
|
7825
7870
|
"__openConfirmDlgV1__",
|
|
7826
7871
|
e.createAsyncFunction(b)
|
|
7827
7872
|
), e.setProperty(
|
|
7828
|
-
|
|
7873
|
+
o,
|
|
7829
7874
|
"__openPromptDlgV1__",
|
|
7830
7875
|
e.createAsyncFunction(m)
|
|
7831
7876
|
);
|
|
7832
7877
|
}
|
|
7833
|
-
function rc(t, e,
|
|
7834
|
-
nc(e,
|
|
7878
|
+
function rc(t, e, o) {
|
|
7879
|
+
nc(e, o), oc(e, o), sc(t, e, o);
|
|
7835
7880
|
}
|
|
7836
7881
|
const lc = `
|
|
7837
7882
|
var __env__ = 'dev'
|
|
@@ -7935,8 +7980,8 @@ class pc {
|
|
|
7935
7980
|
type;
|
|
7936
7981
|
eventBus = is();
|
|
7937
7982
|
hooks;
|
|
7938
|
-
constructor(e,
|
|
7939
|
-
this.org = e, this.env =
|
|
7983
|
+
constructor(e, o, i, r, s) {
|
|
7984
|
+
this.org = e, this.env = o, this.mode = i, this.type = r, this.hooks = s;
|
|
7940
7985
|
}
|
|
7941
7986
|
//--------------------------
|
|
7942
7987
|
// 元素属性
|
|
@@ -7945,40 +7990,40 @@ class pc {
|
|
|
7945
7990
|
syncNodes(e) {
|
|
7946
7991
|
if (e) {
|
|
7947
7992
|
this.nodes = { globality: e.view };
|
|
7948
|
-
const
|
|
7949
|
-
this.nodes[
|
|
7993
|
+
const o = (i) => {
|
|
7994
|
+
this.nodes[i.basic.id] = i, i.children?.forEach((r) => o(r));
|
|
7950
7995
|
};
|
|
7951
|
-
e.view.nodes.forEach((
|
|
7996
|
+
e.view.nodes.forEach((i) => o(i));
|
|
7952
7997
|
} else
|
|
7953
7998
|
this.nodes = {};
|
|
7954
7999
|
}
|
|
7955
|
-
getElementPropInner(e,
|
|
7956
|
-
return ve(e,
|
|
8000
|
+
getElementPropInner(e, o) {
|
|
8001
|
+
return ve(e, o);
|
|
7957
8002
|
}
|
|
7958
|
-
getElementProp(e,
|
|
7959
|
-
const
|
|
7960
|
-
if (!
|
|
7961
|
-
console.warn("Sandbox/getElementProp node not found", e,
|
|
8003
|
+
getElementProp(e, o) {
|
|
8004
|
+
const i = this.nodes[e];
|
|
8005
|
+
if (!i) {
|
|
8006
|
+
console.warn("Sandbox/getElementProp node not found", e, o);
|
|
7962
8007
|
return;
|
|
7963
8008
|
}
|
|
7964
|
-
return this.getElementPropInner(
|
|
8009
|
+
return this.getElementPropInner(i, o);
|
|
7965
8010
|
}
|
|
7966
|
-
setElementPropInner(e,
|
|
7967
|
-
const
|
|
7968
|
-
ne(
|
|
8011
|
+
setElementPropInner(e, o, i) {
|
|
8012
|
+
const r = ve(e, o);
|
|
8013
|
+
ne(i, r) || (ro(e, o, i), this.hooks?.onElementPropChange(e.basic.id, o, i, r));
|
|
7969
8014
|
}
|
|
7970
|
-
setElementProp(e,
|
|
7971
|
-
const
|
|
7972
|
-
if (!
|
|
8015
|
+
setElementProp(e, o, i) {
|
|
8016
|
+
const r = this.nodes[e];
|
|
8017
|
+
if (!r) {
|
|
7973
8018
|
console.warn(
|
|
7974
8019
|
"Sandbox/setElementProp node not found",
|
|
7975
8020
|
e,
|
|
7976
|
-
|
|
7977
|
-
|
|
8021
|
+
o,
|
|
8022
|
+
i
|
|
7978
8023
|
);
|
|
7979
8024
|
return;
|
|
7980
8025
|
}
|
|
7981
|
-
this.setElementPropInner(
|
|
8026
|
+
this.setElementPropInner(r, o, i);
|
|
7982
8027
|
}
|
|
7983
8028
|
//--------------------------
|
|
7984
8029
|
// 自定义属性
|
|
@@ -7990,9 +8035,9 @@ class pc {
|
|
|
7990
8035
|
getCustomProp(e) {
|
|
7991
8036
|
return this.customProps[e];
|
|
7992
8037
|
}
|
|
7993
|
-
setCustomProp(e,
|
|
7994
|
-
const
|
|
7995
|
-
ne(
|
|
8038
|
+
setCustomProp(e, o) {
|
|
8039
|
+
const i = this.customProps[e];
|
|
8040
|
+
ne(o, i) || (this.customProps[e] = o, this.hooks?.onCustomPropChange(e, o, i));
|
|
7996
8041
|
}
|
|
7997
8042
|
//--------------------------
|
|
7998
8043
|
// 自定义状态
|
|
@@ -8004,9 +8049,9 @@ class pc {
|
|
|
8004
8049
|
getCustomState(e) {
|
|
8005
8050
|
return this.customStates[e];
|
|
8006
8051
|
}
|
|
8007
|
-
setCustomState(e,
|
|
8008
|
-
const
|
|
8009
|
-
ne(
|
|
8052
|
+
setCustomState(e, o) {
|
|
8053
|
+
const i = this.customStates[e];
|
|
8054
|
+
ne(o, i) || (this.customStates[e] = o, this.hooks?.onCustomStateChange(e, o, i));
|
|
8010
8055
|
}
|
|
8011
8056
|
//--------------------------
|
|
8012
8057
|
// 适配的插槽属性
|
|
@@ -8018,9 +8063,9 @@ class pc {
|
|
|
8018
8063
|
getAdaptSlotProp(e) {
|
|
8019
8064
|
return this.adaptSlotProps[e];
|
|
8020
8065
|
}
|
|
8021
|
-
setAdaptSlotProp(e,
|
|
8022
|
-
const
|
|
8023
|
-
ne(
|
|
8066
|
+
setAdaptSlotProp(e, o) {
|
|
8067
|
+
const i = this.adaptSlotProps[e];
|
|
8068
|
+
ne(o, i) || (this.adaptSlotProps[e] = o, this.hooks?.onAdaptSlotPropChange(e, o, i));
|
|
8024
8069
|
}
|
|
8025
8070
|
//--------------------------
|
|
8026
8071
|
// 解释器
|
|
@@ -8029,8 +8074,8 @@ class pc {
|
|
|
8029
8074
|
createInterpreter(e) {
|
|
8030
8075
|
this.interpreter = new os(
|
|
8031
8076
|
mc,
|
|
8032
|
-
(
|
|
8033
|
-
rc(this,
|
|
8077
|
+
(o, i) => {
|
|
8078
|
+
rc(this, o, i);
|
|
8034
8079
|
}
|
|
8035
8080
|
), this.interpreter.appendCode(e), this.interpreter.run(), this.setVariable("__env__", this.env), this.setVariable("__mode__", this.mode), this.callFunction("__triggerEventV1__", ["elementEvent@startup@globality"]);
|
|
8036
8081
|
}
|
|
@@ -8044,29 +8089,29 @@ class pc {
|
|
|
8044
8089
|
}
|
|
8045
8090
|
return this.interpreter.getProperty(this.interpreter.globalObject, e);
|
|
8046
8091
|
}
|
|
8047
|
-
setVariable(e,
|
|
8092
|
+
setVariable(e, o) {
|
|
8048
8093
|
if (!this.interpreter) {
|
|
8049
8094
|
console.assert(!1, "Sandbox/setVariable invalid interpreter");
|
|
8050
8095
|
return;
|
|
8051
8096
|
}
|
|
8052
|
-
this.interpreter.setProperty(this.interpreter.globalObject, e,
|
|
8097
|
+
this.interpreter.setProperty(this.interpreter.globalObject, e, o);
|
|
8053
8098
|
}
|
|
8054
|
-
callFunction(e,
|
|
8099
|
+
callFunction(e, o) {
|
|
8055
8100
|
if (!this.interpreter) {
|
|
8056
8101
|
console.assert(!1, "Sandbox/callFunction invalid interpreter");
|
|
8057
8102
|
return;
|
|
8058
8103
|
}
|
|
8059
|
-
const
|
|
8060
|
-
if (
|
|
8061
|
-
for (const s of
|
|
8062
|
-
|
|
8063
|
-
const
|
|
8064
|
-
console.log(
|
|
8104
|
+
const i = [];
|
|
8105
|
+
if (o)
|
|
8106
|
+
for (const s of o)
|
|
8107
|
+
i.push(JSON.stringify(s));
|
|
8108
|
+
const r = `${e}(${i.join(", ")});`;
|
|
8109
|
+
console.log(r), this.interpreter.appendCode(r), this.interpreter.run();
|
|
8065
8110
|
}
|
|
8066
8111
|
}
|
|
8067
8112
|
function dc(t) {
|
|
8068
|
-
const e = qu(),
|
|
8069
|
-
if (!(
|
|
8113
|
+
const e = qu(), o = Qu(), i = G(), r = pe(), s = $e(), a = Be(), p = (f, h, x, g) => {
|
|
8114
|
+
if (!(i !== "runtime" && i !== "preview") && (u.callFunction("__triggerEventV1__", [
|
|
8070
8115
|
`elementPropChange@${f}@${h}`,
|
|
8071
8116
|
x,
|
|
8072
8117
|
g ?? x
|
|
@@ -8075,7 +8120,7 @@ function dc(t) {
|
|
|
8075
8120
|
h instanceof Array ? w = h.join(".") : w = h, Ne(
|
|
8076
8121
|
u,
|
|
8077
8122
|
t.value.code.reactivity,
|
|
8078
|
-
|
|
8123
|
+
Se({
|
|
8079
8124
|
type: "elementProp",
|
|
8080
8125
|
nodeId: f,
|
|
8081
8126
|
propKeys: w
|
|
@@ -8085,38 +8130,38 @@ function dc(t) {
|
|
|
8085
8130
|
);
|
|
8086
8131
|
}
|
|
8087
8132
|
}, d = (f, h, x) => {
|
|
8088
|
-
|
|
8133
|
+
i !== "runtime" && i !== "preview" || (u.callFunction("__triggerEventV1__", [
|
|
8089
8134
|
`customPropChange@${f}`,
|
|
8090
8135
|
h,
|
|
8091
8136
|
x ?? h
|
|
8092
8137
|
]), t.value?.code.reactivity && Ne(
|
|
8093
8138
|
u,
|
|
8094
8139
|
t.value.code.reactivity,
|
|
8095
|
-
|
|
8140
|
+
Se({ type: "customProp", propId: f }),
|
|
8096
8141
|
h,
|
|
8097
8142
|
x
|
|
8098
8143
|
));
|
|
8099
8144
|
}, b = (f, h, x) => {
|
|
8100
|
-
|
|
8145
|
+
i !== "runtime" && i !== "preview" || t.value?.code.reactivity && Ne(
|
|
8101
8146
|
u,
|
|
8102
8147
|
t.value.code.reactivity,
|
|
8103
|
-
|
|
8148
|
+
Se({ type: "customState", stateId: f }),
|
|
8104
8149
|
h,
|
|
8105
8150
|
x
|
|
8106
8151
|
);
|
|
8107
8152
|
}, m = (f, h, x) => {
|
|
8108
|
-
|
|
8153
|
+
i !== "runtime" && i !== "preview" || (u.callFunction("__triggerEventV1__", [
|
|
8109
8154
|
`adaptSlotProp@${f}`,
|
|
8110
8155
|
h,
|
|
8111
8156
|
x ?? h
|
|
8112
8157
|
]), t.value?.code.reactivity && Ne(
|
|
8113
8158
|
u,
|
|
8114
8159
|
t.value.code.reactivity,
|
|
8115
|
-
|
|
8160
|
+
Se({ type: "adaptSlotProp", propId: f }),
|
|
8116
8161
|
h,
|
|
8117
8162
|
x
|
|
8118
8163
|
));
|
|
8119
|
-
}, u = new pc(e,
|
|
8164
|
+
}, u = new pc(e, o, i, r, {
|
|
8120
8165
|
onElementPropChange: p,
|
|
8121
8166
|
onCustomPropChange: d,
|
|
8122
8167
|
onCustomStateChange: b,
|
|
@@ -8124,16 +8169,16 @@ function dc(t) {
|
|
|
8124
8169
|
});
|
|
8125
8170
|
tc(u);
|
|
8126
8171
|
const c = () => {
|
|
8127
|
-
|
|
8172
|
+
i !== "runtime" && i !== "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));
|
|
8128
8173
|
};
|
|
8129
8174
|
c(), q(t, () => {
|
|
8130
8175
|
c();
|
|
8131
|
-
}),
|
|
8176
|
+
}), je(() => {
|
|
8132
8177
|
u.destroyInterpreter();
|
|
8133
|
-
}), (
|
|
8178
|
+
}), (i === "runtime" || i === "preview") && q(
|
|
8134
8179
|
s,
|
|
8135
8180
|
(f, h) => {
|
|
8136
|
-
const x =
|
|
8181
|
+
const x = Re(f.width), g = Re(h?.width ?? f.width);
|
|
8137
8182
|
u.callFunction("__triggerEventV1__", [
|
|
8138
8183
|
"elementEvent@screenSizeChange@globality",
|
|
8139
8184
|
x,
|
|
@@ -8141,7 +8186,7 @@ function dc(t) {
|
|
|
8141
8186
|
]);
|
|
8142
8187
|
},
|
|
8143
8188
|
{ immediate: !0 }
|
|
8144
|
-
), (
|
|
8189
|
+
), (i === "runtime" || i === "preview") && q(
|
|
8145
8190
|
a,
|
|
8146
8191
|
(f) => {
|
|
8147
8192
|
u.callFunction("__triggerEventV1__", [
|
|
@@ -8152,13 +8197,13 @@ function dc(t) {
|
|
|
8152
8197
|
{ immediate: !0 }
|
|
8153
8198
|
);
|
|
8154
8199
|
}
|
|
8155
|
-
const fc = (t, e,
|
|
8156
|
-
const
|
|
8157
|
-
return
|
|
8158
|
-
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(s.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + e + (e.split("/").length !==
|
|
8200
|
+
const fc = (t, e, o) => {
|
|
8201
|
+
const i = t[e];
|
|
8202
|
+
return i ? typeof i == "function" ? i() : Promise.resolve(i) : new Promise((r, s) => {
|
|
8203
|
+
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(s.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + e + (e.split("/").length !== o ? ". Note that variables only represent file names one level deep." : ""))));
|
|
8159
8204
|
});
|
|
8160
8205
|
};
|
|
8161
|
-
async function
|
|
8206
|
+
async function Gc(t) {
|
|
8162
8207
|
return (await fc(/* @__PURE__ */ Object.assign({ "./locales/en/index.ts": () => import("./i18n-en.oos62cyh.js"), "./locales/zhHans/index.ts": () => import("./i18n-zhHans.f0b750e1.js") }), `./locales/${t}/index.ts`, 4)).default;
|
|
8163
8208
|
}
|
|
8164
8209
|
export {
|
|
@@ -8172,8 +8217,8 @@ export {
|
|
|
8172
8217
|
wa as btnGroupV1,
|
|
8173
8218
|
Va as btnToggleV1,
|
|
8174
8219
|
rn as btnV1,
|
|
8175
|
-
|
|
8176
|
-
|
|
8220
|
+
Re as calcBreakpoint,
|
|
8221
|
+
ze as cardV1,
|
|
8177
8222
|
Ia as checkboxV1,
|
|
8178
8223
|
an as chipGroupV1,
|
|
8179
8224
|
ln as chipV1,
|
|
@@ -8186,18 +8231,18 @@ export {
|
|
|
8186
8231
|
La as dialogV1,
|
|
8187
8232
|
fa as directionalLightV1,
|
|
8188
8233
|
Zu as duplicateNode,
|
|
8189
|
-
|
|
8190
|
-
|
|
8234
|
+
Lc as duplicateNodes,
|
|
8235
|
+
Ce as elements,
|
|
8191
8236
|
Sc as ensureContext,
|
|
8192
8237
|
Vc as fileInputV1,
|
|
8193
8238
|
cn as flexLayoutEntryV1,
|
|
8194
|
-
|
|
8239
|
+
Ae as flexLayoutV1,
|
|
8195
8240
|
dn as formV1,
|
|
8196
8241
|
T as genId,
|
|
8197
|
-
|
|
8242
|
+
Ie as getBreakpointProp,
|
|
8198
8243
|
ve as getField,
|
|
8199
8244
|
Xn as getIndexOfBreakpoint,
|
|
8200
|
-
|
|
8245
|
+
Ac as getNode,
|
|
8201
8246
|
Ki as getPropDefault,
|
|
8202
8247
|
A as getPropTag,
|
|
8203
8248
|
Ic as getTypeColor,
|
|
@@ -8205,44 +8250,44 @@ export {
|
|
|
8205
8250
|
ha as groupV1,
|
|
8206
8251
|
Da as iconV1,
|
|
8207
8252
|
P as initProps,
|
|
8208
|
-
|
|
8253
|
+
Be as injectDark,
|
|
8209
8254
|
de as injectData,
|
|
8210
8255
|
ec as injectDepends,
|
|
8211
|
-
|
|
8256
|
+
$e as injectDevice,
|
|
8212
8257
|
Qu as injectEnv,
|
|
8213
8258
|
G as injectMode,
|
|
8214
8259
|
qu as injectOrg,
|
|
8215
|
-
|
|
8260
|
+
We as injectSandbox,
|
|
8216
8261
|
pe as injectType,
|
|
8217
8262
|
zn as isPercentStr,
|
|
8218
|
-
|
|
8263
|
+
Ke as isPixelStr,
|
|
8219
8264
|
oa as keyboardControlsV1,
|
|
8220
8265
|
sn as lineChartV1,
|
|
8221
|
-
|
|
8222
|
-
|
|
8266
|
+
Gc as loadLocaleMessageRuntime,
|
|
8267
|
+
Se as makeTriggerId,
|
|
8223
8268
|
sa as mapControlsV1,
|
|
8224
8269
|
Ma as menuV1,
|
|
8225
|
-
|
|
8226
|
-
|
|
8270
|
+
Te as meshBasicMaterialV1,
|
|
8271
|
+
Pe as meshV1,
|
|
8227
8272
|
fn as numberInputV1,
|
|
8228
8273
|
ra as orbitControlsV1,
|
|
8229
8274
|
Ql as orthographicCameraV1,
|
|
8230
8275
|
Yu as pageTypes,
|
|
8231
8276
|
Ga as paginationV1,
|
|
8232
|
-
|
|
8277
|
+
Ot as parsePercentStr,
|
|
8233
8278
|
_c as parsePixelStr,
|
|
8234
8279
|
ea as perspectiveCameraV1,
|
|
8235
8280
|
wo as pkgs,
|
|
8236
8281
|
ba as pointLightV1,
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8282
|
+
Rc as provideDark,
|
|
8283
|
+
Mc as provideData,
|
|
8284
|
+
Fc as provideDepends,
|
|
8285
|
+
Nc as provideDevice,
|
|
8286
|
+
Wc as provideEnv,
|
|
8287
|
+
Ec as provideMode,
|
|
8288
|
+
Bc as provideOrg,
|
|
8244
8289
|
tc as provideSandbox,
|
|
8245
|
-
|
|
8290
|
+
Dc as provideType,
|
|
8246
8291
|
yn as radioGroupV1,
|
|
8247
8292
|
bn as radioV1,
|
|
8248
8293
|
Ka as rangeSliderV1,
|
|
@@ -8252,7 +8297,7 @@ export {
|
|
|
8252
8297
|
Oa as selectV1,
|
|
8253
8298
|
ro as setField,
|
|
8254
8299
|
Xa as sliderV1,
|
|
8255
|
-
|
|
8300
|
+
zc as spawnNode,
|
|
8256
8301
|
nn as sphereGeometryV1,
|
|
8257
8302
|
ya as spotLightV1,
|
|
8258
8303
|
hn as stepperHeaderV1,
|
|
@@ -8268,6 +8313,9 @@ export {
|
|
|
8268
8313
|
Vn as textareaV1,
|
|
8269
8314
|
$n as timelineItemV1,
|
|
8270
8315
|
In as timelineV1,
|
|
8316
|
+
Pc as toEventName,
|
|
8317
|
+
Tc as toMethodName,
|
|
8318
|
+
Cc as toPropertyName,
|
|
8271
8319
|
Ne as triggerReactivity,
|
|
8272
8320
|
$c as types,
|
|
8273
8321
|
dc as useSandbox,
|