@umituz/react-native-design-system 4.29.3 → 4.29.4
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": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "4.29.
|
|
3
|
+
"version": "4.29.4",
|
|
4
4
|
"description": "Universal design system for React Native apps with safe navigation hooks - updated SKILL.md with navigation documentation",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -79,6 +79,9 @@ export interface ChatOnboardingScreenProps {
|
|
|
79
79
|
|
|
80
80
|
/** Button border color */
|
|
81
81
|
buttonBorder?: string;
|
|
82
|
+
|
|
83
|
+
/** Input text color */
|
|
84
|
+
inputText?: string;
|
|
82
85
|
};
|
|
83
86
|
|
|
84
87
|
/** Custom styles */
|
|
@@ -202,7 +205,13 @@ export const ChatOnboardingScreen = memo(
|
|
|
202
205
|
{currentStep?.isNameInput && (
|
|
203
206
|
<View style={styles.inputContainer}>
|
|
204
207
|
<TextInput
|
|
205
|
-
style={[
|
|
208
|
+
style={[
|
|
209
|
+
styles.nameInput,
|
|
210
|
+
{
|
|
211
|
+
borderColor: theme.buttonBorder,
|
|
212
|
+
color: theme.inputText || theme.messageText || "#000000",
|
|
213
|
+
},
|
|
214
|
+
]}
|
|
206
215
|
placeholder="Enter your name..."
|
|
207
216
|
placeholderTextColor={theme.messageText}
|
|
208
217
|
value={nameInput}
|