dhre-ui-kit 0.0.163 → 0.0.165

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.js CHANGED
@@ -3270,7 +3270,7 @@ const CommonTextInput = (props) => {
3270
3270
  mode: "outlined",
3271
3271
  outlineStyle: {
3272
3272
  ...styles$8.outlineStyle,
3273
- borderColor: value?.length ? activeBorderColor : inactiveBorderColor
3273
+ borderColor: errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : value?.length ? activeBorderColor : inactiveBorderColor
3274
3274
  },
3275
3275
  label,
3276
3276
  value,
@@ -3334,8 +3334,6 @@ const styles$8 = reactNative.StyleSheet.create({
3334
3334
  errorInput: {
3335
3335
  marginTop: verticalScale(12),
3336
3336
  backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
3337
- borderWidth: 1,
3338
- borderColor: DHRE_DEFAULT.DH_ERROR,
3339
3337
  paddingVertical: 0,
3340
3338
  height: verticalScale(48),
3341
3339
  justifyContent: "center"