@popmenu/admin-ui 0.46.0 → 0.48.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 CHANGED
@@ -423,7 +423,7 @@ Checkbox.displayName = 'Checkbox';
423
423
 
424
424
  var getBackground$1 = function (theme) { return function (props) {
425
425
  var variant = props.variant, severity = props.severity;
426
- var background;
426
+ var background = theme.palette.grey[100];
427
427
  var backgrounds = {
428
428
  outlined: 'none',
429
429
  error: 'error.main',
@@ -492,6 +492,9 @@ makeStyles$1(function (theme) { return ({
492
492
  height: theme.spacing(2),
493
493
  width: theme.spacing(2),
494
494
  },
495
+ deleteIcon: {
496
+ color: theme.palette.grey[500],
497
+ },
495
498
  }); });
496
499
 
497
500
  var defaultTypographyProps = {
@@ -1328,10 +1331,7 @@ var FeatureIntro = function (props) {
1328
1331
  var _a = secondaryAction || {}, secondaryActionLabel = _a.label, secondaryActionProps = __rest$1(_a, ["label"]);
1329
1332
  var classes = useFeatureIntroStyles(props);
1330
1333
  var validImage = (image === null || image === void 0 ? void 0 : image.src) && (image === null || image === void 0 ? void 0 : image.alt);
1331
- return (
1332
- /** Needed to use extra ts syntax to trick Box into accepting ref, issue to be fixed in MUI v5 */
1333
- /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
1334
- React__default.createElement(Box, { className: classes.root, padding: { xs: 4, sm: 8 }, flexDirection: { xs: 'column-reverse', sm: 'row' }, display: "flex", justifyContent: "center", alignItems: "center" },
1334
+ return (React__default.createElement(Box, { className: classes.root, padding: { xs: 4, sm: 8 }, flexDirection: { xs: 'column-reverse', sm: 'row' }, display: "flex", justifyContent: "center", alignItems: "center" },
1335
1335
  React__default.createElement(Box, { display: "flex", flexDirection: "column", width: { xs: '100%', sm: '50%' }, alignItems: { xs: 'center', sm: 'unset' } },
1336
1336
  React__default.createElement(Box, { textAlign: { xs: 'center', sm: 'start' }, marginBottom: 2 },
1337
1337
  React__default.createElement(Typography, { align: "inherit", variant: "h4" }, title)),