@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@korsolutions/ui",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",
@@ -6,6 +6,7 @@ export function useInputVariantDefault(): InputStyles {
6
6
  ({ colors, radius, fontFamily }): InputStyles => ({
7
7
  default: {
8
8
  placeholderTextColor: colors.mutedForeground,
9
+ selectionColor: colors.primary,
9
10
  style: {
10
11
  borderWidth: 1,
11
12
  borderColor: colors.border,