@popmenu/common-ui 0.121.0 → 0.122.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.js CHANGED
@@ -682,6 +682,8 @@ var getBorder = function (theme) { return function (props) {
682
682
  }
683
683
  return borderColor;
684
684
  }; };
685
+ // using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
686
+ // any component-specific props
685
687
  var useChipStyles = styles.makeStyles(function (theme) { return ({
686
688
  root: {
687
689
  background: getBackground(theme),
@@ -929,6 +931,7 @@ var useLinkStyles = styles.makeStyles(function (theme) { return ({
929
931
  },
930
932
  }); });
931
933
 
934
+ // eslint-disable-next-line react/display-name -- false positive
932
935
  var Link = React.forwardRef(function (props, ref) {
933
936
  var children = props.children, muiProps = __rest(props, ["children"]);
934
937
  var classes = useLinkStyles(props);