@popmenu/dashboard 0.46.0 → 0.47.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/build/index.es.js +4 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +4 -1
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.es.js
CHANGED
|
@@ -371,7 +371,7 @@ Checkbox.displayName = 'Checkbox';
|
|
|
371
371
|
|
|
372
372
|
var getBackground = function (theme) { return function (props) {
|
|
373
373
|
var variant = props.variant, severity = props.severity;
|
|
374
|
-
var background;
|
|
374
|
+
var background = theme.palette.grey[100];
|
|
375
375
|
var backgrounds = {
|
|
376
376
|
outlined: 'none',
|
|
377
377
|
error: 'error.main',
|
|
@@ -440,6 +440,9 @@ makeStyles$1(function (theme) { return ({
|
|
|
440
440
|
height: theme.spacing(2),
|
|
441
441
|
width: theme.spacing(2),
|
|
442
442
|
},
|
|
443
|
+
deleteIcon: {
|
|
444
|
+
color: theme.palette.grey[500],
|
|
445
|
+
},
|
|
443
446
|
}); });
|
|
444
447
|
|
|
445
448
|
var defaultTypographyProps = {
|