@terreno/ui 0.0.15 → 0.0.16

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 (151) hide show
  1. package/dist/DateUtilities.js +2 -2
  2. package/package.json +1 -1
  3. package/src/ActionSheet.test.tsx +77 -0
  4. package/src/Banner.test.tsx +106 -0
  5. package/src/Body.test.tsx +79 -0
  6. package/src/BooleanField.test.tsx +84 -0
  7. package/src/Button.test.tsx +160 -0
  8. package/src/Card.test.tsx +61 -0
  9. package/src/CheckBox.test.tsx +53 -0
  10. package/src/CustomSelectField.test.tsx +85 -0
  11. package/src/DataTable.test.tsx +133 -0
  12. package/src/DateTimeActionSheet.test.tsx +16 -0
  13. package/src/DateUtilities.tsx +2 -2
  14. package/src/DecimalRangeActionSheet.test.tsx +46 -0
  15. package/src/DismissButton.test.tsx +49 -0
  16. package/src/EmailField.test.tsx +106 -0
  17. package/src/ErrorBoundary.test.tsx +44 -0
  18. package/src/ErrorPage.test.tsx +44 -0
  19. package/src/Field.test.tsx +128 -0
  20. package/src/Heading.test.tsx +66 -0
  21. package/src/HeightActionSheet.test.tsx +34 -0
  22. package/src/Hyperlink.test.tsx +52 -0
  23. package/src/Icon.test.tsx +61 -0
  24. package/src/IconButton.test.tsx +145 -0
  25. package/src/Image.test.tsx +65 -0
  26. package/src/ImageBackground.test.tsx +46 -0
  27. package/src/InfoModalIcon.test.tsx +54 -0
  28. package/src/InfoTooltipButton.test.tsx +22 -0
  29. package/src/Link.test.tsx +64 -0
  30. package/src/MarkdownView.test.tsx +50 -0
  31. package/src/MobileAddressAutoComplete.test.tsx +15 -0
  32. package/src/Modal.test.tsx +169 -0
  33. package/src/ModalSheet.test.tsx +20 -0
  34. package/src/MultiselectField.test.tsx +134 -0
  35. package/src/NumberField.test.tsx +133 -0
  36. package/src/NumberPickerActionSheet.test.tsx +46 -0
  37. package/src/OpenAPIContext.test.tsx +36 -0
  38. package/src/Page.test.tsx +128 -0
  39. package/src/Pagination.test.tsx +86 -0
  40. package/src/PasswordField.test.tsx +17 -0
  41. package/src/PhoneNumberField.test.tsx +79 -0
  42. package/src/PickerSelect.test.tsx +16 -0
  43. package/src/Radio.test.tsx +30 -0
  44. package/src/RadioField.test.tsx +89 -0
  45. package/src/SectionDivider.test.tsx +17 -0
  46. package/src/SegmentedControl.test.tsx +84 -0
  47. package/src/SelectBadge.test.tsx +103 -0
  48. package/src/SelectField.test.tsx +84 -0
  49. package/src/SideDrawer.test.tsx +99 -0
  50. package/src/Signature.test.tsx +15 -0
  51. package/src/SignatureField.test.tsx +16 -0
  52. package/src/Spinner.test.tsx +74 -0
  53. package/src/SplitPage.test.tsx +15 -0
  54. package/src/TapToEdit.test.tsx +147 -0
  55. package/src/TerrenoProvider.test.tsx +36 -0
  56. package/src/Text.test.tsx +147 -0
  57. package/src/Theme.test.tsx +153 -0
  58. package/src/TimezonePicker.test.tsx +57 -0
  59. package/src/Toast.test.tsx +82 -0
  60. package/src/Tooltip.test.tsx +89 -0
  61. package/src/UnifiedAddressAutoComplete.test.tsx +15 -0
  62. package/src/Utilities.test.tsx +237 -0
  63. package/src/WebAddressAutocomplete.test.tsx +15 -0
  64. package/src/__snapshots__/ActionSheet.test.tsx.snap +889 -0
  65. package/src/__snapshots__/Banner.test.tsx.snap +546 -0
  66. package/src/__snapshots__/Body.test.tsx.snap +685 -0
  67. package/src/__snapshots__/BooleanField.test.tsx.snap +553 -0
  68. package/src/__snapshots__/Button.test.tsx.snap +1281 -0
  69. package/src/__snapshots__/Card.test.tsx.snap +195 -0
  70. package/src/__snapshots__/CheckBox.test.tsx.snap +190 -0
  71. package/src/__snapshots__/CustomSelectField.test.tsx.snap +2299 -0
  72. package/src/__snapshots__/DataTable.test.tsx.snap +9614 -0
  73. package/src/__snapshots__/DecimalRangeActionSheet.test.tsx.snap +1719 -0
  74. package/src/__snapshots__/DismissButton.test.tsx.snap +91 -0
  75. package/src/__snapshots__/EmailField.test.tsx.snap +168 -0
  76. package/src/__snapshots__/ErrorBoundary.test.tsx.snap +57 -0
  77. package/src/__snapshots__/ErrorPage.test.tsx.snap +195 -0
  78. package/src/__snapshots__/Field.test.tsx.snap +4510 -0
  79. package/src/__snapshots__/Heading.test.tsx.snap +193 -0
  80. package/src/__snapshots__/HeightActionSheet.test.tsx.snap +1269 -0
  81. package/src/__snapshots__/Hyperlink.test.tsx.snap +81 -0
  82. package/src/__snapshots__/Icon.test.tsx.snap +47 -0
  83. package/src/__snapshots__/IconButton.test.tsx.snap +29 -0
  84. package/src/__snapshots__/Image.test.tsx.snap +282 -0
  85. package/src/__snapshots__/ImageBackground.test.tsx.snap +120 -0
  86. package/src/__snapshots__/InfoModalIcon.test.tsx.snap +1229 -0
  87. package/src/__snapshots__/InfoTooltipButton.test.tsx.snap +7 -0
  88. package/src/__snapshots__/Link.test.tsx.snap +41 -0
  89. package/src/__snapshots__/MarkdownView.test.tsx.snap +965 -0
  90. package/src/__snapshots__/Modal.test.tsx.snap +1477 -0
  91. package/src/__snapshots__/MultiselectField.test.tsx.snap +1454 -0
  92. package/src/__snapshots__/NumberField.test.tsx.snap +80 -0
  93. package/src/__snapshots__/NumberPickerActionSheet.test.tsx.snap +5359 -0
  94. package/src/__snapshots__/OpenAPIContext.test.tsx.snap +14 -0
  95. package/src/__snapshots__/Page.test.tsx.snap +1647 -0
  96. package/src/__snapshots__/Pagination.test.tsx.snap +1913 -0
  97. package/src/__snapshots__/PasswordField.test.tsx.snap +15 -0
  98. package/src/__snapshots__/PhoneNumberField.test.tsx.snap +405 -0
  99. package/src/__snapshots__/PickerSelect.test.tsx.snap +266 -0
  100. package/src/__snapshots__/Radio.test.tsx.snap +111 -0
  101. package/src/__snapshots__/RadioField.test.tsx.snap +944 -0
  102. package/src/__snapshots__/SectionDivider.test.tsx.snap +37 -0
  103. package/src/__snapshots__/SegmentedControl.test.tsx.snap +1422 -0
  104. package/src/__snapshots__/SelectBadge.test.tsx.snap +2377 -0
  105. package/src/__snapshots__/SelectField.test.tsx.snap +1658 -0
  106. package/src/__snapshots__/SideDrawer.test.tsx.snap +1857 -0
  107. package/src/__snapshots__/SignatureField.test.tsx.snap +133 -0
  108. package/src/__snapshots__/Spinner.test.tsx.snap +73 -0
  109. package/src/__snapshots__/TapToEdit.test.tsx.snap +839 -0
  110. package/src/__snapshots__/TerrenoProvider.test.tsx.snap +203 -0
  111. package/src/__snapshots__/Text.test.tsx.snap +558 -0
  112. package/src/__snapshots__/TimezonePicker.test.tsx.snap +6676 -0
  113. package/src/__snapshots__/Toast.test.tsx.snap +1982 -0
  114. package/src/__snapshots__/Tooltip.test.tsx.snap +456 -0
  115. package/src/bunSetup.ts +101 -8
  116. package/src/fieldElements/FieldError.test.tsx +40 -0
  117. package/src/fieldElements/FieldHelperText.test.tsx +34 -0
  118. package/src/fieldElements/FieldTitle.test.tsx +30 -0
  119. package/src/fieldElements/__snapshots__/FieldError.test.tsx.snap +85 -0
  120. package/src/fieldElements/__snapshots__/FieldHelperText.test.tsx.snap +30 -0
  121. package/src/fieldElements/__snapshots__/FieldTitle.test.tsx.snap +19 -0
  122. package/src/icons/MobileIcon.test.tsx +21 -0
  123. package/src/icons/OfflineIcon.test.tsx +21 -0
  124. package/src/icons/OnlineIcon.test.tsx +21 -0
  125. package/src/icons/OutOfficeIcon.test.tsx +21 -0
  126. package/src/icons/__snapshots__/MobileIcon.test.tsx.snap +160 -0
  127. package/src/icons/__snapshots__/OfflineIcon.test.tsx.snap +133 -0
  128. package/src/icons/__snapshots__/OnlineIcon.test.tsx.snap +124 -0
  129. package/src/icons/__snapshots__/OutOfficeIcon.test.tsx.snap +160 -0
  130. package/src/table/Table.test.tsx +107 -0
  131. package/src/table/TableBadge.test.tsx +53 -0
  132. package/src/table/TableBoolean.test.tsx +38 -0
  133. package/src/table/TableDate.test.tsx +27 -0
  134. package/src/table/TableHeader.test.tsx +67 -0
  135. package/src/table/TableHeaderCell.test.tsx +113 -0
  136. package/src/table/TableIconButton.test.tsx +51 -0
  137. package/src/table/TableNumber.test.tsx +45 -0
  138. package/src/table/TableRow.test.tsx +83 -0
  139. package/src/table/TableText.test.tsx +30 -0
  140. package/src/table/TableTitle.test.tsx +30 -0
  141. package/src/table/__snapshots__/Table.test.tsx.snap +2090 -0
  142. package/src/table/__snapshots__/TableBadge.test.tsx.snap +710 -0
  143. package/src/table/__snapshots__/TableBoolean.test.tsx.snap +231 -0
  144. package/src/table/__snapshots__/TableDate.test.tsx.snap +61 -0
  145. package/src/table/__snapshots__/TableHeader.test.tsx.snap +1089 -0
  146. package/src/table/__snapshots__/TableHeaderCell.test.tsx.snap +1773 -0
  147. package/src/table/__snapshots__/TableIconButton.test.tsx.snap +81 -0
  148. package/src/table/__snapshots__/TableNumber.test.tsx.snap +91 -0
  149. package/src/table/__snapshots__/TableRow.test.tsx.snap +1391 -0
  150. package/src/table/__snapshots__/TableText.test.tsx.snap +73 -0
  151. package/src/table/__snapshots__/TableTitle.test.tsx.snap +109 -0
@@ -0,0 +1,558 @@
1
+ // Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2
+
3
+ exports[`Text renders correctly with default props 1`] = `
4
+ {
5
+ "$$typeof": Symbol(react.test.json),
6
+ "children": [
7
+ {
8
+ "$$typeof": Symbol(react.test.json),
9
+ "children": [
10
+ "Hello World",
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[`Text renders with sm size 1`] = `
32
+ {
33
+ "$$typeof": Symbol(react.test.json),
34
+ "children": [
35
+ {
36
+ "$$typeof": Symbol(react.test.json),
37
+ "children": [
38
+ "Small text",
39
+ ],
40
+ "props": {
41
+ "numberOfLines": 0,
42
+ "selectable": undefined,
43
+ "style": {
44
+ "color": "#1C1C1C",
45
+ "fontFamily": "text-regular",
46
+ "fontSize": 10,
47
+ "textAlign": "left",
48
+ },
49
+ "testID": undefined,
50
+ },
51
+ "type": "Text",
52
+ },
53
+ ],
54
+ "props": {},
55
+ "type": "View",
56
+ }
57
+ `;
58
+
59
+ exports[`Text renders with md size (default) 1`] = `
60
+ {
61
+ "$$typeof": Symbol(react.test.json),
62
+ "children": [
63
+ {
64
+ "$$typeof": Symbol(react.test.json),
65
+ "children": [
66
+ "Medium text",
67
+ ],
68
+ "props": {
69
+ "numberOfLines": 0,
70
+ "selectable": undefined,
71
+ "style": {
72
+ "color": "#1C1C1C",
73
+ "fontFamily": "text-regular",
74
+ "fontSize": 14,
75
+ "textAlign": "left",
76
+ },
77
+ "testID": undefined,
78
+ },
79
+ "type": "Text",
80
+ },
81
+ ],
82
+ "props": {},
83
+ "type": "View",
84
+ }
85
+ `;
86
+
87
+ exports[`Text renders with lg size 1`] = `
88
+ {
89
+ "$$typeof": Symbol(react.test.json),
90
+ "children": [
91
+ {
92
+ "$$typeof": Symbol(react.test.json),
93
+ "children": [
94
+ "Large text",
95
+ ],
96
+ "props": {
97
+ "numberOfLines": 0,
98
+ "selectable": undefined,
99
+ "style": {
100
+ "color": "#1C1C1C",
101
+ "fontFamily": "text-medium",
102
+ "fontSize": 16,
103
+ "textAlign": "left",
104
+ },
105
+ "testID": undefined,
106
+ },
107
+ "type": "Text",
108
+ },
109
+ ],
110
+ "props": {},
111
+ "type": "View",
112
+ }
113
+ `;
114
+
115
+ exports[`Text renders with xl size 1`] = `
116
+ {
117
+ "$$typeof": Symbol(react.test.json),
118
+ "children": [
119
+ {
120
+ "$$typeof": Symbol(react.test.json),
121
+ "children": [
122
+ "Extra large text",
123
+ ],
124
+ "props": {
125
+ "numberOfLines": 0,
126
+ "selectable": undefined,
127
+ "style": {
128
+ "color": "#1C1C1C",
129
+ "fontFamily": "text-medium",
130
+ "fontSize": 18,
131
+ "textAlign": "left",
132
+ },
133
+ "testID": undefined,
134
+ },
135
+ "type": "Text",
136
+ },
137
+ ],
138
+ "props": {},
139
+ "type": "View",
140
+ }
141
+ `;
142
+
143
+ exports[`Text renders with 2xl size 1`] = `
144
+ {
145
+ "$$typeof": Symbol(react.test.json),
146
+ "children": [
147
+ {
148
+ "$$typeof": Symbol(react.test.json),
149
+ "children": [
150
+ "2XL text",
151
+ ],
152
+ "props": {
153
+ "numberOfLines": 0,
154
+ "selectable": undefined,
155
+ "style": {
156
+ "color": "#1C1C1C",
157
+ "fontFamily": "text-medium",
158
+ "fontSize": 40,
159
+ "textAlign": "left",
160
+ },
161
+ "testID": undefined,
162
+ },
163
+ "type": "Text",
164
+ },
165
+ ],
166
+ "props": {},
167
+ "type": "View",
168
+ }
169
+ `;
170
+
171
+ exports[`Text renders bold text 1`] = `
172
+ {
173
+ "$$typeof": Symbol(react.test.json),
174
+ "children": [
175
+ {
176
+ "$$typeof": Symbol(react.test.json),
177
+ "children": [
178
+ "Bold text",
179
+ ],
180
+ "props": {
181
+ "numberOfLines": 0,
182
+ "selectable": undefined,
183
+ "style": {
184
+ "color": "#1C1C1C",
185
+ "fontFamily": "text-bold",
186
+ "fontSize": 14,
187
+ "textAlign": "left",
188
+ },
189
+ "testID": undefined,
190
+ },
191
+ "type": "Text",
192
+ },
193
+ ],
194
+ "props": {},
195
+ "type": "View",
196
+ }
197
+ `;
198
+
199
+ exports[`Text renders italic text 1`] = `
200
+ {
201
+ "$$typeof": Symbol(react.test.json),
202
+ "children": [
203
+ {
204
+ "$$typeof": Symbol(react.test.json),
205
+ "children": [
206
+ "Italic text",
207
+ ],
208
+ "props": {
209
+ "numberOfLines": 0,
210
+ "selectable": undefined,
211
+ "style": {
212
+ "color": "#1C1C1C",
213
+ "fontFamily": "text-regular-italic",
214
+ "fontSize": 14,
215
+ "fontStyle": "italic",
216
+ "textAlign": "left",
217
+ },
218
+ "testID": undefined,
219
+ },
220
+ "type": "Text",
221
+ },
222
+ ],
223
+ "props": {},
224
+ "type": "View",
225
+ }
226
+ `;
227
+
228
+ exports[`Text renders bold italic text 1`] = `
229
+ {
230
+ "$$typeof": Symbol(react.test.json),
231
+ "children": [
232
+ {
233
+ "$$typeof": Symbol(react.test.json),
234
+ "children": [
235
+ "Bold italic text",
236
+ ],
237
+ "props": {
238
+ "numberOfLines": 0,
239
+ "selectable": undefined,
240
+ "style": {
241
+ "color": "#1C1C1C",
242
+ "fontFamily": "text-bold-italic",
243
+ "fontSize": 14,
244
+ "fontStyle": "italic",
245
+ "textAlign": "left",
246
+ },
247
+ "testID": undefined,
248
+ },
249
+ "type": "Text",
250
+ },
251
+ ],
252
+ "props": {},
253
+ "type": "View",
254
+ }
255
+ `;
256
+
257
+ exports[`Text renders underlined text 1`] = `
258
+ {
259
+ "$$typeof": Symbol(react.test.json),
260
+ "children": [
261
+ {
262
+ "$$typeof": Symbol(react.test.json),
263
+ "children": [
264
+ "Underlined text",
265
+ ],
266
+ "props": {
267
+ "numberOfLines": 0,
268
+ "selectable": undefined,
269
+ "style": {
270
+ "color": "#1C1C1C",
271
+ "fontFamily": "text-regular",
272
+ "fontSize": 14,
273
+ "textAlign": "left",
274
+ "textDecorationLine": "underline",
275
+ },
276
+ "testID": undefined,
277
+ },
278
+ "type": "Text",
279
+ },
280
+ ],
281
+ "props": {},
282
+ "type": "View",
283
+ }
284
+ `;
285
+
286
+ exports[`Text renders with left alignment (default) 1`] = `
287
+ {
288
+ "$$typeof": Symbol(react.test.json),
289
+ "children": [
290
+ {
291
+ "$$typeof": Symbol(react.test.json),
292
+ "children": [
293
+ "Left aligned",
294
+ ],
295
+ "props": {
296
+ "numberOfLines": 0,
297
+ "selectable": undefined,
298
+ "style": {
299
+ "color": "#1C1C1C",
300
+ "fontFamily": "text-regular",
301
+ "fontSize": 14,
302
+ "textAlign": "left",
303
+ },
304
+ "testID": undefined,
305
+ },
306
+ "type": "Text",
307
+ },
308
+ ],
309
+ "props": {},
310
+ "type": "View",
311
+ }
312
+ `;
313
+
314
+ exports[`Text renders with center alignment 1`] = `
315
+ {
316
+ "$$typeof": Symbol(react.test.json),
317
+ "children": [
318
+ {
319
+ "$$typeof": Symbol(react.test.json),
320
+ "children": [
321
+ "Centered",
322
+ ],
323
+ "props": {
324
+ "numberOfLines": 0,
325
+ "selectable": undefined,
326
+ "style": {
327
+ "color": "#1C1C1C",
328
+ "fontFamily": "text-regular",
329
+ "fontSize": 14,
330
+ "textAlign": "center",
331
+ },
332
+ "testID": undefined,
333
+ },
334
+ "type": "Text",
335
+ },
336
+ ],
337
+ "props": {},
338
+ "type": "View",
339
+ }
340
+ `;
341
+
342
+ exports[`Text renders with right alignment 1`] = `
343
+ {
344
+ "$$typeof": Symbol(react.test.json),
345
+ "children": [
346
+ {
347
+ "$$typeof": Symbol(react.test.json),
348
+ "children": [
349
+ "Right aligned",
350
+ ],
351
+ "props": {
352
+ "numberOfLines": 0,
353
+ "selectable": undefined,
354
+ "style": {
355
+ "color": "#1C1C1C",
356
+ "fontFamily": "text-regular",
357
+ "fontSize": 14,
358
+ "textAlign": "right",
359
+ },
360
+ "testID": undefined,
361
+ },
362
+ "type": "Text",
363
+ },
364
+ ],
365
+ "props": {},
366
+ "type": "View",
367
+ }
368
+ `;
369
+
370
+ exports[`Text renders with secondary color 1`] = `
371
+ {
372
+ "$$typeof": Symbol(react.test.json),
373
+ "children": [
374
+ {
375
+ "$$typeof": Symbol(react.test.json),
376
+ "children": [
377
+ "Secondary color",
378
+ ],
379
+ "props": {
380
+ "numberOfLines": 0,
381
+ "selectable": undefined,
382
+ "style": {
383
+ "color": undefined,
384
+ "fontFamily": "text-regular",
385
+ "fontSize": 14,
386
+ "textAlign": "left",
387
+ },
388
+ "testID": undefined,
389
+ },
390
+ "type": "Text",
391
+ },
392
+ ],
393
+ "props": {},
394
+ "type": "View",
395
+ }
396
+ `;
397
+
398
+ exports[`Text renders with accent color 1`] = `
399
+ {
400
+ "$$typeof": Symbol(react.test.json),
401
+ "children": [
402
+ {
403
+ "$$typeof": Symbol(react.test.json),
404
+ "children": [
405
+ "Accent color",
406
+ ],
407
+ "props": {
408
+ "numberOfLines": 0,
409
+ "selectable": undefined,
410
+ "style": {
411
+ "color": "#956A00",
412
+ "fontFamily": "text-regular",
413
+ "fontSize": 14,
414
+ "textAlign": "left",
415
+ },
416
+ "testID": undefined,
417
+ },
418
+ "type": "Text",
419
+ },
420
+ ],
421
+ "props": {},
422
+ "type": "View",
423
+ }
424
+ `;
425
+
426
+ exports[`Text renders with link color 1`] = `
427
+ {
428
+ "$$typeof": Symbol(react.test.json),
429
+ "children": [
430
+ {
431
+ "$$typeof": Symbol(react.test.json),
432
+ "children": [
433
+ "Link color",
434
+ ],
435
+ "props": {
436
+ "numberOfLines": 0,
437
+ "selectable": undefined,
438
+ "style": {
439
+ "color": "#0A7092",
440
+ "fontFamily": "text-regular",
441
+ "fontSize": 14,
442
+ "textAlign": "left",
443
+ },
444
+ "testID": undefined,
445
+ },
446
+ "type": "Text",
447
+ },
448
+ ],
449
+ "props": {},
450
+ "type": "View",
451
+ }
452
+ `;
453
+
454
+ exports[`Text renders with truncate 1`] = `
455
+ {
456
+ "$$typeof": Symbol(react.test.json),
457
+ "children": [
458
+ {
459
+ "$$typeof": Symbol(react.test.json),
460
+ "children": [
461
+ "This is a long text that should be truncated",
462
+ ],
463
+ "props": {
464
+ "numberOfLines": 1,
465
+ "selectable": undefined,
466
+ "style": {
467
+ "color": "#1C1C1C",
468
+ "fontFamily": "text-regular",
469
+ "fontSize": 14,
470
+ "textAlign": "left",
471
+ },
472
+ "testID": undefined,
473
+ },
474
+ "type": "Text",
475
+ },
476
+ ],
477
+ "props": {},
478
+ "type": "View",
479
+ }
480
+ `;
481
+
482
+ exports[`Text renders with numberOfLines 1`] = `
483
+ {
484
+ "$$typeof": Symbol(react.test.json),
485
+ "children": [
486
+ {
487
+ "$$typeof": Symbol(react.test.json),
488
+ "children": [
489
+ "Multiple lines of text",
490
+ ],
491
+ "props": {
492
+ "numberOfLines": 2,
493
+ "selectable": undefined,
494
+ "style": {
495
+ "color": "#1C1C1C",
496
+ "fontFamily": "text-regular",
497
+ "fontSize": 14,
498
+ "textAlign": "left",
499
+ },
500
+ "testID": undefined,
501
+ },
502
+ "type": "Text",
503
+ },
504
+ ],
505
+ "props": {},
506
+ "type": "View",
507
+ }
508
+ `;
509
+
510
+ exports[`Text renders with skipLinking 1`] = `
511
+ {
512
+ "$$typeof": Symbol(react.test.json),
513
+ "children": [
514
+ "No hyperlinks",
515
+ ],
516
+ "props": {
517
+ "numberOfLines": 0,
518
+ "selectable": undefined,
519
+ "style": {
520
+ "color": "#1C1C1C",
521
+ "fontFamily": "text-regular",
522
+ "fontSize": 14,
523
+ "textAlign": "left",
524
+ },
525
+ "testID": undefined,
526
+ },
527
+ "type": "Text",
528
+ }
529
+ `;
530
+
531
+ exports[`Text renders with multiple style props 1`] = `
532
+ {
533
+ "$$typeof": Symbol(react.test.json),
534
+ "children": [
535
+ {
536
+ "$$typeof": Symbol(react.test.json),
537
+ "children": [
538
+ "Styled text",
539
+ ],
540
+ "props": {
541
+ "numberOfLines": 0,
542
+ "selectable": undefined,
543
+ "style": {
544
+ "color": "#956A00",
545
+ "fontFamily": "text-bold",
546
+ "fontSize": 16,
547
+ "textAlign": "center",
548
+ "textDecorationLine": "underline",
549
+ },
550
+ "testID": undefined,
551
+ },
552
+ "type": "Text",
553
+ },
554
+ ],
555
+ "props": {},
556
+ "type": "View",
557
+ }
558
+ `;