@ornikar/bumper 2.7.2-canary.1768566928.e85c568dc49c9180e37b7aec8792b1e8d45968a6.0 → 2.8.1-canary.1768839311.501438316959a9593513e74c70cb87b0597f2db6.0

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 (114) hide show
  1. package/CHANGELOG.md +19 -4
  2. package/CLAUDE.md +45 -0
  3. package/dist/definitions/index.d.ts +2 -0
  4. package/dist/definitions/index.d.ts.map +1 -1
  5. package/dist/definitions/system/content/icon/Icon.d.ts +21 -0
  6. package/dist/definitions/system/content/icon/Icon.d.ts.map +1 -0
  7. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts +1 -1
  8. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -1
  9. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts +1 -1
  10. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts.map +1 -1
  11. package/dist/definitions/system/core/primitives/Pressable.d.ts +0 -9
  12. package/dist/definitions/system/core/primitives/Pressable.d.ts.map +1 -1
  13. package/dist/definitions/system/core/primitives/ScrollView/ScrollView.d.ts +3 -0
  14. package/dist/definitions/system/core/primitives/ScrollView/ScrollView.d.ts.map +1 -0
  15. package/dist/definitions/system/core/{breakpoints/constants.d.ts → tokens/breakpoints.d.ts} +1 -1
  16. package/dist/definitions/system/core/tokens/breakpoints.d.ts.map +1 -0
  17. package/dist/definitions/tamagui.config.d.ts +2 -28
  18. package/dist/definitions/tamagui.config.d.ts.map +1 -1
  19. package/dist/index-metro.es.android.js +43 -26
  20. package/dist/index-metro.es.android.js.map +1 -1
  21. package/dist/index-metro.es.ios.js +43 -26
  22. package/dist/index-metro.es.ios.js.map +1 -1
  23. package/dist/index-node-22.22.cjs.js +44 -26
  24. package/dist/index-node-22.22.cjs.js.map +1 -1
  25. package/dist/index-node-22.22.cjs.web.js +44 -26
  26. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  27. package/dist/index-node-22.22.es.mjs +43 -26
  28. package/dist/index-node-22.22.es.mjs.map +1 -1
  29. package/dist/index-node-22.22.es.web.mjs +43 -26
  30. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  31. package/dist/index.es.js +37 -20
  32. package/dist/index.es.js.map +1 -1
  33. package/dist/index.es.web.js +37 -20
  34. package/dist/index.es.web.js.map +1 -1
  35. package/dist/tsbuildinfo +1 -1
  36. package/package.json +5 -2
  37. package/src/index.ts +2 -0
  38. package/src/system/content/icon/Icon.features.stories.tsx +116 -0
  39. package/src/system/content/icon/Icon.stories.tsx +44 -0
  40. package/src/system/content/icon/Icon.tsx +53 -0
  41. package/src/system/content/icon/__snapshots__/Icon.features.stories.tsx.snap +569 -0
  42. package/src/system/content/icon/__snapshots__/Icon.stories.tsx.snap +29 -0
  43. package/src/system/content/icon/__snapshots_web__/Icon.features.stories.tsx.snap +309 -0
  44. package/src/system/content/icon/__snapshots_web__/Icon.stories.tsx.snap +33 -0
  45. package/src/system/content/typography/Typography.features.stories.tsx +156 -0
  46. package/src/system/content/typography/Typography.stories.tsx +72 -166
  47. package/src/system/content/typography/__snapshots__/Typography.features.stories.tsx.snap +826 -0
  48. package/src/system/content/typography/__snapshots__/Typography.stories.tsx.snap +10 -1990
  49. package/src/system/content/typography/__snapshots_web__/Typography.features.stories.tsx.snap +501 -0
  50. package/src/system/content/typography/__snapshots_web__/Typography.stories.tsx.snap +6 -807
  51. package/src/system/core/breakpoints/hooks/useBreakpointValue.test.ts +1 -1
  52. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.test.ts +1 -1
  53. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.ts +1 -1
  54. package/src/system/core/breakpoints/utils/breakpointsUtils.test.ts +1 -1
  55. package/src/system/core/breakpoints/utils/breakpointsUtils.ts +1 -1
  56. package/src/system/core/primitives/Center.features.stories.tsx +63 -0
  57. package/src/system/core/primitives/Center.stories.tsx +111 -12
  58. package/src/system/core/primitives/Pressable.features.stories.tsx +171 -0
  59. package/src/system/core/primitives/Pressable.stories.tsx +82 -20
  60. package/src/system/core/primitives/Pressable.tsx +0 -9
  61. package/src/system/core/primitives/ScrollView/ScrollView.features.stories.tsx +84 -0
  62. package/src/system/core/primitives/ScrollView/ScrollView.stories.tsx +63 -0
  63. package/src/system/core/primitives/ScrollView/ScrollView.ts +2 -0
  64. package/src/system/core/primitives/ScrollView/__snapshots__/ScrollView.features.stories.tsx.snap +1245 -0
  65. package/src/system/core/primitives/ScrollView/__snapshots__/ScrollView.stories.tsx.snap +334 -0
  66. package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.features.stories.tsx.snap +503 -0
  67. package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.stories.tsx.snap +138 -0
  68. package/src/system/core/primitives/Stack.features.stories.tsx +179 -0
  69. package/src/system/core/primitives/Stack.stories.tsx +74 -44
  70. package/src/system/core/primitives/View.features.stories.tsx +452 -0
  71. package/src/system/core/primitives/View.stories.tsx +122 -9
  72. package/src/system/core/primitives/__snapshots__/Center.features.stories.tsx.snap +208 -0
  73. package/src/system/core/primitives/__snapshots__/Center.stories.tsx.snap +13 -8
  74. package/src/system/core/primitives/__snapshots__/Pressable.features.stories.tsx.snap +470 -0
  75. package/src/system/core/primitives/__snapshots__/Pressable.stories.tsx.snap +11 -10
  76. package/src/system/core/primitives/__snapshots__/Stack.features.stories.tsx.snap +1234 -0
  77. package/src/system/core/primitives/__snapshots__/Stack.stories.tsx.snap +63 -84
  78. package/src/system/core/primitives/__snapshots__/View.features.stories.tsx.snap +2338 -0
  79. package/src/system/core/primitives/__snapshots__/View.stories.tsx.snap +6 -4
  80. package/src/system/core/primitives/__snapshots_web__/Center.features.stories.tsx.snap +107 -0
  81. package/src/system/core/primitives/__snapshots_web__/Center.stories.tsx.snap +8 -5
  82. package/src/system/core/primitives/__snapshots_web__/Pressable.features.stories.tsx.snap +193 -0
  83. package/src/system/core/primitives/__snapshots_web__/Pressable.stories.tsx.snap +4 -4
  84. package/src/system/core/primitives/__snapshots_web__/Stack.features.stories.tsx.snap +515 -0
  85. package/src/system/core/primitives/__snapshots_web__/Stack.stories.tsx.snap +29 -21
  86. package/src/system/core/primitives/__snapshots_web__/View.features.stories.tsx.snap +941 -0
  87. package/src/system/core/primitives/__snapshots_web__/View.stories.tsx.snap +2 -2
  88. package/src/system/core/themes/__snapshots__/light.stories.tsx.snap +3822 -2233
  89. package/src/system/core/themes/__snapshots_web__/light.stories.tsx.snap +1243 -991
  90. package/src/system/core/themes/light.stories.tsx +61 -28
  91. package/src/system/core/tokens/__snapshots__/breakpoints.stories.tsx.snap +423 -0
  92. package/src/system/core/tokens/__snapshots__/fonts.stories.tsx.snap +1635 -0
  93. package/src/system/core/tokens/__snapshots__/radius.stories.tsx.snap +383 -0
  94. package/src/system/core/tokens/__snapshots__/size.stories.tsx.snap +864 -0
  95. package/src/system/core/tokens/__snapshots__/space.stories.tsx.snap +945 -0
  96. package/src/system/core/tokens/__snapshots_web__/breakpoints.stories.tsx.snap +194 -0
  97. package/src/system/core/tokens/__snapshots_web__/fonts.stories.tsx.snap +729 -0
  98. package/src/system/core/tokens/__snapshots_web__/radius.stories.tsx.snap +174 -0
  99. package/src/system/core/tokens/__snapshots_web__/size.stories.tsx.snap +363 -0
  100. package/src/system/core/tokens/__snapshots_web__/space.stories.tsx.snap +396 -0
  101. package/src/system/core/tokens/breakpoints.stories.tsx +46 -0
  102. package/src/system/core/tokens/fonts.stories.tsx +39 -0
  103. package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +4337 -2747
  104. package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1524 -1256
  105. package/src/system/core/tokens/palettes/deepPurpleColorPalette.stories.tsx +42 -28
  106. package/src/system/core/tokens/radius.stories.tsx +39 -0
  107. package/src/system/core/tokens/size.stories.tsx +39 -0
  108. package/src/system/core/tokens/space.stories.tsx +40 -0
  109. package/src/tamagui.config.ts +3 -3
  110. package/dist/definitions/system/core/breakpoints/constants.d.ts.map +0 -1
  111. package/src/system/core/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +0 -49
  112. package/src/system/core/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +0 -43
  113. package/src/system/core/breakpoints/breakpoints.stories.tsx +0 -45
  114. /package/src/system/core/{breakpoints/constants.ts → tokens/breakpoints.ts} +0 -0
@@ -0,0 +1,826 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Content/Typography/Features BodyVariants 1`] = `
4
+ <RNCSafeAreaProvider
5
+ onInsetsChange={[Function]}
6
+ style={
7
+ [
8
+ {
9
+ "flex": 1,
10
+ },
11
+ undefined,
12
+ ]
13
+ }
14
+ >
15
+ <View
16
+ style={
17
+ {
18
+ "flexDirection": "column",
19
+ "gap": 16,
20
+ }
21
+ }
22
+ >
23
+ <Text
24
+ style={
25
+ {
26
+ "fontFamily": "GTStandardRegular",
27
+ "fontSize": 24,
28
+ "letterSpacing": 0.3,
29
+ "lineHeight": 32,
30
+ }
31
+ }
32
+ suppressHighlighting={true}
33
+ >
34
+ Body XL Regular - The quick brown fox jumps over the lazy dog
35
+ </Text>
36
+ <Text
37
+ style={
38
+ {
39
+ "fontFamily": "GTStandardRegular",
40
+ "fontSize": 18,
41
+ "letterSpacing": 0.3,
42
+ "lineHeight": 26,
43
+ }
44
+ }
45
+ suppressHighlighting={true}
46
+ >
47
+ Body L Regular - The quick brown fox jumps over the lazy dog
48
+ </Text>
49
+ <Text
50
+ style={
51
+ {
52
+ "fontFamily": "GTStandardRegular",
53
+ "fontSize": 16,
54
+ "letterSpacing": 0.3,
55
+ "lineHeight": 24,
56
+ }
57
+ }
58
+ suppressHighlighting={true}
59
+ >
60
+ Body M Regular - The quick brown fox jumps over the lazy dog
61
+ </Text>
62
+ <Text
63
+ style={
64
+ {
65
+ "fontFamily": "GTStandardRegular",
66
+ "fontSize": 14,
67
+ "letterSpacing": 0.3,
68
+ "lineHeight": 20,
69
+ }
70
+ }
71
+ suppressHighlighting={true}
72
+ >
73
+ Body S Regular - The quick brown fox jumps over the lazy dog
74
+ </Text>
75
+ <Text
76
+ style={
77
+ {
78
+ "fontFamily": "GTStandardRegular",
79
+ "fontSize": 12,
80
+ "letterSpacing": 0.3,
81
+ "lineHeight": 16,
82
+ }
83
+ }
84
+ suppressHighlighting={true}
85
+ >
86
+ Body XS Regular - The quick brown fox jumps over the lazy dog
87
+ </Text>
88
+ </View>
89
+ </RNCSafeAreaProvider>
90
+ `;
91
+
92
+ exports[`Bumper/Content/Typography/Features BodyVariantsBold 1`] = `
93
+ <RNCSafeAreaProvider
94
+ onInsetsChange={[Function]}
95
+ style={
96
+ [
97
+ {
98
+ "flex": 1,
99
+ },
100
+ undefined,
101
+ ]
102
+ }
103
+ >
104
+ <View
105
+ style={
106
+ {
107
+ "flexDirection": "column",
108
+ "gap": 16,
109
+ }
110
+ }
111
+ >
112
+ <Text
113
+ style={
114
+ {
115
+ "fontFamily": "GTStandardBold",
116
+ "fontSize": 24,
117
+ "letterSpacing": 0.3,
118
+ "lineHeight": 32,
119
+ }
120
+ }
121
+ suppressHighlighting={true}
122
+ >
123
+ Body XL Bold - The quick brown fox jumps over the lazy dog
124
+ </Text>
125
+ <Text
126
+ style={
127
+ {
128
+ "fontFamily": "GTStandardBold",
129
+ "fontSize": 18,
130
+ "letterSpacing": 0.3,
131
+ "lineHeight": 26,
132
+ }
133
+ }
134
+ suppressHighlighting={true}
135
+ >
136
+ Body L Bold - The quick brown fox jumps over the lazy dog
137
+ </Text>
138
+ <Text
139
+ style={
140
+ {
141
+ "fontFamily": "GTStandardBold",
142
+ "fontSize": 16,
143
+ "letterSpacing": 0.3,
144
+ "lineHeight": 24,
145
+ }
146
+ }
147
+ suppressHighlighting={true}
148
+ >
149
+ Body M Bold - The quick brown fox jumps over the lazy dog
150
+ </Text>
151
+ <Text
152
+ style={
153
+ {
154
+ "fontFamily": "GTStandardBold",
155
+ "fontSize": 14,
156
+ "letterSpacing": 0.3,
157
+ "lineHeight": 20,
158
+ }
159
+ }
160
+ suppressHighlighting={true}
161
+ >
162
+ Body S Bold - The quick brown fox jumps over the lazy dog
163
+ </Text>
164
+ <Text
165
+ style={
166
+ {
167
+ "fontFamily": "GTStandardBold",
168
+ "fontSize": 12,
169
+ "letterSpacing": 0.3,
170
+ "lineHeight": 16,
171
+ }
172
+ }
173
+ suppressHighlighting={true}
174
+ >
175
+ Body XS Bold - The quick brown fox jumps over the lazy dog
176
+ </Text>
177
+ </View>
178
+ </RNCSafeAreaProvider>
179
+ `;
180
+
181
+ exports[`Bumper/Content/Typography/Features ContentCapsVariants 1`] = `
182
+ <RNCSafeAreaProvider
183
+ onInsetsChange={[Function]}
184
+ style={
185
+ [
186
+ {
187
+ "flex": 1,
188
+ },
189
+ undefined,
190
+ ]
191
+ }
192
+ >
193
+ <View
194
+ style={
195
+ {
196
+ "flexDirection": "column",
197
+ "gap": 16,
198
+ }
199
+ }
200
+ >
201
+ <Text
202
+ style={
203
+ {
204
+ "fontFamily": "GTStandardBold",
205
+ "fontSize": 40,
206
+ "letterSpacing": 0,
207
+ "lineHeight": 40,
208
+ }
209
+ }
210
+ suppressHighlighting={true}
211
+ >
212
+ CONTENT CAPS 3XL
213
+ </Text>
214
+ <Text
215
+ style={
216
+ {
217
+ "fontFamily": "GTStandardBold",
218
+ "fontSize": 32,
219
+ "letterSpacing": 0,
220
+ "lineHeight": 40,
221
+ }
222
+ }
223
+ suppressHighlighting={true}
224
+ >
225
+ CONTENT CAPS 2XL
226
+ </Text>
227
+ <Text
228
+ style={
229
+ {
230
+ "fontFamily": "GTStandardBold",
231
+ "fontSize": 24,
232
+ "letterSpacing": 0,
233
+ "lineHeight": 28,
234
+ }
235
+ }
236
+ suppressHighlighting={true}
237
+ >
238
+ CONTENT CAPS XL
239
+ </Text>
240
+ <Text
241
+ style={
242
+ {
243
+ "fontFamily": "GTStandardBold",
244
+ "fontSize": 18,
245
+ "letterSpacing": 0,
246
+ "lineHeight": 20,
247
+ }
248
+ }
249
+ suppressHighlighting={true}
250
+ >
251
+ CONTENT CAPS L
252
+ </Text>
253
+ <Text
254
+ style={
255
+ {
256
+ "fontFamily": "GTStandardBold",
257
+ "fontSize": 16,
258
+ "letterSpacing": 0,
259
+ "lineHeight": 18,
260
+ }
261
+ }
262
+ suppressHighlighting={true}
263
+ >
264
+ CONTENT CAPS M
265
+ </Text>
266
+ <Text
267
+ style={
268
+ {
269
+ "fontFamily": "GTStandardBold",
270
+ "fontSize": 14,
271
+ "letterSpacing": 0,
272
+ "lineHeight": 16,
273
+ }
274
+ }
275
+ suppressHighlighting={true}
276
+ >
277
+ CONTENT CAPS S
278
+ </Text>
279
+ <Text
280
+ style={
281
+ {
282
+ "fontFamily": "GTStandardBold",
283
+ "fontSize": 12,
284
+ "letterSpacing": 0,
285
+ "lineHeight": 14,
286
+ }
287
+ }
288
+ suppressHighlighting={true}
289
+ >
290
+ CONTENT CAPS XS
291
+ </Text>
292
+ </View>
293
+ </RNCSafeAreaProvider>
294
+ `;
295
+
296
+ exports[`Bumper/Content/Typography/Features ContextInheritance 1`] = `
297
+ <RNCSafeAreaProvider
298
+ onInsetsChange={[Function]}
299
+ style={
300
+ [
301
+ {
302
+ "flex": 1,
303
+ },
304
+ undefined,
305
+ ]
306
+ }
307
+ >
308
+ <View
309
+ style={
310
+ {
311
+ "flexDirection": "column",
312
+ "gap": 24,
313
+ }
314
+ }
315
+ >
316
+ <View
317
+ style={
318
+ {
319
+ "flexDirection": "column",
320
+ "gap": 8,
321
+ }
322
+ }
323
+ >
324
+ <Text
325
+ style={
326
+ {
327
+ "color": "#505050",
328
+ "fontFamily": "GTStandardRegular",
329
+ "fontSize": 14,
330
+ "letterSpacing": 0.3,
331
+ "lineHeight": 20,
332
+ }
333
+ }
334
+ suppressHighlighting={true}
335
+ >
336
+ Parent variant
337
+ </Text>
338
+ <Text
339
+ style={
340
+ {
341
+ "color": "#563B56",
342
+ "fontFamily": "GTStandardBold",
343
+ "fontSize": 18,
344
+ "letterSpacing": 0.3,
345
+ "lineHeight": 26,
346
+ }
347
+ }
348
+ suppressHighlighting={true}
349
+ >
350
+ Parent: body-l bold accent
351
+ <Text
352
+ style={
353
+ {
354
+ "color": "#563B56",
355
+ "fontFamily": "GTStandardBold",
356
+ "fontSize": 18,
357
+ "letterSpacing": 0.3,
358
+ "lineHeight": 26,
359
+ }
360
+ }
361
+ suppressHighlighting={true}
362
+ >
363
+ - Child inherits all (variant, weight, color)
364
+ </Text>
365
+ </Text>
366
+ </View>
367
+ <View
368
+ style={
369
+ {
370
+ "flexDirection": "column",
371
+ "gap": 8,
372
+ }
373
+ }
374
+ >
375
+ <Text
376
+ style={
377
+ {
378
+ "color": "#505050",
379
+ "fontFamily": "GTStandardRegular",
380
+ "fontSize": 14,
381
+ "letterSpacing": 0.3,
382
+ "lineHeight": 20,
383
+ }
384
+ }
385
+ suppressHighlighting={true}
386
+ >
387
+ Weight inheritance
388
+ </Text>
389
+ <Text
390
+ style={
391
+ {
392
+ "fontFamily": "GTStandardBold",
393
+ "fontSize": 16,
394
+ "letterSpacing": 0.3,
395
+ "lineHeight": 24,
396
+ }
397
+ }
398
+ suppressHighlighting={true}
399
+ >
400
+ Parent: body-m bold
401
+ <Text
402
+ style={
403
+ {
404
+ "fontFamily": "GTStandardBold",
405
+ "fontSize": 16,
406
+ "letterSpacing": 0.3,
407
+ "lineHeight": 24,
408
+ }
409
+ }
410
+ suppressHighlighting={true}
411
+ >
412
+ - Child inherits weight
413
+ </Text>
414
+ </Text>
415
+ </View>
416
+ <View
417
+ style={
418
+ {
419
+ "flexDirection": "column",
420
+ "gap": 8,
421
+ }
422
+ }
423
+ >
424
+ <Text
425
+ style={
426
+ {
427
+ "color": "#505050",
428
+ "fontFamily": "GTStandardRegular",
429
+ "fontSize": 14,
430
+ "letterSpacing": 0.3,
431
+ "lineHeight": 20,
432
+ }
433
+ }
434
+ suppressHighlighting={true}
435
+ >
436
+ Color inheritance
437
+ </Text>
438
+ <Text
439
+ style={
440
+ {
441
+ "color": "#357105",
442
+ "fontFamily": "GTStandard",
443
+ "fontSize": 16,
444
+ "letterSpacing": 0.3,
445
+ "lineHeight": 24,
446
+ }
447
+ }
448
+ suppressHighlighting={true}
449
+ >
450
+ Parent: success color
451
+ <Text
452
+ style={
453
+ {
454
+ "color": "#357105",
455
+ "fontFamily": "GTStandard",
456
+ "fontSize": 16,
457
+ "letterSpacing": 0.3,
458
+ "lineHeight": 24,
459
+ }
460
+ }
461
+ suppressHighlighting={true}
462
+ >
463
+ - Child inherits color
464
+ </Text>
465
+ </Text>
466
+ </View>
467
+ <View
468
+ style={
469
+ {
470
+ "flexDirection": "column",
471
+ "gap": 8,
472
+ }
473
+ }
474
+ >
475
+ <Text
476
+ style={
477
+ {
478
+ "color": "#505050",
479
+ "fontFamily": "GTStandardRegular",
480
+ "fontSize": 14,
481
+ "letterSpacing": 0.3,
482
+ "lineHeight": 20,
483
+ }
484
+ }
485
+ suppressHighlighting={true}
486
+ >
487
+ Override inherited values
488
+ </Text>
489
+ <Text
490
+ style={
491
+ {
492
+ "color": "#563B56",
493
+ "fontFamily": "GTStandardBold",
494
+ "fontSize": 16,
495
+ "letterSpacing": 0.3,
496
+ "lineHeight": 24,
497
+ }
498
+ }
499
+ suppressHighlighting={true}
500
+ >
501
+ Parent: body-m bold accent
502
+ <Text
503
+ style={
504
+ {
505
+ "color": "#BD100F",
506
+ "fontFamily": "GTStandardRegular",
507
+ "fontSize": 14,
508
+ "letterSpacing": 0.3,
509
+ "lineHeight": 20,
510
+ }
511
+ }
512
+ suppressHighlighting={true}
513
+ >
514
+
515
+ - Child overrides all
516
+ </Text>
517
+ </Text>
518
+ </View>
519
+ </View>
520
+ </RNCSafeAreaProvider>
521
+ `;
522
+
523
+ exports[`Bumper/Content/Typography/Features HeaderComponents 1`] = `
524
+ <RNCSafeAreaProvider
525
+ onInsetsChange={[Function]}
526
+ style={
527
+ [
528
+ {
529
+ "flex": 1,
530
+ },
531
+ undefined,
532
+ ]
533
+ }
534
+ >
535
+ <View
536
+ style={
537
+ {
538
+ "flexDirection": "column",
539
+ "gap": 16,
540
+ }
541
+ }
542
+ >
543
+ <Text
544
+ aria-level={1}
545
+ role="heading"
546
+ style={
547
+ {
548
+ "fontFamily": "GTStandardSemibold",
549
+ "fontSize": 56,
550
+ "letterSpacing": 0,
551
+ "lineHeight": 64,
552
+ }
553
+ }
554
+ suppressHighlighting={true}
555
+ >
556
+ Header 1 - heading-2xl
557
+ </Text>
558
+ <Text
559
+ aria-level={2}
560
+ role="heading"
561
+ style={
562
+ {
563
+ "fontFamily": "GTStandardSemibold",
564
+ "fontSize": 48,
565
+ "letterSpacing": 0,
566
+ "lineHeight": 56,
567
+ }
568
+ }
569
+ suppressHighlighting={true}
570
+ >
571
+ Header 2 - heading-xl
572
+ </Text>
573
+ <Text
574
+ aria-level={3}
575
+ role="heading"
576
+ style={
577
+ {
578
+ "fontFamily": "GTStandardSemibold",
579
+ "fontSize": 38,
580
+ "letterSpacing": 0,
581
+ "lineHeight": 44,
582
+ }
583
+ }
584
+ suppressHighlighting={true}
585
+ >
586
+ Header 3 - heading-l
587
+ </Text>
588
+ <Text
589
+ aria-level={4}
590
+ role="heading"
591
+ style={
592
+ {
593
+ "fontFamily": "GTStandardSemibold",
594
+ "fontSize": 28,
595
+ "letterSpacing": 0,
596
+ "lineHeight": 32,
597
+ }
598
+ }
599
+ suppressHighlighting={true}
600
+ >
601
+ Header 4 - heading-m
602
+ </Text>
603
+ <Text
604
+ aria-level={5}
605
+ role="heading"
606
+ style={
607
+ {
608
+ "fontFamily": "GTStandardSemibold",
609
+ "fontSize": 24,
610
+ "letterSpacing": 0,
611
+ "lineHeight": 28,
612
+ }
613
+ }
614
+ suppressHighlighting={true}
615
+ >
616
+ Header 5 - heading-s
617
+ </Text>
618
+ <Text
619
+ aria-level={6}
620
+ role="heading"
621
+ style={
622
+ {
623
+ "fontFamily": "GTStandardSemibold",
624
+ "fontSize": 20,
625
+ "letterSpacing": 0,
626
+ "lineHeight": 24,
627
+ }
628
+ }
629
+ suppressHighlighting={true}
630
+ >
631
+ Header 6 - heading-xs
632
+ </Text>
633
+ </View>
634
+ </RNCSafeAreaProvider>
635
+ `;
636
+
637
+ exports[`Bumper/Content/Typography/Features HeadingVariants 1`] = `
638
+ <RNCSafeAreaProvider
639
+ onInsetsChange={[Function]}
640
+ style={
641
+ [
642
+ {
643
+ "flex": 1,
644
+ },
645
+ undefined,
646
+ ]
647
+ }
648
+ >
649
+ <View
650
+ style={
651
+ {
652
+ "flexDirection": "column",
653
+ "gap": 16,
654
+ }
655
+ }
656
+ >
657
+ <Text
658
+ style={
659
+ {
660
+ "fontFamily": "GTStandardSemibold",
661
+ "fontSize": 56,
662
+ "letterSpacing": 0,
663
+ "lineHeight": 64,
664
+ }
665
+ }
666
+ suppressHighlighting={true}
667
+ >
668
+ Heading 2XL - Semibold
669
+ </Text>
670
+ <Text
671
+ style={
672
+ {
673
+ "fontFamily": "GTStandardSemibold",
674
+ "fontSize": 48,
675
+ "letterSpacing": 0,
676
+ "lineHeight": 56,
677
+ }
678
+ }
679
+ suppressHighlighting={true}
680
+ >
681
+ Heading XL - Semibold
682
+ </Text>
683
+ <Text
684
+ style={
685
+ {
686
+ "fontFamily": "GTStandardSemibold",
687
+ "fontSize": 38,
688
+ "letterSpacing": 0,
689
+ "lineHeight": 44,
690
+ }
691
+ }
692
+ suppressHighlighting={true}
693
+ >
694
+ Heading L - Semibold
695
+ </Text>
696
+ <Text
697
+ style={
698
+ {
699
+ "fontFamily": "GTStandardSemibold",
700
+ "fontSize": 28,
701
+ "letterSpacing": 0,
702
+ "lineHeight": 32,
703
+ }
704
+ }
705
+ suppressHighlighting={true}
706
+ >
707
+ Heading M - Semibold
708
+ </Text>
709
+ <Text
710
+ style={
711
+ {
712
+ "fontFamily": "GTStandardSemibold",
713
+ "fontSize": 24,
714
+ "letterSpacing": 0,
715
+ "lineHeight": 28,
716
+ }
717
+ }
718
+ suppressHighlighting={true}
719
+ >
720
+ Heading S - Semibold
721
+ </Text>
722
+ <Text
723
+ style={
724
+ {
725
+ "fontFamily": "GTStandardSemibold",
726
+ "fontSize": 20,
727
+ "letterSpacing": 0,
728
+ "lineHeight": 24,
729
+ }
730
+ }
731
+ suppressHighlighting={true}
732
+ >
733
+ Heading XS - Semibold
734
+ </Text>
735
+ <Text
736
+ style={
737
+ {
738
+ "fontFamily": "GTStandardSemibold",
739
+ "fontSize": 20,
740
+ "letterSpacing": 0,
741
+ "lineHeight": 20,
742
+ }
743
+ }
744
+ suppressHighlighting={true}
745
+ >
746
+ Heading 2XS - Semibold
747
+ </Text>
748
+ </View>
749
+ </RNCSafeAreaProvider>
750
+ `;
751
+
752
+ exports[`Bumper/Content/Typography/Features LabelVariants 1`] = `
753
+ <RNCSafeAreaProvider
754
+ onInsetsChange={[Function]}
755
+ style={
756
+ [
757
+ {
758
+ "flex": 1,
759
+ },
760
+ undefined,
761
+ ]
762
+ }
763
+ >
764
+ <View
765
+ style={
766
+ {
767
+ "flexDirection": "column",
768
+ "gap": 16,
769
+ }
770
+ }
771
+ >
772
+ <Text
773
+ style={
774
+ {
775
+ "fontFamily": "GTStandardSemibold",
776
+ "fontSize": 18,
777
+ "letterSpacing": 0,
778
+ "lineHeight": 26,
779
+ }
780
+ }
781
+ suppressHighlighting={true}
782
+ >
783
+ Label XL - Semibold
784
+ </Text>
785
+ <Text
786
+ style={
787
+ {
788
+ "fontFamily": "GTStandardSemibold",
789
+ "fontSize": 16,
790
+ "letterSpacing": 0,
791
+ "lineHeight": 20,
792
+ }
793
+ }
794
+ suppressHighlighting={true}
795
+ >
796
+ Label L - Semibold
797
+ </Text>
798
+ <Text
799
+ style={
800
+ {
801
+ "fontFamily": "GTStandardSemibold",
802
+ "fontSize": 14,
803
+ "letterSpacing": 0,
804
+ "lineHeight": 18,
805
+ }
806
+ }
807
+ suppressHighlighting={true}
808
+ >
809
+ Label M - Semibold
810
+ </Text>
811
+ <Text
812
+ style={
813
+ {
814
+ "fontFamily": "GTStandardSemibold",
815
+ "fontSize": 12,
816
+ "letterSpacing": 0,
817
+ "lineHeight": 14,
818
+ }
819
+ }
820
+ suppressHighlighting={true}
821
+ >
822
+ Label S - Semibold
823
+ </Text>
824
+ </View>
825
+ </RNCSafeAreaProvider>
826
+ `;