@terreno/ui 0.6.0 → 0.7.1

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.
Files changed (52) hide show
  1. package/README.md +5 -5
  2. package/dist/AiSuggestionBox.d.ts +6 -0
  3. package/dist/AiSuggestionBox.js +87 -0
  4. package/dist/AiSuggestionBox.js.map +1 -0
  5. package/dist/Common.d.ts +13 -0
  6. package/dist/Common.js.map +1 -1
  7. package/dist/CommonIconTypes.d.ts +1 -1
  8. package/dist/FlatList.js.map +1 -1
  9. package/dist/GPTChat.d.ts +2 -1
  10. package/dist/GPTChat.js +14 -4
  11. package/dist/GPTChat.js.map +1 -1
  12. package/dist/Page.js +2 -1
  13. package/dist/Page.js.map +1 -1
  14. package/dist/ScrollView.js.map +1 -1
  15. package/dist/TextField.js +46 -41
  16. package/dist/TextField.js.map +1 -1
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.js +1 -0
  19. package/dist/index.js.map +1 -1
  20. package/dist/login/LoginScreen.js +1 -1
  21. package/dist/login/LoginScreen.js.map +1 -1
  22. package/dist/signUp/SignUpScreen.js +1 -1
  23. package/dist/signUp/SignUpScreen.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/AiSuggestionBox.test.tsx +373 -0
  26. package/src/AiSuggestionBox.tsx +233 -0
  27. package/src/Common.ts +15 -0
  28. package/src/CommonIconTypes.ts +1 -1
  29. package/src/FlatList.tsx +1 -0
  30. package/src/GPTChat.tsx +40 -2
  31. package/src/Page.tsx +20 -9
  32. package/src/ScrollView.tsx +1 -0
  33. package/src/TextField.tsx +88 -69
  34. package/src/__snapshots__/AddressField.test.tsx.snap +208 -152
  35. package/src/__snapshots__/AiSuggestionBox.test.tsx.snap +1031 -0
  36. package/src/__snapshots__/CustomSelectField.test.tsx.snap +51 -37
  37. package/src/__snapshots__/EmailField.test.tsx.snap +111 -83
  38. package/src/__snapshots__/Field.test.tsx.snap +616 -448
  39. package/src/__snapshots__/MobileAddressAutoComplete.test.tsx.snap +51 -37
  40. package/src/__snapshots__/NumberField.test.tsx.snap +51 -37
  41. package/src/__snapshots__/Page.test.tsx.snap +15 -20
  42. package/src/__snapshots__/PhoneNumberField.test.tsx.snap +264 -194
  43. package/src/__snapshots__/TapToEdit.test.tsx.snap +51 -37
  44. package/src/__snapshots__/TextArea.test.tsx.snap +255 -185
  45. package/src/__snapshots__/TextField.test.tsx.snap +264 -194
  46. package/src/__snapshots__/UnifiedAddressAutoComplete.test.tsx.snap +204 -148
  47. package/src/__snapshots__/WebAddressAutocomplete.test.tsx.snap +153 -111
  48. package/src/index.tsx +1 -0
  49. package/src/login/LoginScreen.tsx +1 -0
  50. package/src/login/__snapshots__/LoginScreen.test.tsx.snap +104 -76
  51. package/src/signUp/SignUpScreen.tsx +1 -0
  52. package/src/signUp/__snapshots__/SignUpScreen.test.tsx.snap +156 -114
@@ -9,56 +9,70 @@ exports[`PhoneNumberField renders correctly with default props 1`] = `
9
9
  "children": [
10
10
  {
11
11
  "$$typeof": Symbol(react.test.json),
12
- "children": null,
13
- "props": {
14
- "accessibilityHint": "Enter text here",
15
- "accessibilityState": {
16
- "disabled": undefined,
12
+ "children": [
13
+ {
14
+ "$$typeof": Symbol(react.test.json),
15
+ "children": null,
16
+ "props": {
17
+ "accessibilityHint": "Enter text here",
18
+ "accessibilityState": {
19
+ "disabled": undefined,
20
+ },
21
+ "aria-label": "Text input field",
22
+ "autoCapitalize": "none",
23
+ "autoCorrect": false,
24
+ "blurOnSubmit": true,
25
+ "enterKeyHint": undefined,
26
+ "keyboardType": "number-pad",
27
+ "multiline": undefined,
28
+ "nativeID": undefined,
29
+ "numberOfLines": 1,
30
+ "onBlur": [Function],
31
+ "onChangeText": [Function],
32
+ "onContentSizeChange": [Function],
33
+ "onFocus": [Function],
34
+ "onSubmitEditing": [Function],
35
+ "placeholder": undefined,
36
+ "placeholderTextColor": "#686868",
37
+ "readOnly": undefined,
38
+ "ref": [Function],
39
+ "secureTextEntry": false,
40
+ "style": {
41
+ "color": "#1C1C1C",
42
+ "flex": 1,
43
+ "fontFamily": "text",
44
+ "fontSize": 16,
45
+ "gap": 10,
46
+ "height": 20,
47
+ "paddingVertical": 0,
48
+ "width": "100%",
49
+ },
50
+ "testID": undefined,
51
+ "textContentType": undefined,
52
+ "underlineColorAndroid": "transparent",
53
+ "value": "",
54
+ },
55
+ "type": "TextInput",
17
56
  },
18
- "aria-label": "Text input field",
19
- "autoCapitalize": "none",
20
- "autoCorrect": false,
21
- "blurOnSubmit": true,
22
- "enterKeyHint": undefined,
23
- "keyboardType": "number-pad",
24
- "multiline": undefined,
25
- "numberOfLines": 1,
26
- "onBlur": [Function],
27
- "onChangeText": [Function],
28
- "onContentSizeChange": [Function],
29
- "onFocus": [Function],
30
- "onSubmitEditing": [Function],
31
- "placeholder": undefined,
32
- "placeholderTextColor": "#686868",
33
- "readOnly": undefined,
34
- "ref": [Function],
35
- "secureTextEntry": false,
57
+ ],
58
+ "props": {
36
59
  "style": {
37
- "color": "#1C1C1C",
38
- "flex": 1,
39
- "fontFamily": "text",
40
- "fontSize": 16,
41
- "gap": 10,
42
- "height": 20,
43
- "paddingVertical": 0,
44
- "width": "100%",
60
+ "alignItems": "center",
61
+ "flexDirection": "row",
45
62
  },
46
63
  "testID": undefined,
47
- "textContentType": undefined,
48
- "underlineColorAndroid": "transparent",
49
- "value": "",
50
64
  },
51
- "type": "TextInput",
65
+ "type": "View",
52
66
  },
53
67
  ],
54
68
  "props": {
55
69
  "style": {
56
- "alignItems": "center",
57
70
  "backgroundColor": "#FFFFFF",
58
71
  "borderColor": "#9A9A9A",
59
72
  "borderRadius": 4,
60
73
  "borderWidth": 1,
61
- "flexDirection": "row",
74
+ "flexDirection": "column",
75
+ "gap": 0,
62
76
  "overflow": "hidden",
63
77
  "paddingHorizontal": 12,
64
78
  "paddingVertical": 8,
@@ -88,56 +102,70 @@ exports[`PhoneNumberField formats phone number as user types 1`] = `
88
102
  "children": [
89
103
  {
90
104
  "$$typeof": Symbol(react.test.json),
91
- "children": null,
92
- "props": {
93
- "accessibilityHint": "Enter text here",
94
- "accessibilityState": {
95
- "disabled": undefined,
105
+ "children": [
106
+ {
107
+ "$$typeof": Symbol(react.test.json),
108
+ "children": null,
109
+ "props": {
110
+ "accessibilityHint": "Enter text here",
111
+ "accessibilityState": {
112
+ "disabled": undefined,
113
+ },
114
+ "aria-label": "Text input field",
115
+ "autoCapitalize": "none",
116
+ "autoCorrect": false,
117
+ "blurOnSubmit": true,
118
+ "enterKeyHint": undefined,
119
+ "keyboardType": "number-pad",
120
+ "multiline": undefined,
121
+ "nativeID": undefined,
122
+ "numberOfLines": 1,
123
+ "onBlur": [Function],
124
+ "onChangeText": [Function],
125
+ "onContentSizeChange": [Function],
126
+ "onFocus": [Function],
127
+ "onSubmitEditing": [Function],
128
+ "placeholder": undefined,
129
+ "placeholderTextColor": "#686868",
130
+ "readOnly": undefined,
131
+ "ref": [Function],
132
+ "secureTextEntry": false,
133
+ "style": {
134
+ "color": "#1C1C1C",
135
+ "flex": 1,
136
+ "fontFamily": "text",
137
+ "fontSize": 16,
138
+ "gap": 10,
139
+ "height": 20,
140
+ "paddingVertical": 0,
141
+ "width": "100%",
142
+ },
143
+ "testID": undefined,
144
+ "textContentType": undefined,
145
+ "underlineColorAndroid": "transparent",
146
+ "value": "5551234567",
147
+ },
148
+ "type": "TextInput",
96
149
  },
97
- "aria-label": "Text input field",
98
- "autoCapitalize": "none",
99
- "autoCorrect": false,
100
- "blurOnSubmit": true,
101
- "enterKeyHint": undefined,
102
- "keyboardType": "number-pad",
103
- "multiline": undefined,
104
- "numberOfLines": 1,
105
- "onBlur": [Function],
106
- "onChangeText": [Function],
107
- "onContentSizeChange": [Function],
108
- "onFocus": [Function],
109
- "onSubmitEditing": [Function],
110
- "placeholder": undefined,
111
- "placeholderTextColor": "#686868",
112
- "readOnly": undefined,
113
- "ref": [Function],
114
- "secureTextEntry": false,
150
+ ],
151
+ "props": {
115
152
  "style": {
116
- "color": "#1C1C1C",
117
- "flex": 1,
118
- "fontFamily": "text",
119
- "fontSize": 16,
120
- "gap": 10,
121
- "height": 20,
122
- "paddingVertical": 0,
123
- "width": "100%",
153
+ "alignItems": "center",
154
+ "flexDirection": "row",
124
155
  },
125
156
  "testID": undefined,
126
- "textContentType": undefined,
127
- "underlineColorAndroid": "transparent",
128
- "value": "5551234567",
129
157
  },
130
- "type": "TextInput",
158
+ "type": "View",
131
159
  },
132
160
  ],
133
161
  "props": {
134
162
  "style": {
135
- "alignItems": "center",
136
163
  "backgroundColor": "#FFFFFF",
137
164
  "borderColor": "#9A9A9A",
138
165
  "borderRadius": 4,
139
166
  "borderWidth": 1,
140
- "flexDirection": "row",
167
+ "flexDirection": "column",
168
+ "gap": 0,
141
169
  "overflow": "hidden",
142
170
  "paddingHorizontal": 12,
143
171
  "paddingVertical": 8,
@@ -167,65 +195,79 @@ exports[`PhoneNumberField renders with icon 1`] = `
167
195
  "children": [
168
196
  {
169
197
  "$$typeof": Symbol(react.test.json),
170
- "children": null,
171
- "props": {
172
- "accessibilityHint": "Enter text here",
173
- "accessibilityState": {
174
- "disabled": undefined,
198
+ "children": [
199
+ {
200
+ "$$typeof": Symbol(react.test.json),
201
+ "children": null,
202
+ "props": {
203
+ "accessibilityHint": "Enter text here",
204
+ "accessibilityState": {
205
+ "disabled": undefined,
206
+ },
207
+ "aria-label": "Text input field",
208
+ "autoCapitalize": "none",
209
+ "autoCorrect": false,
210
+ "blurOnSubmit": true,
211
+ "enterKeyHint": undefined,
212
+ "keyboardType": "number-pad",
213
+ "multiline": undefined,
214
+ "nativeID": undefined,
215
+ "numberOfLines": 1,
216
+ "onBlur": [Function],
217
+ "onChangeText": [Function],
218
+ "onContentSizeChange": [Function],
219
+ "onFocus": [Function],
220
+ "onSubmitEditing": [Function],
221
+ "placeholder": undefined,
222
+ "placeholderTextColor": "#686868",
223
+ "readOnly": undefined,
224
+ "ref": [Function],
225
+ "secureTextEntry": false,
226
+ "style": {
227
+ "color": "#1C1C1C",
228
+ "flex": 1,
229
+ "fontFamily": "text",
230
+ "fontSize": 16,
231
+ "gap": 10,
232
+ "height": 20,
233
+ "paddingVertical": 0,
234
+ "width": "100%",
235
+ },
236
+ "testID": undefined,
237
+ "textContentType": undefined,
238
+ "underlineColorAndroid": "transparent",
239
+ "value": "",
240
+ },
241
+ "type": "TextInput",
242
+ },
243
+ {
244
+ "$$typeof": Symbol(react.test.json),
245
+ "children": null,
246
+ "props": {
247
+ "aria-role": "button",
248
+ "onPress": undefined,
249
+ },
250
+ "type": "Pressable",
175
251
  },
176
- "aria-label": "Text input field",
177
- "autoCapitalize": "none",
178
- "autoCorrect": false,
179
- "blurOnSubmit": true,
180
- "enterKeyHint": undefined,
181
- "keyboardType": "number-pad",
182
- "multiline": undefined,
183
- "numberOfLines": 1,
184
- "onBlur": [Function],
185
- "onChangeText": [Function],
186
- "onContentSizeChange": [Function],
187
- "onFocus": [Function],
188
- "onSubmitEditing": [Function],
189
- "placeholder": undefined,
190
- "placeholderTextColor": "#686868",
191
- "readOnly": undefined,
192
- "ref": [Function],
193
- "secureTextEntry": false,
252
+ ],
253
+ "props": {
194
254
  "style": {
195
- "color": "#1C1C1C",
196
- "flex": 1,
197
- "fontFamily": "text",
198
- "fontSize": 16,
199
- "gap": 10,
200
- "height": 20,
201
- "paddingVertical": 0,
202
- "width": "100%",
255
+ "alignItems": "center",
256
+ "flexDirection": "row",
203
257
  },
204
258
  "testID": undefined,
205
- "textContentType": undefined,
206
- "underlineColorAndroid": "transparent",
207
- "value": "",
208
- },
209
- "type": "TextInput",
210
- },
211
- {
212
- "$$typeof": Symbol(react.test.json),
213
- "children": null,
214
- "props": {
215
- "aria-role": "button",
216
- "onPress": undefined,
217
259
  },
218
- "type": "Pressable",
260
+ "type": "View",
219
261
  },
220
262
  ],
221
263
  "props": {
222
264
  "style": {
223
- "alignItems": "center",
224
265
  "backgroundColor": "#FFFFFF",
225
266
  "borderColor": "#9A9A9A",
226
267
  "borderRadius": 4,
227
268
  "borderWidth": 1,
228
- "flexDirection": "row",
269
+ "flexDirection": "column",
270
+ "gap": 0,
229
271
  "overflow": "hidden",
230
272
  "paddingHorizontal": 12,
231
273
  "paddingVertical": 8,
@@ -255,56 +297,70 @@ exports[`PhoneNumberField uses US as default country code 1`] = `
255
297
  "children": [
256
298
  {
257
299
  "$$typeof": Symbol(react.test.json),
258
- "children": null,
259
- "props": {
260
- "accessibilityHint": "Enter text here",
261
- "accessibilityState": {
262
- "disabled": undefined,
300
+ "children": [
301
+ {
302
+ "$$typeof": Symbol(react.test.json),
303
+ "children": null,
304
+ "props": {
305
+ "accessibilityHint": "Enter text here",
306
+ "accessibilityState": {
307
+ "disabled": undefined,
308
+ },
309
+ "aria-label": "Text input field",
310
+ "autoCapitalize": "none",
311
+ "autoCorrect": false,
312
+ "blurOnSubmit": true,
313
+ "enterKeyHint": undefined,
314
+ "keyboardType": "number-pad",
315
+ "multiline": undefined,
316
+ "nativeID": undefined,
317
+ "numberOfLines": 1,
318
+ "onBlur": [Function],
319
+ "onChangeText": [Function],
320
+ "onContentSizeChange": [Function],
321
+ "onFocus": [Function],
322
+ "onSubmitEditing": [Function],
323
+ "placeholder": undefined,
324
+ "placeholderTextColor": "#686868",
325
+ "readOnly": undefined,
326
+ "ref": [Function],
327
+ "secureTextEntry": false,
328
+ "style": {
329
+ "color": "#1C1C1C",
330
+ "flex": 1,
331
+ "fontFamily": "text",
332
+ "fontSize": 16,
333
+ "gap": 10,
334
+ "height": 20,
335
+ "paddingVertical": 0,
336
+ "width": "100%",
337
+ },
338
+ "testID": undefined,
339
+ "textContentType": undefined,
340
+ "underlineColorAndroid": "transparent",
341
+ "value": "5551234567",
342
+ },
343
+ "type": "TextInput",
263
344
  },
264
- "aria-label": "Text input field",
265
- "autoCapitalize": "none",
266
- "autoCorrect": false,
267
- "blurOnSubmit": true,
268
- "enterKeyHint": undefined,
269
- "keyboardType": "number-pad",
270
- "multiline": undefined,
271
- "numberOfLines": 1,
272
- "onBlur": [Function],
273
- "onChangeText": [Function],
274
- "onContentSizeChange": [Function],
275
- "onFocus": [Function],
276
- "onSubmitEditing": [Function],
277
- "placeholder": undefined,
278
- "placeholderTextColor": "#686868",
279
- "readOnly": undefined,
280
- "ref": [Function],
281
- "secureTextEntry": false,
345
+ ],
346
+ "props": {
282
347
  "style": {
283
- "color": "#1C1C1C",
284
- "flex": 1,
285
- "fontFamily": "text",
286
- "fontSize": 16,
287
- "gap": 10,
288
- "height": 20,
289
- "paddingVertical": 0,
290
- "width": "100%",
348
+ "alignItems": "center",
349
+ "flexDirection": "row",
291
350
  },
292
351
  "testID": undefined,
293
- "textContentType": undefined,
294
- "underlineColorAndroid": "transparent",
295
- "value": "5551234567",
296
352
  },
297
- "type": "TextInput",
353
+ "type": "View",
298
354
  },
299
355
  ],
300
356
  "props": {
301
357
  "style": {
302
- "alignItems": "center",
303
358
  "backgroundColor": "#FFFFFF",
304
359
  "borderColor": "#9A9A9A",
305
360
  "borderRadius": 4,
306
361
  "borderWidth": 1,
307
- "flexDirection": "row",
362
+ "flexDirection": "column",
363
+ "gap": 0,
308
364
  "overflow": "hidden",
309
365
  "paddingHorizontal": 12,
310
366
  "paddingVertical": 8,
@@ -334,56 +390,70 @@ exports[`PhoneNumberField accepts custom country code 1`] = `
334
390
  "children": [
335
391
  {
336
392
  "$$typeof": Symbol(react.test.json),
337
- "children": null,
338
- "props": {
339
- "accessibilityHint": "Enter text here",
340
- "accessibilityState": {
341
- "disabled": undefined,
393
+ "children": [
394
+ {
395
+ "$$typeof": Symbol(react.test.json),
396
+ "children": null,
397
+ "props": {
398
+ "accessibilityHint": "Enter text here",
399
+ "accessibilityState": {
400
+ "disabled": undefined,
401
+ },
402
+ "aria-label": "Text input field",
403
+ "autoCapitalize": "none",
404
+ "autoCorrect": false,
405
+ "blurOnSubmit": true,
406
+ "enterKeyHint": undefined,
407
+ "keyboardType": "number-pad",
408
+ "multiline": undefined,
409
+ "nativeID": undefined,
410
+ "numberOfLines": 1,
411
+ "onBlur": [Function],
412
+ "onChangeText": [Function],
413
+ "onContentSizeChange": [Function],
414
+ "onFocus": [Function],
415
+ "onSubmitEditing": [Function],
416
+ "placeholder": undefined,
417
+ "placeholderTextColor": "#686868",
418
+ "readOnly": undefined,
419
+ "ref": [Function],
420
+ "secureTextEntry": false,
421
+ "style": {
422
+ "color": "#1C1C1C",
423
+ "flex": 1,
424
+ "fontFamily": "text",
425
+ "fontSize": 16,
426
+ "gap": 10,
427
+ "height": 20,
428
+ "paddingVertical": 0,
429
+ "width": "100%",
430
+ },
431
+ "testID": undefined,
432
+ "textContentType": undefined,
433
+ "underlineColorAndroid": "transparent",
434
+ "value": "7911123456",
435
+ },
436
+ "type": "TextInput",
342
437
  },
343
- "aria-label": "Text input field",
344
- "autoCapitalize": "none",
345
- "autoCorrect": false,
346
- "blurOnSubmit": true,
347
- "enterKeyHint": undefined,
348
- "keyboardType": "number-pad",
349
- "multiline": undefined,
350
- "numberOfLines": 1,
351
- "onBlur": [Function],
352
- "onChangeText": [Function],
353
- "onContentSizeChange": [Function],
354
- "onFocus": [Function],
355
- "onSubmitEditing": [Function],
356
- "placeholder": undefined,
357
- "placeholderTextColor": "#686868",
358
- "readOnly": undefined,
359
- "ref": [Function],
360
- "secureTextEntry": false,
438
+ ],
439
+ "props": {
361
440
  "style": {
362
- "color": "#1C1C1C",
363
- "flex": 1,
364
- "fontFamily": "text",
365
- "fontSize": 16,
366
- "gap": 10,
367
- "height": 20,
368
- "paddingVertical": 0,
369
- "width": "100%",
441
+ "alignItems": "center",
442
+ "flexDirection": "row",
370
443
  },
371
444
  "testID": undefined,
372
- "textContentType": undefined,
373
- "underlineColorAndroid": "transparent",
374
- "value": "7911123456",
375
445
  },
376
- "type": "TextInput",
446
+ "type": "View",
377
447
  },
378
448
  ],
379
449
  "props": {
380
450
  "style": {
381
- "alignItems": "center",
382
451
  "backgroundColor": "#FFFFFF",
383
452
  "borderColor": "#9A9A9A",
384
453
  "borderRadius": 4,
385
454
  "borderWidth": 1,
386
- "flexDirection": "row",
455
+ "flexDirection": "column",
456
+ "gap": 0,
387
457
  "overflow": "hidden",
388
458
  "paddingHorizontal": 12,
389
459
  "paddingVertical": 8,
@@ -449,56 +449,70 @@ exports[`TapToEdit shows editing mode when isEditing is true 1`] = `
449
449
  "children": [
450
450
  {
451
451
  "$$typeof": Symbol(react.test.json),
452
- "children": null,
453
- "props": {
454
- "accessibilityHint": "Enter text here",
455
- "accessibilityState": {
456
- "disabled": undefined,
452
+ "children": [
453
+ {
454
+ "$$typeof": Symbol(react.test.json),
455
+ "children": null,
456
+ "props": {
457
+ "accessibilityHint": "Enter text here",
458
+ "accessibilityState": {
459
+ "disabled": undefined,
460
+ },
461
+ "aria-label": "Text input field",
462
+ "autoCapitalize": "sentences",
463
+ "autoCorrect": true,
464
+ "blurOnSubmit": true,
465
+ "enterKeyHint": undefined,
466
+ "keyboardType": "default",
467
+ "multiline": undefined,
468
+ "nativeID": undefined,
469
+ "numberOfLines": 1,
470
+ "onBlur": [Function],
471
+ "onChangeText": [Function],
472
+ "onContentSizeChange": [Function],
473
+ "onFocus": [Function],
474
+ "onSubmitEditing": [Function],
475
+ "placeholder": undefined,
476
+ "placeholderTextColor": "#686868",
477
+ "readOnly": undefined,
478
+ "ref": [Function],
479
+ "secureTextEntry": false,
480
+ "style": {
481
+ "color": "#1C1C1C",
482
+ "flex": 1,
483
+ "fontFamily": "text",
484
+ "fontSize": 16,
485
+ "gap": 10,
486
+ "height": 20,
487
+ "paddingVertical": 0,
488
+ "width": "100%",
489
+ },
490
+ "testID": undefined,
491
+ "textContentType": "none",
492
+ "underlineColorAndroid": "transparent",
493
+ "value": "Editing...",
494
+ },
495
+ "type": "TextInput",
457
496
  },
458
- "aria-label": "Text input field",
459
- "autoCapitalize": "sentences",
460
- "autoCorrect": true,
461
- "blurOnSubmit": true,
462
- "enterKeyHint": undefined,
463
- "keyboardType": "default",
464
- "multiline": undefined,
465
- "numberOfLines": 1,
466
- "onBlur": [Function],
467
- "onChangeText": [Function],
468
- "onContentSizeChange": [Function],
469
- "onFocus": [Function],
470
- "onSubmitEditing": [Function],
471
- "placeholder": undefined,
472
- "placeholderTextColor": "#686868",
473
- "readOnly": undefined,
474
- "ref": [Function],
475
- "secureTextEntry": false,
497
+ ],
498
+ "props": {
476
499
  "style": {
477
- "color": "#1C1C1C",
478
- "flex": 1,
479
- "fontFamily": "text",
480
- "fontSize": 16,
481
- "gap": 10,
482
- "height": 20,
483
- "paddingVertical": 0,
484
- "width": "100%",
500
+ "alignItems": "center",
501
+ "flexDirection": "row",
485
502
  },
486
503
  "testID": undefined,
487
- "textContentType": "none",
488
- "underlineColorAndroid": "transparent",
489
- "value": "Editing...",
490
504
  },
491
- "type": "TextInput",
505
+ "type": "View",
492
506
  },
493
507
  ],
494
508
  "props": {
495
509
  "style": {
496
- "alignItems": "center",
497
510
  "backgroundColor": "#FFFFFF",
498
511
  "borderColor": "#9A9A9A",
499
512
  "borderRadius": 4,
500
513
  "borderWidth": 1,
501
- "flexDirection": "row",
514
+ "flexDirection": "column",
515
+ "gap": 0,
502
516
  "overflow": "hidden",
503
517
  "paddingHorizontal": 12,
504
518
  "paddingVertical": 8,