@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.es.js
CHANGED
|
@@ -529,10 +529,10 @@ var useTypographyStyles = makeStyles$1(function (theme) {
|
|
|
529
529
|
});
|
|
530
530
|
|
|
531
531
|
var Typography = function (props) {
|
|
532
|
-
props.weight; props.color; var restProps = __rest(props, ["weight", "color"]);
|
|
532
|
+
props.weight; props.color; var TypographyRef = props.TypographyRef, restProps = __rest(props, ["weight", "color", "TypographyRef"]);
|
|
533
533
|
var classes = useTypographyStyles(__assign({}, props));
|
|
534
534
|
var variantMapping = { subtitle1: 'p' };
|
|
535
|
-
return React__default.createElement(Typography$1, __assign({ classes: classes, variantMapping: variantMapping }, restProps));
|
|
535
|
+
return React__default.createElement(Typography$1, __assign({ classes: classes, variantMapping: variantMapping, ref: TypographyRef }, restProps));
|
|
536
536
|
};
|
|
537
537
|
Typography.displayName = 'Typography';
|
|
538
538
|
Typography.defaultProps = defaultTypographyProps;
|