react-magma-dom 4.11.0-next.5 → 4.11.0-next.6

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/esm/index.js CHANGED
@@ -3430,7 +3430,9 @@ function buildAIActiveColor(initialProps) {
3430
3430
  return props.theme.colors.neutral100;
3431
3431
  }
3432
3432
  function buildBoxShadow(props) {
3433
- return "0 1px 6px " + curriedTransparentize(0.5, props.theme.colors.primary400);
3433
+ if (!props.disabled) {
3434
+ return props.isInverse ? "0 2px 6px 0 " + curriedTransparentize(0.82, props.theme.colors.neutral900) : "0 1px 6px " + curriedTransparentize(0.5, props.theme.colors.primary400);
3435
+ }
3434
3436
  }
3435
3437
 
3436
3438
  var _templateObject;