@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.
package/build/index.js
CHANGED
|
@@ -949,6 +949,8 @@ var getBorder = function (theme) { return function (props) {
|
|
|
949
949
|
}
|
|
950
950
|
return borderColor;
|
|
951
951
|
}; };
|
|
952
|
+
// using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
|
|
953
|
+
// any component-specific props
|
|
952
954
|
styles.makeStyles(function (theme) { return ({
|
|
953
955
|
root: {
|
|
954
956
|
background: getBackground(theme),
|
|
@@ -1135,6 +1137,7 @@ var useLinkStyles = styles.makeStyles(function (theme) { return ({
|
|
|
1135
1137
|
},
|
|
1136
1138
|
}); });
|
|
1137
1139
|
|
|
1140
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
1138
1141
|
var Link = React.forwardRef(function (props, ref) {
|
|
1139
1142
|
var children = props.children, muiProps = __rest(props, ["children"]);
|
|
1140
1143
|
var classes = useLinkStyles(props);
|