@superdispatch/ui 0.38.0 → 0.39.0
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-node/index.js +8 -1
- package/dist-node/index.js.map +1 -1
- package/dist-src/Image/Image.js +17 -0
- package/dist-src/LightDark/LightDark.js +12 -0
- package/dist-src/autocomplete/AutocompleteOverrides.js +8 -1
- package/dist-src/icon-button/IconButtonOverrides.js +2 -1
- package/dist-web/index.js +8 -1
- package/dist-web/index.js.map +1 -1
- package/package.json +2 -2
package/dist-node/index.js
CHANGED
|
@@ -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)
|