@superdispatch/ui 0.38.0 → 0.38.1

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.
@@ -2627,6 +2627,7 @@ function overrideAppBar(theme) {
2627
2627
 
2628
2628
  function overrideAutocomplete(theme) {
2629
2629
  var sm = theme.breakpoints.up('sm');
2630
+ var color = theme.palette.type === 'dark' ? core.alpha(exports.Color.White, 0.08) : exports.ColorDynamic.Silver200;
2630
2631
 
2631
2632
  // Remove `Object.assign` after official release of `Autocomplete`.
2632
2633
  Object.assign(theme.props, {
@@ -2685,6 +2686,11 @@ function overrideAutocomplete(theme) {
2685
2686
  }
2686
2687
  }
2687
2688
  }
2689
+ },
2690
+ option: {
2691
+ '&[data-focus="true"]': {
2692
+ backgroundColor: color
2693
+ }
2688
2694
  }
2689
2695
  }
2690
2696
  });
@@ -3211,7 +3217,8 @@ function overrideIconButton(theme) {
3211
3217
  },
3212
3218
  '&:focus': {
3213
3219
  backgroundColor: exports.ColorDynamic.Blue50
3214
- }
3220
+ },
3221
+ color: exports.ColorDynamic.Blue500
3215
3222
  },
3216
3223
  edgeEnd: {
3217
3224
  marginRight: theme.spacing(-1)