@hoddy-ui/core 1.0.40 → 1.0.42
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hoddy-ui/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"description": "Core rich react native components written in typescript",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"repository": {
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@react-native-async-storage/async-storage": "^1.18.1",
|
|
31
|
-
"@react-navigation/native": "^6.1.
|
|
31
|
+
"@react-navigation/native": "^6.1.7",
|
|
32
32
|
"expo-location": "^15.1.1",
|
|
33
33
|
"expo-navigation-bar": "^2.1.1",
|
|
34
34
|
"expo-system-ui": "^2.2.1",
|
|
35
|
-
"react-native-safe-area-context": "
|
|
35
|
+
"react-native-safe-area-context": ">=4.5.3",
|
|
36
36
|
"react-native-size-matters": "^0.4.0"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
@@ -207,6 +207,7 @@ const TextField: React.FC<TextFieldProps> = ({
|
|
|
207
207
|
editable={!disabled}
|
|
208
208
|
selectTextOnFocus={!disabled}
|
|
209
209
|
onSubmitEditing={onSubmitEditing}
|
|
210
|
+
placeholderTextColor={colors.textSecondary.main}
|
|
210
211
|
{...formProps}
|
|
211
212
|
{...props}
|
|
212
213
|
style={styles.input}
|
|
@@ -430,6 +431,7 @@ export const TextField2: React.FC<TextFieldProps> = ({
|
|
|
430
431
|
value={value}
|
|
431
432
|
onChangeText={onChangeText}
|
|
432
433
|
keyboardType={keyboardType}
|
|
434
|
+
placeholderTextColor={colors.textSecondary.main}
|
|
433
435
|
editable={!disabled}
|
|
434
436
|
selectTextOnFocus={!disabled}
|
|
435
437
|
onSubmitEditing={onSubmitEditing}
|