dhre-ui-kit 0.0.162 → 0.0.164
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 +1 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -3237,7 +3237,7 @@ const CommonTextInput = (props) => {
|
|
|
3237
3237
|
mode: "outlined",
|
|
3238
3238
|
outlineStyle: {
|
|
3239
3239
|
...styles$8.outlineStyle,
|
|
3240
|
-
borderColor: value?.length ? activeBorderColor : inactiveBorderColor
|
|
3240
|
+
borderColor: errorMessage?.length ? DHRE_DEFAULT.DH_ERROR : value?.length ? activeBorderColor : inactiveBorderColor
|
|
3241
3241
|
},
|
|
3242
3242
|
label,
|
|
3243
3243
|
value,
|
|
@@ -3301,7 +3301,6 @@ const styles$8 = StyleSheet.create({
|
|
|
3301
3301
|
errorInput: {
|
|
3302
3302
|
marginTop: verticalScale(12),
|
|
3303
3303
|
backgroundColor: DHRE_COLORS_TEXT.DH_WHITE,
|
|
3304
|
-
borderColor: DHRE_DEFAULT.DH_ERROR,
|
|
3305
3304
|
paddingVertical: 0,
|
|
3306
3305
|
height: verticalScale(48),
|
|
3307
3306
|
justifyContent: "center"
|