dhre-ui-kit 0.0.320 → 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 +2 -0
- package/lib/index.js +4 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -4881,6 +4881,8 @@ const PropertyDetails = ({
|
|
|
4881
4881
|
hintIcon,
|
|
4882
4882
|
btnIcon,
|
|
4883
4883
|
containerStyle,
|
|
4884
|
+
subTitleStyle,
|
|
4885
|
+
propertyNumberStyle,
|
|
4884
4886
|
onRightIconPress
|
|
4885
4887
|
}) => {
|
|
4886
4888
|
const { theme } = useTheme();
|
|
@@ -4910,9 +4912,9 @@ const PropertyDetails = ({
|
|
|
4910
4912
|
{
|
|
4911
4913
|
text: subTitle,
|
|
4912
4914
|
variant: FontStyle.L1_REGULAR,
|
|
4913
|
-
style: { color: theme.CONTENT_PRIMARY }
|
|
4915
|
+
style: [{ color: theme.CONTENT_PRIMARY }, subTitleStyle]
|
|
4914
4916
|
}
|
|
4915
|
-
), propertyNumber && /* @__PURE__ */ React.createElement(View, { style: styles$1.propertyNumber }, /* @__PURE__ */ React.createElement(
|
|
4917
|
+
), propertyNumber && /* @__PURE__ */ React.createElement(View, { style: [styles$1.propertyNumber, propertyNumberStyle] }, /* @__PURE__ */ React.createElement(
|
|
4916
4918
|
CustomTypography,
|
|
4917
4919
|
{
|
|
4918
4920
|
text: propertyNumber,
|