@popmenu/dashboard 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.es.js +2 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -572,10 +572,10 @@ var useTypographyStyles = styles.makeStyles(function (theme) {
|
|
|
572
572
|
});
|
|
573
573
|
|
|
574
574
|
var Typography = function (props) {
|
|
575
|
-
props.weight; props.color; var restProps = __rest(props, ["weight", "color"]);
|
|
575
|
+
props.weight; props.color; var TypographyRef = props.TypographyRef, restProps = __rest(props, ["weight", "color", "TypographyRef"]);
|
|
576
576
|
var classes = useTypographyStyles(__assign({}, props));
|
|
577
577
|
var variantMapping = { subtitle1: 'p' };
|
|
578
|
-
return React__default['default'].createElement(core.Typography, __assign({ classes: classes, variantMapping: variantMapping }, restProps));
|
|
578
|
+
return React__default['default'].createElement(core.Typography, __assign({ classes: classes, variantMapping: variantMapping, ref: TypographyRef }, restProps));
|
|
579
579
|
};
|
|
580
580
|
Typography.displayName = 'Typography';
|
|
581
581
|
Typography.defaultProps = defaultTypographyProps;
|