x-runtime-lib 0.8.208 → 0.8.210

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 CHANGED
@@ -1370,12 +1370,12 @@ function useElementMethod(e, p, m) {
1370
1370
  g?.eventBus.off(_, m);
1371
1371
  });
1372
1372
  }
1373
- var getPropertySandbox = async (e, p, m, g) => {
1374
- let _ = await e.getProperty(makePropertyId("elementProperty", p, toDotString(m)));
1373
+ var getPropertySandbox = (e, p, m, g) => {
1374
+ let _ = e.getProperty(makePropertyId("elementProperty", p, toDotString(m)));
1375
1375
  return g && typeof _ == "string" ? JSON.parse(_) : _;
1376
1376
  }, setPropertySandbox = async (e, p, m, g, _) => {
1377
1377
  _ && typeof g == "object" && (g = JSON.stringify(g, null, 2)), await e.setProperty(makePropertyId("elementProperty", p, toDotString(m)), g);
1378
- }, getPropertyEditor = async (e, p, m) => {
1378
+ }, getPropertyEditor = (e, p, m) => {
1379
1379
  let g = getField(e, p);
1380
1380
  return m && typeof g == "string" ? JSON.parse(g) : g;
1381
1381
  }, setPropertyEditor = async (e, p, m, g) => {
@@ -1383,8 +1383,8 @@ var getPropertySandbox = async (e, p, m, g) => {
1383
1383
  };
1384
1384
  function useElementProperty(e, p, m) {
1385
1385
  let g = injectSandbox(), _ = ref();
1386
- return watchEffect(async () => {
1387
- g ? _.value = await getPropertySandbox(g, e.value.basic.id, p, m) : _.value = await getPropertyEditor(e.value, p, m);
1386
+ return watchEffect(() => {
1387
+ g ? _.value = getPropertySandbox(g, e.value.basic.id, p, m) : _.value = getPropertyEditor(e.value, p, m);
1388
1388
  }), watch(_, async () => {
1389
1389
  g ? await setPropertySandbox(g, e.value.basic.id, p, _.value, m) : await setPropertyEditor(e.value, p, _.value, m);
1390
1390
  }), { property: _ };
@@ -3699,7 +3699,10 @@ var v1_default$40 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
3699
3699
  let { node: p } = useElementBase(e), { property: m } = useElementProperty(p, ["settings", "hideDetails"]), { property: g } = useElementProperty(p, ["settings", "label"]), { property: _ } = useElementProperty(p, ["settings", "placeholder"]), { property: v } = useElementProperty(p, ["settings", "readonly"]), { property: y } = useElementProperty(p, ["settings", "singleLine"]), { theme: b } = useTheme(), { property: x } = useElementProperty(p, ["settings", "value"]);
3700
3700
  return (e, p) => {
3701
3701
  let S = resolveComponent("v-combobox");
3702
- return openBlock(), createBlock(unref(wrap_default), { mask: "" }, {
3702
+ return openBlock(), createBlock(unref(wrap_default), {
3703
+ block: "",
3704
+ mask: ""
3705
+ }, {
3703
3706
  default: withCtx(() => [createVNode(S, {
3704
3707
  modelValue: unref(x),
3705
3708
  "onUpdate:modelValue": p[0] ||= (e) => isRef(x) ? x.value = e : null,
@@ -3989,28 +3992,10 @@ var v1_default$40 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
3989
3992
  refContext: {}
3990
3993
  },
3991
3994
  setup(e) {
3992
- let p = e, { node: m } = useElementBase(p), g = injectType(), _ = injectData(), v = injectSandbox(), { property: y } = useElementProperty(m, ["settings", "valid"]), { property: b } = useElementProperty(m, ["settings", "fastFail"]), { property: x } = useElementProperty(m, [
3993
- "settings",
3994
- "backgroundColor",
3995
- "mode"
3996
- ]), { property: S } = useElementProperty(m, [
3997
- "settings",
3998
- "backgroundColor",
3999
- "theme"
4000
- ]), { property: C } = useElementProperty(m, [
4001
- "settings",
4002
- "backgroundColor",
4003
- "custom",
4004
- "light"
4005
- ]), { property: w } = useElementProperty(m, [
4006
- "settings",
4007
- "backgroundColor",
4008
- "custom",
4009
- "dark"
4010
- ]), { color: T } = useColorV1(x, S, C, w), { applySize: E } = useSizeV1(p, m), { applyMargin: D } = useMarginV1(m), { applyPadding: O } = usePaddingV1(m), { applyBorder: k } = useBorderV1(m), A = computed(() => {
3995
+ let p = e, { node: m } = useElementBase(p), g = injectType(), _ = injectData(), v = injectSandbox(), { property: y } = useElementProperty(m, ["settings", "valid"]), { property: b } = useElementProperty(m, ["settings", "fastFail"]), { applySize: x } = useSizeV1(p, m), { applyMargin: S } = useMarginV1(m), { applyPadding: C } = usePaddingV1(m), { applyBorder: w } = useBorderV1(m), T = computed(() => {
4011
3996
  let e = {}, p = _.value?.type;
4012
- return g === "page" ? p === "ui" ? (E(e), D(e), O(e), k(e), T.value && (e.backgroundColor = T.value)) : console.assert(!1) : g === "comp" && p === "ui" ? (E(e), D(e), O(e), k(e), T.value && (e.backgroundColor = T.value)) : console.assert(!1), e;
4013
- }), j = async () => {
3997
+ return g === "page" ? p === "ui" ? (x(e), S(e), C(e), w(e)) : console.assert(!1) : g === "comp" && p === "ui" ? (x(e), S(e), C(e), w(e)) : console.assert(!1), e;
3998
+ }), E = async () => {
4014
3999
  !v || !v.vm || await v.triggerEvent(makeEventId("elementEvent", p.nodeId, "submit"), []);
4015
4000
  };
4016
4001
  return (e, p) => {
@@ -4019,8 +4004,8 @@ var v1_default$40 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4019
4004
  modelValue: unref(y),
4020
4005
  "onUpdate:modelValue": p[0] ||= (e) => isRef(y) ? y.value = e : null,
4021
4006
  "fast-fail": unref(b),
4022
- style: normalizeStyle(A.value),
4023
- onSubmit: withModifiers(j, ["prevent"])
4007
+ style: normalizeStyle(T.value),
4008
+ onSubmit: withModifiers(E, ["prevent"])
4024
4009
  }, {
4025
4010
  default: withCtx(() => [renderSlot(e.$slots, "default")]),
4026
4011
  _: 3
@@ -4204,29 +4189,24 @@ var v1_default$40 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4204
4189
  refContext: {}
4205
4190
  },
4206
4191
  setup(e) {
4207
- let { node: p } = useElementBase(e), m = injectMode(), { property: g } = useElementProperty(p, ["settings", "density"]), { property: _ } = useElementProperty(p, ["settings", "disabled"]), { property: v } = useElementProperty(p, ["settings", "length"]), { property: y } = useElementProperty(p, ["settings", "showFirstLastPage"]), { property: b } = useElementProperty(p, ["settings", "size"]), { property: x } = useElementProperty(p, ["settings", "start"]), { theme: S } = useTheme(), { property: C } = useElementProperty(p, ["settings", "tile"]), { property: w } = useElementProperty(p, ["settings", "value"]), { property: T } = useElementProperty(p, ["settings", "variant"]), E = computed(() => {
4208
- let e = {};
4209
- return m === "editor" && (e.pointerEvents = "none"), e;
4210
- });
4192
+ let { node: p } = useElementBase(e), { property: m } = useElementProperty(p, ["settings", "density"]), { property: g } = useElementProperty(p, ["settings", "disabled"]), { property: _ } = useElementProperty(p, ["settings", "length"]), { property: v } = useElementProperty(p, ["settings", "showFirstLastPage"]), { property: y } = useElementProperty(p, ["settings", "size"]), { theme: b } = useTheme(), { property: x } = useElementProperty(p, ["settings", "tile"]), { property: S } = useElementProperty(p, ["settings", "value"]), { property: C } = useElementProperty(p, ["settings", "variant"]);
4211
4193
  return (e, p) => {
4212
- let m = resolveComponent("v-pagination");
4194
+ let w = resolveComponent("v-pagination");
4213
4195
  return openBlock(), createBlock(unref(wrap_default), {
4214
4196
  block: "",
4215
4197
  mask: ""
4216
4198
  }, {
4217
- default: withCtx(() => [createVNode(m, {
4218
- modelValue: unref(w),
4219
- "onUpdate:modelValue": p[0] ||= (e) => isRef(w) ? w.value = e : null,
4220
- density: unref(g),
4221
- disabled: unref(_),
4222
- length: unref(v),
4223
- "show-first-last-page": unref(y),
4224
- size: unref(b),
4225
- start: unref(x),
4226
- style: normalizeStyle(E.value),
4227
- theme: unref(S),
4228
- tile: unref(C),
4229
- variant: unref(T)
4199
+ default: withCtx(() => [createVNode(w, {
4200
+ modelValue: unref(S),
4201
+ "onUpdate:modelValue": p[0] ||= (e) => isRef(S) ? S.value = e : null,
4202
+ density: unref(m),
4203
+ disabled: unref(g),
4204
+ length: unref(_),
4205
+ "show-first-last-page": unref(v),
4206
+ size: unref(y),
4207
+ theme: unref(b),
4208
+ tile: unref(x),
4209
+ variant: unref(C)
4230
4210
  }, null, 8, [
4231
4211
  "modelValue",
4232
4212
  "density",
@@ -4234,8 +4214,6 @@ var v1_default$40 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4234
4214
  "length",
4235
4215
  "show-first-last-page",
4236
4216
  "size",
4237
- "start",
4238
- "style",
4239
4217
  "theme",
4240
4218
  "tile",
4241
4219
  "variant"
@@ -4825,29 +4803,29 @@ var v1_default$11 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4825
4803
  "selectedColor",
4826
4804
  "custom",
4827
4805
  "dark"
4828
- ]), { color: E } = useColorV1(S, C, w, T), { property: D } = useElementProperty(p, ["settings", "density"]), { property: O } = useElementProperty(p, ["settings", "direction"]), { property: k } = useElementProperty(p, ["settings", "disabled"]), { property: A } = useElementProperty(p, ["settings", "fixedTabs"]), { property: j } = useElementProperty(p, ["settings", "grow"]), { property: M } = useElementProperty(p, ["settings", "hideSlider"]), { property: N } = useElementProperty(p, ["settings", "items"]), { property: P } = useElementProperty(p, ["settings", "mandatory"]), { property: F } = useElementProperty(p, ["settings", "showArrows"]), { property: I } = useElementProperty(p, [
4806
+ ]), { color: E } = useColorV1(S, C, w, T), { property: D } = useElementProperty(p, ["settings", "density"]), { property: O } = useElementProperty(p, ["settings", "direction"]), { property: k } = useElementProperty(p, ["settings", "disabled"]), { property: A } = useElementProperty(p, ["settings", "fixedTabs"]), { property: j } = useElementProperty(p, ["settings", "grow"]), { property: M } = useElementProperty(p, ["settings", "hideSlider"]), { property: N } = useElementProperty(p, ["settings", "mandatory"]), { property: P } = useElementProperty(p, ["settings", "showArrows"]), { property: F } = useElementProperty(p, [
4829
4807
  "settings",
4830
4808
  "color",
4831
4809
  "sliderColor",
4832
4810
  "mode"
4833
- ]), { property: L } = useElementProperty(p, [
4811
+ ]), { property: I } = useElementProperty(p, [
4834
4812
  "settings",
4835
4813
  "color",
4836
4814
  "sliderColor",
4837
4815
  "theme"
4838
- ]), { property: R } = useElementProperty(p, [
4816
+ ]), { property: L } = useElementProperty(p, [
4839
4817
  "settings",
4840
4818
  "color",
4841
4819
  "sliderColor",
4842
4820
  "custom",
4843
4821
  "light"
4844
- ]), { property: z } = useElementProperty(p, [
4822
+ ]), { property: R } = useElementProperty(p, [
4845
4823
  "settings",
4846
4824
  "color",
4847
4825
  "sliderColor",
4848
4826
  "custom",
4849
4827
  "dark"
4850
- ]), { color: B } = useColorV1(I, L, R, z), { property: V } = useElementProperty(p, ["settings", "stacked"]), { theme: H } = useTheme(), { property: U } = useElementProperty(p, ["settings", "value"]);
4828
+ ]), { color: z } = useColorV1(F, I, L, R), { property: B } = useElementProperty(p, ["settings", "stacked"]), { theme: V } = useTheme(), { property: H } = useElementProperty(p, ["settings", "value"]);
4851
4829
  return (e, p) => {
4852
4830
  let g = resolveComponent("v-tabs");
4853
4831
  return openBlock(), createBlock(unref(wrap_default), {
@@ -4855,8 +4833,8 @@ var v1_default$11 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4855
4833
  mask: ""
4856
4834
  }, {
4857
4835
  default: withCtx(() => [createVNode(g, {
4858
- modelValue: unref(U),
4859
- "onUpdate:modelValue": p[0] ||= (e) => isRef(U) ? U.value = e : null,
4836
+ modelValue: unref(H),
4837
+ "onUpdate:modelValue": p[0] ||= (e) => isRef(H) ? H.value = e : null,
4860
4838
  "align-tabs": unref(m),
4861
4839
  "bg-color": unref(b),
4862
4840
  "center-active": unref(x),
@@ -4867,12 +4845,11 @@ var v1_default$11 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4867
4845
  "fixed-tabs": unref(A),
4868
4846
  grow: unref(j),
4869
4847
  "hide-slider": unref(M),
4870
- items: unref(N),
4871
- mandatory: unref(P),
4872
- "show-arrows": unref(F),
4873
- "slider-color": unref(B),
4874
- stacked: unref(V),
4875
- theme: unref(H)
4848
+ mandatory: unref(N),
4849
+ "show-arrows": unref(P),
4850
+ "slider-color": unref(z),
4851
+ stacked: unref(B),
4852
+ theme: unref(V)
4876
4853
  }, {
4877
4854
  default: withCtx(() => [renderSlot(e.$slots, "default")]),
4878
4855
  _: 3
@@ -4888,7 +4865,6 @@ var v1_default$11 = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main
4888
4865
  "fixed-tabs",
4889
4866
  "grow",
4890
4867
  "hide-slider",
4891
- "items",
4892
4868
  "mandatory",
4893
4869
  "show-arrows",
4894
4870
  "slider-color",
@@ -5811,7 +5787,7 @@ const basicV1 = {
5811
5787
  }
5812
5788
  ]
5813
5789
  };
5814
- var settings$45 = {
5790
+ var settings$46 = {
5815
5791
  key: "settings",
5816
5792
  name: "x-runtime-lib.settings",
5817
5793
  children: [
@@ -5867,12 +5843,12 @@ const orthographicCameraV1 = {
5867
5843
  page3d: [
5868
5844
  basicV1,
5869
5845
  transformV1,
5870
- settings$45
5846
+ settings$46
5871
5847
  ],
5872
5848
  comp3d: [
5873
5849
  basicV1,
5874
5850
  transformV1,
5875
- settings$45
5851
+ settings$46
5876
5852
  ]
5877
5853
  },
5878
5854
  events: [],
@@ -5880,7 +5856,7 @@ const orthographicCameraV1 = {
5880
5856
  slots: []
5881
5857
  };
5882
5858
  regElement(orthographicCameraV1);
5883
- var settings$44 = {
5859
+ var settings$45 = {
5884
5860
  key: "settings",
5885
5861
  name: "x-runtime-lib.settings",
5886
5862
  children: [
@@ -5922,12 +5898,12 @@ const perspectiveCameraV1 = {
5922
5898
  page3d: [
5923
5899
  basicV1,
5924
5900
  transformV1,
5925
- settings$44
5901
+ settings$45
5926
5902
  ],
5927
5903
  comp3d: [
5928
5904
  basicV1,
5929
5905
  transformV1,
5930
- settings$44
5906
+ settings$45
5931
5907
  ]
5932
5908
  },
5933
5909
  events: [],
@@ -5977,7 +5953,7 @@ const orbitControlsV1 = {
5977
5953
  leaf: !0
5978
5954
  };
5979
5955
  regElement(orbitControlsV1);
5980
- function spawn$17(e, p) {
5956
+ function spawn$18(e, p) {
5981
5957
  let m = createNode(e, p, "3d_mesh_v1");
5982
5958
  m.transform = {
5983
5959
  position: {
@@ -6027,7 +6003,7 @@ function spawnMeshBasicMaterial$1(e, p) {
6027
6003
  nodes: { [m.basic.id]: m }
6028
6004
  };
6029
6005
  }
6030
- var settings$43 = {
6006
+ var settings$44 = {
6031
6007
  key: "settings",
6032
6008
  name: "x-runtime-lib.settings",
6033
6009
  children: [
@@ -6077,17 +6053,17 @@ const boxGeometryV1 = {
6077
6053
  name: "x-runtime-lib.boxGeometry",
6078
6054
  comp: v1_default$58,
6079
6055
  properties: {
6080
- page3d: [basicV1, settings$43],
6081
- comp3d: [basicV1, settings$43]
6056
+ page3d: [basicV1, settings$44],
6057
+ comp3d: [basicV1, settings$44]
6082
6058
  },
6083
6059
  events: [],
6084
6060
  methods: [],
6085
6061
  slots: [],
6086
6062
  leaf: !0,
6087
- spawn: spawn$17
6063
+ spawn: spawn$18
6088
6064
  };
6089
6065
  regElement(boxGeometryV1);
6090
- function spawn$16(e, p) {
6066
+ function spawn$17(e, p) {
6091
6067
  let m = createNode(e, p, "3d_mesh_v1");
6092
6068
  m.transform = {
6093
6069
  position: {
@@ -6138,7 +6114,7 @@ function spawnMeshBasicMaterial(e, p) {
6138
6114
  nodes: { [m.basic.id]: m }
6139
6115
  };
6140
6116
  }
6141
- var settings$42 = {
6117
+ var settings$43 = {
6142
6118
  key: "settings",
6143
6119
  name: "x-runtime-lib.settings",
6144
6120
  children: [
@@ -6196,19 +6172,19 @@ const sphereGeometryV1 = {
6196
6172
  name: "x-runtime-lib.sphereGeometry",
6197
6173
  comp: v1_default$57,
6198
6174
  properties: {
6199
- page3d: [basicV1, settings$42],
6200
- comp3d: [basicV1, settings$42]
6175
+ page3d: [basicV1, settings$43],
6176
+ comp3d: [basicV1, settings$43]
6201
6177
  },
6202
6178
  events: [],
6203
6179
  methods: [],
6204
6180
  slots: [],
6205
6181
  leaf: !0,
6206
- spawn: spawn$16
6182
+ spawn: spawn$17
6207
6183
  };
6208
6184
  regElement(sphereGeometryV1);
6209
6185
  var color$4 = cloneDeep_default(colorV1);
6210
6186
  color$4.children[0].default = "custom", color$4.children[2].children[0].default = "0xffffff", color$4.children[2].children[1].default = "0xffffff";
6211
- var settings$41 = {
6187
+ var settings$42 = {
6212
6188
  key: "settings",
6213
6189
  name: "x-runtime-lib.settings",
6214
6190
  children: [color$4, {
@@ -6227,12 +6203,12 @@ const ambientLightV1 = {
6227
6203
  page3d: [
6228
6204
  basicV1,
6229
6205
  transformV1,
6230
- settings$41
6206
+ settings$42
6231
6207
  ],
6232
6208
  comp3d: [
6233
6209
  basicV1,
6234
6210
  transformV1,
6235
- settings$41
6211
+ settings$42
6236
6212
  ]
6237
6213
  },
6238
6214
  events: [],
@@ -6242,7 +6218,7 @@ const ambientLightV1 = {
6242
6218
  regElement(ambientLightV1);
6243
6219
  var color$3 = cloneDeep_default(colorV1);
6244
6220
  color$3.children[0].default = "custom", color$3.children[2].children[0].default = "0xffffff", color$3.children[2].children[1].default = "0xffffff";
6245
- var settings$40 = {
6221
+ var settings$41 = {
6246
6222
  key: "settings",
6247
6223
  name: "x-runtime-lib.settings",
6248
6224
  children: [color$3, {
@@ -6261,12 +6237,12 @@ const directionalLightV1 = {
6261
6237
  page3d: [
6262
6238
  basicV1,
6263
6239
  transformV1,
6264
- settings$40
6240
+ settings$41
6265
6241
  ],
6266
6242
  comp3d: [
6267
6243
  basicV1,
6268
6244
  transformV1,
6269
- settings$40
6245
+ settings$41
6270
6246
  ]
6271
6247
  },
6272
6248
  events: [],
@@ -6276,7 +6252,7 @@ const directionalLightV1 = {
6276
6252
  regElement(directionalLightV1);
6277
6253
  var color$2 = cloneDeep_default(colorV1);
6278
6254
  color$2.children[0].default = "custom", color$2.children[2].children[0].default = "0xffffff", color$2.children[2].children[1].default = "0xffffff";
6279
- var settings$39 = {
6255
+ var settings$40 = {
6280
6256
  key: "settings",
6281
6257
  name: "x-runtime-lib.settings",
6282
6258
  children: [
@@ -6312,12 +6288,12 @@ const pointLightV1 = {
6312
6288
  page3d: [
6313
6289
  basicV1,
6314
6290
  transformV1,
6315
- settings$39
6291
+ settings$40
6316
6292
  ],
6317
6293
  comp3d: [
6318
6294
  basicV1,
6319
6295
  transformV1,
6320
- settings$39
6296
+ settings$40
6321
6297
  ]
6322
6298
  },
6323
6299
  events: [],
@@ -6327,7 +6303,7 @@ const pointLightV1 = {
6327
6303
  regElement(pointLightV1);
6328
6304
  var color$1 = cloneDeep_default(colorV1);
6329
6305
  color$1.children[0].default = "custom", color$1.children[2].children[0].default = "0xffffff", color$1.children[2].children[1].default = "0xffffff";
6330
- var settings$38 = {
6306
+ var settings$39 = {
6331
6307
  key: "settings",
6332
6308
  name: "x-runtime-lib.settings",
6333
6309
  children: [
@@ -6380,12 +6356,12 @@ const spotLightV1 = {
6380
6356
  page3d: [
6381
6357
  basicV1,
6382
6358
  transformV1,
6383
- settings$38
6359
+ settings$39
6384
6360
  ],
6385
6361
  comp3d: [
6386
6362
  basicV1,
6387
6363
  transformV1,
6388
- settings$38
6364
+ settings$39
6389
6365
  ]
6390
6366
  },
6391
6367
  events: [],
@@ -6433,7 +6409,7 @@ const meshV1 = {
6433
6409
  slots: []
6434
6410
  };
6435
6411
  regElement(meshV1);
6436
- function spawn$15(e, p) {
6412
+ function spawn$16(e, p) {
6437
6413
  let m = createNode(e, p, "ui_bar_chart_v1");
6438
6414
  return m.size.height = "300px", m.xAxis.data = [
6439
6415
  "Mon",
@@ -6503,10 +6479,10 @@ const barChartV1 = {
6503
6479
  ]
6504
6480
  },
6505
6481
  leaf: !0,
6506
- spawn: spawn$15
6482
+ spawn: spawn$16
6507
6483
  };
6508
6484
  regElement(barChartV1);
6509
- function spawn$14(e, p) {
6485
+ function spawn$15(e, p) {
6510
6486
  let m = createNode(e, p, "ui_line_chart_v1");
6511
6487
  return m.size.height = "300px", m.xAxis.data = [
6512
6488
  "Mon",
@@ -6576,10 +6552,10 @@ const lineChartV1 = {
6576
6552
  ]
6577
6553
  },
6578
6554
  leaf: !0,
6579
- spawn: spawn$14
6555
+ spawn: spawn$15
6580
6556
  };
6581
6557
  regElement(lineChartV1);
6582
- var settings$37 = {
6558
+ var settings$38 = {
6583
6559
  key: "settings",
6584
6560
  name: "x-runtime-lib.settings",
6585
6561
  children: [{
@@ -6604,32 +6580,32 @@ const multipleRefV1 = {
6604
6580
  pageUi: [
6605
6581
  basicV1,
6606
6582
  sizeV1,
6607
- settings$37,
6583
+ settings$38,
6608
6584
  instances$1
6609
6585
  ],
6610
6586
  compUi: [
6611
6587
  basicV1,
6612
6588
  sizeV1,
6613
- settings$37,
6589
+ settings$38,
6614
6590
  instances$1
6615
6591
  ],
6616
6592
  page3d: [
6617
6593
  basicV1,
6618
6594
  transformV1,
6619
- settings$37,
6595
+ settings$38,
6620
6596
  instances$1
6621
6597
  ],
6622
6598
  comp3d: [
6623
6599
  basicV1,
6624
6600
  transformV1,
6625
- settings$37,
6601
+ settings$38,
6626
6602
  instances$1
6627
6603
  ]
6628
6604
  },
6629
6605
  leaf: !0
6630
6606
  };
6631
6607
  regElement(multipleRefV1);
6632
- var settings$36 = {
6608
+ var settings$37 = {
6633
6609
  key: "settings",
6634
6610
  name: "x-runtime-lib.settings",
6635
6611
  children: [{
@@ -6659,32 +6635,32 @@ const multipleSlotV1 = {
6659
6635
  pageUi: [
6660
6636
  basicV1,
6661
6637
  sizeV1,
6662
- settings$36,
6638
+ settings$37,
6663
6639
  instances
6664
6640
  ],
6665
6641
  compUi: [
6666
6642
  basicV1,
6667
6643
  sizeV1,
6668
- settings$36,
6644
+ settings$37,
6669
6645
  instances
6670
6646
  ],
6671
6647
  page3d: [
6672
6648
  basicV1,
6673
6649
  transformV1,
6674
- settings$36,
6650
+ settings$37,
6675
6651
  instances
6676
6652
  ],
6677
6653
  comp3d: [
6678
6654
  basicV1,
6679
6655
  transformV1,
6680
- settings$36,
6656
+ settings$37,
6681
6657
  instances
6682
6658
  ]
6683
6659
  },
6684
6660
  leaf: !0
6685
6661
  };
6686
6662
  regElement(multipleSlotV1);
6687
- var settings$35 = {
6663
+ var settings$36 = {
6688
6664
  key: "settings",
6689
6665
  name: "x-runtime-lib.settings",
6690
6666
  children: [{
@@ -6702,28 +6678,28 @@ const referenceV1 = {
6702
6678
  pageUi: [
6703
6679
  basicV1,
6704
6680
  sizeV1,
6705
- settings$35
6681
+ settings$36
6706
6682
  ],
6707
6683
  compUi: [
6708
6684
  basicV1,
6709
6685
  sizeV1,
6710
- settings$35
6686
+ settings$36
6711
6687
  ],
6712
6688
  page3d: [
6713
6689
  basicV1,
6714
6690
  transformV1,
6715
- settings$35
6691
+ settings$36
6716
6692
  ],
6717
6693
  comp3d: [
6718
6694
  basicV1,
6719
6695
  transformV1,
6720
- settings$35
6696
+ settings$36
6721
6697
  ]
6722
6698
  },
6723
6699
  leaf: !0
6724
6700
  };
6725
6701
  regElement(referenceV1);
6726
- var settings$34 = {
6702
+ var settings$35 = {
6727
6703
  key: "settings",
6728
6704
  name: "x-runtime-lib.settings",
6729
6705
  children: [{
@@ -6738,12 +6714,12 @@ const renderSwitchV1 = {
6738
6714
  name: "x-runtime-lib.renderSwitch",
6739
6715
  comp: v1_default$44,
6740
6716
  properties: {
6741
- pageUi: [basicV1, settings$34],
6742
- compUi: [basicV1, settings$34]
6717
+ pageUi: [basicV1, settings$35],
6718
+ compUi: [basicV1, settings$35]
6743
6719
  }
6744
6720
  };
6745
6721
  regElement(renderSwitchV1);
6746
- var settings$33 = {
6722
+ var settings$34 = {
6747
6723
  key: "settings",
6748
6724
  name: "x-runtime-lib.settings",
6749
6725
  children: [{
@@ -6766,22 +6742,22 @@ const slotV1 = {
6766
6742
  pageUi: [
6767
6743
  basicV1,
6768
6744
  sizeV1,
6769
- settings$33
6745
+ settings$34
6770
6746
  ],
6771
6747
  compUi: [
6772
6748
  basicV1,
6773
6749
  sizeV1,
6774
- settings$33
6750
+ settings$34
6775
6751
  ],
6776
6752
  page3d: [
6777
6753
  basicV1,
6778
6754
  transformV1,
6779
- settings$33
6755
+ settings$34
6780
6756
  ],
6781
6757
  comp3d: [
6782
6758
  basicV1,
6783
6759
  transformV1,
6784
- settings$33
6760
+ settings$34
6785
6761
  ]
6786
6762
  },
6787
6763
  leaf: !0
@@ -6852,7 +6828,7 @@ const globalityV1 = {
6852
6828
  internal: !0
6853
6829
  };
6854
6830
  regElement(globalityV1);
6855
- var settings$32 = {
6831
+ var settings$33 = {
6856
6832
  key: "settings",
6857
6833
  name: "x-runtime-lib.settings",
6858
6834
  children: [
@@ -6893,19 +6869,19 @@ const badgeV1 = {
6893
6869
  name: "x-runtime-lib.badge",
6894
6870
  comp: v1_default$42,
6895
6871
  properties: {
6896
- pageUi: [basicV1, settings$32],
6897
- compUi: [basicV1, settings$32]
6872
+ pageUi: [basicV1, settings$33],
6873
+ compUi: [basicV1, settings$33]
6898
6874
  }
6899
6875
  };
6900
6876
  regElement(badgeV1);
6901
- function spawn$13(e, p) {
6877
+ function spawn$14(e, p) {
6902
6878
  let m = createNode(e, p, "ui_btn_v1");
6903
6879
  return m.settings.text = "button", {
6904
6880
  nodeLite: toNodeLite(m),
6905
6881
  nodes: { [m.basic.id]: m }
6906
6882
  };
6907
6883
  }
6908
- var settings$31 = {
6884
+ var settings$32 = {
6909
6885
  key: "settings",
6910
6886
  name: "x-runtime-lib.settings",
6911
6887
  children: [
@@ -6998,12 +6974,12 @@ const btnV1 = {
6998
6974
  pageUi: [
6999
6975
  basicV1,
7000
6976
  sizeV1,
7001
- settings$31
6977
+ settings$32
7002
6978
  ],
7003
6979
  compUi: [
7004
6980
  basicV1,
7005
6981
  sizeV1,
7006
- settings$31
6982
+ settings$32
7007
6983
  ]
7008
6984
  },
7009
6985
  events: [{
@@ -7011,7 +6987,7 @@ const btnV1 = {
7011
6987
  name: "x-runtime-lib.click"
7012
6988
  }],
7013
6989
  leaf: !0,
7014
- spawn: spawn$13
6990
+ spawn: spawn$14
7015
6991
  };
7016
6992
  regElement(btnV1);
7017
6993
  const btnGroupV1 = {
@@ -7024,7 +7000,7 @@ const btnGroupV1 = {
7024
7000
  }
7025
7001
  };
7026
7002
  regElement(btnGroupV1);
7027
- var settings$30 = {
7003
+ var settings$31 = {
7028
7004
  key: "settings",
7029
7005
  name: "x-runtime-lib.settings",
7030
7006
  children: [
@@ -7091,19 +7067,19 @@ const btnToggleV1 = {
7091
7067
  name: "x-runtime-lib.buttonToggle",
7092
7068
  comp: v1_default$39,
7093
7069
  properties: {
7094
- pageUi: [basicV1, settings$30],
7095
- compUi: [basicV1, settings$30]
7070
+ pageUi: [basicV1, settings$31],
7071
+ compUi: [basicV1, settings$31]
7096
7072
  }
7097
7073
  };
7098
7074
  regElement(btnToggleV1);
7099
- function spawn$12(e, p) {
7075
+ function spawn$13(e, p) {
7100
7076
  let m = createNode(e, p, "ui_card_v1");
7101
7077
  return m.children = [], m.settings.title = "title", m.settings.subtitle = "subtitle", m.settings.text = "text", {
7102
7078
  nodeLite: toNodeLite(m),
7103
7079
  nodes: { [m.basic.id]: m }
7104
7080
  };
7105
7081
  }
7106
- var settings$29 = {
7082
+ var settings$30 = {
7107
7083
  key: "settings",
7108
7084
  name: "x-runtime-lib.settings",
7109
7085
  children: [
@@ -7167,18 +7143,18 @@ const cardV1 = {
7167
7143
  pageUi: [
7168
7144
  basicV1,
7169
7145
  sizeV1,
7170
- settings$29
7146
+ settings$30
7171
7147
  ],
7172
7148
  compUi: [
7173
7149
  basicV1,
7174
7150
  sizeV1,
7175
- settings$29
7151
+ settings$30
7176
7152
  ]
7177
7153
  },
7178
- spawn: spawn$12
7154
+ spawn: spawn$13
7179
7155
  };
7180
7156
  regElement(cardV1);
7181
- var settings$28 = {
7157
+ var settings$29 = {
7182
7158
  key: "settings",
7183
7159
  name: "x-runtime-lib.settings",
7184
7160
  children: [{
@@ -7198,13 +7174,20 @@ const checkboxV1 = {
7198
7174
  name: "x-runtime-lib.checkbox",
7199
7175
  comp: v1_default$37,
7200
7176
  properties: {
7201
- pageUi: [basicV1, settings$28],
7202
- compUi: [basicV1, settings$28]
7177
+ pageUi: [basicV1, settings$29],
7178
+ compUi: [basicV1, settings$29]
7203
7179
  },
7204
7180
  leaf: !0
7205
7181
  };
7206
7182
  regElement(checkboxV1);
7207
- var settings$27 = {
7183
+ function spawn$12(e, p) {
7184
+ let m = createNode(e, p, "ui_chip_v1");
7185
+ return m.settings.value = "chip", m.settings.text = "chip", {
7186
+ nodeLite: toNodeLite(m),
7187
+ nodes: { [m.basic.id]: m }
7188
+ };
7189
+ }
7190
+ var settings$28 = {
7208
7191
  key: "settings",
7209
7192
  name: "x-runtime-lib.settings",
7210
7193
  children: [
@@ -7285,10 +7268,11 @@ const chipV1 = {
7285
7268
  name: "x-runtime-lib.chip",
7286
7269
  comp: v1_default$36,
7287
7270
  properties: {
7288
- pageUi: [basicV1, settings$27],
7289
- compUi: [basicV1, settings$27]
7271
+ pageUi: [basicV1, settings$28],
7272
+ compUi: [basicV1, settings$28]
7290
7273
  },
7291
- leaf: !0
7274
+ leaf: !0,
7275
+ spawn: spawn$12
7292
7276
  };
7293
7277
  regElement(chipV1);
7294
7278
  function spawn$11(e, p) {
@@ -7320,7 +7304,7 @@ function spawnChip(e, p, m, g) {
7320
7304
  nodes: { [_.basic.id]: _ }
7321
7305
  };
7322
7306
  }
7323
- var settings$26 = {
7307
+ var settings$27 = {
7324
7308
  key: "settings",
7325
7309
  name: "x-runtime-lib.settings",
7326
7310
  children: [
@@ -7380,8 +7364,8 @@ const chipGroupV1 = {
7380
7364
  name: "x-runtime-lib.chipGroup",
7381
7365
  comp: v1_default$35,
7382
7366
  properties: {
7383
- pageUi: [basicV1, settings$26],
7384
- compUi: [basicV1, settings$26]
7367
+ pageUi: [basicV1, settings$27],
7368
+ compUi: [basicV1, settings$27]
7385
7369
  },
7386
7370
  spawn: spawn$11
7387
7371
  };
@@ -7397,7 +7381,7 @@ const colorPickerV1 = {
7397
7381
  leaf: !0
7398
7382
  };
7399
7383
  regElement(colorPickerV1);
7400
- var settings$25 = {
7384
+ var settings$26 = {
7401
7385
  key: "settings",
7402
7386
  name: "x-runtime-lib.settings",
7403
7387
  children: [
@@ -7444,15 +7428,15 @@ const comboboxV1 = {
7444
7428
  name: "x-runtime-lib.combobox",
7445
7429
  comp: v1_default$33,
7446
7430
  properties: {
7447
- pageUi: [basicV1, settings$25],
7448
- compUi: [basicV1, settings$25]
7431
+ pageUi: [basicV1, settings$26],
7432
+ compUi: [basicV1, settings$26]
7449
7433
  },
7450
7434
  leaf: !0
7451
7435
  };
7452
7436
  regElement(comboboxV1);
7453
7437
  var backgroundColor$2 = cloneDeep_default(colorV1);
7454
7438
  backgroundColor$2.key = "backgroundColor", backgroundColor$2.name = "x-runtime-lib.backgroundColor";
7455
- var settings$24 = {
7439
+ var settings$25 = {
7456
7440
  key: "settings",
7457
7441
  name: "x-runtime-lib.settings",
7458
7442
  children: [backgroundColor$2]
@@ -7468,7 +7452,7 @@ const containerV1 = {
7468
7452
  borderV1,
7469
7453
  marginV1,
7470
7454
  paddingV1,
7471
- settings$24
7455
+ settings$25
7472
7456
  ],
7473
7457
  compUi: [
7474
7458
  basicV1,
@@ -7476,7 +7460,7 @@ const containerV1 = {
7476
7460
  borderV1,
7477
7461
  marginV1,
7478
7462
  paddingV1,
7479
- settings$24
7463
+ settings$25
7480
7464
  ]
7481
7465
  },
7482
7466
  events: [{
@@ -7514,7 +7498,7 @@ var size$1 = {
7514
7498
  types: "sizeTypesV1",
7515
7499
  default: ""
7516
7500
  }]
7517
- }, settings$23 = {
7501
+ }, settings$24 = {
7518
7502
  key: "settings",
7519
7503
  name: "x-runtime-lib.settings",
7520
7504
  children: [
@@ -7651,13 +7635,13 @@ const dataTableV1 = {
7651
7635
  pageUi: [
7652
7636
  basicV1,
7653
7637
  size$1,
7654
- settings$23,
7638
+ settings$24,
7655
7639
  slots$2
7656
7640
  ],
7657
7641
  compUi: [
7658
7642
  basicV1,
7659
7643
  size$1,
7660
- settings$23,
7644
+ settings$24,
7661
7645
  slots$2
7662
7646
  ]
7663
7647
  },
@@ -7705,7 +7689,7 @@ const dialogV1 = {
7705
7689
  teleport: !0
7706
7690
  };
7707
7691
  regElement(dialogV1);
7708
- var settings$22 = {
7692
+ var settings$23 = {
7709
7693
  key: "settings",
7710
7694
  name: "x-runtime-lib.settings",
7711
7695
  children: []
@@ -7715,8 +7699,8 @@ const fileInputV1 = {
7715
7699
  name: "x-runtime-lib.fileInput",
7716
7700
  comp: v1_default$28,
7717
7701
  properties: {
7718
- pageUi: [basicV1, settings$22],
7719
- compUi: [basicV1, settings$22]
7702
+ pageUi: [basicV1, settings$23],
7703
+ compUi: [basicV1, settings$23]
7720
7704
  },
7721
7705
  leaf: !0
7722
7706
  };
@@ -7755,7 +7739,7 @@ function spawnContainer(e, p, m, g, _, v, y, b, x) {
7755
7739
  }
7756
7740
  var backgroundColor$1 = cloneDeep_default(colorV1);
7757
7741
  backgroundColor$1.key = "backgroundColor", backgroundColor$1.name = "x-runtime-lib.backgroundColor";
7758
- var settings$21 = {
7742
+ var settings$22 = {
7759
7743
  key: "settings",
7760
7744
  name: "x-runtime-lib.settings",
7761
7745
  children: [
@@ -7937,7 +7921,7 @@ const flexLayoutV1 = {
7937
7921
  borderV1,
7938
7922
  marginV1,
7939
7923
  paddingV1,
7940
- settings$21
7924
+ settings$22
7941
7925
  ],
7942
7926
  compUi: [
7943
7927
  basicV1,
@@ -7945,7 +7929,7 @@ const flexLayoutV1 = {
7945
7929
  borderV1,
7946
7930
  marginV1,
7947
7931
  paddingV1,
7948
- settings$21
7932
+ settings$22
7949
7933
  ]
7950
7934
  },
7951
7935
  events: [{
@@ -7955,7 +7939,7 @@ const flexLayoutV1 = {
7955
7939
  spawn: spawn$9
7956
7940
  };
7957
7941
  regElement(flexLayoutV1);
7958
- var settings$20 = {
7942
+ var settings$21 = {
7959
7943
  key: "settings",
7960
7944
  name: "x-runtime-lib.settings",
7961
7945
  children: [{
@@ -7978,12 +7962,12 @@ const flexLayoutEntryV1 = {
7978
7962
  pageUi: [
7979
7963
  basicV1,
7980
7964
  sizeV1,
7981
- settings$20
7965
+ settings$21
7982
7966
  ],
7983
7967
  compUi: [
7984
7968
  basicV1,
7985
7969
  sizeV1,
7986
- settings$20
7970
+ settings$21
7987
7971
  ]
7988
7972
  }
7989
7973
  };
@@ -8005,7 +7989,7 @@ function spawnTextField(e, p) {
8005
7989
  nodes: { [m.basic.id]: m }
8006
7990
  };
8007
7991
  }
8008
- var settings$19 = {
7992
+ var settings$20 = {
8009
7993
  key: "settings",
8010
7994
  name: "x-runtime-lib.settings",
8011
7995
  children: [{
@@ -8032,7 +8016,7 @@ const formV1 = {
8032
8016
  borderV1,
8033
8017
  marginV1,
8034
8018
  paddingV1,
8035
- settings$19
8019
+ settings$20
8036
8020
  ],
8037
8021
  compUi: [
8038
8022
  basicV1,
@@ -8040,7 +8024,7 @@ const formV1 = {
8040
8024
  borderV1,
8041
8025
  marginV1,
8042
8026
  paddingV1,
8043
- settings$19
8027
+ settings$20
8044
8028
  ]
8045
8029
  },
8046
8030
  events: [{
@@ -8050,7 +8034,7 @@ const formV1 = {
8050
8034
  spawn: spawn$8
8051
8035
  };
8052
8036
  regElement(formV1);
8053
- var settings$18 = {
8037
+ var settings$19 = {
8054
8038
  key: "settings",
8055
8039
  name: "x-runtime-lib.settings",
8056
8040
  children: [
@@ -8081,8 +8065,8 @@ const iconV1 = {
8081
8065
  name: "x-runtime-lib.icon",
8082
8066
  comp: v1_default$24,
8083
8067
  properties: {
8084
- pageUi: [basicV1, settings$18],
8085
- compUi: [basicV1, settings$18]
8068
+ pageUi: [basicV1, settings$19],
8069
+ compUi: [basicV1, settings$19]
8086
8070
  },
8087
8071
  leaf: !0
8088
8072
  };
@@ -8138,7 +8122,7 @@ var size = {
8138
8122
  default: ""
8139
8123
  }
8140
8124
  ]
8141
- }, settings$17 = {
8125
+ }, settings$18 = {
8142
8126
  key: "settings",
8143
8127
  name: "x-runtime-lib.settings",
8144
8128
  children: [
@@ -8288,12 +8272,12 @@ const numberInputV1 = {
8288
8272
  pageUi: [
8289
8273
  basicV1,
8290
8274
  size,
8291
- settings$17
8275
+ settings$18
8292
8276
  ],
8293
8277
  compUi: [
8294
8278
  basicV1,
8295
8279
  size,
8296
- settings$17
8280
+ settings$18
8297
8281
  ]
8298
8282
  },
8299
8283
  events: [
@@ -8322,7 +8306,7 @@ const numberInputV1 = {
8322
8306
  spawn: spawn$7
8323
8307
  };
8324
8308
  regElement(numberInputV1);
8325
- var settings$16 = {
8309
+ var settings$17 = {
8326
8310
  key: "settings",
8327
8311
  name: "x-runtime-lib.settings",
8328
8312
  children: [
@@ -8391,13 +8375,13 @@ const paginationV1 = {
8391
8375
  name: "x-runtime-lib.pagination",
8392
8376
  comp: v1_default$21,
8393
8377
  properties: {
8394
- pageUi: [basicV1, settings$16],
8395
- compUi: [basicV1, settings$16]
8378
+ pageUi: [basicV1, settings$17],
8379
+ compUi: [basicV1, settings$17]
8396
8380
  },
8397
8381
  leaf: !0
8398
8382
  };
8399
8383
  regElement(paginationV1);
8400
- var settings$15 = {
8384
+ var settings$16 = {
8401
8385
  key: "settings",
8402
8386
  name: "x-runtime-lib.settings",
8403
8387
  children: [
@@ -8440,8 +8424,8 @@ const radioV1 = {
8440
8424
  name: "x-runtime-lib.radio",
8441
8425
  comp: v1_default$20,
8442
8426
  properties: {
8443
- pageUi: [basicV1, settings$15],
8444
- compUi: [basicV1, settings$15]
8427
+ pageUi: [basicV1, settings$16],
8428
+ compUi: [basicV1, settings$16]
8445
8429
  },
8446
8430
  leaf: !0
8447
8431
  };
@@ -8471,7 +8455,7 @@ function spawnEntry$2(e, p, m, g) {
8471
8455
  nodes: { [_.basic.id]: _ }
8472
8456
  };
8473
8457
  }
8474
- var settings$14 = {
8458
+ var settings$15 = {
8475
8459
  key: "settings",
8476
8460
  name: "x-runtime-lib.settings",
8477
8461
  children: [
@@ -8520,13 +8504,13 @@ const radioGroupV1 = {
8520
8504
  name: "x-runtime-lib.radioGroup",
8521
8505
  comp: v1_default$19,
8522
8506
  properties: {
8523
- pageUi: [basicV1, settings$14],
8524
- compUi: [basicV1, settings$14]
8507
+ pageUi: [basicV1, settings$15],
8508
+ compUi: [basicV1, settings$15]
8525
8509
  },
8526
8510
  spawn: spawn$6
8527
8511
  };
8528
8512
  regElement(radioGroupV1);
8529
- var settings$13 = {
8513
+ var settings$14 = {
8530
8514
  key: "settings",
8531
8515
  name: "x-runtime-lib.settings",
8532
8516
  children: [
@@ -8640,13 +8624,13 @@ const rangeSliderV1 = {
8640
8624
  name: "x-runtime-lib.rangeSlider",
8641
8625
  comp: v1_default$18,
8642
8626
  properties: {
8643
- pageUi: [basicV1, settings$13],
8644
- compUi: [basicV1, settings$13]
8627
+ pageUi: [basicV1, settings$14],
8628
+ compUi: [basicV1, settings$14]
8645
8629
  },
8646
8630
  leaf: !0
8647
8631
  };
8648
8632
  regElement(rangeSliderV1);
8649
- var settings$12 = {
8633
+ var settings$13 = {
8650
8634
  key: "settings",
8651
8635
  name: "x-runtime-lib.settings",
8652
8636
  children: [
@@ -8707,13 +8691,13 @@ const ratingV1 = {
8707
8691
  name: "x-runtime-lib.rating",
8708
8692
  comp: v1_default$17,
8709
8693
  properties: {
8710
- pageUi: [basicV1, settings$12],
8711
- compUi: [basicV1, settings$12]
8694
+ pageUi: [basicV1, settings$13],
8695
+ compUi: [basicV1, settings$13]
8712
8696
  },
8713
8697
  leaf: !0
8714
8698
  };
8715
8699
  regElement(ratingV1);
8716
- var settings$11 = {
8700
+ var settings$12 = {
8717
8701
  key: "settings",
8718
8702
  name: "x-runtime-lib.settings",
8719
8703
  children: [
@@ -8760,8 +8744,8 @@ const selectV1 = {
8760
8744
  name: "x-runtime-lib.select",
8761
8745
  comp: v1_default$16,
8762
8746
  properties: {
8763
- pageUi: [basicV1, settings$11],
8764
- compUi: [basicV1, settings$11]
8747
+ pageUi: [basicV1, settings$12],
8748
+ compUi: [basicV1, settings$12]
8765
8749
  },
8766
8750
  leaf: !0
8767
8751
  };
@@ -8772,7 +8756,7 @@ var trackColor = cloneDeep_default(colorV1);
8772
8756
  trackColor.key = "trackColor", trackColor.name = "x-runtime-lib.trackColor";
8773
8757
  var thumbColor = cloneDeep_default(colorV1);
8774
8758
  thumbColor.key = "thumbColor", thumbColor.name = "x-runtime-lib.thumbColor";
8775
- var settings$10 = {
8759
+ var settings$11 = {
8776
8760
  key: "settings",
8777
8761
  name: "x-runtime-lib.settings",
8778
8762
  children: [
@@ -8900,12 +8884,12 @@ const sliderV1 = {
8900
8884
  properties: {
8901
8885
  pageUi: [
8902
8886
  basicV1,
8903
- settings$10,
8887
+ settings$11,
8904
8888
  slots$1
8905
8889
  ],
8906
8890
  compUi: [
8907
8891
  basicV1,
8908
- settings$10,
8892
+ settings$11,
8909
8893
  slots$1
8910
8894
  ]
8911
8895
  },
@@ -8981,7 +8965,7 @@ function spawnCard(e, p, m) {
8981
8965
  nodes: { [g.basic.id]: g }
8982
8966
  };
8983
8967
  }
8984
- var settings$9 = {
8968
+ var settings$10 = {
8985
8969
  key: "settings",
8986
8970
  name: "x-runtime-lib.settings",
8987
8971
  children: [{
@@ -9001,8 +8985,8 @@ const stepperV1 = {
9001
8985
  name: "x-runtime-lib.stepper",
9002
8986
  comp: v1_default$14,
9003
8987
  properties: {
9004
- pageUi: [basicV1, settings$9],
9005
- compUi: [basicV1, settings$9]
8988
+ pageUi: [basicV1, settings$10],
8989
+ compUi: [basicV1, settings$10]
9006
8990
  },
9007
8991
  spawn: spawn$5
9008
8992
  };
@@ -9017,7 +9001,7 @@ const stepperHeaderV1 = {
9017
9001
  }
9018
9002
  };
9019
9003
  regElement(stepperHeaderV1);
9020
- var settings$8 = {
9004
+ var settings$9 = {
9021
9005
  key: "settings",
9022
9006
  name: "x-runtime-lib.settings",
9023
9007
  children: [{
@@ -9032,8 +9016,8 @@ const stepperItemV1 = {
9032
9016
  name: "x-runtime-lib.stepperItem",
9033
9017
  comp: v1_default$12,
9034
9018
  properties: {
9035
- pageUi: [basicV1, settings$8],
9036
- compUi: [basicV1, settings$8]
9019
+ pageUi: [basicV1, settings$9],
9020
+ compUi: [basicV1, settings$9]
9037
9021
  }
9038
9022
  };
9039
9023
  regElement(stepperItemV1);
@@ -9047,7 +9031,7 @@ const stepperWindowV1 = {
9047
9031
  }
9048
9032
  };
9049
9033
  regElement(stepperWindowV1);
9050
- var settings$7 = {
9034
+ var settings$8 = {
9051
9035
  key: "settings",
9052
9036
  name: "x-runtime-lib.settings",
9053
9037
  children: [{
@@ -9062,18 +9046,105 @@ const stepperWindowItemV1 = {
9062
9046
  name: "x-runtime-lib.stepperWindowItem",
9063
9047
  comp: v1_default$10,
9064
9048
  properties: {
9065
- pageUi: [basicV1, settings$7],
9066
- compUi: [basicV1, settings$7]
9049
+ pageUi: [basicV1, settings$8],
9050
+ compUi: [basicV1, settings$8]
9067
9051
  }
9068
9052
  };
9069
9053
  regElement(stepperWindowItemV1);
9054
+ var settings$7 = {
9055
+ key: "settings",
9056
+ name: "x-runtime-lib.settings",
9057
+ children: [
9058
+ {
9059
+ key: "disabled",
9060
+ name: "x-runtime-lib.disabled",
9061
+ ui: "switch",
9062
+ default: !1
9063
+ },
9064
+ {
9065
+ key: "readonly",
9066
+ name: "x-runtime-lib.readonly",
9067
+ ui: "switch",
9068
+ default: !1
9069
+ },
9070
+ {
9071
+ key: "loading",
9072
+ name: "x-runtime-lib.loading",
9073
+ ui: "switch",
9074
+ default: !1
9075
+ },
9076
+ {
9077
+ key: "value",
9078
+ name: "x-runtime-lib.value",
9079
+ ui: "strInput",
9080
+ default: ""
9081
+ },
9082
+ {
9083
+ key: "indeterminate",
9084
+ name: "x-runtime-lib.indeterminate",
9085
+ ui: "switch",
9086
+ default: !1
9087
+ },
9088
+ {
9089
+ key: "inline",
9090
+ name: "x-runtime-lib.inline",
9091
+ ui: "switch",
9092
+ default: !1
9093
+ },
9094
+ {
9095
+ key: "inset",
9096
+ name: "x-runtime-lib.inset",
9097
+ ui: "switch",
9098
+ default: !1
9099
+ },
9100
+ {
9101
+ key: "direction",
9102
+ name: "x-runtime-lib.direction",
9103
+ ui: "select",
9104
+ items: "directionItemsV1",
9105
+ default: "horizontal"
9106
+ },
9107
+ {
9108
+ key: "variant",
9109
+ name: "x-runtime-lib.variant",
9110
+ ui: "select",
9111
+ items: "fieldVariantItemsV1",
9112
+ default: "filled"
9113
+ },
9114
+ {
9115
+ key: "density",
9116
+ name: "x-runtime-lib.density",
9117
+ ui: "select",
9118
+ items: "densityItemsV1",
9119
+ default: "default"
9120
+ },
9121
+ {
9122
+ key: "label",
9123
+ name: "x-runtime-lib.label",
9124
+ ui: "strInput",
9125
+ default: "label"
9126
+ },
9127
+ {
9128
+ key: "hideDetails",
9129
+ name: "x-runtime-lib.hideDetails",
9130
+ ui: "switch",
9131
+ default: !1
9132
+ },
9133
+ {
9134
+ key: "singleLine",
9135
+ name: "x-runtime-lib.singleLine",
9136
+ ui: "switch",
9137
+ default: !1
9138
+ }
9139
+ ]
9140
+ };
9070
9141
  const switchV1 = {
9071
9142
  key: "ui_switch_v1",
9072
9143
  name: "x-runtime-lib.switch",
9073
9144
  comp: v1_default$9,
9074
9145
  properties: {
9075
- pageUi: [basicV1],
9076
- compUi: [basicV1]
9146
+ pageUi: [basicV1, settings$7],
9147
+ compUi: [basicV1, settings$7]
9077
9148
  },
9078
9149
  leaf: !0
9079
9150
  };
@@ -9194,6 +9265,12 @@ var settings$5 = {
9194
9265
  ui: "switch",
9195
9266
  default: !1
9196
9267
  },
9268
+ {
9269
+ key: "mandatory",
9270
+ name: "x-runtime-lib.mandatory",
9271
+ ui: "switch",
9272
+ default: !1
9273
+ },
9197
9274
  {
9198
9275
  key: "showArrows",
9199
9276
  name: "x-runtime-lib.showArrows",
@@ -9369,6 +9446,20 @@ var settings$3 = {
9369
9446
  ui: "strInput",
9370
9447
  default: ""
9371
9448
  },
9449
+ {
9450
+ key: "variant",
9451
+ name: "x-runtime-lib.variant",
9452
+ ui: "select",
9453
+ items: "fieldVariantItemsV1",
9454
+ default: "filled"
9455
+ },
9456
+ {
9457
+ key: "density",
9458
+ name: "x-runtime-lib.density",
9459
+ ui: "select",
9460
+ items: "densityItemsV1",
9461
+ default: "default"
9462
+ },
9372
9463
  {
9373
9464
  key: "label",
9374
9465
  name: "x-runtime-lib.label",
@@ -9381,6 +9472,12 @@ var settings$3 = {
9381
9472
  ui: "strInput",
9382
9473
  default: ""
9383
9474
  },
9475
+ {
9476
+ key: "singleLine",
9477
+ name: "x-runtime-lib.singleLine",
9478
+ ui: "switch",
9479
+ default: !1
9480
+ },
9384
9481
  {
9385
9482
  key: "reverse",
9386
9483
  name: "x-runtime-lib.reverse",
@@ -10481,8 +10578,8 @@ function bindView(e) {
10481
10578
  let v = p.getString(m), y = p.dump(g), b = p.getString(_), { promise: x, resolve: S, reject: C } = e.promiseManager.create();
10482
10579
  return e.triggerEvent(v, y, b).then((e) => S(e), (e) => C(e)), x.settled.then(p.runtime.executePendingJobs), x.handle;
10483
10580
  }).consume((e) => p.setProp(p.global, "__triggerEventV1__", e)), p.newFunction("__getPropertyV1__", (m, g) => {
10484
- let _ = p.getString(m), v = p.getString(g), { promise: y, resolve: b, reject: x } = e.promiseManager.create();
10485
- return e.getProperty(_, v).then((e) => b(e), (e) => x(e)), y.settled.then(p.runtime.executePendingJobs), y.handle;
10581
+ let _ = p.getString(m), v = p.getString(g);
10582
+ return newAny(p, e.getProperty(_, v));
10486
10583
  }).consume((e) => p.setProp(p.global, "__getPropertyV1__", e)), p.newFunction("__setPropertyV1__", (m, g, _) => {
10487
10584
  let v = p.getString(m), y = p.dump(g), b = p.getString(_), { promise: x, resolve: S, reject: C } = e.promiseManager.create();
10488
10585
  return e.setProperty(v, y, b).then((e) => S(e), (e) => C(e)), x.settled.then(p.runtime.executePendingJobs), x.handle;
@@ -10688,44 +10785,44 @@ var PromiseManager = class {
10688
10785
  let _ = g.meta.slots?.find((e) => e.id === p);
10689
10786
  return !_ || !_.properties ? !1 : !!_.properties.find((e) => e.id === m);
10690
10787
  }
10691
- async getProperty(e, p) {
10788
+ getProperty(e, p) {
10692
10789
  let { kind: m, nodeId: g, propertyKey: _ } = unwrapPropertyId(e), v = this.getNode(g);
10693
10790
  if (!v) throw errors.nodeNotFound;
10694
- if (m === "elementProperty") return await this.getElementProperty(e, v, _);
10695
- if (m === "refProperty") return await this.getRefProperty(e, g, _);
10696
- if (m === "multipleRefProperty") return await this.getMultipleRefProperty(e, g, _, p);
10697
- if (m === "customSlotProperty") return await this.getCustomSlotProperty(e, g, _);
10698
- if (m === "multipleCustomSlotProperty") return await this.getMultipleCustomSlotProperty(e, g, _, p);
10699
- if (m === "customProperty") return await this.getCustomProperty(e, _);
10700
- if (m === "elementAdaptSlotProperty") return await this.getElementAdaptSlotProperty(e, _);
10701
- if (m === "customAdaptSlotProperty") return await this.getCustomAdaptSlotProperty(e, _);
10791
+ if (m === "elementProperty") return this.getElementProperty(e, v, _);
10792
+ if (m === "refProperty") return this.getRefProperty(e, g, _);
10793
+ if (m === "multipleRefProperty") return this.getMultipleRefProperty(e, g, _, p);
10794
+ if (m === "customSlotProperty") return this.getCustomSlotProperty(e, g, _);
10795
+ if (m === "multipleCustomSlotProperty") return this.getMultipleCustomSlotProperty(e, g, _, p);
10796
+ if (m === "customProperty") return this.getCustomProperty(e, _);
10797
+ if (m === "elementAdaptSlotProperty") return this.getElementAdaptSlotProperty(e, _);
10798
+ if (m === "customAdaptSlotProperty") return this.getCustomAdaptSlotProperty(e, _);
10702
10799
  console.assert(!1);
10703
10800
  }
10704
- async getElementProperty(e, p, m) {
10705
- if (!this.isValidOfElementProperty(p.basic.key, m)) throw console.warn(`Sandbox/getElementProperty invalid element property id=${e}`), errors.invalidElementProperty;
10801
+ getElementProperty(e, p, m) {
10802
+ if (!this.isValidOfElementProperty(p.basic.key, m)) throw console.trace("xxxx"), console.warn(`Sandbox/getElementProperty invalid element property id=${e}`), errors.invalidElementProperty;
10706
10803
  return getField(p, m);
10707
10804
  }
10708
- async getRefProperty(e, p, m) {
10805
+ getRefProperty(e, p, m) {
10709
10806
  let g = this.children[p];
10710
10807
  if (!g) throw errors.sandboxNotFound;
10711
10808
  if (!g.isValidOfCustomProperty(m)) throw console.warn(`Sandbox/getRefProperty invalid custom property id=${e}`), errors.invalidCustomProperty;
10712
10809
  return g.customProperties[m];
10713
10810
  }
10714
- async getMultipleRefProperty(e, p, m, g) {
10811
+ getMultipleRefProperty(e, p, m, g) {
10715
10812
  if (!g) throw errors.instanceNotAvailable;
10716
10813
  let _ = this.children[`${p}/${g}`];
10717
10814
  if (!_) throw errors.sandboxNotFound;
10718
10815
  if (!_.isValidOfCustomProperty(m)) throw console.warn(`Sandbox/getMultipleRefProperty invalid custom property id=${e}`), errors.invalidCustomProperty;
10719
10816
  return _.customProperties[m];
10720
10817
  }
10721
- async getCustomSlotProperty(e, p, m) {
10818
+ getCustomSlotProperty(e, p, m) {
10722
10819
  let { compId: g, slotId: _, propertyId: v } = unwrapPropertyKeyOfCustomSlot(m);
10723
10820
  if (!this.isValidOfCustomSlotProperty(g, _, v)) throw console.warn(`Sandbox/getCustomSlotProperty invalid custom slot property id=${e}`), errors.invalidCustomSlotProperty;
10724
10821
  let y = this.children[p];
10725
10822
  if (!y) throw errors.sandboxNotFound;
10726
10823
  return y.customSlotProperties[v];
10727
10824
  }
10728
- async getMultipleCustomSlotProperty(e, p, m, g) {
10825
+ getMultipleCustomSlotProperty(e, p, m, g) {
10729
10826
  if (!g) throw errors.instanceNotAvailable;
10730
10827
  let { compId: _, slotId: v, propertyId: y } = unwrapPropertyKeyOfCustomSlot(m);
10731
10828
  if (!this.isValidOfCustomSlotProperty(_, v, y)) throw console.warn(`Sandbox/getMultipleCustomSlotProperty invalid custom slot property id=${e}`), errors.invalidCustomSlotProperty;
@@ -10733,11 +10830,11 @@ var PromiseManager = class {
10733
10830
  if (!b) throw errors.sandboxNotFound;
10734
10831
  return b.customSlotProperties[y];
10735
10832
  }
10736
- async getCustomProperty(e, p) {
10833
+ getCustomProperty(e, p) {
10737
10834
  if (!this.isValidOfCustomProperty(p)) throw console.warn(`Sandbox/getCustomProperty invalid custom property id=${e}`), errors.invalidCustomProperty;
10738
10835
  return this.customProperties[p];
10739
10836
  }
10740
- async getElementAdaptSlotProperty(e, p) {
10837
+ getElementAdaptSlotProperty(e, p) {
10741
10838
  if (!this.parent) throw errors.notInSlot;
10742
10839
  let { elementKey: m, slotKey: g, propertyKey: _ } = unwrapPropertyKeyOfElementSlot(p);
10743
10840
  if (!this.isEqualOfElementSlot(m, g)) throw errors.slotIncompatible;
@@ -10745,7 +10842,7 @@ var PromiseManager = class {
10745
10842
  let v = { value: void 0 };
10746
10843
  return this.eventBus.emit(`property/${_}/get`, { result: v }), v.value;
10747
10844
  }
10748
- async getCustomAdaptSlotProperty(e, p) {
10845
+ getCustomAdaptSlotProperty(e, p) {
10749
10846
  if (!this.parent) throw errors.notInSlot;
10750
10847
  let { compId: m, slotId: g, propertyId: _ } = unwrapPropertyKeyOfCustomSlot(p);
10751
10848
  if (!this.isEqualOfCustomSlot(m, g)) throw errors.slotIncompatible;