@korsolutions/ui 0.0.9 → 0.0.10
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.
|
@@ -114,6 +114,7 @@ function useInputVariantDefault() {
|
|
|
114
114
|
return useThemedStyles(({ colors, radius, fontFamily }) => ({
|
|
115
115
|
default: {
|
|
116
116
|
placeholderTextColor: colors.mutedForeground,
|
|
117
|
+
selectionColor: colors.primary,
|
|
117
118
|
style: {
|
|
118
119
|
borderWidth: 1,
|
|
119
120
|
borderColor: colors.border,
|
|
@@ -123,7 +124,8 @@ function useInputVariantDefault() {
|
|
|
123
124
|
paddingHorizontal: 16,
|
|
124
125
|
outlineWidth: 0,
|
|
125
126
|
fontFamily,
|
|
126
|
-
height: 48
|
|
127
|
+
height: 48,
|
|
128
|
+
color: colors.foreground
|
|
127
129
|
}
|
|
128
130
|
},
|
|
129
131
|
focused: { style: { borderColor: colors.primary } },
|
package/package.json
CHANGED