@hzab/list-render 1.9.7-beta2 → 1.9.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hzab/list-render",
3
- "version": "1.9.7-beta2",
3
+ "version": "1.9.8",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -223,7 +223,15 @@ export function removeInTableFalseFields(_schema, opt = {}) {
223
223
  const _boxList =
224
224
  boxList === false
225
225
  ? []
226
- : ["Card", "FormGrid", "ArrayCards", "Collapse", "Tabs", ...(Array.isArray(boxList) ? boxList : [])];
226
+ : [
227
+ "Card",
228
+ "FormGrid",
229
+ "ArrayCards",
230
+ "Collapse",
231
+ "Tabs",
232
+ "FormGrid.GridColumn",
233
+ ...(Array.isArray(boxList) ? boxList : []),
234
+ ];
227
235
 
228
236
  // 4. 递归删除inTable:false的字段
229
237
  const processProperties = (properties) => {