star-horse-lowcode 2.7.53 → 2.7.54

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.es.js CHANGED
@@ -69131,12 +69131,10 @@ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
69131
69131
  className: { type: String },
69132
69132
  title: { type: String, default: "" },
69133
69133
  size: { type: String, default: "20px" },
69134
- width: { type: String, default: "24px" },
69135
- height: { type: String, default: "22px" },
69136
69134
  marginLeft: { type: String, default: "0.1em" },
69137
69135
  marginRight: { type: String, default: "0.2em" },
69138
69136
  borderRadius: { type: String, default: "5px" },
69139
- boorderPadding: { type: String, default: "3px" },
69137
+ borderPadding: { type: String, default: "3px" },
69140
69138
  // 图标是否有边框
69141
69139
  boxShow: { type: Boolean, default: false },
69142
69140
  border: { type: Boolean, default: false },
@@ -69145,18 +69143,28 @@ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
69145
69143
  },
69146
69144
  setup(__props) {
69147
69145
  useCssVars((_ctx) => ({
69148
- "c9b9eafe": __props.cursor,
69149
- "7170253b": __props.width,
69150
- "ba74ef5c": __props.height,
69151
- "705926d8": __props.color,
69152
- "4b46b428": __props.size,
69153
- "56117c80": __props.marginLeft,
69154
- "6c7474c3": __props.marginRight,
69155
- "68cea6c9": __props.borderRadius,
69156
- "74d8b5db": __props.boorderPadding
69146
+ "7ea77655": __props.cursor,
69147
+ "7084eee7": width.value,
69148
+ "f36c17b4": height.value,
69149
+ "6f6df084": __props.color,
69150
+ "4df1f6c0": __props.size,
69151
+ "71d84358": __props.marginLeft,
69152
+ "1bbe4d6f": __props.marginRight,
69153
+ "ba8038c6": __props.borderRadius,
69154
+ "4b6da666": __props.borderPadding
69157
69155
  }));
69158
69156
  const props = __props;
69159
69157
  const iconName = computed(() => `sh-${props.iconClass}`);
69158
+ const sizeNumber = computed(() => {
69159
+ const numberMatch = props.size.match(/\d+/);
69160
+ return numberMatch ? Number(numberMatch[0]) : 0;
69161
+ });
69162
+ const width = computed(
69163
+ () => sizeNumber.value ? `${sizeNumber.value + 2}px` : props.size
69164
+ );
69165
+ const height = computed(
69166
+ () => sizeNumber.value ? `${sizeNumber.value + 2}px` : props.size
69167
+ );
69160
69168
  const svgClass = computed(() => {
69161
69169
  let cls = props.border ? "sh_icon svg-icon icon-border" : props.boxShow ? "sh_icon svg-icon icon-cls" : "sh_icon svg-icon";
69162
69170
  if (props.className) {
@@ -69185,7 +69193,7 @@ const _export_sfc = (sfc, props) => {
69185
69193
  return target;
69186
69194
  };
69187
69195
 
69188
- const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["__scopeId", "data-v-7c41d011"]]);
69196
+ const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["__scopeId", "data-v-24939aaf"]]);
69189
69197
 
69190
69198
  const StarHorseIcon = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
69191
69199
  __proto__: null,
@@ -69765,6 +69773,9 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
69765
69773
  if (!props.item["id"]) {
69766
69774
  props.item["id"] = props.item.preps?.id ?? uuid();
69767
69775
  }
69776
+ if (!props.item.fieldName) {
69777
+ props.item["fieldName"] = props.item.preps?.name ?? props.item.id;
69778
+ }
69768
69779
  fieldPlaceholder(props.item, itemType.value);
69769
69780
  if (props.item.preps) {
69770
69781
  filterProperties(props.item.preps, exclusions);
@@ -69895,7 +69906,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
69895
69906
 
69896
69907
  /* unplugin-vue-components disabled */
69897
69908
 
69898
- const __unplugin_components_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-35c650fd"]]);
69909
+ const __unplugin_components_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-74608522"]]);
69899
69910
 
69900
69911
  const StarHorseItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
69901
69912
  __proto__: null,
@@ -136997,7 +137008,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
136997
137008
  __name: "group-box-container",
136998
137009
  props: {
136999
137010
  isDesign: { type: Boolean, default: false },
137000
- disabled: { type: Object },
137011
+ disabled: { type: Boolean, default: false },
137001
137012
  parentField: { type: Object },
137002
137013
  formItem: { type: Object, required: true }
137003
137014
  },
@@ -137009,7 +137020,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
137009
137020
  let componentVisible = computed(() => {
137010
137021
  return designForm.componentVisible && currentItemId.value == props.formItem?.preps.id;
137011
137022
  });
137012
- let isEdit = computed(() => designForm.isEdit);
137023
+ let isEdit = computed(() => props.isDesign);
137013
137024
  const selectData = () => {
137014
137025
  let container = props.formItem;
137015
137026
  designForm.selectItem(container, container?.itemType, "");
@@ -137273,7 +137284,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
137273
137284
 
137274
137285
  /* unplugin-vue-components disabled */
137275
137286
 
137276
- const __unplugin_components_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__scopeId", "data-v-79633df0"]]);
137287
+ const __unplugin_components_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__scopeId", "data-v-d5e8b603"]]);
137277
137288
 
137278
137289
  const groupBoxContainer = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137279
137290
  __proto__: null,
@@ -137286,6 +137297,7 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137286
137297
  props: /* @__PURE__ */ mergeModels({
137287
137298
  parentField: { type: String },
137288
137299
  isDesign: { type: Boolean, default: false },
137300
+ showFormItem: { type: Boolean, default: false },
137289
137301
  disabled: { type: Object },
137290
137302
  formInfo: { type: Object },
137291
137303
  field: { type: Object }
@@ -137299,7 +137311,7 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137299
137311
  let designForm = useDesignFormStore(piniaInstance);
137300
137312
  let draggingItem = computed(() => designForm.draggingItem);
137301
137313
  const formData = useModel(__props, "formData");
137302
- let isEdit = computed(() => designForm.isEdit);
137314
+ let isEdit = computed(() => props.isDesign);
137303
137315
  const isDragging = computed(() => designForm.isDragging);
137304
137316
  let boxCompList = computed(() => props.field);
137305
137317
  let excludeContainerType = [
@@ -137346,6 +137358,7 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137346
137358
  const _component_group_box_container = __unplugin_components_1;
137347
137359
  return openBlock(), createBlock(_component_group_box_container, {
137348
137360
  class: "star-horse-form-container",
137361
+ showFormItem: __props.showFormItem,
137349
137362
  isDesign: __props.isDesign,
137350
137363
  disabled: __props.disabled,
137351
137364
  parentField: __props.parentField,
@@ -137383,12 +137396,13 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137383
137396
  key: data.id,
137384
137397
  field: data,
137385
137398
  formInfo: __props.formInfo,
137399
+ showFormItem: __props.showFormItem,
137386
137400
  isDesign: __props.isDesign,
137387
137401
  disabled: __props.disabled,
137388
137402
  parentField: unref(boxCompList),
137389
137403
  formData: formData.value,
137390
137404
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
137391
- }, null, 40, ["field", "formInfo", "isDesign", "disabled", "parentField", "formData"]))
137405
+ }, null, 40, ["field", "formInfo", "showFormItem", "isDesign", "disabled", "parentField", "formData"]))
137392
137406
  ])
137393
137407
  ]),
137394
137408
  _: 2
@@ -137409,10 +137423,11 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137409
137423
  field: data,
137410
137424
  isDesign: __props.isDesign,
137411
137425
  disabled: __props.disabled,
137426
+ showFormItem: __props.showFormItem,
137412
137427
  formData: formData.value,
137413
137428
  "onUpdate:formData": _cache[1] || (_cache[1] = ($event) => formData.value = $event),
137414
137429
  formInfo: __props.formInfo
137415
- }, null, 40, ["field", "isDesign", "disabled", "formData", "formInfo"]);
137430
+ }, null, 40, ["field", "isDesign", "disabled", "showFormItem", "formData", "formInfo"]);
137416
137431
  }), 256))
137417
137432
  ]),
137418
137433
  _: 2
@@ -137424,14 +137439,14 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137424
137439
  }), 256))
137425
137440
  ]),
137426
137441
  _: 1
137427
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
137442
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
137428
137443
  };
137429
137444
  }
137430
137445
  });
137431
137446
 
137432
137447
  /* unplugin-vue-components disabled */
137433
137448
 
137434
- const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-ae6af8ca"]]);
137449
+ const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-62562dd3"]]);
137435
137450
 
137436
137451
  const boxContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137437
137452
  __proto__: null,
@@ -137446,6 +137461,7 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137446
137461
  props: /* @__PURE__ */ mergeModels({
137447
137462
  parentField: { type: String },
137448
137463
  isDesign: { type: Boolean, default: false },
137464
+ showFormItem: { type: Boolean, default: false },
137449
137465
  disabled: { type: Object },
137450
137466
  formInfo: { type: Object },
137451
137467
  field: { type: Object }
@@ -137514,6 +137530,7 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137514
137530
  const _component_group_box_container = __unplugin_components_1;
137515
137531
  return openBlock(), createBlock(_component_group_box_container, {
137516
137532
  class: "star-horse-form-container",
137533
+ showFormItem: __props.showFormItem,
137517
137534
  isDesign: __props.isDesign,
137518
137535
  disabled: __props.disabled,
137519
137536
  parentField: __props.parentField,
@@ -137557,12 +137574,13 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137557
137574
  key: header.id,
137558
137575
  field: header,
137559
137576
  isDesign: __props.isDesign,
137577
+ showFormItem: __props.showFormItem,
137560
137578
  disabled: __props.disabled,
137561
137579
  formInfo: __props.formInfo,
137562
137580
  parentField: __props.field,
137563
137581
  formData: formData.value,
137564
137582
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
137565
- }, null, 40, ["field", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
137583
+ }, null, 40, ["field", "isDesign", "showFormItem", "disabled", "formInfo", "parentField", "formData"]))
137566
137584
  ], 4)
137567
137585
  ]),
137568
137586
  _: 2
@@ -137594,11 +137612,12 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137594
137612
  field: item,
137595
137613
  isDesign: __props.isDesign,
137596
137614
  disabled: __props.disabled,
137615
+ showFormItem: __props.showFormItem,
137597
137616
  formInfo: __props.formInfo,
137598
137617
  parentField: __props.field,
137599
137618
  formData: formData.value,
137600
137619
  "onUpdate:formData": _cache[1] || (_cache[1] = ($event) => formData.value = $event)
137601
- }, null, 40, ["field", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
137620
+ }, null, 40, ["field", "isDesign", "disabled", "showFormItem", "formInfo", "parentField", "formData"]))
137602
137621
  ])
137603
137622
  ]),
137604
137623
  _: 2
@@ -137612,14 +137631,14 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137612
137631
  }), 256))
137613
137632
  ]),
137614
137633
  _: 1
137615
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
137634
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
137616
137635
  };
137617
137636
  }
137618
137637
  });
137619
137638
 
137620
137639
  /* unplugin-vue-components disabled */
137621
137640
 
137622
- const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-e1ae7783"]]);
137641
+ const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-a99b99ed"]]);
137623
137642
 
137624
137643
  const cardContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137625
137644
  __proto__: null,
@@ -137633,6 +137652,7 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
137633
137652
  props: /* @__PURE__ */ mergeModels({
137634
137653
  parentField: { type: String },
137635
137654
  isDesign: { type: Boolean, default: false },
137655
+ showFormItem: { type: Boolean, default: false },
137636
137656
  disabled: { type: Object },
137637
137657
  formInfo: { type: Object },
137638
137658
  field: { type: Object }
@@ -137695,6 +137715,7 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
137695
137715
  const _component_group_box_container = __unplugin_components_1;
137696
137716
  return openBlock(), createBlock(_component_group_box_container, {
137697
137717
  class: "star-horse-form-container",
137718
+ showFormItem: __props.showFormItem,
137698
137719
  isDesign: __props.isDesign,
137699
137720
  disabled: __props.disabled,
137700
137721
  parentField: __props.parentField,
@@ -137740,11 +137761,12 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
137740
137761
  field: data,
137741
137762
  isDesign: __props.isDesign,
137742
137763
  disabled: __props.disabled,
137764
+ showFormItem: __props.showFormItem,
137743
137765
  formInfo: __props.formInfo,
137744
137766
  parentField: __props.field,
137745
137767
  formData: formData.value,
137746
137768
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
137747
- }, null, 40, ["field", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
137769
+ }, null, 40, ["field", "isDesign", "disabled", "showFormItem", "formInfo", "parentField", "formData"]))
137748
137770
  ])
137749
137771
  ]),
137750
137772
  _: 2
@@ -137761,14 +137783,14 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
137761
137783
  }, 8, ["modelValue", "accordion"])
137762
137784
  ]),
137763
137785
  _: 1
137764
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
137786
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
137765
137787
  };
137766
137788
  }
137767
137789
  });
137768
137790
 
137769
137791
  /* unplugin-vue-components disabled */
137770
137792
 
137771
- const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-b81bf226"]]);
137793
+ const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-4ae5d7b7"]]);
137772
137794
 
137773
137795
  const collapseContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137774
137796
  __proto__: null,
@@ -137787,6 +137809,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
137787
137809
  formInfo: { type: Object },
137788
137810
  parentComp: { type: Object },
137789
137811
  isDesign: { type: Boolean, default: false },
137812
+ showFormItem: { type: Boolean, default: false },
137790
137813
  disabled: { type: Object },
137791
137814
  field: { type: Object },
137792
137815
  isFirstRow: { type: Boolean, default: false },
@@ -137958,11 +137981,12 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
137958
137981
  field: data,
137959
137982
  formInfo: __props.formInfo,
137960
137983
  isDesign: __props.isDesign,
137984
+ showFormItem: __props.showFormItem,
137961
137985
  disabled: __props.disabled,
137962
137986
  parentField: __props.parentField,
137963
137987
  formData: formData.value,
137964
137988
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
137965
- }, null, 40, ["field", "formInfo", "isDesign", "disabled", "parentField", "formData"]))
137989
+ }, null, 40, ["field", "formInfo", "isDesign", "showFormItem", "disabled", "parentField", "formData"]))
137966
137990
  ], 2)
137967
137991
  ]),
137968
137992
  _: 1
@@ -138138,7 +138162,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138138
138162
 
138139
138163
  /* unplugin-vue-components disabled */
138140
138164
 
138141
- const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-2ba233b6"]]);
138165
+ const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-caa11567"]]);
138142
138166
 
138143
138167
  const dytableCol = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138144
138168
  __proto__: null,
@@ -138151,6 +138175,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
138151
138175
  props: /* @__PURE__ */ mergeModels({
138152
138176
  parentField: { type: String },
138153
138177
  isDesign: { type: Boolean, default: false },
138178
+ showFormItem: { type: Boolean, default: false },
138154
138179
  disabled: { type: Object },
138155
138180
  formInfo: { type: Object },
138156
138181
  field: { type: Object }
@@ -138166,6 +138191,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
138166
138191
  const _component_group_box_container = __unplugin_components_1;
138167
138192
  return openBlock(), createBlock(_component_group_box_container, {
138168
138193
  class: "star-horse-form-container",
138194
+ showFormItem: __props.showFormItem,
138169
138195
  isDesign: __props.isDesign,
138170
138196
  disabled: __props.disabled,
138171
138197
  parentField: __props.parentField,
@@ -138187,6 +138213,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
138187
138213
  formData: formData.value,
138188
138214
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event),
138189
138215
  isDesign: __props.isDesign,
138216
+ showFormItem: __props.showFormItem,
138190
138217
  disabled: __props.disabled,
138191
138218
  isFirstRow: rowIndex == 0,
138192
138219
  parentField: __props.field,
@@ -138196,7 +138223,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
138196
138223
  rowIndex,
138197
138224
  colIndex,
138198
138225
  class: "dy-cell"
138199
- }, null, 8, ["field", "formInfo", "formData", "isDesign", "disabled", "isFirstRow", "parentField", "isLastRow", "isFirstCol", "isLastCol", "rowIndex", "colIndex"]);
138226
+ }, null, 8, ["field", "formInfo", "formData", "isDesign", "showFormItem", "disabled", "isFirstRow", "parentField", "isLastRow", "isFirstCol", "isLastCol", "rowIndex", "colIndex"]);
138200
138227
  }), 256))
138201
138228
  ]);
138202
138229
  }), 256))
@@ -138204,14 +138231,14 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
138204
138231
  ], 512)
138205
138232
  ]),
138206
138233
  _: 1
138207
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
138234
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
138208
138235
  };
138209
138236
  }
138210
138237
  });
138211
138238
 
138212
138239
  /* unplugin-vue-components disabled */
138213
138240
 
138214
- const dytableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__scopeId", "data-v-7c1492bc"]]);
138241
+ const dytableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__scopeId", "data-v-f3045096"]]);
138215
138242
 
138216
138243
  const dytableContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138217
138244
  __proto__: null,
@@ -138223,6 +138250,7 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
138223
138250
  props: /* @__PURE__ */ mergeModels({
138224
138251
  parentField: { type: String },
138225
138252
  isDesign: { type: Boolean, default: false },
138253
+ showFormItem: { type: Boolean, default: false },
138226
138254
  disabled: { type: Object },
138227
138255
  formInfo: { type: Object },
138228
138256
  field: { type: Object }
@@ -138303,6 +138331,7 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
138303
138331
  const _component_group_box_container = __unplugin_components_1;
138304
138332
  return openBlock(), createBlock(_component_group_box_container, {
138305
138333
  class: "star-horse-form-container",
138334
+ showFormItem: __props.showFormItem,
138306
138335
  isDesign: __props.isDesign,
138307
138336
  disabled: __props.disabled,
138308
138337
  parentField: __props.parentField,
@@ -138357,11 +138386,12 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
138357
138386
  field: data,
138358
138387
  isDesign: __props.isDesign,
138359
138388
  disabled: __props.disabled,
138389
+ showFormItem: __props.showFormItem,
138360
138390
  formInfo: __props.formInfo,
138361
138391
  parentField: __props.field,
138362
138392
  formData: formData.value,
138363
138393
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
138364
- }, null, 40, ["field", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
138394
+ }, null, 40, ["field", "isDesign", "disabled", "showFormItem", "formInfo", "parentField", "formData"]))
138365
138395
  ], 4)
138366
138396
  ]),
138367
138397
  _: 2
@@ -138378,14 +138408,14 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
138378
138408
  }, 8, ["tab-position", "type", "closable", "addable", "editable", "stretch", "modelValue"])
138379
138409
  ]),
138380
138410
  _: 1
138381
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
138411
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
138382
138412
  };
138383
138413
  }
138384
138414
  });
138385
138415
 
138386
138416
  /* unplugin-vue-components disabled */
138387
138417
 
138388
- const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-b41a6477"]]);
138418
+ const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-d5e9e5db"]]);
138389
138419
 
138390
138420
  const tabContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138391
138421
  __proto__: null,
@@ -138405,6 +138435,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138405
138435
  props: /* @__PURE__ */ mergeModels({
138406
138436
  parentField: { type: String },
138407
138437
  isDesign: { type: Boolean, default: false },
138438
+ showFormItem: { type: Boolean, default: false },
138408
138439
  disabled: { type: Object },
138409
138440
  formInfo: { type: Object },
138410
138441
  field: { type: Object }
@@ -138426,7 +138457,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138426
138457
  "collapse",
138427
138458
  "card"
138428
138459
  ];
138429
- let isEdit = computed(() => designForm.isEdit);
138460
+ let isEdit = computed(() => props.isDesign);
138430
138461
  const isDragging = computed(() => designForm.isDragging);
138431
138462
  const formData = useModel(__props, "formData");
138432
138463
  const onDragAdd = (evt, dataList) => {
@@ -138502,6 +138533,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138502
138533
  const _component_group_box_container = __unplugin_components_1;
138503
138534
  return openBlock(), createBlock(_component_group_box_container, {
138504
138535
  class: "star-horse-form-container",
138536
+ showFormItem: __props.showFormItem,
138505
138537
  isDesign: __props.isDesign,
138506
138538
  disabled: __props.disabled,
138507
138539
  parentField: __props.parentField,
@@ -138523,7 +138555,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138523
138555
  onMouseenter: (evt) => tdOver(evt, td),
138524
138556
  onMouseleave: (evt) => tdOut(evt)
138525
138557
  }, [
138526
- unref(currentIndex) == td && unref(isEdit) && __props.isDesign ? (openBlock(), createElementBlock("div", _hoisted_3$g, [
138558
+ unref(currentIndex) == td && __props.isDesign ? (openBlock(), createElementBlock("div", _hoisted_3$g, [
138527
138559
  createVNode(_component_el_tooltip, { content: "删除列" }, {
138528
138560
  default: withCtx(() => [
138529
138561
  createVNode(__unplugin_components_0$a, {
@@ -138567,13 +138599,14 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138567
138599
  (openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
138568
138600
  key: data?.id,
138569
138601
  field: data,
138602
+ showFormItem: __props.showFormItem,
138570
138603
  isDesign: __props.isDesign,
138571
138604
  disabled: __props.disabled,
138572
138605
  formInfo: __props.formInfo,
138573
138606
  parentField: __props.field,
138574
138607
  formData: formData.value,
138575
138608
  "onUpdate:formData": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
138576
- }, null, 40, ["field", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
138609
+ }, null, 40, ["field", "showFormItem", "isDesign", "disabled", "formInfo", "parentField", "formData"]))
138577
138610
  ])
138578
138611
  ]),
138579
138612
  _: 2
@@ -138585,14 +138618,14 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138585
138618
  ], 4)
138586
138619
  ]),
138587
138620
  _: 1
138588
- }, 8, ["isDesign", "disabled", "parentField", "form-item"]);
138621
+ }, 8, ["showFormItem", "isDesign", "disabled", "parentField", "form-item"]);
138589
138622
  };
138590
138623
  }
138591
138624
  });
138592
138625
 
138593
138626
  /* unplugin-vue-components disabled */
138594
138627
 
138595
- const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-a3ef3199"]]);
138628
+ const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-0309b037"]]);
138596
138629
 
138597
138630
  const tableContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138598
138631
  __proto__: null,
@@ -138618,6 +138651,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138618
138651
  parentId: { type: Object },
138619
138652
  formItem: { type: Object, required: true },
138620
138653
  isDesign: { type: Boolean, default: false },
138654
+ showFormItem: { type: Boolean, default: false },
138621
138655
  disabled: { type: Boolean, default: false },
138622
138656
  //是否需要css 修饰
138623
138657
  bareFlag: { type: Boolean, default: false }
@@ -138625,7 +138659,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138625
138659
  setup(__props) {
138626
138660
  const props = __props;
138627
138661
  let designForm = useDesignFormStore(piniaInstance);
138628
- let isEdit = computed(() => designForm.isEdit);
138662
+ let isEdit = computed(() => props.isDesign);
138629
138663
  let currentItemId = computed(() => designForm.currentItemId);
138630
138664
  const isDisabled = computed(() => props.disabled);
138631
138665
  let componentVisible = computed(() => {
@@ -138694,11 +138728,11 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138694
138728
  size: "default",
138695
138729
  onClick: close
138696
138730
  }, {
138697
- default: withCtx(() => _cache[6] || (_cache[6] = [
138731
+ default: withCtx(() => _cache[7] || (_cache[7] = [
138698
138732
  createTextVNode("确定")
138699
138733
  ])),
138700
138734
  _: 1,
138701
- __: [6]
138735
+ __: [7]
138702
138736
  })
138703
138737
  ]),
138704
138738
  default: withCtx(() => [
@@ -138719,14 +138753,14 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138719
138753
  }, null, 8, ["message"])) : createCommentVNode("", true),
138720
138754
  renderSlot(_ctx.$slots, "default", {}, void 0, true)
138721
138755
  ], 6)) : (openBlock(), createElementBlock("div", _hoisted_1$v, [
138722
- __props.isDesign ? (openBlock(), createElementBlock("div", {
138756
+ __props.showFormItem ? (openBlock(), createElementBlock("div", {
138723
138757
  key: 0,
138724
138758
  class: normalizeClass(["w-fill", {
138725
138759
  "design-star-horse": unref(isEdit) && !__props.disabled,
138726
138760
  "field-item": true,
138727
138761
  "active-item": unref(currentItemId) == __props.formItem?.preps.id && unref(isEdit) && !__props.disabled
138728
138762
  }]),
138729
- onClick: _cache[5] || (_cache[5] = ($event) => selectData(__props.formItem)),
138763
+ onClick: _cache[6] || (_cache[6] = ($event) => selectData(__props.formItem)),
138730
138764
  onContextmenu: itemContextMenu
138731
138765
  }, [
138732
138766
  __props.parentField?.itemType != "table" && __props.formItem.preps?.itemType != "divider" && __props.formItem?.preps["headerFlag"] != "Y" ? (openBlock(), createBlock(_component_el_form_item, {
@@ -138756,7 +138790,8 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138756
138790
  }]),
138757
138791
  style: normalizeStyle({
138758
138792
  margin: __props.formItem?.itemType == "button" ? "5px auto" : "unset"
138759
- })
138793
+ }),
138794
+ onClick: _cache[0] || (_cache[0] = withModifiers(($event) => selectData(__props.formItem), ["stop"]))
138760
138795
  }, [
138761
138796
  __props.formItem.preps?.helpMsg ? (openBlock(), createBlock(_component_help, {
138762
138797
  key: 0,
@@ -138771,7 +138806,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138771
138806
  }, {
138772
138807
  default: withCtx(() => [
138773
138808
  createVNode(_component_star_horse_icon, {
138774
- onClick: _cache[0] || (_cache[0] = withModifiers(($event) => selectParentContainer(), ["stop"])),
138809
+ onClick: _cache[1] || (_cache[1] = withModifiers(($event) => selectParentContainer(), ["stop"])),
138775
138810
  "icon-class": "select-parent",
138776
138811
  cursor: "pointer",
138777
138812
  style: { "color": "var(--star-horse-white)" }
@@ -138796,7 +138831,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138796
138831
  }, {
138797
138832
  default: withCtx(() => [
138798
138833
  createVNode(_component_star_horse_icon, {
138799
- onClick: _cache[1] || (_cache[1] = withModifiers(($event) => unref(moveUpItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138834
+ onClick: _cache[2] || (_cache[2] = withModifiers(($event) => unref(moveUpItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138800
138835
  "icon-class": "move-up",
138801
138836
  cursor: "pointer",
138802
138837
  style: { "color": "var(--star-horse-white)" }
@@ -138810,7 +138845,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138810
138845
  }, {
138811
138846
  default: withCtx(() => [
138812
138847
  createVNode(_component_star_horse_icon, {
138813
- onClick: _cache[2] || (_cache[2] = withModifiers(($event) => unref(moveDownItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138848
+ onClick: _cache[3] || (_cache[3] = withModifiers(($event) => unref(moveDownItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138814
138849
  "icon-class": "move-down",
138815
138850
  cursor: "pointer",
138816
138851
  style: { "color": "var(--star-horse-white)" }
@@ -138821,7 +138856,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138821
138856
  createVNode(_component_el_tooltip, { content: "删除组件" }, {
138822
138857
  default: withCtx(() => [
138823
138858
  createVNode(_component_star_horse_icon, {
138824
- onClick: _cache[3] || (_cache[3] = withModifiers(($event) => unref(removeItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138859
+ onClick: _cache[4] || (_cache[4] = withModifiers(($event) => unref(removeItem)(unref(isEdit), __props.formItem?.preps, __props.parentField), ["stop"])),
138825
138860
  "icon-class": "clear-all",
138826
138861
  cursor: "pointer",
138827
138862
  style: { "color": "var(--star-horse-white)" }
@@ -138846,7 +138881,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138846
138881
  default: withCtx(() => [
138847
138882
  createElementVNode("span", {
138848
138883
  style: { "color": "var(--star-horse-white)", "cursor": "pointer" },
138849
- onClick: _cache[4] || (_cache[4] = ($event) => selectData(__props.formItem))
138884
+ onClick: _cache[5] || (_cache[5] = ($event) => selectData(__props.formItem))
138850
138885
  }, toDisplayString(__props.formItem?.preps["itemNameLabel"]), 1)
138851
138886
  ]),
138852
138887
  _: 1
@@ -138880,7 +138915,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138880
138915
 
138881
138916
  /* unplugin-vue-components disabled */
138882
138917
 
138883
- const __unplugin_components_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-78544621"]]);
138918
+ const __unplugin_components_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-4c5c23b6"]]);
138884
138919
 
138885
138920
  const starhorseFormItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138886
138921
  __proto__: null,
@@ -139027,6 +139062,10 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
139027
139062
  type: Boolean,
139028
139063
  default: false
139029
139064
  },
139065
+ showFormItem: {
139066
+ type: Boolean,
139067
+ default: false
139068
+ },
139030
139069
  bareFlag: {
139031
139070
  type: Boolean,
139032
139071
  default: false
@@ -139107,6 +139146,7 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
139107
139146
  const _component_el_cascader = ElCascader;
139108
139147
  const _component_starhorse_form_item = __unplugin_components_0$3;
139109
139148
  return openBlock(), createBlock(_component_starhorse_form_item, {
139149
+ showFormItem: __props.showFormItem,
139110
139150
  isDesign: __props.isDesign,
139111
139151
  disabled: __props.disabled,
139112
139152
  bareFlag: __props.bareFlag,
@@ -139124,14 +139164,14 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
139124
139164
  }), null, 16, ["fid", "disabled", "modelValue"])
139125
139165
  ]),
139126
139166
  _: 1
139127
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139167
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139128
139168
  };
139129
139169
  }
139130
139170
  });
139131
139171
 
139132
139172
  /* unplugin-vue-components disabled */
139133
139173
 
139134
- const areaItem = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-0af83aee"]]);
139174
+ const areaItem = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-ecad820b"]]);
139135
139175
 
139136
139176
  const areaItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
139137
139177
  __proto__: null,
@@ -139150,6 +139190,10 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
139150
139190
  type: Boolean,
139151
139191
  default: false
139152
139192
  },
139193
+ showFormItem: {
139194
+ type: Boolean,
139195
+ default: false
139196
+ },
139153
139197
  bareFlag: {
139154
139198
  type: Boolean,
139155
139199
  default: false
@@ -139249,6 +139293,7 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
139249
139293
  return (_ctx, _cache) => {
139250
139294
  const _component_starhorse_form_item = __unplugin_components_0$3;
139251
139295
  return openBlock(), createBlock(_component_starhorse_form_item, {
139296
+ showFormItem: __props.showFormItem,
139252
139297
  isDesign: __props.isDesign,
139253
139298
  disabled: __props.disabled,
139254
139299
  bareFlag: __props.bareFlag,
@@ -139264,7 +139309,7 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
139264
139309
  }, null, 8, _hoisted_1$u)
139265
139310
  ]),
139266
139311
  _: 1
139267
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139312
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139268
139313
  };
139269
139314
  }
139270
139315
  });
@@ -139285,6 +139330,10 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
139285
139330
  type: Boolean,
139286
139331
  default: false
139287
139332
  },
139333
+ showFormItem: {
139334
+ type: Boolean,
139335
+ default: false
139336
+ },
139288
139337
  bareFlag: {
139289
139338
  type: Boolean,
139290
139339
  default: false
@@ -139362,6 +139411,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
139362
139411
  const _component_el_autocomplete = ElAutocomplete;
139363
139412
  const _component_starhorse_form_item = __unplugin_components_0$3;
139364
139413
  return openBlock(), createBlock(_component_starhorse_form_item, {
139414
+ showFormItem: __props.showFormItem,
139365
139415
  isDesign: __props.isDesign,
139366
139416
  disabled: __props.disabled,
139367
139417
  bareFlag: __props.bareFlag,
@@ -139379,7 +139429,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
139379
139429
  }), null, 16, ["fid", "disabled", "modelValue"])
139380
139430
  ]),
139381
139431
  _: 1
139382
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139432
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139383
139433
  };
139384
139434
  }
139385
139435
  });
@@ -139400,6 +139450,10 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139400
139450
  type: Boolean,
139401
139451
  default: false
139402
139452
  },
139453
+ showFormItem: {
139454
+ type: Boolean,
139455
+ default: false
139456
+ },
139403
139457
  bareFlag: {
139404
139458
  type: Boolean,
139405
139459
  default: false
@@ -139572,6 +139626,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139572
139626
  _: 1
139573
139627
  }, 8, ["title", "dialogVisible", "boxWidth", "isShowReset", "btnText"]),
139574
139628
  createVNode(_component_starhorse_form_item, {
139629
+ showFormItem: __props.showFormItem,
139575
139630
  isDesign: __props.isDesign,
139576
139631
  disabled: __props.disabled,
139577
139632
  bareFlag: __props.bareFlag,
@@ -139596,7 +139651,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139596
139651
  }, 16, ["disabled"])
139597
139652
  ]),
139598
139653
  _: 1
139599
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
139654
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
139600
139655
  ], 64);
139601
139656
  };
139602
139657
  }
@@ -139604,7 +139659,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139604
139659
 
139605
139660
  /* unplugin-vue-components disabled */
139606
139661
 
139607
- const buttonItem = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-0cdee032"]]);
139662
+ const buttonItem = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-bc0609d4"]]);
139608
139663
 
139609
139664
  const buttonItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
139610
139665
  __proto__: null,
@@ -139622,6 +139677,10 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
139622
139677
  type: Boolean,
139623
139678
  default: false
139624
139679
  },
139680
+ showFormItem: {
139681
+ type: Boolean,
139682
+ default: false
139683
+ },
139625
139684
  bareFlag: {
139626
139685
  type: Boolean,
139627
139686
  default: false
@@ -139699,6 +139758,7 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
139699
139758
  const _component_el_cascader = ElCascader;
139700
139759
  const _component_starhorse_form_item = __unplugin_components_0$3;
139701
139760
  return openBlock(), createBlock(_component_starhorse_form_item, {
139761
+ showFormItem: __props.showFormItem,
139702
139762
  isDesign: __props.isDesign,
139703
139763
  disabled: __props.disabled,
139704
139764
  bareFlag: __props.bareFlag,
@@ -139716,14 +139776,14 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
139716
139776
  }), null, 16, ["fid", "disabled", "modelValue"])
139717
139777
  ]),
139718
139778
  _: 1
139719
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139779
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139720
139780
  };
139721
139781
  }
139722
139782
  });
139723
139783
 
139724
139784
  /* unplugin-vue-components disabled */
139725
139785
 
139726
- const cascadeItem = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-b42db049"]]);
139786
+ const cascadeItem = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-c479d7ac"]]);
139727
139787
 
139728
139788
  const cascadeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
139729
139789
  __proto__: null,
@@ -139741,6 +139801,10 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
139741
139801
  type: Boolean,
139742
139802
  default: false
139743
139803
  },
139804
+ showFormItem: {
139805
+ type: Boolean,
139806
+ default: false
139807
+ },
139744
139808
  bareFlag: {
139745
139809
  type: Boolean,
139746
139810
  default: false
@@ -139798,6 +139862,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
139798
139862
  const _component_el_checkbox_group = ElCheckboxGroup$1;
139799
139863
  const _component_starhorse_form_item = __unplugin_components_0$3;
139800
139864
  return openBlock(), createBlock(_component_starhorse_form_item, {
139865
+ showFormItem: __props.showFormItem,
139801
139866
  isDesign: __props.isDesign,
139802
139867
  disabled: __props.disabled,
139803
139868
  bareFlag: __props.bareFlag,
@@ -139828,7 +139893,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
139828
139893
  }, 16, ["fid", "disabled", "readonly", "modelValue"])
139829
139894
  ]),
139830
139895
  _: 1
139831
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139896
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139832
139897
  };
139833
139898
  }
139834
139899
  });
@@ -139849,6 +139914,10 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
139849
139914
  type: Boolean,
139850
139915
  default: false
139851
139916
  },
139917
+ showFormItem: {
139918
+ type: Boolean,
139919
+ default: false
139920
+ },
139852
139921
  bareFlag: {
139853
139922
  type: Boolean,
139854
139923
  default: false
@@ -139890,6 +139959,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
139890
139959
  const _component_el_color_picker = ElColorPicker;
139891
139960
  const _component_starhorse_form_item = __unplugin_components_0$3;
139892
139961
  return openBlock(), createBlock(_component_starhorse_form_item, {
139962
+ showFormItem: __props.showFormItem,
139893
139963
  isDesign: __props.isDesign,
139894
139964
  disabled: __props.disabled,
139895
139965
  bareFlag: __props.bareFlag,
@@ -139906,7 +139976,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
139906
139976
  }), null, 16, ["fid", "disabled", "modelValue"])
139907
139977
  ]),
139908
139978
  _: 1
139909
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139979
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
139910
139980
  };
139911
139981
  }
139912
139982
  });
@@ -142645,6 +142715,10 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
142645
142715
  type: Boolean,
142646
142716
  default: false
142647
142717
  },
142718
+ showFormItem: {
142719
+ type: Boolean,
142720
+ default: false
142721
+ },
142648
142722
  bareFlag: {
142649
142723
  type: Boolean,
142650
142724
  default: false
@@ -142734,6 +142808,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
142734
142808
  _: 1
142735
142809
  }, 8, ["dialog-visible"]),
142736
142810
  createVNode(_component_starhorse_form_item, {
142811
+ showFormItem: __props.showFormItem,
142737
142812
  isDesign: __props.isDesign,
142738
142813
  disabled: __props.disabled,
142739
142814
  bareFlag: __props.bareFlag,
@@ -142758,7 +142833,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
142758
142833
  }, 16, ["fid", "modelValue"])
142759
142834
  ]),
142760
142835
  _: 1
142761
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
142836
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
142762
142837
  ], 64);
142763
142838
  };
142764
142839
  }
@@ -142766,7 +142841,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
142766
142841
 
142767
142842
  /* unplugin-vue-components disabled */
142768
142843
 
142769
- const cronItem = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-0eb2001e"]]);
142844
+ const cronItem = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-88058100"]]);
142770
142845
 
142771
142846
  const cronItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142772
142847
  __proto__: null,
@@ -142784,6 +142859,10 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
142784
142859
  type: Boolean,
142785
142860
  default: false
142786
142861
  },
142862
+ showFormItem: {
142863
+ type: Boolean,
142864
+ default: false
142865
+ },
142787
142866
  bareFlag: {
142788
142867
  type: Boolean,
142789
142868
  default: false
@@ -142845,6 +142924,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
142845
142924
  const _component_el_date_picker = ElDatePicker;
142846
142925
  const _component_starhorse_form_item = __unplugin_components_0$3;
142847
142926
  return openBlock(), createBlock(_component_starhorse_form_item, {
142927
+ showFormItem: __props.showFormItem,
142848
142928
  isDesign: __props.isDesign,
142849
142929
  disabled: __props.disabled,
142850
142930
  bareFlag: __props.bareFlag,
@@ -142867,14 +142947,14 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
142867
142947
  }), null, 16, ["fid", "disabled", "format", "value-format", "modelValue"])
142868
142948
  ]),
142869
142949
  _: 1
142870
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
142950
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
142871
142951
  };
142872
142952
  }
142873
142953
  });
142874
142954
 
142875
142955
  /* unplugin-vue-components disabled */
142876
142956
 
142877
- const datetimeItem = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-f6892f36"]]);
142957
+ const datetimeItem = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-c8a7001a"]]);
142878
142958
 
142879
142959
  const datetimeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142880
142960
  __proto__: null,
@@ -142892,6 +142972,10 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
142892
142972
  type: Boolean,
142893
142973
  default: false
142894
142974
  },
142975
+ showFormItem: {
142976
+ type: Boolean,
142977
+ default: false
142978
+ },
142895
142979
  bareFlag: {
142896
142980
  type: Boolean,
142897
142981
  default: false
@@ -142916,6 +143000,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
142916
143000
  return (_ctx, _cache) => {
142917
143001
  const _component_starhorse_form_item = __unplugin_components_0$3;
142918
143002
  return openBlock(), createBlock(_component_starhorse_form_item, {
143003
+ showFormItem: __props.showFormItem,
142919
143004
  isDesign: __props.isDesign,
142920
143005
  disabled: __props.disabled,
142921
143006
  bareFlag: __props.bareFlag,
@@ -142927,7 +143012,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
142927
143012
  ])),
142928
143013
  _: 1,
142929
143014
  __: [0]
142930
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
143015
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
142931
143016
  };
142932
143017
  }
142933
143018
  });
@@ -142950,6 +143035,10 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
142950
143035
  type: Boolean,
142951
143036
  default: false
142952
143037
  },
143038
+ showFormItem: {
143039
+ type: Boolean,
143040
+ default: false
143041
+ },
142953
143042
  bareFlag: {
142954
143043
  type: Boolean,
142955
143044
  default: false
@@ -143114,6 +143203,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
143114
143203
  _: 1
143115
143204
  }, 8, ["title", "dialog-visible"]),
143116
143205
  createVNode(_component_starhorse_form_item, {
143206
+ showFormItem: __props.showFormItem,
143117
143207
  isDesign: __props.isDesign,
143118
143208
  disabled: __props.disabled,
143119
143209
  bareFlag: __props.bareFlag,
@@ -143141,7 +143231,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
143141
143231
  }, 16, ["disabled", "fid", "modelValue"])
143142
143232
  ]),
143143
143233
  _: 1
143144
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
143234
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
143145
143235
  ], 64);
143146
143236
  };
143147
143237
  }
@@ -143149,7 +143239,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
143149
143239
 
143150
143240
  /* unplugin-vue-components disabled */
143151
143241
 
143152
- const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-7daedcdf"]]);
143242
+ const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-f7f14025"]]);
143153
143243
 
143154
143244
  const dialogInputItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
143155
143245
  __proto__: null,
@@ -143167,6 +143257,10 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
143167
143257
  type: Boolean,
143168
143258
  default: false
143169
143259
  },
143260
+ showFormItem: {
143261
+ type: Boolean,
143262
+ default: false
143263
+ },
143170
143264
  bareFlag: {
143171
143265
  type: Boolean,
143172
143266
  default: false
@@ -143204,6 +143298,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
143204
143298
  const _component_el_divider = ElDivider;
143205
143299
  const _component_starhorse_form_item = __unplugin_components_0$3;
143206
143300
  return openBlock(), createBlock(_component_starhorse_form_item, {
143301
+ showFormItem: __props.showFormItem,
143207
143302
  isDesign: __props.isDesign,
143208
143303
  disabled: __props.disabled,
143209
143304
  bareFlag: __props.bareFlag,
@@ -143223,7 +143318,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
143223
143318
  }, 16, ["direction", "content-position"])
143224
143319
  ]),
143225
143320
  _: 1
143226
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
143321
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
143227
143322
  };
143228
143323
  }
143229
143324
  });
@@ -143245,6 +143340,10 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
143245
143340
  type: Boolean,
143246
143341
  default: false
143247
143342
  },
143343
+ showFormItem: {
143344
+ type: Boolean,
143345
+ default: false
143346
+ },
143248
143347
  bareFlag: {
143249
143348
  type: Boolean,
143250
143349
  default: false
@@ -143277,6 +143376,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
143277
143376
  return (_ctx, _cache) => {
143278
143377
  const _component_starhorse_form_item = __unplugin_components_0$3;
143279
143378
  return openBlock(), createBlock(_component_starhorse_form_item, {
143379
+ showFormItem: __props.showFormItem,
143280
143380
  isDesign: __props.isDesign,
143281
143381
  disabled: __props.disabled,
143282
143382
  bareFlag: __props.bareFlag,
@@ -143290,14 +143390,14 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
143290
143390
  }, null, 8, _hoisted_1$j)
143291
143391
  ]),
143292
143392
  _: 1
143293
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
143393
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
143294
143394
  };
143295
143395
  }
143296
143396
  });
143297
143397
 
143298
143398
  /* unplugin-vue-components disabled */
143299
143399
 
143300
- const htmlItem = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-d9d9a95c"]]);
143400
+ const htmlItem = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-8b032760"]]);
143301
143401
 
143302
143402
  const htmlItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
143303
143403
  __proto__: null,
@@ -160387,6 +160487,10 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
160387
160487
  type: Boolean,
160388
160488
  default: false
160389
160489
  },
160490
+ showFormItem: {
160491
+ type: Boolean,
160492
+ default: false
160493
+ },
160390
160494
  bareFlag: {
160391
160495
  type: Boolean,
160392
160496
  default: false
@@ -160445,6 +160549,7 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
160445
160549
  return (_ctx, _cache) => {
160446
160550
  const _component_starhorse_form_item = __unplugin_components_0$3;
160447
160551
  return openBlock(), createBlock(_component_starhorse_form_item, {
160552
+ showFormItem: __props.showFormItem,
160448
160553
  isDesign: __props.isDesign,
160449
160554
  disabled: __props.disabled,
160450
160555
  bareFlag: __props.bareFlag,
@@ -160470,7 +160575,7 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
160470
160575
  ])
160471
160576
  ]),
160472
160577
  _: 1
160473
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
160578
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
160474
160579
  };
160475
160580
  }
160476
160581
  });
@@ -160495,6 +160600,10 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
160495
160600
  type: Boolean,
160496
160601
  default: false
160497
160602
  },
160603
+ showFormItem: {
160604
+ type: Boolean,
160605
+ default: false
160606
+ },
160498
160607
  bareFlag: {
160499
160608
  type: Boolean,
160500
160609
  default: false
@@ -160566,6 +160675,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
160566
160675
  const _component_el_icon = ElIcon;
160567
160676
  const _component_el_popover = ElPopover;
160568
160677
  return openBlock(), createBlock(__unplugin_components_0$3, {
160678
+ showFormItem: __props.showFormItem,
160569
160679
  isDesign: __props.isDesign,
160570
160680
  disabled: __props.disabled,
160571
160681
  bareFlag: __props.bareFlag,
@@ -160596,9 +160706,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
160596
160706
  key: 1,
160597
160707
  "icon-class": formData.value[__props.field.fieldName],
160598
160708
  size: "30px",
160599
- width: "30px",
160600
- height: "30px",
160601
- style: { "font-size": "50px", "color": "var(--star-horse-style)", "border-radius": "3px", "border": "1px solid var(--star-horse-light-gray)" },
160709
+ style: { "color": "var(--star-horse-style)", "border-radius": "3px", "border": "1px solid var(--star-horse-light-gray)" },
160602
160710
  cursor: "pointer"
160603
160711
  }, null, 8, ["icon-class"]))
160604
160712
  ]),
@@ -160658,14 +160766,14 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
160658
160766
  }, 8, ["placement", "disabled"])
160659
160767
  ]),
160660
160768
  _: 1
160661
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
160769
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
160662
160770
  };
160663
160771
  }
160664
160772
  });
160665
160773
 
160666
160774
  /* unplugin-vue-components disabled */
160667
160775
 
160668
- const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-18485b81"]]);
160776
+ const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-3496de2c"]]);
160669
160777
 
160670
160778
  const iconItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160671
160779
  __proto__: null,
@@ -160692,6 +160800,10 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
160692
160800
  type: Boolean,
160693
160801
  default: false
160694
160802
  },
160803
+ showFormItem: {
160804
+ type: Boolean,
160805
+ default: false
160806
+ },
160695
160807
  bareFlag: {
160696
160808
  type: Boolean,
160697
160809
  default: false
@@ -160755,6 +160867,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
160755
160867
  const _component_el_image = ElImage;
160756
160868
  const _component_starhorse_form_item = __unplugin_components_0$3;
160757
160869
  return openBlock(), createBlock(_component_starhorse_form_item, {
160870
+ showFormItem: __props.showFormItem,
160758
160871
  isDesign: __props.isDesign,
160759
160872
  disabled: __props.disabled,
160760
160873
  bareFlag: __props.bareFlag,
@@ -160891,14 +161004,14 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
160891
161004
  ]))
160892
161005
  ]),
160893
161006
  _: 1
160894
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161007
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
160895
161008
  };
160896
161009
  }
160897
161010
  });
160898
161011
 
160899
161012
  /* unplugin-vue-components disabled */
160900
161013
 
160901
- const imageItem = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-70ac6f71"]]);
161014
+ const imageItem = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-7b39e8a0"]]);
160902
161015
 
160903
161016
  const imageItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160904
161017
  __proto__: null,
@@ -160921,6 +161034,10 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
160921
161034
  type: Boolean,
160922
161035
  default: false
160923
161036
  },
161037
+ showFormItem: {
161038
+ type: Boolean,
161039
+ default: false
161040
+ },
160924
161041
  placeholder: String,
160925
161042
  initialContent: String
160926
161043
  },
@@ -160987,6 +161104,10 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
160987
161104
  type: Boolean,
160988
161105
  default: false
160989
161106
  },
161107
+ showFormItem: {
161108
+ type: Boolean,
161109
+ default: false
161110
+ },
160990
161111
  bareFlag: {
160991
161112
  type: Boolean,
160992
161113
  default: false
@@ -161059,6 +161180,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
161059
161180
  onConfirm: handleContentConfirm
161060
161181
  }, null, 8, ["modelValue", "disabled", "initial-content"]),
161061
161182
  createVNode(_component_starhorse_form_item, {
161183
+ showFormItem: __props.showFormItem,
161062
161184
  isDesign: __props.isDesign,
161063
161185
  disabled: __props.disabled,
161064
161186
  bareFlag: __props.bareFlag,
@@ -161150,7 +161272,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
161150
161272
  ]), 1040, ["disabled", "fid", "modelValue"])
161151
161273
  ]),
161152
161274
  _: 1
161153
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
161275
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
161154
161276
  ], 64);
161155
161277
  };
161156
161278
  }
@@ -161158,7 +161280,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
161158
161280
 
161159
161281
  /* unplugin-vue-components disabled */
161160
161282
 
161161
- const inputItem = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-991cb7cf"]]);
161283
+ const inputItem = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-84c2697d"]]);
161162
161284
 
161163
161285
  const inputItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161164
161286
  __proto__: null,
@@ -161172,6 +161294,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
161172
161294
  __name: "base-json-item",
161173
161295
  props: /* @__PURE__ */ mergeModels({
161174
161296
  isDesign: { type: Boolean, default: false },
161297
+ showFormItem: { type: Boolean, default: false },
161175
161298
  disabled: { type: Boolean, default: false },
161176
161299
  bareFlag: { type: Boolean, default: false },
161177
161300
  isSearch: { type: Boolean, default: false },
@@ -161294,6 +161417,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
161294
161417
  createVNode(_component_starhorse_form_item, {
161295
161418
  isDesign: __props.isDesign,
161296
161419
  disabled: __props.disabled,
161420
+ showFormItem: __props.showFormItem,
161297
161421
  bareFlag: __props.bareFlag,
161298
161422
  formItem: __props.field,
161299
161423
  parentField: __props.parentField
@@ -161332,7 +161456,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
161332
161456
  ])
161333
161457
  ]),
161334
161458
  _: 1
161335
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
161459
+ }, 8, ["isDesign", "disabled", "showFormItem", "bareFlag", "formItem", "parentField"])
161336
161460
  ], 64);
161337
161461
  };
161338
161462
  }
@@ -161340,7 +161464,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
161340
161464
 
161341
161465
  /* unplugin-vue-components disabled */
161342
161466
 
161343
- const __unplugin_components_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-3e3840dd"]]);
161467
+ const __unplugin_components_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-f43e0219"]]);
161344
161468
 
161345
161469
  const baseJsonItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161346
161470
  __proto__: null,
@@ -161358,6 +161482,10 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
161358
161482
  type: Boolean,
161359
161483
  default: false
161360
161484
  },
161485
+ showFormItem: {
161486
+ type: Boolean,
161487
+ default: false
161488
+ },
161361
161489
  bareFlag: {
161362
161490
  type: Boolean,
161363
161491
  default: false
@@ -161403,6 +161531,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
161403
161531
  return openBlock(), createBlock(_component_base_json_item, {
161404
161532
  isDesign: __props.isDesign,
161405
161533
  disabled: __props.disabled,
161534
+ showFormItem: __props.showFormItem,
161406
161535
  field: __props.field,
161407
161536
  onSelectItem: itemAction,
161408
161537
  formInfo: __props.formInfo,
@@ -161411,7 +161540,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
161411
161540
  onSelfFunc: itemAction,
161412
161541
  parentField: __props.parentField,
161413
161542
  dataType: "array"
161414
- }, null, 8, ["isDesign", "disabled", "field", "formInfo", "formData", "parentField"]);
161543
+ }, null, 8, ["isDesign", "disabled", "showFormItem", "field", "formInfo", "formData", "parentField"]);
161415
161544
  };
161416
161545
  }
161417
161546
  });
@@ -161432,6 +161561,10 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
161432
161561
  type: Boolean,
161433
161562
  default: false
161434
161563
  },
161564
+ showFormItem: {
161565
+ type: Boolean,
161566
+ default: false
161567
+ },
161435
161568
  bareFlag: {
161436
161569
  type: Boolean,
161437
161570
  default: false
@@ -161477,6 +161610,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
161477
161610
  return openBlock(), createBlock(_component_base_json_item, {
161478
161611
  isDesign: __props.isDesign,
161479
161612
  disabled: __props.disabled,
161613
+ showFormItem: __props.showFormItem,
161480
161614
  field: __props.field,
161481
161615
  onSelectItem: itemAction,
161482
161616
  formInfo: __props.formInfo,
@@ -161485,7 +161619,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
161485
161619
  onSelfFunc: itemAction,
161486
161620
  parentField: __props.parentField,
161487
161621
  dataType: "object"
161488
- }, null, 8, ["isDesign", "disabled", "field", "formInfo", "formData", "parentField"]);
161622
+ }, null, 8, ["isDesign", "disabled", "showFormItem", "field", "formInfo", "formData", "parentField"]);
161489
161623
  };
161490
161624
  }
161491
161625
  });
@@ -161506,6 +161640,10 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
161506
161640
  type: Boolean,
161507
161641
  default: false
161508
161642
  },
161643
+ showFormItem: {
161644
+ type: Boolean,
161645
+ default: false
161646
+ },
161509
161647
  bareFlag: {
161510
161648
  type: Boolean,
161511
161649
  default: false
@@ -161543,6 +161681,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
161543
161681
  const _component_MdEditor = resolveComponent("MdEditor");
161544
161682
  const _component_starhorse_form_item = __unplugin_components_0$3;
161545
161683
  return openBlock(), createBlock(_component_starhorse_form_item, {
161684
+ showFormItem: __props.showFormItem,
161546
161685
  isDesign: __props.isDesign,
161547
161686
  disabled: __props.disabled,
161548
161687
  bareFlag: __props.bareFlag,
@@ -161560,14 +161699,14 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
161560
161699
  }, __props.field.preps, { class: "markdown-editor" }), null, 16, ["modelValue"])
161561
161700
  ]),
161562
161701
  _: 1
161563
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161702
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161564
161703
  };
161565
161704
  }
161566
161705
  });
161567
161706
 
161568
161707
  /* unplugin-vue-components disabled */
161569
161708
 
161570
- const markdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-a959605c"]]);
161709
+ const markdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-02d17bde"]]);
161571
161710
 
161572
161711
  const markdownItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161573
161712
  __proto__: null,
@@ -161590,6 +161729,10 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
161590
161729
  type: Boolean,
161591
161730
  default: false
161592
161731
  },
161732
+ showFormItem: {
161733
+ type: Boolean,
161734
+ default: false
161735
+ },
161593
161736
  bareFlag: {
161594
161737
  type: Boolean,
161595
161738
  default: false
@@ -161641,6 +161784,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
161641
161784
  const _component_el_input_number = ElInputNumber;
161642
161785
  const _component_starhorse_form_item = __unplugin_components_0$3;
161643
161786
  return openBlock(), createBlock(_component_starhorse_form_item, {
161787
+ showFormItem: __props.showFormItem,
161644
161788
  isDesign: __props.isDesign,
161645
161789
  disabled: __props.disabled,
161646
161790
  bareFlag: __props.bareFlag,
@@ -161665,14 +161809,14 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
161665
161809
  }, 16, ["fid", "disabled", "modelValue"])
161666
161810
  ]),
161667
161811
  _: 1
161668
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161812
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161669
161813
  };
161670
161814
  }
161671
161815
  });
161672
161816
 
161673
161817
  /* unplugin-vue-components disabled */
161674
161818
 
161675
- const numberItem = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-08a01f3f"]]);
161819
+ const numberItem = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-831c633d"]]);
161676
161820
 
161677
161821
  const numberItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161678
161822
  __proto__: null,
@@ -161692,6 +161836,10 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
161692
161836
  type: Boolean,
161693
161837
  default: false
161694
161838
  },
161839
+ showFormItem: {
161840
+ type: Boolean,
161841
+ default: false
161842
+ },
161695
161843
  bareFlag: {
161696
161844
  type: Boolean,
161697
161845
  default: false
@@ -161776,6 +161924,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
161776
161924
  const _component_el_input_number = ElInputNumber;
161777
161925
  const _component_starhorse_form_item = __unplugin_components_0$3;
161778
161926
  return openBlock(), createBlock(_component_starhorse_form_item, {
161927
+ showFormItem: __props.showFormItem,
161779
161928
  isDesign: __props.isDesign,
161780
161929
  disabled: __props.disabled,
161781
161930
  bareFlag: __props.bareFlag,
@@ -161831,14 +161980,14 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
161831
161980
  ])
161832
161981
  ]),
161833
161982
  _: 1
161834
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161983
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
161835
161984
  };
161836
161985
  }
161837
161986
  });
161838
161987
 
161839
161988
  /* unplugin-vue-components disabled */
161840
161989
 
161841
- const numberRangeItem = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-5b58850f"]]);
161990
+ const numberRangeItem = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-37ee7849"]]);
161842
161991
 
161843
161992
  const numberRangeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161844
161993
  __proto__: null,
@@ -161856,6 +162005,10 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
161856
162005
  type: Boolean,
161857
162006
  default: false
161858
162007
  },
162008
+ showFormItem: {
162009
+ type: Boolean,
162010
+ default: false
162011
+ },
161859
162012
  bareFlag: {
161860
162013
  type: Boolean,
161861
162014
  default: false
@@ -162067,6 +162220,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
162067
162220
  const _component_el_select = ElSelect;
162068
162221
  const _component_starhorse_form_item = __unplugin_components_0$3;
162069
162222
  return openBlock(), createBlock(_component_starhorse_form_item, {
162223
+ showFormItem: __props.showFormItem,
162070
162224
  isDesign: __props.isDesign,
162071
162225
  disabled: __props.disabled,
162072
162226
  bareFlag: __props.bareFlag,
@@ -162168,14 +162322,14 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
162168
162322
  }, 16, ["fid", "disabled", "modelValue"])
162169
162323
  ]),
162170
162324
  _: 1
162171
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162325
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162172
162326
  };
162173
162327
  }
162174
162328
  });
162175
162329
 
162176
162330
  /* unplugin-vue-components disabled */
162177
162331
 
162178
- const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-f33af78d"]]);
162332
+ const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-6a951bb9"]]);
162179
162333
 
162180
162334
  const pageSelectItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
162181
162335
  __proto__: null,
@@ -162193,6 +162347,10 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
162193
162347
  type: Boolean,
162194
162348
  default: false
162195
162349
  },
162350
+ showFormItem: {
162351
+ type: Boolean,
162352
+ default: false
162353
+ },
162196
162354
  bareFlag: {
162197
162355
  type: Boolean,
162198
162356
  default: false
@@ -162234,6 +162392,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
162234
162392
  const _component_el_input = ElInput;
162235
162393
  const _component_starhorse_form_item = __unplugin_components_0$3;
162236
162394
  return openBlock(), createBlock(_component_starhorse_form_item, {
162395
+ showFormItem: __props.showFormItem,
162237
162396
  isDesign: __props.isDesign,
162238
162397
  disabled: __props.disabled,
162239
162398
  bareFlag: __props.bareFlag,
@@ -162250,7 +162409,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
162250
162409
  }), null, 16, ["fid", "disabled", "modelValue"])
162251
162410
  ]),
162252
162411
  _: 1
162253
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162412
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162254
162413
  };
162255
162414
  }
162256
162415
  });
@@ -162271,6 +162430,10 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
162271
162430
  type: Boolean,
162272
162431
  default: false
162273
162432
  },
162433
+ showFormItem: {
162434
+ type: Boolean,
162435
+ default: false
162436
+ },
162274
162437
  bareFlag: {
162275
162438
  type: Boolean,
162276
162439
  default: false
@@ -162331,6 +162494,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
162331
162494
  const _component_el_radio_group = ElRadioGroup;
162332
162495
  const _component_starhorse_form_item = __unplugin_components_0$3;
162333
162496
  return openBlock(), createBlock(_component_starhorse_form_item, {
162497
+ showFormItem: __props.showFormItem,
162334
162498
  isDesign: __props.isDesign,
162335
162499
  disabled: __props.disabled,
162336
162500
  bareFlag: __props.bareFlag,
@@ -162370,7 +162534,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
162370
162534
  }, 16, ["fid", "disabled", "readonly", "text-color", "modelValue"])
162371
162535
  ]),
162372
162536
  _: 1
162373
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162537
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162374
162538
  };
162375
162539
  }
162376
162540
  });
@@ -162391,6 +162555,10 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
162391
162555
  type: Boolean,
162392
162556
  default: false
162393
162557
  },
162558
+ showFormItem: {
162559
+ type: Boolean,
162560
+ default: false
162561
+ },
162394
162562
  bareFlag: {
162395
162563
  type: Boolean,
162396
162564
  default: false
@@ -162428,6 +162596,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
162428
162596
  const _component_el_rate = ElRate;
162429
162597
  const _component_starhorse_form_item = __unplugin_components_0$3;
162430
162598
  return openBlock(), createBlock(_component_starhorse_form_item, {
162599
+ showFormItem: __props.showFormItem,
162431
162600
  isDesign: __props.isDesign,
162432
162601
  disabled: __props.disabled,
162433
162602
  bareFlag: __props.bareFlag,
@@ -162445,7 +162614,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
162445
162614
  }), null, 16, ["fid", "disabled", "modelValue"])
162446
162615
  ]),
162447
162616
  _: 1
162448
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162617
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162449
162618
  };
162450
162619
  }
162451
162620
  });
@@ -162466,6 +162635,10 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
162466
162635
  type: Boolean,
162467
162636
  default: false
162468
162637
  },
162638
+ showFormItem: {
162639
+ type: Boolean,
162640
+ default: false
162641
+ },
162469
162642
  bareFlag: {
162470
162643
  type: Boolean,
162471
162644
  default: false
@@ -162553,6 +162726,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
162553
162726
  const _component_el_select = ElSelect;
162554
162727
  const _component_starhorse_form_item = __unplugin_components_0$3;
162555
162728
  return openBlock(), createBlock(_component_starhorse_form_item, {
162729
+ showFormItem: __props.showFormItem,
162556
162730
  isDesign: __props.isDesign,
162557
162731
  disabled: __props.disabled,
162558
162732
  bareFlag: __props.bareFlag,
@@ -162581,14 +162755,14 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
162581
162755
  }, 16, ["fid", "disabled", "modelValue"])
162582
162756
  ]),
162583
162757
  _: 1
162584
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162758
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
162585
162759
  };
162586
162760
  }
162587
162761
  });
162588
162762
 
162589
162763
  /* unplugin-vue-components disabled */
162590
162764
 
162591
- const selectItem = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-f819df72"]]);
162765
+ const selectItem = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-8dbf6caf"]]);
162592
162766
 
162593
162767
  const selectItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
162594
162768
  __proto__: null,
@@ -163008,6 +163182,10 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
163008
163182
  type: Boolean,
163009
163183
  default: false
163010
163184
  },
163185
+ showFormItem: {
163186
+ type: Boolean,
163187
+ default: false
163188
+ },
163011
163189
  bareFlag: {
163012
163190
  type: Boolean,
163013
163191
  default: false
@@ -163095,6 +163273,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
163095
163273
  _: 1
163096
163274
  }, 8, ["dialog-visible"]),
163097
163275
  createVNode(_component_starhorse_form_item, {
163276
+ showFormItem: __props.showFormItem,
163098
163277
  isDesign: __props.isDesign,
163099
163278
  disabled: __props.disabled,
163100
163279
  bareFlag: __props.bareFlag,
@@ -163164,7 +163343,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
163164
163343
  ])
163165
163344
  ]),
163166
163345
  _: 1
163167
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
163346
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
163168
163347
  ], 64);
163169
163348
  };
163170
163349
  }
@@ -163172,7 +163351,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
163172
163351
 
163173
163352
  /* unplugin-vue-components disabled */
163174
163353
 
163175
- const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-e66a7fbe"]]);
163354
+ const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-bf193677"]]);
163176
163355
 
163177
163356
  const signatureItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163178
163357
  __proto__: null,
@@ -163190,6 +163369,10 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
163190
163369
  type: Boolean,
163191
163370
  default: false
163192
163371
  },
163372
+ showFormItem: {
163373
+ type: Boolean,
163374
+ default: false
163375
+ },
163193
163376
  bareFlag: {
163194
163377
  type: Boolean,
163195
163378
  default: false
@@ -163227,6 +163410,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
163227
163410
  const _component_el_slider = ElSlider;
163228
163411
  const _component_starhorse_form_item = __unplugin_components_0$3;
163229
163412
  return openBlock(), createBlock(_component_starhorse_form_item, {
163413
+ showFormItem: __props.showFormItem,
163230
163414
  isDesign: __props.isDesign,
163231
163415
  disabled: __props.disabled,
163232
163416
  bareFlag: __props.bareFlag,
@@ -163245,7 +163429,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
163245
163429
  }), null, 16, ["fid", "disabled", "step", "modelValue"])
163246
163430
  ]),
163247
163431
  _: 1
163248
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163432
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163249
163433
  };
163250
163434
  }
163251
163435
  });
@@ -163266,6 +163450,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
163266
163450
  type: Boolean,
163267
163451
  default: false
163268
163452
  },
163453
+ showFormItem: {
163454
+ type: Boolean,
163455
+ default: false
163456
+ },
163269
163457
  bareFlag: {
163270
163458
  type: Boolean,
163271
163459
  default: false
@@ -163314,6 +163502,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
163314
163502
  const _component_el_switch = ElSwitch;
163315
163503
  const _component_starhorse_form_item = __unplugin_components_0$3;
163316
163504
  return openBlock(), createBlock(_component_starhorse_form_item, {
163505
+ showFormItem: __props.showFormItem,
163317
163506
  isDesign: __props.isDesign,
163318
163507
  disabled: __props.disabled,
163319
163508
  bareFlag: __props.bareFlag,
@@ -163330,7 +163519,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
163330
163519
  }), null, 16, ["fid", "disabled", "modelValue"])
163331
163520
  ]),
163332
163521
  _: 1
163333
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163522
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163334
163523
  };
163335
163524
  }
163336
163525
  });
@@ -163351,6 +163540,10 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
163351
163540
  type: Boolean,
163352
163541
  default: false
163353
163542
  },
163543
+ showFormItem: {
163544
+ type: Boolean,
163545
+ default: false
163546
+ },
163354
163547
  bareFlag: {
163355
163548
  type: Boolean,
163356
163549
  default: false
@@ -163395,6 +163588,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
163395
163588
  const _component_el_tag = ElTag;
163396
163589
  const _component_starhorse_form_item = __unplugin_components_0$3;
163397
163590
  return openBlock(), createBlock(_component_starhorse_form_item, {
163591
+ showFormItem: __props.showFormItem,
163398
163592
  isDesign: __props.isDesign,
163399
163593
  disabled: __props.disabled,
163400
163594
  bareFlag: __props.bareFlag,
@@ -163414,7 +163608,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
163414
163608
  }, 16, ["type"])
163415
163609
  ]),
163416
163610
  _: 1
163417
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163611
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163418
163612
  };
163419
163613
  }
163420
163614
  });
@@ -163435,6 +163629,10 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
163435
163629
  type: Boolean,
163436
163630
  default: false
163437
163631
  },
163632
+ showFormItem: {
163633
+ type: Boolean,
163634
+ default: false
163635
+ },
163438
163636
  bareFlag: {
163439
163637
  type: Boolean,
163440
163638
  default: false
@@ -163468,6 +163666,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
163468
163666
  return (_ctx, _cache) => {
163469
163667
  const _component_starhorse_form_item = __unplugin_components_0$3;
163470
163668
  return openBlock(), createBlock(_component_starhorse_form_item, {
163669
+ showFormItem: __props.showFormItem,
163471
163670
  isDesign: __props.isDesign,
163472
163671
  disabled: __props.disabled,
163473
163672
  bareFlag: __props.bareFlag,
@@ -163499,7 +163698,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
163499
163698
  ])
163500
163699
  ]),
163501
163700
  _: 1
163502
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163701
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163503
163702
  };
163504
163703
  }
163505
163704
  });
@@ -163520,6 +163719,10 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
163520
163719
  type: Boolean,
163521
163720
  default: false
163522
163721
  },
163722
+ showFormItem: {
163723
+ type: Boolean,
163724
+ default: false
163725
+ },
163523
163726
  bareFlag: {
163524
163727
  type: Boolean,
163525
163728
  default: false
@@ -163576,6 +163779,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
163576
163779
  onConfirm: handleContentConfirm
163577
163780
  }, null, 8, ["modelValue", "disabled", "initial-content"]),
163578
163781
  createVNode(_component_starhorse_form_item, {
163782
+ showFormItem: __props.showFormItem,
163579
163783
  isDesign: __props.isDesign,
163580
163784
  disabled: __props.disabled,
163581
163785
  bareFlag: __props.bareFlag,
@@ -163593,7 +163797,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
163593
163797
  }), null, 16, ["disabled", "fid", "modelValue"])
163594
163798
  ]),
163595
163799
  _: 1
163596
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
163800
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
163597
163801
  ], 64);
163598
163802
  };
163599
163803
  }
@@ -163615,6 +163819,10 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
163615
163819
  type: Boolean,
163616
163820
  default: false
163617
163821
  },
163822
+ showFormItem: {
163823
+ type: Boolean,
163824
+ default: false
163825
+ },
163618
163826
  bareFlag: {
163619
163827
  type: Boolean,
163620
163828
  default: false
@@ -163656,6 +163864,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
163656
163864
  const _component_el_time_select = ElTimeSelect;
163657
163865
  const _component_starhorse_form_item = __unplugin_components_0$3;
163658
163866
  return openBlock(), createBlock(_component_starhorse_form_item, {
163867
+ showFormItem: __props.showFormItem,
163659
163868
  isDesign: __props.isDesign,
163660
163869
  disabled: __props.disabled,
163661
163870
  bareFlag: __props.bareFlag,
@@ -163675,14 +163884,14 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
163675
163884
  }), null, 16, ["fid", "disabled", "start", "end", "step", "modelValue"])
163676
163885
  ]),
163677
163886
  _: 1
163678
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163887
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163679
163888
  };
163680
163889
  }
163681
163890
  });
163682
163891
 
163683
163892
  /* unplugin-vue-components disabled */
163684
163893
 
163685
- const timeItem = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-99b3e9a6"]]);
163894
+ const timeItem = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-13ccd7ec"]]);
163686
163895
 
163687
163896
  const timeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163688
163897
  __proto__: null,
@@ -163700,6 +163909,10 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
163700
163909
  type: Boolean,
163701
163910
  default: false
163702
163911
  },
163912
+ showFormItem: {
163913
+ type: Boolean,
163914
+ default: false
163915
+ },
163703
163916
  bareFlag: {
163704
163917
  type: Boolean,
163705
163918
  default: false
@@ -163741,6 +163954,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
163741
163954
  const _component_el_time_picker = ElTimePicker;
163742
163955
  const _component_starhorse_form_item = __unplugin_components_0$3;
163743
163956
  return openBlock(), createBlock(_component_starhorse_form_item, {
163957
+ showFormItem: __props.showFormItem,
163744
163958
  isDesign: __props.isDesign,
163745
163959
  disabled: __props.disabled,
163746
163960
  bareFlag: __props.bareFlag,
@@ -163757,14 +163971,14 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
163757
163971
  }), null, 16, ["fid", "disabled", "modelValue"])
163758
163972
  ]),
163759
163973
  _: 1
163760
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163974
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163761
163975
  };
163762
163976
  }
163763
163977
  });
163764
163978
 
163765
163979
  /* unplugin-vue-components disabled */
163766
163980
 
163767
- const timePickerItem = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-70a9b23e"]]);
163981
+ const timePickerItem = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-ea5d872d"]]);
163768
163982
 
163769
163983
  const timePickerItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163770
163984
  __proto__: null,
@@ -163782,6 +163996,10 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
163782
163996
  type: Boolean,
163783
163997
  default: false
163784
163998
  },
163999
+ showFormItem: {
164000
+ type: Boolean,
164001
+ default: false
164002
+ },
163785
164003
  bareFlag: {
163786
164004
  type: Boolean,
163787
164005
  default: false
@@ -163846,6 +164064,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
163846
164064
  const _component_el_transfer = ElTransfer;
163847
164065
  const _component_starhorse_form_item = __unplugin_components_0$3;
163848
164066
  return openBlock(), createBlock(_component_starhorse_form_item, {
164067
+ showFormItem: __props.showFormItem,
163849
164068
  isDesign: __props.isDesign,
163850
164069
  disabled: __props.disabled,
163851
164070
  bareFlag: __props.bareFlag,
@@ -163861,7 +164080,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
163861
164080
  }), null, 16, ["fid", "modelValue"])
163862
164081
  ]),
163863
164082
  _: 1
163864
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164083
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163865
164084
  };
163866
164085
  }
163867
164086
  });
@@ -163882,6 +164101,10 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
163882
164101
  type: Boolean,
163883
164102
  default: false
163884
164103
  },
164104
+ showFormItem: {
164105
+ type: Boolean,
164106
+ default: false
164107
+ },
163885
164108
  bareFlag: {
163886
164109
  type: Boolean,
163887
164110
  default: false
@@ -163963,6 +164186,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
163963
164186
  const _component_el_tree_select = ElTreeSelect;
163964
164187
  const _component_starhorse_form_item = __unplugin_components_0$3;
163965
164188
  return openBlock(), createBlock(_component_starhorse_form_item, {
164189
+ showFormItem: __props.showFormItem,
163966
164190
  isDesign: __props.isDesign,
163967
164191
  disabled: __props.disabled,
163968
164192
  bareFlag: __props.bareFlag,
@@ -163983,7 +164207,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
163983
164207
  }), null, 16, ["fid", "disabled", "modelValue"])
163984
164208
  ]),
163985
164209
  _: 1
163986
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164210
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
163987
164211
  };
163988
164212
  }
163989
164213
  });
@@ -164004,6 +164228,10 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
164004
164228
  type: Boolean,
164005
164229
  default: false
164006
164230
  },
164231
+ showFormItem: {
164232
+ type: Boolean,
164233
+ default: false
164234
+ },
164007
164235
  bareFlag: {
164008
164236
  type: Boolean,
164009
164237
  default: false
@@ -164028,6 +164256,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
164028
164256
  return (_ctx, _cache) => {
164029
164257
  const _component_starhorse_form_item = __unplugin_components_0$3;
164030
164258
  return openBlock(), createBlock(_component_starhorse_form_item, {
164259
+ showFormItem: __props.showFormItem,
164031
164260
  isDesign: __props.isDesign,
164032
164261
  disabled: __props.disabled,
164033
164262
  bareFlag: __props.bareFlag,
@@ -164039,7 +164268,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
164039
164268
  ])),
164040
164269
  _: 1,
164041
164270
  __: [0]
164042
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164271
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164043
164272
  };
164044
164273
  }
164045
164274
  });
@@ -164065,6 +164294,10 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
164065
164294
  type: Boolean,
164066
164295
  default: false
164067
164296
  },
164297
+ showFormItem: {
164298
+ type: Boolean,
164299
+ default: false
164300
+ },
164068
164301
  bareFlag: {
164069
164302
  type: Boolean,
164070
164303
  default: false
@@ -164149,6 +164382,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
164149
164382
  const _component_el_upload = ElUpload;
164150
164383
  const _component_starhorse_form_item = __unplugin_components_0$3;
164151
164384
  return openBlock(), createBlock(_component_starhorse_form_item, {
164385
+ showFormItem: __props.showFormItem,
164152
164386
  isDesign: __props.isDesign,
164153
164387
  disabled: __props.disabled,
164154
164388
  bareFlag: __props.bareFlag,
@@ -164204,14 +164438,14 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
164204
164438
  ]), 1040, ["fid", "disabled", "headers", "on-change", "on-error", "on-exceed", "on-preview", "on-progress", "on-remove", "on-success", "file-list"])
164205
164439
  ]),
164206
164440
  _: 1
164207
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164441
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164208
164442
  };
164209
164443
  }
164210
164444
  });
164211
164445
 
164212
164446
  /* unplugin-vue-components disabled */
164213
164447
 
164214
- const uploadItem = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-54bdafa6"]]);
164448
+ const uploadItem = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-8d6cb6f7"]]);
164215
164449
 
164216
164450
  const uploadItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
164217
164451
  __proto__: null,
@@ -164230,6 +164464,10 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
164230
164464
  type: Boolean,
164231
164465
  default: false
164232
164466
  },
164467
+ showFormItem: {
164468
+ type: Boolean,
164469
+ default: false
164470
+ },
164233
164471
  bareFlag: {
164234
164472
  type: Boolean,
164235
164473
  default: false
@@ -164368,6 +164606,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
164368
164606
  _: 1
164369
164607
  }, 8, ["title", "dialog-visible"]),
164370
164608
  createVNode(_component_starhorse_form_item, {
164609
+ showFormItem: __props.showFormItem,
164371
164610
  isDesign: __props.isDesign,
164372
164611
  disabled: __props.disabled,
164373
164612
  bareFlag: __props.bareFlag,
@@ -164395,7 +164634,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
164395
164634
  }, 16, ["disabled", "options", "fid", "modelValue"])
164396
164635
  ]),
164397
164636
  _: 1
164398
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"])
164637
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"])
164399
164638
  ], 64);
164400
164639
  };
164401
164640
  }
@@ -164425,6 +164664,10 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
164425
164664
  type: Boolean,
164426
164665
  default: false
164427
164666
  },
164667
+ showFormItem: {
164668
+ type: Boolean,
164669
+ default: false
164670
+ },
164428
164671
  bareFlag: {
164429
164672
  type: Boolean,
164430
164673
  default: false
@@ -164479,6 +164722,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
164479
164722
  return (_ctx, _cache) => {
164480
164723
  const _component_starhorse_form_item = __unplugin_components_0$3;
164481
164724
  return openBlock(), createBlock(_component_starhorse_form_item, {
164725
+ showFormItem: __props.showFormItem,
164482
164726
  isDesign: __props.isDesign,
164483
164727
  disabled: __props.disabled,
164484
164728
  bareFlag: __props.bareFlag,
@@ -164487,16 +164731,17 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
164487
164731
  }, {
164488
164732
  default: withCtx(() => [
164489
164733
  (openBlock(), createBlock(resolveDynamicComponent(currentComponent.value), mergeProps({
164734
+ showFormItem: __props.showFormItem,
164490
164735
  isDesign: __props.isDesign,
164491
164736
  disabled: __props.disabled,
164492
164737
  bareFlag: __props.bareFlag
164493
164738
  }, __props.field["preps"], {
164494
164739
  dataForm: formData.value,
164495
164740
  "onUpdate:dataForm": _cache[0] || (_cache[0] = ($event) => formData.value = $event)
164496
- }), null, 16, ["isDesign", "disabled", "bareFlag", "dataForm"]))
164741
+ }), null, 16, ["showFormItem", "isDesign", "disabled", "bareFlag", "dataForm"]))
164497
164742
  ]),
164498
164743
  _: 1
164499
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164744
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
164500
164745
  };
164501
164746
  }
164502
164747
  });
@@ -172874,6 +173119,10 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
172874
173119
  type: Boolean,
172875
173120
  default: false
172876
173121
  },
173122
+ showFormItem: {
173123
+ type: Boolean,
173124
+ default: false
173125
+ },
172877
173126
  bareFlag: {
172878
173127
  type: Boolean,
172879
173128
  default: false
@@ -172917,6 +173166,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
172917
173166
  return (_ctx, _cache) => {
172918
173167
  const _component_starhorse_form_item = __unplugin_components_0$3;
172919
173168
  return openBlock(), createBlock(_component_starhorse_form_item, {
173169
+ showFormItem: __props.showFormItem,
172920
173170
  isDesign: __props.isDesign,
172921
173171
  disabled: __props.disabled,
172922
173172
  bareFlag: __props.bareFlag,
@@ -172932,14 +173182,14 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
172932
173182
  }, null, 8, _hoisted_1$9)
172933
173183
  ]),
172934
173184
  _: 1
172935
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
173185
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
172936
173186
  };
172937
173187
  }
172938
173188
  });
172939
173189
 
172940
173190
  /* unplugin-vue-components disabled */
172941
173191
 
172942
- const viewMarkdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-15777ed5"]]);
173192
+ const viewMarkdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-c4e43e21"]]);
172943
173193
 
172944
173194
  const viewMarkdownItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
172945
173195
  __proto__: null,
@@ -174204,6 +174454,10 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
174204
174454
  type: Boolean,
174205
174455
  default: false
174206
174456
  },
174457
+ showFormItem: {
174458
+ type: Boolean,
174459
+ default: false
174460
+ },
174207
174461
  bareFlag: {
174208
174462
  type: Boolean,
174209
174463
  default: false
@@ -174260,6 +174514,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
174260
174514
  return (_ctx, _cache) => {
174261
174515
  const _component_starhorse_form_item = __unplugin_components_0$3;
174262
174516
  return openBlock(), createBlock(_component_starhorse_form_item, {
174517
+ showFormItem: __props.showFormItem,
174263
174518
  isDesign: __props.isDesign,
174264
174519
  disabled: __props.disabled,
174265
174520
  bareFlag: __props.bareFlag,
@@ -174270,7 +174525,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
174270
174525
  createVNode(QrcodeVue, mergeProps({ value: dataValue.value }, __props.field.preps, { "image-settings": imageSettings.value }), null, 16, ["value", "image-settings"])
174271
174526
  ]),
174272
174527
  _: 1
174273
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
174528
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
174274
174529
  };
174275
174530
  }
174276
174531
  });
@@ -174293,6 +174548,10 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
174293
174548
  type: Boolean,
174294
174549
  default: false
174295
174550
  },
174551
+ showFormItem: {
174552
+ type: Boolean,
174553
+ default: false
174554
+ },
174296
174555
  bareFlag: {
174297
174556
  type: Boolean,
174298
174557
  default: false
@@ -174370,6 +174629,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
174370
174629
  return (_ctx, _cache) => {
174371
174630
  const _component_starhorse_form_item = __unplugin_components_0$3;
174372
174631
  return openBlock(), createBlock(_component_starhorse_form_item, {
174632
+ showFormItem: __props.showFormItem,
174373
174633
  isDesign: __props.isDesign,
174374
174634
  disabled: __props.disabled,
174375
174635
  bareFlag: __props.bareFlag,
@@ -174383,7 +174643,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
174383
174643
  }, null, 8, ["value", "options"])
174384
174644
  ]),
174385
174645
  _: 1
174386
- }, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
174646
+ }, 8, ["showFormItem", "isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
174387
174647
  };
174388
174648
  }
174389
174649
  });