@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.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);
|