@popmenu/audio-player 0.90.0 → 0.91.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.js CHANGED
@@ -721,10 +721,10 @@ var useTypographyStyles = styles.makeStyles(function (theme) {
721
721
  });
722
722
 
723
723
  var Typography = function (props) {
724
- props.weight; props.color; var restProps = __rest(props, ["weight", "color"]);
724
+ props.weight; props.color; var TypographyRef = props.TypographyRef, restProps = __rest(props, ["weight", "color", "TypographyRef"]);
725
725
  var classes = useTypographyStyles(__assign({}, props));
726
726
  var variantMapping = { subtitle1: 'p' };
727
- return React__default['default'].createElement(core.Typography, __assign({ classes: classes, variantMapping: variantMapping }, restProps));
727
+ return React__default['default'].createElement(core.Typography, __assign({ classes: classes, variantMapping: variantMapping, ref: TypographyRef }, restProps));
728
728
  };
729
729
  Typography.displayName = 'Typography';
730
730
  Typography.defaultProps = defaultTypographyProps;