@ornikar/bumper 1.1.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 (108) hide show
  1. package/.eslintrc.json +3 -0
  2. package/.vscode/settings.json +3 -0
  3. package/CHANGELOG.md +20 -0
  4. package/dist/definitions/components/breakpoints/SwitchBreakpoins.d.ts +5 -0
  5. package/dist/definitions/components/breakpoints/SwitchBreakpoins.d.ts.map +1 -0
  6. package/dist/definitions/components/breakpoints/hooks/useBreakpointValue.d.ts +3 -0
  7. package/dist/definitions/components/breakpoints/hooks/useBreakpointValue.d.ts.map +1 -0
  8. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts +3 -0
  9. package/dist/definitions/components/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -0
  10. package/dist/definitions/components/breakpoints/hooks/useWindowSize.d.ts +2 -0
  11. package/dist/definitions/components/breakpoints/hooks/useWindowSize.d.ts.map +1 -0
  12. package/dist/definitions/components/breakpoints/utils/breakpointsUtils.d.ts +10 -0
  13. package/dist/definitions/components/breakpoints/utils/breakpointsUtils.d.ts.map +1 -0
  14. package/dist/definitions/components/primitives/Stacks.d.ts +9 -0
  15. package/dist/definitions/components/primitives/Stacks.d.ts.map +1 -0
  16. package/dist/definitions/components/primitives/View.d.ts +5 -0
  17. package/dist/definitions/components/primitives/View.d.ts.map +1 -0
  18. package/dist/definitions/components/typography/Typograhy.d.ts +40 -0
  19. package/dist/definitions/components/typography/Typograhy.d.ts.map +1 -0
  20. package/dist/definitions/components/typography/utils/getTypeAndWeightValues.d.ts +9 -0
  21. package/dist/definitions/components/typography/utils/getTypeAndWeightValues.d.ts.map +1 -0
  22. package/dist/definitions/core/BumperDecorator.d.ts +2 -0
  23. package/dist/definitions/core/BumperDecorator.d.ts.map +1 -0
  24. package/dist/definitions/core/BumperProvider.d.ts +6 -0
  25. package/dist/definitions/core/BumperProvider.d.ts.map +1 -0
  26. package/dist/definitions/index.d.ts +10 -0
  27. package/dist/definitions/index.d.ts.map +1 -0
  28. package/dist/definitions/story-components/StorySection.d.ts +20 -0
  29. package/dist/definitions/story-components/StorySection.d.ts.map +1 -0
  30. package/dist/definitions/story-components/StoryTitle.d.ts +6 -0
  31. package/dist/definitions/story-components/StoryTitle.d.ts.map +1 -0
  32. package/dist/definitions/tamagui.config.d.ts +148 -0
  33. package/dist/definitions/tamagui.config.d.ts.map +1 -0
  34. package/dist/definitions/themes/light.d.ts +53 -0
  35. package/dist/definitions/themes/light.d.ts.map +1 -0
  36. package/dist/definitions/themes/palettes/deepPurpleColorPalette.d.ts +86 -0
  37. package/dist/definitions/themes/palettes/deepPurpleColorPalette.d.ts.map +1 -0
  38. package/dist/definitions/themes/utils/breakpoints.d.ts +15 -0
  39. package/dist/definitions/themes/utils/breakpoints.d.ts.map +1 -0
  40. package/dist/definitions/tokens/fonts.d.ts +18 -0
  41. package/dist/definitions/tokens/fonts.d.ts.map +1 -0
  42. package/dist/definitions/tokens/size.d.ts +11 -0
  43. package/dist/definitions/tokens/size.d.ts.map +1 -0
  44. package/dist/definitions/tokens/space.d.ts +16 -0
  45. package/dist/definitions/tokens/space.d.ts.map +1 -0
  46. package/dist/index-metro.es.android.js +396 -0
  47. package/dist/index-metro.es.android.js.map +1 -0
  48. package/dist/index-metro.es.ios.js +396 -0
  49. package/dist/index-metro.es.ios.js.map +1 -0
  50. package/dist/index-node-22.17.cjs.js +405 -0
  51. package/dist/index-node-22.17.cjs.js.map +1 -0
  52. package/dist/index-node-22.17.cjs.web.js +405 -0
  53. package/dist/index-node-22.17.cjs.web.js.map +1 -0
  54. package/dist/index-node-22.17.es.mjs +395 -0
  55. package/dist/index-node-22.17.es.mjs.map +1 -0
  56. package/dist/index-node-22.17.es.web.mjs +395 -0
  57. package/dist/index-node-22.17.es.web.mjs.map +1 -0
  58. package/dist/index.es.js +392 -0
  59. package/dist/index.es.js.map +1 -0
  60. package/dist/index.es.web.js +392 -0
  61. package/dist/index.es.web.js.map +1 -0
  62. package/dist/tsbuildinfo +1 -0
  63. package/package.json +79 -0
  64. package/src/.eslintrc.json +20 -0
  65. package/src/components/breakpoints/SwitchBreakpoins.tsx +12 -0
  66. package/src/components/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +49 -0
  67. package/src/components/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +43 -0
  68. package/src/components/breakpoints/breakpoints.stories.tsx +45 -0
  69. package/src/components/breakpoints/hooks/useBreakpointValue.ts +12 -0
  70. package/src/components/breakpoints/hooks/useCurrentBreakpointName.ts +20 -0
  71. package/src/components/breakpoints/hooks/useWindowSize.ts +1 -0
  72. package/src/components/breakpoints/utils/breakpointsUtils.test.ts +85 -0
  73. package/src/components/breakpoints/utils/breakpointsUtils.ts +28 -0
  74. package/src/components/primitives/Stack.stories.tsx +62 -0
  75. package/src/components/primitives/Stacks.ts +19 -0
  76. package/src/components/primitives/View.stories.tsx +13 -0
  77. package/src/components/primitives/View.ts +5 -0
  78. package/src/components/primitives/__snapshots__/Stack.stories.tsx.snap +376 -0
  79. package/src/components/primitives/__snapshots__/View.stories.tsx.snap +25 -0
  80. package/src/components/primitives/__snapshots_web__/Stack.stories.tsx.snap +190 -0
  81. package/src/components/primitives/__snapshots_web__/View.stories.tsx.snap +28 -0
  82. package/src/components/typography/Typograhy.tsx +130 -0
  83. package/src/components/typography/Typography.stories.tsx +144 -0
  84. package/src/components/typography/__snapshots__/Typography.stories.tsx.snap +1471 -0
  85. package/src/components/typography/__snapshots_web__/Typography.stories.tsx.snap +605 -0
  86. package/src/components/typography/utils/getTypeAndWeightValues.test.tsx +147 -0
  87. package/src/components/typography/utils/getTypeAndWeightValues.tsx +32 -0
  88. package/src/core/BumperDecorator.tsx +11 -0
  89. package/src/core/BumperProvider.tsx +15 -0
  90. package/src/index.ts +11 -0
  91. package/src/story-components/StorySection.tsx +70 -0
  92. package/src/story-components/StoryTitle.tsx +16 -0
  93. package/src/tamagui.config.ts +43 -0
  94. package/src/themes/__snapshots__/light.stories.tsx.snap +2192 -0
  95. package/src/themes/__snapshots_web__/light.stories.tsx.snap +985 -0
  96. package/src/themes/light.stories.tsx +38 -0
  97. package/src/themes/light.ts +59 -0
  98. package/src/themes/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +2770 -0
  99. package/src/themes/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1213 -0
  100. package/src/themes/palettes/deepPurpleColorPalette.stories.tsx +37 -0
  101. package/src/themes/palettes/deepPurpleColorPalette.ts +147 -0
  102. package/src/themes/utils/breakpoints.ts +15 -0
  103. package/src/tokens/fonts.ts +95 -0
  104. package/src/tokens/size.ts +10 -0
  105. package/src/tokens/space.ts +15 -0
  106. package/tsconfig.build.json +25 -0
  107. package/tsconfig.eslint.json +6 -0
  108. package/tsconfig.json +21 -0
@@ -0,0 +1,1471 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`bumper/Typography/Typography Typography 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
+ "paddingBottom": 12,
20
+ "paddingLeft": 4,
21
+ "paddingRight": 4,
22
+ "paddingTop": 4,
23
+ }
24
+ }
25
+ >
26
+ <Text
27
+ style={
28
+ {
29
+ "fontFamily": "GTStandardSemibold",
30
+ "fontSize": 38,
31
+ "letterSpacing": 0,
32
+ "lineHeight": 48,
33
+ "marginBottom": 4,
34
+ }
35
+ }
36
+ suppressHighlighting={true}
37
+ >
38
+ Demo
39
+ </Text>
40
+ <Text
41
+ style={
42
+ {
43
+ "color": "#101010",
44
+ "fontFamily": "GTStandardRegular",
45
+ "fontSize": 16,
46
+ "letterSpacing": 0.3,
47
+ "lineHeight": 24,
48
+ }
49
+ }
50
+ suppressHighlighting={true}
51
+ >
52
+ Hello World
53
+ </Text>
54
+ </View>
55
+ <View
56
+ style={
57
+ {
58
+ "flexDirection": "column",
59
+ "paddingBottom": 4,
60
+ "paddingLeft": 4,
61
+ "paddingRight": 4,
62
+ "paddingTop": 4,
63
+ }
64
+ }
65
+ >
66
+ <Text
67
+ style={
68
+ {
69
+ "fontFamily": "GTStandardSemibold",
70
+ "fontSize": 38,
71
+ "letterSpacing": 0,
72
+ "lineHeight": 48,
73
+ "marginBottom": 4,
74
+ }
75
+ }
76
+ suppressHighlighting={true}
77
+ >
78
+ Inheritance
79
+ </Text>
80
+ <View
81
+ style={
82
+ {
83
+ "flexDirection": "column",
84
+ "paddingBottom": 4,
85
+ "paddingLeft": 4,
86
+ "paddingRight": 4,
87
+ "paddingTop": 4,
88
+ }
89
+ }
90
+ >
91
+ <Text
92
+ style={
93
+ {
94
+ "fontFamily": "GTStandardSemibold",
95
+ "fontSize": 24,
96
+ "letterSpacing": 0,
97
+ "lineHeight": 32,
98
+ "marginBottom": 4,
99
+ }
100
+ }
101
+ suppressHighlighting={true}
102
+ >
103
+ Type inheritance
104
+ </Text>
105
+ <Text
106
+ style={
107
+ {
108
+ "fontFamily": "GTStandard",
109
+ "fontSize": 18,
110
+ "letterSpacing": 0.3,
111
+ "lineHeight": 26,
112
+ }
113
+ }
114
+ suppressHighlighting={true}
115
+ >
116
+ Type is body-l
117
+
118
+ <Text
119
+ style={
120
+ {
121
+ "fontFamily": "GTStandardSemibold",
122
+ "fontSize": 38,
123
+ "letterSpacing": 0,
124
+ "lineHeight": 48,
125
+ }
126
+ }
127
+ suppressHighlighting={true}
128
+ >
129
+ type is heading-l
130
+ <Text
131
+ style={
132
+ {
133
+ "color": "#563B56",
134
+ "fontFamily": "GTStandardSemibold",
135
+ "fontSize": 38,
136
+ "letterSpacing": 0,
137
+ "lineHeight": 48,
138
+ }
139
+ }
140
+ suppressHighlighting={true}
141
+ >
142
+ type is undefined
143
+ </Text>
144
+ </Text>
145
+
146
+ <Text
147
+ style={
148
+ {
149
+ "color": "#BD100F",
150
+ "fontFamily": "GTStandard",
151
+ "fontSize": 18,
152
+ "letterSpacing": 0.3,
153
+ "lineHeight": 26,
154
+ }
155
+ }
156
+ suppressHighlighting={true}
157
+ >
158
+ type is undefined
159
+ <Text
160
+ style={
161
+ {
162
+ "color": "#BD100F",
163
+ "fontFamily": "GTStandard",
164
+ "fontSize": 14,
165
+ "letterSpacing": 0.3,
166
+ "lineHeight": 20,
167
+ }
168
+ }
169
+ suppressHighlighting={true}
170
+ >
171
+ Type is body-s
172
+ </Text>
173
+ </Text>
174
+ .
175
+ </Text>
176
+ </View>
177
+ <View
178
+ style={
179
+ {
180
+ "flexDirection": "column",
181
+ "paddingBottom": 4,
182
+ "paddingLeft": 4,
183
+ "paddingRight": 4,
184
+ "paddingTop": 4,
185
+ }
186
+ }
187
+ >
188
+ <Text
189
+ style={
190
+ {
191
+ "fontFamily": "GTStandardSemibold",
192
+ "fontSize": 24,
193
+ "letterSpacing": 0,
194
+ "lineHeight": 32,
195
+ "marginBottom": 4,
196
+ }
197
+ }
198
+ suppressHighlighting={true}
199
+ >
200
+ Weight inheritance
201
+ </Text>
202
+ <Text
203
+ style={
204
+ {
205
+ "fontFamily": "GTStandard",
206
+ }
207
+ }
208
+ suppressHighlighting={true}
209
+ >
210
+ weight is undefined
211
+
212
+ <Text
213
+ style={
214
+ {
215
+ "fontFamily": "GTStandardBold",
216
+ }
217
+ }
218
+ suppressHighlighting={true}
219
+ >
220
+ weight is bold
221
+
222
+ <Text
223
+ style={
224
+ {
225
+ "fontFamily": "GTStandardSemibold",
226
+ "fontSize": 24,
227
+ "letterSpacing": 0,
228
+ "lineHeight": 32,
229
+ }
230
+ }
231
+ suppressHighlighting={true}
232
+ >
233
+ weight is undefined and type is heading-m
234
+
235
+ <Text
236
+ style={
237
+ {
238
+ "fontFamily": "GTStandardRegular",
239
+ "fontSize": 16,
240
+ "letterSpacing": 0.3,
241
+ "lineHeight": 24,
242
+ }
243
+ }
244
+ suppressHighlighting={true}
245
+ >
246
+ weight is regular
247
+ <Text
248
+ style={
249
+ {
250
+ "fontFamily": "GTStandardBold",
251
+ "fontSize": 16,
252
+ "letterSpacing": 0.3,
253
+ "lineHeight": 24,
254
+ }
255
+ }
256
+ suppressHighlighting={true}
257
+ >
258
+ weight is bold
259
+ </Text>
260
+ </Text>
261
+ </Text>
262
+ </Text>
263
+
264
+ </Text>
265
+ </View>
266
+ <View
267
+ style={
268
+ {
269
+ "flexDirection": "column",
270
+ "paddingBottom": 4,
271
+ "paddingLeft": 4,
272
+ "paddingRight": 4,
273
+ "paddingTop": 4,
274
+ }
275
+ }
276
+ >
277
+ <Text
278
+ style={
279
+ {
280
+ "fontFamily": "GTStandardSemibold",
281
+ "fontSize": 24,
282
+ "letterSpacing": 0,
283
+ "lineHeight": 32,
284
+ "marginBottom": 4,
285
+ }
286
+ }
287
+ suppressHighlighting={true}
288
+ >
289
+ Color inheritance
290
+ </Text>
291
+ <Text
292
+ style={
293
+ {
294
+ "fontFamily": "GTStandard",
295
+ }
296
+ }
297
+ suppressHighlighting={true}
298
+ >
299
+ color is undefined
300
+
301
+ <Text
302
+ style={
303
+ {
304
+ "color": "#563B56",
305
+ "fontFamily": "GTStandard",
306
+ }
307
+ }
308
+ suppressHighlighting={true}
309
+ >
310
+ color is $content.accent
311
+
312
+ <Text
313
+ style={
314
+ {
315
+ "color": "#563B56",
316
+ "fontFamily": "GTStandard",
317
+ }
318
+ }
319
+ suppressHighlighting={true}
320
+ >
321
+ color is undefined
322
+
323
+ <Text
324
+ style={
325
+ {
326
+ "color": "#BD100F",
327
+ "fontFamily": "GTStandard",
328
+ }
329
+ }
330
+ suppressHighlighting={true}
331
+ >
332
+ color is content.danger
333
+
334
+ <Text
335
+ style={
336
+ {
337
+ "color": "#101010",
338
+ "fontFamily": "GTStandard",
339
+ }
340
+ }
341
+ suppressHighlighting={true}
342
+ >
343
+ color is content.base.hi
344
+ </Text>
345
+ </Text>
346
+ </Text>
347
+ </Text>
348
+
349
+ </Text>
350
+ </View>
351
+ <View
352
+ style={
353
+ {
354
+ "flexDirection": "column",
355
+ "paddingBottom": 4,
356
+ "paddingLeft": 4,
357
+ "paddingRight": 4,
358
+ "paddingTop": 4,
359
+ }
360
+ }
361
+ >
362
+ <Text
363
+ style={
364
+ {
365
+ "fontFamily": "GTStandardSemibold",
366
+ "fontSize": 38,
367
+ "letterSpacing": 0,
368
+ "lineHeight": 48,
369
+ "marginBottom": 4,
370
+ }
371
+ }
372
+ suppressHighlighting={true}
373
+ >
374
+ Heading
375
+ </Text>
376
+ <View
377
+ style={
378
+ {
379
+ "flexDirection": "column",
380
+ "marginBottom": 20,
381
+ }
382
+ }
383
+ >
384
+ <Text
385
+ style={
386
+ {
387
+ "fontFamily": "GTStandardSemibold",
388
+ "fontSize": 20,
389
+ "letterSpacing": 0,
390
+ "lineHeight": 20,
391
+ }
392
+ }
393
+ suppressHighlighting={true}
394
+ >
395
+ heading 2xl - semibold
396
+ </Text>
397
+ <View
398
+ style={
399
+ {
400
+ "backgroundColor": "#F7F4EE",
401
+ "borderBottomLeftRadius": 4,
402
+ "borderBottomRightRadius": 4,
403
+ "borderTopLeftRadius": 4,
404
+ "borderTopRightRadius": 4,
405
+ "marginTop": 4,
406
+ "paddingBottom": 4,
407
+ "paddingLeft": 8,
408
+ "paddingRight": 8,
409
+ "paddingTop": 4,
410
+ }
411
+ }
412
+ >
413
+ <Text
414
+ style={
415
+ {
416
+ "fontFamily": "GTStandardSemibold",
417
+ "fontSize": 56,
418
+ "letterSpacing": 0,
419
+ "lineHeight": 64,
420
+ }
421
+ }
422
+ suppressHighlighting={true}
423
+ >
424
+ The quick brown fox jumps over the lazy dog
425
+ </Text>
426
+ </View>
427
+ </View>
428
+ <View
429
+ style={
430
+ {
431
+ "flexDirection": "column",
432
+ "marginBottom": 20,
433
+ }
434
+ }
435
+ >
436
+ <Text
437
+ style={
438
+ {
439
+ "fontFamily": "GTStandardSemibold",
440
+ "fontSize": 20,
441
+ "letterSpacing": 0,
442
+ "lineHeight": 20,
443
+ }
444
+ }
445
+ suppressHighlighting={true}
446
+ >
447
+ heading xl - semibold
448
+ </Text>
449
+ <View
450
+ style={
451
+ {
452
+ "backgroundColor": "#F7F4EE",
453
+ "borderBottomLeftRadius": 4,
454
+ "borderBottomRightRadius": 4,
455
+ "borderTopLeftRadius": 4,
456
+ "borderTopRightRadius": 4,
457
+ "marginTop": 4,
458
+ "paddingBottom": 4,
459
+ "paddingLeft": 8,
460
+ "paddingRight": 8,
461
+ "paddingTop": 4,
462
+ }
463
+ }
464
+ >
465
+ <Text
466
+ style={
467
+ {
468
+ "fontFamily": "GTStandardSemibold",
469
+ "fontSize": 48,
470
+ "letterSpacing": 0,
471
+ "lineHeight": 56,
472
+ }
473
+ }
474
+ suppressHighlighting={true}
475
+ >
476
+ The quick brown fox jumps over the lazy dog
477
+ </Text>
478
+ </View>
479
+ </View>
480
+ <View
481
+ style={
482
+ {
483
+ "flexDirection": "column",
484
+ "marginBottom": 20,
485
+ }
486
+ }
487
+ >
488
+ <Text
489
+ style={
490
+ {
491
+ "fontFamily": "GTStandardSemibold",
492
+ "fontSize": 20,
493
+ "letterSpacing": 0,
494
+ "lineHeight": 20,
495
+ }
496
+ }
497
+ suppressHighlighting={true}
498
+ >
499
+ heading l - semibold
500
+ </Text>
501
+ <View
502
+ style={
503
+ {
504
+ "backgroundColor": "#F7F4EE",
505
+ "borderBottomLeftRadius": 4,
506
+ "borderBottomRightRadius": 4,
507
+ "borderTopLeftRadius": 4,
508
+ "borderTopRightRadius": 4,
509
+ "marginTop": 4,
510
+ "paddingBottom": 4,
511
+ "paddingLeft": 8,
512
+ "paddingRight": 8,
513
+ "paddingTop": 4,
514
+ }
515
+ }
516
+ >
517
+ <Text
518
+ style={
519
+ {
520
+ "fontFamily": "GTStandardSemibold",
521
+ "fontSize": 38,
522
+ "letterSpacing": 0,
523
+ "lineHeight": 48,
524
+ }
525
+ }
526
+ suppressHighlighting={true}
527
+ >
528
+ The quick brown fox jumps over the lazy dog
529
+ </Text>
530
+ </View>
531
+ </View>
532
+ <View
533
+ style={
534
+ {
535
+ "flexDirection": "column",
536
+ "marginBottom": 20,
537
+ }
538
+ }
539
+ >
540
+ <Text
541
+ style={
542
+ {
543
+ "fontFamily": "GTStandardSemibold",
544
+ "fontSize": 20,
545
+ "letterSpacing": 0,
546
+ "lineHeight": 20,
547
+ }
548
+ }
549
+ suppressHighlighting={true}
550
+ >
551
+ heading m - semibold
552
+ </Text>
553
+ <View
554
+ style={
555
+ {
556
+ "backgroundColor": "#F7F4EE",
557
+ "borderBottomLeftRadius": 4,
558
+ "borderBottomRightRadius": 4,
559
+ "borderTopLeftRadius": 4,
560
+ "borderTopRightRadius": 4,
561
+ "marginTop": 4,
562
+ "paddingBottom": 4,
563
+ "paddingLeft": 8,
564
+ "paddingRight": 8,
565
+ "paddingTop": 4,
566
+ }
567
+ }
568
+ >
569
+ <Text
570
+ style={
571
+ {
572
+ "fontFamily": "GTStandardSemibold",
573
+ "fontSize": 24,
574
+ "letterSpacing": 0,
575
+ "lineHeight": 32,
576
+ }
577
+ }
578
+ suppressHighlighting={true}
579
+ >
580
+ The quick brown fox jumps over the lazy dog
581
+ </Text>
582
+ </View>
583
+ </View>
584
+ <View
585
+ style={
586
+ {
587
+ "flexDirection": "column",
588
+ "marginBottom": 20,
589
+ }
590
+ }
591
+ >
592
+ <Text
593
+ style={
594
+ {
595
+ "fontFamily": "GTStandardSemibold",
596
+ "fontSize": 20,
597
+ "letterSpacing": 0,
598
+ "lineHeight": 20,
599
+ }
600
+ }
601
+ suppressHighlighting={true}
602
+ >
603
+ heading s - semibold
604
+ </Text>
605
+ <View
606
+ style={
607
+ {
608
+ "backgroundColor": "#F7F4EE",
609
+ "borderBottomLeftRadius": 4,
610
+ "borderBottomRightRadius": 4,
611
+ "borderTopLeftRadius": 4,
612
+ "borderTopRightRadius": 4,
613
+ "marginTop": 4,
614
+ "paddingBottom": 4,
615
+ "paddingLeft": 8,
616
+ "paddingRight": 8,
617
+ "paddingTop": 4,
618
+ }
619
+ }
620
+ >
621
+ <Text
622
+ style={
623
+ {
624
+ "fontFamily": "GTStandardSemibold",
625
+ "fontSize": 20,
626
+ "letterSpacing": 0,
627
+ "lineHeight": 20,
628
+ }
629
+ }
630
+ suppressHighlighting={true}
631
+ >
632
+ The quick brown fox jumps over the lazy dog
633
+ </Text>
634
+ </View>
635
+ </View>
636
+ <View
637
+ style={
638
+ {
639
+ "flexDirection": "column",
640
+ "marginBottom": 20,
641
+ }
642
+ }
643
+ >
644
+ <Text
645
+ style={
646
+ {
647
+ "fontFamily": "GTStandardSemibold",
648
+ "fontSize": 20,
649
+ "letterSpacing": 0,
650
+ "lineHeight": 20,
651
+ }
652
+ }
653
+ suppressHighlighting={true}
654
+ >
655
+ heading xs - semibold
656
+ </Text>
657
+ <View
658
+ style={
659
+ {
660
+ "backgroundColor": "#F7F4EE",
661
+ "borderBottomLeftRadius": 4,
662
+ "borderBottomRightRadius": 4,
663
+ "borderTopLeftRadius": 4,
664
+ "borderTopRightRadius": 4,
665
+ "marginTop": 4,
666
+ "paddingBottom": 4,
667
+ "paddingLeft": 8,
668
+ "paddingRight": 8,
669
+ "paddingTop": 4,
670
+ }
671
+ }
672
+ >
673
+ <Text
674
+ style={
675
+ {
676
+ "fontFamily": "GTStandardSemibold",
677
+ "fontSize": 16,
678
+ "letterSpacing": 0,
679
+ "lineHeight": 18,
680
+ }
681
+ }
682
+ suppressHighlighting={true}
683
+ >
684
+ The quick brown fox jumps over the lazy dog
685
+ </Text>
686
+ </View>
687
+ </View>
688
+ </View>
689
+ <View
690
+ style={
691
+ {
692
+ "flexDirection": "column",
693
+ "paddingBottom": 4,
694
+ "paddingLeft": 4,
695
+ "paddingRight": 4,
696
+ "paddingTop": 4,
697
+ }
698
+ }
699
+ >
700
+ <Text
701
+ style={
702
+ {
703
+ "fontFamily": "GTStandardSemibold",
704
+ "fontSize": 38,
705
+ "letterSpacing": 0,
706
+ "lineHeight": 48,
707
+ "marginBottom": 4,
708
+ }
709
+ }
710
+ suppressHighlighting={true}
711
+ >
712
+ Body
713
+ </Text>
714
+ <View
715
+ style={
716
+ {
717
+ "flexDirection": "column",
718
+ "marginBottom": 20,
719
+ }
720
+ }
721
+ >
722
+ <Text
723
+ style={
724
+ {
725
+ "fontFamily": "GTStandardSemibold",
726
+ "fontSize": 20,
727
+ "letterSpacing": 0,
728
+ "lineHeight": 20,
729
+ }
730
+ }
731
+ suppressHighlighting={true}
732
+ >
733
+ body xl - bold
734
+ </Text>
735
+ <View
736
+ style={
737
+ {
738
+ "backgroundColor": "#F7F4EE",
739
+ "borderBottomLeftRadius": 4,
740
+ "borderBottomRightRadius": 4,
741
+ "borderTopLeftRadius": 4,
742
+ "borderTopRightRadius": 4,
743
+ "marginTop": 4,
744
+ "paddingBottom": 4,
745
+ "paddingLeft": 8,
746
+ "paddingRight": 8,
747
+ "paddingTop": 4,
748
+ }
749
+ }
750
+ >
751
+ <Text
752
+ style={
753
+ {
754
+ "fontFamily": "GTStandardBold",
755
+ "fontSize": 24,
756
+ "letterSpacing": 0.3,
757
+ "lineHeight": 32,
758
+ }
759
+ }
760
+ suppressHighlighting={true}
761
+ >
762
+ The quick brown fox jumps over the lazy dog
763
+ </Text>
764
+ </View>
765
+ </View>
766
+ <View
767
+ style={
768
+ {
769
+ "flexDirection": "column",
770
+ "marginBottom": 20,
771
+ }
772
+ }
773
+ >
774
+ <Text
775
+ style={
776
+ {
777
+ "fontFamily": "GTStandardSemibold",
778
+ "fontSize": 20,
779
+ "letterSpacing": 0,
780
+ "lineHeight": 20,
781
+ }
782
+ }
783
+ suppressHighlighting={true}
784
+ >
785
+ body xl - regular
786
+ </Text>
787
+ <View
788
+ style={
789
+ {
790
+ "backgroundColor": "#F7F4EE",
791
+ "borderBottomLeftRadius": 4,
792
+ "borderBottomRightRadius": 4,
793
+ "borderTopLeftRadius": 4,
794
+ "borderTopRightRadius": 4,
795
+ "marginTop": 4,
796
+ "paddingBottom": 4,
797
+ "paddingLeft": 8,
798
+ "paddingRight": 8,
799
+ "paddingTop": 4,
800
+ }
801
+ }
802
+ >
803
+ <Text
804
+ style={
805
+ {
806
+ "fontFamily": "GTStandardRegular",
807
+ "fontSize": 24,
808
+ "letterSpacing": 0.3,
809
+ "lineHeight": 32,
810
+ }
811
+ }
812
+ suppressHighlighting={true}
813
+ >
814
+ The quick brown fox jumps over the lazy dog
815
+ </Text>
816
+ </View>
817
+ </View>
818
+ <View
819
+ style={
820
+ {
821
+ "flexDirection": "column",
822
+ "marginBottom": 20,
823
+ }
824
+ }
825
+ >
826
+ <Text
827
+ style={
828
+ {
829
+ "fontFamily": "GTStandardSemibold",
830
+ "fontSize": 20,
831
+ "letterSpacing": 0,
832
+ "lineHeight": 20,
833
+ }
834
+ }
835
+ suppressHighlighting={true}
836
+ >
837
+ body l - bold
838
+ </Text>
839
+ <View
840
+ style={
841
+ {
842
+ "backgroundColor": "#F7F4EE",
843
+ "borderBottomLeftRadius": 4,
844
+ "borderBottomRightRadius": 4,
845
+ "borderTopLeftRadius": 4,
846
+ "borderTopRightRadius": 4,
847
+ "marginTop": 4,
848
+ "paddingBottom": 4,
849
+ "paddingLeft": 8,
850
+ "paddingRight": 8,
851
+ "paddingTop": 4,
852
+ }
853
+ }
854
+ >
855
+ <Text
856
+ style={
857
+ {
858
+ "fontFamily": "GTStandardBold",
859
+ "fontSize": 18,
860
+ "letterSpacing": 0.3,
861
+ "lineHeight": 26,
862
+ }
863
+ }
864
+ suppressHighlighting={true}
865
+ >
866
+ The quick brown fox jumps over the lazy dog
867
+ </Text>
868
+ </View>
869
+ </View>
870
+ <View
871
+ style={
872
+ {
873
+ "flexDirection": "column",
874
+ "marginBottom": 20,
875
+ }
876
+ }
877
+ >
878
+ <Text
879
+ style={
880
+ {
881
+ "fontFamily": "GTStandardSemibold",
882
+ "fontSize": 20,
883
+ "letterSpacing": 0,
884
+ "lineHeight": 20,
885
+ }
886
+ }
887
+ suppressHighlighting={true}
888
+ >
889
+ body l - regular
890
+ </Text>
891
+ <View
892
+ style={
893
+ {
894
+ "backgroundColor": "#F7F4EE",
895
+ "borderBottomLeftRadius": 4,
896
+ "borderBottomRightRadius": 4,
897
+ "borderTopLeftRadius": 4,
898
+ "borderTopRightRadius": 4,
899
+ "marginTop": 4,
900
+ "paddingBottom": 4,
901
+ "paddingLeft": 8,
902
+ "paddingRight": 8,
903
+ "paddingTop": 4,
904
+ }
905
+ }
906
+ >
907
+ <Text
908
+ style={
909
+ {
910
+ "fontFamily": "GTStandardRegular",
911
+ "fontSize": 18,
912
+ "letterSpacing": 0.3,
913
+ "lineHeight": 26,
914
+ }
915
+ }
916
+ suppressHighlighting={true}
917
+ >
918
+ The quick brown fox jumps over the lazy dog
919
+ </Text>
920
+ </View>
921
+ </View>
922
+ <View
923
+ style={
924
+ {
925
+ "flexDirection": "column",
926
+ "marginBottom": 20,
927
+ }
928
+ }
929
+ >
930
+ <Text
931
+ style={
932
+ {
933
+ "fontFamily": "GTStandardSemibold",
934
+ "fontSize": 20,
935
+ "letterSpacing": 0,
936
+ "lineHeight": 20,
937
+ }
938
+ }
939
+ suppressHighlighting={true}
940
+ >
941
+ body m - bold
942
+ </Text>
943
+ <View
944
+ style={
945
+ {
946
+ "backgroundColor": "#F7F4EE",
947
+ "borderBottomLeftRadius": 4,
948
+ "borderBottomRightRadius": 4,
949
+ "borderTopLeftRadius": 4,
950
+ "borderTopRightRadius": 4,
951
+ "marginTop": 4,
952
+ "paddingBottom": 4,
953
+ "paddingLeft": 8,
954
+ "paddingRight": 8,
955
+ "paddingTop": 4,
956
+ }
957
+ }
958
+ >
959
+ <Text
960
+ style={
961
+ {
962
+ "fontFamily": "GTStandardBold",
963
+ "fontSize": 16,
964
+ "letterSpacing": 0.3,
965
+ "lineHeight": 24,
966
+ }
967
+ }
968
+ suppressHighlighting={true}
969
+ >
970
+ The quick brown fox jumps over the lazy dog
971
+ </Text>
972
+ </View>
973
+ </View>
974
+ <View
975
+ style={
976
+ {
977
+ "flexDirection": "column",
978
+ "marginBottom": 20,
979
+ }
980
+ }
981
+ >
982
+ <Text
983
+ style={
984
+ {
985
+ "fontFamily": "GTStandardSemibold",
986
+ "fontSize": 20,
987
+ "letterSpacing": 0,
988
+ "lineHeight": 20,
989
+ }
990
+ }
991
+ suppressHighlighting={true}
992
+ >
993
+ body m - regular
994
+ </Text>
995
+ <View
996
+ style={
997
+ {
998
+ "backgroundColor": "#F7F4EE",
999
+ "borderBottomLeftRadius": 4,
1000
+ "borderBottomRightRadius": 4,
1001
+ "borderTopLeftRadius": 4,
1002
+ "borderTopRightRadius": 4,
1003
+ "marginTop": 4,
1004
+ "paddingBottom": 4,
1005
+ "paddingLeft": 8,
1006
+ "paddingRight": 8,
1007
+ "paddingTop": 4,
1008
+ }
1009
+ }
1010
+ >
1011
+ <Text
1012
+ style={
1013
+ {
1014
+ "fontFamily": "GTStandardRegular",
1015
+ "fontSize": 16,
1016
+ "letterSpacing": 0.3,
1017
+ "lineHeight": 24,
1018
+ }
1019
+ }
1020
+ suppressHighlighting={true}
1021
+ >
1022
+ The quick brown fox jumps over the lazy dog
1023
+ </Text>
1024
+ </View>
1025
+ </View>
1026
+ <View
1027
+ style={
1028
+ {
1029
+ "flexDirection": "column",
1030
+ "marginBottom": 20,
1031
+ }
1032
+ }
1033
+ >
1034
+ <Text
1035
+ style={
1036
+ {
1037
+ "fontFamily": "GTStandardSemibold",
1038
+ "fontSize": 20,
1039
+ "letterSpacing": 0,
1040
+ "lineHeight": 20,
1041
+ }
1042
+ }
1043
+ suppressHighlighting={true}
1044
+ >
1045
+ body s - bold
1046
+ </Text>
1047
+ <View
1048
+ style={
1049
+ {
1050
+ "backgroundColor": "#F7F4EE",
1051
+ "borderBottomLeftRadius": 4,
1052
+ "borderBottomRightRadius": 4,
1053
+ "borderTopLeftRadius": 4,
1054
+ "borderTopRightRadius": 4,
1055
+ "marginTop": 4,
1056
+ "paddingBottom": 4,
1057
+ "paddingLeft": 8,
1058
+ "paddingRight": 8,
1059
+ "paddingTop": 4,
1060
+ }
1061
+ }
1062
+ >
1063
+ <Text
1064
+ style={
1065
+ {
1066
+ "fontFamily": "GTStandardBold",
1067
+ "fontSize": 14,
1068
+ "letterSpacing": 0.3,
1069
+ "lineHeight": 20,
1070
+ }
1071
+ }
1072
+ suppressHighlighting={true}
1073
+ >
1074
+ The quick brown fox jumps over the lazy dog
1075
+ </Text>
1076
+ </View>
1077
+ </View>
1078
+ <View
1079
+ style={
1080
+ {
1081
+ "flexDirection": "column",
1082
+ "marginBottom": 20,
1083
+ }
1084
+ }
1085
+ >
1086
+ <Text
1087
+ style={
1088
+ {
1089
+ "fontFamily": "GTStandardSemibold",
1090
+ "fontSize": 20,
1091
+ "letterSpacing": 0,
1092
+ "lineHeight": 20,
1093
+ }
1094
+ }
1095
+ suppressHighlighting={true}
1096
+ >
1097
+ body s - regular
1098
+ </Text>
1099
+ <View
1100
+ style={
1101
+ {
1102
+ "backgroundColor": "#F7F4EE",
1103
+ "borderBottomLeftRadius": 4,
1104
+ "borderBottomRightRadius": 4,
1105
+ "borderTopLeftRadius": 4,
1106
+ "borderTopRightRadius": 4,
1107
+ "marginTop": 4,
1108
+ "paddingBottom": 4,
1109
+ "paddingLeft": 8,
1110
+ "paddingRight": 8,
1111
+ "paddingTop": 4,
1112
+ }
1113
+ }
1114
+ >
1115
+ <Text
1116
+ style={
1117
+ {
1118
+ "fontFamily": "GTStandardRegular",
1119
+ "fontSize": 14,
1120
+ "letterSpacing": 0.3,
1121
+ "lineHeight": 20,
1122
+ }
1123
+ }
1124
+ suppressHighlighting={true}
1125
+ >
1126
+ The quick brown fox jumps over the lazy dog
1127
+ </Text>
1128
+ </View>
1129
+ </View>
1130
+ <View
1131
+ style={
1132
+ {
1133
+ "flexDirection": "column",
1134
+ "marginBottom": 20,
1135
+ }
1136
+ }
1137
+ >
1138
+ <Text
1139
+ style={
1140
+ {
1141
+ "fontFamily": "GTStandardSemibold",
1142
+ "fontSize": 20,
1143
+ "letterSpacing": 0,
1144
+ "lineHeight": 20,
1145
+ }
1146
+ }
1147
+ suppressHighlighting={true}
1148
+ >
1149
+ body xs - bold
1150
+ </Text>
1151
+ <View
1152
+ style={
1153
+ {
1154
+ "backgroundColor": "#F7F4EE",
1155
+ "borderBottomLeftRadius": 4,
1156
+ "borderBottomRightRadius": 4,
1157
+ "borderTopLeftRadius": 4,
1158
+ "borderTopRightRadius": 4,
1159
+ "marginTop": 4,
1160
+ "paddingBottom": 4,
1161
+ "paddingLeft": 8,
1162
+ "paddingRight": 8,
1163
+ "paddingTop": 4,
1164
+ }
1165
+ }
1166
+ >
1167
+ <Text
1168
+ style={
1169
+ {
1170
+ "fontFamily": "GTStandardBold",
1171
+ "fontSize": 12,
1172
+ "letterSpacing": 0.3,
1173
+ "lineHeight": 16,
1174
+ }
1175
+ }
1176
+ suppressHighlighting={true}
1177
+ >
1178
+ The quick brown fox jumps over the lazy dog
1179
+ </Text>
1180
+ </View>
1181
+ </View>
1182
+ <View
1183
+ style={
1184
+ {
1185
+ "flexDirection": "column",
1186
+ "marginBottom": 20,
1187
+ }
1188
+ }
1189
+ >
1190
+ <Text
1191
+ style={
1192
+ {
1193
+ "fontFamily": "GTStandardSemibold",
1194
+ "fontSize": 20,
1195
+ "letterSpacing": 0,
1196
+ "lineHeight": 20,
1197
+ }
1198
+ }
1199
+ suppressHighlighting={true}
1200
+ >
1201
+ body xs - regular
1202
+ </Text>
1203
+ <View
1204
+ style={
1205
+ {
1206
+ "backgroundColor": "#F7F4EE",
1207
+ "borderBottomLeftRadius": 4,
1208
+ "borderBottomRightRadius": 4,
1209
+ "borderTopLeftRadius": 4,
1210
+ "borderTopRightRadius": 4,
1211
+ "marginTop": 4,
1212
+ "paddingBottom": 4,
1213
+ "paddingLeft": 8,
1214
+ "paddingRight": 8,
1215
+ "paddingTop": 4,
1216
+ }
1217
+ }
1218
+ >
1219
+ <Text
1220
+ style={
1221
+ {
1222
+ "fontFamily": "GTStandardRegular",
1223
+ "fontSize": 12,
1224
+ "letterSpacing": 0.3,
1225
+ "lineHeight": 16,
1226
+ }
1227
+ }
1228
+ suppressHighlighting={true}
1229
+ >
1230
+ The quick brown fox jumps over the lazy dog
1231
+ </Text>
1232
+ </View>
1233
+ </View>
1234
+ </View>
1235
+ <View
1236
+ style={
1237
+ {
1238
+ "flexDirection": "column",
1239
+ "paddingBottom": 4,
1240
+ "paddingLeft": 4,
1241
+ "paddingRight": 4,
1242
+ "paddingTop": 4,
1243
+ }
1244
+ }
1245
+ >
1246
+ <Text
1247
+ style={
1248
+ {
1249
+ "fontFamily": "GTStandardSemibold",
1250
+ "fontSize": 38,
1251
+ "letterSpacing": 0,
1252
+ "lineHeight": 48,
1253
+ "marginBottom": 4,
1254
+ }
1255
+ }
1256
+ suppressHighlighting={true}
1257
+ >
1258
+ Label
1259
+ </Text>
1260
+ <View
1261
+ style={
1262
+ {
1263
+ "flexDirection": "column",
1264
+ "marginBottom": 20,
1265
+ }
1266
+ }
1267
+ >
1268
+ <Text
1269
+ style={
1270
+ {
1271
+ "fontFamily": "GTStandardSemibold",
1272
+ "fontSize": 20,
1273
+ "letterSpacing": 0,
1274
+ "lineHeight": 20,
1275
+ }
1276
+ }
1277
+ suppressHighlighting={true}
1278
+ >
1279
+ label xl - semibold
1280
+ </Text>
1281
+ <View
1282
+ style={
1283
+ {
1284
+ "backgroundColor": "#F7F4EE",
1285
+ "borderBottomLeftRadius": 4,
1286
+ "borderBottomRightRadius": 4,
1287
+ "borderTopLeftRadius": 4,
1288
+ "borderTopRightRadius": 4,
1289
+ "marginTop": 4,
1290
+ "paddingBottom": 4,
1291
+ "paddingLeft": 8,
1292
+ "paddingRight": 8,
1293
+ "paddingTop": 4,
1294
+ }
1295
+ }
1296
+ >
1297
+ <Text
1298
+ style={
1299
+ {
1300
+ "fontFamily": "GTStandardSemibold",
1301
+ "fontSize": 18,
1302
+ "letterSpacing": 0,
1303
+ "lineHeight": 26,
1304
+ }
1305
+ }
1306
+ suppressHighlighting={true}
1307
+ >
1308
+ The quick brown fox jumps over the lazy dog
1309
+ </Text>
1310
+ </View>
1311
+ </View>
1312
+ <View
1313
+ style={
1314
+ {
1315
+ "flexDirection": "column",
1316
+ "marginBottom": 20,
1317
+ }
1318
+ }
1319
+ >
1320
+ <Text
1321
+ style={
1322
+ {
1323
+ "fontFamily": "GTStandardSemibold",
1324
+ "fontSize": 20,
1325
+ "letterSpacing": 0,
1326
+ "lineHeight": 20,
1327
+ }
1328
+ }
1329
+ suppressHighlighting={true}
1330
+ >
1331
+ label l - semibold
1332
+ </Text>
1333
+ <View
1334
+ style={
1335
+ {
1336
+ "backgroundColor": "#F7F4EE",
1337
+ "borderBottomLeftRadius": 4,
1338
+ "borderBottomRightRadius": 4,
1339
+ "borderTopLeftRadius": 4,
1340
+ "borderTopRightRadius": 4,
1341
+ "marginTop": 4,
1342
+ "paddingBottom": 4,
1343
+ "paddingLeft": 8,
1344
+ "paddingRight": 8,
1345
+ "paddingTop": 4,
1346
+ }
1347
+ }
1348
+ >
1349
+ <Text
1350
+ style={
1351
+ {
1352
+ "fontFamily": "GTStandardSemibold",
1353
+ "fontSize": 16,
1354
+ "letterSpacing": 0,
1355
+ "lineHeight": 24,
1356
+ }
1357
+ }
1358
+ suppressHighlighting={true}
1359
+ >
1360
+ The quick brown fox jumps over the lazy dog
1361
+ </Text>
1362
+ </View>
1363
+ </View>
1364
+ <View
1365
+ style={
1366
+ {
1367
+ "flexDirection": "column",
1368
+ "marginBottom": 20,
1369
+ }
1370
+ }
1371
+ >
1372
+ <Text
1373
+ style={
1374
+ {
1375
+ "fontFamily": "GTStandardSemibold",
1376
+ "fontSize": 20,
1377
+ "letterSpacing": 0,
1378
+ "lineHeight": 20,
1379
+ }
1380
+ }
1381
+ suppressHighlighting={true}
1382
+ >
1383
+ label m - semibold
1384
+ </Text>
1385
+ <View
1386
+ style={
1387
+ {
1388
+ "backgroundColor": "#F7F4EE",
1389
+ "borderBottomLeftRadius": 4,
1390
+ "borderBottomRightRadius": 4,
1391
+ "borderTopLeftRadius": 4,
1392
+ "borderTopRightRadius": 4,
1393
+ "marginTop": 4,
1394
+ "paddingBottom": 4,
1395
+ "paddingLeft": 8,
1396
+ "paddingRight": 8,
1397
+ "paddingTop": 4,
1398
+ }
1399
+ }
1400
+ >
1401
+ <Text
1402
+ style={
1403
+ {
1404
+ "fontFamily": "GTStandardSemibold",
1405
+ "fontSize": 14,
1406
+ "letterSpacing": 0,
1407
+ "lineHeight": 20,
1408
+ }
1409
+ }
1410
+ suppressHighlighting={true}
1411
+ >
1412
+ The quick brown fox jumps over the lazy dog
1413
+ </Text>
1414
+ </View>
1415
+ </View>
1416
+ <View
1417
+ style={
1418
+ {
1419
+ "flexDirection": "column",
1420
+ "marginBottom": 20,
1421
+ }
1422
+ }
1423
+ >
1424
+ <Text
1425
+ style={
1426
+ {
1427
+ "fontFamily": "GTStandardSemibold",
1428
+ "fontSize": 20,
1429
+ "letterSpacing": 0,
1430
+ "lineHeight": 20,
1431
+ }
1432
+ }
1433
+ suppressHighlighting={true}
1434
+ >
1435
+ label s - semibold
1436
+ </Text>
1437
+ <View
1438
+ style={
1439
+ {
1440
+ "backgroundColor": "#F7F4EE",
1441
+ "borderBottomLeftRadius": 4,
1442
+ "borderBottomRightRadius": 4,
1443
+ "borderTopLeftRadius": 4,
1444
+ "borderTopRightRadius": 4,
1445
+ "marginTop": 4,
1446
+ "paddingBottom": 4,
1447
+ "paddingLeft": 8,
1448
+ "paddingRight": 8,
1449
+ "paddingTop": 4,
1450
+ }
1451
+ }
1452
+ >
1453
+ <Text
1454
+ style={
1455
+ {
1456
+ "fontFamily": "GTStandardSemibold",
1457
+ "fontSize": 12,
1458
+ "letterSpacing": 0,
1459
+ "lineHeight": 16,
1460
+ }
1461
+ }
1462
+ suppressHighlighting={true}
1463
+ >
1464
+ The quick brown fox jumps over the lazy dog
1465
+ </Text>
1466
+ </View>
1467
+ </View>
1468
+ </View>
1469
+ </View>
1470
+ </RNCSafeAreaProvider>
1471
+ `;