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.
@@ -2399,7 +2399,9 @@ function buildAIActiveColor(initialProps) {
2399
2399
  return props.theme.colors.neutral100;
2400
2400
  }
2401
2401
  function buildBoxShadow(props) {
2402
- return "0 1px 6px " + polished.transparentize(0.5, props.theme.colors.primary400);
2402
+ if (!props.disabled) {
2403
+ return props.isInverse ? "0 2px 6px 0 " + polished.transparentize(0.82, props.theme.colors.neutral900) : "0 1px 6px " + polished.transparentize(0.5, props.theme.colors.primary400);
2404
+ }
2403
2405
  }
2404
2406
 
2405
2407
  var _templateObject;