lu-lowcode-package-form 0.11.28 → 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 +14984 -14982
- package/package.json +1 -1
- package/src/components/form-container/index.jsx +2 -0
package/package.json
CHANGED
@@ -83,6 +83,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
83
83
|
throttle(async () => {
|
84
84
|
// console.log("throttledInitializeFormRender")
|
85
85
|
await initializeDependencyMap();
|
86
|
+
console.log("initializeDependencyMap")
|
86
87
|
requestAnimationFrame(() => {
|
87
88
|
setFormContent(renderChildren());
|
88
89
|
})
|
@@ -177,6 +178,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
177
178
|
};
|
178
179
|
// 初始化字段的级联关系
|
179
180
|
const initializeFieldVisibility = debounce(async (reloadFields = false) => {
|
181
|
+
console.log("initializeFieldVisibility begin",reloadFields)
|
180
182
|
await initializeFieldVisibilityImmediate(reloadFields);
|
181
183
|
}, 100);
|
182
184
|
|