dhre-ui-kit 0.0.181 → 0.0.183

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.mjs CHANGED
@@ -2110,7 +2110,10 @@ const styles$j = StyleSheet.create({
2110
2110
  input: {
2111
2111
  flex: 1,
2112
2112
  ...FONT_STYLES.L1_REGULAR,
2113
- color: "#fff"
2113
+ color: "#fff",
2114
+ textAlignVertical: "center",
2115
+ paddingVertical: 0,
2116
+ paddingBottom: 2
2114
2117
  },
2115
2118
  crossIconStyle: { marginLeft: horizontalScale(8) },
2116
2119
  searchIconStyle: { marginRight: horizontalScale(8) }
@@ -2700,8 +2703,8 @@ var ContactModel = withThemeProvider(ContactModal);
2700
2703
 
2701
2704
  const styles$c = StyleSheet.create({
2702
2705
  applyButton: {
2703
- marginTop: verticalScale(24),
2704
- paddingVertical: verticalScale(12),
2706
+ marginTop: verticalScale(50),
2707
+ paddingVertical: verticalScale(14),
2705
2708
  justifyContent: "center",
2706
2709
  alignItems: "center",
2707
2710
  borderRadius: moderateScale(25)
@@ -3261,7 +3264,8 @@ const CommonTextInput = (props) => {
3261
3264
  keyboardType,
3262
3265
  theme: {
3263
3266
  colors: {
3264
- primary: labelColor ? labelColor : DHRE_COLORS_TEXT.DH_BLACK
3267
+ error: errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : DHRE_COLORS_TEXT.DH_BLACK,
3268
+ primary: labelColor ? errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : labelColor : DHRE_COLORS_TEXT.DH_BLACK
3265
3269
  }
3266
3270
  },
3267
3271
  style: [
@@ -3321,7 +3325,7 @@ const styles$8 = StyleSheet.create({
3321
3325
  justifyContent: "center"
3322
3326
  },
3323
3327
  multilineInput: {
3324
- minHeight: verticalScale(100),
3328
+ height: verticalScale(100),
3325
3329
  // Increased height for multiline
3326
3330
  paddingVertical: verticalScale(8)
3327
3331
  },