@popmenu/ordering-ui 0.121.0 → 0.121.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.
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  export declare type MenuFilterOption = {
3
- id: number;
3
+ id: string;
4
4
  abbr: string;
5
5
  color: string;
6
6
  name: string;
package/build/index.es.js CHANGED
@@ -912,6 +912,8 @@ var getBorder = function (theme) { return function (props) {
912
912
  }
913
913
  return borderColor;
914
914
  }; };
915
+ // using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
916
+ // any component-specific props
915
917
  makeStyles(function (theme) { return ({
916
918
  root: {
917
919
  background: getBackground(theme),
@@ -1098,6 +1100,7 @@ var useLinkStyles = makeStyles(function (theme) { return ({
1098
1100
  },
1099
1101
  }); });
1100
1102
 
1103
+ // eslint-disable-next-line react/display-name -- false positive
1101
1104
  var Link = forwardRef(function (props, ref) {
1102
1105
  var children = props.children, muiProps = __rest(props, ["children"]);
1103
1106
  var classes = useLinkStyles(props);