lu-lowcode-package-form 0.11.29 → 0.11.30
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/dist/index.cjs.js +202 -202
- package/dist/index.es.js +14986 -14982
- package/package.json +1 -1
- package/src/components/form-container/index.jsx +3 -2
package/package.json
CHANGED
@@ -84,9 +84,9 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
84
84
|
// console.log("throttledInitializeFormRender")
|
85
85
|
await initializeDependencyMap();
|
86
86
|
console.log("initializeDependencyMap")
|
87
|
-
|
87
|
+
requestAnimationFrame(() => {
|
88
88
|
setFormContent(renderChildren());
|
89
|
-
|
89
|
+
})
|
90
90
|
// console.log("throttledInitializeFormRender end")
|
91
91
|
|
92
92
|
}, 300),
|
@@ -178,6 +178,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
178
178
|
};
|
179
179
|
// 初始化字段的级联关系
|
180
180
|
const initializeFieldVisibility = debounce(async (reloadFields = false) => {
|
181
|
+
console.log("initializeFieldVisibility begin",reloadFields)
|
181
182
|
await initializeFieldVisibilityImmediate(reloadFields);
|
182
183
|
}, 100);
|
183
184
|
|