@terreno/ui 0.0.15 → 0.0.17

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 (173) hide show
  1. package/dist/Button.js +7 -9
  2. package/dist/Button.js.map +1 -1
  3. package/dist/Common.d.ts +39 -0
  4. package/dist/DateUtilities.js +2 -2
  5. package/dist/UserInactivity.d.ts +28 -0
  6. package/dist/UserInactivity.js +100 -0
  7. package/dist/UserInactivity.js.map +1 -0
  8. package/dist/index.d.ts +1 -0
  9. package/dist/index.js +1 -0
  10. package/dist/index.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/ActionSheet.test.tsx +77 -0
  13. package/src/Banner.test.tsx +106 -0
  14. package/src/Body.test.tsx +79 -0
  15. package/src/BooleanField.test.tsx +84 -0
  16. package/src/Button.test.tsx +160 -0
  17. package/src/Button.tsx +20 -37
  18. package/src/Card.test.tsx +61 -0
  19. package/src/CheckBox.test.tsx +53 -0
  20. package/src/Common.ts +45 -0
  21. package/src/CustomSelectField.test.tsx +85 -0
  22. package/src/DataTable.test.tsx +133 -0
  23. package/src/DateTimeActionSheet.test.tsx +65 -0
  24. package/src/DateUtilities.tsx +2 -2
  25. package/src/DecimalRangeActionSheet.test.tsx +46 -0
  26. package/src/DismissButton.test.tsx +49 -0
  27. package/src/EmailField.test.tsx +106 -0
  28. package/src/ErrorBoundary.test.tsx +44 -0
  29. package/src/ErrorPage.test.tsx +44 -0
  30. package/src/Field.test.tsx +128 -0
  31. package/src/Heading.test.tsx +66 -0
  32. package/src/HeightActionSheet.test.tsx +34 -0
  33. package/src/Hyperlink.test.tsx +52 -0
  34. package/src/Icon.test.tsx +61 -0
  35. package/src/IconButton.test.tsx +145 -0
  36. package/src/Image.test.tsx +65 -0
  37. package/src/ImageBackground.test.tsx +46 -0
  38. package/src/InfoModalIcon.test.tsx +54 -0
  39. package/src/InfoTooltipButton.test.tsx +22 -0
  40. package/src/Link.test.tsx +64 -0
  41. package/src/MarkdownView.test.tsx +50 -0
  42. package/src/MobileAddressAutoComplete.test.tsx +58 -0
  43. package/src/Modal.test.tsx +169 -0
  44. package/src/ModalSheet.test.tsx +52 -0
  45. package/src/MultiselectField.test.tsx +134 -0
  46. package/src/NumberField.test.tsx +133 -0
  47. package/src/NumberPickerActionSheet.test.tsx +46 -0
  48. package/src/OpenAPIContext.test.tsx +36 -0
  49. package/src/Page.test.tsx +128 -0
  50. package/src/Pagination.test.tsx +86 -0
  51. package/src/PasswordField.test.tsx +17 -0
  52. package/src/PhoneNumberField.test.tsx +79 -0
  53. package/src/PickerSelect.test.tsx +52 -0
  54. package/src/Radio.test.tsx +30 -0
  55. package/src/RadioField.test.tsx +89 -0
  56. package/src/SectionDivider.test.tsx +17 -0
  57. package/src/SegmentedControl.test.tsx +84 -0
  58. package/src/SelectBadge.test.tsx +103 -0
  59. package/src/SelectField.test.tsx +84 -0
  60. package/src/SideDrawer.test.tsx +99 -0
  61. package/src/Signature.test.tsx +32 -0
  62. package/src/SignatureField.test.tsx +60 -0
  63. package/src/Spinner.test.tsx +74 -0
  64. package/src/SplitPage.test.tsx +82 -0
  65. package/src/TapToEdit.test.tsx +147 -0
  66. package/src/TerrenoProvider.test.tsx +36 -0
  67. package/src/Text.test.tsx +147 -0
  68. package/src/Theme.test.tsx +153 -0
  69. package/src/TimezonePicker.test.tsx +57 -0
  70. package/src/Toast.test.tsx +82 -0
  71. package/src/Tooltip.test.tsx +89 -0
  72. package/src/UnifiedAddressAutoComplete.test.tsx +53 -0
  73. package/src/UserInactivity.test.tsx +96 -0
  74. package/src/UserInactivity.tsx +129 -0
  75. package/src/Utilities.test.tsx +237 -0
  76. package/src/WebAddressAutocomplete.test.tsx +33 -0
  77. package/src/__snapshots__/ActionSheet.test.tsx.snap +889 -0
  78. package/src/__snapshots__/Banner.test.tsx.snap +546 -0
  79. package/src/__snapshots__/Body.test.tsx.snap +685 -0
  80. package/src/__snapshots__/BooleanField.test.tsx.snap +553 -0
  81. package/src/__snapshots__/Button.test.tsx.snap +934 -0
  82. package/src/__snapshots__/Card.test.tsx.snap +195 -0
  83. package/src/__snapshots__/CheckBox.test.tsx.snap +190 -0
  84. package/src/__snapshots__/CustomSelectField.test.tsx.snap +2299 -0
  85. package/src/__snapshots__/DataTable.test.tsx.snap +9614 -0
  86. package/src/__snapshots__/DateTimeActionSheet.test.tsx.snap +11 -0
  87. package/src/__snapshots__/DecimalRangeActionSheet.test.tsx.snap +1719 -0
  88. package/src/__snapshots__/DismissButton.test.tsx.snap +91 -0
  89. package/src/__snapshots__/EmailField.test.tsx.snap +168 -0
  90. package/src/__snapshots__/ErrorBoundary.test.tsx.snap +57 -0
  91. package/src/__snapshots__/ErrorPage.test.tsx.snap +195 -0
  92. package/src/__snapshots__/Field.test.tsx.snap +4510 -0
  93. package/src/__snapshots__/Heading.test.tsx.snap +193 -0
  94. package/src/__snapshots__/HeightActionSheet.test.tsx.snap +1269 -0
  95. package/src/__snapshots__/Hyperlink.test.tsx.snap +81 -0
  96. package/src/__snapshots__/Icon.test.tsx.snap +47 -0
  97. package/src/__snapshots__/IconButton.test.tsx.snap +29 -0
  98. package/src/__snapshots__/Image.test.tsx.snap +282 -0
  99. package/src/__snapshots__/ImageBackground.test.tsx.snap +120 -0
  100. package/src/__snapshots__/InfoModalIcon.test.tsx.snap +1229 -0
  101. package/src/__snapshots__/InfoTooltipButton.test.tsx.snap +7 -0
  102. package/src/__snapshots__/Link.test.tsx.snap +41 -0
  103. package/src/__snapshots__/MarkdownView.test.tsx.snap +965 -0
  104. package/src/__snapshots__/MobileAddressAutoComplete.test.tsx.snap +230 -0
  105. package/src/__snapshots__/Modal.test.tsx.snap +1477 -0
  106. package/src/__snapshots__/ModalSheet.test.tsx.snap +37 -0
  107. package/src/__snapshots__/MultiselectField.test.tsx.snap +1454 -0
  108. package/src/__snapshots__/NumberField.test.tsx.snap +80 -0
  109. package/src/__snapshots__/NumberPickerActionSheet.test.tsx.snap +5359 -0
  110. package/src/__snapshots__/OpenAPIContext.test.tsx.snap +14 -0
  111. package/src/__snapshots__/Page.test.tsx.snap +1647 -0
  112. package/src/__snapshots__/Pagination.test.tsx.snap +1913 -0
  113. package/src/__snapshots__/PasswordField.test.tsx.snap +15 -0
  114. package/src/__snapshots__/PhoneNumberField.test.tsx.snap +405 -0
  115. package/src/__snapshots__/PickerSelect.test.tsx.snap +1053 -0
  116. package/src/__snapshots__/Radio.test.tsx.snap +111 -0
  117. package/src/__snapshots__/RadioField.test.tsx.snap +944 -0
  118. package/src/__snapshots__/SectionDivider.test.tsx.snap +37 -0
  119. package/src/__snapshots__/SegmentedControl.test.tsx.snap +1422 -0
  120. package/src/__snapshots__/SelectBadge.test.tsx.snap +2377 -0
  121. package/src/__snapshots__/SelectField.test.tsx.snap +1658 -0
  122. package/src/__snapshots__/SideDrawer.test.tsx.snap +1857 -0
  123. package/src/__snapshots__/Signature.test.tsx.snap +67 -0
  124. package/src/__snapshots__/SignatureField.test.tsx.snap +241 -0
  125. package/src/__snapshots__/Spinner.test.tsx.snap +73 -0
  126. package/src/__snapshots__/SplitPage.test.tsx.snap +686 -0
  127. package/src/__snapshots__/TapToEdit.test.tsx.snap +839 -0
  128. package/src/__snapshots__/TerrenoProvider.test.tsx.snap +203 -0
  129. package/src/__snapshots__/Text.test.tsx.snap +558 -0
  130. package/src/__snapshots__/TimezonePicker.test.tsx.snap +6676 -0
  131. package/src/__snapshots__/Toast.test.tsx.snap +1982 -0
  132. package/src/__snapshots__/Tooltip.test.tsx.snap +456 -0
  133. package/src/__snapshots__/UnifiedAddressAutoComplete.test.tsx.snap +377 -0
  134. package/src/__snapshots__/UserInactivity.test.tsx.snap +108 -0
  135. package/src/__snapshots__/WebAddressAutocomplete.test.tsx.snap +238 -0
  136. package/src/bunSetup.ts +101 -8
  137. package/src/fieldElements/FieldError.test.tsx +40 -0
  138. package/src/fieldElements/FieldHelperText.test.tsx +34 -0
  139. package/src/fieldElements/FieldTitle.test.tsx +30 -0
  140. package/src/fieldElements/__snapshots__/FieldError.test.tsx.snap +85 -0
  141. package/src/fieldElements/__snapshots__/FieldHelperText.test.tsx.snap +30 -0
  142. package/src/fieldElements/__snapshots__/FieldTitle.test.tsx.snap +19 -0
  143. package/src/icons/MobileIcon.test.tsx +21 -0
  144. package/src/icons/OfflineIcon.test.tsx +21 -0
  145. package/src/icons/OnlineIcon.test.tsx +21 -0
  146. package/src/icons/OutOfficeIcon.test.tsx +21 -0
  147. package/src/icons/__snapshots__/MobileIcon.test.tsx.snap +160 -0
  148. package/src/icons/__snapshots__/OfflineIcon.test.tsx.snap +133 -0
  149. package/src/icons/__snapshots__/OnlineIcon.test.tsx.snap +124 -0
  150. package/src/icons/__snapshots__/OutOfficeIcon.test.tsx.snap +160 -0
  151. package/src/index.tsx +1 -0
  152. package/src/table/Table.test.tsx +107 -0
  153. package/src/table/TableBadge.test.tsx +53 -0
  154. package/src/table/TableBoolean.test.tsx +38 -0
  155. package/src/table/TableDate.test.tsx +27 -0
  156. package/src/table/TableHeader.test.tsx +67 -0
  157. package/src/table/TableHeaderCell.test.tsx +113 -0
  158. package/src/table/TableIconButton.test.tsx +51 -0
  159. package/src/table/TableNumber.test.tsx +45 -0
  160. package/src/table/TableRow.test.tsx +83 -0
  161. package/src/table/TableText.test.tsx +30 -0
  162. package/src/table/TableTitle.test.tsx +30 -0
  163. package/src/table/__snapshots__/Table.test.tsx.snap +2090 -0
  164. package/src/table/__snapshots__/TableBadge.test.tsx.snap +710 -0
  165. package/src/table/__snapshots__/TableBoolean.test.tsx.snap +231 -0
  166. package/src/table/__snapshots__/TableDate.test.tsx.snap +61 -0
  167. package/src/table/__snapshots__/TableHeader.test.tsx.snap +1089 -0
  168. package/src/table/__snapshots__/TableHeaderCell.test.tsx.snap +1773 -0
  169. package/src/table/__snapshots__/TableIconButton.test.tsx.snap +81 -0
  170. package/src/table/__snapshots__/TableNumber.test.tsx.snap +91 -0
  171. package/src/table/__snapshots__/TableRow.test.tsx.snap +1391 -0
  172. package/src/table/__snapshots__/TableText.test.tsx.snap +73 -0
  173. package/src/table/__snapshots__/TableTitle.test.tsx.snap +109 -0
@@ -0,0 +1,710 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`TableBadge renders correctly with value 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ {
11
+ "$$typeof": Symbol(react.test.json),
12
+ "children": [
13
+ {
14
+ "$$typeof": Symbol(react.test.json),
15
+ "children": [
16
+ "Active",
17
+ ],
18
+ "props": {
19
+ "style": {
20
+ "color": "#092E3A",
21
+ "fontFamily": "text",
22
+ "fontSize": 10,
23
+ "fontWeight": "700",
24
+ },
25
+ },
26
+ "type": "Text",
27
+ },
28
+ ],
29
+ "props": {
30
+ "style": [
31
+ {
32
+ "alignItems": "center",
33
+ "backgroundColor": "#B6CDD5",
34
+ "borderRadius": 4,
35
+ "flexDirection": "row",
36
+ "height": "auto",
37
+ "justifyContent": "center",
38
+ "paddingHorizontal": 8,
39
+ "paddingVertical": 4,
40
+ "width": "auto",
41
+ },
42
+ false,
43
+ {
44
+ "borderColor": "#8FC1D2",
45
+ "borderWidth": 1,
46
+ },
47
+ ],
48
+ "testID": undefined,
49
+ },
50
+ "type": "View",
51
+ },
52
+ ],
53
+ "props": {
54
+ "style": {
55
+ "alignItems": "flex-start",
56
+ },
57
+ "testID": undefined,
58
+ },
59
+ "type": "View",
60
+ },
61
+ ],
62
+ "props": {
63
+ "style": {
64
+ "alignItems": "center",
65
+ "justifyContent": "center",
66
+ },
67
+ "testID": undefined,
68
+ },
69
+ "type": "View",
70
+ }
71
+ `;
72
+
73
+ exports[`TableBadge renders with info status (default) 1`] = `
74
+ {
75
+ "$$typeof": Symbol(react.test.json),
76
+ "children": [
77
+ {
78
+ "$$typeof": Symbol(react.test.json),
79
+ "children": [
80
+ {
81
+ "$$typeof": Symbol(react.test.json),
82
+ "children": [
83
+ {
84
+ "$$typeof": Symbol(react.test.json),
85
+ "children": [
86
+ "Info",
87
+ ],
88
+ "props": {
89
+ "style": {
90
+ "color": "#092E3A",
91
+ "fontFamily": "text",
92
+ "fontSize": 10,
93
+ "fontWeight": "700",
94
+ },
95
+ },
96
+ "type": "Text",
97
+ },
98
+ ],
99
+ "props": {
100
+ "style": [
101
+ {
102
+ "alignItems": "center",
103
+ "backgroundColor": "#B6CDD5",
104
+ "borderRadius": 4,
105
+ "flexDirection": "row",
106
+ "height": "auto",
107
+ "justifyContent": "center",
108
+ "paddingHorizontal": 8,
109
+ "paddingVertical": 4,
110
+ "width": "auto",
111
+ },
112
+ false,
113
+ {
114
+ "borderColor": "#8FC1D2",
115
+ "borderWidth": 1,
116
+ },
117
+ ],
118
+ "testID": undefined,
119
+ },
120
+ "type": "View",
121
+ },
122
+ ],
123
+ "props": {
124
+ "style": {
125
+ "alignItems": "flex-start",
126
+ },
127
+ "testID": undefined,
128
+ },
129
+ "type": "View",
130
+ },
131
+ ],
132
+ "props": {
133
+ "style": {
134
+ "alignItems": "center",
135
+ "justifyContent": "center",
136
+ },
137
+ "testID": undefined,
138
+ },
139
+ "type": "View",
140
+ }
141
+ `;
142
+
143
+ exports[`TableBadge renders with success status 1`] = `
144
+ {
145
+ "$$typeof": Symbol(react.test.json),
146
+ "children": [
147
+ {
148
+ "$$typeof": Symbol(react.test.json),
149
+ "children": [
150
+ {
151
+ "$$typeof": Symbol(react.test.json),
152
+ "children": [
153
+ {
154
+ "$$typeof": Symbol(react.test.json),
155
+ "children": [
156
+ "Approved",
157
+ ],
158
+ "props": {
159
+ "style": {
160
+ "color": "#1A7F36",
161
+ "fontFamily": "text",
162
+ "fontSize": 10,
163
+ "fontWeight": "700",
164
+ },
165
+ },
166
+ "type": "Text",
167
+ },
168
+ ],
169
+ "props": {
170
+ "style": [
171
+ {
172
+ "alignItems": "center",
173
+ "backgroundColor": "#DCF2E2",
174
+ "borderRadius": 4,
175
+ "flexDirection": "row",
176
+ "height": "auto",
177
+ "justifyContent": "center",
178
+ "paddingHorizontal": 8,
179
+ "paddingVertical": 4,
180
+ "width": "auto",
181
+ },
182
+ false,
183
+ {
184
+ "borderColor": "#7FD898",
185
+ "borderWidth": 1,
186
+ },
187
+ ],
188
+ "testID": undefined,
189
+ },
190
+ "type": "View",
191
+ },
192
+ ],
193
+ "props": {
194
+ "style": {
195
+ "alignItems": "flex-start",
196
+ },
197
+ "testID": undefined,
198
+ },
199
+ "type": "View",
200
+ },
201
+ ],
202
+ "props": {
203
+ "style": {
204
+ "alignItems": "center",
205
+ "justifyContent": "center",
206
+ },
207
+ "testID": undefined,
208
+ },
209
+ "type": "View",
210
+ }
211
+ `;
212
+
213
+ exports[`TableBadge renders with warning status 1`] = `
214
+ {
215
+ "$$typeof": Symbol(react.test.json),
216
+ "children": [
217
+ {
218
+ "$$typeof": Symbol(react.test.json),
219
+ "children": [
220
+ {
221
+ "$$typeof": Symbol(react.test.json),
222
+ "children": [
223
+ {
224
+ "$$typeof": Symbol(react.test.json),
225
+ "children": [
226
+ "Review",
227
+ ],
228
+ "props": {
229
+ "style": {
230
+ "color": "#B14202",
231
+ "fontFamily": "text",
232
+ "fontSize": 10,
233
+ "fontWeight": "700",
234
+ },
235
+ },
236
+ "type": "Text",
237
+ },
238
+ ],
239
+ "props": {
240
+ "style": [
241
+ {
242
+ "alignItems": "center",
243
+ "backgroundColor": "#FFE3C6",
244
+ "borderRadius": 4,
245
+ "flexDirection": "row",
246
+ "height": "auto",
247
+ "justifyContent": "center",
248
+ "paddingHorizontal": 8,
249
+ "paddingVertical": 4,
250
+ "width": "auto",
251
+ },
252
+ false,
253
+ {
254
+ "borderColor": "#FCC58F",
255
+ "borderWidth": 1,
256
+ },
257
+ ],
258
+ "testID": undefined,
259
+ },
260
+ "type": "View",
261
+ },
262
+ ],
263
+ "props": {
264
+ "style": {
265
+ "alignItems": "flex-start",
266
+ },
267
+ "testID": undefined,
268
+ },
269
+ "type": "View",
270
+ },
271
+ ],
272
+ "props": {
273
+ "style": {
274
+ "alignItems": "center",
275
+ "justifyContent": "center",
276
+ },
277
+ "testID": undefined,
278
+ },
279
+ "type": "View",
280
+ }
281
+ `;
282
+
283
+ exports[`TableBadge renders with error status 1`] = `
284
+ {
285
+ "$$typeof": Symbol(react.test.json),
286
+ "children": [
287
+ {
288
+ "$$typeof": Symbol(react.test.json),
289
+ "children": [
290
+ {
291
+ "$$typeof": Symbol(react.test.json),
292
+ "children": [
293
+ {
294
+ "$$typeof": Symbol(react.test.json),
295
+ "children": [
296
+ "Rejected",
297
+ ],
298
+ "props": {
299
+ "style": {
300
+ "color": "#BD1111",
301
+ "fontFamily": "text",
302
+ "fontSize": 10,
303
+ "fontWeight": "700",
304
+ },
305
+ },
306
+ "type": "Text",
307
+ },
308
+ ],
309
+ "props": {
310
+ "style": [
311
+ {
312
+ "alignItems": "center",
313
+ "backgroundColor": "#FDD7D7",
314
+ "borderRadius": 4,
315
+ "flexDirection": "row",
316
+ "height": "auto",
317
+ "justifyContent": "center",
318
+ "paddingHorizontal": 8,
319
+ "paddingVertical": 4,
320
+ "width": "auto",
321
+ },
322
+ false,
323
+ {
324
+ "borderColor": "#F39E9E",
325
+ "borderWidth": 1,
326
+ },
327
+ ],
328
+ "testID": undefined,
329
+ },
330
+ "type": "View",
331
+ },
332
+ ],
333
+ "props": {
334
+ "style": {
335
+ "alignItems": "flex-start",
336
+ },
337
+ "testID": undefined,
338
+ },
339
+ "type": "View",
340
+ },
341
+ ],
342
+ "props": {
343
+ "style": {
344
+ "alignItems": "center",
345
+ "justifyContent": "center",
346
+ },
347
+ "testID": undefined,
348
+ },
349
+ "type": "View",
350
+ }
351
+ `;
352
+
353
+ exports[`TableBadge renders with icon 1`] = `
354
+ {
355
+ "$$typeof": Symbol(react.test.json),
356
+ "children": [
357
+ {
358
+ "$$typeof": Symbol(react.test.json),
359
+ "children": [
360
+ {
361
+ "$$typeof": Symbol(react.test.json),
362
+ "children": [
363
+ {
364
+ "$$typeof": Symbol(react.test.json),
365
+ "children": null,
366
+ "props": {
367
+ "style": {
368
+ "marginRight": 8,
369
+ },
370
+ "testID": "icon",
371
+ },
372
+ "type": "View",
373
+ },
374
+ {
375
+ "$$typeof": Symbol(react.test.json),
376
+ "children": [
377
+ "Complete",
378
+ ],
379
+ "props": {
380
+ "style": {
381
+ "color": "#1A7F36",
382
+ "fontFamily": "text",
383
+ "fontSize": 10,
384
+ "fontWeight": "700",
385
+ },
386
+ },
387
+ "type": "Text",
388
+ },
389
+ ],
390
+ "props": {
391
+ "style": [
392
+ {
393
+ "alignItems": "center",
394
+ "backgroundColor": "#DCF2E2",
395
+ "borderRadius": 4,
396
+ "flexDirection": "row",
397
+ "height": "auto",
398
+ "justifyContent": "center",
399
+ "paddingHorizontal": 8,
400
+ "paddingVertical": 4,
401
+ "width": "auto",
402
+ },
403
+ false,
404
+ {
405
+ "borderColor": "#7FD898",
406
+ "borderWidth": 1,
407
+ },
408
+ ],
409
+ "testID": undefined,
410
+ },
411
+ "type": "View",
412
+ },
413
+ ],
414
+ "props": {
415
+ "style": {
416
+ "alignItems": "flex-start",
417
+ },
418
+ "testID": undefined,
419
+ },
420
+ "type": "View",
421
+ },
422
+ ],
423
+ "props": {
424
+ "style": {
425
+ "alignItems": "center",
426
+ "justifyContent": "center",
427
+ },
428
+ "testID": undefined,
429
+ },
430
+ "type": "View",
431
+ }
432
+ `;
433
+
434
+ exports[`TableBadge renders select field when editing 1`] = `
435
+ {
436
+ "$$typeof": Symbol(react.test.json),
437
+ "children": [
438
+ {
439
+ "$$typeof": Symbol(react.test.json),
440
+ "children": [
441
+ {
442
+ "$$typeof": Symbol(react.test.json),
443
+ "children": [
444
+ {
445
+ "$$typeof": Symbol(react.test.json),
446
+ "children": [
447
+ {
448
+ "$$typeof": Symbol(react.test.json),
449
+ "children": [
450
+ {
451
+ "$$typeof": Symbol(react.test.json),
452
+ "children": null,
453
+ "props": {
454
+ "readOnly": true,
455
+ "style": {
456
+ "color": "#1C1C1C",
457
+ },
458
+ "testID": "text_input",
459
+ "value": "Option A",
460
+ },
461
+ "type": "TextInput",
462
+ },
463
+ {
464
+ "$$typeof": Symbol(react.test.json),
465
+ "children": null,
466
+ "props": {
467
+ "style": {
468
+ "pointerEvents": "none",
469
+ },
470
+ "testID": "icon_container",
471
+ },
472
+ "type": "View",
473
+ },
474
+ ],
475
+ "props": {
476
+ "style": {
477
+ "flexDirection": "row",
478
+ "justifyContent": "space-between",
479
+ "pointerEvents": "box-only",
480
+ "width": "100%",
481
+ },
482
+ "testID": undefined,
483
+ },
484
+ "type": "View",
485
+ },
486
+ ],
487
+ "props": {
488
+ "activeOpacity": 1,
489
+ "onPress": [Function],
490
+ "style": {
491
+ "alignItems": "center",
492
+ "flexDirection": "row",
493
+ "justifyContent": "center",
494
+ "minHeight": 40,
495
+ "width": "95%",
496
+ },
497
+ "testID": "ios_touchable_wrapper",
498
+ },
499
+ "type": "Pressable",
500
+ },
501
+ {
502
+ "$$typeof": Symbol(react.test.json),
503
+ "children": [
504
+ {
505
+ "$$typeof": Symbol(react.test.json),
506
+ "children": null,
507
+ "props": {
508
+ "aria-role": "button",
509
+ "onPress": [Function],
510
+ "style": {
511
+ "flex": 1,
512
+ },
513
+ "testID": "ios_modal_top",
514
+ },
515
+ "type": "Pressable",
516
+ },
517
+ {
518
+ "$$typeof": Symbol(react.test.json),
519
+ "children": [
520
+ {
521
+ "$$typeof": Symbol(react.test.json),
522
+ "children": null,
523
+ "props": {
524
+ "style": {
525
+ "flexDirection": "row",
526
+ },
527
+ "testID": undefined,
528
+ },
529
+ "type": "View",
530
+ },
531
+ {
532
+ "$$typeof": Symbol(react.test.json),
533
+ "children": [
534
+ {
535
+ "$$typeof": Symbol(react.test.json),
536
+ "children": [
537
+ {
538
+ "$$typeof": Symbol(react.test.json),
539
+ "children": [
540
+ "Done",
541
+ ],
542
+ "props": {
543
+ "allowFontScaling": false,
544
+ "style": [
545
+ {
546
+ "color": "#007aff",
547
+ "fontSize": 17,
548
+ "fontWeight": "600",
549
+ "paddingRight": 11,
550
+ "paddingTop": 1,
551
+ },
552
+ {},
553
+ ],
554
+ "testID": "done_text",
555
+ },
556
+ "type": "Text",
557
+ },
558
+ ],
559
+ "props": {
560
+ "style": undefined,
561
+ "testID": "needed_for_touchable",
562
+ },
563
+ "type": "View",
564
+ },
565
+ ],
566
+ "props": {
567
+ "hitSlop": {
568
+ "bottom": 4,
569
+ "left": 4,
570
+ "right": 4,
571
+ "top": 4,
572
+ },
573
+ "onPress": [Function],
574
+ "onPressIn": [Function],
575
+ "onPressOut": [Function],
576
+ "testID": "done_button",
577
+ },
578
+ "type": "Pressable",
579
+ },
580
+ ],
581
+ "props": {
582
+ "style": {
583
+ "alignItems": "center",
584
+ "backgroundColor": "#f8f8f8",
585
+ "borderTopColor": "#dedede",
586
+ "borderTopWidth": 1,
587
+ "flexDirection": "row",
588
+ "height": 45,
589
+ "justifyContent": "space-between",
590
+ "paddingHorizontal": 10,
591
+ "zIndex": 2,
592
+ },
593
+ "testID": "input_accessory_view",
594
+ },
595
+ "type": "View",
596
+ },
597
+ {
598
+ "$$typeof": Symbol(react.test.json),
599
+ "children": [
600
+ {
601
+ "$$typeof": Symbol(react.test.json),
602
+ "children": [
603
+ {
604
+ "$$typeof": Symbol(react.test.json),
605
+ "children": null,
606
+ "props": {
607
+ "color": undefined,
608
+ "label": "Please select an option.",
609
+ "value": "",
610
+ },
611
+ "type": "Picker.Item",
612
+ },
613
+ {
614
+ "$$typeof": Symbol(react.test.json),
615
+ "children": null,
616
+ "props": {
617
+ "color": undefined,
618
+ "label": "Option A",
619
+ "value": "a",
620
+ },
621
+ "type": "Picker.Item",
622
+ },
623
+ {
624
+ "$$typeof": Symbol(react.test.json),
625
+ "children": null,
626
+ "props": {
627
+ "color": undefined,
628
+ "label": "Option B",
629
+ "value": "b",
630
+ },
631
+ "type": "Picker.Item",
632
+ },
633
+ ],
634
+ "props": {
635
+ "onValueChange": [Function],
636
+ "selectedValue": "a",
637
+ "testID": "ios_picker",
638
+ },
639
+ "type": "Picker",
640
+ },
641
+ ],
642
+ "props": {
643
+ "style": [
644
+ {
645
+ "backgroundColor": "#d0d4da",
646
+ "justifyContent": "center",
647
+ },
648
+ {
649
+ "height": 215,
650
+ },
651
+ ],
652
+ "testID": undefined,
653
+ },
654
+ "type": "View",
655
+ },
656
+ ],
657
+ "props": {
658
+ "animationType": undefined,
659
+ "onOrientationChange": [Function],
660
+ "supportedOrientations": [
661
+ "portrait",
662
+ "landscape",
663
+ ],
664
+ "testID": "ios_modal",
665
+ "transparent": true,
666
+ "visible": false,
667
+ },
668
+ "type": "Modal",
669
+ },
670
+ ],
671
+ "props": {
672
+ "style": [
673
+ {
674
+ "alignItems": "center",
675
+ "alignSelf": "stretch",
676
+ "borderRadius": 4,
677
+ "borderWidth": 1,
678
+ "flexDirection": "row",
679
+ "justifyContent": "center",
680
+ "minHeight": 40,
681
+ "width": "100%",
682
+ },
683
+ {
684
+ "backgroundColor": "#FFFFFF",
685
+ "borderColor": "#9A9A9A",
686
+ },
687
+ false,
688
+ ],
689
+ "testID": undefined,
690
+ },
691
+ "type": "View",
692
+ },
693
+ ],
694
+ "props": {
695
+ "style": undefined,
696
+ "testID": undefined,
697
+ },
698
+ "type": "View",
699
+ },
700
+ ],
701
+ "props": {
702
+ "style": {
703
+ "alignItems": "center",
704
+ "justifyContent": "center",
705
+ },
706
+ "testID": undefined,
707
+ },
708
+ "type": "View",
709
+ }
710
+ `;