@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260902122246 → 0.8.1-dev.20260903053106

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.js CHANGED
@@ -8804,6 +8804,11 @@ var DivContainer = async (props) => {
8804
8804
  const renderLink = result && props.node.dataBinding?.responseType === "array" ? true : false;
8805
8805
  const renderContainerChildren = () => {
8806
8806
  if (!hasReplicatedChildren) {
8807
+ if (Array.isArray(arrayResult)) {
8808
+ return props.node.children.flatMap(
8809
+ (node, childIndex) => node?.type === "div-container" ? [] : [renderNode(node, props, props.dataitem, `static-${childIndex}`)]
8810
+ );
8811
+ }
8807
8812
  return dataToRender.map(
8808
8813
  (item, idx) => item?.links?.view && renderLink ? renderChildren2(
8809
8814
  props.node.children,
package/dist/index.mjs CHANGED
@@ -2753,6 +2753,11 @@ var DivContainer = async (props) => {
2753
2753
  const renderLink = result && props.node.dataBinding?.responseType === "array" ? true : false;
2754
2754
  const renderContainerChildren = () => {
2755
2755
  if (!hasReplicatedChildren) {
2756
+ if (Array.isArray(arrayResult)) {
2757
+ return props.node.children.flatMap(
2758
+ (node, childIndex) => node?.type === "div-container" ? [] : [renderNode(node, props, props.dataitem, `static-${childIndex}`)]
2759
+ );
2760
+ }
2756
2761
  return dataToRender.map(
2757
2762
  (item, idx) => item?.links?.view && renderLink ? renderChildren(
2758
2763
  props.node.children,
package/dist/server.js CHANGED
@@ -8773,6 +8773,11 @@ var DivContainer = async (props) => {
8773
8773
  const renderLink = result && props.node.dataBinding?.responseType === "array" ? true : false;
8774
8774
  const renderContainerChildren = () => {
8775
8775
  if (!hasReplicatedChildren) {
8776
+ if (Array.isArray(arrayResult)) {
8777
+ return props.node.children.flatMap(
8778
+ (node, childIndex) => node?.type === "div-container" ? [] : [renderNode(node, props, props.dataitem, `static-${childIndex}`)]
8779
+ );
8780
+ }
8776
8781
  return dataToRender.map(
8777
8782
  (item, idx) => item?.links?.view && renderLink ? renderChildren2(
8778
8783
  props.node.children,
package/dist/server.mjs CHANGED
@@ -2721,6 +2721,11 @@ var DivContainer = async (props) => {
2721
2721
  const renderLink = result && props.node.dataBinding?.responseType === "array" ? true : false;
2722
2722
  const renderContainerChildren = () => {
2723
2723
  if (!hasReplicatedChildren) {
2724
+ if (Array.isArray(arrayResult)) {
2725
+ return props.node.children.flatMap(
2726
+ (node, childIndex) => node?.type === "div-container" ? [] : [renderNode(node, props, props.dataitem, `static-${childIndex}`)]
2727
+ );
2728
+ }
2724
2729
  return dataToRender.map(
2725
2730
  (item, idx) => item?.links?.view && renderLink ? renderChildren(
2726
2731
  props.node.children,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clyrex-digital/clyrex-controls-dev",
3
- "version": "0.8.1-dev.20260902122246",
3
+ "version": "0.8.1-dev.20260903053106",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",