@popmenu/dashboard 0.120.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.es.js +3 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +3 -0
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.es.js
CHANGED
|
@@ -442,6 +442,8 @@ var getBorder = function (theme) { return function (props) {
|
|
|
442
442
|
}
|
|
443
443
|
return borderColor;
|
|
444
444
|
}; };
|
|
445
|
+
// using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
|
|
446
|
+
// any component-specific props
|
|
445
447
|
makeStyles$1(function (theme) { return ({
|
|
446
448
|
root: {
|
|
447
449
|
background: getBackground(theme),
|
|
@@ -628,6 +630,7 @@ var useLinkStyles = makeStyles$1(function (theme) { return ({
|
|
|
628
630
|
},
|
|
629
631
|
}); });
|
|
630
632
|
|
|
633
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
631
634
|
var Link = forwardRef(function (props, ref) {
|
|
632
635
|
var children = props.children, muiProps = __rest(props, ["children"]);
|
|
633
636
|
var classes = useLinkStyles(props);
|