@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260901061310 → 0.8.1-dev.20260901065721
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 +10 -1
- package/dist/index.mjs +10 -1
- package/dist/server.js +10 -1
- package/dist/server.mjs +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8778,7 +8778,16 @@ var DivContainer = async (props) => {
|
|
|
8778
8778
|
void 0,
|
|
8779
8779
|
true
|
|
8780
8780
|
)
|
|
8781
|
-
] : [
|
|
8781
|
+
] : [
|
|
8782
|
+
// Let the repeated child evaluate its own data source. It returns
|
|
8783
|
+
// null when the result is empty and the no-results message is off.
|
|
8784
|
+
renderNode(
|
|
8785
|
+
node,
|
|
8786
|
+
props,
|
|
8787
|
+
props.dataitem,
|
|
8788
|
+
`replicated-${childIndex}`
|
|
8789
|
+
)
|
|
8790
|
+
];
|
|
8782
8791
|
}
|
|
8783
8792
|
return arrayResult.map(
|
|
8784
8793
|
(item, itemIndex) => renderNode(
|
package/dist/index.mjs
CHANGED
|
@@ -2774,7 +2774,16 @@ var DivContainer = async (props) => {
|
|
|
2774
2774
|
void 0,
|
|
2775
2775
|
true
|
|
2776
2776
|
)
|
|
2777
|
-
] : [
|
|
2777
|
+
] : [
|
|
2778
|
+
// Let the repeated child evaluate its own data source. It returns
|
|
2779
|
+
// null when the result is empty and the no-results message is off.
|
|
2780
|
+
renderNode(
|
|
2781
|
+
node,
|
|
2782
|
+
props,
|
|
2783
|
+
props.dataitem,
|
|
2784
|
+
`replicated-${childIndex}`
|
|
2785
|
+
)
|
|
2786
|
+
];
|
|
2778
2787
|
}
|
|
2779
2788
|
return arrayResult.map(
|
|
2780
2789
|
(item, itemIndex) => renderNode(
|
package/dist/server.js
CHANGED
|
@@ -8747,7 +8747,16 @@ var DivContainer = async (props) => {
|
|
|
8747
8747
|
void 0,
|
|
8748
8748
|
true
|
|
8749
8749
|
)
|
|
8750
|
-
] : [
|
|
8750
|
+
] : [
|
|
8751
|
+
// Let the repeated child evaluate its own data source. It returns
|
|
8752
|
+
// null when the result is empty and the no-results message is off.
|
|
8753
|
+
renderNode(
|
|
8754
|
+
node,
|
|
8755
|
+
props,
|
|
8756
|
+
props.dataitem,
|
|
8757
|
+
`replicated-${childIndex}`
|
|
8758
|
+
)
|
|
8759
|
+
];
|
|
8751
8760
|
}
|
|
8752
8761
|
return arrayResult.map(
|
|
8753
8762
|
(item, itemIndex) => renderNode(
|
package/dist/server.mjs
CHANGED
|
@@ -2742,7 +2742,16 @@ var DivContainer = async (props) => {
|
|
|
2742
2742
|
void 0,
|
|
2743
2743
|
true
|
|
2744
2744
|
)
|
|
2745
|
-
] : [
|
|
2745
|
+
] : [
|
|
2746
|
+
// Let the repeated child evaluate its own data source. It returns
|
|
2747
|
+
// null when the result is empty and the no-results message is off.
|
|
2748
|
+
renderNode(
|
|
2749
|
+
node,
|
|
2750
|
+
props,
|
|
2751
|
+
props.dataitem,
|
|
2752
|
+
`replicated-${childIndex}`
|
|
2753
|
+
)
|
|
2754
|
+
];
|
|
2746
2755
|
}
|
|
2747
2756
|
return arrayResult.map(
|
|
2748
2757
|
(item, itemIndex) => renderNode(
|