dhre-ui-kit 0.0.177 → 0.0.178

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 CHANGED
@@ -1083,6 +1083,7 @@ interface PropertyDetailsProps {
1083
1083
  propertyNumber: string;
1084
1084
  hintIcon: React.ReactElement;
1085
1085
  btnIcon: React.ReactElement;
1086
+ containerStyle?: ViewStyle;
1086
1087
  onRightIconPress: () => void;
1087
1088
  }
1088
1089
 
package/lib/index.js CHANGED
@@ -4516,6 +4516,7 @@ const PropertyDetails = ({
4516
4516
  propertyNumber,
4517
4517
  hintIcon,
4518
4518
  btnIcon,
4519
+ containerStyle,
4519
4520
  onRightIconPress
4520
4521
  }) => {
4521
4522
  const { theme } = useTheme();
@@ -4524,6 +4525,7 @@ const PropertyDetails = ({
4524
4525
  {
4525
4526
  style: {
4526
4527
  ...styles.container,
4528
+ ...containerStyle,
4527
4529
  backgroundColor: theme.SURFACE_SECONDARY,
4528
4530
  borderColor: theme.BORDER_SEPERATOR_HEADER
4529
4531
  }