@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 +1 -1
- package/src/common/utils.js +9 -1
package/package.json
CHANGED
package/src/common/utils.js
CHANGED
|
@@ -223,7 +223,15 @@ export function removeInTableFalseFields(_schema, opt = {}) {
|
|
|
223
223
|
const _boxList =
|
|
224
224
|
boxList === false
|
|
225
225
|
? []
|
|
226
|
-
: [
|
|
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) => {
|