@popmenu/audio-player 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.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.js
CHANGED
|
@@ -634,6 +634,8 @@ var getBorder = function (theme) { return function (props) {
|
|
|
634
634
|
}
|
|
635
635
|
return borderColor;
|
|
636
636
|
}; };
|
|
637
|
+
// using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
|
|
638
|
+
// any component-specific props
|
|
637
639
|
styles.makeStyles(function (theme) { return ({
|
|
638
640
|
root: {
|
|
639
641
|
background: getBackground(theme),
|
|
@@ -820,6 +822,7 @@ var useLinkStyles = styles.makeStyles(function (theme) { return ({
|
|
|
820
822
|
},
|
|
821
823
|
}); });
|
|
822
824
|
|
|
825
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
823
826
|
var Link = React.forwardRef(function (props, ref) {
|
|
824
827
|
var children = props.children, muiProps = __rest(props, ["children"]);
|
|
825
828
|
var classes = useLinkStyles(props);
|