@popmenu/admin-ui 0.116.0 → 0.116.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/build/index.es.js CHANGED
@@ -1985,6 +1985,12 @@ var useStyles = makeStyles(function (theme) { return ({
1985
1985
  marginRight: theme.spacing(4),
1986
1986
  cursor: 'pointer',
1987
1987
  },
1988
+ body: {
1989
+ paddingTop: '4px',
1990
+ },
1991
+ listItemText: {
1992
+ marginRight: '32px',
1993
+ },
1988
1994
  }); });
1989
1995
  /**
1990
1996
  * TODO
@@ -1997,10 +2003,10 @@ var StandardListItem = function (props) {
1997
2003
  return (React__default.createElement(ListItem, __assign$1({ button: Boolean(onClick), onClick: function (e) { return onClick && onClick(e, props); } }, restProps),
1998
2004
  image && (React__default.createElement(ListItemAvatar, null,
1999
2005
  React__default.createElement(Avatar, { src: image.src, alt: image.alt }, image.Icon && React__default.createElement(Icon, { icon: image.Icon })))),
2000
- React__default.createElement(ListItemText, { disableTypography: true },
2006
+ React__default.createElement(ListItemText, { disableTypography: true, className: classes.listItemText },
2001
2007
  React__default.createElement(Typography, { variant: "h6" }, title),
2002
2008
  meta && (React__default.createElement(Typography, { variant: "body2", color: "secondary.light" }, meta)),
2003
- body && (React__default.createElement(Typography, { variant: "body2", color: "grey.700" }, body))),
2009
+ body && (React__default.createElement(Typography, { variant: "body2", color: "grey.700", className: classes.body }, body))),
2004
2010
  status && (React__default.createElement(Chip, { classes: { root: classes.chipRoot }, icon: status.Icon && React__default.createElement(Icon, { icon: status.Icon }), label: status.text })),
2005
2011
  secondaryAction && (React__default.createElement(ListItemSecondaryAction, null,
2006
2012
  React__default.createElement(IconButton$1, { style: { color: 'black' }, "aria-label": secondaryAction['aria-label'], onClick: function (e) { return secondaryAction.onClick(e, props); } },