dhre-ui-kit 2.0.19 → 2.0.20

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.
@@ -28,6 +28,7 @@ interface CustomDropdownProps {
28
28
  renderRightIcon?: (visible?: boolean) => JSX.Element | null;
29
29
  disable?: boolean;
30
30
  autoScroll?: boolean;
31
+ selectedTextProps?: import('react-native').TextProps;
31
32
  }
32
33
  declare const CustomDropdown: (props: CustomDropdownProps) => React.JSX.Element;
33
34
  export default CustomDropdown;
package/lib/index.js CHANGED
@@ -9958,7 +9958,8 @@ const styles$8 = reactNative.StyleSheet.create({
9958
9958
  textAlign: "left"
9959
9959
  },
9960
9960
  dropdown: {
9961
- height: verticalScale(48),
9961
+ minHeight: verticalScale(48),
9962
+ paddingVertical: verticalScale(8),
9962
9963
  borderColor: theme.BORDER_PRIMARY["light"],
9963
9964
  borderWidth: 1,
9964
9965
  borderRadius: 0,