@hzab/list-render 1.10.20-alpha.4 → 1.10.20-alpha.5

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.10.20-alpha.4",
3
+ "version": "1.10.20-alpha.5",
4
4
  "description": "",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -26,7 +26,7 @@
26
26
  "devDependencies": {
27
27
  "@ant-design/icons": "^4.8.1",
28
28
  "@hzab/data-model": "^2.0.2",
29
- "@hzab/form-render": "^1.7.13",
29
+ "@hzab/form-render": "^1.7.14",
30
30
  "@hzab/formily-result-utils": "^1.2.0",
31
31
  "@hzab/permissions": "^1.0.0",
32
32
  "@hzab/schema-descriptions": "^1.3.0",
@@ -51,7 +51,7 @@
51
51
  "@formily/react": "2.3.1",
52
52
  "@formily/reactive-react": "2.3.1",
53
53
  "@hzab/data-model": ">=1.7.4",
54
- "@hzab/form-render": ">=1.0.0",
54
+ "@hzab/form-render": ">=1.7.14",
55
55
  "@hzab/formily-result-utils": ">=1.2.0",
56
56
  "@hzab/schema-descriptions": ">=1.0.0",
57
57
  "@hzab/utils": ">=1.0.7",
@@ -103,7 +103,7 @@ const TableRender = forwardRef(function (props, tableRef) {
103
103
  });
104
104
 
105
105
  useEffect(() => {
106
- if (!propsSchema.properties) {
106
+ if (!propsSchema?.properties) {
107
107
  return;
108
108
  }
109
109
  const fieldList = getFieldList(propsSchema, [], { ...props.getFieldListOpt, formilyRef }, isTableSortXIdex);