x-runtime-lib 0.8.4 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -1
- package/dist/index.js +880 -893
- package/dist/vendor.oswbh038.js +29486 -0
- package/package.json +1 -1
- package/dist/components/core/TresCanvas/index.vue.d.ts +0 -6
- package/dist/components/core/index.d.ts +0 -2
- package/dist/vendor.m1xt45b7.js +0 -67402
package/dist/index.js
CHANGED
|
@@ -1,87 +1,75 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { waitUtil as pi, eventBus as fi, messageInfo as
|
|
5
|
-
import { useI18n as
|
|
6
|
-
import { getErrorMessage as
|
|
7
|
-
const
|
|
8
|
-
__name: "index",
|
|
9
|
-
props: {
|
|
10
|
-
antialias: { type: Boolean },
|
|
11
|
-
clearColor: {}
|
|
12
|
-
},
|
|
13
|
-
setup(t) {
|
|
14
|
-
return (e, i) => (w(), z(n(Qi), {
|
|
15
|
-
antialias: t.antialias,
|
|
16
|
-
"clear-color": t.clearColor
|
|
17
|
-
}, null, 8, ["antialias", "clear-color"]));
|
|
18
|
-
}
|
|
19
|
-
}), ge = {}, C = (t) => {
|
|
1
|
+
import { computed as k, inject as ee, provide as te, readonly as Kt, onBeforeMount as Ji, onUnmounted as Ce, ref as he, watchEffect as oi, watch as le, defineComponent as T, useTemplateRef as si, onMounted as ri, nextTick as li, createElementBlock as ne, openBlock as w, normalizeStyle as q, renderSlot as E, unref as n, createBlock as z, h as ie, resolveComponent as A, withCtx as S, createVNode as H, isRef as G, createSlots as Jt, renderList as Xi, useId as ai, createCommentVNode as ui, withModifiers as Yi, normalizeClass as Zi, toDisplayString as qi } from "vue";
|
|
2
|
+
import { useTheme as Qi } from "vuetify";
|
|
3
|
+
import { c as F, m as eo, a as to, u as no, r as ci, e as di, i as io, b as oo, d as so, f as ro, g as lo, h as ao, j as uo, k as co, I as mo, l as mi } from "./vendor.oswbh038.js";
|
|
4
|
+
import { waitUtil as pi, eventBus as fi, messageInfo as po, messageSuccess as fo, messageWarning as bi, messageError as yi, createAxios as bo, globalObjects as Ee, openConfirmDlg as yo, openPromptDlg as ho, useViewStack as hi } from "x-essential-lib";
|
|
5
|
+
import { useI18n as go } from "vue-i18n";
|
|
6
|
+
import { getErrorMessage as xo } from "x-error-lib";
|
|
7
|
+
const ge = {}, C = (t) => {
|
|
20
8
|
ge[t.key] = t;
|
|
21
9
|
}, be = (t, e) => {
|
|
22
10
|
const i = t.__vccOpts || t;
|
|
23
|
-
for (const [
|
|
24
|
-
i[
|
|
11
|
+
for (const [r, l] of e)
|
|
12
|
+
i[r] = l;
|
|
25
13
|
return i;
|
|
26
14
|
};
|
|
27
15
|
function gi(t) {
|
|
28
16
|
const e = k(() => t.node.legend?.show), i = k(() => t.node.legend?.data);
|
|
29
|
-
function l
|
|
30
|
-
|
|
17
|
+
function r(l) {
|
|
18
|
+
l.legend = {
|
|
31
19
|
show: e.value,
|
|
32
20
|
data: i.value
|
|
33
21
|
};
|
|
34
22
|
}
|
|
35
|
-
return { show: e, data: i, applyLegend:
|
|
23
|
+
return { show: e, data: i, applyLegend: r };
|
|
36
24
|
}
|
|
37
25
|
function xi(t) {
|
|
38
26
|
const e = k(() => t.node.series);
|
|
39
|
-
function i(
|
|
40
|
-
|
|
27
|
+
function i(r) {
|
|
28
|
+
r.series = e.value;
|
|
41
29
|
}
|
|
42
30
|
return { series: e, applySeries: i };
|
|
43
31
|
}
|
|
44
32
|
function vi(t) {
|
|
45
|
-
const e = k(() => t.node.title?.show), i = k(() => t.node.title?.text),
|
|
46
|
-
function
|
|
33
|
+
const e = k(() => t.node.title?.show), i = k(() => t.node.title?.text), r = k(() => t.node.title?.subtext);
|
|
34
|
+
function l(o) {
|
|
47
35
|
o.title = {
|
|
48
36
|
show: e.value,
|
|
49
37
|
text: i.value,
|
|
50
|
-
subtext:
|
|
38
|
+
subtext: r.value
|
|
51
39
|
};
|
|
52
40
|
}
|
|
53
|
-
return { show: e, text: i, subtext:
|
|
41
|
+
return { show: e, text: i, subtext: r, applyTitle: l };
|
|
54
42
|
}
|
|
55
43
|
function ki(t) {
|
|
56
|
-
const e = k(() => t.node.xAxis?.show), i = k(() => t.node.xAxis?.position),
|
|
44
|
+
const e = k(() => t.node.xAxis?.show), i = k(() => t.node.xAxis?.position), r = k(() => t.node.xAxis?.type), l = k(() => t.node.xAxis?.data);
|
|
57
45
|
function o(a) {
|
|
58
46
|
a.xAxis = {
|
|
59
47
|
show: e.value,
|
|
60
48
|
position: i.value,
|
|
61
|
-
type:
|
|
62
|
-
data:
|
|
49
|
+
type: r.value,
|
|
50
|
+
data: l.value
|
|
63
51
|
};
|
|
64
52
|
}
|
|
65
|
-
return { show: e, position: i, type:
|
|
53
|
+
return { show: e, position: i, type: r, data: l, applyXAxis: o };
|
|
66
54
|
}
|
|
67
55
|
function _i(t) {
|
|
68
|
-
const e = k(() => t.node.yAxis?.show), i = k(() => t.node.yAxis?.position),
|
|
56
|
+
const e = k(() => t.node.yAxis?.show), i = k(() => t.node.yAxis?.position), r = k(() => t.node.yAxis?.type), l = k(() => t.node.yAxis?.data);
|
|
69
57
|
function o(a) {
|
|
70
58
|
a.yAxis = {
|
|
71
59
|
show: e.value,
|
|
72
60
|
position: i.value,
|
|
73
|
-
type:
|
|
74
|
-
data:
|
|
61
|
+
type: r.value,
|
|
62
|
+
data: l.value
|
|
75
63
|
};
|
|
76
64
|
}
|
|
77
|
-
return { show: e, position: i, type:
|
|
65
|
+
return { show: e, position: i, type: r, data: l, applyYAxis: o };
|
|
78
66
|
}
|
|
79
67
|
const un = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
80
68
|
function P(t) {
|
|
81
69
|
let e = "";
|
|
82
70
|
for (let i = 0; i < t; i++) {
|
|
83
|
-
const
|
|
84
|
-
e += un[
|
|
71
|
+
const r = Math.floor(Math.random() * un.length);
|
|
72
|
+
e += un[r];
|
|
85
73
|
}
|
|
86
74
|
return e;
|
|
87
75
|
}
|
|
@@ -97,7 +85,7 @@ function Xt(t) {
|
|
|
97
85
|
const e = t.substring(0, t.length - 1), i = parseFloat(e);
|
|
98
86
|
return !isNaN(i);
|
|
99
87
|
}
|
|
100
|
-
function
|
|
88
|
+
function Na(t) {
|
|
101
89
|
if (typeof t != "string" || !t.endsWith("px"))
|
|
102
90
|
return;
|
|
103
91
|
const e = t.substring(0, t.length - 2), i = parseFloat(e);
|
|
@@ -111,7 +99,7 @@ function Ae(t) {
|
|
|
111
99
|
if (!isNaN(i))
|
|
112
100
|
return i;
|
|
113
101
|
}
|
|
114
|
-
const wi = ["xs", "sm", "md", "lg", "xl"],
|
|
102
|
+
const wi = ["xs", "sm", "md", "lg", "xl"], vo = [...wi].reverse();
|
|
115
103
|
function Vi(t) {
|
|
116
104
|
return t < 600 ? "xs" : t < 960 ? "sm" : t < 1280 ? "md" : t < 1920 ? "lg" : "xl";
|
|
117
105
|
}
|
|
@@ -120,15 +108,15 @@ function cn(t) {
|
|
|
120
108
|
}
|
|
121
109
|
function ye(t, e) {
|
|
122
110
|
let i;
|
|
123
|
-
for (const
|
|
124
|
-
if (cn(
|
|
111
|
+
for (const r of vo) {
|
|
112
|
+
if (cn(r) < cn(t))
|
|
125
113
|
break;
|
|
126
|
-
e[
|
|
114
|
+
e[r] && (i = e[r]);
|
|
127
115
|
}
|
|
128
116
|
return i;
|
|
129
117
|
}
|
|
130
|
-
const
|
|
131
|
-
function
|
|
118
|
+
const Ra = ["string", "number", "boolean", "array", "object"];
|
|
119
|
+
function Da(t) {
|
|
132
120
|
switch (t) {
|
|
133
121
|
case "string":
|
|
134
122
|
return "#5ba58c";
|
|
@@ -142,7 +130,7 @@ function Fa(t) {
|
|
|
142
130
|
return "#80a55b";
|
|
143
131
|
}
|
|
144
132
|
}
|
|
145
|
-
function
|
|
133
|
+
function Ea(t, e, i, r, l) {
|
|
146
134
|
let o = t;
|
|
147
135
|
for (let c = 0; c < e.length; c++)
|
|
148
136
|
if (o = o.children[e[c]], !o) {
|
|
@@ -150,27 +138,27 @@ function Ma(t, e, i, l, r) {
|
|
|
150
138
|
return;
|
|
151
139
|
}
|
|
152
140
|
let a = o.children[i];
|
|
153
|
-
a ? a.dataSeq !==
|
|
154
|
-
dataSeq:
|
|
155
|
-
data: F(
|
|
141
|
+
a ? a.dataSeq !== r && (a = {
|
|
142
|
+
dataSeq: r,
|
|
143
|
+
data: F(l),
|
|
156
144
|
children: {}
|
|
157
145
|
}) : (a = {
|
|
158
|
-
dataSeq:
|
|
159
|
-
data: F(
|
|
146
|
+
dataSeq: r,
|
|
147
|
+
data: F(l),
|
|
160
148
|
children: {}
|
|
161
149
|
}, o.children[i] = a);
|
|
162
150
|
}
|
|
163
|
-
const
|
|
164
|
-
function
|
|
151
|
+
const ko = ["common", "scene"], _o = ["common", "scene"];
|
|
152
|
+
function wo() {
|
|
165
153
|
return eo();
|
|
166
154
|
}
|
|
167
155
|
function L(t, e) {
|
|
168
156
|
if (t === "page") {
|
|
169
|
-
if (!
|
|
157
|
+
if (!ko.includes(e)) {
|
|
170
158
|
console.error(`get prop tag failed type=${t} subtype=${e}`);
|
|
171
159
|
return;
|
|
172
160
|
}
|
|
173
|
-
} else if (t === "comp" && !
|
|
161
|
+
} else if (t === "comp" && !_o.includes(e)) {
|
|
174
162
|
console.error(`get prop tag failed type=${t} subtype=${e}`);
|
|
175
163
|
return;
|
|
176
164
|
}
|
|
@@ -185,20 +173,20 @@ function dn(t, e) {
|
|
|
185
173
|
}
|
|
186
174
|
}
|
|
187
175
|
function W(t, e) {
|
|
188
|
-
function i(
|
|
189
|
-
if (
|
|
190
|
-
if (
|
|
176
|
+
function i(r, l) {
|
|
177
|
+
if (l.ui) {
|
|
178
|
+
if (l.ui === "strInput" && l.static)
|
|
191
179
|
return;
|
|
192
|
-
l
|
|
180
|
+
r[l.key] = dn(l);
|
|
193
181
|
} else
|
|
194
|
-
|
|
195
|
-
l
|
|
182
|
+
l.array ? r[l.key] = dn(l) : l.children.forEach((o) => {
|
|
183
|
+
r[l.key] || (r[l.key] = {}), i(r[l.key], o);
|
|
196
184
|
});
|
|
197
185
|
}
|
|
198
|
-
e.forEach((
|
|
186
|
+
e.forEach((r) => i(t, r));
|
|
199
187
|
}
|
|
200
|
-
function
|
|
201
|
-
const o = `type=${t} subtype=${e} version=${i} ref=${
|
|
188
|
+
function Fa(t, e, i, r, l) {
|
|
189
|
+
const o = `type=${t} subtype=${e} version=${i} ref=${r} keyOrRefid=${l}`, a = L(t, e);
|
|
202
190
|
if (!a) {
|
|
203
191
|
console.error(`spawnNode prop tag not found, ${o}`);
|
|
204
192
|
return;
|
|
@@ -208,8 +196,8 @@ function Ha(t, e, i, l, r) {
|
|
|
208
196
|
console.error(`spawnNode pkg not found version, ${o}`);
|
|
209
197
|
return;
|
|
210
198
|
}
|
|
211
|
-
if (
|
|
212
|
-
const p = c.refKey, b =
|
|
199
|
+
if (r) {
|
|
200
|
+
const p = c.refKey, b = l;
|
|
213
201
|
if (!c.elements.has(p)) {
|
|
214
202
|
console.error(`spawnNode [ref] element not found in pkg, ${o}`);
|
|
215
203
|
return;
|
|
@@ -234,7 +222,7 @@ function Ha(t, e, i, l, r) {
|
|
|
234
222
|
comp: b
|
|
235
223
|
}, m;
|
|
236
224
|
} else {
|
|
237
|
-
const p =
|
|
225
|
+
const p = l;
|
|
238
226
|
if (!c.elements.has(p)) {
|
|
239
227
|
console.error(`spawnNode [key] element not found in pkg, ${o}`);
|
|
240
228
|
return;
|
|
@@ -262,121 +250,121 @@ function Ha(t, e, i, l, r) {
|
|
|
262
250
|
}
|
|
263
251
|
}
|
|
264
252
|
}
|
|
265
|
-
function
|
|
266
|
-
function i(
|
|
267
|
-
if (
|
|
268
|
-
return
|
|
269
|
-
if (
|
|
270
|
-
for (let
|
|
271
|
-
const o = i(
|
|
253
|
+
function Ma(t, e) {
|
|
254
|
+
function i(r) {
|
|
255
|
+
if (r.basic.id === e)
|
|
256
|
+
return r;
|
|
257
|
+
if (r.children)
|
|
258
|
+
for (let l = 0; l < r.children.length; l++) {
|
|
259
|
+
const o = i(r.children[l]);
|
|
272
260
|
if (o)
|
|
273
261
|
return o;
|
|
274
262
|
}
|
|
275
263
|
}
|
|
276
|
-
for (let
|
|
277
|
-
const
|
|
278
|
-
if (
|
|
279
|
-
return
|
|
264
|
+
for (let r = 0; r < t.length; r++) {
|
|
265
|
+
const l = i(t[r]);
|
|
266
|
+
if (l)
|
|
267
|
+
return l;
|
|
280
268
|
}
|
|
281
269
|
}
|
|
282
|
-
function
|
|
283
|
-
function e(
|
|
284
|
-
|
|
270
|
+
function Vo(t) {
|
|
271
|
+
function e(r) {
|
|
272
|
+
r.basic.id = P(16), r.children?.forEach((l) => e(l));
|
|
285
273
|
}
|
|
286
274
|
const i = F(t);
|
|
287
275
|
return e(i), i;
|
|
288
276
|
}
|
|
289
|
-
function
|
|
277
|
+
function Ha(t) {
|
|
290
278
|
const e = [];
|
|
291
279
|
return t.forEach((i) => {
|
|
292
|
-
e.push(
|
|
280
|
+
e.push(Vo(i));
|
|
293
281
|
}), e;
|
|
294
282
|
}
|
|
295
283
|
const $i = "runtimeOrg", Ii = "runtimeEnv", Ci = "runtimeMode", Si = "runtimeDevice", Ti = "runtimeDark", zi = "runtimeType", Ai = "runtimeData", Pi = "runtimeDepends", Wi = "runtimeSandbox";
|
|
296
|
-
function
|
|
284
|
+
function ja(t) {
|
|
297
285
|
te($i, t);
|
|
298
286
|
}
|
|
299
|
-
function
|
|
287
|
+
function $o() {
|
|
300
288
|
return ee($i);
|
|
301
289
|
}
|
|
302
|
-
function
|
|
290
|
+
function Ga(t) {
|
|
303
291
|
te(Ii, t);
|
|
304
292
|
}
|
|
305
|
-
function
|
|
293
|
+
function Io() {
|
|
306
294
|
return ee(Ii);
|
|
307
295
|
}
|
|
308
|
-
function
|
|
296
|
+
function Ua(t) {
|
|
309
297
|
te(Ci, t);
|
|
310
298
|
}
|
|
311
299
|
function Q() {
|
|
312
300
|
return ee(Ci);
|
|
313
301
|
}
|
|
314
|
-
function
|
|
302
|
+
function Oa(t) {
|
|
315
303
|
te(Si, Kt(t));
|
|
316
304
|
}
|
|
317
305
|
function ke() {
|
|
318
306
|
return ee(Si);
|
|
319
307
|
}
|
|
320
|
-
function
|
|
308
|
+
function Ka(t) {
|
|
321
309
|
te(Ti, Kt(t));
|
|
322
310
|
}
|
|
323
311
|
function Te() {
|
|
324
312
|
return ee(Ti);
|
|
325
313
|
}
|
|
326
|
-
function
|
|
314
|
+
function Ja(t) {
|
|
327
315
|
te(zi, t);
|
|
328
316
|
}
|
|
329
317
|
function oe() {
|
|
330
318
|
return ee(zi);
|
|
331
319
|
}
|
|
332
|
-
function
|
|
320
|
+
function Xa(t) {
|
|
333
321
|
te(Ai, t);
|
|
334
322
|
}
|
|
335
323
|
function se() {
|
|
336
324
|
return ee(Ai);
|
|
337
325
|
}
|
|
338
|
-
function
|
|
326
|
+
function Ya(t) {
|
|
339
327
|
te(Pi, Kt(t));
|
|
340
328
|
}
|
|
341
|
-
function
|
|
329
|
+
function Co() {
|
|
342
330
|
return ee(Pi);
|
|
343
331
|
}
|
|
344
|
-
function
|
|
332
|
+
function So(t) {
|
|
345
333
|
te(Wi, t);
|
|
346
334
|
}
|
|
347
335
|
function _e() {
|
|
348
336
|
return ee(Wi);
|
|
349
337
|
}
|
|
350
338
|
function U(t) {
|
|
351
|
-
const { computedThemes: e } =
|
|
339
|
+
const { computedThemes: e } = Qi(), i = Te(), r = k(() => t.value?.mode), l = k(() => {
|
|
352
340
|
const c = t.value?.theme;
|
|
353
341
|
return c ? c === "background0" ? i.value ? "#2e2e2e" : "#bdbdbd" : c === "background1" ? i.value ? "#272727" : "#eeeeee" : c === "background2" ? i.value ? "#1e1e1e" : "#ffffff" : (i.value ? e.value.dark : e.value.light).colors[c] : void 0;
|
|
354
342
|
}), o = k(() => i.value ? t.value.custom?.dark : t.value.custom?.light);
|
|
355
|
-
return { color: k(() =>
|
|
343
|
+
return { color: k(() => r.value === "theme" ? l.value : r.value === "custom" ? o.value : "") };
|
|
356
344
|
}
|
|
357
345
|
function Yt(t) {
|
|
358
|
-
const e = k(() => t.node.border?.style), i = k(() => t.node.border?.width),
|
|
346
|
+
const e = k(() => t.node.border?.style), i = k(() => t.node.border?.width), r = k(() => t.node.border?.color), { color: l } = U(r), o = k(() => t.node.border?.roundRadius?.tl), a = k(() => t.node.border?.roundRadius?.tr), c = k(() => t.node.border?.roundRadius?.bl), p = k(() => t.node.border?.roundRadius?.br);
|
|
359
347
|
function b(u) {
|
|
360
|
-
e.value && (u.borderStyle = e.value), i.value && (u.borderWidth = i.value),
|
|
348
|
+
e.value && (u.borderStyle = e.value), i.value && (u.borderWidth = i.value), l.value && (u.borderColor = l.value), o.value && (u.borderTopLeftRadius = o.value), a.value && (u.borderTopRightRadius = a.value), c.value && (u.borderBottomLeftRadius = c.value), p.value && (u.borderBottomRightRadius = p.value);
|
|
361
349
|
}
|
|
362
|
-
return { borderStyle: e, borderWidth: i, borderColor:
|
|
350
|
+
return { borderStyle: e, borderWidth: i, borderColor: l, applyBorder: b };
|
|
363
351
|
}
|
|
364
352
|
function Zt(t) {
|
|
365
|
-
const e = k(() => t.node.margin?.top), i = k(() => t.node.margin?.left),
|
|
353
|
+
const e = k(() => t.node.margin?.top), i = k(() => t.node.margin?.left), r = k(() => t.node.margin?.bottom), l = k(() => t.node.margin?.right);
|
|
366
354
|
function o(a) {
|
|
367
|
-
e.value && (a.marginTop = e.value), i.value && (a.marginLeft = i.value),
|
|
355
|
+
e.value && (a.marginTop = e.value), i.value && (a.marginLeft = i.value), r.value && (a.marginBottom = r.value), l.value && (a.marginRight = l.value);
|
|
368
356
|
}
|
|
369
|
-
return { marginTop: e, marginLeft: i, marginBottom:
|
|
357
|
+
return { marginTop: e, marginLeft: i, marginBottom: r, marginRight: l, applyMargin: o };
|
|
370
358
|
}
|
|
371
359
|
function qt(t) {
|
|
372
|
-
const e = k(() => t.node.padding?.top), i = k(() => t.node.padding?.left),
|
|
360
|
+
const e = k(() => t.node.padding?.top), i = k(() => t.node.padding?.left), r = k(() => t.node.padding?.bottom), l = k(() => t.node.padding?.right);
|
|
373
361
|
function o(a) {
|
|
374
|
-
e.value && (a.paddingTop = e.value), i.value && (a.paddingLeft = i.value),
|
|
362
|
+
e.value && (a.paddingTop = e.value), i.value && (a.paddingLeft = i.value), r.value && (a.paddingBottom = r.value), l.value && (a.paddingRight = l.value);
|
|
375
363
|
}
|
|
376
|
-
return { paddingTop: e, paddingLeft: i, paddingBottom:
|
|
364
|
+
return { paddingTop: e, paddingLeft: i, paddingBottom: r, paddingRight: l, applyPadding: o };
|
|
377
365
|
}
|
|
378
366
|
function ue(t) {
|
|
379
|
-
const e = Q(), i = ke(),
|
|
367
|
+
const e = Q(), i = ke(), r = k(() => t.node.size?.width), l = k(() => t.node.size?.minWidth), o = k(() => t.node.size?.maxWidth), a = k(() => {
|
|
380
368
|
if (t.outer && e === "editor") {
|
|
381
369
|
const u = Ae(t.node.size?.height);
|
|
382
370
|
if (u)
|
|
@@ -399,145 +387,145 @@ function ue(t) {
|
|
|
399
387
|
return t.node.size?.maxHeight;
|
|
400
388
|
});
|
|
401
389
|
function b(u) {
|
|
402
|
-
|
|
390
|
+
r.value && (u.width = r.value), l.value && (u.minWidth = l.value), o.value && (u.maxWidth = o.value), a.value && (u.height = a.value), c.value && (u.minHeight = c.value), p.value && (u.maxHeight = p.value);
|
|
403
391
|
}
|
|
404
|
-
return { width:
|
|
392
|
+
return { width: r, minWidth: l, maxWidth: o, height: a, minHeight: c, maxHeight: p, applySize: b };
|
|
405
393
|
}
|
|
406
394
|
function Li(t, e, i) {
|
|
407
|
-
const
|
|
395
|
+
const r = k(() => e.node.basic.id), l = k(() => `callMethod@${r.value}`);
|
|
408
396
|
Ji(() => {
|
|
409
|
-
t.eventBus?.on(
|
|
397
|
+
t.eventBus?.on(l.value, i);
|
|
410
398
|
}), Ce(() => {
|
|
411
|
-
t.eventBus?.off(
|
|
399
|
+
t.eventBus?.off(l.value, i);
|
|
412
400
|
});
|
|
413
401
|
}
|
|
414
|
-
const
|
|
415
|
-
let
|
|
416
|
-
if (!
|
|
402
|
+
const To = (t, e, i) => {
|
|
403
|
+
let r = t;
|
|
404
|
+
if (!r) {
|
|
417
405
|
console.assert(!1);
|
|
418
406
|
return;
|
|
419
407
|
}
|
|
420
|
-
for (const
|
|
421
|
-
if (
|
|
408
|
+
for (const l of e)
|
|
409
|
+
if (r = r[l], !r)
|
|
422
410
|
return;
|
|
423
411
|
if (i) {
|
|
424
|
-
if (typeof
|
|
425
|
-
return JSON.parse(
|
|
412
|
+
if (typeof r == "string")
|
|
413
|
+
return JSON.parse(r);
|
|
426
414
|
console.assert(!1);
|
|
427
415
|
} else
|
|
428
|
-
return
|
|
429
|
-
},
|
|
430
|
-
let
|
|
431
|
-
if (!
|
|
416
|
+
return r;
|
|
417
|
+
}, zo = (t, e, i, r) => {
|
|
418
|
+
let l = t;
|
|
419
|
+
if (!l) {
|
|
432
420
|
console.assert(!1);
|
|
433
421
|
return;
|
|
434
422
|
}
|
|
435
423
|
const o = e.length;
|
|
436
424
|
for (let a = 0; a < o; a++) {
|
|
437
425
|
const c = e[a];
|
|
438
|
-
a === o - 1 ?
|
|
426
|
+
a === o - 1 ? r ? typeof i == "object" ? l[c] = JSON.stringify(i, null, 2) : console.assert(!1) : l[c] = i : (l = l[c], l || (l = {}));
|
|
439
427
|
}
|
|
440
428
|
};
|
|
441
429
|
function s(t, e, i) {
|
|
442
|
-
const
|
|
430
|
+
const r = Q(), l = _e(), o = he();
|
|
443
431
|
return oi(() => {
|
|
444
|
-
let a =
|
|
445
|
-
|
|
446
|
-
}),
|
|
447
|
-
|
|
432
|
+
let a = To(t.node, e, i);
|
|
433
|
+
r === "editor" && e[e.length - 1] === "readonly" && (a = !0), o.value = a;
|
|
434
|
+
}), le(o, (a, c) => {
|
|
435
|
+
zo(t.node, e, o.value, i), l.eventBus?.emit("propChange", { keys: e, newValue: a, oldValue: c });
|
|
448
436
|
}), { prop: o };
|
|
449
437
|
}
|
|
450
438
|
function R() {
|
|
451
439
|
const t = Te();
|
|
452
440
|
return { theme: k(() => t.value ? "dark" : "light") };
|
|
453
441
|
}
|
|
454
|
-
const
|
|
455
|
-
color:
|
|
456
|
-
backgroundColor:
|
|
457
|
-
textStyle:
|
|
458
|
-
title:
|
|
459
|
-
line:
|
|
460
|
-
radar:
|
|
461
|
-
bar:
|
|
462
|
-
pie:
|
|
463
|
-
scatter:
|
|
464
|
-
boxplot:
|
|
465
|
-
parallel:
|
|
466
|
-
sankey:
|
|
467
|
-
funnel:
|
|
468
|
-
gauge:
|
|
469
|
-
candlestick:
|
|
470
|
-
graph:
|
|
471
|
-
map:
|
|
472
|
-
geo:
|
|
473
|
-
categoryAxis:
|
|
474
|
-
valueAxis:
|
|
475
|
-
logAxis:
|
|
476
|
-
timeAxis:
|
|
477
|
-
toolbox:
|
|
478
|
-
legend:
|
|
479
|
-
tooltip:
|
|
480
|
-
timeline:
|
|
481
|
-
visualMap:
|
|
482
|
-
dataZoom:
|
|
483
|
-
markPoint:
|
|
484
|
-
},
|
|
485
|
-
color:
|
|
486
|
-
backgroundColor:
|
|
487
|
-
textStyle:
|
|
488
|
-
title:
|
|
489
|
-
line:
|
|
490
|
-
radar:
|
|
491
|
-
bar:
|
|
492
|
-
pie:
|
|
493
|
-
scatter:
|
|
494
|
-
boxplot:
|
|
495
|
-
parallel:
|
|
496
|
-
sankey:
|
|
497
|
-
funnel:
|
|
498
|
-
gauge:
|
|
499
|
-
candlestick:
|
|
500
|
-
graph:
|
|
501
|
-
map:
|
|
502
|
-
geo:
|
|
503
|
-
categoryAxis:
|
|
504
|
-
valueAxis:
|
|
505
|
-
logAxis:
|
|
506
|
-
timeAxis:
|
|
507
|
-
toolbox:
|
|
508
|
-
legend:
|
|
509
|
-
tooltip:
|
|
510
|
-
timeline:
|
|
511
|
-
visualMap:
|
|
512
|
-
dataZoom:
|
|
513
|
-
markPoint:
|
|
442
|
+
const Ao = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], Po = "#242424", Wo = {}, Lo = { textStyle: { color: "#eeeeee" }, subtextStyle: { color: "#aaaaaa" } }, Bo = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, No = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, Ro = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, Do = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Eo = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Fo = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Mo = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Ho = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, jo = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Go = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, Uo = { itemStyle: { color: "#fd1050", color0: "#0cf49b", borderColor: "#fd1050", borderColor0: "#0cf49b", borderWidth: 1 } }, Oo = { 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" } }, Ko = { 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)" } } }, Jo = { 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)" } } }, Xo = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Yo = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Zo = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, qo = { axisLine: { show: !0, lineStyle: { color: "#eeeeee" } }, axisTick: { show: !0, lineStyle: { color: "#eeeeee" } }, axisLabel: { show: !0, color: "#eeeeee" }, splitLine: { show: !0, lineStyle: { color: ["#aaaaaa"] } }, splitArea: { show: !1, areaStyle: { color: ["#eeeeee"] } } }, Qo = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, es = { textStyle: { color: "#eeeeee" } }, ts = { axisPointer: { lineStyle: { color: "#eeeeee", width: "1" }, crossStyle: { color: "#eeeeee", width: "1" } } }, ns = { lineStyle: { color: "#eeeeee", width: 1 }, itemStyle: { color: "#dd6b66", borderWidth: 1 }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: 0.5 }, checkpointStyle: { color: "#e43c59", borderColor: "#c23531" }, label: { color: "#eeeeee" }, emphasis: { itemStyle: { color: "#a9334c" }, controlStyle: { color: "#eeeeee", borderColor: "#eeeeee", borderWidth: 0.5 }, label: { color: "#eeeeee" } } }, is = { color: ["#bf444c", "#d88273", "#f6efa6"] }, os = { 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" } }, ss = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, rs = {
|
|
443
|
+
color: Ao,
|
|
444
|
+
backgroundColor: Po,
|
|
445
|
+
textStyle: Wo,
|
|
446
|
+
title: Lo,
|
|
447
|
+
line: Bo,
|
|
448
|
+
radar: No,
|
|
449
|
+
bar: Ro,
|
|
450
|
+
pie: Do,
|
|
451
|
+
scatter: Eo,
|
|
452
|
+
boxplot: Fo,
|
|
453
|
+
parallel: Mo,
|
|
454
|
+
sankey: Ho,
|
|
455
|
+
funnel: jo,
|
|
456
|
+
gauge: Go,
|
|
457
|
+
candlestick: Uo,
|
|
458
|
+
graph: Oo,
|
|
459
|
+
map: Ko,
|
|
460
|
+
geo: Jo,
|
|
461
|
+
categoryAxis: Xo,
|
|
462
|
+
valueAxis: Yo,
|
|
463
|
+
logAxis: Zo,
|
|
464
|
+
timeAxis: qo,
|
|
465
|
+
toolbox: Qo,
|
|
466
|
+
legend: es,
|
|
467
|
+
tooltip: ts,
|
|
468
|
+
timeline: ns,
|
|
469
|
+
visualMap: is,
|
|
470
|
+
dataZoom: os,
|
|
471
|
+
markPoint: ss
|
|
472
|
+
}, ls = ["#dd6b66", "#759aa0", "#e69d87", "#8dc1a9", "#ea7e53", "#eedd78", "#73a373", "#73b9bc", "#7289ab", "#91ca8c", "#f49f42"], as = "#f5f5f5", us = {}, cs = { textStyle: { color: "#464646" }, subtextStyle: { color: "#6e7079" } }, ds = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, ms = { itemStyle: { borderWidth: 1 }, lineStyle: { width: 2 }, symbolSize: 4, symbol: "circle", smooth: !1 }, ps = { itemStyle: { barBorderWidth: 0, barBorderColor: "#ccc" } }, fs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, bs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, ys = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, hs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, gs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, xs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, vs = { itemStyle: { borderWidth: 0, borderColor: "#ccc" } }, ks = { itemStyle: { color: "#eb5454", color0: "#47b262", borderColor: "#eb5454", borderColor0: "#47b262", borderWidth: 1 } }, _s = { 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" } }, ws = { 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)" } } }, Vs = { 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)" } } }, $s = { 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"] } } }, Is = { 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"] } } }, Cs = { 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"] } } }, Ss = { 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"] } } }, Ts = { iconStyle: { borderColor: "#999" }, emphasis: { iconStyle: { borderColor: "#666" } } }, zs = { textStyle: { color: "#333333" } }, As = { axisPointer: { lineStyle: { color: "#cccccc", width: "1" }, crossStyle: { color: "#cccccc", width: "1" } } }, Ps = { 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" } } }, Ws = { color: ["#bf444c", "#d88273", "#f6efa6"] }, Ls = { 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" } }, Bs = { label: { color: "#eee" }, emphasis: { label: { color: "#eee" } } }, Ns = {
|
|
473
|
+
color: ls,
|
|
474
|
+
backgroundColor: as,
|
|
475
|
+
textStyle: us,
|
|
476
|
+
title: cs,
|
|
477
|
+
line: ds,
|
|
478
|
+
radar: ms,
|
|
479
|
+
bar: ps,
|
|
480
|
+
pie: fs,
|
|
481
|
+
scatter: bs,
|
|
482
|
+
boxplot: ys,
|
|
483
|
+
parallel: hs,
|
|
484
|
+
sankey: gs,
|
|
485
|
+
funnel: xs,
|
|
486
|
+
gauge: vs,
|
|
487
|
+
candlestick: ks,
|
|
488
|
+
graph: _s,
|
|
489
|
+
map: ws,
|
|
490
|
+
geo: Vs,
|
|
491
|
+
categoryAxis: $s,
|
|
492
|
+
valueAxis: Is,
|
|
493
|
+
logAxis: Cs,
|
|
494
|
+
timeAxis: Ss,
|
|
495
|
+
toolbox: Ts,
|
|
496
|
+
legend: zs,
|
|
497
|
+
tooltip: As,
|
|
498
|
+
timeline: Ps,
|
|
499
|
+
visualMap: Ws,
|
|
500
|
+
dataZoom: Ls,
|
|
501
|
+
markPoint: Bs
|
|
514
502
|
};
|
|
515
503
|
no([
|
|
516
504
|
io,
|
|
517
505
|
oo,
|
|
518
506
|
so,
|
|
519
|
-
lo,
|
|
520
507
|
ro,
|
|
508
|
+
lo,
|
|
521
509
|
ao,
|
|
522
510
|
uo,
|
|
523
511
|
co
|
|
524
512
|
]);
|
|
525
513
|
ci("dark", rs);
|
|
526
|
-
ci("light",
|
|
527
|
-
const
|
|
514
|
+
ci("light", Ns);
|
|
515
|
+
const Rs = /* @__PURE__ */ T({
|
|
528
516
|
__name: "index",
|
|
529
517
|
props: {
|
|
530
518
|
node: {},
|
|
531
519
|
outer: { type: Boolean }
|
|
532
520
|
},
|
|
533
521
|
setup(t) {
|
|
534
|
-
const e = t, i = ke(),
|
|
522
|
+
const e = t, i = ke(), r = Te(), l = oe(), o = se(), { width: a, minWidth: c, maxWidth: p, height: b, minHeight: u, maxHeight: d, applySize: m } = ue(e), { applyTitle: f } = vi(e), { applyXAxis: h } = ki(e), { applyYAxis: x } = _i(e), { applyLegend: g } = gi(e), { applySeries: _ } = xi(e), v = k(() => {
|
|
535
523
|
const V = {}, M = o.value.type;
|
|
536
|
-
return
|
|
524
|
+
return l === "page" ? M === "common" ? m(V) : console.assert(!1) : l === "comp" && M === "common" ? m(V) : console.assert(!1), V;
|
|
537
525
|
}), I = si("chart");
|
|
538
526
|
let $;
|
|
539
527
|
const N = () => {
|
|
540
|
-
$?.dispose(), $ = di.init(I.value,
|
|
528
|
+
$?.dispose(), $ = di.init(I.value, r.value ? "dark" : "light");
|
|
541
529
|
const V = {};
|
|
542
530
|
$.setOption(V);
|
|
543
531
|
}, D = () => {
|
|
@@ -546,11 +534,11 @@ const Ds = /* @__PURE__ */ S({
|
|
|
546
534
|
const V = {};
|
|
547
535
|
f(V), h(V), x(V), g(V), _(V), $?.setOption(V, !0);
|
|
548
536
|
};
|
|
549
|
-
return
|
|
537
|
+
return ri(async () => {
|
|
550
538
|
window.addEventListener("resize", D, !1), await pi(() => !!I.value), N(), B();
|
|
551
539
|
}), Ce(() => {
|
|
552
540
|
window.removeEventListener("resize", D, !1), $?.dispose();
|
|
553
|
-
}),
|
|
541
|
+
}), le(
|
|
554
542
|
[
|
|
555
543
|
() => i.value.width,
|
|
556
544
|
() => i.value.height,
|
|
@@ -562,11 +550,11 @@ const Ds = /* @__PURE__ */ S({
|
|
|
562
550
|
d
|
|
563
551
|
],
|
|
564
552
|
async () => {
|
|
565
|
-
await
|
|
553
|
+
await li(), D();
|
|
566
554
|
}
|
|
567
|
-
),
|
|
555
|
+
), le([r], () => {
|
|
568
556
|
N(), B();
|
|
569
|
-
}),
|
|
557
|
+
}), le(
|
|
570
558
|
[e],
|
|
571
559
|
() => {
|
|
572
560
|
B();
|
|
@@ -577,20 +565,20 @@ const Ds = /* @__PURE__ */ S({
|
|
|
577
565
|
style: q(v.value)
|
|
578
566
|
}, null, 4));
|
|
579
567
|
}
|
|
580
|
-
}),
|
|
568
|
+
}), Ds = /* @__PURE__ */ T({
|
|
581
569
|
__name: "index",
|
|
582
570
|
props: {
|
|
583
571
|
node: {},
|
|
584
572
|
outer: { type: Boolean }
|
|
585
573
|
},
|
|
586
574
|
setup(t) {
|
|
587
|
-
const e = t, i = ke(),
|
|
575
|
+
const e = t, i = ke(), r = Te(), l = oe(), o = se(), { width: a, minWidth: c, maxWidth: p, height: b, minHeight: u, maxHeight: d, applySize: m } = ue(e), { applyTitle: f } = vi(e), { applyXAxis: h } = ki(e), { applyYAxis: x } = _i(e), { applyLegend: g } = gi(e), { applySeries: _ } = xi(e), v = k(() => {
|
|
588
576
|
const V = {}, M = o.value.type;
|
|
589
|
-
return
|
|
577
|
+
return l === "page" ? M === "common" ? m(V) : console.assert(!1) : l === "comp" && M === "common" ? m(V) : console.assert(!1), V;
|
|
590
578
|
}), I = si("chart");
|
|
591
579
|
let $;
|
|
592
580
|
const N = () => {
|
|
593
|
-
$?.dispose(), $ = di.init(I.value,
|
|
581
|
+
$?.dispose(), $ = di.init(I.value, r.value ? "dark" : "light");
|
|
594
582
|
const V = {};
|
|
595
583
|
$.setOption(V);
|
|
596
584
|
}, D = () => {
|
|
@@ -599,11 +587,11 @@ const Ds = /* @__PURE__ */ S({
|
|
|
599
587
|
const V = {};
|
|
600
588
|
f(V), h(V), x(V), g(V), _(V), $?.setOption(V, !0);
|
|
601
589
|
};
|
|
602
|
-
return
|
|
590
|
+
return ri(async () => {
|
|
603
591
|
window.addEventListener("resize", D, !1), await pi(() => !!I.value), N(), B();
|
|
604
592
|
}), Ce(() => {
|
|
605
593
|
window.removeEventListener("resize", D, !1), $?.dispose();
|
|
606
|
-
}),
|
|
594
|
+
}), le(
|
|
607
595
|
[
|
|
608
596
|
() => i.value.width,
|
|
609
597
|
() => i.value.height,
|
|
@@ -615,11 +603,11 @@ const Ds = /* @__PURE__ */ S({
|
|
|
615
603
|
d
|
|
616
604
|
],
|
|
617
605
|
async () => {
|
|
618
|
-
await
|
|
606
|
+
await li(), D();
|
|
619
607
|
}
|
|
620
|
-
),
|
|
608
|
+
), le([r], () => {
|
|
621
609
|
N(), B();
|
|
622
|
-
}),
|
|
610
|
+
}), le(
|
|
623
611
|
[e],
|
|
624
612
|
() => {
|
|
625
613
|
B();
|
|
@@ -630,25 +618,25 @@ const Ds = /* @__PURE__ */ S({
|
|
|
630
618
|
style: q(v.value)
|
|
631
619
|
}, null, 4));
|
|
632
620
|
}
|
|
633
|
-
}), X = /* @__PURE__ */
|
|
621
|
+
}), X = /* @__PURE__ */ T({
|
|
634
622
|
__name: "index",
|
|
635
623
|
props: {
|
|
636
624
|
fitContent: { type: Boolean, default: !1 }
|
|
637
625
|
},
|
|
638
626
|
setup(t) {
|
|
639
627
|
const e = Q(), i = k(() => {
|
|
640
|
-
const
|
|
641
|
-
return t.fitContent && (
|
|
628
|
+
const r = {};
|
|
629
|
+
return t.fitContent && (r.width = "fit-content", r.height = "fit-content"), r;
|
|
642
630
|
});
|
|
643
|
-
return (
|
|
631
|
+
return (r, l) => n(e) === "editor" ? (w(), ne("div", {
|
|
644
632
|
key: 0,
|
|
645
633
|
style: q(i.value)
|
|
646
634
|
}, [
|
|
647
|
-
E(
|
|
648
|
-
], 4)) : E(
|
|
635
|
+
E(r.$slots, "default")
|
|
636
|
+
], 4)) : E(r.$slots, "default", { key: 1 });
|
|
649
637
|
}
|
|
650
638
|
});
|
|
651
|
-
function
|
|
639
|
+
function Es(t, e) {
|
|
652
640
|
function i(u) {
|
|
653
641
|
const d = t.pseudoToNative(u), m = [], f = d.split(".");
|
|
654
642
|
for (let h = 0; h < f.length; h++) {
|
|
@@ -662,7 +650,7 @@ function Fs(t, e) {
|
|
|
662
650
|
}
|
|
663
651
|
return t.nativeToPseudo(m);
|
|
664
652
|
}
|
|
665
|
-
function
|
|
653
|
+
function r(u) {
|
|
666
654
|
const d = t.pseudoToNative(u);
|
|
667
655
|
try {
|
|
668
656
|
const m = JSON.parse(d);
|
|
@@ -671,7 +659,7 @@ function Fs(t, e) {
|
|
|
671
659
|
return t.nativeToPseudo({});
|
|
672
660
|
}
|
|
673
661
|
}
|
|
674
|
-
function
|
|
662
|
+
function l(u) {
|
|
675
663
|
const d = t.pseudoToNative(u), m = JSON.stringify(d);
|
|
676
664
|
return t.nativeToPseudo(m);
|
|
677
665
|
}
|
|
@@ -686,7 +674,7 @@ function Fs(t, e) {
|
|
|
686
674
|
}
|
|
687
675
|
function c(u, d) {
|
|
688
676
|
const m = t.pseudoToNative(u), f = t.pseudoToNative(d);
|
|
689
|
-
m === "info" ?
|
|
677
|
+
m === "info" ? po(f) : m === "success" ? fo(f) : m === "warning" ? bi(f) : m === "error" && yi(f);
|
|
690
678
|
}
|
|
691
679
|
function p(u, d) {
|
|
692
680
|
const m = t.pseudoToNative(u), f = t.pseudoToNative(d);
|
|
@@ -707,11 +695,11 @@ function Fs(t, e) {
|
|
|
707
695
|
), t.setProperty(
|
|
708
696
|
e,
|
|
709
697
|
"__parseJsonV1__",
|
|
710
|
-
t.createNativeFunction(
|
|
698
|
+
t.createNativeFunction(r)
|
|
711
699
|
), t.setProperty(
|
|
712
700
|
e,
|
|
713
701
|
"__jsonStringifyV1__",
|
|
714
|
-
t.createNativeFunction(
|
|
702
|
+
t.createNativeFunction(l)
|
|
715
703
|
), t.setProperty(
|
|
716
704
|
e,
|
|
717
705
|
"__consoleLogV1__",
|
|
@@ -734,22 +722,22 @@ function Fs(t, e) {
|
|
|
734
722
|
t.createAsyncFunction(b)
|
|
735
723
|
);
|
|
736
724
|
}
|
|
737
|
-
const Bi =
|
|
725
|
+
const Bi = bo({
|
|
738
726
|
baseUrl: "http://localhost/computebase/",
|
|
739
727
|
onError: (t) => {
|
|
740
728
|
const { i18n: e } = Ee;
|
|
741
|
-
yi(
|
|
729
|
+
yi(xo(e, t));
|
|
742
730
|
}
|
|
743
731
|
});
|
|
744
732
|
window.API_URL && (Bi.defaults.baseURL = window.API_URL + "/computebase/");
|
|
745
|
-
function
|
|
733
|
+
function Fs(t) {
|
|
746
734
|
return Bi.post("callFunc", t);
|
|
747
735
|
}
|
|
748
|
-
function
|
|
749
|
-
async function i(
|
|
750
|
-
const b = t.pseudoToNative(
|
|
736
|
+
function Ms(t, e) {
|
|
737
|
+
async function i(r, l, o, a, c, p) {
|
|
738
|
+
const b = t.pseudoToNative(r), u = t.pseudoToNative(l), d = t.pseudoToNative(o), m = t.pseudoToNative(a), f = t.pseudoToNative(c);
|
|
751
739
|
try {
|
|
752
|
-
const h = JSON.stringify(d), { strOutputs: x } = await
|
|
740
|
+
const h = JSON.stringify(d), { strOutputs: x } = await Fs({
|
|
753
741
|
spaceid: b,
|
|
754
742
|
id: u,
|
|
755
743
|
strInputs: h,
|
|
@@ -766,25 +754,25 @@ function Hs(t, e) {
|
|
|
766
754
|
t.createAsyncFunction(i)
|
|
767
755
|
);
|
|
768
756
|
}
|
|
769
|
-
class
|
|
757
|
+
class Hs {
|
|
770
758
|
nodes;
|
|
771
759
|
constructor(e) {
|
|
772
760
|
this.nodes = {};
|
|
773
|
-
const i = (
|
|
774
|
-
this.nodes[
|
|
761
|
+
const i = (r) => {
|
|
762
|
+
this.nodes[r.basic.id] = r, r.children?.forEach((l) => i(l));
|
|
775
763
|
};
|
|
776
|
-
e.data.view.nodes.forEach((
|
|
764
|
+
e.data.view.nodes.forEach((r) => i(r));
|
|
777
765
|
}
|
|
778
766
|
getNode(e) {
|
|
779
767
|
return this.nodes[e];
|
|
780
768
|
}
|
|
781
769
|
}
|
|
782
|
-
function
|
|
783
|
-
const
|
|
784
|
-
function
|
|
770
|
+
function js(t, e, i) {
|
|
771
|
+
const r = new Hs(t);
|
|
772
|
+
function l(u, d) {
|
|
785
773
|
const m = e.pseudoToNative(u), f = e.pseudoToNative(d), h = `id=${m} keys=${f}`;
|
|
786
774
|
let x;
|
|
787
|
-
if (m === "globality" ? x = t.data.view : x =
|
|
775
|
+
if (m === "globality" ? x = t.data.view : x = r.getNode(m), !x) {
|
|
788
776
|
console.error(`getPropV1 node not found, ${h}`);
|
|
789
777
|
return;
|
|
790
778
|
}
|
|
@@ -803,7 +791,7 @@ function Gs(t, e, i) {
|
|
|
803
791
|
function o(u, d, m) {
|
|
804
792
|
const f = e.pseudoToNative(u), h = e.pseudoToNative(d), x = e.pseudoToNative(m), g = `id=${f} keys=${h} value=${x}`;
|
|
805
793
|
let _;
|
|
806
|
-
if (f === "globality" ? _ = t.data.view : _ =
|
|
794
|
+
if (f === "globality" ? _ = t.data.view : _ = r.getNode(f), !_) {
|
|
807
795
|
console.error(`setPropV1 node not found, ${g}`);
|
|
808
796
|
return;
|
|
809
797
|
}
|
|
@@ -842,20 +830,20 @@ function Gs(t, e, i) {
|
|
|
842
830
|
}
|
|
843
831
|
function p(u, d, m) {
|
|
844
832
|
const f = e.pseudoToNative(u), h = e.pseudoToNative(d);
|
|
845
|
-
|
|
833
|
+
yo({ title: f, text: h }).then((x) => {
|
|
846
834
|
m(e.nativeToPseudo(x)), e.run();
|
|
847
835
|
});
|
|
848
836
|
}
|
|
849
837
|
function b(u, d, m, f) {
|
|
850
838
|
const h = e.pseudoToNative(u), x = e.pseudoToNative(d), g = e.pseudoToNative(m);
|
|
851
|
-
|
|
839
|
+
ho({ title: h, label: x, value: g }).then((_) => {
|
|
852
840
|
f(e.nativeToPseudo(_)), e.run();
|
|
853
841
|
});
|
|
854
842
|
}
|
|
855
843
|
e.setProperty(
|
|
856
844
|
i,
|
|
857
845
|
"__getPropV1__",
|
|
858
|
-
e.createNativeFunction(
|
|
846
|
+
e.createNativeFunction(l)
|
|
859
847
|
), e.setProperty(
|
|
860
848
|
i,
|
|
861
849
|
"__setPropV1__",
|
|
@@ -878,10 +866,10 @@ function Gs(t, e, i) {
|
|
|
878
866
|
e.createAsyncFunction(b)
|
|
879
867
|
);
|
|
880
868
|
}
|
|
881
|
-
function
|
|
882
|
-
|
|
869
|
+
function Gs(t, e, i) {
|
|
870
|
+
Es(e, i), Ms(e, i), js(t, e, i);
|
|
883
871
|
}
|
|
884
|
-
const
|
|
872
|
+
const Us = `
|
|
885
873
|
var __env__ = 'dev'
|
|
886
874
|
var __mode__ = 'editor'
|
|
887
875
|
|
|
@@ -891,7 +879,7 @@ function __getEnvV1__() {
|
|
|
891
879
|
|
|
892
880
|
var __pointerPosX__ = 0
|
|
893
881
|
var __pointerPosY__ = 0
|
|
894
|
-
`,
|
|
882
|
+
`, Os = `
|
|
895
883
|
var __events__ = {}
|
|
896
884
|
|
|
897
885
|
function __addEventListenerV1__(id, event, callback) {
|
|
@@ -962,7 +950,7 @@ function __triggerEvent__(id, event, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p1
|
|
|
962
950
|
callbacks[i](p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16)
|
|
963
951
|
}
|
|
964
952
|
}
|
|
965
|
-
`,
|
|
953
|
+
`, Ks = `
|
|
966
954
|
var __timers__ = {}
|
|
967
955
|
var __currTimerId__ = 0
|
|
968
956
|
|
|
@@ -1004,15 +992,15 @@ function __timeoutCallbackV1__(timerId) {
|
|
|
1004
992
|
}
|
|
1005
993
|
}
|
|
1006
994
|
}
|
|
1007
|
-
`,
|
|
995
|
+
`, Js = `
|
|
1008
996
|
function __destroy__() {
|
|
1009
997
|
}
|
|
1010
|
-
`,
|
|
1011
|
-
function
|
|
998
|
+
`, Xs = Us + Os + Ks + Js;
|
|
999
|
+
function Ys(t, e) {
|
|
1012
1000
|
const i = new mo(
|
|
1013
|
-
|
|
1014
|
-
(
|
|
1015
|
-
|
|
1001
|
+
Xs,
|
|
1002
|
+
(r, l) => {
|
|
1003
|
+
Gs(t, r, l);
|
|
1016
1004
|
}
|
|
1017
1005
|
);
|
|
1018
1006
|
return i.appendCode(e), i.appendCode(`
|
|
@@ -1021,20 +1009,20 @@ __mode__ = '${t.mode}';
|
|
|
1021
1009
|
__triggerEvent__('globality', 'startup');
|
|
1022
1010
|
`), i.run(), i;
|
|
1023
1011
|
}
|
|
1024
|
-
function
|
|
1012
|
+
function Zs(t) {
|
|
1025
1013
|
t.appendCode("__destroy__();"), t.run();
|
|
1026
1014
|
}
|
|
1027
|
-
const
|
|
1015
|
+
const re = /* @__PURE__ */ T({
|
|
1028
1016
|
__name: "index",
|
|
1029
1017
|
props: {
|
|
1030
1018
|
refContext: {},
|
|
1031
1019
|
state: {}
|
|
1032
1020
|
},
|
|
1033
1021
|
setup(t) {
|
|
1034
|
-
const { t: e } =
|
|
1035
|
-
|
|
1022
|
+
const { t: e } = go(), i = t, r = $o(), l = Io(), o = Q(), a = oe(), c = se(), p = Co(), b = he(-1), u = he(), d = {};
|
|
1023
|
+
So(d);
|
|
1036
1024
|
const m = () => {
|
|
1037
|
-
d.eventBus && (d.eventBus = void 0), d.interpreter && (
|
|
1025
|
+
d.eventBus && (d.eventBus = void 0), d.interpreter && (Zs(d.interpreter), d.interpreter = void 0);
|
|
1038
1026
|
};
|
|
1039
1027
|
oi(() => {
|
|
1040
1028
|
if (!i.refContext.refid) {
|
|
@@ -1048,10 +1036,10 @@ const le = /* @__PURE__ */ S({
|
|
|
1048
1036
|
}
|
|
1049
1037
|
if (b.value === v.dataSeq || (b.value = v.dataSeq, u.value = F(v.data), o !== "runtime" && o !== "preview"))
|
|
1050
1038
|
return;
|
|
1051
|
-
m(), d.eventBus =
|
|
1039
|
+
m(), d.eventBus = wo();
|
|
1052
1040
|
const I = u.value, $ = I.code.script;
|
|
1053
|
-
$ && (d.interpreter =
|
|
1054
|
-
{ org:
|
|
1041
|
+
$ && (d.interpreter = Ys(
|
|
1042
|
+
{ org: r, env: l, mode: o, type: a, data: I, sandbox: d },
|
|
1055
1043
|
$
|
|
1056
1044
|
));
|
|
1057
1045
|
}), Ce(() => {
|
|
@@ -1105,38 +1093,38 @@ const le = /* @__PURE__ */ S({
|
|
|
1105
1093
|
};
|
|
1106
1094
|
return (v, I) => (w(), z(_));
|
|
1107
1095
|
}
|
|
1108
|
-
}),
|
|
1096
|
+
}), qs = /* @__PURE__ */ T({
|
|
1109
1097
|
__name: "index",
|
|
1110
1098
|
props: {
|
|
1111
1099
|
node: {},
|
|
1112
1100
|
outer: { type: Boolean }
|
|
1113
1101
|
},
|
|
1114
1102
|
setup(t) {
|
|
1115
|
-
const e = t, { prop: i } = s(e, ["settings", "content"]), { prop:
|
|
1103
|
+
const e = t, { prop: i } = s(e, ["settings", "content"]), { prop: r } = s(e, ["settings", "dot"]), { theme: l } = R(), { prop: o } = s(e, ["settings", "offset", "x"]), { prop: a } = s(e, ["settings", "offset", "y"]);
|
|
1116
1104
|
return (c, p) => {
|
|
1117
1105
|
const b = A("v-badge");
|
|
1118
1106
|
return w(), z(b, {
|
|
1119
1107
|
content: n(i),
|
|
1120
|
-
dot: n(
|
|
1108
|
+
dot: n(r),
|
|
1121
1109
|
"offset-x": n(o),
|
|
1122
1110
|
"offset-y": n(a),
|
|
1123
|
-
theme: n(
|
|
1111
|
+
theme: n(l)
|
|
1124
1112
|
}, {
|
|
1125
|
-
default:
|
|
1113
|
+
default: S(() => [
|
|
1126
1114
|
E(c.$slots, "default")
|
|
1127
1115
|
]),
|
|
1128
1116
|
_: 3
|
|
1129
1117
|
}, 8, ["content", "dot", "offset-x", "offset-y", "theme"]);
|
|
1130
1118
|
};
|
|
1131
1119
|
}
|
|
1132
|
-
}),
|
|
1120
|
+
}), Qs = /* @__PURE__ */ T({
|
|
1133
1121
|
__name: "index",
|
|
1134
1122
|
props: {
|
|
1135
1123
|
node: {},
|
|
1136
1124
|
outer: { type: Boolean }
|
|
1137
1125
|
},
|
|
1138
1126
|
setup(t) {
|
|
1139
|
-
const e = t, i = Q(),
|
|
1127
|
+
const e = t, i = Q(), r = _e(), { prop: l } = s(e, [
|
|
1140
1128
|
"settings",
|
|
1141
1129
|
"addIcon",
|
|
1142
1130
|
"append"
|
|
@@ -1147,7 +1135,7 @@ const le = /* @__PURE__ */ S({
|
|
|
1147
1135
|
]), { prop: _ } = s(e, ["settings", "readonly"]), { prop: v } = s(e, ["settings", "ripple"]), { prop: I } = s(e, ["settings", "size"]), { prop: $ } = s(e, ["settings", "stacked"]), { prop: N } = s(e, ["settings", "text"]), { theme: D } = R(), { prop: B } = s(e, ["settings", "variant"]), { prop: V } = s(e, ["size", "width"]), M = (J) => {
|
|
1148
1136
|
if (i !== "runtime" && i !== "preview")
|
|
1149
1137
|
return;
|
|
1150
|
-
const j =
|
|
1138
|
+
const j = r.interpreter;
|
|
1151
1139
|
if (!j)
|
|
1152
1140
|
return;
|
|
1153
1141
|
const Y = j.nativeToPseudo(J.clientX), Z = j.nativeToPseudo(J.clientY), ce = j.nativeToPseudo(e.node.basic.id);
|
|
@@ -1156,9 +1144,9 @@ const le = /* @__PURE__ */ S({
|
|
|
1156
1144
|
return (J, j) => {
|
|
1157
1145
|
const Y = A("v-btn");
|
|
1158
1146
|
return w(), z(n(X), null, {
|
|
1159
|
-
default:
|
|
1147
|
+
default: S(() => [
|
|
1160
1148
|
H(Y, {
|
|
1161
|
-
"append-icon": n(
|
|
1149
|
+
"append-icon": n(l),
|
|
1162
1150
|
block: n(o),
|
|
1163
1151
|
color: n(c),
|
|
1164
1152
|
density: n(p),
|
|
@@ -1185,30 +1173,30 @@ const le = /* @__PURE__ */ S({
|
|
|
1185
1173
|
});
|
|
1186
1174
|
};
|
|
1187
1175
|
}
|
|
1188
|
-
}),
|
|
1189
|
-
function
|
|
1176
|
+
}), er = {};
|
|
1177
|
+
function tr(t, e) {
|
|
1190
1178
|
const i = A("v-btn-group");
|
|
1191
1179
|
return w(), z(i, null, {
|
|
1192
|
-
default:
|
|
1180
|
+
default: S(() => [
|
|
1193
1181
|
E(t.$slots, "default")
|
|
1194
1182
|
]),
|
|
1195
1183
|
_: 3
|
|
1196
1184
|
});
|
|
1197
1185
|
}
|
|
1198
|
-
const
|
|
1186
|
+
const nr = /* @__PURE__ */ be(er, [["render", tr]]), ir = /* @__PURE__ */ T({
|
|
1199
1187
|
__name: "index",
|
|
1200
1188
|
props: {
|
|
1201
1189
|
node: {},
|
|
1202
1190
|
outer: { type: Boolean }
|
|
1203
1191
|
},
|
|
1204
1192
|
setup(t) {
|
|
1205
|
-
const e = t, { prop: i } = s(e, ["settings", "block"]), { prop:
|
|
1193
|
+
const e = t, { prop: i } = s(e, ["settings", "block"]), { prop: r } = s(e, ["settings", "disabled"]), { prop: l } = s(e, ["settings", "divided"]), { prop: o } = s(e, ["settings", "mandatory"]), { prop: a } = s(e, ["settings", "multiple"]), { prop: c } = s(e, ["settings", "readonly"]), { prop: p } = s(e, ["settings", "size"]), { prop: b } = s(e, ["settings", "stacked"]), { theme: u } = R(), { prop: d } = s(e, ["settings", "tile"]), { prop: m } = s(e, ["settings", "variant"]);
|
|
1206
1194
|
return (f, h) => {
|
|
1207
1195
|
const x = A("v-btn-toggle");
|
|
1208
1196
|
return w(), z(x, {
|
|
1209
1197
|
block: n(i),
|
|
1210
|
-
disabled: n(
|
|
1211
|
-
divided: n(
|
|
1198
|
+
disabled: n(r),
|
|
1199
|
+
divided: n(l),
|
|
1212
1200
|
mandatory: n(o),
|
|
1213
1201
|
multiple: n(a),
|
|
1214
1202
|
readonly: n(c),
|
|
@@ -1218,27 +1206,27 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1218
1206
|
tile: n(d),
|
|
1219
1207
|
variant: n(m)
|
|
1220
1208
|
}, {
|
|
1221
|
-
default:
|
|
1209
|
+
default: S(() => [
|
|
1222
1210
|
E(f.$slots, "default")
|
|
1223
1211
|
]),
|
|
1224
1212
|
_: 3
|
|
1225
1213
|
}, 8, ["block", "disabled", "divided", "mandatory", "multiple", "readonly", "size", "stacked", "theme", "tile", "variant"]);
|
|
1226
1214
|
};
|
|
1227
1215
|
}
|
|
1228
|
-
}),
|
|
1216
|
+
}), or = /* @__PURE__ */ T({
|
|
1229
1217
|
__name: "index",
|
|
1230
1218
|
props: {
|
|
1231
1219
|
node: {},
|
|
1232
1220
|
outer: { type: Boolean }
|
|
1233
1221
|
},
|
|
1234
1222
|
setup(t) {
|
|
1235
|
-
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop:
|
|
1223
|
+
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop: r } = s(e, ["settings", "disabled"]), { prop: l } = s(e, ["size", "height"]), { prop: o } = s(e, ["settings", "hover"]), { prop: a } = s(e, ["settings", "loading"]), { prop: c } = s(e, ["size", "maxHeight"]), { prop: p } = s(e, ["size", "maxWidth"]), { prop: b } = s(e, ["size", "minHeight"]), { prop: u } = s(e, ["size", "minWidth"]), { prop: d } = s(e, ["settings", "subtitle"]), { prop: m } = s(e, ["settings", "text"]), { theme: f } = R(), { prop: h } = s(e, ["settings", "title"]), { prop: x } = s(e, ["settings", "variant"]), { prop: g } = s(e, ["size", "width"]);
|
|
1236
1224
|
return (_, v) => {
|
|
1237
1225
|
const I = A("v-card");
|
|
1238
1226
|
return w(), z(I, {
|
|
1239
1227
|
density: n(i),
|
|
1240
|
-
disabled: n(
|
|
1241
|
-
height: n(
|
|
1228
|
+
disabled: n(r),
|
|
1229
|
+
height: n(l),
|
|
1242
1230
|
hover: n(o),
|
|
1243
1231
|
loading: n(a),
|
|
1244
1232
|
"max-height": n(c),
|
|
@@ -1252,42 +1240,42 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1252
1240
|
variant: n(x),
|
|
1253
1241
|
width: n(g)
|
|
1254
1242
|
}, {
|
|
1255
|
-
default:
|
|
1243
|
+
default: S(() => [
|
|
1256
1244
|
E(_.$slots, "default")
|
|
1257
1245
|
]),
|
|
1258
1246
|
_: 3
|
|
1259
1247
|
}, 8, ["density", "disabled", "height", "hover", "loading", "max-height", "max-width", "min-height", "min-width", "subtitle", "text", "theme", "title", "variant", "width"]);
|
|
1260
1248
|
};
|
|
1261
1249
|
}
|
|
1262
|
-
}),
|
|
1250
|
+
}), sr = /* @__PURE__ */ T({
|
|
1263
1251
|
__name: "index",
|
|
1264
1252
|
props: {
|
|
1265
1253
|
node: {},
|
|
1266
1254
|
outer: { type: Boolean }
|
|
1267
1255
|
},
|
|
1268
1256
|
setup(t) {
|
|
1269
|
-
const e = t, { prop: i } = s(e, ["settings", "disabled"]), { prop:
|
|
1270
|
-
return (
|
|
1257
|
+
const e = t, { prop: i } = s(e, ["settings", "disabled"]), { prop: r } = s(e, ["settings", "readonly"]);
|
|
1258
|
+
return (l, o) => {
|
|
1271
1259
|
const a = A("v-checkbox");
|
|
1272
1260
|
return w(), z(a, {
|
|
1273
1261
|
disabled: n(i),
|
|
1274
|
-
readonly: n(
|
|
1262
|
+
readonly: n(r)
|
|
1275
1263
|
}, null, 8, ["disabled", "readonly"]);
|
|
1276
1264
|
};
|
|
1277
1265
|
}
|
|
1278
|
-
}),
|
|
1266
|
+
}), rr = /* @__PURE__ */ T({
|
|
1279
1267
|
__name: "index",
|
|
1280
1268
|
props: {
|
|
1281
1269
|
node: {},
|
|
1282
1270
|
outer: { type: Boolean }
|
|
1283
1271
|
},
|
|
1284
1272
|
setup(t) {
|
|
1285
|
-
const e = t, { prop: i } = s(e, ["settings", "closable"]), { prop:
|
|
1273
|
+
const e = t, { prop: i } = s(e, ["settings", "closable"]), { prop: r } = s(e, ["settings", "color"]), { color: l } = U(r), { prop: o } = s(e, ["settings", "density"]), { prop: a } = s(e, ["settings", "disabled"]), { prop: c } = s(e, ["settings", "draggable"]), { prop: p } = s(e, ["settings", "filter"]), { prop: b } = s(e, ["settings", "label"]), { prop: u } = s(e, ["settings", "size"]), { prop: d } = s(e, ["settings", "text"]), { theme: m } = R(), { prop: f } = s(e, ["settings", "tile"]), { prop: h } = s(e, ["settings", "value"]), { prop: x } = s(e, ["settings", "variant"]);
|
|
1286
1274
|
return (g, _) => {
|
|
1287
1275
|
const v = A("v-chip");
|
|
1288
1276
|
return w(), z(v, {
|
|
1289
1277
|
closable: n(i),
|
|
1290
|
-
color: n(
|
|
1278
|
+
color: n(l),
|
|
1291
1279
|
density: n(o),
|
|
1292
1280
|
disabled: n(a),
|
|
1293
1281
|
draggable: n(c),
|
|
@@ -1302,45 +1290,45 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1302
1290
|
}, null, 8, ["closable", "color", "density", "disabled", "draggable", "filter", "label", "size", "text", "theme", "tile", "value", "variant"]);
|
|
1303
1291
|
};
|
|
1304
1292
|
}
|
|
1305
|
-
}),
|
|
1293
|
+
}), lr = /* @__PURE__ */ T({
|
|
1306
1294
|
__name: "index",
|
|
1307
1295
|
props: {
|
|
1308
1296
|
node: {},
|
|
1309
1297
|
outer: { type: Boolean }
|
|
1310
1298
|
},
|
|
1311
1299
|
setup(t) {
|
|
1312
|
-
const e = t, { prop: i } = s(e, ["settings", "column"]), { prop:
|
|
1300
|
+
const e = t, { prop: i } = s(e, ["settings", "column"]), { prop: r } = s(e, ["settings", "direction"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "filter"]), { prop: a } = s(e, ["settings", "mandatory"]), { prop: c } = s(e, ["settings", "multiple"]), { prop: p } = s(e, ["settings", "showArrows"]), { theme: b } = R(), { prop: u } = s(e, ["settings", "value"]);
|
|
1313
1301
|
return (d, m) => {
|
|
1314
1302
|
const f = A("v-chip-group");
|
|
1315
1303
|
return w(), z(f, {
|
|
1316
1304
|
modelValue: n(u),
|
|
1317
1305
|
"onUpdate:modelValue": m[0] || (m[0] = (h) => G(u) ? u.value = h : null),
|
|
1318
1306
|
column: n(i),
|
|
1319
|
-
direction: n(
|
|
1320
|
-
disabled: n(
|
|
1307
|
+
direction: n(r),
|
|
1308
|
+
disabled: n(l),
|
|
1321
1309
|
filter: n(o),
|
|
1322
1310
|
mandatory: n(a),
|
|
1323
1311
|
multiple: n(c),
|
|
1324
1312
|
"show-arrows": n(p),
|
|
1325
1313
|
theme: n(b)
|
|
1326
1314
|
}, {
|
|
1327
|
-
default:
|
|
1315
|
+
default: S(() => [
|
|
1328
1316
|
E(d.$slots, "default")
|
|
1329
1317
|
]),
|
|
1330
1318
|
_: 3
|
|
1331
1319
|
}, 8, ["modelValue", "column", "direction", "disabled", "filter", "mandatory", "multiple", "show-arrows", "theme"]);
|
|
1332
1320
|
};
|
|
1333
1321
|
}
|
|
1334
|
-
}),
|
|
1322
|
+
}), ar = /* @__PURE__ */ T({
|
|
1335
1323
|
__name: "index",
|
|
1336
1324
|
props: {
|
|
1337
1325
|
node: {},
|
|
1338
1326
|
outer: { type: Boolean }
|
|
1339
1327
|
},
|
|
1340
1328
|
setup(t) {
|
|
1341
|
-
const e = t, i = oe(),
|
|
1342
|
-
const h = {}, x =
|
|
1343
|
-
return i === "page" ? x === "common" ?
|
|
1329
|
+
const e = t, i = oe(), r = se(), { applySize: l } = ue(e), o = k(() => {
|
|
1330
|
+
const h = {}, x = r.value.type;
|
|
1331
|
+
return i === "page" ? x === "common" ? l(h) : console.assert(!1) : i === "comp" && x === "common" ? l(h) : console.assert(!1), h;
|
|
1344
1332
|
}), { prop: a } = s(e, ["settings", "disabled"]), { prop: c } = s(e, ["settings", "hideCanvas"]), { prop: p } = s(e, ["settings", "hideHeader"]), { prop: b } = s(e, ["settings", "hideInputs"]), { prop: u } = s(e, ["settings", "hideSliders"]), { prop: d } = s(e, ["settings", "landscape"]), { prop: m } = s(e, [
|
|
1345
1333
|
"settings",
|
|
1346
1334
|
"showSwatches"
|
|
@@ -1360,24 +1348,24 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1360
1348
|
}, null, 8, ["disabled", "hide-canvas", "hide-header", "hide-inputs", "hide-sliders", "landscape", "show-swatches", "style", "theme"]);
|
|
1361
1349
|
};
|
|
1362
1350
|
}
|
|
1363
|
-
}),
|
|
1351
|
+
}), ur = /* @__PURE__ */ T({
|
|
1364
1352
|
__name: "index",
|
|
1365
1353
|
props: {
|
|
1366
1354
|
node: {},
|
|
1367
1355
|
outer: { type: Boolean }
|
|
1368
1356
|
},
|
|
1369
1357
|
setup(t) {
|
|
1370
|
-
const e = t, { prop: i } = s(e, ["settings", "hideDetails"]), { prop:
|
|
1358
|
+
const e = t, { prop: i } = s(e, ["settings", "hideDetails"]), { prop: r } = s(e, ["settings", "label"]), { prop: l } = s(e, ["settings", "placeholder"]), { prop: o } = s(e, ["settings", "readonly"]), { prop: a } = s(e, ["settings", "singleLine"]), { theme: c } = R(), { prop: p } = s(e, ["settings", "value"]);
|
|
1371
1359
|
return (b, u) => {
|
|
1372
1360
|
const d = A("v-combobox");
|
|
1373
1361
|
return w(), z(n(X), null, {
|
|
1374
|
-
default:
|
|
1362
|
+
default: S(() => [
|
|
1375
1363
|
H(d, {
|
|
1376
1364
|
modelValue: n(p),
|
|
1377
1365
|
"onUpdate:modelValue": u[0] || (u[0] = (m) => G(p) ? p.value = m : null),
|
|
1378
1366
|
"hide-details": n(i),
|
|
1379
|
-
label: n(
|
|
1380
|
-
placeholder: n(
|
|
1367
|
+
label: n(r),
|
|
1368
|
+
placeholder: n(l),
|
|
1381
1369
|
readonly: n(o),
|
|
1382
1370
|
"single-line": n(a),
|
|
1383
1371
|
theme: n(c)
|
|
@@ -1387,18 +1375,18 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1387
1375
|
});
|
|
1388
1376
|
};
|
|
1389
1377
|
}
|
|
1390
|
-
}),
|
|
1378
|
+
}), cr = /* @__PURE__ */ T({
|
|
1391
1379
|
__name: "index",
|
|
1392
1380
|
props: {
|
|
1393
1381
|
node: {},
|
|
1394
1382
|
outer: { type: Boolean }
|
|
1395
1383
|
},
|
|
1396
1384
|
setup(t) {
|
|
1397
|
-
const e = t, i = oe(),
|
|
1385
|
+
const e = t, i = oe(), r = se(), { prop: l } = s(e, [
|
|
1398
1386
|
"settings",
|
|
1399
1387
|
"backgroundColor"
|
|
1400
|
-
]), { color: o } = U(
|
|
1401
|
-
const d = {}, m =
|
|
1388
|
+
]), { color: o } = U(l), { applySize: a } = ue(e), { applyMargin: c } = Zt(e), { applyPadding: p } = qt(e), { applyBorder: b } = Yt(e), u = k(() => {
|
|
1389
|
+
const d = {}, m = r.value.type;
|
|
1402
1390
|
return i === "page" ? m === "common" ? (a(d), c(d), p(d), b(d), o.value && (d.backgroundColor = o.value)) : console.assert(!1) : i === "comp" && m === "common" ? (a(d), c(d), p(d), b(d), o.value && (d.backgroundColor = o.value)) : console.assert(!1), d;
|
|
1403
1391
|
});
|
|
1404
1392
|
return (d, m) => (w(), ne("div", {
|
|
@@ -1407,14 +1395,14 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1407
1395
|
E(d.$slots, "default")
|
|
1408
1396
|
], 4));
|
|
1409
1397
|
}
|
|
1410
|
-
}),
|
|
1398
|
+
}), dr = /* @__PURE__ */ T({
|
|
1411
1399
|
__name: "index",
|
|
1412
1400
|
props: {
|
|
1413
1401
|
node: {},
|
|
1414
1402
|
outer: { type: Boolean }
|
|
1415
1403
|
},
|
|
1416
1404
|
setup(t) {
|
|
1417
|
-
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop:
|
|
1405
|
+
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop: r } = s(e, ["settings", "fixedFooter"]), { prop: l } = s(e, ["settings", "fixedHeader"]), { prop: o } = s(e, ["settings", "headers"]), { prop: a } = s(e, ["size", "height"]), { prop: c } = s(e, ["settings", "hover"]), { prop: p } = s(e, ["settings", "data"], !0), { prop: b } = s(e, ["settings", "loading"]), { prop: u } = s(e, ["settings", "multiSort"]), { theme: d } = R(), { prop: m } = s(e, ["size", "width"]), f = k(() => {
|
|
1418
1406
|
const h = [];
|
|
1419
1407
|
return (e.node.slots?.items ?? []).forEach((g) => {
|
|
1420
1408
|
g.column && g.comp && h.push(g);
|
|
@@ -1424,8 +1412,8 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1424
1412
|
const g = A("v-data-table");
|
|
1425
1413
|
return w(), z(g, {
|
|
1426
1414
|
density: n(i),
|
|
1427
|
-
"fixed-footer": n(
|
|
1428
|
-
"fixed-header": n(
|
|
1415
|
+
"fixed-footer": n(r),
|
|
1416
|
+
"fixed-header": n(l),
|
|
1429
1417
|
headers: n(o),
|
|
1430
1418
|
height: n(a),
|
|
1431
1419
|
hover: n(c),
|
|
@@ -1437,8 +1425,8 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1437
1425
|
}, Jt({ _: 2 }, [
|
|
1438
1426
|
Xi(f.value, (_) => ({
|
|
1439
1427
|
name: `item.${_.column}`,
|
|
1440
|
-
fn:
|
|
1441
|
-
H(n(
|
|
1428
|
+
fn: S(({ value: v }) => [
|
|
1429
|
+
H(n(re), {
|
|
1442
1430
|
"ref-context": { refid: _.comp },
|
|
1443
1431
|
state: { value: v }
|
|
1444
1432
|
}, null, 8, ["ref-context", "state"])
|
|
@@ -1447,21 +1435,21 @@ const il = /* @__PURE__ */ be(tl, [["render", nl]]), ol = /* @__PURE__ */ S({
|
|
|
1447
1435
|
]), 1032, ["density", "fixed-footer", "fixed-header", "headers", "height", "hover", "items", "loading", "multi-sort", "theme", "width"]);
|
|
1448
1436
|
};
|
|
1449
1437
|
}
|
|
1450
|
-
}),
|
|
1451
|
-
function
|
|
1438
|
+
}), mr = {};
|
|
1439
|
+
function pr(t, e) {
|
|
1452
1440
|
const i = A("v-date-picker");
|
|
1453
1441
|
return w(), z(i);
|
|
1454
1442
|
}
|
|
1455
|
-
const
|
|
1443
|
+
const fr = /* @__PURE__ */ be(mr, [["render", pr]]), br = ["id"], yr = /* @__PURE__ */ T({
|
|
1456
1444
|
__name: "index",
|
|
1457
1445
|
props: {
|
|
1458
1446
|
node: {},
|
|
1459
1447
|
outer: { type: Boolean }
|
|
1460
1448
|
},
|
|
1461
1449
|
setup(t) {
|
|
1462
|
-
const e = t, i = Q(),
|
|
1463
|
-
return Li(
|
|
1464
|
-
if (i !== "runtime" && i !== "preview" || !
|
|
1450
|
+
const e = t, i = Q(), r = _e(), l = k(() => e.node.basic?.id), { open: o } = hi(`runtimeDlg/${ai()}`);
|
|
1451
|
+
return Li(r, e, (c) => {
|
|
1452
|
+
if (i !== "runtime" && i !== "preview" || !r.interpreter)
|
|
1465
1453
|
return;
|
|
1466
1454
|
const { name: b } = c;
|
|
1467
1455
|
b === "open" ? o.value = !0 : b === "close" && (o.value = !1);
|
|
@@ -1472,33 +1460,33 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1472
1460
|
"onUpdate:modelValue": p[0] || (p[0] = (u) => G(o) ? o.value = u : null),
|
|
1473
1461
|
attach: "#dialogContainer"
|
|
1474
1462
|
}, {
|
|
1475
|
-
activator:
|
|
1463
|
+
activator: S(() => [
|
|
1476
1464
|
n(i) === "editor" ? (w(), ne("div", {
|
|
1477
1465
|
key: 0,
|
|
1478
|
-
id: `__node__@${
|
|
1479
|
-
}, null, 8,
|
|
1466
|
+
id: `__node__@${l.value}`
|
|
1467
|
+
}, null, 8, br)) : ui("", !0)
|
|
1480
1468
|
]),
|
|
1481
|
-
default:
|
|
1469
|
+
default: S(() => [
|
|
1482
1470
|
E(c.$slots, "default")
|
|
1483
1471
|
]),
|
|
1484
1472
|
_: 3
|
|
1485
1473
|
}, 8, ["modelValue"]);
|
|
1486
1474
|
};
|
|
1487
1475
|
}
|
|
1488
|
-
}),
|
|
1476
|
+
}), hr = /* @__PURE__ */ T({
|
|
1489
1477
|
__name: "index",
|
|
1490
1478
|
props: {
|
|
1491
1479
|
node: {},
|
|
1492
1480
|
outer: { type: Boolean }
|
|
1493
1481
|
},
|
|
1494
1482
|
setup(t) {
|
|
1495
|
-
const e = t, { prop: i } = s(e, ["settings", "chips"]), { prop:
|
|
1483
|
+
const e = t, { prop: i } = s(e, ["settings", "chips"]), { prop: r } = s(e, ["settings", "density"]), { prop: l } = s(e, ["settings", "direction"]), { prop: o } = s(e, ["settings", "disabled"]), { prop: a } = s(e, ["settings", "label"]), { prop: c } = s(e, ["settings", "loading"]), { prop: p } = s(e, ["settings", "multiple"]), { prop: b } = s(e, ["settings", "readonly"]), { prop: u } = s(e, ["settings", "reverse"]), { prop: d } = s(e, ["settings", "singleLine"]);
|
|
1496
1484
|
return (m, f) => {
|
|
1497
1485
|
const h = A("v-file-input");
|
|
1498
1486
|
return w(), z(h, {
|
|
1499
1487
|
chips: n(i),
|
|
1500
|
-
density: n(
|
|
1501
|
-
direction: n(
|
|
1488
|
+
density: n(r),
|
|
1489
|
+
direction: n(l),
|
|
1502
1490
|
disabled: n(o),
|
|
1503
1491
|
label: n(a),
|
|
1504
1492
|
loading: n(c),
|
|
@@ -1509,14 +1497,14 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1509
1497
|
}, null, 8, ["chips", "density", "direction", "disabled", "label", "loading", "multiple", "readonly", "reverse", "single-line"]);
|
|
1510
1498
|
};
|
|
1511
1499
|
}
|
|
1512
|
-
}),
|
|
1500
|
+
}), gr = /* @__PURE__ */ T({
|
|
1513
1501
|
__name: "index",
|
|
1514
1502
|
props: {
|
|
1515
1503
|
node: {},
|
|
1516
1504
|
outer: { type: Boolean }
|
|
1517
1505
|
},
|
|
1518
1506
|
setup(t) {
|
|
1519
|
-
const e = t, i = ke(),
|
|
1507
|
+
const e = t, i = ke(), r = oe(), l = se(), { applySize: o } = ue(e), { applyMargin: a } = Zt(e), { applyPadding: c } = qt(e), { applyBorder: p } = Yt(e), { prop: b } = s(e, [
|
|
1520
1508
|
"settings",
|
|
1521
1509
|
"backgroundColor"
|
|
1522
1510
|
]), { color: u } = U(b), d = (f) => {
|
|
@@ -1530,8 +1518,8 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1530
1518
|
const v = ye(h, e.node.settings?.crossAlign);
|
|
1531
1519
|
v === "start" ? f.alignItems = "flex-start" : v === "end" ? f.alignItems = "flex-end" : v === "center" ? f.alignItems = "center" : v === "baseline" ? f.alignItems = "baseline" : v === "stretch" && (f.alignItems = "stretch");
|
|
1532
1520
|
}, m = k(() => {
|
|
1533
|
-
const f = {}, h =
|
|
1534
|
-
return
|
|
1521
|
+
const f = {}, h = l.value.type;
|
|
1522
|
+
return r === "page" ? h === "common" ? (o(f), a(f), c(f), p(f), d(f)) : console.assert(!1) : r === "comp" && h === "common" ? (o(f), a(f), c(f), p(f), d(f)) : console.assert(!1), f;
|
|
1535
1523
|
});
|
|
1536
1524
|
return (f, h) => (w(), ne("div", {
|
|
1537
1525
|
style: q(m.value)
|
|
@@ -1539,16 +1527,16 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1539
1527
|
E(f.$slots, "default")
|
|
1540
1528
|
], 4));
|
|
1541
1529
|
}
|
|
1542
|
-
}),
|
|
1530
|
+
}), xr = /* @__PURE__ */ T({
|
|
1543
1531
|
__name: "index",
|
|
1544
1532
|
props: {
|
|
1545
1533
|
node: {},
|
|
1546
1534
|
outer: { type: Boolean }
|
|
1547
1535
|
},
|
|
1548
1536
|
setup(t) {
|
|
1549
|
-
const e = t, i = oe(),
|
|
1550
|
-
const p = {}, b =
|
|
1551
|
-
return i === "page" ? b === "common" ? (
|
|
1537
|
+
const e = t, i = oe(), r = se(), { applySize: l } = ue(e), { prop: o } = s(e, ["settings", "grow"]), { prop: a } = s(e, ["settings", "shrink"]), c = k(() => {
|
|
1538
|
+
const p = {}, b = r.value.type;
|
|
1539
|
+
return i === "page" ? b === "common" ? (l(p), p.flexGrow = o.value ? 1 : 0, p.flexShrink = a.value ? 1 : 0) : console.assert(!1) : i === "comp" && b === "common" ? (l(p), p.flexGrow = o.value ? 1 : 0, p.flexShrink = a.value ? 1 : 0) : console.assert(!1), p;
|
|
1552
1540
|
});
|
|
1553
1541
|
return (p, b) => (w(), ne("div", {
|
|
1554
1542
|
style: q(c.value)
|
|
@@ -1556,19 +1544,19 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1556
1544
|
E(p.$slots, "default")
|
|
1557
1545
|
], 4));
|
|
1558
1546
|
}
|
|
1559
|
-
}),
|
|
1547
|
+
}), vr = /* @__PURE__ */ T({
|
|
1560
1548
|
__name: "index",
|
|
1561
1549
|
props: {
|
|
1562
1550
|
node: {},
|
|
1563
1551
|
outer: { type: Boolean }
|
|
1564
1552
|
},
|
|
1565
1553
|
setup(t) {
|
|
1566
|
-
const e = t, i = Q(),
|
|
1554
|
+
const e = t, i = Q(), r = oe(), l = se(), o = _e(), { prop: a } = s(e, ["settings", "valid"]), { prop: c } = s(e, ["settings", "fastFail"]), { prop: p } = s(e, [
|
|
1567
1555
|
"settings",
|
|
1568
1556
|
"backgroundColor"
|
|
1569
1557
|
]), { color: b } = U(p), { applySize: u } = ue(e), { applyMargin: d } = Zt(e), { applyPadding: m } = qt(e), { applyBorder: f } = Yt(e), h = k(() => {
|
|
1570
|
-
const g = {}, _ =
|
|
1571
|
-
return
|
|
1558
|
+
const g = {}, _ = l.value.type;
|
|
1559
|
+
return r === "page" ? _ === "common" ? (u(g), d(g), m(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1) : r === "comp" && _ === "common" ? (u(g), d(g), m(g), f(g), b.value && (g.backgroundColor = b.value)) : console.assert(!1), g;
|
|
1572
1560
|
}), x = () => {
|
|
1573
1561
|
if (i !== "runtime" && i !== "preview")
|
|
1574
1562
|
return;
|
|
@@ -1587,48 +1575,48 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1587
1575
|
style: q(h.value),
|
|
1588
1576
|
onSubmit: Yi(x, ["prevent"])
|
|
1589
1577
|
}, {
|
|
1590
|
-
default:
|
|
1578
|
+
default: S(() => [
|
|
1591
1579
|
E(g.$slots, "default")
|
|
1592
1580
|
]),
|
|
1593
1581
|
_: 3
|
|
1594
1582
|
}, 8, ["modelValue", "fast-fail", "style"]);
|
|
1595
1583
|
};
|
|
1596
1584
|
}
|
|
1597
|
-
}),
|
|
1585
|
+
}), kr = /* @__PURE__ */ T({
|
|
1598
1586
|
__name: "index",
|
|
1599
1587
|
props: {
|
|
1600
1588
|
node: {},
|
|
1601
1589
|
outer: { type: Boolean }
|
|
1602
1590
|
},
|
|
1603
1591
|
setup(t) {
|
|
1604
|
-
const e = t, { prop: i } = s(e, ["settings", "color"]), { color:
|
|
1592
|
+
const e = t, { prop: i } = s(e, ["settings", "color"]), { color: r } = U(i), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "icon"]), { prop: a } = s(e, ["settings", "size"]), { theme: c } = R();
|
|
1605
1593
|
return (p, b) => {
|
|
1606
1594
|
const u = A("v-icon");
|
|
1607
1595
|
return w(), z(u, {
|
|
1608
|
-
color: n(
|
|
1609
|
-
disabled: n(
|
|
1596
|
+
color: n(r),
|
|
1597
|
+
disabled: n(l),
|
|
1610
1598
|
icon: n(o),
|
|
1611
1599
|
size: n(a),
|
|
1612
1600
|
theme: n(c)
|
|
1613
1601
|
}, null, 8, ["color", "disabled", "icon", "size", "theme"]);
|
|
1614
1602
|
};
|
|
1615
1603
|
}
|
|
1616
|
-
}),
|
|
1604
|
+
}), _r = ["id"], wr = /* @__PURE__ */ T({
|
|
1617
1605
|
__name: "index",
|
|
1618
1606
|
props: {
|
|
1619
1607
|
node: {},
|
|
1620
1608
|
outer: { type: Boolean }
|
|
1621
1609
|
},
|
|
1622
1610
|
setup(t) {
|
|
1623
|
-
const e = t, i = Q(),
|
|
1624
|
-
return Li(
|
|
1611
|
+
const e = t, i = Q(), r = _e(), l = he(0), o = he(0), a = k(() => [l.value, o.value]), c = k(() => e.node.basic?.id), { open: p } = hi(`runtimeMenu/${ai()}`);
|
|
1612
|
+
return Li(r, e, (u) => {
|
|
1625
1613
|
if (i !== "runtime" && i !== "preview")
|
|
1626
1614
|
return;
|
|
1627
|
-
const d =
|
|
1615
|
+
const d = r.interpreter;
|
|
1628
1616
|
if (!d)
|
|
1629
1617
|
return;
|
|
1630
1618
|
const { name: m } = u;
|
|
1631
|
-
m === "open" ? (
|
|
1619
|
+
m === "open" ? (l.value = d.getProperty(d.globalObject, "__pointerPosX__"), o.value = d.getProperty(d.globalObject, "__pointerPosY__"), p.value = !0) : m === "close" && (p.value = !1);
|
|
1632
1620
|
}), (u, d) => {
|
|
1633
1621
|
const m = A("v-menu");
|
|
1634
1622
|
return w(), z(m, {
|
|
@@ -1639,20 +1627,20 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1639
1627
|
scrim: "transparent",
|
|
1640
1628
|
target: a.value
|
|
1641
1629
|
}, {
|
|
1642
|
-
activator:
|
|
1630
|
+
activator: S(() => [
|
|
1643
1631
|
n(i) === "editor" ? (w(), ne("div", {
|
|
1644
1632
|
key: 0,
|
|
1645
1633
|
id: `__node__@${c.value}`
|
|
1646
|
-
}, null, 8,
|
|
1634
|
+
}, null, 8, _r)) : ui("", !0)
|
|
1647
1635
|
]),
|
|
1648
|
-
default:
|
|
1636
|
+
default: S(() => [
|
|
1649
1637
|
E(u.$slots, "default")
|
|
1650
1638
|
]),
|
|
1651
1639
|
_: 3
|
|
1652
1640
|
}, 8, ["modelValue", "target"]);
|
|
1653
1641
|
};
|
|
1654
1642
|
}
|
|
1655
|
-
}),
|
|
1643
|
+
}), Vr = /* @__PURE__ */ T({
|
|
1656
1644
|
__name: "index",
|
|
1657
1645
|
props: {
|
|
1658
1646
|
node: {},
|
|
@@ -1663,11 +1651,11 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1663
1651
|
"settings",
|
|
1664
1652
|
"addIcon",
|
|
1665
1653
|
"append"
|
|
1666
|
-
]), { prop:
|
|
1654
|
+
]), { prop: r } = s(e, [
|
|
1667
1655
|
"settings",
|
|
1668
1656
|
"addIcon",
|
|
1669
1657
|
"appendInner"
|
|
1670
|
-
]), { prop:
|
|
1658
|
+
]), { prop: l } = s(e, ["settings", "clearable"]), { prop: o } = s(e, ["settings", "hideDetails"]), { prop: a } = s(e, ["settings", "label"]), { prop: c } = s(e, ["settings", "loading"]), { prop: p } = s(e, ["settings", "max"]), { prop: b } = s(e, ["size", "maxWidth"]), { prop: u } = s(e, ["settings", "min"]), { prop: d } = s(e, ["size", "minWidth"]), { prop: m } = s(e, ["settings", "placeholder"]), { prop: f } = s(e, ["settings", "precision"]), { prop: h } = s(e, ["settings", "prefix"]), { prop: x } = s(e, [
|
|
1671
1659
|
"settings",
|
|
1672
1660
|
"addIcon",
|
|
1673
1661
|
"prepend"
|
|
@@ -1679,13 +1667,13 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1679
1667
|
return (J, j) => {
|
|
1680
1668
|
const Y = A("v-number-input");
|
|
1681
1669
|
return w(), z(n(X), null, {
|
|
1682
|
-
default:
|
|
1670
|
+
default: S(() => [
|
|
1683
1671
|
H(Y, {
|
|
1684
1672
|
modelValue: n(B),
|
|
1685
1673
|
"onUpdate:modelValue": j[0] || (j[0] = (Z) => G(B) ? B.value = Z : null),
|
|
1686
1674
|
"append-icon": n(i),
|
|
1687
|
-
"append-inner-icon": n(
|
|
1688
|
-
clearable: n(
|
|
1675
|
+
"append-inner-icon": n(r),
|
|
1676
|
+
clearable: n(l),
|
|
1689
1677
|
"hide-details": n(o),
|
|
1690
1678
|
label: n(a),
|
|
1691
1679
|
loading: n(c),
|
|
@@ -1712,14 +1700,14 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1712
1700
|
});
|
|
1713
1701
|
};
|
|
1714
1702
|
}
|
|
1715
|
-
}),
|
|
1703
|
+
}), $r = /* @__PURE__ */ T({
|
|
1716
1704
|
__name: "index",
|
|
1717
1705
|
props: {
|
|
1718
1706
|
node: {},
|
|
1719
1707
|
outer: { type: Boolean }
|
|
1720
1708
|
},
|
|
1721
1709
|
setup(t) {
|
|
1722
|
-
const e = t, i = Q(), { prop:
|
|
1710
|
+
const e = t, i = Q(), { prop: r } = s(e, ["settings", "density"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "length"]), { prop: a } = s(e, [
|
|
1723
1711
|
"settings",
|
|
1724
1712
|
"showFirstLastPage"
|
|
1725
1713
|
]), { prop: c } = s(e, ["settings", "size"]), { prop: p } = s(e, ["settings", "start"]), { theme: b } = R(), { prop: u } = s(e, ["settings", "tile"]), { prop: d } = s(e, ["settings", "value"]), { prop: m } = s(e, ["settings", "variant"]), f = k(() => {
|
|
@@ -1729,12 +1717,12 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1729
1717
|
return (h, x) => {
|
|
1730
1718
|
const g = A("v-pagination");
|
|
1731
1719
|
return w(), z(n(X), null, {
|
|
1732
|
-
default:
|
|
1720
|
+
default: S(() => [
|
|
1733
1721
|
H(g, {
|
|
1734
1722
|
modelValue: n(d),
|
|
1735
1723
|
"onUpdate:modelValue": x[0] || (x[0] = (_) => G(d) ? d.value = _ : null),
|
|
1736
|
-
density: n(
|
|
1737
|
-
disabled: n(
|
|
1724
|
+
density: n(r),
|
|
1725
|
+
disabled: n(l),
|
|
1738
1726
|
length: n(o),
|
|
1739
1727
|
"show-first-last-page": n(a),
|
|
1740
1728
|
size: n(c),
|
|
@@ -1749,19 +1737,19 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1749
1737
|
});
|
|
1750
1738
|
};
|
|
1751
1739
|
}
|
|
1752
|
-
}),
|
|
1740
|
+
}), Ir = /* @__PURE__ */ T({
|
|
1753
1741
|
__name: "index",
|
|
1754
1742
|
props: {
|
|
1755
1743
|
node: {},
|
|
1756
1744
|
outer: { type: Boolean }
|
|
1757
1745
|
},
|
|
1758
1746
|
setup(t) {
|
|
1759
|
-
const e = t, { prop: i } = s(e, ["settings", "color"]), { color:
|
|
1747
|
+
const e = t, { prop: i } = s(e, ["settings", "color"]), { color: r } = U(i), { prop: l } = s(e, ["settings", "density"]), { prop: o } = s(e, ["settings", "disabled"]), { prop: a } = s(e, ["settings", "label"]), { prop: c } = s(e, ["settings", "readonly"]), { theme: p } = R(), { prop: b } = s(e, ["settings", "value"]);
|
|
1760
1748
|
return (u, d) => {
|
|
1761
1749
|
const m = A("v-radio");
|
|
1762
1750
|
return w(), z(m, {
|
|
1763
|
-
color: n(
|
|
1764
|
-
density: n(
|
|
1751
|
+
color: n(r),
|
|
1752
|
+
density: n(l),
|
|
1765
1753
|
disabled: n(o),
|
|
1766
1754
|
label: n(a),
|
|
1767
1755
|
readonly: n(c),
|
|
@@ -1770,29 +1758,29 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1770
1758
|
}, null, 8, ["color", "density", "disabled", "label", "readonly", "theme", "value"]);
|
|
1771
1759
|
};
|
|
1772
1760
|
}
|
|
1773
|
-
}),
|
|
1761
|
+
}), Cr = /* @__PURE__ */ T({
|
|
1774
1762
|
__name: "index",
|
|
1775
1763
|
props: {
|
|
1776
1764
|
node: {},
|
|
1777
1765
|
outer: { type: Boolean }
|
|
1778
1766
|
},
|
|
1779
1767
|
setup(t) {
|
|
1780
|
-
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop:
|
|
1768
|
+
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop: r } = s(e, ["settings", "direction"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "inline"]), { prop: a } = s(e, ["settings", "readonly"]), { theme: c } = R(), { prop: p } = s(e, ["settings", "value"]);
|
|
1781
1769
|
return (b, u) => {
|
|
1782
1770
|
const d = A("v-radio-group");
|
|
1783
1771
|
return w(), z(n(X), null, {
|
|
1784
|
-
default:
|
|
1772
|
+
default: S(() => [
|
|
1785
1773
|
H(d, {
|
|
1786
1774
|
modelValue: n(p),
|
|
1787
1775
|
"onUpdate:modelValue": u[0] || (u[0] = (m) => G(p) ? p.value = m : null),
|
|
1788
1776
|
density: n(i),
|
|
1789
|
-
direction: n(
|
|
1790
|
-
disabled: n(
|
|
1777
|
+
direction: n(r),
|
|
1778
|
+
disabled: n(l),
|
|
1791
1779
|
inline: n(o),
|
|
1792
1780
|
readonly: n(a),
|
|
1793
1781
|
theme: n(c)
|
|
1794
1782
|
}, {
|
|
1795
|
-
default:
|
|
1783
|
+
default: S(() => [
|
|
1796
1784
|
E(b.$slots, "default")
|
|
1797
1785
|
]),
|
|
1798
1786
|
_: 3
|
|
@@ -1802,14 +1790,14 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1802
1790
|
});
|
|
1803
1791
|
};
|
|
1804
1792
|
}
|
|
1805
|
-
}),
|
|
1793
|
+
}), Sr = /* @__PURE__ */ T({
|
|
1806
1794
|
__name: "index",
|
|
1807
1795
|
props: {
|
|
1808
1796
|
node: {},
|
|
1809
1797
|
outer: { type: Boolean }
|
|
1810
1798
|
},
|
|
1811
1799
|
setup(t) {
|
|
1812
|
-
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop:
|
|
1800
|
+
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop: r } = s(e, ["settings", "direction"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "hideDetails"]), { prop: a } = s(e, ["settings", "label"]), { prop: c } = s(e, ["settings", "max"]), { prop: p } = s(e, ["settings", "min"]), { prop: b } = s(e, ["settings", "readonly"]), { prop: u } = s(e, ["settings", "showTicks"]), d = k(() => {
|
|
1813
1801
|
if (u.value === "always")
|
|
1814
1802
|
return "always";
|
|
1815
1803
|
if (u.value === "show")
|
|
@@ -1846,13 +1834,13 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1846
1834
|
modelValue: D.value,
|
|
1847
1835
|
"onUpdate:modelValue": V[1] || (V[1] = (J) => D.value = J)
|
|
1848
1836
|
}, {
|
|
1849
|
-
default:
|
|
1837
|
+
default: S(() => [
|
|
1850
1838
|
H(M, {
|
|
1851
1839
|
modelValue: D.value,
|
|
1852
1840
|
"onUpdate:modelValue": V[0] || (V[0] = (J) => D.value = J),
|
|
1853
1841
|
density: n(i),
|
|
1854
|
-
direction: n(
|
|
1855
|
-
disabled: n(
|
|
1842
|
+
direction: n(r),
|
|
1843
|
+
disabled: n(l),
|
|
1856
1844
|
"hide-details": n(o),
|
|
1857
1845
|
label: n(a),
|
|
1858
1846
|
max: n(c),
|
|
@@ -1871,27 +1859,27 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1871
1859
|
}, 8, ["modelValue"]);
|
|
1872
1860
|
};
|
|
1873
1861
|
}
|
|
1874
|
-
}),
|
|
1862
|
+
}), Tr = /* @__PURE__ */ T({
|
|
1875
1863
|
__name: "index",
|
|
1876
1864
|
props: {
|
|
1877
1865
|
node: {},
|
|
1878
1866
|
outer: { type: Boolean }
|
|
1879
1867
|
},
|
|
1880
1868
|
setup(t) {
|
|
1881
|
-
const e = t, { prop: i } = s(e, ["settings", "clearable"]), { prop:
|
|
1869
|
+
const e = t, { prop: i } = s(e, ["settings", "clearable"]), { prop: r } = s(e, ["settings", "density"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, [
|
|
1882
1870
|
"settings",
|
|
1883
1871
|
"halfIncrements"
|
|
1884
1872
|
]), { prop: a } = s(e, ["settings", "hover"]), { prop: c } = s(e, ["settings", "length"]), { prop: p } = s(e, ["settings", "readonly"]), { theme: b } = R(), { prop: u } = s(e, ["settings", "value"]);
|
|
1885
1873
|
return (d, m) => {
|
|
1886
1874
|
const f = A("v-rating");
|
|
1887
1875
|
return w(), z(n(X), { "fit-content": !0 }, {
|
|
1888
|
-
default:
|
|
1876
|
+
default: S(() => [
|
|
1889
1877
|
H(f, {
|
|
1890
1878
|
modelValue: n(u),
|
|
1891
1879
|
"onUpdate:modelValue": m[0] || (m[0] = (h) => G(u) ? u.value = h : null),
|
|
1892
1880
|
clearable: n(i),
|
|
1893
|
-
density: n(
|
|
1894
|
-
disabled: n(
|
|
1881
|
+
density: n(r),
|
|
1882
|
+
disabled: n(l),
|
|
1895
1883
|
"half-increments": n(o),
|
|
1896
1884
|
hover: n(a),
|
|
1897
1885
|
length: n(c),
|
|
@@ -1903,24 +1891,24 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1903
1891
|
});
|
|
1904
1892
|
};
|
|
1905
1893
|
}
|
|
1906
|
-
}),
|
|
1894
|
+
}), zr = /* @__PURE__ */ T({
|
|
1907
1895
|
__name: "index",
|
|
1908
1896
|
props: {
|
|
1909
1897
|
node: {},
|
|
1910
1898
|
outer: { type: Boolean }
|
|
1911
1899
|
},
|
|
1912
1900
|
setup(t) {
|
|
1913
|
-
const e = t, { prop: i } = s(e, ["settings", "hideDetails"]), { prop:
|
|
1901
|
+
const e = t, { prop: i } = s(e, ["settings", "hideDetails"]), { prop: r } = s(e, ["settings", "label"]), { prop: l } = s(e, ["settings", "placeholder"]), { prop: o } = s(e, ["settings", "readonly"]), { prop: a } = s(e, ["settings", "singleLine"]), { theme: c } = R(), { prop: p } = s(e, ["settings", "value"]);
|
|
1914
1902
|
return (b, u) => {
|
|
1915
1903
|
const d = A("v-select");
|
|
1916
1904
|
return w(), z(n(X), null, {
|
|
1917
|
-
default:
|
|
1905
|
+
default: S(() => [
|
|
1918
1906
|
H(d, {
|
|
1919
1907
|
modelValue: n(p),
|
|
1920
1908
|
"onUpdate:modelValue": u[0] || (u[0] = (m) => G(p) ? p.value = m : null),
|
|
1921
1909
|
"hide-details": n(i),
|
|
1922
|
-
label: n(
|
|
1923
|
-
placeholder: n(
|
|
1910
|
+
label: n(r),
|
|
1911
|
+
placeholder: n(l),
|
|
1924
1912
|
readonly: n(o),
|
|
1925
1913
|
"single-line": n(a),
|
|
1926
1914
|
theme: n(c)
|
|
@@ -1930,14 +1918,14 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1930
1918
|
});
|
|
1931
1919
|
};
|
|
1932
1920
|
}
|
|
1933
|
-
}),
|
|
1921
|
+
}), Ar = /* @__PURE__ */ T({
|
|
1934
1922
|
__name: "index",
|
|
1935
1923
|
props: {
|
|
1936
1924
|
node: {},
|
|
1937
1925
|
outer: { type: Boolean }
|
|
1938
1926
|
},
|
|
1939
1927
|
setup(t) {
|
|
1940
|
-
const e = t, { prop: i } = s(e, ["settings", "color"]), { color:
|
|
1928
|
+
const e = t, { prop: i } = s(e, ["settings", "color"]), { color: r } = U(i), { prop: l } = s(e, ["settings", "direction"]), { prop: o } = s(e, ["settings", "disabled"]), { prop: a } = s(e, ["settings", "hideDetails"]), { prop: c } = s(e, ["settings", "label"]), { prop: p } = s(e, ["settings", "max"]), { prop: b } = s(e, ["settings", "min"]), { prop: u } = s(e, ["settings", "readonly"]), { prop: d } = s(e, ["settings", "reverse"]), { prop: m } = s(e, ["settings", "showTicks"]), f = k(() => {
|
|
1941
1929
|
if (m.value === "always")
|
|
1942
1930
|
return "always";
|
|
1943
1931
|
if (m.value === "show")
|
|
@@ -1968,12 +1956,12 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1968
1956
|
return (Z, ce) => {
|
|
1969
1957
|
const ze = A("v-slider");
|
|
1970
1958
|
return w(), z(n(X), null, {
|
|
1971
|
-
default:
|
|
1959
|
+
default: S(() => [
|
|
1972
1960
|
H(ze, {
|
|
1973
1961
|
modelValue: n(J),
|
|
1974
1962
|
"onUpdate:modelValue": ce[0] || (ce[0] = (Ki) => G(J) ? J.value = Ki : null),
|
|
1975
|
-
color: n(
|
|
1976
|
-
direction: n(
|
|
1963
|
+
color: n(r),
|
|
1964
|
+
direction: n(l),
|
|
1977
1965
|
disabled: n(o),
|
|
1978
1966
|
"hide-details": n(a),
|
|
1979
1967
|
label: n(c),
|
|
@@ -1993,8 +1981,8 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
1993
1981
|
}, Jt({ _: 2 }, [
|
|
1994
1982
|
n(j) ? {
|
|
1995
1983
|
name: "append",
|
|
1996
|
-
fn:
|
|
1997
|
-
H(n(
|
|
1984
|
+
fn: S(() => [
|
|
1985
|
+
H(n(re), {
|
|
1998
1986
|
"ref-context": { refid: n(j) },
|
|
1999
1987
|
state: {}
|
|
2000
1988
|
}, null, 8, ["ref-context"])
|
|
@@ -2003,8 +1991,8 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
2003
1991
|
} : void 0,
|
|
2004
1992
|
n(Y) ? {
|
|
2005
1993
|
name: "prepend",
|
|
2006
|
-
fn:
|
|
2007
|
-
H(n(
|
|
1994
|
+
fn: S(() => [
|
|
1995
|
+
H(n(re), {
|
|
2008
1996
|
"ref-context": { refid: n(Y) },
|
|
2009
1997
|
state: {}
|
|
2010
1998
|
}, null, 8, ["ref-context"])
|
|
@@ -2017,40 +2005,40 @@ const bl = /* @__PURE__ */ be(pl, [["render", fl]]), yl = ["id"], hl = /* @__PUR
|
|
|
2017
2005
|
});
|
|
2018
2006
|
};
|
|
2019
2007
|
}
|
|
2020
|
-
}),
|
|
2008
|
+
}), Pr = /* @__PURE__ */ T({
|
|
2021
2009
|
__name: "index",
|
|
2022
2010
|
props: {
|
|
2023
2011
|
node: {},
|
|
2024
2012
|
outer: { type: Boolean }
|
|
2025
2013
|
},
|
|
2026
2014
|
setup(t) {
|
|
2027
|
-
const e = t, { prop: i } = s(e, ["settings", "hideActions"]), { theme:
|
|
2015
|
+
const e = t, { prop: i } = s(e, ["settings", "hideActions"]), { theme: r } = R(), { prop: l } = s(e, ["settings", "value"]);
|
|
2028
2016
|
return (o, a) => {
|
|
2029
2017
|
const c = A("v-stepper");
|
|
2030
2018
|
return w(), z(c, {
|
|
2031
|
-
modelValue: n(
|
|
2032
|
-
"onUpdate:modelValue": a[0] || (a[0] = (p) => G(
|
|
2019
|
+
modelValue: n(l),
|
|
2020
|
+
"onUpdate:modelValue": a[0] || (a[0] = (p) => G(l) ? l.value = p : null),
|
|
2033
2021
|
"hide-actions": n(i),
|
|
2034
|
-
theme: n(
|
|
2022
|
+
theme: n(r)
|
|
2035
2023
|
}, {
|
|
2036
|
-
default:
|
|
2024
|
+
default: S(() => [
|
|
2037
2025
|
E(o.$slots, "default")
|
|
2038
2026
|
]),
|
|
2039
2027
|
_: 3
|
|
2040
2028
|
}, 8, ["modelValue", "hide-actions", "theme"]);
|
|
2041
2029
|
};
|
|
2042
2030
|
}
|
|
2043
|
-
}),
|
|
2044
|
-
function
|
|
2031
|
+
}), Wr = {};
|
|
2032
|
+
function Lr(t, e) {
|
|
2045
2033
|
const i = A("v-stepper-header");
|
|
2046
2034
|
return w(), z(i, null, {
|
|
2047
|
-
default:
|
|
2035
|
+
default: S(() => [
|
|
2048
2036
|
E(t.$slots, "default")
|
|
2049
2037
|
]),
|
|
2050
2038
|
_: 3
|
|
2051
2039
|
});
|
|
2052
2040
|
}
|
|
2053
|
-
const
|
|
2041
|
+
const Br = /* @__PURE__ */ be(Wr, [["render", Lr]]), Nr = /* @__PURE__ */ T({
|
|
2054
2042
|
__name: "index",
|
|
2055
2043
|
props: {
|
|
2056
2044
|
node: {},
|
|
@@ -2058,27 +2046,27 @@ const Nl = /* @__PURE__ */ be(Ll, [["render", Bl]]), Rl = /* @__PURE__ */ S({
|
|
|
2058
2046
|
},
|
|
2059
2047
|
setup(t) {
|
|
2060
2048
|
const e = t, { prop: i } = s(e, ["settings", "value"]);
|
|
2061
|
-
return (
|
|
2049
|
+
return (r, l) => {
|
|
2062
2050
|
const o = A("v-stepper-item");
|
|
2063
2051
|
return w(), z(o, { value: n(i) }, {
|
|
2064
|
-
default:
|
|
2065
|
-
E(
|
|
2052
|
+
default: S(() => [
|
|
2053
|
+
E(r.$slots, "default")
|
|
2066
2054
|
]),
|
|
2067
2055
|
_: 3
|
|
2068
2056
|
}, 8, ["value"]);
|
|
2069
2057
|
};
|
|
2070
2058
|
}
|
|
2071
|
-
}),
|
|
2072
|
-
function
|
|
2059
|
+
}), Rr = {};
|
|
2060
|
+
function Dr(t, e) {
|
|
2073
2061
|
const i = A("v-stepper-window");
|
|
2074
2062
|
return w(), z(i, null, {
|
|
2075
|
-
default:
|
|
2063
|
+
default: S(() => [
|
|
2076
2064
|
E(t.$slots, "default")
|
|
2077
2065
|
]),
|
|
2078
2066
|
_: 3
|
|
2079
2067
|
});
|
|
2080
2068
|
}
|
|
2081
|
-
const
|
|
2069
|
+
const Er = /* @__PURE__ */ be(Rr, [["render", Dr]]), Fr = /* @__PURE__ */ T({
|
|
2082
2070
|
__name: "index",
|
|
2083
2071
|
props: {
|
|
2084
2072
|
node: {},
|
|
@@ -2086,37 +2074,37 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2086
2074
|
},
|
|
2087
2075
|
setup(t) {
|
|
2088
2076
|
const e = t, { prop: i } = s(e, ["settings", "value"]);
|
|
2089
|
-
return (
|
|
2077
|
+
return (r, l) => {
|
|
2090
2078
|
const o = A("v-stepper-window-item");
|
|
2091
2079
|
return w(), z(o, { value: n(i) }, {
|
|
2092
|
-
default:
|
|
2093
|
-
E(
|
|
2080
|
+
default: S(() => [
|
|
2081
|
+
E(r.$slots, "default")
|
|
2094
2082
|
]),
|
|
2095
2083
|
_: 3
|
|
2096
2084
|
}, 8, ["value"]);
|
|
2097
2085
|
};
|
|
2098
2086
|
}
|
|
2099
|
-
}),
|
|
2087
|
+
}), Mr = /* @__PURE__ */ T({
|
|
2100
2088
|
__name: "index",
|
|
2101
2089
|
props: {
|
|
2102
2090
|
node: {},
|
|
2103
2091
|
outer: { type: Boolean }
|
|
2104
2092
|
},
|
|
2105
2093
|
setup(t) {
|
|
2106
|
-
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop:
|
|
2094
|
+
const e = t, { prop: i } = s(e, ["settings", "density"]), { prop: r } = s(e, ["settings", "direction"]), { prop: l } = s(e, ["settings", "disabled"]), { prop: o } = s(e, ["settings", "hideDetails"]), { prop: a } = s(e, [
|
|
2107
2095
|
"settings",
|
|
2108
2096
|
"indeterminate"
|
|
2109
2097
|
]), { prop: c } = s(e, ["settings", "inline"]), { prop: p } = s(e, ["settings", "inset"]), { prop: b } = s(e, ["settings", "label"]), { prop: u } = s(e, ["settings", "loading"]), { theme: d } = R(), { prop: m } = s(e, ["settings", "value"]);
|
|
2110
2098
|
return (f, h) => {
|
|
2111
2099
|
const x = A("v-switch");
|
|
2112
2100
|
return w(), z(n(X), { "fit-content": !0 }, {
|
|
2113
|
-
default:
|
|
2101
|
+
default: S(() => [
|
|
2114
2102
|
H(x, {
|
|
2115
2103
|
modelValue: n(m),
|
|
2116
2104
|
"onUpdate:modelValue": h[0] || (h[0] = (g) => G(m) ? m.value = g : null),
|
|
2117
2105
|
density: n(i),
|
|
2118
|
-
direction: n(
|
|
2119
|
-
disabled: n(
|
|
2106
|
+
direction: n(r),
|
|
2107
|
+
disabled: n(l),
|
|
2120
2108
|
"hide-details": n(o),
|
|
2121
2109
|
indeterminate: n(a),
|
|
2122
2110
|
inline: n(c),
|
|
@@ -2130,25 +2118,25 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2130
2118
|
});
|
|
2131
2119
|
};
|
|
2132
2120
|
}
|
|
2133
|
-
}),
|
|
2121
|
+
}), Hr = /* @__PURE__ */ T({
|
|
2134
2122
|
__name: "index",
|
|
2135
2123
|
props: {
|
|
2136
2124
|
node: {},
|
|
2137
2125
|
outer: { type: Boolean }
|
|
2138
2126
|
},
|
|
2139
2127
|
setup(t) {
|
|
2140
|
-
const e = t, i = Q(), { prop:
|
|
2128
|
+
const e = t, i = Q(), { prop: r } = s(e, ["settings", "text"]), { theme: l } = R(), { prop: o } = s(e, ["settings", "value"]), a = k(() => {
|
|
2141
2129
|
const c = {};
|
|
2142
2130
|
return i === "editor" && (c.pointerEvents = "none"), c;
|
|
2143
2131
|
});
|
|
2144
2132
|
return (c, p) => {
|
|
2145
2133
|
const b = A("v-tab");
|
|
2146
2134
|
return w(), z(n(X), { "fit-content": !0 }, {
|
|
2147
|
-
default:
|
|
2135
|
+
default: S(() => [
|
|
2148
2136
|
H(b, {
|
|
2149
2137
|
style: q(a.value),
|
|
2150
|
-
text: n(
|
|
2151
|
-
theme: n(
|
|
2138
|
+
text: n(r),
|
|
2139
|
+
theme: n(l),
|
|
2152
2140
|
value: n(o)
|
|
2153
2141
|
}, null, 8, ["style", "text", "theme", "value"])
|
|
2154
2142
|
]),
|
|
@@ -2156,18 +2144,18 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2156
2144
|
});
|
|
2157
2145
|
};
|
|
2158
2146
|
}
|
|
2159
|
-
}),
|
|
2147
|
+
}), jr = /* @__PURE__ */ T({
|
|
2160
2148
|
__name: "index",
|
|
2161
2149
|
props: {
|
|
2162
2150
|
node: {},
|
|
2163
2151
|
outer: { type: Boolean }
|
|
2164
2152
|
},
|
|
2165
2153
|
setup(t) {
|
|
2166
|
-
const e = t, { prop: i } = s(e, ["settings", "alignTabs"]), { prop:
|
|
2154
|
+
const e = t, { prop: i } = s(e, ["settings", "alignTabs"]), { prop: r } = s(e, [
|
|
2167
2155
|
"settings",
|
|
2168
2156
|
"color",
|
|
2169
2157
|
"backgroundColor"
|
|
2170
|
-
]), { color:
|
|
2158
|
+
]), { color: l } = U(r), { prop: o } = s(e, [
|
|
2171
2159
|
"settings",
|
|
2172
2160
|
"centerActive"
|
|
2173
2161
|
]), { prop: a } = s(e, [
|
|
@@ -2185,7 +2173,7 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2185
2173
|
modelValue: n(N),
|
|
2186
2174
|
"onUpdate:modelValue": B[0] || (B[0] = (M) => G(N) ? N.value = M : null),
|
|
2187
2175
|
"align-tabs": n(i),
|
|
2188
|
-
"bg-color": n(
|
|
2176
|
+
"bg-color": n(l),
|
|
2189
2177
|
"center-active": n(o),
|
|
2190
2178
|
color: n(c),
|
|
2191
2179
|
density: n(p),
|
|
@@ -2201,46 +2189,46 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2201
2189
|
stacked: n(I),
|
|
2202
2190
|
theme: n($)
|
|
2203
2191
|
}, {
|
|
2204
|
-
default:
|
|
2192
|
+
default: S(() => [
|
|
2205
2193
|
E(D.$slots, "default")
|
|
2206
2194
|
]),
|
|
2207
2195
|
_: 3
|
|
2208
2196
|
}, 8, ["modelValue", "align-tabs", "bg-color", "center-active", "color", "density", "direction", "disabled", "fixed-tabs", "grow", "hide-slider", "items", "mandatory", "show-arrows", "slider-color", "stacked", "theme"]);
|
|
2209
2197
|
};
|
|
2210
2198
|
}
|
|
2211
|
-
}),
|
|
2199
|
+
}), Gr = /* @__PURE__ */ T({
|
|
2212
2200
|
__name: "index",
|
|
2213
2201
|
props: {
|
|
2214
2202
|
node: {},
|
|
2215
2203
|
outer: { type: Boolean }
|
|
2216
2204
|
},
|
|
2217
2205
|
setup(t) {
|
|
2218
|
-
const e = t, i = ke(), { prop:
|
|
2206
|
+
const e = t, i = ke(), { prop: r } = s(e, ["settings", "align"]), { prop: l } = s(e, ["settings", "decoration"]), { prop: o } = s(e, ["settings", "emphasis"]), { prop: a } = s(e, ["settings", "italic"]), { prop: c } = s(e, ["settings", "text"]), { prop: p } = s(e, ["settings", "weight"]), b = k(() => {
|
|
2219
2207
|
const u = [], d = Vi(i.value.width), m = ye(d, e.node.settings?.style);
|
|
2220
|
-
return m && u.push(`text-${m}`), o.value === "high" ? u.push("text-high-emphasis") : o.value === "medium" ? u.push("text-medium-emphasis") : o.value === "disabled" && u.push("text-disabled"),
|
|
2208
|
+
return m && u.push(`text-${m}`), o.value === "high" ? u.push("text-high-emphasis") : o.value === "medium" ? u.push("text-medium-emphasis") : o.value === "disabled" && u.push("text-disabled"), r.value && u.push(`font-${r.value}`), l.value && u.push(`text-decoration-${l.value}`), p.value && u.push(`font-weight-${p.value}`), a.value && u.push("font-italic"), u.join(" ");
|
|
2221
2209
|
});
|
|
2222
2210
|
return (u, d) => (w(), ne("span", {
|
|
2223
2211
|
class: Zi(b.value)
|
|
2224
2212
|
}, qi(n(c)), 3));
|
|
2225
2213
|
}
|
|
2226
|
-
}),
|
|
2214
|
+
}), Ur = /* @__PURE__ */ T({
|
|
2227
2215
|
__name: "index",
|
|
2228
2216
|
props: {
|
|
2229
2217
|
node: {},
|
|
2230
2218
|
outer: { type: Boolean }
|
|
2231
2219
|
},
|
|
2232
2220
|
setup(t) {
|
|
2233
|
-
const e = t, { prop: i } = s(e, ["settings", "autoGrow"]), { prop:
|
|
2221
|
+
const e = t, { prop: i } = s(e, ["settings", "autoGrow"]), { prop: r } = s(e, ["settings", "clearable"]), { prop: l } = s(e, ["settings", "density"]), { prop: o } = s(e, ["settings", "disabled"]), { prop: a } = s(e, ["settings", "label"]), { prop: c } = s(e, ["settings", "loading"]), { prop: p } = s(e, ["settings", "maxRows"]), { prop: b } = s(e, ["settings", "placeholder"]), { prop: u } = s(e, ["settings", "readonly"]), { prop: d } = s(e, ["settings", "reverse"]), { prop: m } = s(e, ["settings", "rows"]), { prop: f } = s(e, ["settings", "singleLine"]), { theme: h } = R(), { prop: x } = s(e, ["settings", "value"]), { prop: g } = s(e, ["settings", "variant"]);
|
|
2234
2222
|
return (_, v) => {
|
|
2235
2223
|
const I = A("v-textarea");
|
|
2236
2224
|
return w(), z(n(X), null, {
|
|
2237
|
-
default:
|
|
2225
|
+
default: S(() => [
|
|
2238
2226
|
H(I, {
|
|
2239
2227
|
modelValue: n(x),
|
|
2240
2228
|
"onUpdate:modelValue": v[0] || (v[0] = ($) => G(x) ? x.value = $ : null),
|
|
2241
2229
|
"auto-grow": n(i),
|
|
2242
|
-
clearable: n(
|
|
2243
|
-
density: n(
|
|
2230
|
+
clearable: n(r),
|
|
2231
|
+
density: n(l),
|
|
2244
2232
|
disabled: n(o),
|
|
2245
2233
|
label: n(a),
|
|
2246
2234
|
loading: n(c),
|
|
@@ -2258,17 +2246,17 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2258
2246
|
});
|
|
2259
2247
|
};
|
|
2260
2248
|
}
|
|
2261
|
-
}),
|
|
2249
|
+
}), Or = /* @__PURE__ */ T({
|
|
2262
2250
|
__name: "index",
|
|
2263
2251
|
props: {
|
|
2264
2252
|
node: {},
|
|
2265
2253
|
outer: { type: Boolean }
|
|
2266
2254
|
},
|
|
2267
2255
|
setup(t) {
|
|
2268
|
-
const e = t, { prop: i } = s(e, ["settings", "appendIcon"]), { prop:
|
|
2256
|
+
const e = t, { prop: i } = s(e, ["settings", "appendIcon"]), { prop: r } = s(e, [
|
|
2269
2257
|
"settings",
|
|
2270
2258
|
"appendInnerIcon"
|
|
2271
|
-
]), { prop:
|
|
2259
|
+
]), { prop: l } = s(e, ["settings", "autofocus"]), { prop: o } = s(e, ["settings", "clearable"]), { prop: a } = s(e, ["settings", "density"]), { prop: c } = s(e, ["settings", "disabled"]), { prop: p } = s(e, ["settings", "hideDetails"]), { prop: b } = s(e, ["settings", "label"]), { prop: u } = s(e, ["settings", "loading"]), { prop: d } = s(e, ["settings", "placeholder"]), { prop: m } = s(e, ["settings", "prefix"]), { prop: f } = s(e, ["settings", "prependIcon"]), { prop: h } = s(e, [
|
|
2272
2260
|
"settings",
|
|
2273
2261
|
"prependInnerIcon"
|
|
2274
2262
|
]), { prop: x } = s(e, ["settings", "readonly"]), { prop: g } = s(e, ["settings", "reverse"]), { prop: _ } = s(e, ["settings", "singleLine"]), { prop: v } = s(e, ["settings", "suffix"]), { theme: I } = R(), { prop: $ } = s(e, ["settings", "value"]), { prop: N } = s(e, ["settings", "variant"]), { prop: D } = s(e, ["slots", "append"]), { prop: B } = s(e, [
|
|
@@ -2281,13 +2269,13 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2281
2269
|
return (J, j) => {
|
|
2282
2270
|
const Y = A("v-text-field");
|
|
2283
2271
|
return w(), z(n(X), null, {
|
|
2284
|
-
default:
|
|
2272
|
+
default: S(() => [
|
|
2285
2273
|
H(Y, {
|
|
2286
2274
|
modelValue: n($),
|
|
2287
2275
|
"onUpdate:modelValue": j[0] || (j[0] = (Z) => G($) ? $.value = Z : null),
|
|
2288
2276
|
"append-icon": n(i),
|
|
2289
|
-
"append-inner-icon": n(
|
|
2290
|
-
autofocus: n(
|
|
2277
|
+
"append-inner-icon": n(r),
|
|
2278
|
+
autofocus: n(l),
|
|
2291
2279
|
clearable: n(o),
|
|
2292
2280
|
density: n(a),
|
|
2293
2281
|
disabled: n(c),
|
|
@@ -2307,8 +2295,8 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2307
2295
|
}, Jt({ _: 2 }, [
|
|
2308
2296
|
n(D) ? {
|
|
2309
2297
|
name: "append",
|
|
2310
|
-
fn:
|
|
2311
|
-
H(n(
|
|
2298
|
+
fn: S(() => [
|
|
2299
|
+
H(n(re), {
|
|
2312
2300
|
"ref-context": { refid: n(D) },
|
|
2313
2301
|
state: {}
|
|
2314
2302
|
}, null, 8, ["ref-context"])
|
|
@@ -2317,8 +2305,8 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2317
2305
|
} : void 0,
|
|
2318
2306
|
n(B) ? {
|
|
2319
2307
|
name: "append-inner",
|
|
2320
|
-
fn:
|
|
2321
|
-
H(n(
|
|
2308
|
+
fn: S(() => [
|
|
2309
|
+
H(n(re), {
|
|
2322
2310
|
"ref-context": { refid: n(B) },
|
|
2323
2311
|
state: {}
|
|
2324
2312
|
}, null, 8, ["ref-context"])
|
|
@@ -2327,8 +2315,8 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2327
2315
|
} : void 0,
|
|
2328
2316
|
n(V) ? {
|
|
2329
2317
|
name: "prepend",
|
|
2330
|
-
fn:
|
|
2331
|
-
H(n(
|
|
2318
|
+
fn: S(() => [
|
|
2319
|
+
H(n(re), {
|
|
2332
2320
|
"ref-context": { refid: n(V) },
|
|
2333
2321
|
state: {}
|
|
2334
2322
|
}, null, 8, ["ref-context"])
|
|
@@ -2337,8 +2325,8 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2337
2325
|
} : void 0,
|
|
2338
2326
|
n(M) ? {
|
|
2339
2327
|
name: "prepend-inner",
|
|
2340
|
-
fn:
|
|
2341
|
-
H(n(
|
|
2328
|
+
fn: S(() => [
|
|
2329
|
+
H(n(re), {
|
|
2342
2330
|
"ref-context": { refid: n(M) },
|
|
2343
2331
|
state: {}
|
|
2344
2332
|
}, null, 8, ["ref-context"])
|
|
@@ -2351,14 +2339,14 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2351
2339
|
});
|
|
2352
2340
|
};
|
|
2353
2341
|
}
|
|
2354
|
-
}),
|
|
2342
|
+
}), Kr = /* @__PURE__ */ T({
|
|
2355
2343
|
__name: "index",
|
|
2356
2344
|
props: {
|
|
2357
2345
|
node: {},
|
|
2358
2346
|
outer: { type: Boolean }
|
|
2359
2347
|
},
|
|
2360
2348
|
setup(t) {
|
|
2361
|
-
const e = t, { prop: i } = s(e, ["settings", "align"]), { prop:
|
|
2349
|
+
const e = t, { prop: i } = s(e, ["settings", "align"]), { prop: r } = s(e, ["settings", "density"]), { prop: l } = s(e, ["settings", "direction"]), { prop: o } = s(e, [
|
|
2362
2350
|
"settings",
|
|
2363
2351
|
"dot",
|
|
2364
2352
|
"color"
|
|
@@ -2382,8 +2370,8 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2382
2370
|
const v = A("v-timeline");
|
|
2383
2371
|
return w(), z(v, {
|
|
2384
2372
|
align: n(i),
|
|
2385
|
-
density: n(
|
|
2386
|
-
direction: n(
|
|
2373
|
+
density: n(r),
|
|
2374
|
+
direction: n(l),
|
|
2387
2375
|
"dot-color": n(a),
|
|
2388
2376
|
"fill-dot": n(c),
|
|
2389
2377
|
"hide-opposite": n(p),
|
|
@@ -2394,62 +2382,62 @@ const Fl = /* @__PURE__ */ be(Dl, [["render", El]]), Ml = /* @__PURE__ */ S({
|
|
|
2394
2382
|
theme: n(x),
|
|
2395
2383
|
"truncate-line": n(h)
|
|
2396
2384
|
}, {
|
|
2397
|
-
default:
|
|
2385
|
+
default: S(() => [
|
|
2398
2386
|
E(g.$slots, "default")
|
|
2399
2387
|
]),
|
|
2400
2388
|
_: 3
|
|
2401
2389
|
}, 8, ["align", "density", "direction", "dot-color", "fill-dot", "hide-opposite", "line-color", "line-inset", "line-thickness", "side", "theme", "truncate-line"]);
|
|
2402
2390
|
};
|
|
2403
2391
|
}
|
|
2404
|
-
}),
|
|
2405
|
-
function
|
|
2392
|
+
}), Jr = {};
|
|
2393
|
+
function Xr(t, e) {
|
|
2406
2394
|
const i = A("v-timeline-item");
|
|
2407
2395
|
return w(), z(i, null, {
|
|
2408
|
-
default:
|
|
2396
|
+
default: S(() => [
|
|
2409
2397
|
E(t.$slots, "default")
|
|
2410
2398
|
]),
|
|
2411
2399
|
_: 3
|
|
2412
2400
|
});
|
|
2413
2401
|
}
|
|
2414
|
-
const
|
|
2402
|
+
const Yr = /* @__PURE__ */ be(Jr, [["render", Xr]]), Zr = /* @__PURE__ */ T({
|
|
2415
2403
|
__name: "index",
|
|
2416
2404
|
props: {
|
|
2417
2405
|
node: {},
|
|
2418
2406
|
outer: { type: Boolean }
|
|
2419
2407
|
},
|
|
2420
2408
|
setup(t) {
|
|
2421
|
-
const e = t, { prop: i } = s(e, ["settings", "continuous"]), { prop:
|
|
2409
|
+
const e = t, { prop: i } = s(e, ["settings", "continuous"]), { prop: r } = s(e, ["settings", "disabled"]), { prop: l } = s(e, ["settings", "direction"]), { prop: o } = s(e, ["settings", "reverse"]), { prop: a } = s(e, ["settings", "showArrows"]), { prop: c } = s(e, ["settings", "touch"]), { theme: p } = R(), { prop: b } = s(e, ["settings", "value"]);
|
|
2422
2410
|
return (u, d) => {
|
|
2423
2411
|
const m = A("v-window");
|
|
2424
2412
|
return w(), z(m, {
|
|
2425
2413
|
modelValue: n(b),
|
|
2426
2414
|
"onUpdate:modelValue": d[0] || (d[0] = (f) => G(b) ? b.value = f : null),
|
|
2427
2415
|
continuous: n(i),
|
|
2428
|
-
direction: n(
|
|
2429
|
-
disabled: n(
|
|
2416
|
+
direction: n(l),
|
|
2417
|
+
disabled: n(r),
|
|
2430
2418
|
reverse: n(o),
|
|
2431
2419
|
"show-arrows": n(a),
|
|
2432
2420
|
theme: n(p),
|
|
2433
2421
|
touch: n(c)
|
|
2434
2422
|
}, {
|
|
2435
|
-
default:
|
|
2423
|
+
default: S(() => [
|
|
2436
2424
|
E(u.$slots, "default")
|
|
2437
2425
|
]),
|
|
2438
2426
|
_: 3
|
|
2439
2427
|
}, 8, ["modelValue", "continuous", "direction", "disabled", "reverse", "show-arrows", "theme", "touch"]);
|
|
2440
2428
|
};
|
|
2441
2429
|
}
|
|
2442
|
-
}),
|
|
2443
|
-
function
|
|
2430
|
+
}), qr = {};
|
|
2431
|
+
function Qr(t, e) {
|
|
2444
2432
|
const i = A("v-window-item");
|
|
2445
2433
|
return w(), z(i, null, {
|
|
2446
|
-
default:
|
|
2434
|
+
default: S(() => [
|
|
2447
2435
|
E(t.$slots, "default")
|
|
2448
2436
|
]),
|
|
2449
2437
|
_: 3
|
|
2450
2438
|
});
|
|
2451
2439
|
}
|
|
2452
|
-
const
|
|
2440
|
+
const el = /* @__PURE__ */ be(qr, [["render", Qr]]), Ni = "badge_v1", mn = "breadcrumbs_v1", Fe = "bar_chart_v1", Me = "btn_v1", He = "btn_group_v1", je = "btn_toggle_v1", Ge = "card_v1", Ue = "checkbox_v1", Oe = "chip_v1", Ke = "chip_group_v1", Je = "color_picker_v1", Xe = "combobox_v1", Ye = "container_v1", Ze = "data_table_v1", qe = "date_picker_v1", Qe = "dialog_v1", et = "file_input_v1", tt = "flex_layout_v1", Ri = "flex_layout_entry_v1", nt = "form_v1", it = "icon_v1", ot = "globality_v1", st = "line_chart_v1", rt = "menu_v1", pn = "multiple_ref_v1", lt = "number_input_v1", at = "pagination_v1", Di = "radio_v1", ut = "radio_group_v1", ct = "range_slider_v1", dt = "rating_v1", fn = "render_switch_v1", mt = "select_v1", Pe = "single_ref_v1", pt = "slider_v1", ft = "stepper_v1", Ei = "stepper_header_v1", Fi = "stepper_item_v1", Mi = "stepper_window_v1", Hi = "stepper_window_item_v1", bt = "switch_v1", ji = "tab_v1", bn = "table_v1", yt = "tabs_v1", ht = "text_v1", gt = "textarea_v1", xt = "text_field_v1", vt = "timeline_v1", Gi = "timeline_item_v1", kt = "window_v1", Ui = "window_item_v1", y = {
|
|
2453
2441
|
key: "basic",
|
|
2454
2442
|
name: "x-runtime-lib.basic",
|
|
2455
2443
|
children: [
|
|
@@ -2511,7 +2499,7 @@ const tr = /* @__PURE__ */ be(Ql, [["render", er]]), Ni = "badge_v1", mn = "brea
|
|
|
2511
2499
|
]
|
|
2512
2500
|
}
|
|
2513
2501
|
]
|
|
2514
|
-
},
|
|
2502
|
+
}, tl = F(K), me = {
|
|
2515
2503
|
key: "border",
|
|
2516
2504
|
name: "x-runtime-lib.border",
|
|
2517
2505
|
children: [
|
|
@@ -2529,7 +2517,7 @@ const tr = /* @__PURE__ */ be(Ql, [["render", er]]), Ni = "badge_v1", mn = "brea
|
|
|
2529
2517
|
types: "borderWidthTypesV1",
|
|
2530
2518
|
default: ""
|
|
2531
2519
|
},
|
|
2532
|
-
|
|
2520
|
+
tl,
|
|
2533
2521
|
{
|
|
2534
2522
|
key: "roundRadius",
|
|
2535
2523
|
name: "x-runtime-lib.roundRadius",
|
|
@@ -2793,19 +2781,19 @@ const tr = /* @__PURE__ */ be(Ql, [["render", er]]), Ni = "badge_v1", mn = "brea
|
|
|
2793
2781
|
}
|
|
2794
2782
|
]
|
|
2795
2783
|
};
|
|
2796
|
-
function
|
|
2797
|
-
const i = `type=${t} subtype=${e}`,
|
|
2798
|
-
if (!
|
|
2784
|
+
function nl(t, e) {
|
|
2785
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
2786
|
+
if (!r) {
|
|
2799
2787
|
console.error(`barChartV1/spawn prop tag not found, ${i}`);
|
|
2800
2788
|
return;
|
|
2801
2789
|
}
|
|
2802
|
-
const
|
|
2803
|
-
if (!
|
|
2790
|
+
const l = _t.props[r];
|
|
2791
|
+
if (!l) {
|
|
2804
2792
|
console.error(`barChartV1/spawn props not found, ${i}`);
|
|
2805
2793
|
return;
|
|
2806
2794
|
}
|
|
2807
2795
|
const o = {};
|
|
2808
|
-
return W(o,
|
|
2796
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = _t.key, o.size.height = "300px", o.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], o.series = [
|
|
2809
2797
|
{
|
|
2810
2798
|
type: "bar",
|
|
2811
2799
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -2836,7 +2824,7 @@ const yn = {
|
|
|
2836
2824
|
}, _t = {
|
|
2837
2825
|
key: Fe,
|
|
2838
2826
|
name: "x-runtime-lib.barChart",
|
|
2839
|
-
comp:
|
|
2827
|
+
comp: Rs,
|
|
2840
2828
|
props: {
|
|
2841
2829
|
pageCommon: [y, O, Ve, $e, Ie, we, yn],
|
|
2842
2830
|
compCommon: [y, O, Ve, $e, Ie, we, yn]
|
|
@@ -2845,22 +2833,22 @@ const yn = {
|
|
|
2845
2833
|
methods: [],
|
|
2846
2834
|
slots: [],
|
|
2847
2835
|
leaf: !0,
|
|
2848
|
-
spawn:
|
|
2836
|
+
spawn: nl
|
|
2849
2837
|
};
|
|
2850
2838
|
C(_t);
|
|
2851
|
-
function
|
|
2852
|
-
const i = `type=${t} subtype=${e}`,
|
|
2853
|
-
if (!
|
|
2839
|
+
function il(t, e) {
|
|
2840
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
2841
|
+
if (!r) {
|
|
2854
2842
|
console.error(`lineChartV1/spawn prop tag not found, ${i}`);
|
|
2855
2843
|
return;
|
|
2856
2844
|
}
|
|
2857
|
-
const
|
|
2858
|
-
if (!
|
|
2845
|
+
const l = wt.props[r];
|
|
2846
|
+
if (!l) {
|
|
2859
2847
|
console.error(`lineChartV1/spawn props not found, ${i}`);
|
|
2860
2848
|
return;
|
|
2861
2849
|
}
|
|
2862
2850
|
const o = {};
|
|
2863
|
-
return W(o,
|
|
2851
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = wt.key, o.size.height = "300px", o.xAxis.data = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], o.series = [
|
|
2864
2852
|
{
|
|
2865
2853
|
type: "line",
|
|
2866
2854
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
@@ -2891,7 +2879,7 @@ const hn = {
|
|
|
2891
2879
|
}, wt = {
|
|
2892
2880
|
key: st,
|
|
2893
2881
|
name: "x-runtime-lib.lineChart",
|
|
2894
|
-
comp:
|
|
2882
|
+
comp: Ds,
|
|
2895
2883
|
props: {
|
|
2896
2884
|
pageCommon: [y, O, Ve, $e, Ie, we, hn],
|
|
2897
2885
|
compCommon: [y, O, Ve, $e, Ie, we, hn]
|
|
@@ -2900,7 +2888,7 @@ const hn = {
|
|
|
2900
2888
|
methods: [],
|
|
2901
2889
|
slots: [],
|
|
2902
2890
|
leaf: !0,
|
|
2903
|
-
spawn:
|
|
2891
|
+
spawn: il
|
|
2904
2892
|
};
|
|
2905
2893
|
C(wt);
|
|
2906
2894
|
const Qt = F(K);
|
|
@@ -2914,7 +2902,7 @@ const gn = {
|
|
|
2914
2902
|
key: "settings",
|
|
2915
2903
|
name: "x-runtime-lib.settings",
|
|
2916
2904
|
children: []
|
|
2917
|
-
},
|
|
2905
|
+
}, ol = {
|
|
2918
2906
|
key: ot,
|
|
2919
2907
|
name: "x-runtime-lib.globality",
|
|
2920
2908
|
comp: null,
|
|
@@ -2962,7 +2950,7 @@ const gn = {
|
|
|
2962
2950
|
slots: [],
|
|
2963
2951
|
internal: !0
|
|
2964
2952
|
};
|
|
2965
|
-
C(
|
|
2953
|
+
C(ol);
|
|
2966
2954
|
const vn = {
|
|
2967
2955
|
key: "settings",
|
|
2968
2956
|
name: "x-runtime-lib.settings",
|
|
@@ -2998,10 +2986,10 @@ const vn = {
|
|
|
2998
2986
|
default: !1
|
|
2999
2987
|
}
|
|
3000
2988
|
]
|
|
3001
|
-
},
|
|
2989
|
+
}, Za = {
|
|
3002
2990
|
key: Ni,
|
|
3003
2991
|
name: "x-runtime-lib.badge",
|
|
3004
|
-
comp:
|
|
2992
|
+
comp: qs,
|
|
3005
2993
|
props: {
|
|
3006
2994
|
pageCommon: [y, vn],
|
|
3007
2995
|
compCommon: [y, vn]
|
|
@@ -3010,21 +2998,21 @@ const vn = {
|
|
|
3010
2998
|
methods: [],
|
|
3011
2999
|
slots: []
|
|
3012
3000
|
};
|
|
3013
|
-
function
|
|
3014
|
-
const i = `type=${t} subtype=${e}`,
|
|
3015
|
-
if (!
|
|
3001
|
+
function sl(t, e) {
|
|
3002
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
3003
|
+
if (!r) {
|
|
3016
3004
|
console.error(`btnV1/spawn prop tag not found, ${i}`);
|
|
3017
3005
|
return;
|
|
3018
3006
|
}
|
|
3019
|
-
const
|
|
3020
|
-
if (!
|
|
3007
|
+
const l = Vt.props[r];
|
|
3008
|
+
if (!l) {
|
|
3021
3009
|
console.error(`btnV1/spawn props not found, ${i}`);
|
|
3022
3010
|
return;
|
|
3023
3011
|
}
|
|
3024
3012
|
const o = {};
|
|
3025
|
-
return W(o,
|
|
3013
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Vt.key, o.settings.text = "button", o;
|
|
3026
3014
|
}
|
|
3027
|
-
const
|
|
3015
|
+
const rl = F(K), kn = {
|
|
3028
3016
|
key: "settings",
|
|
3029
3017
|
name: "x-runtime-lib.settings",
|
|
3030
3018
|
children: [
|
|
@@ -3103,7 +3091,7 @@ const rr = F(K), kn = {
|
|
|
3103
3091
|
ui: "switch",
|
|
3104
3092
|
default: !1
|
|
3105
3093
|
},
|
|
3106
|
-
|
|
3094
|
+
rl,
|
|
3107
3095
|
{
|
|
3108
3096
|
key: "ripple",
|
|
3109
3097
|
name: "x-runtime-lib.ripple",
|
|
@@ -3114,7 +3102,7 @@ const rr = F(K), kn = {
|
|
|
3114
3102
|
}, Vt = {
|
|
3115
3103
|
key: Me,
|
|
3116
3104
|
name: "x-runtime-lib.button",
|
|
3117
|
-
comp:
|
|
3105
|
+
comp: Qs,
|
|
3118
3106
|
props: {
|
|
3119
3107
|
pageCommon: [y, O, kn],
|
|
3120
3108
|
compCommon: [y, O, kn]
|
|
@@ -3129,13 +3117,13 @@ const rr = F(K), kn = {
|
|
|
3129
3117
|
methods: [],
|
|
3130
3118
|
slots: [],
|
|
3131
3119
|
leaf: !0,
|
|
3132
|
-
spawn:
|
|
3120
|
+
spawn: sl
|
|
3133
3121
|
};
|
|
3134
3122
|
C(Vt);
|
|
3135
|
-
const
|
|
3123
|
+
const ll = {
|
|
3136
3124
|
key: He,
|
|
3137
3125
|
name: "x-runtime-lib.buttonGroup",
|
|
3138
|
-
comp:
|
|
3126
|
+
comp: nr,
|
|
3139
3127
|
props: {
|
|
3140
3128
|
pageCommon: [y],
|
|
3141
3129
|
compCommon: [y]
|
|
@@ -3144,7 +3132,7 @@ const ar = {
|
|
|
3144
3132
|
methods: [],
|
|
3145
3133
|
slots: []
|
|
3146
3134
|
};
|
|
3147
|
-
C(
|
|
3135
|
+
C(ll);
|
|
3148
3136
|
const _n = {
|
|
3149
3137
|
key: "settings",
|
|
3150
3138
|
name: "x-runtime-lib.settings",
|
|
@@ -3206,10 +3194,10 @@ const _n = {
|
|
|
3206
3194
|
default: !1
|
|
3207
3195
|
}
|
|
3208
3196
|
]
|
|
3209
|
-
},
|
|
3197
|
+
}, al = {
|
|
3210
3198
|
key: je,
|
|
3211
3199
|
name: "x-runtime-lib.buttonToggle",
|
|
3212
|
-
comp:
|
|
3200
|
+
comp: ir,
|
|
3213
3201
|
props: {
|
|
3214
3202
|
pageCommon: [y, _n],
|
|
3215
3203
|
compCommon: [y, _n]
|
|
@@ -3218,20 +3206,20 @@ const _n = {
|
|
|
3218
3206
|
methods: [],
|
|
3219
3207
|
slots: []
|
|
3220
3208
|
};
|
|
3221
|
-
C(
|
|
3222
|
-
function
|
|
3223
|
-
const i = `type=${t} subtype=${e}`,
|
|
3224
|
-
if (!
|
|
3209
|
+
C(al);
|
|
3210
|
+
function ul(t, e) {
|
|
3211
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
3212
|
+
if (!r) {
|
|
3225
3213
|
console.error(`cardV1/spawn prop tag not found, ${i}`);
|
|
3226
3214
|
return;
|
|
3227
3215
|
}
|
|
3228
|
-
const
|
|
3229
|
-
if (!
|
|
3216
|
+
const l = xe.props[r];
|
|
3217
|
+
if (!l) {
|
|
3230
3218
|
console.error(`cardV1/spawn props not found, ${i}`);
|
|
3231
3219
|
return;
|
|
3232
3220
|
}
|
|
3233
3221
|
const o = {};
|
|
3234
|
-
return W(o,
|
|
3222
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = xe.key, o.children = [], o.settings.title = "title", o.settings.subtitle = "subtitle", o.settings.text = "text", o;
|
|
3235
3223
|
}
|
|
3236
3224
|
const wn = {
|
|
3237
3225
|
key: "settings",
|
|
@@ -3291,7 +3279,7 @@ const wn = {
|
|
|
3291
3279
|
}, xe = {
|
|
3292
3280
|
key: Ge,
|
|
3293
3281
|
name: "x-runtime-lib.card",
|
|
3294
|
-
comp:
|
|
3282
|
+
comp: or,
|
|
3295
3283
|
props: {
|
|
3296
3284
|
pageCommon: [y, O, wn],
|
|
3297
3285
|
compCommon: [y, O, wn]
|
|
@@ -3299,7 +3287,7 @@ const wn = {
|
|
|
3299
3287
|
events: [],
|
|
3300
3288
|
methods: [],
|
|
3301
3289
|
slots: [],
|
|
3302
|
-
spawn:
|
|
3290
|
+
spawn: ul
|
|
3303
3291
|
};
|
|
3304
3292
|
C(xe);
|
|
3305
3293
|
const Vn = {
|
|
@@ -3319,10 +3307,10 @@ const Vn = {
|
|
|
3319
3307
|
default: ""
|
|
3320
3308
|
}
|
|
3321
3309
|
]
|
|
3322
|
-
},
|
|
3310
|
+
}, cl = {
|
|
3323
3311
|
key: Ue,
|
|
3324
3312
|
name: "x-runtime-lib.checkbox",
|
|
3325
|
-
comp:
|
|
3313
|
+
comp: sr,
|
|
3326
3314
|
props: {
|
|
3327
3315
|
pageCommon: [y, Vn],
|
|
3328
3316
|
compCommon: [y, Vn]
|
|
@@ -3332,8 +3320,8 @@ const Vn = {
|
|
|
3332
3320
|
slots: [],
|
|
3333
3321
|
leaf: !0
|
|
3334
3322
|
};
|
|
3335
|
-
C(
|
|
3336
|
-
const
|
|
3323
|
+
C(cl);
|
|
3324
|
+
const dl = F(K), $n = {
|
|
3337
3325
|
key: "settings",
|
|
3338
3326
|
name: "x-runtime-lib.settings",
|
|
3339
3327
|
children: [
|
|
@@ -3406,12 +3394,12 @@ const mr = F(K), $n = {
|
|
|
3406
3394
|
ui: "switch",
|
|
3407
3395
|
default: !1
|
|
3408
3396
|
},
|
|
3409
|
-
|
|
3397
|
+
dl
|
|
3410
3398
|
]
|
|
3411
3399
|
}, $t = {
|
|
3412
3400
|
key: Oe,
|
|
3413
3401
|
name: "x-runtime-lib.chip",
|
|
3414
|
-
comp:
|
|
3402
|
+
comp: rr,
|
|
3415
3403
|
props: {
|
|
3416
3404
|
pageCommon: [y, $n],
|
|
3417
3405
|
compCommon: [y, $n]
|
|
@@ -3422,19 +3410,19 @@ const mr = F(K), $n = {
|
|
|
3422
3410
|
leaf: !0
|
|
3423
3411
|
};
|
|
3424
3412
|
C($t);
|
|
3425
|
-
function
|
|
3426
|
-
const i = `type=${t} subtype=${e}`,
|
|
3427
|
-
if (!
|
|
3413
|
+
function ml(t, e) {
|
|
3414
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
3415
|
+
if (!r) {
|
|
3428
3416
|
console.error(`chipGroupV1/spawn prop tag not found, ${i}`);
|
|
3429
3417
|
return;
|
|
3430
3418
|
}
|
|
3431
|
-
const
|
|
3432
|
-
if (!
|
|
3419
|
+
const l = It.props[r];
|
|
3420
|
+
if (!l) {
|
|
3433
3421
|
console.error(`chipGroupV1/spawn props not found, ${i}`);
|
|
3434
3422
|
return;
|
|
3435
3423
|
}
|
|
3436
3424
|
const o = {};
|
|
3437
|
-
return W(o,
|
|
3425
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = It.key, o.children = [
|
|
3438
3426
|
de(t, e, "chip1", "chip 1"),
|
|
3439
3427
|
de(t, e, "chip2", "chip 2"),
|
|
3440
3428
|
de(t, e, "chip3", "chip 3"),
|
|
@@ -3443,19 +3431,19 @@ function pr(t, e) {
|
|
|
3443
3431
|
de(t, e, "chip6", "chip 6")
|
|
3444
3432
|
], o;
|
|
3445
3433
|
}
|
|
3446
|
-
function de(t, e, i,
|
|
3447
|
-
const
|
|
3434
|
+
function de(t, e, i, r) {
|
|
3435
|
+
const l = `type=${t} subtype=${e}`, o = L(t, e);
|
|
3448
3436
|
if (!o) {
|
|
3449
|
-
console.error(`chipGroupV1/spawnChip prop tag not found, ${
|
|
3437
|
+
console.error(`chipGroupV1/spawnChip prop tag not found, ${l}`);
|
|
3450
3438
|
return;
|
|
3451
3439
|
}
|
|
3452
3440
|
const a = $t.props[o];
|
|
3453
3441
|
if (!a) {
|
|
3454
|
-
console.error(`chipGroupV1/spawnChip props not found, ${
|
|
3442
|
+
console.error(`chipGroupV1/spawnChip props not found, ${l}`);
|
|
3455
3443
|
return;
|
|
3456
3444
|
}
|
|
3457
3445
|
const c = {};
|
|
3458
|
-
return W(c, a), c.basic.id = P(16), c.basic.key = $t.key, c.settings.value = i, c.settings.text =
|
|
3446
|
+
return W(c, a), c.basic.id = P(16), c.basic.key = $t.key, c.settings.value = i, c.settings.text = r, c;
|
|
3459
3447
|
}
|
|
3460
3448
|
const In = {
|
|
3461
3449
|
key: "settings",
|
|
@@ -3514,7 +3502,7 @@ const In = {
|
|
|
3514
3502
|
}, It = {
|
|
3515
3503
|
key: Ke,
|
|
3516
3504
|
name: "x-runtime-lib.chipGroup",
|
|
3517
|
-
comp:
|
|
3505
|
+
comp: lr,
|
|
3518
3506
|
props: {
|
|
3519
3507
|
pageCommon: [y, In],
|
|
3520
3508
|
compCommon: [y, In]
|
|
@@ -3522,13 +3510,13 @@ const In = {
|
|
|
3522
3510
|
events: [],
|
|
3523
3511
|
methods: [],
|
|
3524
3512
|
slots: [],
|
|
3525
|
-
spawn:
|
|
3513
|
+
spawn: ml
|
|
3526
3514
|
};
|
|
3527
3515
|
C(It);
|
|
3528
|
-
const
|
|
3516
|
+
const pl = {
|
|
3529
3517
|
key: Je,
|
|
3530
3518
|
name: "x-runtime-lib.colorPicker",
|
|
3531
|
-
comp:
|
|
3519
|
+
comp: ar,
|
|
3532
3520
|
props: {
|
|
3533
3521
|
pageCommon: [y],
|
|
3534
3522
|
compCommon: [y]
|
|
@@ -3538,7 +3526,7 @@ const fr = {
|
|
|
3538
3526
|
slots: [],
|
|
3539
3527
|
leaf: !0
|
|
3540
3528
|
};
|
|
3541
|
-
C(
|
|
3529
|
+
C(pl);
|
|
3542
3530
|
const Cn = {
|
|
3543
3531
|
key: "settings",
|
|
3544
3532
|
name: "x-runtime-lib.settings",
|
|
@@ -3580,10 +3568,10 @@ const Cn = {
|
|
|
3580
3568
|
default: !1
|
|
3581
3569
|
}
|
|
3582
3570
|
]
|
|
3583
|
-
},
|
|
3571
|
+
}, fl = {
|
|
3584
3572
|
key: Xe,
|
|
3585
3573
|
name: "x-runtime-lib.combobox",
|
|
3586
|
-
comp:
|
|
3574
|
+
comp: ur,
|
|
3587
3575
|
props: {
|
|
3588
3576
|
pageCommon: [y, Cn],
|
|
3589
3577
|
compCommon: [y, Cn]
|
|
@@ -3593,7 +3581,7 @@ const Cn = {
|
|
|
3593
3581
|
slots: [],
|
|
3594
3582
|
leaf: !0
|
|
3595
3583
|
};
|
|
3596
|
-
C(
|
|
3584
|
+
C(fl);
|
|
3597
3585
|
const en = F(K);
|
|
3598
3586
|
en.key = "backgroundColor";
|
|
3599
3587
|
en.name = "x-runtime-lib.backgroundColor";
|
|
@@ -3604,7 +3592,7 @@ const Sn = {
|
|
|
3604
3592
|
}, Ct = {
|
|
3605
3593
|
key: Ye,
|
|
3606
3594
|
name: "x-runtime-lib.container",
|
|
3607
|
-
comp:
|
|
3595
|
+
comp: cr,
|
|
3608
3596
|
props: {
|
|
3609
3597
|
pageCommon: [y, O, me, pe, fe, Sn],
|
|
3610
3598
|
compCommon: [y, O, me, pe, fe, Sn]
|
|
@@ -3772,10 +3760,10 @@ const Tn = {
|
|
|
3772
3760
|
defaultArray: []
|
|
3773
3761
|
}
|
|
3774
3762
|
]
|
|
3775
|
-
},
|
|
3763
|
+
}, bl = {
|
|
3776
3764
|
key: Ze,
|
|
3777
3765
|
name: "x-runtime-lib.dataTable",
|
|
3778
|
-
comp:
|
|
3766
|
+
comp: dr,
|
|
3779
3767
|
props: {
|
|
3780
3768
|
pageCommon: [y, Tn, zn, An],
|
|
3781
3769
|
compCommon: [y, Tn, zn, An]
|
|
@@ -3785,11 +3773,11 @@ const Tn = {
|
|
|
3785
3773
|
slots: [],
|
|
3786
3774
|
leaf: !0
|
|
3787
3775
|
};
|
|
3788
|
-
C(
|
|
3789
|
-
const
|
|
3776
|
+
C(bl);
|
|
3777
|
+
const yl = {
|
|
3790
3778
|
key: qe,
|
|
3791
3779
|
name: "x-runtime-lib.datePicker",
|
|
3792
|
-
comp:
|
|
3780
|
+
comp: fr,
|
|
3793
3781
|
props: {
|
|
3794
3782
|
pageCommon: [y],
|
|
3795
3783
|
compCommon: [y]
|
|
@@ -3799,11 +3787,11 @@ const hr = {
|
|
|
3799
3787
|
slots: [],
|
|
3800
3788
|
leaf: !0
|
|
3801
3789
|
};
|
|
3802
|
-
C(
|
|
3803
|
-
const
|
|
3790
|
+
C(yl);
|
|
3791
|
+
const hl = {
|
|
3804
3792
|
key: Qe,
|
|
3805
3793
|
name: "x-runtime-lib.dialog",
|
|
3806
|
-
comp:
|
|
3794
|
+
comp: yr,
|
|
3807
3795
|
props: {
|
|
3808
3796
|
pageCommon: [y],
|
|
3809
3797
|
compCommon: [y]
|
|
@@ -3826,15 +3814,15 @@ const gr = {
|
|
|
3826
3814
|
slots: [],
|
|
3827
3815
|
teleport: !0
|
|
3828
3816
|
};
|
|
3829
|
-
C(
|
|
3817
|
+
C(hl);
|
|
3830
3818
|
const Pn = {
|
|
3831
3819
|
key: "settings",
|
|
3832
3820
|
name: "x-runtime-lib.settings",
|
|
3833
3821
|
children: []
|
|
3834
|
-
},
|
|
3822
|
+
}, qa = {
|
|
3835
3823
|
key: et,
|
|
3836
3824
|
name: "x-runtime-lib.fileInput",
|
|
3837
|
-
comp:
|
|
3825
|
+
comp: hr,
|
|
3838
3826
|
props: {
|
|
3839
3827
|
pageCommon: [y, Pn],
|
|
3840
3828
|
compCommon: [y, Pn]
|
|
@@ -3863,7 +3851,7 @@ const Pn = {
|
|
|
3863
3851
|
}, St = {
|
|
3864
3852
|
key: Ri,
|
|
3865
3853
|
name: "x-runtime-lib.flexLayoutEntry",
|
|
3866
|
-
comp:
|
|
3854
|
+
comp: xr,
|
|
3867
3855
|
props: {
|
|
3868
3856
|
pageCommon: [y, O, Wn],
|
|
3869
3857
|
compCommon: [y, O, Wn]
|
|
@@ -3873,19 +3861,19 @@ const Pn = {
|
|
|
3873
3861
|
slots: []
|
|
3874
3862
|
};
|
|
3875
3863
|
C(St);
|
|
3876
|
-
function
|
|
3877
|
-
const i = `type=${t} subtype=${e}`,
|
|
3878
|
-
if (!
|
|
3864
|
+
function gl(t, e) {
|
|
3865
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
3866
|
+
if (!r) {
|
|
3879
3867
|
console.error(`flexLayoutV1/spawn prop tag not found, ${i}`);
|
|
3880
3868
|
return;
|
|
3881
3869
|
}
|
|
3882
|
-
const
|
|
3883
|
-
if (!
|
|
3870
|
+
const l = ve.props[r];
|
|
3871
|
+
if (!l) {
|
|
3884
3872
|
console.error(`flexLayoutV1/spawn props not found, ${i}`);
|
|
3885
3873
|
return;
|
|
3886
3874
|
}
|
|
3887
3875
|
const o = {};
|
|
3888
|
-
return W(o,
|
|
3876
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = ve.key, o.children = [
|
|
3889
3877
|
Tt(
|
|
3890
3878
|
t,
|
|
3891
3879
|
e,
|
|
@@ -3906,10 +3894,10 @@ function xr(t, e) {
|
|
|
3906
3894
|
"60px",
|
|
3907
3895
|
void 0
|
|
3908
3896
|
),
|
|
3909
|
-
|
|
3897
|
+
xl(t, e)
|
|
3910
3898
|
], o;
|
|
3911
3899
|
}
|
|
3912
|
-
function Tt(t, e, i,
|
|
3900
|
+
function Tt(t, e, i, r, l, o, a, c, p) {
|
|
3913
3901
|
const b = `type=${t} subtype=${e}`, u = L(t, e);
|
|
3914
3902
|
if (!u) {
|
|
3915
3903
|
console.error(
|
|
@@ -3923,16 +3911,16 @@ function Tt(t, e, i, l, r, o, a, c, p) {
|
|
|
3923
3911
|
return;
|
|
3924
3912
|
}
|
|
3925
3913
|
const m = {};
|
|
3926
|
-
return W(m, d), m.basic.id = P(16), m.basic.key = Ct.key,
|
|
3914
|
+
return W(m, d), m.basic.id = P(16), m.basic.key = Ct.key, r && (m.size.width = r), l && (m.size.minWidth = l), a && (m.size.height = a), c && (m.size.minHeight = c), console.log(m), i && (m.settings.backgroundColor.mode = "custom", m.settings.backgroundColor.custom.light = i, m.settings.backgroundColor.custom.dark = i), m.children = [], m;
|
|
3927
3915
|
}
|
|
3928
|
-
function
|
|
3929
|
-
const i = `type=${t} subtype=${e}`,
|
|
3930
|
-
if (!
|
|
3916
|
+
function xl(t, e) {
|
|
3917
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
3918
|
+
if (!r) {
|
|
3931
3919
|
console.error(`flexLayoutV1/spawnEntry prop tag not found, ${i}`);
|
|
3932
3920
|
return;
|
|
3933
3921
|
}
|
|
3934
|
-
const
|
|
3935
|
-
if (!
|
|
3922
|
+
const l = St.props[r];
|
|
3923
|
+
if (!l) {
|
|
3936
3924
|
console.error(`flexLayoutV1/spawnEntry props not found, ${i}`);
|
|
3937
3925
|
return;
|
|
3938
3926
|
}
|
|
@@ -3942,7 +3930,7 @@ function vr(t, e) {
|
|
|
3942
3930
|
key: ""
|
|
3943
3931
|
}
|
|
3944
3932
|
};
|
|
3945
|
-
return W(o,
|
|
3933
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = St.key, o.children = [
|
|
3946
3934
|
Tt(
|
|
3947
3935
|
t,
|
|
3948
3936
|
e,
|
|
@@ -4131,7 +4119,7 @@ const Ln = {
|
|
|
4131
4119
|
}, ve = {
|
|
4132
4120
|
key: tt,
|
|
4133
4121
|
name: "x-runtime-lib.flexLayout",
|
|
4134
|
-
comp:
|
|
4122
|
+
comp: gr,
|
|
4135
4123
|
props: {
|
|
4136
4124
|
pageCommon: [y, O, me, pe, fe, Ln],
|
|
4137
4125
|
compCommon: [y, O, me, pe, fe, Ln]
|
|
@@ -4145,7 +4133,7 @@ const Ln = {
|
|
|
4145
4133
|
],
|
|
4146
4134
|
methods: [],
|
|
4147
4135
|
slots: [],
|
|
4148
|
-
spawn:
|
|
4136
|
+
spawn: gl
|
|
4149
4137
|
};
|
|
4150
4138
|
C(ve);
|
|
4151
4139
|
const Bn = {
|
|
@@ -4301,7 +4289,7 @@ const Bn = {
|
|
|
4301
4289
|
}, zt = {
|
|
4302
4290
|
key: xt,
|
|
4303
4291
|
name: "x-runtime-lib.textField",
|
|
4304
|
-
comp:
|
|
4292
|
+
comp: Or,
|
|
4305
4293
|
props: {
|
|
4306
4294
|
pageCommon: [y, Bn, Nn],
|
|
4307
4295
|
compCommon: [y, Bn, Nn]
|
|
@@ -4337,33 +4325,33 @@ const Bn = {
|
|
|
4337
4325
|
leaf: !0
|
|
4338
4326
|
};
|
|
4339
4327
|
C(zt);
|
|
4340
|
-
function
|
|
4341
|
-
const i = `type=${t} subtype=${e}`,
|
|
4342
|
-
if (!
|
|
4328
|
+
function vl(t, e) {
|
|
4329
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
4330
|
+
if (!r) {
|
|
4343
4331
|
console.error(`formV1/spawn prop tag not found, ${i}`);
|
|
4344
4332
|
return;
|
|
4345
4333
|
}
|
|
4346
|
-
const
|
|
4347
|
-
if (!
|
|
4334
|
+
const l = At.props[r];
|
|
4335
|
+
if (!l) {
|
|
4348
4336
|
console.error(`formV1/spawn props not found, ${i}`);
|
|
4349
4337
|
return;
|
|
4350
4338
|
}
|
|
4351
4339
|
const o = {};
|
|
4352
|
-
return W(o,
|
|
4340
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = At.key, o.children = [kl(t, e)], o;
|
|
4353
4341
|
}
|
|
4354
|
-
function
|
|
4355
|
-
const i = `type=${t} subtype=${e}`,
|
|
4356
|
-
if (!
|
|
4342
|
+
function kl(t, e) {
|
|
4343
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
4344
|
+
if (!r) {
|
|
4357
4345
|
console.error(`formV1/spawnTextField prop tag not found, ${i}`);
|
|
4358
4346
|
return;
|
|
4359
4347
|
}
|
|
4360
|
-
const
|
|
4361
|
-
if (!
|
|
4348
|
+
const l = zt.props[r];
|
|
4349
|
+
if (!l) {
|
|
4362
4350
|
console.error(`formV1/spawnTextField props not found, ${i}`);
|
|
4363
4351
|
return;
|
|
4364
4352
|
}
|
|
4365
4353
|
const o = {};
|
|
4366
|
-
return W(o,
|
|
4354
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = zt.key, o;
|
|
4367
4355
|
}
|
|
4368
4356
|
const Rn = {
|
|
4369
4357
|
key: "settings",
|
|
@@ -4386,7 +4374,7 @@ const Rn = {
|
|
|
4386
4374
|
}, At = {
|
|
4387
4375
|
key: nt,
|
|
4388
4376
|
name: "x-runtime-lib.form",
|
|
4389
|
-
comp:
|
|
4377
|
+
comp: vr,
|
|
4390
4378
|
props: {
|
|
4391
4379
|
pageCommon: [y, O, me, pe, fe, Rn],
|
|
4392
4380
|
compCommon: [y, O, me, pe, fe, Rn]
|
|
@@ -4400,10 +4388,10 @@ const Rn = {
|
|
|
4400
4388
|
],
|
|
4401
4389
|
methods: [],
|
|
4402
4390
|
slots: [],
|
|
4403
|
-
spawn:
|
|
4391
|
+
spawn: vl
|
|
4404
4392
|
};
|
|
4405
4393
|
C(At);
|
|
4406
|
-
const
|
|
4394
|
+
const _l = F(K), Dn = {
|
|
4407
4395
|
key: "settings",
|
|
4408
4396
|
name: "x-runtime-lib.settings",
|
|
4409
4397
|
children: [
|
|
@@ -4426,12 +4414,12 @@ const wr = F(K), Dn = {
|
|
|
4426
4414
|
items: "sizeItemsV1",
|
|
4427
4415
|
default: "default"
|
|
4428
4416
|
},
|
|
4429
|
-
|
|
4417
|
+
_l
|
|
4430
4418
|
]
|
|
4431
|
-
},
|
|
4419
|
+
}, wl = {
|
|
4432
4420
|
key: it,
|
|
4433
4421
|
name: "x-runtime-lib.icon",
|
|
4434
|
-
comp:
|
|
4422
|
+
comp: kr,
|
|
4435
4423
|
props: {
|
|
4436
4424
|
pageCommon: [y, Dn],
|
|
4437
4425
|
compCommon: [y, Dn]
|
|
@@ -4441,11 +4429,11 @@ const wr = F(K), Dn = {
|
|
|
4441
4429
|
slots: [],
|
|
4442
4430
|
leaf: !0
|
|
4443
4431
|
};
|
|
4444
|
-
C(
|
|
4445
|
-
const
|
|
4446
|
-
key:
|
|
4432
|
+
C(wl);
|
|
4433
|
+
const Vl = {
|
|
4434
|
+
key: rt,
|
|
4447
4435
|
name: "x-runtime-lib.menu",
|
|
4448
|
-
comp:
|
|
4436
|
+
comp: wr,
|
|
4449
4437
|
props: {
|
|
4450
4438
|
pageCommon: [y],
|
|
4451
4439
|
compCommon: [y]
|
|
@@ -4468,20 +4456,20 @@ const $r = {
|
|
|
4468
4456
|
slots: [],
|
|
4469
4457
|
teleport: !0
|
|
4470
4458
|
};
|
|
4471
|
-
C(
|
|
4472
|
-
function
|
|
4473
|
-
const i = `type=${t} subtype=${e}`,
|
|
4474
|
-
if (!
|
|
4459
|
+
C(Vl);
|
|
4460
|
+
function $l(t, e) {
|
|
4461
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
4462
|
+
if (!r) {
|
|
4475
4463
|
console.error(`numberInputV1/spawn prop tag not found, ${i}`);
|
|
4476
4464
|
return;
|
|
4477
4465
|
}
|
|
4478
|
-
const
|
|
4479
|
-
if (!
|
|
4466
|
+
const l = Pt.props[r];
|
|
4467
|
+
if (!l) {
|
|
4480
4468
|
console.error(`numberInputV1/spawn props not found, ${i}`);
|
|
4481
4469
|
return;
|
|
4482
4470
|
}
|
|
4483
4471
|
const o = {};
|
|
4484
|
-
return W(o,
|
|
4472
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Pt.key, o.settings.label = "label", o.settings.placeholder = "placeholder", o;
|
|
4485
4473
|
}
|
|
4486
4474
|
const En = {
|
|
4487
4475
|
key: "size",
|
|
@@ -4651,9 +4639,9 @@ const En = {
|
|
|
4651
4639
|
}
|
|
4652
4640
|
]
|
|
4653
4641
|
}, Pt = {
|
|
4654
|
-
key:
|
|
4642
|
+
key: lt,
|
|
4655
4643
|
name: "x-runtime-lib.numberInput",
|
|
4656
|
-
comp:
|
|
4644
|
+
comp: Vr,
|
|
4657
4645
|
props: {
|
|
4658
4646
|
pageCommon: [y, En, Fn],
|
|
4659
4647
|
compCommon: [y, En, Fn]
|
|
@@ -4688,7 +4676,7 @@ const En = {
|
|
|
4688
4676
|
methods: [],
|
|
4689
4677
|
slots: [],
|
|
4690
4678
|
leaf: !0,
|
|
4691
|
-
spawn:
|
|
4679
|
+
spawn: $l
|
|
4692
4680
|
};
|
|
4693
4681
|
C(Pt);
|
|
4694
4682
|
const Mn = {
|
|
@@ -4754,10 +4742,10 @@ const Mn = {
|
|
|
4754
4742
|
default: !1
|
|
4755
4743
|
}
|
|
4756
4744
|
]
|
|
4757
|
-
},
|
|
4745
|
+
}, Il = {
|
|
4758
4746
|
key: at,
|
|
4759
4747
|
name: "x-runtime-lib.pagination",
|
|
4760
|
-
comp:
|
|
4748
|
+
comp: $r,
|
|
4761
4749
|
props: {
|
|
4762
4750
|
pageCommon: [y, Mn],
|
|
4763
4751
|
compCommon: [y, Mn]
|
|
@@ -4767,8 +4755,8 @@ const Mn = {
|
|
|
4767
4755
|
slots: [],
|
|
4768
4756
|
leaf: !0
|
|
4769
4757
|
};
|
|
4770
|
-
C(
|
|
4771
|
-
const
|
|
4758
|
+
C(Il);
|
|
4759
|
+
const Cl = F(K), Hn = {
|
|
4772
4760
|
key: "settings",
|
|
4773
4761
|
name: "x-runtime-lib.settings",
|
|
4774
4762
|
children: [
|
|
@@ -4803,12 +4791,12 @@ const Sr = F(K), Hn = {
|
|
|
4803
4791
|
items: "densityItemsV1",
|
|
4804
4792
|
default: "default"
|
|
4805
4793
|
},
|
|
4806
|
-
|
|
4794
|
+
Cl
|
|
4807
4795
|
]
|
|
4808
4796
|
}, Wt = {
|
|
4809
4797
|
key: Di,
|
|
4810
4798
|
name: "x-runtime-lib.radio",
|
|
4811
|
-
comp:
|
|
4799
|
+
comp: Ir,
|
|
4812
4800
|
props: {
|
|
4813
4801
|
pageCommon: [y, Hn],
|
|
4814
4802
|
compCommon: [y, Hn]
|
|
@@ -4819,37 +4807,37 @@ const Sr = F(K), Hn = {
|
|
|
4819
4807
|
leaf: !0
|
|
4820
4808
|
};
|
|
4821
4809
|
C(Wt);
|
|
4822
|
-
function
|
|
4823
|
-
const i = `type=${t} subtype=${e}`,
|
|
4824
|
-
if (!
|
|
4810
|
+
function Sl(t, e) {
|
|
4811
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
4812
|
+
if (!r) {
|
|
4825
4813
|
console.error(`radioGroupV1/spawn prop tag not found, ${i}`);
|
|
4826
4814
|
return;
|
|
4827
4815
|
}
|
|
4828
|
-
const
|
|
4829
|
-
if (!
|
|
4816
|
+
const l = Lt.props[r];
|
|
4817
|
+
if (!l) {
|
|
4830
4818
|
console.error(`radioGroupV1/spawn props not found, ${i}`);
|
|
4831
4819
|
return;
|
|
4832
4820
|
}
|
|
4833
4821
|
const o = {};
|
|
4834
|
-
return W(o,
|
|
4822
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Lt.key, o.children = [
|
|
4835
4823
|
We(t, e, "option1", "Option 1"),
|
|
4836
4824
|
We(t, e, "option2", "Option 2"),
|
|
4837
4825
|
We(t, e, "option3", "Option 3")
|
|
4838
4826
|
], o.settings.value = "option1", o;
|
|
4839
4827
|
}
|
|
4840
|
-
function We(t, e, i,
|
|
4841
|
-
const
|
|
4828
|
+
function We(t, e, i, r) {
|
|
4829
|
+
const l = `type=${t} subtype=${e}`, o = L(t, e);
|
|
4842
4830
|
if (!o) {
|
|
4843
|
-
console.error(`radioGroupV1/spawnEntry prop tag not found, ${
|
|
4831
|
+
console.error(`radioGroupV1/spawnEntry prop tag not found, ${l}`);
|
|
4844
4832
|
return;
|
|
4845
4833
|
}
|
|
4846
4834
|
const a = Wt.props[o];
|
|
4847
4835
|
if (!a) {
|
|
4848
|
-
console.error(`radioGroupV1/spawnEntry props not found, ${
|
|
4836
|
+
console.error(`radioGroupV1/spawnEntry props not found, ${l}`);
|
|
4849
4837
|
return;
|
|
4850
4838
|
}
|
|
4851
4839
|
const c = {};
|
|
4852
|
-
return W(c, a), c.basic.id = P(16), c.basic.key = Wt.key, c.settings.value = i, c.settings.label =
|
|
4840
|
+
return W(c, a), c.basic.id = P(16), c.basic.key = Wt.key, c.settings.value = i, c.settings.label = r, c;
|
|
4853
4841
|
}
|
|
4854
4842
|
const jn = {
|
|
4855
4843
|
key: "settings",
|
|
@@ -4897,7 +4885,7 @@ const jn = {
|
|
|
4897
4885
|
}, Lt = {
|
|
4898
4886
|
key: ut,
|
|
4899
4887
|
name: "x-runtime-lib.radioGroup",
|
|
4900
|
-
comp:
|
|
4888
|
+
comp: Cr,
|
|
4901
4889
|
props: {
|
|
4902
4890
|
pageCommon: [y, jn],
|
|
4903
4891
|
compCommon: [y, jn]
|
|
@@ -4905,7 +4893,7 @@ const jn = {
|
|
|
4905
4893
|
events: [],
|
|
4906
4894
|
methods: [],
|
|
4907
4895
|
slots: [],
|
|
4908
|
-
spawn:
|
|
4896
|
+
spawn: Sl
|
|
4909
4897
|
};
|
|
4910
4898
|
C(Lt);
|
|
4911
4899
|
const Gn = {
|
|
@@ -5025,10 +5013,10 @@ const Gn = {
|
|
|
5025
5013
|
]
|
|
5026
5014
|
}
|
|
5027
5015
|
]
|
|
5028
|
-
},
|
|
5016
|
+
}, Tl = {
|
|
5029
5017
|
key: ct,
|
|
5030
5018
|
name: "x-runtime-lib.rangeSlider",
|
|
5031
|
-
comp:
|
|
5019
|
+
comp: Sr,
|
|
5032
5020
|
props: {
|
|
5033
5021
|
pageCommon: [y, Gn],
|
|
5034
5022
|
compCommon: [y, Gn]
|
|
@@ -5038,7 +5026,7 @@ const Gn = {
|
|
|
5038
5026
|
slots: [],
|
|
5039
5027
|
leaf: !0
|
|
5040
5028
|
};
|
|
5041
|
-
C(
|
|
5029
|
+
C(Tl);
|
|
5042
5030
|
const Un = {
|
|
5043
5031
|
key: "settings",
|
|
5044
5032
|
name: "x-runtime-lib.settings",
|
|
@@ -5094,10 +5082,10 @@ const Un = {
|
|
|
5094
5082
|
default: !1
|
|
5095
5083
|
}
|
|
5096
5084
|
]
|
|
5097
|
-
},
|
|
5085
|
+
}, zl = {
|
|
5098
5086
|
key: dt,
|
|
5099
5087
|
name: "x-runtime-lib.rating",
|
|
5100
|
-
comp:
|
|
5088
|
+
comp: Tr,
|
|
5101
5089
|
props: {
|
|
5102
5090
|
pageCommon: [y, Un],
|
|
5103
5091
|
compCommon: [y, Un]
|
|
@@ -5107,7 +5095,7 @@ const Un = {
|
|
|
5107
5095
|
slots: [],
|
|
5108
5096
|
leaf: !0
|
|
5109
5097
|
};
|
|
5110
|
-
C(
|
|
5098
|
+
C(zl);
|
|
5111
5099
|
const On = {
|
|
5112
5100
|
key: "settings",
|
|
5113
5101
|
name: "x-runtime-lib.settings",
|
|
@@ -5149,10 +5137,10 @@ const On = {
|
|
|
5149
5137
|
default: !1
|
|
5150
5138
|
}
|
|
5151
5139
|
]
|
|
5152
|
-
},
|
|
5140
|
+
}, Al = {
|
|
5153
5141
|
key: mt,
|
|
5154
5142
|
name: "x-runtime-lib.select",
|
|
5155
|
-
comp:
|
|
5143
|
+
comp: zr,
|
|
5156
5144
|
props: {
|
|
5157
5145
|
pageCommon: [y, On],
|
|
5158
5146
|
compCommon: [y, On]
|
|
@@ -5162,7 +5150,7 @@ const On = {
|
|
|
5162
5150
|
slots: [],
|
|
5163
5151
|
leaf: !0
|
|
5164
5152
|
};
|
|
5165
|
-
C(
|
|
5153
|
+
C(Al);
|
|
5166
5154
|
const nn = F(K);
|
|
5167
5155
|
nn.key = "color";
|
|
5168
5156
|
nn.name = "x-runtime-lib.color";
|
|
@@ -5298,10 +5286,10 @@ const Kn = {
|
|
|
5298
5286
|
default: void 0
|
|
5299
5287
|
}
|
|
5300
5288
|
]
|
|
5301
|
-
},
|
|
5289
|
+
}, Pl = {
|
|
5302
5290
|
key: pt,
|
|
5303
5291
|
name: "x-runtime-lib.slider",
|
|
5304
|
-
comp:
|
|
5292
|
+
comp: Ar,
|
|
5305
5293
|
props: {
|
|
5306
5294
|
pageCommon: [y, Kn, Jn],
|
|
5307
5295
|
compCommon: [y, Kn, Jn]
|
|
@@ -5311,11 +5299,11 @@ const Kn = {
|
|
|
5311
5299
|
slots: [],
|
|
5312
5300
|
leaf: !0
|
|
5313
5301
|
};
|
|
5314
|
-
C(
|
|
5302
|
+
C(Pl);
|
|
5315
5303
|
const Bt = {
|
|
5316
5304
|
key: Ei,
|
|
5317
5305
|
name: "x-runtime-lib.stepperHeader",
|
|
5318
|
-
comp:
|
|
5306
|
+
comp: Br,
|
|
5319
5307
|
props: {
|
|
5320
5308
|
pageCommon: [y],
|
|
5321
5309
|
compCommon: [y]
|
|
@@ -5339,7 +5327,7 @@ const Xn = {
|
|
|
5339
5327
|
}, Nt = {
|
|
5340
5328
|
key: Fi,
|
|
5341
5329
|
name: "x-runtime-lib.stepperItem",
|
|
5342
|
-
comp:
|
|
5330
|
+
comp: Nr,
|
|
5343
5331
|
props: {
|
|
5344
5332
|
pageCommon: [y, Xn],
|
|
5345
5333
|
compCommon: [y, Xn]
|
|
@@ -5352,7 +5340,7 @@ C(Nt);
|
|
|
5352
5340
|
const Rt = {
|
|
5353
5341
|
key: Mi,
|
|
5354
5342
|
name: "x-runtime-lib.stepperWindow",
|
|
5355
|
-
comp:
|
|
5343
|
+
comp: Er,
|
|
5356
5344
|
props: {
|
|
5357
5345
|
pageCommon: [y],
|
|
5358
5346
|
compCommon: [y]
|
|
@@ -5376,7 +5364,7 @@ const Yn = {
|
|
|
5376
5364
|
}, Dt = {
|
|
5377
5365
|
key: Hi,
|
|
5378
5366
|
name: "x-runtime-lib.stepperWindowItem",
|
|
5379
|
-
comp:
|
|
5367
|
+
comp: Fr,
|
|
5380
5368
|
props: {
|
|
5381
5369
|
pageCommon: [y, Yn],
|
|
5382
5370
|
compCommon: [y, Yn]
|
|
@@ -5386,93 +5374,93 @@ const Yn = {
|
|
|
5386
5374
|
slots: []
|
|
5387
5375
|
};
|
|
5388
5376
|
C(Dt);
|
|
5389
|
-
function
|
|
5390
|
-
const i = `type=${t} subtype=${e}`,
|
|
5391
|
-
if (!
|
|
5377
|
+
function Wl(t, e) {
|
|
5378
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5379
|
+
if (!r) {
|
|
5392
5380
|
console.error(`stepperV1/spawn prop tag not found, ${i}`);
|
|
5393
5381
|
return;
|
|
5394
5382
|
}
|
|
5395
|
-
const
|
|
5396
|
-
if (!
|
|
5383
|
+
const l = Et.props[r];
|
|
5384
|
+
if (!l) {
|
|
5397
5385
|
console.error(`stepperV1/spawn props not found, ${i}`);
|
|
5398
5386
|
return;
|
|
5399
5387
|
}
|
|
5400
5388
|
const o = {};
|
|
5401
|
-
return W(o,
|
|
5389
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Et.key, o.children = [Ll(t, e), Bl(t, e)], o;
|
|
5402
5390
|
}
|
|
5403
|
-
function
|
|
5404
|
-
const i = `type=${t} subtype=${e}`,
|
|
5405
|
-
if (!
|
|
5391
|
+
function Ll(t, e) {
|
|
5392
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5393
|
+
if (!r) {
|
|
5406
5394
|
console.error(`stepperV1/spawnHeader prop tag not found, ${i}`);
|
|
5407
5395
|
return;
|
|
5408
5396
|
}
|
|
5409
|
-
const
|
|
5410
|
-
if (!
|
|
5397
|
+
const l = Bt.props[r];
|
|
5398
|
+
if (!l) {
|
|
5411
5399
|
console.error(`stepperV1/spawnHeader props not found, ${i}`);
|
|
5412
5400
|
return;
|
|
5413
5401
|
}
|
|
5414
5402
|
const o = {};
|
|
5415
|
-
return W(o,
|
|
5403
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Bt.key, o.children = [
|
|
5416
5404
|
Le(t, e, "step1"),
|
|
5417
5405
|
Le(t, e, "step2"),
|
|
5418
5406
|
Le(t, e, "step3")
|
|
5419
5407
|
], o;
|
|
5420
5408
|
}
|
|
5421
5409
|
function Le(t, e, i) {
|
|
5422
|
-
const
|
|
5423
|
-
if (!
|
|
5424
|
-
console.error(`stepperV1/spawnItem prop tag not found, ${
|
|
5410
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
5411
|
+
if (!l) {
|
|
5412
|
+
console.error(`stepperV1/spawnItem prop tag not found, ${r}`);
|
|
5425
5413
|
return;
|
|
5426
5414
|
}
|
|
5427
|
-
const o = Nt.props[
|
|
5415
|
+
const o = Nt.props[l];
|
|
5428
5416
|
if (!o) {
|
|
5429
|
-
console.error(`stepperV1/spawnItem props not found, ${
|
|
5417
|
+
console.error(`stepperV1/spawnItem props not found, ${r}`);
|
|
5430
5418
|
return;
|
|
5431
5419
|
}
|
|
5432
5420
|
const a = {};
|
|
5433
5421
|
return W(a, o), a.basic.id = P(16), a.basic.key = Nt.key, a.children = [], a.settings.value = i, a;
|
|
5434
5422
|
}
|
|
5435
|
-
function
|
|
5436
|
-
const i = `type=${t} subtype=${e}`,
|
|
5437
|
-
if (!
|
|
5423
|
+
function Bl(t, e) {
|
|
5424
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5425
|
+
if (!r) {
|
|
5438
5426
|
console.error(`stepperV1/spawnWindow prop tag not found, ${i}`);
|
|
5439
5427
|
return;
|
|
5440
5428
|
}
|
|
5441
|
-
const
|
|
5442
|
-
if (!
|
|
5429
|
+
const l = Rt.props[r];
|
|
5430
|
+
if (!l) {
|
|
5443
5431
|
console.error(`stepperV1/spawnWindow props not found, ${i}`);
|
|
5444
5432
|
return;
|
|
5445
5433
|
}
|
|
5446
5434
|
const o = {};
|
|
5447
|
-
return W(o,
|
|
5435
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Rt.key, o.children = [
|
|
5448
5436
|
Be(t, e, "step1", "step 1"),
|
|
5449
5437
|
Be(t, e, "step2", "step 2"),
|
|
5450
5438
|
Be(t, e, "step3", "step 3")
|
|
5451
5439
|
], o;
|
|
5452
5440
|
}
|
|
5453
|
-
function Be(t, e, i,
|
|
5454
|
-
const
|
|
5441
|
+
function Be(t, e, i, r) {
|
|
5442
|
+
const l = `type=${t} subtype=${e}`, o = L(t, e);
|
|
5455
5443
|
if (!o) {
|
|
5456
|
-
console.error(`stepperV1/spawnWindowItem prop tag not found, ${
|
|
5444
|
+
console.error(`stepperV1/spawnWindowItem prop tag not found, ${l}`);
|
|
5457
5445
|
return;
|
|
5458
5446
|
}
|
|
5459
5447
|
const a = Dt.props[o];
|
|
5460
5448
|
if (!a) {
|
|
5461
|
-
console.error(`stepperV1/spawnWindowItem props not found, ${
|
|
5449
|
+
console.error(`stepperV1/spawnWindowItem props not found, ${l}`);
|
|
5462
5450
|
return;
|
|
5463
5451
|
}
|
|
5464
5452
|
const c = {};
|
|
5465
|
-
return W(c, a), c.basic.id = P(16), c.basic.key = Dt.key, c.children = [
|
|
5453
|
+
return W(c, a), c.basic.id = P(16), c.basic.key = Dt.key, c.children = [Nl(t, e, r)], c.settings.value = i, c;
|
|
5466
5454
|
}
|
|
5467
|
-
function
|
|
5468
|
-
const
|
|
5469
|
-
if (!
|
|
5470
|
-
console.error(`stepperV1/spawnCard prop tag not found, ${
|
|
5455
|
+
function Nl(t, e, i) {
|
|
5456
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
5457
|
+
if (!l) {
|
|
5458
|
+
console.error(`stepperV1/spawnCard prop tag not found, ${r}`);
|
|
5471
5459
|
return;
|
|
5472
5460
|
}
|
|
5473
|
-
const o = xe.props[
|
|
5461
|
+
const o = xe.props[l];
|
|
5474
5462
|
if (!o) {
|
|
5475
|
-
console.error(`stepperV1/spawnCard props not found, ${
|
|
5463
|
+
console.error(`stepperV1/spawnCard props not found, ${r}`);
|
|
5476
5464
|
return;
|
|
5477
5465
|
}
|
|
5478
5466
|
const a = {};
|
|
@@ -5498,7 +5486,7 @@ const Zn = {
|
|
|
5498
5486
|
}, Et = {
|
|
5499
5487
|
key: ft,
|
|
5500
5488
|
name: "x-runtime-lib.stepper",
|
|
5501
|
-
comp:
|
|
5489
|
+
comp: Pr,
|
|
5502
5490
|
props: {
|
|
5503
5491
|
pageCommon: [y, Zn],
|
|
5504
5492
|
compCommon: [y, Zn]
|
|
@@ -5506,13 +5494,13 @@ const Zn = {
|
|
|
5506
5494
|
events: [],
|
|
5507
5495
|
methods: [],
|
|
5508
5496
|
slots: [],
|
|
5509
|
-
spawn:
|
|
5497
|
+
spawn: Wl
|
|
5510
5498
|
};
|
|
5511
5499
|
C(Et);
|
|
5512
|
-
const
|
|
5500
|
+
const Rl = {
|
|
5513
5501
|
key: bt,
|
|
5514
5502
|
name: "x-runtime-lib.switch",
|
|
5515
|
-
comp:
|
|
5503
|
+
comp: Mr,
|
|
5516
5504
|
props: {
|
|
5517
5505
|
pageCommon: [y],
|
|
5518
5506
|
compCommon: [y]
|
|
@@ -5522,7 +5510,7 @@ const Dr = {
|
|
|
5522
5510
|
slots: [],
|
|
5523
5511
|
leaf: !0
|
|
5524
5512
|
};
|
|
5525
|
-
C(
|
|
5513
|
+
C(Rl);
|
|
5526
5514
|
const qn = {
|
|
5527
5515
|
key: "settings",
|
|
5528
5516
|
name: "x-runtime-lib.settings",
|
|
@@ -5543,7 +5531,7 @@ const qn = {
|
|
|
5543
5531
|
}, Ft = {
|
|
5544
5532
|
key: ji,
|
|
5545
5533
|
name: "x-runtime-lib.tab",
|
|
5546
|
-
comp:
|
|
5534
|
+
comp: Hr,
|
|
5547
5535
|
props: {
|
|
5548
5536
|
pageCommon: [y, qn],
|
|
5549
5537
|
compCommon: [y, qn]
|
|
@@ -5554,44 +5542,44 @@ const qn = {
|
|
|
5554
5542
|
leaf: !0
|
|
5555
5543
|
};
|
|
5556
5544
|
C(Ft);
|
|
5557
|
-
function
|
|
5558
|
-
const i = `type=${t} subtype=${e}`,
|
|
5559
|
-
if (!
|
|
5545
|
+
function Dl(t, e) {
|
|
5546
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5547
|
+
if (!r) {
|
|
5560
5548
|
console.error(`tabsV1/spawn prop tag not found, ${i}`);
|
|
5561
5549
|
return;
|
|
5562
5550
|
}
|
|
5563
|
-
const
|
|
5564
|
-
if (!
|
|
5551
|
+
const l = Mt.props[r];
|
|
5552
|
+
if (!l) {
|
|
5565
5553
|
console.error(`tabsV1/spawn props not found, ${i}`);
|
|
5566
5554
|
return;
|
|
5567
5555
|
}
|
|
5568
5556
|
const o = {};
|
|
5569
|
-
return W(o,
|
|
5557
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Mt.key, o.children = [
|
|
5570
5558
|
Ne(t, e, "tab1", "tab 1"),
|
|
5571
5559
|
Ne(t, e, "tab2", "tab 2"),
|
|
5572
5560
|
Ne(t, e, "tab3", "tab 3")
|
|
5573
5561
|
], o;
|
|
5574
5562
|
}
|
|
5575
|
-
function Ne(t, e, i,
|
|
5576
|
-
const
|
|
5563
|
+
function Ne(t, e, i, r) {
|
|
5564
|
+
const l = `type=${t} subtype=${e}`, o = L(t, e);
|
|
5577
5565
|
if (!o) {
|
|
5578
|
-
console.error(`tabsV1/spawnTab prop tag not found, ${
|
|
5566
|
+
console.error(`tabsV1/spawnTab prop tag not found, ${l}`);
|
|
5579
5567
|
return;
|
|
5580
5568
|
}
|
|
5581
5569
|
const a = Ft.props[o];
|
|
5582
5570
|
if (!a) {
|
|
5583
|
-
console.error(`tabsV1/spawnTab props not found, ${
|
|
5571
|
+
console.error(`tabsV1/spawnTab props not found, ${l}`);
|
|
5584
5572
|
return;
|
|
5585
5573
|
}
|
|
5586
5574
|
const c = {};
|
|
5587
|
-
return W(c, a), c.basic.id = P(16), c.basic.key = Ft.key, c.settings.value = i, c.settings.text =
|
|
5575
|
+
return W(c, a), c.basic.id = P(16), c.basic.key = Ft.key, c.settings.value = i, c.settings.text = r, c;
|
|
5588
5576
|
}
|
|
5589
|
-
const ln = F(K);
|
|
5590
|
-
ln.key = "backgroundColor";
|
|
5591
|
-
ln.name = "x-runtime-lib.backgroundColor";
|
|
5592
5577
|
const rn = F(K);
|
|
5593
|
-
rn.key = "
|
|
5594
|
-
rn.name = "x-runtime-lib.
|
|
5578
|
+
rn.key = "backgroundColor";
|
|
5579
|
+
rn.name = "x-runtime-lib.backgroundColor";
|
|
5580
|
+
const ln = F(K);
|
|
5581
|
+
ln.key = "selectedColor";
|
|
5582
|
+
ln.name = "x-runtime-lib.selectedColor";
|
|
5595
5583
|
const an = F(K);
|
|
5596
5584
|
an.key = "sliderColor";
|
|
5597
5585
|
an.name = "x-runtime-lib.sliderColor";
|
|
@@ -5671,13 +5659,13 @@ const Qn = {
|
|
|
5671
5659
|
{
|
|
5672
5660
|
key: "color",
|
|
5673
5661
|
name: "x-runtime-lib.color",
|
|
5674
|
-
children: [
|
|
5662
|
+
children: [rn, ln, an]
|
|
5675
5663
|
}
|
|
5676
5664
|
]
|
|
5677
5665
|
}, Mt = {
|
|
5678
5666
|
key: yt,
|
|
5679
5667
|
name: "x-runtime-lib.tabs",
|
|
5680
|
-
comp:
|
|
5668
|
+
comp: jr,
|
|
5681
5669
|
props: {
|
|
5682
5670
|
pageCommon: [y, Qn],
|
|
5683
5671
|
compCommon: [y, Qn]
|
|
@@ -5685,22 +5673,22 @@ const Qn = {
|
|
|
5685
5673
|
events: [],
|
|
5686
5674
|
methods: [],
|
|
5687
5675
|
slots: [],
|
|
5688
|
-
spawn:
|
|
5676
|
+
spawn: Dl
|
|
5689
5677
|
};
|
|
5690
5678
|
C(Mt);
|
|
5691
|
-
function
|
|
5692
|
-
const i = `type=${t} subtype=${e}`,
|
|
5693
|
-
if (!
|
|
5679
|
+
function El(t, e) {
|
|
5680
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5681
|
+
if (!r) {
|
|
5694
5682
|
console.error(`textV1/spawn prop tag not found, ${i}`);
|
|
5695
5683
|
return;
|
|
5696
5684
|
}
|
|
5697
|
-
const
|
|
5698
|
-
if (!
|
|
5685
|
+
const l = ae.props[r];
|
|
5686
|
+
if (!l) {
|
|
5699
5687
|
console.error(`textV1/spawn props not found, ${i}`);
|
|
5700
5688
|
return;
|
|
5701
5689
|
}
|
|
5702
5690
|
const o = {};
|
|
5703
|
-
return W(o,
|
|
5691
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = ae.key, o.settings.text = "text", o;
|
|
5704
5692
|
}
|
|
5705
5693
|
const ei = {
|
|
5706
5694
|
key: "settings",
|
|
@@ -5791,7 +5779,7 @@ const ei = {
|
|
|
5791
5779
|
}, ae = {
|
|
5792
5780
|
key: ht,
|
|
5793
5781
|
name: "x-runtime-lib.text",
|
|
5794
|
-
comp:
|
|
5782
|
+
comp: Gr,
|
|
5795
5783
|
props: {
|
|
5796
5784
|
pageCommon: [y, ei],
|
|
5797
5785
|
compCommon: [y, ei]
|
|
@@ -5800,22 +5788,22 @@ const ei = {
|
|
|
5800
5788
|
methods: [],
|
|
5801
5789
|
slots: [],
|
|
5802
5790
|
leaf: !0,
|
|
5803
|
-
spawn:
|
|
5791
|
+
spawn: El
|
|
5804
5792
|
};
|
|
5805
5793
|
C(ae);
|
|
5806
|
-
function
|
|
5807
|
-
const i = `type=${t} subtype=${e}`,
|
|
5808
|
-
if (!
|
|
5794
|
+
function Fl(t, e) {
|
|
5795
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5796
|
+
if (!r) {
|
|
5809
5797
|
console.error(`textareaV1/spawn prop tag not found, ${i}`);
|
|
5810
5798
|
return;
|
|
5811
5799
|
}
|
|
5812
|
-
const
|
|
5813
|
-
if (!
|
|
5800
|
+
const l = Ht.props[r];
|
|
5801
|
+
if (!l) {
|
|
5814
5802
|
console.error(`textareaV1/spawn props not found, ${i}`);
|
|
5815
5803
|
return;
|
|
5816
5804
|
}
|
|
5817
5805
|
const o = {};
|
|
5818
|
-
return W(o,
|
|
5806
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Ht.key, o.settings.label = "label", o;
|
|
5819
5807
|
}
|
|
5820
5808
|
const ti = {
|
|
5821
5809
|
key: "settings",
|
|
@@ -5891,7 +5879,7 @@ const ti = {
|
|
|
5891
5879
|
}, Ht = {
|
|
5892
5880
|
key: gt,
|
|
5893
5881
|
name: "x-runtime-lib.textarea",
|
|
5894
|
-
comp:
|
|
5882
|
+
comp: Ur,
|
|
5895
5883
|
props: {
|
|
5896
5884
|
pageCommon: [y, ti],
|
|
5897
5885
|
compCommon: [y, ti]
|
|
@@ -5900,13 +5888,13 @@ const ti = {
|
|
|
5900
5888
|
methods: [],
|
|
5901
5889
|
slots: [],
|
|
5902
5890
|
leaf: !0,
|
|
5903
|
-
spawn:
|
|
5891
|
+
spawn: Fl
|
|
5904
5892
|
};
|
|
5905
5893
|
C(Ht);
|
|
5906
5894
|
const jt = {
|
|
5907
5895
|
key: Gi,
|
|
5908
5896
|
name: "x-runtime-lib.timelineItem",
|
|
5909
|
-
comp:
|
|
5897
|
+
comp: Yr,
|
|
5910
5898
|
props: {
|
|
5911
5899
|
pageCommon: [y],
|
|
5912
5900
|
compCommon: [y]
|
|
@@ -5916,53 +5904,53 @@ const jt = {
|
|
|
5916
5904
|
slots: []
|
|
5917
5905
|
};
|
|
5918
5906
|
C(jt);
|
|
5919
|
-
function
|
|
5920
|
-
const i = `type=${t} subtype=${e}`,
|
|
5921
|
-
if (!
|
|
5907
|
+
function Ml(t, e) {
|
|
5908
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
5909
|
+
if (!r) {
|
|
5922
5910
|
console.error(`timelineV1/spawn prop tag not found, ${i}`);
|
|
5923
5911
|
return;
|
|
5924
5912
|
}
|
|
5925
|
-
const
|
|
5926
|
-
if (!
|
|
5913
|
+
const l = Gt.props[r];
|
|
5914
|
+
if (!l) {
|
|
5927
5915
|
console.error(`timelineV1/spawn props not found, ${i}`);
|
|
5928
5916
|
return;
|
|
5929
5917
|
}
|
|
5930
5918
|
const o = {};
|
|
5931
|
-
return W(o,
|
|
5919
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Gt.key, o.children = [
|
|
5932
5920
|
Re(t, e, "timeline 1"),
|
|
5933
5921
|
Re(t, e, "timeline 2"),
|
|
5934
5922
|
Re(t, e, "timeline 3")
|
|
5935
5923
|
], o;
|
|
5936
5924
|
}
|
|
5937
5925
|
function Re(t, e, i) {
|
|
5938
|
-
const
|
|
5939
|
-
if (!
|
|
5940
|
-
console.error(`timelineV1/spawnEntry prop tag not found, ${
|
|
5926
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
5927
|
+
if (!l) {
|
|
5928
|
+
console.error(`timelineV1/spawnEntry prop tag not found, ${r}`);
|
|
5941
5929
|
return;
|
|
5942
5930
|
}
|
|
5943
|
-
const o = jt.props[
|
|
5931
|
+
const o = jt.props[l];
|
|
5944
5932
|
if (!o) {
|
|
5945
|
-
console.error(`timelineV1/spawnEntry props not found, ${
|
|
5933
|
+
console.error(`timelineV1/spawnEntry props not found, ${r}`);
|
|
5946
5934
|
return;
|
|
5947
5935
|
}
|
|
5948
5936
|
const a = {};
|
|
5949
|
-
return W(a, o), a.basic.id = P(16), a.basic.key = jt.key, a.children = [
|
|
5937
|
+
return W(a, o), a.basic.id = P(16), a.basic.key = jt.key, a.children = [Hl(t, e, i)], a;
|
|
5950
5938
|
}
|
|
5951
|
-
function
|
|
5952
|
-
const
|
|
5953
|
-
if (!
|
|
5954
|
-
console.error(`timelineV1/spawnText prop tag not found, ${
|
|
5939
|
+
function Hl(t, e, i) {
|
|
5940
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
5941
|
+
if (!l) {
|
|
5942
|
+
console.error(`timelineV1/spawnText prop tag not found, ${r}`);
|
|
5955
5943
|
return;
|
|
5956
5944
|
}
|
|
5957
|
-
const o = ae.props[
|
|
5945
|
+
const o = ae.props[l];
|
|
5958
5946
|
if (!o) {
|
|
5959
|
-
console.error(`timelineV1/spawnText props not found, ${
|
|
5947
|
+
console.error(`timelineV1/spawnText props not found, ${r}`);
|
|
5960
5948
|
return;
|
|
5961
5949
|
}
|
|
5962
5950
|
const a = {};
|
|
5963
5951
|
return W(a, o), a.basic.id = P(16), a.basic.key = ae.key, a.settings.text = i, a;
|
|
5964
5952
|
}
|
|
5965
|
-
const
|
|
5953
|
+
const jl = F(K), Gl = F(K), ni = {
|
|
5966
5954
|
key: "settings",
|
|
5967
5955
|
name: "x-runtime-lib.settings",
|
|
5968
5956
|
children: [
|
|
@@ -6010,7 +5998,7 @@ const Gr = F(K), Ur = F(K), ni = {
|
|
|
6010
5998
|
ui: "switch",
|
|
6011
5999
|
default: !1
|
|
6012
6000
|
},
|
|
6013
|
-
|
|
6001
|
+
jl
|
|
6014
6002
|
]
|
|
6015
6003
|
},
|
|
6016
6004
|
{
|
|
@@ -6036,14 +6024,14 @@ const Gr = F(K), Ur = F(K), ni = {
|
|
|
6036
6024
|
ui: "numInput",
|
|
6037
6025
|
default: 0
|
|
6038
6026
|
},
|
|
6039
|
-
|
|
6027
|
+
Gl
|
|
6040
6028
|
]
|
|
6041
6029
|
}
|
|
6042
6030
|
]
|
|
6043
6031
|
}, Gt = {
|
|
6044
6032
|
key: vt,
|
|
6045
6033
|
name: "x-runtime-lib.timeline",
|
|
6046
|
-
comp:
|
|
6034
|
+
comp: Kr,
|
|
6047
6035
|
props: {
|
|
6048
6036
|
pageCommon: [y, ni],
|
|
6049
6037
|
compCommon: [y, ni]
|
|
@@ -6051,13 +6039,13 @@ const Gr = F(K), Ur = F(K), ni = {
|
|
|
6051
6039
|
events: [],
|
|
6052
6040
|
methods: [],
|
|
6053
6041
|
slots: [],
|
|
6054
|
-
spawn:
|
|
6042
|
+
spawn: Ml
|
|
6055
6043
|
};
|
|
6056
6044
|
C(Gt);
|
|
6057
6045
|
const Ut = {
|
|
6058
6046
|
key: Ui,
|
|
6059
6047
|
name: "x-runtime-lib.windowItem",
|
|
6060
|
-
comp:
|
|
6048
|
+
comp: el,
|
|
6061
6049
|
props: {
|
|
6062
6050
|
pageCommon: [y],
|
|
6063
6051
|
compCommon: [y]
|
|
@@ -6067,61 +6055,61 @@ const Ut = {
|
|
|
6067
6055
|
slots: []
|
|
6068
6056
|
};
|
|
6069
6057
|
C(Ut);
|
|
6070
|
-
function
|
|
6071
|
-
const i = `type=${t} subtype=${e}`,
|
|
6072
|
-
if (!
|
|
6058
|
+
function Ul(t, e) {
|
|
6059
|
+
const i = `type=${t} subtype=${e}`, r = L(t, e);
|
|
6060
|
+
if (!r) {
|
|
6073
6061
|
console.error(`windowV1/spawn prop tag not found, ${i}`);
|
|
6074
6062
|
return;
|
|
6075
6063
|
}
|
|
6076
|
-
const
|
|
6077
|
-
if (!
|
|
6064
|
+
const l = Ot.props[r];
|
|
6065
|
+
if (!l) {
|
|
6078
6066
|
console.error(`windowV1/spawn props not found, ${i}`);
|
|
6079
6067
|
return;
|
|
6080
6068
|
}
|
|
6081
6069
|
const o = {};
|
|
6082
|
-
return W(o,
|
|
6070
|
+
return W(o, l), o.basic.id = P(16), o.basic.key = Ot.key, o.children = [
|
|
6083
6071
|
De(t, e, "window 1"),
|
|
6084
6072
|
De(t, e, "window 2"),
|
|
6085
6073
|
De(t, e, "window 3")
|
|
6086
6074
|
], o;
|
|
6087
6075
|
}
|
|
6088
6076
|
function De(t, e, i) {
|
|
6089
|
-
const
|
|
6090
|
-
if (!
|
|
6091
|
-
console.error(`windowV1/spawnEntry prop tag not found, ${
|
|
6077
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
6078
|
+
if (!l) {
|
|
6079
|
+
console.error(`windowV1/spawnEntry prop tag not found, ${r}`);
|
|
6092
6080
|
return;
|
|
6093
6081
|
}
|
|
6094
|
-
const o = Ut.props[
|
|
6082
|
+
const o = Ut.props[l];
|
|
6095
6083
|
if (!o) {
|
|
6096
|
-
console.error(`windowV1/spawnEntry props not found, ${
|
|
6084
|
+
console.error(`windowV1/spawnEntry props not found, ${r}`);
|
|
6097
6085
|
return;
|
|
6098
6086
|
}
|
|
6099
6087
|
const a = {};
|
|
6100
|
-
return W(a, o), a.basic.id = P(16), a.basic.key = Ut.key, a.children = [
|
|
6088
|
+
return W(a, o), a.basic.id = P(16), a.basic.key = Ut.key, a.children = [Ol(t, e, i)], a;
|
|
6101
6089
|
}
|
|
6102
|
-
function
|
|
6103
|
-
const
|
|
6104
|
-
if (!
|
|
6105
|
-
console.error(`windowV1/spawnFlexLayout prop tag not found, ${
|
|
6090
|
+
function Ol(t, e, i) {
|
|
6091
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
6092
|
+
if (!l) {
|
|
6093
|
+
console.error(`windowV1/spawnFlexLayout prop tag not found, ${r}`);
|
|
6106
6094
|
return;
|
|
6107
6095
|
}
|
|
6108
|
-
const o = ve.props[
|
|
6096
|
+
const o = ve.props[l];
|
|
6109
6097
|
if (!o) {
|
|
6110
|
-
console.error(`windowV1/spawnFlexLayout props not found, ${
|
|
6098
|
+
console.error(`windowV1/spawnFlexLayout props not found, ${r}`);
|
|
6111
6099
|
return;
|
|
6112
6100
|
}
|
|
6113
6101
|
const a = {};
|
|
6114
|
-
return W(a, o), a.basic.id = P(16), a.basic.key = ve.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 = [
|
|
6102
|
+
return W(a, o), a.basic.id = P(16), a.basic.key = ve.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 = [Kl(t, e, i)], a;
|
|
6115
6103
|
}
|
|
6116
|
-
function
|
|
6117
|
-
const
|
|
6118
|
-
if (!
|
|
6119
|
-
console.error(`windowV1/spawnText prop tag not found, ${
|
|
6104
|
+
function Kl(t, e, i) {
|
|
6105
|
+
const r = `type=${t} subtype=${e}`, l = L(t, e);
|
|
6106
|
+
if (!l) {
|
|
6107
|
+
console.error(`windowV1/spawnText prop tag not found, ${r}`);
|
|
6120
6108
|
return;
|
|
6121
6109
|
}
|
|
6122
|
-
const o = ae.props[
|
|
6110
|
+
const o = ae.props[l];
|
|
6123
6111
|
if (!o) {
|
|
6124
|
-
console.error(`windowV1/spawnText props not found, ${
|
|
6112
|
+
console.error(`windowV1/spawnText props not found, ${r}`);
|
|
6125
6113
|
return;
|
|
6126
6114
|
}
|
|
6127
6115
|
const a = {};
|
|
@@ -6178,7 +6166,7 @@ const ii = {
|
|
|
6178
6166
|
}, Ot = {
|
|
6179
6167
|
key: kt,
|
|
6180
6168
|
name: "x-runtime-lib.window",
|
|
6181
|
-
comp:
|
|
6169
|
+
comp: Zr,
|
|
6182
6170
|
props: {
|
|
6183
6171
|
pageCommon: [y, ii],
|
|
6184
6172
|
compCommon: [y, ii]
|
|
@@ -6186,36 +6174,36 @@ const ii = {
|
|
|
6186
6174
|
events: [],
|
|
6187
6175
|
methods: [],
|
|
6188
6176
|
slots: [],
|
|
6189
|
-
spawn:
|
|
6177
|
+
spawn: Ul
|
|
6190
6178
|
};
|
|
6191
6179
|
C(Ot);
|
|
6192
|
-
const
|
|
6180
|
+
const Jl = [
|
|
6193
6181
|
{ title: "x-runtime-lib.title", value: "title" },
|
|
6194
6182
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6195
6183
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6196
6184
|
{ title: "x-runtime-lib.center", value: "center" }
|
|
6197
|
-
],
|
|
6185
|
+
], Xl = [
|
|
6198
6186
|
{ title: "x-runtime-lib.value", value: "value" },
|
|
6199
6187
|
{ title: "x-runtime-lib.category", value: "category" },
|
|
6200
6188
|
{ title: "x-runtime-lib.time", value: "time" },
|
|
6201
6189
|
{ title: "x-runtime-lib.log", value: "log" }
|
|
6202
|
-
],
|
|
6190
|
+
], Yl = [
|
|
6203
6191
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6204
6192
|
{ title: "x-runtime-lib.solid", value: "solid" },
|
|
6205
6193
|
{ title: "x-runtime-lib.dashed", value: "dashed" },
|
|
6206
6194
|
{ title: "x-runtime-lib.dotted", value: "dotted" }
|
|
6207
|
-
],
|
|
6195
|
+
], Zl = [
|
|
6208
6196
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6209
6197
|
{ title: "x-runtime-lib.theme", value: "theme" },
|
|
6210
6198
|
{ title: "x-runtime-lib.custom", value: "custom" }
|
|
6211
|
-
],
|
|
6199
|
+
], ql = [
|
|
6212
6200
|
{ title: "x-runtime-lib.default", value: "default" },
|
|
6213
6201
|
{ title: "x-runtime-lib.comfortable", value: "comfortable" },
|
|
6214
6202
|
{ title: "x-runtime-lib.compact", value: "compact" }
|
|
6215
|
-
],
|
|
6203
|
+
], Ql = [
|
|
6216
6204
|
{ title: "x-runtime-lib.horizontal", value: "horizontal" },
|
|
6217
6205
|
{ title: "x-runtime-lib.vertical", value: "vertical" }
|
|
6218
|
-
],
|
|
6206
|
+
], ea = [
|
|
6219
6207
|
{ title: "x-runtime-lib.underlined", value: "underlined" },
|
|
6220
6208
|
{ title: "x-runtime-lib.outlined", value: "outlined" },
|
|
6221
6209
|
{ title: "x-runtime-lib.filled", value: "filled" },
|
|
@@ -6223,20 +6211,20 @@ const Xr = [
|
|
|
6223
6211
|
{ title: "x-runtime-lib.soloInverted", value: "solo-inverted" },
|
|
6224
6212
|
{ title: "x-runtime-lib.soloFilled", value: "solo-filled" },
|
|
6225
6213
|
{ title: "x-runtime-lib.plain", value: "plain" }
|
|
6226
|
-
],
|
|
6214
|
+
], ta = [
|
|
6227
6215
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6228
6216
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6229
6217
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6230
6218
|
{ title: "x-runtime-lib.center", value: "center" },
|
|
6231
6219
|
{ title: "x-runtime-lib.baseline", value: "baseline" },
|
|
6232
6220
|
{ title: "x-runtime-lib.stretch", value: "stretch" }
|
|
6233
|
-
],
|
|
6221
|
+
], na = [
|
|
6234
6222
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6235
6223
|
{ title: "x-runtime-lib.row", value: "row" },
|
|
6236
6224
|
{ title: "x-runtime-lib.rowReverse", value: "rowReverse" },
|
|
6237
6225
|
{ title: "x-runtime-lib.column", value: "column" },
|
|
6238
6226
|
{ title: "x-runtime-lib.columnReverse", value: "columnReverse" }
|
|
6239
|
-
],
|
|
6227
|
+
], ia = [
|
|
6240
6228
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6241
6229
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6242
6230
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
@@ -6244,12 +6232,12 @@ const Xr = [
|
|
|
6244
6232
|
{ title: "x-runtime-lib.spaceBetween", value: "spaceBetween" },
|
|
6245
6233
|
{ title: "x-runtime-lib.spaceAround", value: "spaceAround" },
|
|
6246
6234
|
{ title: "x-runtime-lib.spaceEvenly", value: "spaceEvenly" }
|
|
6247
|
-
],
|
|
6235
|
+
], oa = [
|
|
6248
6236
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6249
6237
|
{ title: "x-runtime-lib.no", value: "no" },
|
|
6250
6238
|
{ title: "x-runtime-lib.yes", value: "yes" },
|
|
6251
6239
|
{ title: "x-runtime-lib.reverse", value: "reverse" }
|
|
6252
|
-
],
|
|
6240
|
+
], sa = [
|
|
6253
6241
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6254
6242
|
{ title: "x-runtime-lib.black", value: "black" },
|
|
6255
6243
|
{ title: "x-runtime-lib.bold", value: "bold" },
|
|
@@ -6264,17 +6252,17 @@ const Xr = [
|
|
|
6264
6252
|
{ title: "x-runtime-lib.outlined", value: "outlined" },
|
|
6265
6253
|
{ title: "x-runtime-lib.text", value: "text" },
|
|
6266
6254
|
{ title: "x-runtime-lib.plain", value: "plain" }
|
|
6267
|
-
],
|
|
6255
|
+
], la = [
|
|
6268
6256
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6269
6257
|
{ title: "x-runtime-lib.show", value: "show" },
|
|
6270
6258
|
{ title: "x-runtime-lib.always", value: "always" }
|
|
6271
|
-
],
|
|
6259
|
+
], aa = [
|
|
6272
6260
|
{ title: "x-runtime-lib.xSmall", value: "x-small" },
|
|
6273
6261
|
{ title: "x-runtime-lib.small", value: "small" },
|
|
6274
6262
|
{ title: "x-runtime-lib.default", value: "default" },
|
|
6275
6263
|
{ title: "x-runtime-lib.large", value: "large" },
|
|
6276
6264
|
{ title: "x-runtime-lib.xLarge", value: "x-large" }
|
|
6277
|
-
],
|
|
6265
|
+
], ua = [
|
|
6278
6266
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6279
6267
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6280
6268
|
{ title: "x-runtime-lib.center", value: "center" },
|
|
@@ -6282,18 +6270,18 @@ const Xr = [
|
|
|
6282
6270
|
{ title: "x-runtime-lib.justify", value: "justify" },
|
|
6283
6271
|
{ title: "x-runtime-lib.left", value: "left" },
|
|
6284
6272
|
{ title: "x-runtime-lib.right", value: "right" }
|
|
6285
|
-
],
|
|
6273
|
+
], ca = [
|
|
6286
6274
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6287
6275
|
{ title: "x-runtime-lib.none", value: "none" },
|
|
6288
6276
|
{ title: "x-runtime-lib.overline", value: "overline" },
|
|
6289
6277
|
{ title: "x-runtime-lib.underline", value: "underline" },
|
|
6290
6278
|
{ title: "x-runtime-lib.lineThrough", value: "line-through" }
|
|
6291
|
-
],
|
|
6279
|
+
], da = [
|
|
6292
6280
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6293
6281
|
{ title: "x-runtime-lib.high", value: "high" },
|
|
6294
6282
|
{ title: "x-runtime-lib.medium", value: "medium" },
|
|
6295
6283
|
{ title: "x-runtime-lib.disabled", value: "disabled" }
|
|
6296
|
-
],
|
|
6284
|
+
], ma = [
|
|
6297
6285
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6298
6286
|
{ title: "x-runtime-lib.h1", value: "h1" },
|
|
6299
6287
|
{ title: "x-runtime-lib.h2", value: "h2" },
|
|
@@ -6308,7 +6296,7 @@ const Xr = [
|
|
|
6308
6296
|
{ title: "x-runtime-lib.button", value: "button" },
|
|
6309
6297
|
{ title: "x-runtime-lib.caption", value: "caption" },
|
|
6310
6298
|
{ title: "x-runtime-lib.overline", value: "overline" }
|
|
6311
|
-
],
|
|
6299
|
+
], pa = [
|
|
6312
6300
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6313
6301
|
{ title: "x-runtime-lib.primary", value: "primary" },
|
|
6314
6302
|
{ title: "x-runtime-lib.secondary", value: "secondary" },
|
|
@@ -6319,53 +6307,53 @@ const Xr = [
|
|
|
6319
6307
|
{ title: "x-runtime-lib.background0", value: "background0" },
|
|
6320
6308
|
{ title: "x-runtime-lib.background1", value: "background1" },
|
|
6321
6309
|
{ title: "x-runtime-lib.background2", value: "background2" }
|
|
6322
|
-
],
|
|
6310
|
+
], fa = [
|
|
6323
6311
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6324
6312
|
{ title: "x-runtime-lib.show", value: "show" },
|
|
6325
6313
|
{ title: "x-runtime-lib.always", value: "always" }
|
|
6326
|
-
],
|
|
6314
|
+
], ba = [
|
|
6327
6315
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6328
6316
|
{ title: "x-runtime-lib.center", value: "center" }
|
|
6329
|
-
],
|
|
6317
|
+
], ya = [
|
|
6330
6318
|
{ title: "x-runtime-lib.horizontal", value: "horizontal" },
|
|
6331
6319
|
{ title: "x-runtime-lib.vertical", value: "vertical" }
|
|
6332
|
-
],
|
|
6320
|
+
], ha = [
|
|
6333
6321
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6334
6322
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6335
6323
|
{ title: "x-runtime-lib.start", value: "start" }
|
|
6336
|
-
],
|
|
6324
|
+
], ga = [
|
|
6337
6325
|
{ title: "x-runtime-lib.notSet", value: "" },
|
|
6338
6326
|
{ title: "x-runtime-lib.end", value: "end" },
|
|
6339
6327
|
{ title: "x-runtime-lib.start", value: "start" },
|
|
6340
6328
|
{ title: "x-runtime-lib.both", value: "both" }
|
|
6341
|
-
],
|
|
6329
|
+
], xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6342
6330
|
__proto__: null,
|
|
6343
|
-
alignTabsItemsV1:
|
|
6344
|
-
axisTypeItemsV1:
|
|
6345
|
-
borderStyleItemsV1:
|
|
6346
|
-
colorModeItemsV1:
|
|
6347
|
-
densityItemsV1:
|
|
6348
|
-
directionItemsV1:
|
|
6349
|
-
fieldVariantItemsV1:
|
|
6350
|
-
flexCrossAlignItemsV1:
|
|
6351
|
-
flexDirectionItemsV1:
|
|
6352
|
-
flexMainAlignItemsV1:
|
|
6353
|
-
flexWrapItemsV1:
|
|
6354
|
-
fontWeightItemsV1:
|
|
6331
|
+
alignTabsItemsV1: Jl,
|
|
6332
|
+
axisTypeItemsV1: Xl,
|
|
6333
|
+
borderStyleItemsV1: Yl,
|
|
6334
|
+
colorModeItemsV1: Zl,
|
|
6335
|
+
densityItemsV1: ql,
|
|
6336
|
+
directionItemsV1: Ql,
|
|
6337
|
+
fieldVariantItemsV1: ea,
|
|
6338
|
+
flexCrossAlignItemsV1: ta,
|
|
6339
|
+
flexDirectionItemsV1: na,
|
|
6340
|
+
flexMainAlignItemsV1: ia,
|
|
6341
|
+
flexWrapItemsV1: oa,
|
|
6342
|
+
fontWeightItemsV1: sa,
|
|
6355
6343
|
sheetVariantItemsV1: ra,
|
|
6356
|
-
showTicksItemsV1:
|
|
6357
|
-
sizeItemsV1:
|
|
6358
|
-
textAlignItemsV1:
|
|
6359
|
-
textDecorationItemsV1:
|
|
6360
|
-
textEmphasisItemsV1:
|
|
6361
|
-
textStyleItemsV1:
|
|
6362
|
-
themeColorItemsV1:
|
|
6363
|
-
thumbLabelItemsV1:
|
|
6364
|
-
timelineAlignItemsV1:
|
|
6365
|
-
timelineDirectionItemsV1:
|
|
6366
|
-
timelineSideItemsV1:
|
|
6367
|
-
timelineTruncateLineItemsV1:
|
|
6368
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6344
|
+
showTicksItemsV1: la,
|
|
6345
|
+
sizeItemsV1: aa,
|
|
6346
|
+
textAlignItemsV1: ua,
|
|
6347
|
+
textDecorationItemsV1: ca,
|
|
6348
|
+
textEmphasisItemsV1: da,
|
|
6349
|
+
textStyleItemsV1: ma,
|
|
6350
|
+
themeColorItemsV1: pa,
|
|
6351
|
+
thumbLabelItemsV1: fa,
|
|
6352
|
+
timelineAlignItemsV1: ba,
|
|
6353
|
+
timelineDirectionItemsV1: ya,
|
|
6354
|
+
timelineSideItemsV1: ha,
|
|
6355
|
+
timelineTruncateLineItemsV1: ga
|
|
6356
|
+
}, Symbol.toStringTag, { value: "Module" })), va = [
|
|
6369
6357
|
{
|
|
6370
6358
|
title: "x-runtime-lib.notSet",
|
|
6371
6359
|
value: "",
|
|
@@ -6405,7 +6393,7 @@ const Xr = [
|
|
|
6405
6393
|
max: 1 / 0,
|
|
6406
6394
|
step: 1
|
|
6407
6395
|
}
|
|
6408
|
-
],
|
|
6396
|
+
], ka = [
|
|
6409
6397
|
{
|
|
6410
6398
|
title: "x-runtime-lib.notSet",
|
|
6411
6399
|
value: "",
|
|
@@ -6427,7 +6415,7 @@ const Xr = [
|
|
|
6427
6415
|
validator: (t) => t === "right",
|
|
6428
6416
|
default: "right"
|
|
6429
6417
|
}
|
|
6430
|
-
],
|
|
6418
|
+
], _a = [
|
|
6431
6419
|
{
|
|
6432
6420
|
title: "x-runtime-lib.notSet",
|
|
6433
6421
|
value: "",
|
|
@@ -6457,7 +6445,7 @@ const Xr = [
|
|
|
6457
6445
|
precision: 6,
|
|
6458
6446
|
default: "0%"
|
|
6459
6447
|
}
|
|
6460
|
-
],
|
|
6448
|
+
], wa = [
|
|
6461
6449
|
{
|
|
6462
6450
|
title: "x-runtime-lib.notSet",
|
|
6463
6451
|
value: "",
|
|
@@ -6482,7 +6470,7 @@ const Xr = [
|
|
|
6482
6470
|
min: 0,
|
|
6483
6471
|
default: "0%"
|
|
6484
6472
|
}
|
|
6485
|
-
],
|
|
6473
|
+
], Va = [
|
|
6486
6474
|
{
|
|
6487
6475
|
title: "x-runtime-lib.notSet",
|
|
6488
6476
|
value: "",
|
|
@@ -6507,7 +6495,7 @@ const Xr = [
|
|
|
6507
6495
|
min: 0,
|
|
6508
6496
|
default: "0%"
|
|
6509
6497
|
}
|
|
6510
|
-
],
|
|
6498
|
+
], $a = [
|
|
6511
6499
|
{
|
|
6512
6500
|
title: "x-runtime-lib.notSet",
|
|
6513
6501
|
value: "",
|
|
@@ -6536,7 +6524,7 @@ const Xr = [
|
|
|
6536
6524
|
validator: (t) => t === "end",
|
|
6537
6525
|
default: "end"
|
|
6538
6526
|
}
|
|
6539
|
-
],
|
|
6527
|
+
], Ia = [
|
|
6540
6528
|
{
|
|
6541
6529
|
title: "x-runtime-lib.notSet",
|
|
6542
6530
|
value: "",
|
|
@@ -6558,21 +6546,21 @@ const Xr = [
|
|
|
6558
6546
|
validator: (t) => t === "bottom",
|
|
6559
6547
|
default: "bottom"
|
|
6560
6548
|
}
|
|
6561
|
-
],
|
|
6549
|
+
], Ca = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6562
6550
|
__proto__: null,
|
|
6563
|
-
borderWidthTypesV1:
|
|
6564
|
-
leftRightTypesV1:
|
|
6565
|
-
marginTypesV1:
|
|
6566
|
-
paddingTypesV1:
|
|
6567
|
-
sizeTypesV1:
|
|
6568
|
-
tableColumnAlignTypesV1:
|
|
6569
|
-
topBottomTypesV1:
|
|
6570
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6551
|
+
borderWidthTypesV1: va,
|
|
6552
|
+
leftRightTypesV1: ka,
|
|
6553
|
+
marginTypesV1: _a,
|
|
6554
|
+
paddingTypesV1: wa,
|
|
6555
|
+
sizeTypesV1: Va,
|
|
6556
|
+
tableColumnAlignTypesV1: $a,
|
|
6557
|
+
topBottomTypesV1: Ia
|
|
6558
|
+
}, Symbol.toStringTag, { value: "Module" })), Sa = {
|
|
6571
6559
|
version: "v1",
|
|
6572
6560
|
globalityKey: ot,
|
|
6573
6561
|
refKey: Pe,
|
|
6574
|
-
items: { ...
|
|
6575
|
-
types: { ...
|
|
6562
|
+
items: { ...xa },
|
|
6563
|
+
types: { ...Ca },
|
|
6576
6564
|
elements: /* @__PURE__ */ new Set([
|
|
6577
6565
|
Fe,
|
|
6578
6566
|
mn,
|
|
@@ -6596,9 +6584,9 @@ const Xr = [
|
|
|
6596
6584
|
ot,
|
|
6597
6585
|
it,
|
|
6598
6586
|
st,
|
|
6599
|
-
lt,
|
|
6600
|
-
pn,
|
|
6601
6587
|
rt,
|
|
6588
|
+
pn,
|
|
6589
|
+
lt,
|
|
6602
6590
|
at,
|
|
6603
6591
|
Di,
|
|
6604
6592
|
ut,
|
|
@@ -6636,7 +6624,7 @@ const Xr = [
|
|
|
6636
6624
|
Ye,
|
|
6637
6625
|
tt,
|
|
6638
6626
|
Qe,
|
|
6639
|
-
|
|
6627
|
+
rt
|
|
6640
6628
|
]
|
|
6641
6629
|
},
|
|
6642
6630
|
{
|
|
@@ -6652,7 +6640,7 @@ const Xr = [
|
|
|
6652
6640
|
ht,
|
|
6653
6641
|
xt,
|
|
6654
6642
|
gt,
|
|
6655
|
-
|
|
6643
|
+
lt,
|
|
6656
6644
|
mt,
|
|
6657
6645
|
Xe,
|
|
6658
6646
|
bt,
|
|
@@ -6701,100 +6689,99 @@ const Xr = [
|
|
|
6701
6689
|
}
|
|
6702
6690
|
]
|
|
6703
6691
|
}, Oi = {
|
|
6704
|
-
v1:
|
|
6705
|
-
},
|
|
6706
|
-
const
|
|
6707
|
-
return
|
|
6692
|
+
v1: Sa
|
|
6693
|
+
}, Ta = (t, e, i) => {
|
|
6694
|
+
const r = t[e];
|
|
6695
|
+
return r ? typeof r == "function" ? r() : Promise.resolve(r) : new Promise((l, o) => {
|
|
6708
6696
|
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(o.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + e + (e.split("/").length !== i ? ". Note that variables only represent file names one level deep." : ""))));
|
|
6709
6697
|
});
|
|
6710
6698
|
};
|
|
6711
|
-
async function
|
|
6712
|
-
return (await
|
|
6699
|
+
async function Qa(t) {
|
|
6700
|
+
return (await Ta(/* @__PURE__ */ Object.assign({ "./locales/en/index.ts": () => import("./i18n-en.e52nt0si.js"), "./locales/zhHans/index.ts": () => import("./i18n-zhHans.lm0m4jyu.js") }), `./locales/${t}/index.ts`, 4)).default;
|
|
6713
6701
|
}
|
|
6714
6702
|
export {
|
|
6715
|
-
|
|
6716
|
-
Qa as badgeV1,
|
|
6703
|
+
Za as badgeV1,
|
|
6717
6704
|
_t as barChartV1,
|
|
6718
6705
|
wi as breakpoints,
|
|
6719
|
-
|
|
6720
|
-
|
|
6706
|
+
ll as btnGroupV1,
|
|
6707
|
+
al as btnToggleV1,
|
|
6721
6708
|
Vt as btnV1,
|
|
6722
6709
|
Vi as calcBreakpoint,
|
|
6723
6710
|
xe as cardV1,
|
|
6724
|
-
|
|
6711
|
+
cl as checkboxV1,
|
|
6725
6712
|
It as chipGroupV1,
|
|
6726
6713
|
$t as chipV1,
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6714
|
+
pl as colorPickerV1,
|
|
6715
|
+
fl as comboboxV1,
|
|
6716
|
+
_o as compTypes,
|
|
6730
6717
|
Ct as containerV1,
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
|
|
6718
|
+
bl as dataTableV1,
|
|
6719
|
+
yl as datePickerV1,
|
|
6720
|
+
hl as dialogV1,
|
|
6721
|
+
Vo as duplicateNode,
|
|
6722
|
+
Ha as duplicateNodes,
|
|
6736
6723
|
ge as elements,
|
|
6737
|
-
|
|
6738
|
-
|
|
6724
|
+
Ea as ensureContext,
|
|
6725
|
+
qa as fileInputV1,
|
|
6739
6726
|
St as flexLayoutEntryV1,
|
|
6740
6727
|
ve as flexLayoutV1,
|
|
6741
6728
|
At as formV1,
|
|
6742
6729
|
P as genId,
|
|
6743
6730
|
ye as getBreakpointProp,
|
|
6744
6731
|
cn as getIndexOfBreakpoint,
|
|
6745
|
-
|
|
6732
|
+
Ma as getNode,
|
|
6746
6733
|
dn as getPropDefault,
|
|
6747
6734
|
L as getPropTag,
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6735
|
+
Da as getTypeColor,
|
|
6736
|
+
ol as globalityV1,
|
|
6737
|
+
wl as iconV1,
|
|
6751
6738
|
W as initProps,
|
|
6752
6739
|
Te as injectDark,
|
|
6753
6740
|
se as injectData,
|
|
6754
|
-
|
|
6741
|
+
Co as injectDepends,
|
|
6755
6742
|
ke as injectDevice,
|
|
6756
|
-
|
|
6743
|
+
Io as injectEnv,
|
|
6757
6744
|
Q as injectMode,
|
|
6758
|
-
|
|
6745
|
+
$o as injectOrg,
|
|
6759
6746
|
_e as injectSandbox,
|
|
6760
6747
|
oe as injectType,
|
|
6761
6748
|
Xt as isPercentStr,
|
|
6762
6749
|
Se as isPixelStr,
|
|
6763
6750
|
wt as lineChartV1,
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6751
|
+
Qa as loadLocaleMessageRuntime,
|
|
6752
|
+
Vl as menuV1,
|
|
6753
|
+
wo as newEventBus,
|
|
6767
6754
|
Pt as numberInputV1,
|
|
6768
|
-
|
|
6769
|
-
|
|
6755
|
+
ko as pageTypes,
|
|
6756
|
+
Il as paginationV1,
|
|
6770
6757
|
Ae as parsePercentStr,
|
|
6771
|
-
|
|
6758
|
+
Na as parsePixelStr,
|
|
6772
6759
|
Oi as pkgs,
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
|
|
6781
|
-
|
|
6760
|
+
Ka as provideDark,
|
|
6761
|
+
Xa as provideData,
|
|
6762
|
+
Ya as provideDepends,
|
|
6763
|
+
Oa as provideDevice,
|
|
6764
|
+
Ga as provideEnv,
|
|
6765
|
+
Ua as provideMode,
|
|
6766
|
+
ja as provideOrg,
|
|
6767
|
+
So as provideSandbox,
|
|
6768
|
+
Ja as provideType,
|
|
6782
6769
|
Lt as radioGroupV1,
|
|
6783
6770
|
Wt as radioV1,
|
|
6784
|
-
|
|
6785
|
-
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6790
|
-
|
|
6771
|
+
Tl as rangeSliderV1,
|
|
6772
|
+
zl as ratingV1,
|
|
6773
|
+
vo as reverseBreakpoints,
|
|
6774
|
+
Al as selectV1,
|
|
6775
|
+
Pl as sliderV1,
|
|
6776
|
+
Fa as spawnNode,
|
|
6777
|
+
Ys as startInterpreter,
|
|
6791
6778
|
Bt as stepperHeaderV1,
|
|
6792
6779
|
Nt as stepperItemV1,
|
|
6793
6780
|
Et as stepperV1,
|
|
6794
6781
|
Dt as stepperWindowItemV1,
|
|
6795
6782
|
Rt as stepperWindowV1,
|
|
6796
|
-
|
|
6797
|
-
|
|
6783
|
+
Zs as stopInterpreter,
|
|
6784
|
+
Rl as switchV1,
|
|
6798
6785
|
Ft as tabV1,
|
|
6799
6786
|
Mt as tabsV1,
|
|
6800
6787
|
zt as textFieldV1,
|
|
@@ -6802,7 +6789,7 @@ export {
|
|
|
6802
6789
|
Ht as textareaV1,
|
|
6803
6790
|
jt as timelineItemV1,
|
|
6804
6791
|
Gt as timelineV1,
|
|
6805
|
-
|
|
6792
|
+
Ra as types,
|
|
6806
6793
|
Ut as windowItemV1,
|
|
6807
6794
|
Ot as windowV1
|
|
6808
6795
|
};
|