@movable/ui 3.8.1 → 3.8.2

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/lib/index.mjs CHANGED
@@ -24484,9 +24484,18 @@ const AE = {
24484
24484
  }
24485
24485
  }
24486
24486
  },
24487
+ // ButtonBase has `disableRipple: true`. As per the docs: https://mui.com/material-ui/api/button-base/#props
24488
+ // disable Ripple loses a focus state so adding it back in manually. IconButtons only have default and primary in design library
24487
24489
  MuiIconButton: {
24488
- defaultProps: {
24489
- disableRipple: !0
24490
+ styleOverrides: {
24491
+ root: {
24492
+ "&:focus": {
24493
+ backgroundColor: B.action.focus
24494
+ },
24495
+ "&.MuiIconButton-colorPrimary:focus": {
24496
+ backgroundColor: B.primary.focus
24497
+ }
24498
+ }
24490
24499
  }
24491
24500
  },
24492
24501
  MuiAccordion: {