dhre-ui-kit 0.0.321 → 0.0.322
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.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +2 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1148,7 +1148,7 @@ interface PropertyDetailsProps {
|
|
|
1148
1148
|
btnIcon?: React.ReactElement;
|
|
1149
1149
|
containerStyle?: ViewStyle;
|
|
1150
1150
|
onRightIconPress: () => void;
|
|
1151
|
-
|
|
1151
|
+
subTitleStyle?: ViewStyle;
|
|
1152
1152
|
propertyNumberStyle?: ViewStyle;
|
|
1153
1153
|
}
|
|
1154
1154
|
|
package/lib/index.js
CHANGED
|
@@ -4918,7 +4918,7 @@ const PropertyDetails = ({
|
|
|
4918
4918
|
hintIcon,
|
|
4919
4919
|
btnIcon,
|
|
4920
4920
|
containerStyle,
|
|
4921
|
-
|
|
4921
|
+
subTitleStyle,
|
|
4922
4922
|
propertyNumberStyle,
|
|
4923
4923
|
onRightIconPress
|
|
4924
4924
|
}) => {
|
|
@@ -4949,7 +4949,7 @@ const PropertyDetails = ({
|
|
|
4949
4949
|
{
|
|
4950
4950
|
text: subTitle,
|
|
4951
4951
|
variant: FontStyle.L1_REGULAR,
|
|
4952
|
-
style: [{ color: theme.CONTENT_PRIMARY },
|
|
4952
|
+
style: [{ color: theme.CONTENT_PRIMARY }, subTitleStyle]
|
|
4953
4953
|
}
|
|
4954
4954
|
), propertyNumber && /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: [styles$1.propertyNumber, propertyNumberStyle] }, /* @__PURE__ */ React__default["default"].createElement(
|
|
4955
4955
|
CustomTypography,
|