@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260325165007 → 0.8.1-dev.20260326054115
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/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -568,7 +568,7 @@ var ViewControl = import_react11.default.forwardRef(
|
|
|
568
568
|
// [ViewControlTypes.booleanView]: BooleanView
|
|
569
569
|
};
|
|
570
570
|
const SelectedControlComponent = props.controlType ? ControlComponents[props.controlType] : void 0;
|
|
571
|
-
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_react11.default.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SelectedControlComponent, { ...props }) : "Control not found" });
|
|
571
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_react11.default.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SelectedControlComponent, { ...props }) : "Control not found:" + props.controlType });
|
|
572
572
|
}
|
|
573
573
|
);
|
|
574
574
|
ViewControl.displayName = "ViewControl";
|
|
@@ -4880,7 +4880,7 @@ var DivContainer = async (props) => {
|
|
|
4880
4880
|
const mobileStyles = props.node.mobileCssProperties;
|
|
4881
4881
|
const dataBindingProperties = props.node.dataBinding;
|
|
4882
4882
|
const updatedStyles = convertKeysToCamelCase(styles);
|
|
4883
|
-
const background = generateCompleteBackgroundString(props.node.backgroundLayers, props.
|
|
4883
|
+
const background = generateCompleteBackgroundString(props.node.backgroundLayers, props.assetBaseUrl);
|
|
4884
4884
|
let containerPaddingClass = "";
|
|
4885
4885
|
if (props.node.containerPadding == "small") {
|
|
4886
4886
|
containerPaddingClass = "container-small";
|
package/dist/index.mjs
CHANGED
|
@@ -217,7 +217,7 @@ var ViewControl = React11.forwardRef(
|
|
|
217
217
|
// [ViewControlTypes.booleanView]: BooleanView
|
|
218
218
|
};
|
|
219
219
|
const SelectedControlComponent = props.controlType ? ControlComponents[props.controlType] : void 0;
|
|
220
|
-
return /* @__PURE__ */ jsx11(React11.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ jsx11(SelectedControlComponent, { ...props }) : "Control not found" });
|
|
220
|
+
return /* @__PURE__ */ jsx11(React11.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ jsx11(SelectedControlComponent, { ...props }) : "Control not found:" + props.controlType });
|
|
221
221
|
}
|
|
222
222
|
);
|
|
223
223
|
ViewControl.displayName = "ViewControl";
|
|
@@ -4536,7 +4536,7 @@ var DivContainer = async (props) => {
|
|
|
4536
4536
|
const mobileStyles = props.node.mobileCssProperties;
|
|
4537
4537
|
const dataBindingProperties = props.node.dataBinding;
|
|
4538
4538
|
const updatedStyles = convertKeysToCamelCase(styles);
|
|
4539
|
-
const background = generateCompleteBackgroundString(props.node.backgroundLayers, props.
|
|
4539
|
+
const background = generateCompleteBackgroundString(props.node.backgroundLayers, props.assetBaseUrl);
|
|
4540
4540
|
let containerPaddingClass = "";
|
|
4541
4541
|
if (props.node.containerPadding == "small") {
|
|
4542
4542
|
containerPaddingClass = "container-small";
|
package/package.json
CHANGED