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

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
@@ -8684,9 +8684,10 @@ var DivContainer = async (props) => {
8684
8684
  let response = null;
8685
8685
  let childCollectionData = null;
8686
8686
  let shouldShowNoDataMessage = props.forceNoDataMessage === true;
8687
- if (dataBindingProperties && !shouldShowNoDataMessage) {
8687
+ const dataSource = dataBindingProperties?.dataSource?.trim();
8688
+ if (dataSource && !shouldShowNoDataMessage) {
8688
8689
  const serviceClient = new ServiceClient_default(props.apiBaseUrl, props.session);
8689
- endpoint = dataBindingProperties.dataSource;
8690
+ endpoint = dataSource;
8690
8691
  {
8691
8692
  }
8692
8693
  endpoint = endpoint.replace(/\{(\w+)\}/g, (_, key) => {
package/dist/index.mjs CHANGED
@@ -2633,9 +2633,10 @@ var DivContainer = async (props) => {
2633
2633
  let response = null;
2634
2634
  let childCollectionData = null;
2635
2635
  let shouldShowNoDataMessage = props.forceNoDataMessage === true;
2636
- if (dataBindingProperties && !shouldShowNoDataMessage) {
2636
+ const dataSource = dataBindingProperties?.dataSource?.trim();
2637
+ if (dataSource && !shouldShowNoDataMessage) {
2637
2638
  const serviceClient = new ServiceClient_default(props.apiBaseUrl, props.session);
2638
- endpoint = dataBindingProperties.dataSource;
2639
+ endpoint = dataSource;
2639
2640
  {
2640
2641
  }
2641
2642
  endpoint = endpoint.replace(/\{(\w+)\}/g, (_, key) => {
package/dist/server.js CHANGED
@@ -8653,9 +8653,10 @@ var DivContainer = async (props) => {
8653
8653
  let response = null;
8654
8654
  let childCollectionData = null;
8655
8655
  let shouldShowNoDataMessage = props.forceNoDataMessage === true;
8656
- if (dataBindingProperties && !shouldShowNoDataMessage) {
8656
+ const dataSource = dataBindingProperties?.dataSource?.trim();
8657
+ if (dataSource && !shouldShowNoDataMessage) {
8657
8658
  const serviceClient = new ServiceClient_default(props.apiBaseUrl, props.session);
8658
- endpoint = dataBindingProperties.dataSource;
8659
+ endpoint = dataSource;
8659
8660
  {
8660
8661
  }
8661
8662
  endpoint = endpoint.replace(/\{(\w+)\}/g, (_, key) => {
package/dist/server.mjs CHANGED
@@ -2601,9 +2601,10 @@ var DivContainer = async (props) => {
2601
2601
  let response = null;
2602
2602
  let childCollectionData = null;
2603
2603
  let shouldShowNoDataMessage = props.forceNoDataMessage === true;
2604
- if (dataBindingProperties && !shouldShowNoDataMessage) {
2604
+ const dataSource = dataBindingProperties?.dataSource?.trim();
2605
+ if (dataSource && !shouldShowNoDataMessage) {
2605
2606
  const serviceClient = new ServiceClient_default(props.apiBaseUrl, props.session);
2606
- endpoint = dataBindingProperties.dataSource;
2607
+ endpoint = dataSource;
2607
2608
  {
2608
2609
  }
2609
2610
  endpoint = endpoint.replace(/\{(\w+)\}/g, (_, key) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clyrex-digital/clyrex-controls-dev",
3
- "version": "0.8.1-dev.20260903053106",
3
+ "version": "0.8.1-dev.20260903063823",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",