@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260325165007 → 0.8.1-dev.20260326053312
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -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
|
@@ -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