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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lu-lowcode-package-form",
3
- "version": "0.11.28",
3
+ "version": "0.11.30",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^4.8.1",
6
6
  "@dnd-kit/core": "^6.1.0",
@@ -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