form-custom-test 3.0.153 → 3.0.156

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.
@@ -27607,9 +27607,9 @@ const _sfc_main$2S = {
27607
27607
  };
27608
27608
  traverseFieldWidgets(this.widgetList, handlerFn);
27609
27609
  if (!!subFormName) {
27610
- let subFormRef = this.getWidgetRef(subFormName);
27610
+ let subFormRef = this.subFormRefList[subFormName] || this.getWidgetRef(subFormName);
27611
27611
  if (!!subFormRef) {
27612
- let rowIds = subFormRef == null ? void 0 : subFormRef.getRowIdData();
27612
+ let rowIds = typeof subFormRef.getRowIdData === "function" ? subFormRef.getRowIdData() : Array.isArray(subFormRef.rowIdData) ? subFormRef.rowIdData : [];
27613
27613
  if (!!rowIds && rowIds.length > 0) {
27614
27614
  rowIds.forEach((rid) => {
27615
27615
  result.push(widgetName + "@row" + rid);
@@ -28056,7 +28056,7 @@ function _sfc_render$2S(_ctx, _cache, $props, $setup, $data, $options) {
28056
28056
  _: 3
28057
28057
  }, 8, ["label-position", "size", "class", "label-width", "model"]);
28058
28058
  }
28059
- var VFormRender = /* @__PURE__ */ _export_sfc$1(_sfc_main$2S, [["render", _sfc_render$2S], ["__scopeId", "data-v-8e14e27e"]]);
28059
+ var VFormRender = /* @__PURE__ */ _export_sfc$1(_sfc_main$2S, [["render", _sfc_render$2S], ["__scopeId", "data-v-6e3bb628"]]);
28060
28060
  var ace$2 = { exports: {} };
28061
28061
  (function(module, exports) {
28062
28062
  (function() {
@@ -68622,13 +68622,13 @@ function registerIcon(app) {
68622
68622
  if (typeof window !== "undefined") {
68623
68623
  let loadSvg = function() {
68624
68624
  var body = document.body;
68625
- var svgDom = document.getElementById("__svg__icons__dom__1779168948969__");
68625
+ var svgDom = document.getElementById("__svg__icons__dom__1779189425285__");
68626
68626
  if (!svgDom) {
68627
68627
  svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
68628
68628
  svgDom.style.position = "absolute";
68629
68629
  svgDom.style.width = "0";
68630
68630
  svgDom.style.height = "0";
68631
- svgDom.id = "__svg__icons__dom__1779168948969__";
68631
+ svgDom.id = "__svg__icons__dom__1779189425285__";
68632
68632
  svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
68633
68633
  svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
68634
68634
  }
@@ -75909,6 +75909,9 @@ const _sfc_main$f = {
75909
75909
  deleteFromRowIdData(rowIndex) {
75910
75910
  this.rowIdData.splice(rowIndex, 1);
75911
75911
  },
75912
+ getRowIdData() {
75913
+ return this.rowIdData;
75914
+ },
75912
75915
  disableSubFormRow(rowIndex) {
75913
75916
  if (!this.widget.widgetList || !this.rowIdData[rowIndex])
75914
75917
  return;
@@ -76286,7 +76289,7 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
76286
76289
  _: 1
76287
76290
  }, 8, ["widget"]);
76288
76291
  }
76289
- var CustomSubFormItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-3754189c"]]);
76292
+ var CustomSubFormItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-6bd07e4e"]]);
76290
76293
  const customTableCellSchema = {
76291
76294
  type: "custom-table-cell",
76292
76295
  category: "container",
@@ -79223,7 +79226,7 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
79223
79226
  _: 1
79224
79227
  }, 8, ["modelValue", "onClose"]);
79225
79228
  }
79226
- var AssetDialog = /* @__PURE__ */ _export_sfc$1(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-0de00117"]]);
79229
+ var AssetDialog = /* @__PURE__ */ _export_sfc$1(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-0c6d23e8"]]);
79227
79230
  var index_vue_vue_type_style_index_0_lang$1 = "";
79228
79231
  const _sfc_main$5 = {
79229
79232
  name: "asset-select-widget",
@@ -80316,6 +80319,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
80316
80319
  "sub-form-row-id": $props.subFormRowId
80317
80320
  }, {
80318
80321
  default: withCtx(() => [
80322
+ createTextVNode(toDisplayString($options.hasExistingValue()) + " ", 1),
80319
80323
  createVNode(_component_el_input, {
80320
80324
  modelValue: $options.displayModel,
80321
80325
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $options.displayModel = $event),