lu-lowcode-package-form 0.11.25 → 0.11.27
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 +14981 -14983
- package/package.json +1 -1
- package/src/components/form-container/index.jsx +2 -0
package/package.json
CHANGED
@@ -94,6 +94,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
94
94
|
|
95
95
|
|
96
96
|
useEffect(() => {
|
97
|
+
console.log("UseEffect throttledInitializeFormRender")
|
97
98
|
throttledInitializeFormRender();
|
98
99
|
return () => {
|
99
100
|
throttledInitializeFormRender.cancel();
|
@@ -676,6 +677,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
676
677
|
console.log("renderChildren")
|
677
678
|
const renderKey = nanoid()
|
678
679
|
const childrenArray = React.Children.toArray(children);
|
680
|
+
console.log("childrenArray", childrenArray)
|
679
681
|
const groupedChildren = batchElements(
|
680
682
|
childrenArray,
|
681
683
|
// childrenArray.filter(child => {
|