@pie-element/math-templated 3.3.2-next.13 → 3.3.2-next.16
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/configure/package.json +1 -1
- package/controller/package.json +1 -1
- package/module/configure.js +7 -2
- package/module/element.js +157 -105
- package/module/print.js +157 -105
- package/package.json +3 -3
package/configure/package.json
CHANGED
package/controller/package.json
CHANGED
package/module/configure.js
CHANGED
|
@@ -59960,7 +59960,7 @@ const {omit: require$$13$1} = _dll_lodash;
|
|
|
59960
59960
|
key: "render",
|
|
59961
59961
|
value: function render() {
|
|
59962
59962
|
var _this$props = this.props, children = _this$props.children, className = _this$props.className, classes = _this$props.classes, fontSizeFactor = _this$props.fontSizeFactor, rest = (0, _objectWithoutProperties2["default"])(_this$props, _excluded);
|
|
59963
|
-
var finalClass = (0, _classnames["default"])(className, classes.extraCSSRules);
|
|
59963
|
+
var finalClass = (0, _classnames["default"])(className, classes.extraCSSRules, classes.uiLayoutContainer);
|
|
59964
59964
|
var restProps = (0, _omit["default"])(rest, 'extraCSSRules');
|
|
59965
59965
|
return _react["default"].createElement("div", (0, _extends2["default"])({
|
|
59966
59966
|
className: finalClass
|
|
@@ -59986,7 +59986,12 @@ const {omit: require$$13$1} = _dll_lodash;
|
|
|
59986
59986
|
fontSizeFactor: 1
|
|
59987
59987
|
});
|
|
59988
59988
|
var styles = {
|
|
59989
|
-
extraCSSRules: {}
|
|
59989
|
+
extraCSSRules: {},
|
|
59990
|
+
uiLayoutContainer: {
|
|
59991
|
+
'& table, th, td': {
|
|
59992
|
+
fontSize: 'inherit'
|
|
59993
|
+
}
|
|
59994
|
+
}
|
|
59990
59995
|
};
|
|
59991
59996
|
var Styled = (0, _styles.withStyles)(styles)(UiLayout);
|
|
59992
59997
|
var _default = Styled;
|