@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,456 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`Tooltip renders without tooltip when text is empty 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ "No tooltip",
11
+ ],
12
+ "props": {
13
+ "numberOfLines": 0,
14
+ "selectable": undefined,
15
+ "style": {
16
+ "color": "#1C1C1C",
17
+ "fontFamily": "text-regular",
18
+ "fontSize": 14,
19
+ "textAlign": "left",
20
+ },
21
+ "testID": undefined,
22
+ },
23
+ "type": "Text",
24
+ },
25
+ ],
26
+ "props": {},
27
+ "type": "View",
28
+ }
29
+ `;
30
+
31
+ exports[`Tooltip renders with tooltip text 1`] = `
32
+ {
33
+ "$$typeof": Symbol(react.test.json),
34
+ "children": [
35
+ {
36
+ "$$typeof": Symbol(react.test.json),
37
+ "children": [
38
+ {
39
+ "$$typeof": Symbol(react.test.json),
40
+ "children": [
41
+ {
42
+ "$$typeof": Symbol(react.test.json),
43
+ "children": [
44
+ "Hover for info",
45
+ ],
46
+ "props": {
47
+ "numberOfLines": 0,
48
+ "selectable": undefined,
49
+ "style": {
50
+ "color": "#1C1C1C",
51
+ "fontFamily": "text-regular",
52
+ "fontSize": 14,
53
+ "textAlign": "left",
54
+ },
55
+ "testID": undefined,
56
+ },
57
+ "type": "Text",
58
+ },
59
+ ],
60
+ "props": {},
61
+ "type": "View",
62
+ },
63
+ ],
64
+ "props": {
65
+ "hitSlop": {
66
+ "bottom": 10,
67
+ "left": 15,
68
+ "right": 15,
69
+ "top": 10,
70
+ },
71
+ "onPointerEnter": [Function],
72
+ "onPointerLeave": [Function],
73
+ "onPress": [Function],
74
+ "onTouchStart": [Function],
75
+ "ref": {
76
+ "current": null,
77
+ },
78
+ "style": undefined,
79
+ "testID": undefined,
80
+ },
81
+ "type": "View",
82
+ },
83
+ ],
84
+ "props": {
85
+ "style": undefined,
86
+ "testID": undefined,
87
+ },
88
+ "type": "View",
89
+ }
90
+ `;
91
+
92
+ exports[`Tooltip renders with top position (default) 1`] = `
93
+ {
94
+ "$$typeof": Symbol(react.test.json),
95
+ "children": [
96
+ {
97
+ "$$typeof": Symbol(react.test.json),
98
+ "children": [
99
+ {
100
+ "$$typeof": Symbol(react.test.json),
101
+ "children": [
102
+ {
103
+ "$$typeof": Symbol(react.test.json),
104
+ "children": [
105
+ "Content",
106
+ ],
107
+ "props": {
108
+ "numberOfLines": 0,
109
+ "selectable": undefined,
110
+ "style": {
111
+ "color": "#1C1C1C",
112
+ "fontFamily": "text-regular",
113
+ "fontSize": 14,
114
+ "textAlign": "left",
115
+ },
116
+ "testID": undefined,
117
+ },
118
+ "type": "Text",
119
+ },
120
+ ],
121
+ "props": {},
122
+ "type": "View",
123
+ },
124
+ ],
125
+ "props": {
126
+ "hitSlop": {
127
+ "bottom": 10,
128
+ "left": 15,
129
+ "right": 15,
130
+ "top": 10,
131
+ },
132
+ "onPointerEnter": [Function],
133
+ "onPointerLeave": [Function],
134
+ "onPress": [Function],
135
+ "onTouchStart": [Function],
136
+ "ref": {
137
+ "current": null,
138
+ },
139
+ "style": undefined,
140
+ "testID": undefined,
141
+ },
142
+ "type": "View",
143
+ },
144
+ ],
145
+ "props": {
146
+ "style": undefined,
147
+ "testID": undefined,
148
+ },
149
+ "type": "View",
150
+ }
151
+ `;
152
+
153
+ exports[`Tooltip renders with bottom position 1`] = `
154
+ {
155
+ "$$typeof": Symbol(react.test.json),
156
+ "children": [
157
+ {
158
+ "$$typeof": Symbol(react.test.json),
159
+ "children": [
160
+ {
161
+ "$$typeof": Symbol(react.test.json),
162
+ "children": [
163
+ {
164
+ "$$typeof": Symbol(react.test.json),
165
+ "children": [
166
+ "Content",
167
+ ],
168
+ "props": {
169
+ "numberOfLines": 0,
170
+ "selectable": undefined,
171
+ "style": {
172
+ "color": "#1C1C1C",
173
+ "fontFamily": "text-regular",
174
+ "fontSize": 14,
175
+ "textAlign": "left",
176
+ },
177
+ "testID": undefined,
178
+ },
179
+ "type": "Text",
180
+ },
181
+ ],
182
+ "props": {},
183
+ "type": "View",
184
+ },
185
+ ],
186
+ "props": {
187
+ "hitSlop": {
188
+ "bottom": 10,
189
+ "left": 15,
190
+ "right": 15,
191
+ "top": 10,
192
+ },
193
+ "onPointerEnter": [Function],
194
+ "onPointerLeave": [Function],
195
+ "onPress": [Function],
196
+ "onTouchStart": [Function],
197
+ "ref": {
198
+ "current": null,
199
+ },
200
+ "style": undefined,
201
+ "testID": undefined,
202
+ },
203
+ "type": "View",
204
+ },
205
+ ],
206
+ "props": {
207
+ "style": undefined,
208
+ "testID": undefined,
209
+ },
210
+ "type": "View",
211
+ }
212
+ `;
213
+
214
+ exports[`Tooltip renders with left position 1`] = `
215
+ {
216
+ "$$typeof": Symbol(react.test.json),
217
+ "children": [
218
+ {
219
+ "$$typeof": Symbol(react.test.json),
220
+ "children": [
221
+ {
222
+ "$$typeof": Symbol(react.test.json),
223
+ "children": [
224
+ {
225
+ "$$typeof": Symbol(react.test.json),
226
+ "children": [
227
+ "Content",
228
+ ],
229
+ "props": {
230
+ "numberOfLines": 0,
231
+ "selectable": undefined,
232
+ "style": {
233
+ "color": "#1C1C1C",
234
+ "fontFamily": "text-regular",
235
+ "fontSize": 14,
236
+ "textAlign": "left",
237
+ },
238
+ "testID": undefined,
239
+ },
240
+ "type": "Text",
241
+ },
242
+ ],
243
+ "props": {},
244
+ "type": "View",
245
+ },
246
+ ],
247
+ "props": {
248
+ "hitSlop": {
249
+ "bottom": 10,
250
+ "left": 15,
251
+ "right": 15,
252
+ "top": 10,
253
+ },
254
+ "onPointerEnter": [Function],
255
+ "onPointerLeave": [Function],
256
+ "onPress": [Function],
257
+ "onTouchStart": [Function],
258
+ "ref": {
259
+ "current": null,
260
+ },
261
+ "style": undefined,
262
+ "testID": undefined,
263
+ },
264
+ "type": "View",
265
+ },
266
+ ],
267
+ "props": {
268
+ "style": undefined,
269
+ "testID": undefined,
270
+ },
271
+ "type": "View",
272
+ }
273
+ `;
274
+
275
+ exports[`Tooltip renders with right position 1`] = `
276
+ {
277
+ "$$typeof": Symbol(react.test.json),
278
+ "children": [
279
+ {
280
+ "$$typeof": Symbol(react.test.json),
281
+ "children": [
282
+ {
283
+ "$$typeof": Symbol(react.test.json),
284
+ "children": [
285
+ {
286
+ "$$typeof": Symbol(react.test.json),
287
+ "children": [
288
+ "Content",
289
+ ],
290
+ "props": {
291
+ "numberOfLines": 0,
292
+ "selectable": undefined,
293
+ "style": {
294
+ "color": "#1C1C1C",
295
+ "fontFamily": "text-regular",
296
+ "fontSize": 14,
297
+ "textAlign": "left",
298
+ },
299
+ "testID": undefined,
300
+ },
301
+ "type": "Text",
302
+ },
303
+ ],
304
+ "props": {},
305
+ "type": "View",
306
+ },
307
+ ],
308
+ "props": {
309
+ "hitSlop": {
310
+ "bottom": 10,
311
+ "left": 15,
312
+ "right": 15,
313
+ "top": 10,
314
+ },
315
+ "onPointerEnter": [Function],
316
+ "onPointerLeave": [Function],
317
+ "onPress": [Function],
318
+ "onTouchStart": [Function],
319
+ "ref": {
320
+ "current": null,
321
+ },
322
+ "style": undefined,
323
+ "testID": undefined,
324
+ },
325
+ "type": "View",
326
+ },
327
+ ],
328
+ "props": {
329
+ "style": undefined,
330
+ "testID": undefined,
331
+ },
332
+ "type": "View",
333
+ }
334
+ `;
335
+
336
+ exports[`Tooltip renders with arrow 1`] = `
337
+ {
338
+ "$$typeof": Symbol(react.test.json),
339
+ "children": [
340
+ {
341
+ "$$typeof": Symbol(react.test.json),
342
+ "children": [
343
+ {
344
+ "$$typeof": Symbol(react.test.json),
345
+ "children": [
346
+ {
347
+ "$$typeof": Symbol(react.test.json),
348
+ "children": [
349
+ "Content",
350
+ ],
351
+ "props": {
352
+ "numberOfLines": 0,
353
+ "selectable": undefined,
354
+ "style": {
355
+ "color": "#1C1C1C",
356
+ "fontFamily": "text-regular",
357
+ "fontSize": 14,
358
+ "textAlign": "left",
359
+ },
360
+ "testID": undefined,
361
+ },
362
+ "type": "Text",
363
+ },
364
+ ],
365
+ "props": {},
366
+ "type": "View",
367
+ },
368
+ ],
369
+ "props": {
370
+ "hitSlop": {
371
+ "bottom": 10,
372
+ "left": 15,
373
+ "right": 15,
374
+ "top": 10,
375
+ },
376
+ "onPointerEnter": [Function],
377
+ "onPointerLeave": [Function],
378
+ "onPress": [Function],
379
+ "onTouchStart": [Function],
380
+ "ref": {
381
+ "current": null,
382
+ },
383
+ "style": undefined,
384
+ "testID": undefined,
385
+ },
386
+ "type": "View",
387
+ },
388
+ ],
389
+ "props": {
390
+ "style": undefined,
391
+ "testID": undefined,
392
+ },
393
+ "type": "View",
394
+ }
395
+ `;
396
+
397
+ exports[`Tooltip renders with arrow and specific position 1`] = `
398
+ {
399
+ "$$typeof": Symbol(react.test.json),
400
+ "children": [
401
+ {
402
+ "$$typeof": Symbol(react.test.json),
403
+ "children": [
404
+ {
405
+ "$$typeof": Symbol(react.test.json),
406
+ "children": [
407
+ {
408
+ "$$typeof": Symbol(react.test.json),
409
+ "children": [
410
+ "Content",
411
+ ],
412
+ "props": {
413
+ "numberOfLines": 0,
414
+ "selectable": undefined,
415
+ "style": {
416
+ "color": "#1C1C1C",
417
+ "fontFamily": "text-regular",
418
+ "fontSize": 14,
419
+ "textAlign": "left",
420
+ },
421
+ "testID": undefined,
422
+ },
423
+ "type": "Text",
424
+ },
425
+ ],
426
+ "props": {},
427
+ "type": "View",
428
+ },
429
+ ],
430
+ "props": {
431
+ "hitSlop": {
432
+ "bottom": 10,
433
+ "left": 15,
434
+ "right": 15,
435
+ "top": 10,
436
+ },
437
+ "onPointerEnter": [Function],
438
+ "onPointerLeave": [Function],
439
+ "onPress": [Function],
440
+ "onTouchStart": [Function],
441
+ "ref": {
442
+ "current": null,
443
+ },
444
+ "style": undefined,
445
+ "testID": undefined,
446
+ },
447
+ "type": "View",
448
+ },
449
+ ],
450
+ "props": {
451
+ "style": undefined,
452
+ "testID": undefined,
453
+ },
454
+ "type": "View",
455
+ }
456
+ `;