dhre-ui-kit 0.0.192 → 0.0.193
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 +3 -3
- 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
|
@@ -1086,9 +1086,9 @@ interface PropertyDetailsProps {
|
|
|
1086
1086
|
brandIcon: React.ReactElement;
|
|
1087
1087
|
title: string;
|
|
1088
1088
|
subTitle: string;
|
|
1089
|
-
propertyNumber
|
|
1090
|
-
hintIcon
|
|
1091
|
-
btnIcon
|
|
1089
|
+
propertyNumber?: string;
|
|
1090
|
+
hintIcon?: React.ReactElement;
|
|
1091
|
+
btnIcon?: React.ReactElement;
|
|
1092
1092
|
containerStyle?: ViewStyle;
|
|
1093
1093
|
onRightIconPress: () => void;
|
|
1094
1094
|
}
|
package/lib/index.js
CHANGED
|
@@ -4638,7 +4638,7 @@ const PropertyDetails = ({
|
|
|
4638
4638
|
variant: FontStyle.L1_REGULAR,
|
|
4639
4639
|
style: { color: theme.CONTENT_PRIMARY }
|
|
4640
4640
|
}
|
|
4641
|
-
), /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles.propertyNumber }, /* @__PURE__ */ React__default["default"].createElement(
|
|
4641
|
+
), propertyNumber && /* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles.propertyNumber }, /* @__PURE__ */ React__default["default"].createElement(
|
|
4642
4642
|
CustomTypography,
|
|
4643
4643
|
{
|
|
4644
4644
|
text: propertyNumber,
|
|
@@ -4648,7 +4648,7 @@ const PropertyDetails = ({
|
|
|
4648
4648
|
}
|
|
4649
4649
|
}
|
|
4650
4650
|
), hintIcon)),
|
|
4651
|
-
/* @__PURE__ */ React__default["default"].createElement(
|
|
4651
|
+
btnIcon && /* @__PURE__ */ React__default["default"].createElement(
|
|
4652
4652
|
CustomIcon,
|
|
4653
4653
|
{
|
|
4654
4654
|
icon: btnIcon,
|