star-horse-lowcode 2.7.10 → 2.7.11
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/README.md +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +2 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -101891,11 +101891,12 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
|
|
|
101891
101891
|
primaryKey: { type: [String, Object] }
|
|
101892
101892
|
},
|
|
101893
101893
|
setup(__props) {
|
|
101894
|
+
const exclusionFields = ["divider", "button", "usercomp"];
|
|
101894
101895
|
return (_ctx, _cache) => {
|
|
101895
101896
|
const _component_star_horse_form_list = __unplugin_components_0$3;
|
|
101896
101897
|
const _component_sh_table_list_column = _sfc_main$1E;
|
|
101897
101898
|
const _component_el_table_column = ElTableColumn;
|
|
101898
|
-
return __props.item.formVisible ? (openBlock(), createBlock(_component_el_table_column, {
|
|
101899
|
+
return __props.item.formVisible && !exclusionFields.includes(__props.item.type) ? (openBlock(), createBlock(_component_el_table_column, {
|
|
101899
101900
|
key: 0,
|
|
101900
101901
|
prop: __props.item.fieldName,
|
|
101901
101902
|
label: __props.item.label,
|