x-runtime-lib 0.6.26 → 0.6.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -13
- package/dist/types/element.d.ts +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5820,7 +5820,8 @@ const Wf = /* @__PURE__ */ Xt(Vf, [["render", Gf]]), Yf = { key: 0 }, zf = /* @_
|
|
|
5820
5820
|
const n = se("v-dialog");
|
|
5821
5821
|
return F(), te(n, {
|
|
5822
5822
|
modelValue: ge(b),
|
|
5823
|
-
"onUpdate:modelValue": x[0] || (x[0] = (t) => Li(b) ? b.value = t : null)
|
|
5823
|
+
"onUpdate:modelValue": x[0] || (x[0] = (t) => Li(b) ? b.value = t : null),
|
|
5824
|
+
attach: "#dialogContainer"
|
|
5824
5825
|
}, {
|
|
5825
5826
|
activator: ee(() => [
|
|
5826
5827
|
ge(c) === "editor" ? (F(), ce("div", {
|
|
@@ -5916,6 +5917,7 @@ const Wf = /* @__PURE__ */ Xt(Vf, [["render", Gf]]), Yf = { key: 0 }, zf = /* @_
|
|
|
5916
5917
|
"onUpdate:modelValue": e[0] || (e[0] = (u) => Li(x) ? x.value = u : null),
|
|
5917
5918
|
"location-strategy": "connected",
|
|
5918
5919
|
target: y.value,
|
|
5920
|
+
attach: "menuContainer",
|
|
5919
5921
|
scrim: "transparent"
|
|
5920
5922
|
}, {
|
|
5921
5923
|
activator: ee(() => [
|
|
@@ -6794,10 +6796,6 @@ const di = {
|
|
|
6794
6796
|
key: "data",
|
|
6795
6797
|
name: "x-runtime-lib.data",
|
|
6796
6798
|
ui: "numInput",
|
|
6797
|
-
precision: 15,
|
|
6798
|
-
min: -1 / 0,
|
|
6799
|
-
max: 1 / 0,
|
|
6800
|
-
step: 1,
|
|
6801
6799
|
default: 0,
|
|
6802
6800
|
array: !0,
|
|
6803
6801
|
defaultArray: []
|
|
@@ -6806,6 +6804,7 @@ const di = {
|
|
|
6806
6804
|
array: !0,
|
|
6807
6805
|
defaultArray: [
|
|
6808
6806
|
{
|
|
6807
|
+
type: "bar",
|
|
6809
6808
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
6810
6809
|
}
|
|
6811
6810
|
]
|
|
@@ -6844,10 +6843,6 @@ const hi = {
|
|
|
6844
6843
|
key: "data",
|
|
6845
6844
|
name: "x-runtime-lib.data",
|
|
6846
6845
|
ui: "numInput",
|
|
6847
|
-
precision: 15,
|
|
6848
|
-
min: -1 / 0,
|
|
6849
|
-
max: 1 / 0,
|
|
6850
|
-
step: 1,
|
|
6851
6846
|
default: 0,
|
|
6852
6847
|
array: !0,
|
|
6853
6848
|
defaultArray: []
|
|
@@ -6856,6 +6851,7 @@ const hi = {
|
|
|
6856
6851
|
array: !0,
|
|
6857
6852
|
defaultArray: [
|
|
6858
6853
|
{
|
|
6854
|
+
type: "line",
|
|
6859
6855
|
data: [150, 230, 224, 218, 135, 147, 260]
|
|
6860
6856
|
}
|
|
6861
6857
|
]
|
|
@@ -7568,10 +7564,6 @@ const Ri = {
|
|
|
7568
7564
|
key: "value",
|
|
7569
7565
|
name: "x-runtime-lib.value",
|
|
7570
7566
|
ui: "numInput",
|
|
7571
|
-
precision: 5,
|
|
7572
|
-
min: -1 / 0,
|
|
7573
|
-
max: 1 / 0,
|
|
7574
|
-
step: 1,
|
|
7575
7567
|
default: 0
|
|
7576
7568
|
},
|
|
7577
7569
|
{
|
package/dist/types/element.d.ts
CHANGED
|
@@ -16,10 +16,10 @@ type ZTypeWord = {
|
|
|
16
16
|
} & ZTypeBase;
|
|
17
17
|
type ZTypeNumInput = {
|
|
18
18
|
ui: 'pixelInput' | 'percentInput';
|
|
19
|
-
precision
|
|
20
|
-
min
|
|
21
|
-
max
|
|
22
|
-
step
|
|
19
|
+
precision?: number;
|
|
20
|
+
min?: number;
|
|
21
|
+
max?: number;
|
|
22
|
+
step?: number;
|
|
23
23
|
default: string;
|
|
24
24
|
} & ZTypeBase;
|
|
25
25
|
export type ZType = ZTypeUndefined | ZTypeWord | ZTypeNumInput;
|
|
@@ -73,9 +73,9 @@ type ZPropStrInput = {
|
|
|
73
73
|
type ZPropNumInput = {
|
|
74
74
|
ui: 'numInput';
|
|
75
75
|
precision?: number;
|
|
76
|
-
min
|
|
77
|
-
max
|
|
78
|
-
step
|
|
76
|
+
min?: number;
|
|
77
|
+
max?: number;
|
|
78
|
+
step?: number;
|
|
79
79
|
readonly?: boolean;
|
|
80
80
|
default: number;
|
|
81
81
|
} & ZPropBase;
|