@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260326105727 → 0.8.1-dev.20260328105340

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
@@ -5133,7 +5133,10 @@ var ImageGalleryNode = (props) => {
5133
5133
  const resolveImageUrl = (imageUrl) => {
5134
5134
  if (!imageUrl) return "";
5135
5135
  if (imageUrl.startsWith("http")) return imageUrl;
5136
- return AssetUtility_default.getAssetFullPath(props.assetBaseUrl, imageUrl);
5136
+ return AssetUtility_default.resolveUrl(
5137
+ props.assetBaseUrl,
5138
+ imageUrl
5139
+ );
5137
5140
  };
5138
5141
  const resolvePosterUrl = (posterUrl) => {
5139
5142
  if (!posterUrl) return void 0;
package/dist/index.mjs CHANGED
@@ -4165,7 +4165,10 @@ var ImageGalleryNode = (props) => {
4165
4165
  const resolveImageUrl = (imageUrl) => {
4166
4166
  if (!imageUrl) return "";
4167
4167
  if (imageUrl.startsWith("http")) return imageUrl;
4168
- return AssetUtility_default.getAssetFullPath(props.assetBaseUrl, imageUrl);
4168
+ return AssetUtility_default.resolveUrl(
4169
+ props.assetBaseUrl,
4170
+ imageUrl
4171
+ );
4169
4172
  };
4170
4173
  const resolvePosterUrl = (posterUrl) => {
4171
4174
  if (!posterUrl) return void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acoustte-digital-services/digitalstore-controls-dev",
3
- "version": "0.8.1-dev.20260326105727",
3
+ "version": "0.8.1-dev.20260328105340",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",