@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 CHANGED
@@ -5128,9 +5128,8 @@ var parseMaybeNumber = (value) => {
5128
5128
  };
5129
5129
  var shouldRenderForDevice = (imageDevice, currentDevice) => {
5130
5130
  if (!imageDevice) return true;
5131
- const normalizedImageDevice = imageDevice.toString().toLowerCase();
5132
- const normalizedCurrentDevice = currentDevice.toString().toLowerCase();
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
- const normalizedImageDevice = imageDevice.toString().toLowerCase();
4164
- const normalizedCurrentDevice = currentDevice.toString().toLowerCase();
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acoustte-digital-services/digitalstore-controls-dev",
3
- "version": "0.8.1-dev.20260402061511",
3
+ "version": "0.8.1-dev.20260402063318",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",