@ornikar/bumper 2.7.2-canary.1768565076.501fccaa5e4ef824bb180cfd40a7e74454a29a3e.0 → 2.8.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 (93) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/CLAUDE.md +45 -0
  3. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts +1 -1
  4. package/dist/definitions/system/core/breakpoints/hooks/useCurrentBreakpointName.d.ts.map +1 -1
  5. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts +1 -1
  6. package/dist/definitions/system/core/breakpoints/utils/breakpointsUtils.d.ts.map +1 -1
  7. package/dist/definitions/system/core/primitives/Pressable.d.ts +0 -9
  8. package/dist/definitions/system/core/primitives/Pressable.d.ts.map +1 -1
  9. package/dist/definitions/system/core/{breakpoints/constants.d.ts → tokens/breakpoints.d.ts} +1 -1
  10. package/dist/definitions/system/core/tokens/breakpoints.d.ts.map +1 -0
  11. package/dist/definitions/tamagui.config.d.ts +2 -28
  12. package/dist/definitions/tamagui.config.d.ts.map +1 -1
  13. package/dist/index-metro.es.android.js +42 -26
  14. package/dist/index-metro.es.android.js.map +1 -1
  15. package/dist/index-metro.es.ios.js +42 -26
  16. package/dist/index-metro.es.ios.js.map +1 -1
  17. package/dist/index-node-22.22.cjs.js +42 -26
  18. package/dist/index-node-22.22.cjs.js.map +1 -1
  19. package/dist/index-node-22.22.cjs.web.js +42 -26
  20. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  21. package/dist/index-node-22.22.es.mjs +42 -26
  22. package/dist/index-node-22.22.es.mjs.map +1 -1
  23. package/dist/index-node-22.22.es.web.mjs +42 -26
  24. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  25. package/dist/index.es.js +36 -20
  26. package/dist/index.es.js.map +1 -1
  27. package/dist/index.es.web.js +36 -20
  28. package/dist/index.es.web.js.map +1 -1
  29. package/dist/tsbuildinfo +1 -1
  30. package/package.json +9 -9
  31. package/src/system/content/typography/Typography.features.stories.tsx +156 -0
  32. package/src/system/content/typography/Typography.stories.tsx +72 -166
  33. package/src/system/content/typography/__snapshots__/Typography.features.stories.tsx.snap +826 -0
  34. package/src/system/content/typography/__snapshots__/Typography.stories.tsx.snap +10 -1990
  35. package/src/system/content/typography/__snapshots_web__/Typography.features.stories.tsx.snap +501 -0
  36. package/src/system/content/typography/__snapshots_web__/Typography.stories.tsx.snap +7 -808
  37. package/src/system/core/breakpoints/hooks/useBreakpointValue.test.ts +1 -1
  38. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.test.ts +1 -1
  39. package/src/system/core/breakpoints/hooks/useCurrentBreakpointName.ts +1 -1
  40. package/src/system/core/breakpoints/utils/breakpointsUtils.test.ts +1 -1
  41. package/src/system/core/breakpoints/utils/breakpointsUtils.ts +1 -1
  42. package/src/system/core/primitives/Center.features.stories.tsx +63 -0
  43. package/src/system/core/primitives/Center.stories.tsx +111 -12
  44. package/src/system/core/primitives/Pressable.features.stories.tsx +171 -0
  45. package/src/system/core/primitives/Pressable.stories.tsx +82 -20
  46. package/src/system/core/primitives/Pressable.tsx +0 -9
  47. package/src/system/core/primitives/Stack.features.stories.tsx +179 -0
  48. package/src/system/core/primitives/Stack.stories.tsx +74 -44
  49. package/src/system/core/primitives/View.features.stories.tsx +452 -0
  50. package/src/system/core/primitives/View.stories.tsx +122 -9
  51. package/src/system/core/primitives/__snapshots__/Center.features.stories.tsx.snap +208 -0
  52. package/src/system/core/primitives/__snapshots__/Center.stories.tsx.snap +13 -8
  53. package/src/system/core/primitives/__snapshots__/Pressable.features.stories.tsx.snap +470 -0
  54. package/src/system/core/primitives/__snapshots__/Pressable.stories.tsx.snap +11 -10
  55. package/src/system/core/primitives/__snapshots__/Stack.features.stories.tsx.snap +1234 -0
  56. package/src/system/core/primitives/__snapshots__/Stack.stories.tsx.snap +63 -84
  57. package/src/system/core/primitives/__snapshots__/View.features.stories.tsx.snap +2338 -0
  58. package/src/system/core/primitives/__snapshots__/View.stories.tsx.snap +6 -4
  59. package/src/system/core/primitives/__snapshots_web__/Center.features.stories.tsx.snap +107 -0
  60. package/src/system/core/primitives/__snapshots_web__/Center.stories.tsx.snap +9 -6
  61. package/src/system/core/primitives/__snapshots_web__/Pressable.features.stories.tsx.snap +193 -0
  62. package/src/system/core/primitives/__snapshots_web__/Pressable.stories.tsx.snap +5 -5
  63. package/src/system/core/primitives/__snapshots_web__/Stack.features.stories.tsx.snap +515 -0
  64. package/src/system/core/primitives/__snapshots_web__/Stack.stories.tsx.snap +30 -22
  65. package/src/system/core/primitives/__snapshots_web__/View.features.stories.tsx.snap +941 -0
  66. package/src/system/core/primitives/__snapshots_web__/View.stories.tsx.snap +3 -3
  67. package/src/system/core/themes/__snapshots__/light.stories.tsx.snap +3822 -2233
  68. package/src/system/core/themes/__snapshots_web__/light.stories.tsx.snap +1244 -992
  69. package/src/system/core/themes/light.stories.tsx +61 -28
  70. package/src/system/core/tokens/__snapshots__/breakpoints.stories.tsx.snap +423 -0
  71. package/src/system/core/tokens/__snapshots__/fonts.stories.tsx.snap +1635 -0
  72. package/src/system/core/tokens/__snapshots__/radius.stories.tsx.snap +383 -0
  73. package/src/system/core/tokens/__snapshots__/size.stories.tsx.snap +864 -0
  74. package/src/system/core/tokens/__snapshots__/space.stories.tsx.snap +945 -0
  75. package/src/system/core/tokens/__snapshots_web__/breakpoints.stories.tsx.snap +194 -0
  76. package/src/system/core/tokens/__snapshots_web__/fonts.stories.tsx.snap +729 -0
  77. package/src/system/core/tokens/__snapshots_web__/radius.stories.tsx.snap +174 -0
  78. package/src/system/core/tokens/__snapshots_web__/size.stories.tsx.snap +363 -0
  79. package/src/system/core/tokens/__snapshots_web__/space.stories.tsx.snap +396 -0
  80. package/src/system/core/tokens/breakpoints.stories.tsx +46 -0
  81. package/src/system/core/tokens/fonts.stories.tsx +39 -0
  82. package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +4337 -2747
  83. package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1525 -1257
  84. package/src/system/core/tokens/palettes/deepPurpleColorPalette.stories.tsx +42 -28
  85. package/src/system/core/tokens/radius.stories.tsx +39 -0
  86. package/src/system/core/tokens/size.stories.tsx +39 -0
  87. package/src/system/core/tokens/space.stories.tsx +40 -0
  88. package/src/tamagui.config.ts +3 -3
  89. package/dist/definitions/system/core/breakpoints/constants.d.ts.map +0 -1
  90. package/src/system/core/breakpoints/__snapshots__/breakpoints.stories.tsx.snap +0 -49
  91. package/src/system/core/breakpoints/__snapshots_web__/breakpoints.stories.tsx.snap +0 -43
  92. package/src/system/core/breakpoints/breakpoints.stories.tsx +0 -45
  93. /package/src/system/core/{breakpoints/constants.ts → tokens/breakpoints.ts} +0 -0
@@ -0,0 +1,2338 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Core/Primitives/View/Features BackgroundColors 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": 8,
20
+ }
21
+ }
22
+ >
23
+ <View
24
+ style={
25
+ {
26
+ "backgroundColor": "#ffffff",
27
+ "borderBottomLeftRadius": 4,
28
+ "borderBottomRightRadius": 4,
29
+ "borderTopLeftRadius": 4,
30
+ "borderTopRightRadius": 4,
31
+ "paddingBottom": 16,
32
+ "paddingLeft": 16,
33
+ "paddingRight": 16,
34
+ "paddingTop": 16,
35
+ }
36
+ }
37
+ >
38
+ <Text
39
+ style={
40
+ {
41
+ "fontFamily": "GTStandard",
42
+ "fontSize": 14,
43
+ "letterSpacing": 0.3,
44
+ "lineHeight": 20,
45
+ }
46
+ }
47
+ suppressHighlighting={true}
48
+ >
49
+ bg.base.low.default
50
+ </Text>
51
+ </View>
52
+ <View
53
+ style={
54
+ {
55
+ "backgroundColor": "#F7F4EE",
56
+ "borderBottomLeftRadius": 4,
57
+ "borderBottomRightRadius": 4,
58
+ "borderTopLeftRadius": 4,
59
+ "borderTopRightRadius": 4,
60
+ "paddingBottom": 16,
61
+ "paddingLeft": 16,
62
+ "paddingRight": 16,
63
+ "paddingTop": 16,
64
+ }
65
+ }
66
+ >
67
+ <Text
68
+ style={
69
+ {
70
+ "fontFamily": "GTStandard",
71
+ "fontSize": 14,
72
+ "letterSpacing": 0.3,
73
+ "lineHeight": 20,
74
+ }
75
+ }
76
+ suppressHighlighting={true}
77
+ >
78
+ bg.base.mid.default
79
+ </Text>
80
+ </View>
81
+ <View
82
+ style={
83
+ {
84
+ "backgroundColor": "#F1ECE4",
85
+ "borderBottomLeftRadius": 4,
86
+ "borderBottomRightRadius": 4,
87
+ "borderTopLeftRadius": 4,
88
+ "borderTopRightRadius": 4,
89
+ "paddingBottom": 16,
90
+ "paddingLeft": 16,
91
+ "paddingRight": 16,
92
+ "paddingTop": 16,
93
+ }
94
+ }
95
+ >
96
+ <Text
97
+ style={
98
+ {
99
+ "fontFamily": "GTStandard",
100
+ "fontSize": 14,
101
+ "letterSpacing": 0.3,
102
+ "lineHeight": 20,
103
+ }
104
+ }
105
+ suppressHighlighting={true}
106
+ >
107
+ bg.base.hi.default
108
+ </Text>
109
+ </View>
110
+ <View
111
+ style={
112
+ {
113
+ "backgroundColor": "#563B56",
114
+ "borderBottomLeftRadius": 4,
115
+ "borderBottomRightRadius": 4,
116
+ "borderTopLeftRadius": 4,
117
+ "borderTopRightRadius": 4,
118
+ "paddingBottom": 16,
119
+ "paddingLeft": 16,
120
+ "paddingRight": 16,
121
+ "paddingTop": 16,
122
+ }
123
+ }
124
+ >
125
+ <Text
126
+ style={
127
+ {
128
+ "color": "#ffffff",
129
+ "fontFamily": "GTStandard",
130
+ "fontSize": 14,
131
+ "letterSpacing": 0.3,
132
+ "lineHeight": 20,
133
+ }
134
+ }
135
+ suppressHighlighting={true}
136
+ >
137
+ bg.accent.default
138
+ </Text>
139
+ </View>
140
+ <View
141
+ style={
142
+ {
143
+ "backgroundColor": "#43390A",
144
+ "borderBottomLeftRadius": 4,
145
+ "borderBottomRightRadius": 4,
146
+ "borderTopLeftRadius": 4,
147
+ "borderTopRightRadius": 4,
148
+ "paddingBottom": 16,
149
+ "paddingLeft": 16,
150
+ "paddingRight": 16,
151
+ "paddingTop": 16,
152
+ }
153
+ }
154
+ >
155
+ <Text
156
+ style={
157
+ {
158
+ "color": "#ffffff",
159
+ "fontFamily": "GTStandard",
160
+ "fontSize": 14,
161
+ "letterSpacing": 0.3,
162
+ "lineHeight": 20,
163
+ }
164
+ }
165
+ suppressHighlighting={true}
166
+ >
167
+ bg.promo.hi.default
168
+ </Text>
169
+ </View>
170
+ <View
171
+ style={
172
+ {
173
+ "backgroundColor": "#E9F4FC",
174
+ "borderBottomLeftRadius": 4,
175
+ "borderBottomRightRadius": 4,
176
+ "borderTopLeftRadius": 4,
177
+ "borderTopRightRadius": 4,
178
+ "paddingBottom": 16,
179
+ "paddingLeft": 16,
180
+ "paddingRight": 16,
181
+ "paddingTop": 16,
182
+ }
183
+ }
184
+ >
185
+ <Text
186
+ style={
187
+ {
188
+ "fontFamily": "GTStandard",
189
+ "fontSize": 14,
190
+ "letterSpacing": 0.3,
191
+ "lineHeight": 20,
192
+ }
193
+ }
194
+ suppressHighlighting={true}
195
+ >
196
+ bg.info.mid
197
+ </Text>
198
+ </View>
199
+ <View
200
+ style={
201
+ {
202
+ "backgroundColor": "#ECFEDD",
203
+ "borderBottomLeftRadius": 4,
204
+ "borderBottomRightRadius": 4,
205
+ "borderTopLeftRadius": 4,
206
+ "borderTopRightRadius": 4,
207
+ "paddingBottom": 16,
208
+ "paddingLeft": 16,
209
+ "paddingRight": 16,
210
+ "paddingTop": 16,
211
+ }
212
+ }
213
+ >
214
+ <Text
215
+ style={
216
+ {
217
+ "fontFamily": "GTStandard",
218
+ "fontSize": 14,
219
+ "letterSpacing": 0.3,
220
+ "lineHeight": 20,
221
+ }
222
+ }
223
+ suppressHighlighting={true}
224
+ >
225
+ bg.success.mid
226
+ </Text>
227
+ </View>
228
+ <View
229
+ style={
230
+ {
231
+ "backgroundColor": "#FDF8E7",
232
+ "borderBottomLeftRadius": 4,
233
+ "borderBottomRightRadius": 4,
234
+ "borderTopLeftRadius": 4,
235
+ "borderTopRightRadius": 4,
236
+ "paddingBottom": 16,
237
+ "paddingLeft": 16,
238
+ "paddingRight": 16,
239
+ "paddingTop": 16,
240
+ }
241
+ }
242
+ >
243
+ <Text
244
+ style={
245
+ {
246
+ "fontFamily": "GTStandard",
247
+ "fontSize": 14,
248
+ "letterSpacing": 0.3,
249
+ "lineHeight": 20,
250
+ }
251
+ }
252
+ suppressHighlighting={true}
253
+ >
254
+ bg.warning.mid
255
+ </Text>
256
+ </View>
257
+ <View
258
+ style={
259
+ {
260
+ "backgroundColor": "#FDE4E3",
261
+ "borderBottomLeftRadius": 4,
262
+ "borderBottomRightRadius": 4,
263
+ "borderTopLeftRadius": 4,
264
+ "borderTopRightRadius": 4,
265
+ "paddingBottom": 16,
266
+ "paddingLeft": 16,
267
+ "paddingRight": 16,
268
+ "paddingTop": 16,
269
+ }
270
+ }
271
+ >
272
+ <Text
273
+ style={
274
+ {
275
+ "fontFamily": "GTStandard",
276
+ "fontSize": 14,
277
+ "letterSpacing": 0.3,
278
+ "lineHeight": 20,
279
+ }
280
+ }
281
+ suppressHighlighting={true}
282
+ >
283
+ bg.danger.mid
284
+ </Text>
285
+ </View>
286
+ </View>
287
+ </RNCSafeAreaProvider>
288
+ `;
289
+
290
+ exports[`Bumper/Core/Primitives/View/Features BorderColors 1`] = `
291
+ <RNCSafeAreaProvider
292
+ onInsetsChange={[Function]}
293
+ style={
294
+ [
295
+ {
296
+ "flex": 1,
297
+ },
298
+ undefined,
299
+ ]
300
+ }
301
+ >
302
+ <View
303
+ style={
304
+ {
305
+ "flexDirection": "row",
306
+ "flexWrap": "wrap",
307
+ "gap": 16,
308
+ }
309
+ }
310
+ >
311
+ <View
312
+ style={
313
+ {
314
+ "backgroundColor": "#ffffff",
315
+ "borderBottomColor": "#F1ECE4",
316
+ "borderBottomLeftRadius": 4,
317
+ "borderBottomRightRadius": 4,
318
+ "borderBottomWidth": 2,
319
+ "borderLeftColor": "#F1ECE4",
320
+ "borderLeftWidth": 2,
321
+ "borderRightColor": "#F1ECE4",
322
+ "borderRightWidth": 2,
323
+ "borderStyle": "solid",
324
+ "borderTopColor": "#F1ECE4",
325
+ "borderTopLeftRadius": 4,
326
+ "borderTopRightRadius": 4,
327
+ "borderTopWidth": 2,
328
+ "paddingBottom": 16,
329
+ "paddingLeft": 16,
330
+ "paddingRight": 16,
331
+ "paddingTop": 16,
332
+ }
333
+ }
334
+ >
335
+ <Text
336
+ style={
337
+ {
338
+ "fontFamily": "GTStandard",
339
+ "fontSize": 14,
340
+ "letterSpacing": 0.3,
341
+ "lineHeight": 20,
342
+ }
343
+ }
344
+ suppressHighlighting={true}
345
+ >
346
+ border.base.low
347
+ </Text>
348
+ </View>
349
+ <View
350
+ style={
351
+ {
352
+ "backgroundColor": "#ffffff",
353
+ "borderBottomColor": "#EAE3D6",
354
+ "borderBottomLeftRadius": 4,
355
+ "borderBottomRightRadius": 4,
356
+ "borderBottomWidth": 2,
357
+ "borderLeftColor": "#EAE3D6",
358
+ "borderLeftWidth": 2,
359
+ "borderRightColor": "#EAE3D6",
360
+ "borderRightWidth": 2,
361
+ "borderStyle": "solid",
362
+ "borderTopColor": "#EAE3D6",
363
+ "borderTopLeftRadius": 4,
364
+ "borderTopRightRadius": 4,
365
+ "borderTopWidth": 2,
366
+ "paddingBottom": 16,
367
+ "paddingLeft": 16,
368
+ "paddingRight": 16,
369
+ "paddingTop": 16,
370
+ }
371
+ }
372
+ >
373
+ <Text
374
+ style={
375
+ {
376
+ "fontFamily": "GTStandard",
377
+ "fontSize": 14,
378
+ "letterSpacing": 0.3,
379
+ "lineHeight": 20,
380
+ }
381
+ }
382
+ suppressHighlighting={true}
383
+ >
384
+ border.base.mid
385
+ </Text>
386
+ </View>
387
+ <View
388
+ style={
389
+ {
390
+ "backgroundColor": "#ffffff",
391
+ "borderBottomColor": "#563B56",
392
+ "borderBottomLeftRadius": 4,
393
+ "borderBottomRightRadius": 4,
394
+ "borderBottomWidth": 2,
395
+ "borderLeftColor": "#563B56",
396
+ "borderLeftWidth": 2,
397
+ "borderRightColor": "#563B56",
398
+ "borderRightWidth": 2,
399
+ "borderStyle": "solid",
400
+ "borderTopColor": "#563B56",
401
+ "borderTopLeftRadius": 4,
402
+ "borderTopRightRadius": 4,
403
+ "borderTopWidth": 2,
404
+ "paddingBottom": 16,
405
+ "paddingLeft": 16,
406
+ "paddingRight": 16,
407
+ "paddingTop": 16,
408
+ }
409
+ }
410
+ >
411
+ <Text
412
+ style={
413
+ {
414
+ "fontFamily": "GTStandard",
415
+ "fontSize": 14,
416
+ "letterSpacing": 0.3,
417
+ "lineHeight": 20,
418
+ }
419
+ }
420
+ suppressHighlighting={true}
421
+ >
422
+ border.base.accent
423
+ </Text>
424
+ </View>
425
+ <View
426
+ style={
427
+ {
428
+ "backgroundColor": "#ffffff",
429
+ "borderBottomColor": "#1772AB",
430
+ "borderBottomLeftRadius": 4,
431
+ "borderBottomRightRadius": 4,
432
+ "borderBottomWidth": 2,
433
+ "borderLeftColor": "#1772AB",
434
+ "borderLeftWidth": 2,
435
+ "borderRightColor": "#1772AB",
436
+ "borderRightWidth": 2,
437
+ "borderStyle": "solid",
438
+ "borderTopColor": "#1772AB",
439
+ "borderTopLeftRadius": 4,
440
+ "borderTopRightRadius": 4,
441
+ "borderTopWidth": 2,
442
+ "paddingBottom": 16,
443
+ "paddingLeft": 16,
444
+ "paddingRight": 16,
445
+ "paddingTop": 16,
446
+ }
447
+ }
448
+ >
449
+ <Text
450
+ style={
451
+ {
452
+ "fontFamily": "GTStandard",
453
+ "fontSize": 14,
454
+ "letterSpacing": 0.3,
455
+ "lineHeight": 20,
456
+ }
457
+ }
458
+ suppressHighlighting={true}
459
+ >
460
+ border.info
461
+ </Text>
462
+ </View>
463
+ <View
464
+ style={
465
+ {
466
+ "backgroundColor": "#ffffff",
467
+ "borderBottomColor": "#438D06",
468
+ "borderBottomLeftRadius": 4,
469
+ "borderBottomRightRadius": 4,
470
+ "borderBottomWidth": 2,
471
+ "borderLeftColor": "#438D06",
472
+ "borderLeftWidth": 2,
473
+ "borderRightColor": "#438D06",
474
+ "borderRightWidth": 2,
475
+ "borderStyle": "solid",
476
+ "borderTopColor": "#438D06",
477
+ "borderTopLeftRadius": 4,
478
+ "borderTopRightRadius": 4,
479
+ "borderTopWidth": 2,
480
+ "paddingBottom": 16,
481
+ "paddingLeft": 16,
482
+ "paddingRight": 16,
483
+ "paddingTop": 16,
484
+ }
485
+ }
486
+ >
487
+ <Text
488
+ style={
489
+ {
490
+ "fontFamily": "GTStandard",
491
+ "fontSize": 14,
492
+ "letterSpacing": 0.3,
493
+ "lineHeight": 20,
494
+ }
495
+ }
496
+ suppressHighlighting={true}
497
+ >
498
+ border.success
499
+ </Text>
500
+ </View>
501
+ <View
502
+ style={
503
+ {
504
+ "backgroundColor": "#ffffff",
505
+ "borderBottomColor": "#EFC11F",
506
+ "borderBottomLeftRadius": 4,
507
+ "borderBottomRightRadius": 4,
508
+ "borderBottomWidth": 2,
509
+ "borderLeftColor": "#EFC11F",
510
+ "borderLeftWidth": 2,
511
+ "borderRightColor": "#EFC11F",
512
+ "borderRightWidth": 2,
513
+ "borderStyle": "solid",
514
+ "borderTopColor": "#EFC11F",
515
+ "borderTopLeftRadius": 4,
516
+ "borderTopRightRadius": 4,
517
+ "borderTopWidth": 2,
518
+ "paddingBottom": 16,
519
+ "paddingLeft": 16,
520
+ "paddingRight": 16,
521
+ "paddingTop": 16,
522
+ }
523
+ }
524
+ >
525
+ <Text
526
+ style={
527
+ {
528
+ "fontFamily": "GTStandard",
529
+ "fontSize": 14,
530
+ "letterSpacing": 0.3,
531
+ "lineHeight": 20,
532
+ }
533
+ }
534
+ suppressHighlighting={true}
535
+ >
536
+ border.warning
537
+ </Text>
538
+ </View>
539
+ <View
540
+ style={
541
+ {
542
+ "backgroundColor": "#ffffff",
543
+ "borderBottomColor": "#E2483D",
544
+ "borderBottomLeftRadius": 4,
545
+ "borderBottomRightRadius": 4,
546
+ "borderBottomWidth": 2,
547
+ "borderLeftColor": "#E2483D",
548
+ "borderLeftWidth": 2,
549
+ "borderRightColor": "#E2483D",
550
+ "borderRightWidth": 2,
551
+ "borderStyle": "solid",
552
+ "borderTopColor": "#E2483D",
553
+ "borderTopLeftRadius": 4,
554
+ "borderTopRightRadius": 4,
555
+ "borderTopWidth": 2,
556
+ "paddingBottom": 16,
557
+ "paddingLeft": 16,
558
+ "paddingRight": 16,
559
+ "paddingTop": 16,
560
+ }
561
+ }
562
+ >
563
+ <Text
564
+ style={
565
+ {
566
+ "fontFamily": "GTStandard",
567
+ "fontSize": 14,
568
+ "letterSpacing": 0.3,
569
+ "lineHeight": 20,
570
+ }
571
+ }
572
+ suppressHighlighting={true}
573
+ >
574
+ border.danger
575
+ </Text>
576
+ </View>
577
+ </View>
578
+ </RNCSafeAreaProvider>
579
+ `;
580
+
581
+ exports[`Bumper/Core/Primitives/View/Features BordersAndRadius 1`] = `
582
+ <RNCSafeAreaProvider
583
+ onInsetsChange={[Function]}
584
+ style={
585
+ [
586
+ {
587
+ "flex": 1,
588
+ },
589
+ undefined,
590
+ ]
591
+ }
592
+ >
593
+ <View
594
+ style={
595
+ {
596
+ "flexDirection": "row",
597
+ "flexWrap": "wrap",
598
+ "gap": 16,
599
+ }
600
+ }
601
+ >
602
+ <View
603
+ style={
604
+ {
605
+ "backgroundColor": "#F7F4EE",
606
+ "borderBottomColor": "#EAE3D6",
607
+ "borderBottomLeftRadius": 0,
608
+ "borderBottomRightRadius": 0,
609
+ "borderBottomWidth": 1,
610
+ "borderLeftColor": "#EAE3D6",
611
+ "borderLeftWidth": 1,
612
+ "borderRightColor": "#EAE3D6",
613
+ "borderRightWidth": 1,
614
+ "borderStyle": "solid",
615
+ "borderTopColor": "#EAE3D6",
616
+ "borderTopLeftRadius": 0,
617
+ "borderTopRightRadius": 0,
618
+ "borderTopWidth": 1,
619
+ "paddingBottom": 24,
620
+ "paddingLeft": 24,
621
+ "paddingRight": 24,
622
+ "paddingTop": 24,
623
+ }
624
+ }
625
+ >
626
+ <Text
627
+ style={
628
+ {
629
+ "fontFamily": "GTStandard",
630
+ "fontSize": 14,
631
+ "letterSpacing": 0.3,
632
+ "lineHeight": 20,
633
+ }
634
+ }
635
+ suppressHighlighting={true}
636
+ >
637
+ radius.none
638
+ </Text>
639
+ </View>
640
+ <View
641
+ style={
642
+ {
643
+ "backgroundColor": "#F7F4EE",
644
+ "borderBottomColor": "#EAE3D6",
645
+ "borderBottomLeftRadius": 2,
646
+ "borderBottomRightRadius": 2,
647
+ "borderBottomWidth": 1,
648
+ "borderLeftColor": "#EAE3D6",
649
+ "borderLeftWidth": 1,
650
+ "borderRightColor": "#EAE3D6",
651
+ "borderRightWidth": 1,
652
+ "borderStyle": "solid",
653
+ "borderTopColor": "#EAE3D6",
654
+ "borderTopLeftRadius": 2,
655
+ "borderTopRightRadius": 2,
656
+ "borderTopWidth": 1,
657
+ "paddingBottom": 24,
658
+ "paddingLeft": 24,
659
+ "paddingRight": 24,
660
+ "paddingTop": 24,
661
+ }
662
+ }
663
+ >
664
+ <Text
665
+ style={
666
+ {
667
+ "fontFamily": "GTStandard",
668
+ "fontSize": 14,
669
+ "letterSpacing": 0.3,
670
+ "lineHeight": 20,
671
+ }
672
+ }
673
+ suppressHighlighting={true}
674
+ >
675
+ radius.s
676
+ </Text>
677
+ </View>
678
+ <View
679
+ style={
680
+ {
681
+ "backgroundColor": "#F7F4EE",
682
+ "borderBottomColor": "#EAE3D6",
683
+ "borderBottomLeftRadius": 4,
684
+ "borderBottomRightRadius": 4,
685
+ "borderBottomWidth": 1,
686
+ "borderLeftColor": "#EAE3D6",
687
+ "borderLeftWidth": 1,
688
+ "borderRightColor": "#EAE3D6",
689
+ "borderRightWidth": 1,
690
+ "borderStyle": "solid",
691
+ "borderTopColor": "#EAE3D6",
692
+ "borderTopLeftRadius": 4,
693
+ "borderTopRightRadius": 4,
694
+ "borderTopWidth": 1,
695
+ "paddingBottom": 24,
696
+ "paddingLeft": 24,
697
+ "paddingRight": 24,
698
+ "paddingTop": 24,
699
+ }
700
+ }
701
+ >
702
+ <Text
703
+ style={
704
+ {
705
+ "fontFamily": "GTStandard",
706
+ "fontSize": 14,
707
+ "letterSpacing": 0.3,
708
+ "lineHeight": 20,
709
+ }
710
+ }
711
+ suppressHighlighting={true}
712
+ >
713
+ radius.m
714
+ </Text>
715
+ </View>
716
+ <View
717
+ style={
718
+ {
719
+ "backgroundColor": "#F7F4EE",
720
+ "borderBottomColor": "#EAE3D6",
721
+ "borderBottomLeftRadius": 8,
722
+ "borderBottomRightRadius": 8,
723
+ "borderBottomWidth": 1,
724
+ "borderLeftColor": "#EAE3D6",
725
+ "borderLeftWidth": 1,
726
+ "borderRightColor": "#EAE3D6",
727
+ "borderRightWidth": 1,
728
+ "borderStyle": "solid",
729
+ "borderTopColor": "#EAE3D6",
730
+ "borderTopLeftRadius": 8,
731
+ "borderTopRightRadius": 8,
732
+ "borderTopWidth": 1,
733
+ "paddingBottom": 24,
734
+ "paddingLeft": 24,
735
+ "paddingRight": 24,
736
+ "paddingTop": 24,
737
+ }
738
+ }
739
+ >
740
+ <Text
741
+ style={
742
+ {
743
+ "fontFamily": "GTStandard",
744
+ "fontSize": 14,
745
+ "letterSpacing": 0.3,
746
+ "lineHeight": 20,
747
+ }
748
+ }
749
+ suppressHighlighting={true}
750
+ >
751
+ radius.l
752
+ </Text>
753
+ </View>
754
+ <View
755
+ style={
756
+ {
757
+ "alignItems": "center",
758
+ "backgroundColor": "#F7F4EE",
759
+ "borderBottomColor": "#EAE3D6",
760
+ "borderBottomLeftRadius": 1000,
761
+ "borderBottomRightRadius": 1000,
762
+ "borderBottomWidth": 1,
763
+ "borderLeftColor": "#EAE3D6",
764
+ "borderLeftWidth": 1,
765
+ "borderRightColor": "#EAE3D6",
766
+ "borderRightWidth": 1,
767
+ "borderStyle": "solid",
768
+ "borderTopColor": "#EAE3D6",
769
+ "borderTopLeftRadius": 1000,
770
+ "borderTopRightRadius": 1000,
771
+ "borderTopWidth": 1,
772
+ "height": 96,
773
+ "justifyContent": "center",
774
+ "paddingBottom": 24,
775
+ "paddingLeft": 24,
776
+ "paddingRight": 24,
777
+ "paddingTop": 24,
778
+ "width": 96,
779
+ }
780
+ }
781
+ >
782
+ <Text
783
+ style={
784
+ {
785
+ "fontFamily": "GTStandard",
786
+ "fontSize": 14,
787
+ "letterSpacing": 0.3,
788
+ "lineHeight": 20,
789
+ }
790
+ }
791
+ suppressHighlighting={true}
792
+ >
793
+ circle
794
+ </Text>
795
+ </View>
796
+ </View>
797
+ </RNCSafeAreaProvider>
798
+ `;
799
+
800
+ exports[`Bumper/Core/Primitives/View/Features DirectionalMargin 1`] = `
801
+ <RNCSafeAreaProvider
802
+ onInsetsChange={[Function]}
803
+ style={
804
+ [
805
+ {
806
+ "flex": 1,
807
+ },
808
+ undefined,
809
+ ]
810
+ }
811
+ >
812
+ <View
813
+ style={
814
+ {
815
+ "backgroundColor": "#F1ECE4",
816
+ "borderBottomLeftRadius": 4,
817
+ "borderBottomRightRadius": 4,
818
+ "borderTopLeftRadius": 4,
819
+ "borderTopRightRadius": 4,
820
+ "paddingBottom": 8,
821
+ "paddingLeft": 8,
822
+ "paddingRight": 8,
823
+ "paddingTop": 8,
824
+ }
825
+ }
826
+ >
827
+ <View
828
+ style={
829
+ {
830
+ "flexDirection": "column",
831
+ "gap": 0,
832
+ }
833
+ }
834
+ >
835
+ <View
836
+ style={
837
+ {
838
+ "backgroundColor": "#43390A",
839
+ "borderBottomLeftRadius": 4,
840
+ "borderBottomRightRadius": 4,
841
+ "borderTopLeftRadius": 4,
842
+ "borderTopRightRadius": 4,
843
+ "marginBottom": 8,
844
+ "marginTop": 32,
845
+ "paddingBottom": 16,
846
+ "paddingLeft": 16,
847
+ "paddingRight": 16,
848
+ "paddingTop": 16,
849
+ }
850
+ }
851
+ >
852
+ <Text
853
+ style={
854
+ {
855
+ "color": "#ffffff",
856
+ "fontFamily": "GTStandard",
857
+ "fontSize": 14,
858
+ "letterSpacing": 0.3,
859
+ "lineHeight": 20,
860
+ }
861
+ }
862
+ suppressHighlighting={true}
863
+ >
864
+ marginTop: space.32, marginBottom: space.8
865
+ </Text>
866
+ </View>
867
+ <View
868
+ style={
869
+ {
870
+ "backgroundColor": "#43390A",
871
+ "borderBottomLeftRadius": 4,
872
+ "borderBottomRightRadius": 4,
873
+ "borderTopLeftRadius": 4,
874
+ "borderTopRightRadius": 4,
875
+ "marginBottom": 8,
876
+ "marginLeft": 32,
877
+ "marginRight": 32,
878
+ "marginTop": 8,
879
+ "paddingBottom": 16,
880
+ "paddingLeft": 16,
881
+ "paddingRight": 16,
882
+ "paddingTop": 16,
883
+ }
884
+ }
885
+ >
886
+ <Text
887
+ style={
888
+ {
889
+ "color": "#ffffff",
890
+ "fontFamily": "GTStandard",
891
+ "fontSize": 14,
892
+ "letterSpacing": 0.3,
893
+ "lineHeight": 20,
894
+ }
895
+ }
896
+ suppressHighlighting={true}
897
+ >
898
+ marginHorizontal: space.32, marginVertical: space.8
899
+ </Text>
900
+ </View>
901
+ </View>
902
+ </View>
903
+ </RNCSafeAreaProvider>
904
+ `;
905
+
906
+ exports[`Bumper/Core/Primitives/View/Features DirectionalPadding 1`] = `
907
+ <RNCSafeAreaProvider
908
+ onInsetsChange={[Function]}
909
+ style={
910
+ [
911
+ {
912
+ "flex": 1,
913
+ },
914
+ undefined,
915
+ ]
916
+ }
917
+ >
918
+ <View
919
+ style={
920
+ {
921
+ "flexDirection": "column",
922
+ "gap": 16,
923
+ }
924
+ }
925
+ >
926
+ <View
927
+ style={
928
+ {
929
+ "backgroundColor": "#ECFEDD",
930
+ "borderBottomLeftRadius": 4,
931
+ "borderBottomRightRadius": 4,
932
+ "borderTopLeftRadius": 4,
933
+ "borderTopRightRadius": 4,
934
+ "paddingBottom": 8,
935
+ "paddingTop": 32,
936
+ }
937
+ }
938
+ >
939
+ <Text
940
+ style={
941
+ {
942
+ "fontFamily": "GTStandard",
943
+ "fontSize": 14,
944
+ "letterSpacing": 0.3,
945
+ "lineHeight": 20,
946
+ }
947
+ }
948
+ suppressHighlighting={true}
949
+ >
950
+ paddingTop: space.32, paddingBottom: space.8
951
+ </Text>
952
+ </View>
953
+ <View
954
+ style={
955
+ {
956
+ "backgroundColor": "#ECFEDD",
957
+ "borderBottomLeftRadius": 4,
958
+ "borderBottomRightRadius": 4,
959
+ "borderTopLeftRadius": 4,
960
+ "borderTopRightRadius": 4,
961
+ "paddingLeft": 32,
962
+ "paddingRight": 8,
963
+ }
964
+ }
965
+ >
966
+ <Text
967
+ style={
968
+ {
969
+ "fontFamily": "GTStandard",
970
+ "fontSize": 14,
971
+ "letterSpacing": 0.3,
972
+ "lineHeight": 20,
973
+ }
974
+ }
975
+ suppressHighlighting={true}
976
+ >
977
+ paddingLeft: space.32, paddingRight: space.8
978
+ </Text>
979
+ </View>
980
+ <View
981
+ style={
982
+ {
983
+ "backgroundColor": "#ECFEDD",
984
+ "borderBottomLeftRadius": 4,
985
+ "borderBottomRightRadius": 4,
986
+ "borderTopLeftRadius": 4,
987
+ "borderTopRightRadius": 4,
988
+ "paddingBottom": 8,
989
+ "paddingLeft": 32,
990
+ "paddingRight": 32,
991
+ "paddingTop": 8,
992
+ }
993
+ }
994
+ >
995
+ <Text
996
+ style={
997
+ {
998
+ "fontFamily": "GTStandard",
999
+ "fontSize": 14,
1000
+ "letterSpacing": 0.3,
1001
+ "lineHeight": 20,
1002
+ }
1003
+ }
1004
+ suppressHighlighting={true}
1005
+ >
1006
+ paddingHorizontal: space.32, paddingVertical: space.8
1007
+ </Text>
1008
+ </View>
1009
+ </View>
1010
+ </RNCSafeAreaProvider>
1011
+ `;
1012
+
1013
+ exports[`Bumper/Core/Primitives/View/Features FlexAlignment 1`] = `
1014
+ <RNCSafeAreaProvider
1015
+ onInsetsChange={[Function]}
1016
+ style={
1017
+ [
1018
+ {
1019
+ "flex": 1,
1020
+ },
1021
+ undefined,
1022
+ ]
1023
+ }
1024
+ >
1025
+ <View
1026
+ style={
1027
+ {
1028
+ "flexDirection": "column",
1029
+ "gap": 16,
1030
+ }
1031
+ }
1032
+ >
1033
+ <View
1034
+ style={
1035
+ {
1036
+ "alignItems": "flex-start",
1037
+ "backgroundColor": "#F7F4EE",
1038
+ "borderBottomLeftRadius": 4,
1039
+ "borderBottomRightRadius": 4,
1040
+ "borderTopLeftRadius": 4,
1041
+ "borderTopRightRadius": 4,
1042
+ "flexDirection": "row",
1043
+ "height": 120,
1044
+ "justifyContent": "flex-start",
1045
+ "paddingBottom": 16,
1046
+ "paddingLeft": 16,
1047
+ "paddingRight": 16,
1048
+ "paddingTop": 16,
1049
+ }
1050
+ }
1051
+ >
1052
+ <View
1053
+ style={
1054
+ {
1055
+ "backgroundColor": "#563B56",
1056
+ "borderBottomLeftRadius": 2,
1057
+ "borderBottomRightRadius": 2,
1058
+ "borderTopLeftRadius": 2,
1059
+ "borderTopRightRadius": 2,
1060
+ "paddingBottom": 16,
1061
+ "paddingLeft": 16,
1062
+ "paddingRight": 16,
1063
+ "paddingTop": 16,
1064
+ }
1065
+ }
1066
+ >
1067
+ <Text
1068
+ style={
1069
+ {
1070
+ "color": "#ffffff",
1071
+ "fontFamily": "GTStandard",
1072
+ "fontSize": 14,
1073
+ "letterSpacing": 0.3,
1074
+ "lineHeight": 20,
1075
+ }
1076
+ }
1077
+ suppressHighlighting={true}
1078
+ >
1079
+ alignItems: flex-start, justifyContent: flex-start
1080
+ </Text>
1081
+ </View>
1082
+ </View>
1083
+ <View
1084
+ style={
1085
+ {
1086
+ "alignItems": "center",
1087
+ "backgroundColor": "#F7F4EE",
1088
+ "borderBottomLeftRadius": 4,
1089
+ "borderBottomRightRadius": 4,
1090
+ "borderTopLeftRadius": 4,
1091
+ "borderTopRightRadius": 4,
1092
+ "flexDirection": "row",
1093
+ "height": 120,
1094
+ "justifyContent": "center",
1095
+ "paddingBottom": 16,
1096
+ "paddingLeft": 16,
1097
+ "paddingRight": 16,
1098
+ "paddingTop": 16,
1099
+ }
1100
+ }
1101
+ >
1102
+ <View
1103
+ style={
1104
+ {
1105
+ "backgroundColor": "#43390A",
1106
+ "borderBottomLeftRadius": 2,
1107
+ "borderBottomRightRadius": 2,
1108
+ "borderTopLeftRadius": 2,
1109
+ "borderTopRightRadius": 2,
1110
+ "paddingBottom": 16,
1111
+ "paddingLeft": 16,
1112
+ "paddingRight": 16,
1113
+ "paddingTop": 16,
1114
+ }
1115
+ }
1116
+ >
1117
+ <Text
1118
+ style={
1119
+ {
1120
+ "color": "#ffffff",
1121
+ "fontFamily": "GTStandard",
1122
+ "fontSize": 14,
1123
+ "letterSpacing": 0.3,
1124
+ "lineHeight": 20,
1125
+ }
1126
+ }
1127
+ suppressHighlighting={true}
1128
+ >
1129
+ alignItems: center, justifyContent: center
1130
+ </Text>
1131
+ </View>
1132
+ </View>
1133
+ <View
1134
+ style={
1135
+ {
1136
+ "alignItems": "flex-end",
1137
+ "backgroundColor": "#F7F4EE",
1138
+ "borderBottomLeftRadius": 4,
1139
+ "borderBottomRightRadius": 4,
1140
+ "borderTopLeftRadius": 4,
1141
+ "borderTopRightRadius": 4,
1142
+ "flexDirection": "row",
1143
+ "height": 120,
1144
+ "justifyContent": "flex-end",
1145
+ "paddingBottom": 16,
1146
+ "paddingLeft": 16,
1147
+ "paddingRight": 16,
1148
+ "paddingTop": 16,
1149
+ }
1150
+ }
1151
+ >
1152
+ <View
1153
+ style={
1154
+ {
1155
+ "backgroundColor": "#E9F4FC",
1156
+ "borderBottomLeftRadius": 2,
1157
+ "borderBottomRightRadius": 2,
1158
+ "borderTopLeftRadius": 2,
1159
+ "borderTopRightRadius": 2,
1160
+ "paddingBottom": 16,
1161
+ "paddingLeft": 16,
1162
+ "paddingRight": 16,
1163
+ "paddingTop": 16,
1164
+ }
1165
+ }
1166
+ >
1167
+ <Text
1168
+ style={
1169
+ {
1170
+ "fontFamily": "GTStandard",
1171
+ "fontSize": 14,
1172
+ "letterSpacing": 0.3,
1173
+ "lineHeight": 20,
1174
+ }
1175
+ }
1176
+ suppressHighlighting={true}
1177
+ >
1178
+ alignItems: flex-end, justifyContent: flex-end
1179
+ </Text>
1180
+ </View>
1181
+ </View>
1182
+ <View
1183
+ style={
1184
+ {
1185
+ "alignItems": "stretch",
1186
+ "backgroundColor": "#F7F4EE",
1187
+ "borderBottomLeftRadius": 4,
1188
+ "borderBottomRightRadius": 4,
1189
+ "borderTopLeftRadius": 4,
1190
+ "borderTopRightRadius": 4,
1191
+ "flexDirection": "row",
1192
+ "height": 120,
1193
+ "justifyContent": "space-between",
1194
+ "paddingBottom": 16,
1195
+ "paddingLeft": 16,
1196
+ "paddingRight": 16,
1197
+ "paddingTop": 16,
1198
+ }
1199
+ }
1200
+ >
1201
+ <View
1202
+ style={
1203
+ {
1204
+ "backgroundColor": "#ECFEDD",
1205
+ "borderBottomLeftRadius": 2,
1206
+ "borderBottomRightRadius": 2,
1207
+ "borderTopLeftRadius": 2,
1208
+ "borderTopRightRadius": 2,
1209
+ "paddingBottom": 16,
1210
+ "paddingLeft": 16,
1211
+ "paddingRight": 16,
1212
+ "paddingTop": 16,
1213
+ }
1214
+ }
1215
+ >
1216
+ <Text
1217
+ style={
1218
+ {
1219
+ "fontFamily": "GTStandard",
1220
+ "fontSize": 14,
1221
+ "letterSpacing": 0.3,
1222
+ "lineHeight": 20,
1223
+ }
1224
+ }
1225
+ suppressHighlighting={true}
1226
+ >
1227
+ Item 1
1228
+ </Text>
1229
+ </View>
1230
+ <View
1231
+ style={
1232
+ {
1233
+ "backgroundColor": "#FDF8E7",
1234
+ "borderBottomLeftRadius": 2,
1235
+ "borderBottomRightRadius": 2,
1236
+ "borderTopLeftRadius": 2,
1237
+ "borderTopRightRadius": 2,
1238
+ "paddingBottom": 16,
1239
+ "paddingLeft": 16,
1240
+ "paddingRight": 16,
1241
+ "paddingTop": 16,
1242
+ }
1243
+ }
1244
+ >
1245
+ <Text
1246
+ style={
1247
+ {
1248
+ "fontFamily": "GTStandard",
1249
+ "fontSize": 14,
1250
+ "letterSpacing": 0.3,
1251
+ "lineHeight": 20,
1252
+ }
1253
+ }
1254
+ suppressHighlighting={true}
1255
+ >
1256
+ Item 2
1257
+ </Text>
1258
+ </View>
1259
+ <View
1260
+ style={
1261
+ {
1262
+ "backgroundColor": "#FDE4E3",
1263
+ "borderBottomLeftRadius": 2,
1264
+ "borderBottomRightRadius": 2,
1265
+ "borderTopLeftRadius": 2,
1266
+ "borderTopRightRadius": 2,
1267
+ "paddingBottom": 16,
1268
+ "paddingLeft": 16,
1269
+ "paddingRight": 16,
1270
+ "paddingTop": 16,
1271
+ }
1272
+ }
1273
+ >
1274
+ <Text
1275
+ style={
1276
+ {
1277
+ "fontFamily": "GTStandard",
1278
+ "fontSize": 14,
1279
+ "letterSpacing": 0.3,
1280
+ "lineHeight": 20,
1281
+ }
1282
+ }
1283
+ suppressHighlighting={true}
1284
+ >
1285
+ Item 3
1286
+ </Text>
1287
+ </View>
1288
+ </View>
1289
+ </View>
1290
+ </RNCSafeAreaProvider>
1291
+ `;
1292
+
1293
+ exports[`Bumper/Core/Primitives/View/Features FlexLayout 1`] = `
1294
+ <RNCSafeAreaProvider
1295
+ onInsetsChange={[Function]}
1296
+ style={
1297
+ [
1298
+ {
1299
+ "flex": 1,
1300
+ },
1301
+ undefined,
1302
+ ]
1303
+ }
1304
+ >
1305
+ <View
1306
+ style={
1307
+ {
1308
+ "flexDirection": "column",
1309
+ "gap": 16,
1310
+ }
1311
+ }
1312
+ >
1313
+ <View
1314
+ style={
1315
+ {
1316
+ "backgroundColor": "#F7F4EE",
1317
+ "borderBottomLeftRadius": 4,
1318
+ "borderBottomRightRadius": 4,
1319
+ "borderTopLeftRadius": 4,
1320
+ "borderTopRightRadius": 4,
1321
+ "flexDirection": "row",
1322
+ "paddingBottom": 16,
1323
+ "paddingLeft": 16,
1324
+ "paddingRight": 16,
1325
+ "paddingTop": 16,
1326
+ }
1327
+ }
1328
+ >
1329
+ <View
1330
+ style={
1331
+ {
1332
+ "backgroundColor": "#563B56",
1333
+ "borderBottomLeftRadius": 2,
1334
+ "borderBottomRightRadius": 2,
1335
+ "borderTopLeftRadius": 2,
1336
+ "borderTopRightRadius": 2,
1337
+ "flexGrow": 1,
1338
+ "paddingBottom": 16,
1339
+ "paddingLeft": 16,
1340
+ "paddingRight": 16,
1341
+ "paddingTop": 16,
1342
+ }
1343
+ }
1344
+ >
1345
+ <Text
1346
+ style={
1347
+ {
1348
+ "color": "#ffffff",
1349
+ "fontFamily": "GTStandard",
1350
+ "fontSize": 14,
1351
+ "letterSpacing": 0.3,
1352
+ "lineHeight": 20,
1353
+ }
1354
+ }
1355
+ suppressHighlighting={true}
1356
+ >
1357
+ flexGrow: 1
1358
+ </Text>
1359
+ </View>
1360
+ <View
1361
+ style={
1362
+ {
1363
+ "backgroundColor": "#43390A",
1364
+ "borderBottomLeftRadius": 2,
1365
+ "borderBottomRightRadius": 2,
1366
+ "borderTopLeftRadius": 2,
1367
+ "borderTopRightRadius": 2,
1368
+ "flexGrow": 2,
1369
+ "marginLeft": 8,
1370
+ "paddingBottom": 16,
1371
+ "paddingLeft": 16,
1372
+ "paddingRight": 16,
1373
+ "paddingTop": 16,
1374
+ }
1375
+ }
1376
+ >
1377
+ <Text
1378
+ style={
1379
+ {
1380
+ "color": "#ffffff",
1381
+ "fontFamily": "GTStandard",
1382
+ "fontSize": 14,
1383
+ "letterSpacing": 0.3,
1384
+ "lineHeight": 20,
1385
+ }
1386
+ }
1387
+ suppressHighlighting={true}
1388
+ >
1389
+ flexGrow: 2
1390
+ </Text>
1391
+ </View>
1392
+ </View>
1393
+ <View
1394
+ style={
1395
+ {
1396
+ "backgroundColor": "#F7F4EE",
1397
+ "borderBottomLeftRadius": 4,
1398
+ "borderBottomRightRadius": 4,
1399
+ "borderTopLeftRadius": 4,
1400
+ "borderTopRightRadius": 4,
1401
+ "flexDirection": "row",
1402
+ "gap": 8,
1403
+ "paddingBottom": 16,
1404
+ "paddingLeft": 16,
1405
+ "paddingRight": 16,
1406
+ "paddingTop": 16,
1407
+ }
1408
+ }
1409
+ >
1410
+ <View
1411
+ style={
1412
+ {
1413
+ "backgroundColor": "#E9F4FC",
1414
+ "borderBottomLeftRadius": 2,
1415
+ "borderBottomRightRadius": 2,
1416
+ "borderTopLeftRadius": 2,
1417
+ "borderTopRightRadius": 2,
1418
+ "flexGrow": 1,
1419
+ "paddingBottom": 16,
1420
+ "paddingLeft": 16,
1421
+ "paddingRight": 16,
1422
+ "paddingTop": 16,
1423
+ }
1424
+ }
1425
+ >
1426
+ <Text
1427
+ style={
1428
+ {
1429
+ "fontFamily": "GTStandard",
1430
+ "fontSize": 14,
1431
+ "letterSpacing": 0.3,
1432
+ "lineHeight": 20,
1433
+ }
1434
+ }
1435
+ suppressHighlighting={true}
1436
+ >
1437
+ flexGrow: 1
1438
+ </Text>
1439
+ </View>
1440
+ <View
1441
+ style={
1442
+ {
1443
+ "backgroundColor": "#ECFEDD",
1444
+ "borderBottomLeftRadius": 2,
1445
+ "borderBottomRightRadius": 2,
1446
+ "borderTopLeftRadius": 2,
1447
+ "borderTopRightRadius": 2,
1448
+ "flexGrow": 1,
1449
+ "paddingBottom": 16,
1450
+ "paddingLeft": 16,
1451
+ "paddingRight": 16,
1452
+ "paddingTop": 16,
1453
+ }
1454
+ }
1455
+ >
1456
+ <Text
1457
+ style={
1458
+ {
1459
+ "fontFamily": "GTStandard",
1460
+ "fontSize": 14,
1461
+ "letterSpacing": 0.3,
1462
+ "lineHeight": 20,
1463
+ }
1464
+ }
1465
+ suppressHighlighting={true}
1466
+ >
1467
+ flexGrow: 1
1468
+ </Text>
1469
+ </View>
1470
+ <View
1471
+ style={
1472
+ {
1473
+ "backgroundColor": "#FDF8E7",
1474
+ "borderBottomLeftRadius": 2,
1475
+ "borderBottomRightRadius": 2,
1476
+ "borderTopLeftRadius": 2,
1477
+ "borderTopRightRadius": 2,
1478
+ "flexGrow": 1,
1479
+ "paddingBottom": 16,
1480
+ "paddingLeft": 16,
1481
+ "paddingRight": 16,
1482
+ "paddingTop": 16,
1483
+ }
1484
+ }
1485
+ >
1486
+ <Text
1487
+ style={
1488
+ {
1489
+ "fontFamily": "GTStandard",
1490
+ "fontSize": 14,
1491
+ "letterSpacing": 0.3,
1492
+ "lineHeight": 20,
1493
+ }
1494
+ }
1495
+ suppressHighlighting={true}
1496
+ >
1497
+ flexGrow: 1
1498
+ </Text>
1499
+ </View>
1500
+ </View>
1501
+ </View>
1502
+ </RNCSafeAreaProvider>
1503
+ `;
1504
+
1505
+ exports[`Bumper/Core/Primitives/View/Features FlexWrap 1`] = `
1506
+ <RNCSafeAreaProvider
1507
+ onInsetsChange={[Function]}
1508
+ style={
1509
+ [
1510
+ {
1511
+ "flex": 1,
1512
+ },
1513
+ undefined,
1514
+ ]
1515
+ }
1516
+ >
1517
+ <View
1518
+ style={
1519
+ {
1520
+ "backgroundColor": "#F7F4EE",
1521
+ "borderBottomLeftRadius": 4,
1522
+ "borderBottomRightRadius": 4,
1523
+ "borderTopLeftRadius": 4,
1524
+ "borderTopRightRadius": 4,
1525
+ "flexDirection": "row",
1526
+ "flexWrap": "wrap",
1527
+ "gap": 8,
1528
+ "paddingBottom": 16,
1529
+ "paddingLeft": 16,
1530
+ "paddingRight": 16,
1531
+ "paddingTop": 16,
1532
+ }
1533
+ }
1534
+ >
1535
+ <View
1536
+ style={
1537
+ {
1538
+ "backgroundColor": "#563B56",
1539
+ "borderBottomLeftRadius": 2,
1540
+ "borderBottomRightRadius": 2,
1541
+ "borderTopLeftRadius": 2,
1542
+ "borderTopRightRadius": 2,
1543
+ "paddingBottom": 16,
1544
+ "paddingLeft": 16,
1545
+ "paddingRight": 16,
1546
+ "paddingTop": 16,
1547
+ "width": 64,
1548
+ }
1549
+ }
1550
+ >
1551
+ <Text
1552
+ style={
1553
+ {
1554
+ "color": "#ffffff",
1555
+ "fontFamily": "GTStandard",
1556
+ "fontSize": 14,
1557
+ "letterSpacing": 0.3,
1558
+ "lineHeight": 20,
1559
+ }
1560
+ }
1561
+ suppressHighlighting={true}
1562
+ >
1563
+ 1
1564
+ </Text>
1565
+ </View>
1566
+ <View
1567
+ style={
1568
+ {
1569
+ "backgroundColor": "#563B56",
1570
+ "borderBottomLeftRadius": 2,
1571
+ "borderBottomRightRadius": 2,
1572
+ "borderTopLeftRadius": 2,
1573
+ "borderTopRightRadius": 2,
1574
+ "paddingBottom": 16,
1575
+ "paddingLeft": 16,
1576
+ "paddingRight": 16,
1577
+ "paddingTop": 16,
1578
+ "width": 64,
1579
+ }
1580
+ }
1581
+ >
1582
+ <Text
1583
+ style={
1584
+ {
1585
+ "color": "#ffffff",
1586
+ "fontFamily": "GTStandard",
1587
+ "fontSize": 14,
1588
+ "letterSpacing": 0.3,
1589
+ "lineHeight": 20,
1590
+ }
1591
+ }
1592
+ suppressHighlighting={true}
1593
+ >
1594
+ 2
1595
+ </Text>
1596
+ </View>
1597
+ <View
1598
+ style={
1599
+ {
1600
+ "backgroundColor": "#563B56",
1601
+ "borderBottomLeftRadius": 2,
1602
+ "borderBottomRightRadius": 2,
1603
+ "borderTopLeftRadius": 2,
1604
+ "borderTopRightRadius": 2,
1605
+ "paddingBottom": 16,
1606
+ "paddingLeft": 16,
1607
+ "paddingRight": 16,
1608
+ "paddingTop": 16,
1609
+ "width": 64,
1610
+ }
1611
+ }
1612
+ >
1613
+ <Text
1614
+ style={
1615
+ {
1616
+ "color": "#ffffff",
1617
+ "fontFamily": "GTStandard",
1618
+ "fontSize": 14,
1619
+ "letterSpacing": 0.3,
1620
+ "lineHeight": 20,
1621
+ }
1622
+ }
1623
+ suppressHighlighting={true}
1624
+ >
1625
+ 3
1626
+ </Text>
1627
+ </View>
1628
+ <View
1629
+ style={
1630
+ {
1631
+ "backgroundColor": "#563B56",
1632
+ "borderBottomLeftRadius": 2,
1633
+ "borderBottomRightRadius": 2,
1634
+ "borderTopLeftRadius": 2,
1635
+ "borderTopRightRadius": 2,
1636
+ "paddingBottom": 16,
1637
+ "paddingLeft": 16,
1638
+ "paddingRight": 16,
1639
+ "paddingTop": 16,
1640
+ "width": 64,
1641
+ }
1642
+ }
1643
+ >
1644
+ <Text
1645
+ style={
1646
+ {
1647
+ "color": "#ffffff",
1648
+ "fontFamily": "GTStandard",
1649
+ "fontSize": 14,
1650
+ "letterSpacing": 0.3,
1651
+ "lineHeight": 20,
1652
+ }
1653
+ }
1654
+ suppressHighlighting={true}
1655
+ >
1656
+ 4
1657
+ </Text>
1658
+ </View>
1659
+ <View
1660
+ style={
1661
+ {
1662
+ "backgroundColor": "#563B56",
1663
+ "borderBottomLeftRadius": 2,
1664
+ "borderBottomRightRadius": 2,
1665
+ "borderTopLeftRadius": 2,
1666
+ "borderTopRightRadius": 2,
1667
+ "paddingBottom": 16,
1668
+ "paddingLeft": 16,
1669
+ "paddingRight": 16,
1670
+ "paddingTop": 16,
1671
+ "width": 64,
1672
+ }
1673
+ }
1674
+ >
1675
+ <Text
1676
+ style={
1677
+ {
1678
+ "color": "#ffffff",
1679
+ "fontFamily": "GTStandard",
1680
+ "fontSize": 14,
1681
+ "letterSpacing": 0.3,
1682
+ "lineHeight": 20,
1683
+ }
1684
+ }
1685
+ suppressHighlighting={true}
1686
+ >
1687
+ 5
1688
+ </Text>
1689
+ </View>
1690
+ <View
1691
+ style={
1692
+ {
1693
+ "backgroundColor": "#563B56",
1694
+ "borderBottomLeftRadius": 2,
1695
+ "borderBottomRightRadius": 2,
1696
+ "borderTopLeftRadius": 2,
1697
+ "borderTopRightRadius": 2,
1698
+ "paddingBottom": 16,
1699
+ "paddingLeft": 16,
1700
+ "paddingRight": 16,
1701
+ "paddingTop": 16,
1702
+ "width": 64,
1703
+ }
1704
+ }
1705
+ >
1706
+ <Text
1707
+ style={
1708
+ {
1709
+ "color": "#ffffff",
1710
+ "fontFamily": "GTStandard",
1711
+ "fontSize": 14,
1712
+ "letterSpacing": 0.3,
1713
+ "lineHeight": 20,
1714
+ }
1715
+ }
1716
+ suppressHighlighting={true}
1717
+ >
1718
+ 6
1719
+ </Text>
1720
+ </View>
1721
+ <View
1722
+ style={
1723
+ {
1724
+ "backgroundColor": "#563B56",
1725
+ "borderBottomLeftRadius": 2,
1726
+ "borderBottomRightRadius": 2,
1727
+ "borderTopLeftRadius": 2,
1728
+ "borderTopRightRadius": 2,
1729
+ "paddingBottom": 16,
1730
+ "paddingLeft": 16,
1731
+ "paddingRight": 16,
1732
+ "paddingTop": 16,
1733
+ "width": 64,
1734
+ }
1735
+ }
1736
+ >
1737
+ <Text
1738
+ style={
1739
+ {
1740
+ "color": "#ffffff",
1741
+ "fontFamily": "GTStandard",
1742
+ "fontSize": 14,
1743
+ "letterSpacing": 0.3,
1744
+ "lineHeight": 20,
1745
+ }
1746
+ }
1747
+ suppressHighlighting={true}
1748
+ >
1749
+ 7
1750
+ </Text>
1751
+ </View>
1752
+ <View
1753
+ style={
1754
+ {
1755
+ "backgroundColor": "#563B56",
1756
+ "borderBottomLeftRadius": 2,
1757
+ "borderBottomRightRadius": 2,
1758
+ "borderTopLeftRadius": 2,
1759
+ "borderTopRightRadius": 2,
1760
+ "paddingBottom": 16,
1761
+ "paddingLeft": 16,
1762
+ "paddingRight": 16,
1763
+ "paddingTop": 16,
1764
+ "width": 64,
1765
+ }
1766
+ }
1767
+ >
1768
+ <Text
1769
+ style={
1770
+ {
1771
+ "color": "#ffffff",
1772
+ "fontFamily": "GTStandard",
1773
+ "fontSize": 14,
1774
+ "letterSpacing": 0.3,
1775
+ "lineHeight": 20,
1776
+ }
1777
+ }
1778
+ suppressHighlighting={true}
1779
+ >
1780
+ 8
1781
+ </Text>
1782
+ </View>
1783
+ <View
1784
+ style={
1785
+ {
1786
+ "backgroundColor": "#563B56",
1787
+ "borderBottomLeftRadius": 2,
1788
+ "borderBottomRightRadius": 2,
1789
+ "borderTopLeftRadius": 2,
1790
+ "borderTopRightRadius": 2,
1791
+ "paddingBottom": 16,
1792
+ "paddingLeft": 16,
1793
+ "paddingRight": 16,
1794
+ "paddingTop": 16,
1795
+ "width": 64,
1796
+ }
1797
+ }
1798
+ >
1799
+ <Text
1800
+ style={
1801
+ {
1802
+ "color": "#ffffff",
1803
+ "fontFamily": "GTStandard",
1804
+ "fontSize": 14,
1805
+ "letterSpacing": 0.3,
1806
+ "lineHeight": 20,
1807
+ }
1808
+ }
1809
+ suppressHighlighting={true}
1810
+ >
1811
+ 9
1812
+ </Text>
1813
+ </View>
1814
+ <View
1815
+ style={
1816
+ {
1817
+ "backgroundColor": "#563B56",
1818
+ "borderBottomLeftRadius": 2,
1819
+ "borderBottomRightRadius": 2,
1820
+ "borderTopLeftRadius": 2,
1821
+ "borderTopRightRadius": 2,
1822
+ "paddingBottom": 16,
1823
+ "paddingLeft": 16,
1824
+ "paddingRight": 16,
1825
+ "paddingTop": 16,
1826
+ "width": 64,
1827
+ }
1828
+ }
1829
+ >
1830
+ <Text
1831
+ style={
1832
+ {
1833
+ "color": "#ffffff",
1834
+ "fontFamily": "GTStandard",
1835
+ "fontSize": 14,
1836
+ "letterSpacing": 0.3,
1837
+ "lineHeight": 20,
1838
+ }
1839
+ }
1840
+ suppressHighlighting={true}
1841
+ >
1842
+ 10
1843
+ </Text>
1844
+ </View>
1845
+ <View
1846
+ style={
1847
+ {
1848
+ "backgroundColor": "#563B56",
1849
+ "borderBottomLeftRadius": 2,
1850
+ "borderBottomRightRadius": 2,
1851
+ "borderTopLeftRadius": 2,
1852
+ "borderTopRightRadius": 2,
1853
+ "paddingBottom": 16,
1854
+ "paddingLeft": 16,
1855
+ "paddingRight": 16,
1856
+ "paddingTop": 16,
1857
+ "width": 64,
1858
+ }
1859
+ }
1860
+ >
1861
+ <Text
1862
+ style={
1863
+ {
1864
+ "color": "#ffffff",
1865
+ "fontFamily": "GTStandard",
1866
+ "fontSize": 14,
1867
+ "letterSpacing": 0.3,
1868
+ "lineHeight": 20,
1869
+ }
1870
+ }
1871
+ suppressHighlighting={true}
1872
+ >
1873
+ 11
1874
+ </Text>
1875
+ </View>
1876
+ <View
1877
+ style={
1878
+ {
1879
+ "backgroundColor": "#563B56",
1880
+ "borderBottomLeftRadius": 2,
1881
+ "borderBottomRightRadius": 2,
1882
+ "borderTopLeftRadius": 2,
1883
+ "borderTopRightRadius": 2,
1884
+ "paddingBottom": 16,
1885
+ "paddingLeft": 16,
1886
+ "paddingRight": 16,
1887
+ "paddingTop": 16,
1888
+ "width": 64,
1889
+ }
1890
+ }
1891
+ >
1892
+ <Text
1893
+ style={
1894
+ {
1895
+ "color": "#ffffff",
1896
+ "fontFamily": "GTStandard",
1897
+ "fontSize": 14,
1898
+ "letterSpacing": 0.3,
1899
+ "lineHeight": 20,
1900
+ }
1901
+ }
1902
+ suppressHighlighting={true}
1903
+ >
1904
+ 12
1905
+ </Text>
1906
+ </View>
1907
+ </View>
1908
+ </RNCSafeAreaProvider>
1909
+ `;
1910
+
1911
+ exports[`Bumper/Core/Primitives/View/Features MarginVariants 1`] = `
1912
+ <RNCSafeAreaProvider
1913
+ onInsetsChange={[Function]}
1914
+ style={
1915
+ [
1916
+ {
1917
+ "flex": 1,
1918
+ },
1919
+ undefined,
1920
+ ]
1921
+ }
1922
+ >
1923
+ <View
1924
+ style={
1925
+ {
1926
+ "backgroundColor": "#F1ECE4",
1927
+ "borderBottomLeftRadius": 4,
1928
+ "borderBottomRightRadius": 4,
1929
+ "borderTopLeftRadius": 4,
1930
+ "borderTopRightRadius": 4,
1931
+ "paddingBottom": 8,
1932
+ "paddingLeft": 8,
1933
+ "paddingRight": 8,
1934
+ "paddingTop": 8,
1935
+ }
1936
+ }
1937
+ >
1938
+ <View
1939
+ style={
1940
+ {
1941
+ "flexDirection": "column",
1942
+ "gap": 0,
1943
+ }
1944
+ }
1945
+ >
1946
+ <View
1947
+ style={
1948
+ {
1949
+ "backgroundColor": "#563B56",
1950
+ "borderBottomLeftRadius": 4,
1951
+ "borderBottomRightRadius": 4,
1952
+ "borderTopLeftRadius": 4,
1953
+ "borderTopRightRadius": 4,
1954
+ "marginBottom": 8,
1955
+ "marginLeft": 8,
1956
+ "marginRight": 8,
1957
+ "marginTop": 8,
1958
+ "paddingBottom": 16,
1959
+ "paddingLeft": 16,
1960
+ "paddingRight": 16,
1961
+ "paddingTop": 16,
1962
+ }
1963
+ }
1964
+ >
1965
+ <Text
1966
+ style={
1967
+ {
1968
+ "color": "#ffffff",
1969
+ "fontFamily": "GTStandard",
1970
+ "fontSize": 14,
1971
+ "letterSpacing": 0.3,
1972
+ "lineHeight": 20,
1973
+ }
1974
+ }
1975
+ suppressHighlighting={true}
1976
+ >
1977
+ margin: space.8
1978
+ </Text>
1979
+ </View>
1980
+ <View
1981
+ style={
1982
+ {
1983
+ "backgroundColor": "#563B56",
1984
+ "borderBottomLeftRadius": 4,
1985
+ "borderBottomRightRadius": 4,
1986
+ "borderTopLeftRadius": 4,
1987
+ "borderTopRightRadius": 4,
1988
+ "marginBottom": 16,
1989
+ "marginLeft": 16,
1990
+ "marginRight": 16,
1991
+ "marginTop": 16,
1992
+ "paddingBottom": 16,
1993
+ "paddingLeft": 16,
1994
+ "paddingRight": 16,
1995
+ "paddingTop": 16,
1996
+ }
1997
+ }
1998
+ >
1999
+ <Text
2000
+ style={
2001
+ {
2002
+ "color": "#ffffff",
2003
+ "fontFamily": "GTStandard",
2004
+ "fontSize": 14,
2005
+ "letterSpacing": 0.3,
2006
+ "lineHeight": 20,
2007
+ }
2008
+ }
2009
+ suppressHighlighting={true}
2010
+ >
2011
+ margin: space.16
2012
+ </Text>
2013
+ </View>
2014
+ <View
2015
+ style={
2016
+ {
2017
+ "backgroundColor": "#563B56",
2018
+ "borderBottomLeftRadius": 4,
2019
+ "borderBottomRightRadius": 4,
2020
+ "borderTopLeftRadius": 4,
2021
+ "borderTopRightRadius": 4,
2022
+ "marginBottom": 24,
2023
+ "marginLeft": 24,
2024
+ "marginRight": 24,
2025
+ "marginTop": 24,
2026
+ "paddingBottom": 16,
2027
+ "paddingLeft": 16,
2028
+ "paddingRight": 16,
2029
+ "paddingTop": 16,
2030
+ }
2031
+ }
2032
+ >
2033
+ <Text
2034
+ style={
2035
+ {
2036
+ "color": "#ffffff",
2037
+ "fontFamily": "GTStandard",
2038
+ "fontSize": 14,
2039
+ "letterSpacing": 0.3,
2040
+ "lineHeight": 20,
2041
+ }
2042
+ }
2043
+ suppressHighlighting={true}
2044
+ >
2045
+ margin: space.24
2046
+ </Text>
2047
+ </View>
2048
+ </View>
2049
+ </View>
2050
+ </RNCSafeAreaProvider>
2051
+ `;
2052
+
2053
+ exports[`Bumper/Core/Primitives/View/Features OverflowBehavior 1`] = `
2054
+ <RNCSafeAreaProvider
2055
+ onInsetsChange={[Function]}
2056
+ style={
2057
+ [
2058
+ {
2059
+ "flex": 1,
2060
+ },
2061
+ undefined,
2062
+ ]
2063
+ }
2064
+ >
2065
+ <View
2066
+ style={
2067
+ {
2068
+ "flexDirection": "column",
2069
+ "gap": 16,
2070
+ }
2071
+ }
2072
+ >
2073
+ <View
2074
+ style={
2075
+ {
2076
+ "backgroundColor": "#F7F4EE",
2077
+ "borderBottomLeftRadius": 4,
2078
+ "borderBottomRightRadius": 4,
2079
+ "borderTopLeftRadius": 4,
2080
+ "borderTopRightRadius": 4,
2081
+ "height": 96,
2082
+ "overflow": "hidden",
2083
+ "paddingBottom": 16,
2084
+ "paddingLeft": 16,
2085
+ "paddingRight": 16,
2086
+ "paddingTop": 16,
2087
+ "width": 208,
2088
+ }
2089
+ }
2090
+ >
2091
+ <Text
2092
+ style={
2093
+ {
2094
+ "fontFamily": "GTStandard",
2095
+ "fontSize": 14,
2096
+ "letterSpacing": 0.3,
2097
+ "lineHeight": 20,
2098
+ }
2099
+ }
2100
+ suppressHighlighting={true}
2101
+ >
2102
+ overflow: hidden - This long text content will be clipped when it exceeds the container's dimensions and won't cause scrollbars to appear
2103
+ </Text>
2104
+ </View>
2105
+ <View
2106
+ style={
2107
+ {
2108
+ "backgroundColor": "#F7F4EE",
2109
+ "borderBottomLeftRadius": 4,
2110
+ "borderBottomRightRadius": 4,
2111
+ "borderTopLeftRadius": 4,
2112
+ "borderTopRightRadius": 4,
2113
+ "height": 96,
2114
+ "overflow": "scroll",
2115
+ "paddingBottom": 16,
2116
+ "paddingLeft": 16,
2117
+ "paddingRight": 16,
2118
+ "paddingTop": 16,
2119
+ "width": 208,
2120
+ }
2121
+ }
2122
+ >
2123
+ <Text
2124
+ style={
2125
+ {
2126
+ "fontFamily": "GTStandard",
2127
+ "fontSize": 14,
2128
+ "letterSpacing": 0.3,
2129
+ "lineHeight": 20,
2130
+ }
2131
+ }
2132
+ suppressHighlighting={true}
2133
+ >
2134
+ overflow: scroll - This long text content will be scrollable when it exceeds the container's dimensions, allowing users to access all content
2135
+ </Text>
2136
+ </View>
2137
+ </View>
2138
+ </RNCSafeAreaProvider>
2139
+ `;
2140
+
2141
+ exports[`Bumper/Core/Primitives/View/Features PaddingVariants 1`] = `
2142
+ <RNCSafeAreaProvider
2143
+ onInsetsChange={[Function]}
2144
+ style={
2145
+ [
2146
+ {
2147
+ "flex": 1,
2148
+ },
2149
+ undefined,
2150
+ ]
2151
+ }
2152
+ >
2153
+ <View
2154
+ style={
2155
+ {
2156
+ "flexDirection": "row",
2157
+ "flexWrap": "wrap",
2158
+ "gap": 8,
2159
+ }
2160
+ }
2161
+ >
2162
+ <View
2163
+ style={
2164
+ {
2165
+ "backgroundColor": "#E9F4FC",
2166
+ "borderBottomLeftRadius": 4,
2167
+ "borderBottomRightRadius": 4,
2168
+ "borderTopLeftRadius": 4,
2169
+ "borderTopRightRadius": 4,
2170
+ "paddingBottom": 0,
2171
+ "paddingLeft": 0,
2172
+ "paddingRight": 0,
2173
+ "paddingTop": 0,
2174
+ }
2175
+ }
2176
+ >
2177
+ <Text
2178
+ style={
2179
+ {
2180
+ "fontFamily": "GTStandard",
2181
+ "fontSize": 14,
2182
+ "letterSpacing": 0.3,
2183
+ "lineHeight": 20,
2184
+ }
2185
+ }
2186
+ suppressHighlighting={true}
2187
+ >
2188
+ space.none
2189
+ </Text>
2190
+ </View>
2191
+ <View
2192
+ style={
2193
+ {
2194
+ "backgroundColor": "#E9F4FC",
2195
+ "borderBottomLeftRadius": 4,
2196
+ "borderBottomRightRadius": 4,
2197
+ "borderTopLeftRadius": 4,
2198
+ "borderTopRightRadius": 4,
2199
+ "paddingBottom": 4,
2200
+ "paddingLeft": 4,
2201
+ "paddingRight": 4,
2202
+ "paddingTop": 4,
2203
+ }
2204
+ }
2205
+ >
2206
+ <Text
2207
+ style={
2208
+ {
2209
+ "fontFamily": "GTStandard",
2210
+ "fontSize": 14,
2211
+ "letterSpacing": 0.3,
2212
+ "lineHeight": 20,
2213
+ }
2214
+ }
2215
+ suppressHighlighting={true}
2216
+ >
2217
+ space.4
2218
+ </Text>
2219
+ </View>
2220
+ <View
2221
+ style={
2222
+ {
2223
+ "backgroundColor": "#E9F4FC",
2224
+ "borderBottomLeftRadius": 4,
2225
+ "borderBottomRightRadius": 4,
2226
+ "borderTopLeftRadius": 4,
2227
+ "borderTopRightRadius": 4,
2228
+ "paddingBottom": 8,
2229
+ "paddingLeft": 8,
2230
+ "paddingRight": 8,
2231
+ "paddingTop": 8,
2232
+ }
2233
+ }
2234
+ >
2235
+ <Text
2236
+ style={
2237
+ {
2238
+ "fontFamily": "GTStandard",
2239
+ "fontSize": 14,
2240
+ "letterSpacing": 0.3,
2241
+ "lineHeight": 20,
2242
+ }
2243
+ }
2244
+ suppressHighlighting={true}
2245
+ >
2246
+ space.8
2247
+ </Text>
2248
+ </View>
2249
+ <View
2250
+ style={
2251
+ {
2252
+ "backgroundColor": "#E9F4FC",
2253
+ "borderBottomLeftRadius": 4,
2254
+ "borderBottomRightRadius": 4,
2255
+ "borderTopLeftRadius": 4,
2256
+ "borderTopRightRadius": 4,
2257
+ "paddingBottom": 16,
2258
+ "paddingLeft": 16,
2259
+ "paddingRight": 16,
2260
+ "paddingTop": 16,
2261
+ }
2262
+ }
2263
+ >
2264
+ <Text
2265
+ style={
2266
+ {
2267
+ "fontFamily": "GTStandard",
2268
+ "fontSize": 14,
2269
+ "letterSpacing": 0.3,
2270
+ "lineHeight": 20,
2271
+ }
2272
+ }
2273
+ suppressHighlighting={true}
2274
+ >
2275
+ space.16
2276
+ </Text>
2277
+ </View>
2278
+ <View
2279
+ style={
2280
+ {
2281
+ "backgroundColor": "#E9F4FC",
2282
+ "borderBottomLeftRadius": 4,
2283
+ "borderBottomRightRadius": 4,
2284
+ "borderTopLeftRadius": 4,
2285
+ "borderTopRightRadius": 4,
2286
+ "paddingBottom": 24,
2287
+ "paddingLeft": 24,
2288
+ "paddingRight": 24,
2289
+ "paddingTop": 24,
2290
+ }
2291
+ }
2292
+ >
2293
+ <Text
2294
+ style={
2295
+ {
2296
+ "fontFamily": "GTStandard",
2297
+ "fontSize": 14,
2298
+ "letterSpacing": 0.3,
2299
+ "lineHeight": 20,
2300
+ }
2301
+ }
2302
+ suppressHighlighting={true}
2303
+ >
2304
+ space.24
2305
+ </Text>
2306
+ </View>
2307
+ <View
2308
+ style={
2309
+ {
2310
+ "backgroundColor": "#E9F4FC",
2311
+ "borderBottomLeftRadius": 4,
2312
+ "borderBottomRightRadius": 4,
2313
+ "borderTopLeftRadius": 4,
2314
+ "borderTopRightRadius": 4,
2315
+ "paddingBottom": 32,
2316
+ "paddingLeft": 32,
2317
+ "paddingRight": 32,
2318
+ "paddingTop": 32,
2319
+ }
2320
+ }
2321
+ >
2322
+ <Text
2323
+ style={
2324
+ {
2325
+ "fontFamily": "GTStandard",
2326
+ "fontSize": 14,
2327
+ "letterSpacing": 0.3,
2328
+ "lineHeight": 20,
2329
+ }
2330
+ }
2331
+ suppressHighlighting={true}
2332
+ >
2333
+ space.32
2334
+ </Text>
2335
+ </View>
2336
+ </View>
2337
+ </RNCSafeAreaProvider>
2338
+ `;