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 +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +3 -1
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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;
|