@ornikar/bumper 2.8.1-canary.1768839311.501438316959a9593513e74c70cb87b0597f2db6.0 → 2.8.1-canary.1769087114.a46790da1b5b6361954b6ad25766074d3ed69784.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 (123) hide show
  1. package/CHANGELOG.md +6 -6
  2. package/dist/definitions/index.d.ts +5 -1
  3. package/dist/definitions/index.d.ts.map +1 -1
  4. package/dist/definitions/shared/storybook/StoryTitle.d.ts +1 -1
  5. package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts +8 -0
  6. package/dist/definitions/shared/storybook/helpers/argsHelpers.d.ts.map +1 -0
  7. package/dist/definitions/system/content/icon/Icon.d.ts +4 -7
  8. package/dist/definitions/system/content/icon/Icon.d.ts.map +1 -1
  9. package/dist/definitions/system/content/typography/Typography.d.ts +11 -19
  10. package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -1
  11. package/dist/definitions/system/content/typography/TypographyIcon.d.ts +9 -0
  12. package/dist/definitions/system/content/typography/TypographyIcon.d.ts.map +1 -0
  13. package/dist/definitions/system/content/typography/TypographyLink.d.ts +9 -0
  14. package/dist/definitions/system/content/typography/TypographyLink.d.ts.map +1 -0
  15. package/dist/definitions/system/content/typography/TypographyView.d.ts +18 -0
  16. package/dist/definitions/system/content/typography/TypographyView.d.ts.map +1 -0
  17. package/dist/definitions/system/content/typography/index.d.ts +21 -0
  18. package/dist/definitions/system/content/typography/index.d.ts.map +1 -0
  19. package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts +2 -1
  20. package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts.map +1 -1
  21. package/dist/definitions/system/content/typography/utils/typographyContext.d.ts +16 -0
  22. package/dist/definitions/system/content/typography/utils/typographyContext.d.ts.map +1 -0
  23. package/dist/definitions/system/core/primitives/Image/Image.d.ts +3 -0
  24. package/dist/definitions/system/core/primitives/Image/Image.d.ts.map +1 -0
  25. package/dist/definitions/system/core/themes/light/light.d.ts +3 -0
  26. package/dist/definitions/system/core/themes/light/light.d.ts.map +1 -0
  27. package/dist/definitions/system/core/themes/themes.d.ts +6 -0
  28. package/dist/definitions/system/core/themes/themes.d.ts.map +1 -0
  29. package/dist/definitions/tamagui.config.d.ts +1 -57
  30. package/dist/definitions/tamagui.config.d.ts.map +1 -1
  31. package/dist/index-metro.es.android.js +151 -12
  32. package/dist/index-metro.es.android.js.map +1 -1
  33. package/dist/index-metro.es.ios.js +151 -12
  34. package/dist/index-metro.es.ios.js.map +1 -1
  35. package/dist/index-node-22.22.cjs.js +154 -8
  36. package/dist/index-node-22.22.cjs.js.map +1 -1
  37. package/dist/index-node-22.22.cjs.web.js +154 -8
  38. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  39. package/dist/index-node-22.22.es.mjs +155 -10
  40. package/dist/index-node-22.22.es.mjs.map +1 -1
  41. package/dist/index-node-22.22.es.web.mjs +155 -10
  42. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  43. package/dist/index.es.js +149 -12
  44. package/dist/index.es.js.map +1 -1
  45. package/dist/index.es.web.js +149 -12
  46. package/dist/index.es.web.js.map +1 -1
  47. package/dist/tsbuildinfo +1 -1
  48. package/package.json +11 -10
  49. package/src/index.ts +5 -1
  50. package/src/shared/storybook/StoryTitle.tsx +1 -1
  51. package/src/shared/storybook/helpers/argsHelpers.ts +47 -0
  52. package/src/system/content/icon/Icon.features.stories.tsx +1 -1
  53. package/src/system/content/icon/Icon.stories.tsx +3 -22
  54. package/src/system/content/icon/Icon.tsx +4 -14
  55. package/src/system/content/icon/__snapshots_web__/Icon.features.stories.tsx.snap +2 -2
  56. package/src/system/content/icon/__snapshots_web__/Icon.stories.tsx.snap +1 -1
  57. package/src/system/content/typography/Typography.features.stories.tsx +1 -1
  58. package/src/system/content/typography/Typography.stories.tsx +3 -23
  59. package/src/system/content/typography/Typography.tsx +24 -27
  60. package/src/system/content/typography/TypographyIcon.features.stories.tsx +163 -0
  61. package/src/system/content/typography/TypographyIcon.stories.tsx +35 -0
  62. package/src/system/content/typography/TypographyIcon.tsx +33 -0
  63. package/src/system/content/typography/TypographyLink.features.stories.tsx +62 -0
  64. package/src/system/content/typography/TypographyLink.stories.tsx +72 -0
  65. package/src/system/content/typography/TypographyLink.tsx +38 -0
  66. package/src/system/content/typography/TypographyView.tsx +34 -0
  67. package/src/system/content/typography/__snapshots__/TypographyIcon.features.stories.tsx.snap +839 -0
  68. package/src/system/content/typography/__snapshots__/TypographyIcon.stories.tsx.snap +31 -0
  69. package/src/system/content/typography/__snapshots__/TypographyLink.features.stories.tsx.snap +229 -0
  70. package/src/system/content/typography/__snapshots__/TypographyLink.stories.tsx.snap +41 -0
  71. package/src/system/content/typography/__snapshots_web__/Typography.features.stories.tsx.snap +7 -7
  72. package/src/system/content/typography/__snapshots_web__/Typography.stories.tsx.snap +1 -1
  73. package/src/system/content/typography/__snapshots_web__/TypographyIcon.features.stories.tsx.snap +543 -0
  74. package/src/system/content/typography/__snapshots_web__/TypographyIcon.stories.tsx.snap +37 -0
  75. package/src/system/content/typography/__snapshots_web__/TypographyLink.features.stories.tsx.snap +196 -0
  76. package/src/system/content/typography/__snapshots_web__/TypographyLink.stories.tsx.snap +33 -0
  77. package/src/system/content/typography/index.ts +15 -0
  78. package/src/system/content/typography/utils/getVariantAndWeightValues.tsx +2 -6
  79. package/src/system/content/typography/utils/typographyContext.ts +29 -0
  80. package/src/system/core/primitives/Center.features.stories.tsx +1 -1
  81. package/src/system/core/primitives/Center.stories.tsx +6 -89
  82. package/src/system/core/primitives/Image/Image.stories.tsx +34 -0
  83. package/src/system/core/primitives/Image/Image.ts +2 -0
  84. package/src/system/core/primitives/Image/__snapshots__/Image.stories.tsx.snap +30 -0
  85. package/src/system/core/primitives/Image/__snapshots_web__/Image.stories.tsx.snap +40 -0
  86. package/src/system/core/primitives/Pressable.features.stories.tsx +1 -1
  87. package/src/system/core/primitives/Pressable.stories.tsx +4 -53
  88. package/src/system/core/primitives/ScrollView/ScrollView.features.stories.tsx +1 -1
  89. package/src/system/core/primitives/ScrollView/ScrollView.stories.tsx +3 -6
  90. package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.features.stories.tsx.snap +11 -11
  91. package/src/system/core/primitives/ScrollView/__snapshots_web__/ScrollView.stories.tsx.snap +3 -3
  92. package/src/system/core/primitives/Stack.features.stories.tsx +1 -1
  93. package/src/system/core/primitives/Stack.stories.tsx +4 -39
  94. package/src/system/core/primitives/View.features.stories.tsx +1 -1
  95. package/src/system/core/primitives/View.stories.tsx +6 -107
  96. package/src/system/core/primitives/__snapshots_web__/Center.features.stories.tsx.snap +2 -2
  97. package/src/system/core/primitives/__snapshots_web__/Center.stories.tsx.snap +1 -1
  98. package/src/system/core/primitives/__snapshots_web__/Pressable.features.stories.tsx.snap +3 -3
  99. package/src/system/core/primitives/__snapshots_web__/Pressable.stories.tsx.snap +1 -1
  100. package/src/system/core/primitives/__snapshots_web__/Stack.features.stories.tsx.snap +6 -6
  101. package/src/system/core/primitives/__snapshots_web__/Stack.stories.tsx.snap +1 -1
  102. package/src/system/core/primitives/__snapshots_web__/View.features.stories.tsx.snap +11 -11
  103. package/src/system/core/primitives/__snapshots_web__/View.stories.tsx.snap +1 -1
  104. package/src/system/core/themes/{__snapshots_web__ → light/__snapshots_web__}/light.stories.tsx.snap +1 -1
  105. package/src/system/core/themes/{light.stories.tsx → light/light.stories.tsx} +5 -5
  106. package/src/system/core/themes/{light.ts → light/light.ts} +3 -2
  107. package/src/system/core/themes/themes.ts +69 -0
  108. package/src/system/core/tokens/__snapshots_web__/breakpoints.stories.tsx.snap +1 -1
  109. package/src/system/core/tokens/__snapshots_web__/fonts.stories.tsx.snap +1 -1
  110. package/src/system/core/tokens/__snapshots_web__/radius.stories.tsx.snap +1 -1
  111. package/src/system/core/tokens/__snapshots_web__/size.stories.tsx.snap +1 -1
  112. package/src/system/core/tokens/__snapshots_web__/space.stories.tsx.snap +1 -1
  113. package/src/system/core/tokens/breakpoints.stories.tsx +1 -1
  114. package/src/system/core/tokens/fonts.stories.tsx +1 -1
  115. package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +1 -1
  116. package/src/system/core/tokens/palettes/deepPurpleColorPalette.stories.tsx +1 -1
  117. package/src/system/core/tokens/radius.stories.tsx +1 -1
  118. package/src/system/core/tokens/size.stories.tsx +1 -1
  119. package/src/system/core/tokens/space.stories.tsx +1 -1
  120. package/src/tamagui.config.ts +1 -1
  121. package/dist/definitions/system/core/themes/light.d.ts +0 -58
  122. package/dist/definitions/system/core/themes/light.d.ts.map +0 -1
  123. /package/src/system/core/themes/{__snapshots__ → light/__snapshots__}/light.stories.tsx.snap +0 -0
@@ -0,0 +1,543 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Content/TypographyIcon/Features DifferentSizes 1`] = `
4
+ <DocumentFragment>
5
+ <div
6
+ class="css-view-175oi2r r-flex-13awgt0"
7
+ >
8
+ <span
9
+ class=""
10
+ style="display: contents;"
11
+ >
12
+ <span
13
+ class=" "
14
+ style="display: contents;"
15
+ >
16
+ <span
17
+ class=" t_light is_Theme"
18
+ style="display: contents;"
19
+ >
20
+ <div
21
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa1366020313"
22
+ >
23
+ <span
24
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-head100347201 _lh-f-lineHeigh1544154440 _ls-f-letterSpa1195674547 _col-content--ac3049896 _fw-f-weight-se1074390495"
25
+ data-disable-theme="true"
26
+ >
27
+ <div
28
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
29
+ >
30
+ <div
31
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385471 _height-t-size-size1385471"
32
+ >
33
+ <svg
34
+ color="var(--content--accent)"
35
+ data-file-name="star.inline.svg"
36
+ />
37
+ </div>
38
+ </div>
39
+ Large heading with size 32 icon
40
+ </span>
41
+ <span
42
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--ac3049896"
43
+ data-disable-theme="true"
44
+ >
45
+ <div
46
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
47
+ >
48
+ <div
49
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
50
+ >
51
+ <svg
52
+ color="var(--content--accent)"
53
+ data-file-name="star.inline.svg"
54
+ />
55
+ </div>
56
+ </div>
57
+ Body text with size 20 icon
58
+ </span>
59
+ <span
60
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ac3049896"
61
+ data-disable-theme="true"
62
+ >
63
+ <div
64
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
65
+ >
66
+ <div
67
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385413 _height-t-size-size1385413"
68
+ >
69
+ <svg
70
+ color="var(--content--accent)"
71
+ data-file-name="star.inline.svg"
72
+ />
73
+ </div>
74
+ </div>
75
+ Small text with size 16 icon
76
+ </span>
77
+ </div>
78
+ </span>
79
+ </span>
80
+ </span>
81
+ </div>
82
+ </DocumentFragment>
83
+ `;
84
+
85
+ exports[`Bumper/Content/TypographyIcon/Features InheritFromTypography 1`] = `
86
+ <DocumentFragment>
87
+ <div
88
+ class="css-view-175oi2r r-flex-13awgt0"
89
+ >
90
+ <span
91
+ class=""
92
+ style="display: contents;"
93
+ >
94
+ <span
95
+ class=" "
96
+ style="display: contents;"
97
+ >
98
+ <span
99
+ class=" t_light is_Theme"
100
+ style="display: contents;"
101
+ >
102
+ <div
103
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa1366020284"
104
+ >
105
+ <div
106
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
107
+ >
108
+ <span
109
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
110
+ data-disable-theme="true"
111
+ >
112
+ Icon inherits accent color from Typography
113
+ </span>
114
+ <span
115
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--ac3049896"
116
+ data-disable-theme="true"
117
+ >
118
+ <div
119
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
120
+ >
121
+ <div
122
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
123
+ >
124
+ <svg
125
+ color="var(--content--accent)"
126
+ data-file-name="star.inline.svg"
127
+ />
128
+ </div>
129
+ </div>
130
+ This icon inherits the accent color
131
+ </span>
132
+ </div>
133
+ <div
134
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
135
+ >
136
+ <span
137
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
138
+ data-disable-theme="true"
139
+ >
140
+ Icon inherits success color from Typography
141
+ </span>
142
+ <span
143
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--su94478629"
144
+ data-disable-theme="true"
145
+ >
146
+ <div
147
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
148
+ >
149
+ <div
150
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
151
+ >
152
+ <svg
153
+ color="var(--content--success)"
154
+ data-file-name="check-circle.inline.svg"
155
+ />
156
+ </div>
157
+ </div>
158
+ Operation completed successfully
159
+ </span>
160
+ </div>
161
+ <div
162
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
163
+ >
164
+ <span
165
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
166
+ data-disable-theme="true"
167
+ >
168
+ Icon inherits danger color from Typography
169
+ </span>
170
+ <span
171
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--da3379238"
172
+ data-disable-theme="true"
173
+ >
174
+ <div
175
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
176
+ >
177
+ <div
178
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
179
+ >
180
+ <svg
181
+ color="var(--content--danger)"
182
+ data-file-name="warning.inline.svg"
183
+ />
184
+ </div>
185
+ </div>
186
+ Error: Something went wrong
187
+ </span>
188
+ </div>
189
+ <div
190
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
191
+ >
192
+ <span
193
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
194
+ data-disable-theme="true"
195
+ >
196
+ Icon inherits warning color from Typography
197
+ </span>
198
+ <span
199
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--wa108662822"
200
+ data-disable-theme="true"
201
+ >
202
+ <div
203
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
204
+ >
205
+ <div
206
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
207
+ >
208
+ <svg
209
+ color="var(--content--warning)"
210
+ data-file-name="info.inline.svg"
211
+ />
212
+ </div>
213
+ </div>
214
+ Warning: Please review this item
215
+ </span>
216
+ </div>
217
+ </div>
218
+ </span>
219
+ </span>
220
+ </span>
221
+ </div>
222
+ </DocumentFragment>
223
+ `;
224
+
225
+ exports[`Bumper/Content/TypographyIcon/Features NestedTypographyInheritance 1`] = `
226
+ <DocumentFragment>
227
+ <div
228
+ class="css-view-175oi2r r-flex-13awgt0"
229
+ >
230
+ <span
231
+ class=""
232
+ style="display: contents;"
233
+ >
234
+ <span
235
+ class=" "
236
+ style="display: contents;"
237
+ >
238
+ <span
239
+ class=" t_light is_Theme"
240
+ style="display: contents;"
241
+ >
242
+ <div
243
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa1366020284"
244
+ >
245
+ <div
246
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
247
+ >
248
+ <span
249
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
250
+ data-disable-theme="true"
251
+ >
252
+ Nested Typography components - icon inherits from parent
253
+ </span>
254
+ <span
255
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1503 _lh-f-lineHeigh201793146 _ls-f-letterSpa1099960303 _col-content--ac3049896"
256
+ data-disable-theme="true"
257
+ >
258
+ <div
259
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
260
+ >
261
+ <div
262
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
263
+ >
264
+ <svg
265
+ color="var(--content--accent)"
266
+ data-file-name="star.inline.svg"
267
+ />
268
+ </div>
269
+ </div>
270
+ Parent text with icon
271
+ <span
272
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-inherit _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _ls-f-letterSpa1099960304 _tt-inherit _fs-f-size-body1504 _lh-f-lineHeigh201793147 _col-content--ac3049896"
273
+ data-disable-theme="true"
274
+ >
275
+ <div
276
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
277
+ >
278
+ <div
279
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385413 _height-t-size-size1385413"
280
+ >
281
+ <svg
282
+ color="var(--content--accent)"
283
+ data-file-name="check-circle.inline.svg"
284
+ />
285
+ </div>
286
+ </div>
287
+ Nested text - icon inherits parent color
288
+ </span>
289
+ </span>
290
+ </div>
291
+ <div
292
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
293
+ >
294
+ <span
295
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
296
+ data-disable-theme="true"
297
+ >
298
+ Nested with override - child overrides parent color
299
+ </span>
300
+ <span
301
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1503 _lh-f-lineHeigh201793146 _ls-f-letterSpa1099960303 _col-content--ac3049896"
302
+ data-disable-theme="true"
303
+ >
304
+ <div
305
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
306
+ >
307
+ <div
308
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
309
+ >
310
+ <svg
311
+ color="var(--content--accent)"
312
+ data-file-name="star.inline.svg"
313
+ />
314
+ </div>
315
+ </div>
316
+ Parent accent color
317
+ <span
318
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-inherit _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _ls-f-letterSpa1099960304 _tt-inherit _fs-f-size-body1504 _lh-f-lineHeigh201793147 _col-content--su94478629"
319
+ data-disable-theme="true"
320
+ >
321
+ <div
322
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
323
+ >
324
+ <div
325
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385413 _height-t-size-size1385413"
326
+ >
327
+ <svg
328
+ color="var(--content--success)"
329
+ data-file-name="check-circle.inline.svg"
330
+ />
331
+ </div>
332
+ </div>
333
+ Child overrides to success
334
+ </span>
335
+ </span>
336
+ </div>
337
+ </div>
338
+ </span>
339
+ </span>
340
+ </span>
341
+ </div>
342
+ </DocumentFragment>
343
+ `;
344
+
345
+ exports[`Bumper/Content/TypographyIcon/Features OverrideInheritedColor 1`] = `
346
+ <DocumentFragment>
347
+ <div
348
+ class="css-view-175oi2r r-flex-13awgt0"
349
+ >
350
+ <span
351
+ class=""
352
+ style="display: contents;"
353
+ >
354
+ <span
355
+ class=" "
356
+ style="display: contents;"
357
+ >
358
+ <span
359
+ class=" t_light is_Theme"
360
+ style="display: contents;"
361
+ >
362
+ <div
363
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa1366020284"
364
+ >
365
+ <div
366
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
367
+ >
368
+ <span
369
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
370
+ data-disable-theme="true"
371
+ >
372
+ Typography is accent, but icon explicitly uses success color
373
+ </span>
374
+ <span
375
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--ac3049896"
376
+ data-disable-theme="true"
377
+ >
378
+ <div
379
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
380
+ >
381
+ <div
382
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
383
+ >
384
+ <svg
385
+ color="var(--content--success)"
386
+ data-file-name="check-circle.inline.svg"
387
+ />
388
+ </div>
389
+ </div>
390
+ Icon overrides inherited color
391
+ </span>
392
+ </div>
393
+ <div
394
+ class="is_VStack _dsp-flex _alignItems-stretch _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _gap-t-space-spa94482166"
395
+ >
396
+ <span
397
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _col-content--ba1918259606"
398
+ data-disable-theme="true"
399
+ >
400
+ Typography is success, but icon explicitly uses danger color
401
+ </span>
402
+ <span
403
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1504 _lh-f-lineHeigh201793147 _ls-f-letterSpa1099960304 _col-content--su94478629"
404
+ data-disable-theme="true"
405
+ >
406
+ <div
407
+ class="is_TypographyView _dsp-_platformweb_inline-flex _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
408
+ >
409
+ <div
410
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
411
+ >
412
+ <svg
413
+ color="var(--content--danger)"
414
+ data-file-name="warning.inline.svg"
415
+ />
416
+ </div>
417
+ </div>
418
+ Mixed color scenario
419
+ </span>
420
+ </div>
421
+ </div>
422
+ </span>
423
+ </span>
424
+ </span>
425
+ </div>
426
+ </DocumentFragment>
427
+ `;
428
+
429
+ exports[`Bumper/Content/TypographyIcon/Features WithExplicitColor 1`] = `
430
+ <DocumentFragment>
431
+ <div
432
+ class="css-view-175oi2r r-flex-13awgt0"
433
+ >
434
+ <span
435
+ class=""
436
+ style="display: contents;"
437
+ >
438
+ <span
439
+ class=" "
440
+ style="display: contents;"
441
+ >
442
+ <span
443
+ class=" t_light is_Theme"
444
+ style="display: contents;"
445
+ >
446
+ <div
447
+ class="is_HStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-row _gap-t-space-spa1366020313 _alignItems-center"
448
+ >
449
+ <div
450
+ class="is_VStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _alignItems-center _gap-t-space-spa94482166"
451
+ >
452
+ <div
453
+ class="is_TypographyView _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
454
+ >
455
+ <div
456
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385442 _height-t-size-size1385442"
457
+ >
458
+ <svg
459
+ color="var(--content--accent)"
460
+ data-file-name="star.inline.svg"
461
+ />
462
+ </div>
463
+ </div>
464
+ <span
465
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body47080 _lh-f-lineHeigh1960620717 _ls-f-letterSpa260968488 _col-content--ba1918259606"
466
+ data-disable-theme="true"
467
+ >
468
+ Explicit accent
469
+ </span>
470
+ </div>
471
+ <div
472
+ class="is_VStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _alignItems-center _gap-t-space-spa94482166"
473
+ >
474
+ <div
475
+ class="is_TypographyView _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
476
+ >
477
+ <div
478
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385442 _height-t-size-size1385442"
479
+ >
480
+ <svg
481
+ color="var(--content--success)"
482
+ data-file-name="check-circle.inline.svg"
483
+ />
484
+ </div>
485
+ </div>
486
+ <span
487
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body47080 _lh-f-lineHeigh1960620717 _ls-f-letterSpa260968488 _col-content--ba1918259606"
488
+ data-disable-theme="true"
489
+ >
490
+ Explicit success
491
+ </span>
492
+ </div>
493
+ <div
494
+ class="is_VStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _alignItems-center _gap-t-space-spa94482166"
495
+ >
496
+ <div
497
+ class="is_TypographyView _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
498
+ >
499
+ <div
500
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385442 _height-t-size-size1385442"
501
+ >
502
+ <svg
503
+ color="var(--content--warning)"
504
+ data-file-name="warning.inline.svg"
505
+ />
506
+ </div>
507
+ </div>
508
+ <span
509
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body47080 _lh-f-lineHeigh1960620717 _ls-f-letterSpa260968488 _col-content--ba1918259606"
510
+ data-disable-theme="true"
511
+ >
512
+ Explicit warning
513
+ </span>
514
+ </div>
515
+ <div
516
+ class="is_VStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-column _alignItems-center _gap-t-space-spa94482166"
517
+ >
518
+ <div
519
+ class="is_TypographyView _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
520
+ >
521
+ <div
522
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385442 _height-t-size-size1385442"
523
+ >
524
+ <svg
525
+ color="var(--content--danger)"
526
+ data-file-name="warning.inline.svg"
527
+ />
528
+ </div>
529
+ </div>
530
+ <span
531
+ class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body47080 _lh-f-lineHeigh1960620717 _ls-f-letterSpa260968488 _col-content--ba1918259606"
532
+ data-disable-theme="true"
533
+ >
534
+ Explicit danger
535
+ </span>
536
+ </div>
537
+ </div>
538
+ </span>
539
+ </span>
540
+ </span>
541
+ </div>
542
+ </DocumentFragment>
543
+ `;
@@ -0,0 +1,37 @@
1
+ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
2
+
3
+ exports[`Bumper/Content/TypographyIcon Default 1`] = `
4
+ <DocumentFragment>
5
+ <div
6
+ class="css-view-175oi2r r-flex-13awgt0"
7
+ >
8
+ <span
9
+ class=""
10
+ style="display: contents;"
11
+ >
12
+ <span
13
+ class=" "
14
+ style="display: contents;"
15
+ >
16
+ <span
17
+ class=" t_light is_Theme"
18
+ style="display: contents;"
19
+ >
20
+ <div
21
+ class="is_TypographyView _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0"
22
+ >
23
+ <div
24
+ class="is_Icon _dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385438 _height-t-size-size1385438"
25
+ >
26
+ <svg
27
+ color="var(--content--base--hi)"
28
+ data-file-name="star.inline.svg"
29
+ />
30
+ </div>
31
+ </div>
32
+ </span>
33
+ </span>
34
+ </span>
35
+ </div>
36
+ </DocumentFragment>
37
+ `;