dhre-ui-kit 0.0.216 → 0.0.218
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/lib/index.js +7 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +7 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1670,6 +1670,10 @@ var styles$p = reactNative.StyleSheet.create({
|
|
|
1670
1670
|
alignItems: "center",
|
|
1671
1671
|
justifyContent: "center",
|
|
1672
1672
|
borderWidth: 1
|
|
1673
|
+
},
|
|
1674
|
+
textStyle: {
|
|
1675
|
+
alignSelf: "center",
|
|
1676
|
+
textAlign: "center"
|
|
1673
1677
|
}
|
|
1674
1678
|
});
|
|
1675
1679
|
|
|
@@ -1713,6 +1717,7 @@ const Tabs = ({
|
|
|
1713
1717
|
{
|
|
1714
1718
|
variant: FontStyle.L2_REGULAR,
|
|
1715
1719
|
style: {
|
|
1720
|
+
...styles$p.textStyle,
|
|
1716
1721
|
color: isSelected ? theme.CONTENT_INVERTED : theme.CONTENT_SECONDRY
|
|
1717
1722
|
},
|
|
1718
1723
|
text: title
|
|
@@ -4674,9 +4679,9 @@ const PropertyDetails = ({
|
|
|
4674
4679
|
{
|
|
4675
4680
|
style: {
|
|
4676
4681
|
...styles$1.container,
|
|
4677
|
-
...containerStyle,
|
|
4678
4682
|
backgroundColor: theme.SURFACE_SECONDARY,
|
|
4679
|
-
borderColor: theme.BORDER_SEPERATOR_HEADER
|
|
4683
|
+
borderColor: theme.BORDER_SEPERATOR_HEADER,
|
|
4684
|
+
...containerStyle
|
|
4680
4685
|
}
|
|
4681
4686
|
},
|
|
4682
4687
|
React__default["default"].cloneElement(icon, {
|