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.js +9 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +9 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -2143,7 +2143,10 @@ const styles$j = reactNative.StyleSheet.create({
|
|
|
2143
2143
|
input: {
|
|
2144
2144
|
flex: 1,
|
|
2145
2145
|
...FONT_STYLES.L1_REGULAR,
|
|
2146
|
-
color: "#fff"
|
|
2146
|
+
color: "#fff",
|
|
2147
|
+
textAlignVertical: "center",
|
|
2148
|
+
paddingVertical: 0,
|
|
2149
|
+
paddingBottom: 2
|
|
2147
2150
|
},
|
|
2148
2151
|
crossIconStyle: { marginLeft: horizontalScale(8) },
|
|
2149
2152
|
searchIconStyle: { marginRight: horizontalScale(8) }
|
|
@@ -2733,8 +2736,8 @@ var ContactModel = withThemeProvider(ContactModal);
|
|
|
2733
2736
|
|
|
2734
2737
|
const styles$c = reactNative.StyleSheet.create({
|
|
2735
2738
|
applyButton: {
|
|
2736
|
-
marginTop: verticalScale(
|
|
2737
|
-
paddingVertical: verticalScale(
|
|
2739
|
+
marginTop: verticalScale(50),
|
|
2740
|
+
paddingVertical: verticalScale(14),
|
|
2738
2741
|
justifyContent: "center",
|
|
2739
2742
|
alignItems: "center",
|
|
2740
2743
|
borderRadius: moderateScale(25)
|
|
@@ -3294,7 +3297,8 @@ const CommonTextInput = (props) => {
|
|
|
3294
3297
|
keyboardType,
|
|
3295
3298
|
theme: {
|
|
3296
3299
|
colors: {
|
|
3297
|
-
|
|
3300
|
+
error: errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : DHRE_COLORS_TEXT.DH_BLACK,
|
|
3301
|
+
primary: labelColor ? errorMessage?.length ? DHRE_DEFAULT.DH_SEMENTIC_ERROR : labelColor : DHRE_COLORS_TEXT.DH_BLACK
|
|
3298
3302
|
}
|
|
3299
3303
|
},
|
|
3300
3304
|
style: [
|
|
@@ -3354,7 +3358,7 @@ const styles$8 = reactNative.StyleSheet.create({
|
|
|
3354
3358
|
justifyContent: "center"
|
|
3355
3359
|
},
|
|
3356
3360
|
multilineInput: {
|
|
3357
|
-
|
|
3361
|
+
height: verticalScale(100),
|
|
3358
3362
|
// Increased height for multiline
|
|
3359
3363
|
paddingVertical: verticalScale(8)
|
|
3360
3364
|
},
|