@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260901054125 → 0.8.1-dev.20260901061310
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 +2 -2
- package/dist/index.mjs +2 -2
- package/dist/server.js +2 -2
- package/dist/server.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8661,8 +8661,8 @@ var DivContainer = async (props) => {
|
|
|
8661
8661
|
}
|
|
8662
8662
|
const effectiveResult = dataBindingProperties.childCollectionName ? childCollectionData : result;
|
|
8663
8663
|
const hasNoData = effectiveResult === null || effectiveResult === void 0 || typeof effectiveResult === "string" && effectiveResult.trim() === "" || Array.isArray(effectiveResult) && effectiveResult.length === 0 || typeof effectiveResult === "object" && !Array.isArray(effectiveResult) && Object.keys(effectiveResult).length === 0;
|
|
8664
|
-
if (hasNoData &&
|
|
8665
|
-
|
|
8664
|
+
if (hasNoData && dataBindingProperties.showNoResultsMessage !== true) {
|
|
8665
|
+
return null;
|
|
8666
8666
|
}
|
|
8667
8667
|
}
|
|
8668
8668
|
const cssResult = generateCssString(
|
package/dist/index.mjs
CHANGED
|
@@ -2657,8 +2657,8 @@ var DivContainer = async (props) => {
|
|
|
2657
2657
|
}
|
|
2658
2658
|
const effectiveResult = dataBindingProperties.childCollectionName ? childCollectionData : result;
|
|
2659
2659
|
const hasNoData = effectiveResult === null || effectiveResult === void 0 || typeof effectiveResult === "string" && effectiveResult.trim() === "" || Array.isArray(effectiveResult) && effectiveResult.length === 0 || typeof effectiveResult === "object" && !Array.isArray(effectiveResult) && Object.keys(effectiveResult).length === 0;
|
|
2660
|
-
if (hasNoData &&
|
|
2661
|
-
|
|
2660
|
+
if (hasNoData && dataBindingProperties.showNoResultsMessage !== true) {
|
|
2661
|
+
return null;
|
|
2662
2662
|
}
|
|
2663
2663
|
}
|
|
2664
2664
|
const cssResult = generateCssString(
|
package/dist/server.js
CHANGED
|
@@ -8630,8 +8630,8 @@ var DivContainer = async (props) => {
|
|
|
8630
8630
|
}
|
|
8631
8631
|
const effectiveResult = dataBindingProperties.childCollectionName ? childCollectionData : result;
|
|
8632
8632
|
const hasNoData = effectiveResult === null || effectiveResult === void 0 || typeof effectiveResult === "string" && effectiveResult.trim() === "" || Array.isArray(effectiveResult) && effectiveResult.length === 0 || typeof effectiveResult === "object" && !Array.isArray(effectiveResult) && Object.keys(effectiveResult).length === 0;
|
|
8633
|
-
if (hasNoData &&
|
|
8634
|
-
|
|
8633
|
+
if (hasNoData && dataBindingProperties.showNoResultsMessage !== true) {
|
|
8634
|
+
return null;
|
|
8635
8635
|
}
|
|
8636
8636
|
}
|
|
8637
8637
|
const cssResult = generateCssString(
|
package/dist/server.mjs
CHANGED
|
@@ -2625,8 +2625,8 @@ var DivContainer = async (props) => {
|
|
|
2625
2625
|
}
|
|
2626
2626
|
const effectiveResult = dataBindingProperties.childCollectionName ? childCollectionData : result;
|
|
2627
2627
|
const hasNoData = effectiveResult === null || effectiveResult === void 0 || typeof effectiveResult === "string" && effectiveResult.trim() === "" || Array.isArray(effectiveResult) && effectiveResult.length === 0 || typeof effectiveResult === "object" && !Array.isArray(effectiveResult) && Object.keys(effectiveResult).length === 0;
|
|
2628
|
-
if (hasNoData &&
|
|
2629
|
-
|
|
2628
|
+
if (hasNoData && dataBindingProperties.showNoResultsMessage !== true) {
|
|
2629
|
+
return null;
|
|
2630
2630
|
}
|
|
2631
2631
|
}
|
|
2632
2632
|
const cssResult = generateCssString(
|