@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260402061511 → 0.8.1-dev.20260402063318
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 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5128,9 +5128,8 @@ var parseMaybeNumber = (value) => {
|
|
|
5128
5128
|
};
|
|
5129
5129
|
var shouldRenderForDevice = (imageDevice, currentDevice) => {
|
|
5130
5130
|
if (!imageDevice) return true;
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
return normalizedImageDevice === normalizedCurrentDevice;
|
|
5131
|
+
if (imageDevice === currentDevice) return true;
|
|
5132
|
+
return false;
|
|
5134
5133
|
};
|
|
5135
5134
|
var ImageGalleryNode = (props) => {
|
|
5136
5135
|
const resolveImageUrl = (imageUrl) => {
|
package/dist/index.mjs
CHANGED
|
@@ -4160,9 +4160,8 @@ var parseMaybeNumber = (value) => {
|
|
|
4160
4160
|
};
|
|
4161
4161
|
var shouldRenderForDevice = (imageDevice, currentDevice) => {
|
|
4162
4162
|
if (!imageDevice) return true;
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
return normalizedImageDevice === normalizedCurrentDevice;
|
|
4163
|
+
if (imageDevice === currentDevice) return true;
|
|
4164
|
+
return false;
|
|
4166
4165
|
};
|
|
4167
4166
|
var ImageGalleryNode = (props) => {
|
|
4168
4167
|
const resolveImageUrl = (imageUrl) => {
|
package/package.json
CHANGED