@iobroker/adapter-react-v5 6.0.2 → 6.0.3
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/Components/TabContent.js +1 -1
- package/README.md +1 -1
- package/package.json +1 -1
package/Components/TabContent.js
CHANGED
|
@@ -16,6 +16,6 @@ const styles = {
|
|
|
16
16
|
},
|
|
17
17
|
};
|
|
18
18
|
function TabContent(props) {
|
|
19
|
-
return react_1.default.createElement(material_1.Grid, { item: true, sx: Object.assign(Object.assign({}, props.style), (props.overflow === 'auto' ? styles.overflowAuto : undefined)) }, props.children);
|
|
19
|
+
return react_1.default.createElement(material_1.Grid, { item: true, sx: Object.assign(Object.assign(Object.assign({}, styles.root), ((props === null || props === void 0 ? void 0 : props.style) || undefined)), (props.overflow === 'auto' ? styles.overflowAuto : undefined)) }, props.children);
|
|
20
20
|
}
|
|
21
21
|
exports.default = TabContent;
|
package/README.md
CHANGED
|
@@ -771,7 +771,7 @@ The best practice is to replace `padding` with `p` and `margin` with `m`, so you
|
|
|
771
771
|
-->
|
|
772
772
|
|
|
773
773
|
## Changelog
|
|
774
|
-
### 6.0.
|
|
774
|
+
### 6.0.3 (2024-06-21)
|
|
775
775
|
* (bluefox) Removed the usage of `withStyles` in favor of `sx` and `style` properties (see [Migration from v5 to v6](#migration-from-v5-to-v6)
|
|
776
776
|
* (bluefox) (BREAKING) Higher version of `@mui/material` (5.15.20) is used
|
|
777
777
|
|