@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260702085048 → 0.8.1-dev.20260704091052

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
@@ -6309,9 +6309,15 @@ ${cssRules.join(
6309
6309
  }`;
6310
6310
  }
6311
6311
  }
6312
+ const updatedTabletStyles = convertKeysToCamelCase(
6313
+ tabletStylesObject
6314
+ );
6315
+ const updatedMobileStyles = convertKeysToCamelCase(
6316
+ mobileStylesObject
6317
+ );
6312
6318
  if (hasGridProperties) {
6313
- const tabletHasGrid = tabletStylesObject?.gridTemplateColumns !== void 0;
6314
- const mobileHasGrid = mobileStylesObject?.gridTemplateColumns !== void 0;
6319
+ const tabletHasGrid = tabletStylesObject?.gridTemplateColumns !== void 0 || tabletStylesObject?.["grid-template-columns"] !== void 0;
6320
+ const mobileHasGrid = mobileStylesObject?.gridTemplateColumns !== void 0 || mobileStylesObject?.["grid-template-columns"] !== void 0;
6315
6321
  if (!tabletHasGrid) {
6316
6322
  css += `
6317
6323
  @media (max-width: 768px) {
package/dist/index.mjs CHANGED
@@ -4703,9 +4703,15 @@ ${cssRules.join(
4703
4703
  }`;
4704
4704
  }
4705
4705
  }
4706
+ const updatedTabletStyles = convertKeysToCamelCase(
4707
+ tabletStylesObject
4708
+ );
4709
+ const updatedMobileStyles = convertKeysToCamelCase(
4710
+ mobileStylesObject
4711
+ );
4706
4712
  if (hasGridProperties) {
4707
- const tabletHasGrid = tabletStylesObject?.gridTemplateColumns !== void 0;
4708
- const mobileHasGrid = mobileStylesObject?.gridTemplateColumns !== void 0;
4713
+ const tabletHasGrid = tabletStylesObject?.gridTemplateColumns !== void 0 || tabletStylesObject?.["grid-template-columns"] !== void 0;
4714
+ const mobileHasGrid = mobileStylesObject?.gridTemplateColumns !== void 0 || mobileStylesObject?.["grid-template-columns"] !== void 0;
4709
4715
  if (!tabletHasGrid) {
4710
4716
  css += `
4711
4717
  @media (max-width: 768px) {
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.20260702085048",
3
+ "version": "0.8.1-dev.20260704091052",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",