@ornikar/bumper 3.9.1 → 3.10.1
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.
- package/CHANGELOG.md +24 -0
- package/dist/definitions/shared/storybook/StorySection.d.ts.map +1 -1
- package/dist/definitions/shared/storybook/StoryTitle.d.ts.map +1 -1
- package/dist/definitions/system/actions/Button/Button.d.ts +4 -4
- package/dist/definitions/system/actions/Button/Button.d.ts.map +1 -1
- package/dist/definitions/system/actions/IconButton/IconButton.d.ts.map +1 -1
- package/dist/definitions/system/content/icon/Icon.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/Typography.d.ts +15 -10
- package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/TypographyLink.d.ts +1 -0
- package/dist/definitions/system/content/typography/TypographyLink.d.ts.map +1 -1
- package/dist/definitions/system/core/tokens/palettes/deepPurpleColorPalette.d.ts +70 -69
- package/dist/definitions/system/core/tokens/palettes/deepPurpleColorPalette.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/Loader.d.ts +2 -2
- package/dist/definitions/system/loading/loader/Loader.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/LoaderBackgroundCircle.d.ts +2 -1
- package/dist/definitions/system/loading/loader/LoaderBackgroundCircle.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/LoaderCircleWrapper.d.ts +2 -1
- package/dist/definitions/system/loading/loader/LoaderCircleWrapper.d.ts.map +1 -1
- package/dist/definitions/system/types.d.ts +38 -1
- package/dist/definitions/system/types.d.ts.map +1 -1
- package/dist/definitions/tamagui.config.d.ts +142 -2
- package/dist/definitions/tamagui.config.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +86 -84
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +86 -84
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.22.cjs.js +86 -84
- package/dist/index-node-22.22.cjs.js.map +1 -1
- package/dist/index-node-22.22.cjs.web.js +86 -84
- package/dist/index-node-22.22.cjs.web.js.map +1 -1
- package/dist/index-node-22.22.es.mjs +86 -84
- package/dist/index-node-22.22.es.mjs.map +1 -1
- package/dist/index-node-22.22.es.web.mjs +86 -84
- package/dist/index-node-22.22.es.web.mjs.map +1 -1
- package/dist/index.es.js +86 -84
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +86 -84
- package/dist/index.es.web.js.map +1 -1
- package/dist/storybook-metro.es.android.js +81 -80
- package/dist/storybook-metro.es.android.js.map +1 -1
- package/dist/storybook-metro.es.ios.js +81 -80
- package/dist/storybook-metro.es.ios.js.map +1 -1
- package/dist/storybook-node-22.22.cjs.js +81 -80
- package/dist/storybook-node-22.22.cjs.js.map +1 -1
- package/dist/storybook-node-22.22.cjs.web.js +81 -80
- package/dist/storybook-node-22.22.cjs.web.js.map +1 -1
- package/dist/storybook-node-22.22.es.mjs +81 -80
- package/dist/storybook-node-22.22.es.mjs.map +1 -1
- package/dist/storybook-node-22.22.es.web.mjs +81 -80
- package/dist/storybook-node-22.22.es.web.mjs.map +1 -1
- package/dist/storybook.es.js +81 -80
- package/dist/storybook.es.js.map +1 -1
- package/dist/storybook.es.web.js +81 -80
- package/dist/storybook.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/docs/migration/Typography.md +123 -35
- package/package.json +2 -2
- package/src/.eslintrc.json +2 -5
- package/src/shared/storybook/StorySection.tsx +8 -1
- package/src/shared/storybook/StoryTitle.tsx +8 -2
- package/src/system/actions/Button/Button.mdx +1 -1
- package/src/system/actions/Button/Button.tsx +5 -3
- package/src/system/actions/Button/__snapshots__/Button.features.stories.tsx.snap +10 -10
- package/src/system/actions/Button/__snapshots_web__/Button.features.stories.tsx.snap +2 -2
- package/src/system/actions/Button/utils/contentColor.ts +1 -1
- package/src/system/actions/IconButton/IconButton.tsx +3 -2
- package/src/system/actions/IconButton/__snapshots__/IconButton.features.stories.tsx.snap +10 -10
- package/src/system/actions/IconButton/__snapshots_web__/IconButton.features.stories.tsx.snap +2 -2
- package/src/system/content/icon/Icon.tsx +7 -2
- package/src/system/content/typography/Typography.features.stories.tsx +2 -2
- package/src/system/content/typography/Typography.stories.tsx +2 -2
- package/src/system/content/typography/Typography.tsx +21 -19
- package/src/system/content/typography/TypographyLink.features.stories.tsx +2 -2
- package/src/system/content/typography/TypographyLink.stories.tsx +2 -2
- package/src/system/content/typography/TypographyLink.tsx +4 -2
- package/src/system/core/themes/light/__snapshots__/light.stories.tsx.snap +7 -7
- package/src/system/core/themes/light/__snapshots_web__/light.stories.tsx.snap +7 -7
- package/src/system/core/themes/light/light.ts +73 -73
- package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +141 -70
- package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +91 -70
- package/src/system/core/tokens/palettes/deepPurpleColorPalette.ts +9 -8
- package/src/system/loading/loader/Loader.tsx +16 -15
- package/src/system/loading/loader/LoaderBackgroundCircle.tsx +8 -1
- package/src/system/loading/loader/LoaderCircleWrapper.tsx +11 -1
- package/src/system/types.ts +51 -2
- package/src/tamagui.config.ts +2 -1
package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap
CHANGED
|
@@ -95,7 +95,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
95
95
|
suppressHighlighting={true}
|
|
96
96
|
>
|
|
97
97
|
$
|
|
98
|
-
deepPurple.5
|
|
98
|
+
palette.deepPurple.5
|
|
99
99
|
</Text>
|
|
100
100
|
</View>
|
|
101
101
|
<Text
|
|
@@ -166,7 +166,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
166
166
|
suppressHighlighting={true}
|
|
167
167
|
>
|
|
168
168
|
$
|
|
169
|
-
deepPurple.6
|
|
169
|
+
palette.deepPurple.6
|
|
170
170
|
</Text>
|
|
171
171
|
</View>
|
|
172
172
|
<Text
|
|
@@ -237,7 +237,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
237
237
|
suppressHighlighting={true}
|
|
238
238
|
>
|
|
239
239
|
$
|
|
240
|
-
deepPurple.7
|
|
240
|
+
palette.deepPurple.7
|
|
241
241
|
</Text>
|
|
242
242
|
</View>
|
|
243
243
|
<Text
|
|
@@ -308,7 +308,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
308
308
|
suppressHighlighting={true}
|
|
309
309
|
>
|
|
310
310
|
$
|
|
311
|
-
deepPurple.8
|
|
311
|
+
palette.deepPurple.8
|
|
312
312
|
</Text>
|
|
313
313
|
</View>
|
|
314
314
|
<Text
|
|
@@ -379,7 +379,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
379
379
|
suppressHighlighting={true}
|
|
380
380
|
>
|
|
381
381
|
$
|
|
382
|
-
deepPurple.9
|
|
382
|
+
palette.deepPurple.9
|
|
383
383
|
</Text>
|
|
384
384
|
</View>
|
|
385
385
|
<Text
|
|
@@ -450,7 +450,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
450
450
|
suppressHighlighting={true}
|
|
451
451
|
>
|
|
452
452
|
$
|
|
453
|
-
beige.1
|
|
453
|
+
palette.beige.1
|
|
454
454
|
</Text>
|
|
455
455
|
</View>
|
|
456
456
|
<Text
|
|
@@ -521,7 +521,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
521
521
|
suppressHighlighting={true}
|
|
522
522
|
>
|
|
523
523
|
$
|
|
524
|
-
beige.2
|
|
524
|
+
palette.beige.2
|
|
525
525
|
</Text>
|
|
526
526
|
</View>
|
|
527
527
|
<Text
|
|
@@ -592,7 +592,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
592
592
|
suppressHighlighting={true}
|
|
593
593
|
>
|
|
594
594
|
$
|
|
595
|
-
beige.3
|
|
595
|
+
palette.beige.3
|
|
596
596
|
</Text>
|
|
597
597
|
</View>
|
|
598
598
|
<Text
|
|
@@ -663,7 +663,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
663
663
|
suppressHighlighting={true}
|
|
664
664
|
>
|
|
665
665
|
$
|
|
666
|
-
beige.4
|
|
666
|
+
palette.beige.4
|
|
667
667
|
</Text>
|
|
668
668
|
</View>
|
|
669
669
|
<Text
|
|
@@ -734,7 +734,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
734
734
|
suppressHighlighting={true}
|
|
735
735
|
>
|
|
736
736
|
$
|
|
737
|
-
beige.5
|
|
737
|
+
palette.beige.5
|
|
738
738
|
</Text>
|
|
739
739
|
</View>
|
|
740
740
|
<Text
|
|
@@ -805,7 +805,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
805
805
|
suppressHighlighting={true}
|
|
806
806
|
>
|
|
807
807
|
$
|
|
808
|
-
beige.6
|
|
808
|
+
palette.beige.6
|
|
809
809
|
</Text>
|
|
810
810
|
</View>
|
|
811
811
|
<Text
|
|
@@ -876,7 +876,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
876
876
|
suppressHighlighting={true}
|
|
877
877
|
>
|
|
878
878
|
$
|
|
879
|
-
lightning.4
|
|
879
|
+
palette.lightning.4
|
|
880
880
|
</Text>
|
|
881
881
|
</View>
|
|
882
882
|
<Text
|
|
@@ -947,7 +947,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
947
947
|
suppressHighlighting={true}
|
|
948
948
|
>
|
|
949
949
|
$
|
|
950
|
-
lightning.5
|
|
950
|
+
palette.lightning.5
|
|
951
951
|
</Text>
|
|
952
952
|
</View>
|
|
953
953
|
<Text
|
|
@@ -1018,7 +1018,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1018
1018
|
suppressHighlighting={true}
|
|
1019
1019
|
>
|
|
1020
1020
|
$
|
|
1021
|
-
lightning.8
|
|
1021
|
+
palette.lightning.8
|
|
1022
1022
|
</Text>
|
|
1023
1023
|
</View>
|
|
1024
1024
|
<Text
|
|
@@ -1089,7 +1089,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1089
1089
|
suppressHighlighting={true}
|
|
1090
1090
|
>
|
|
1091
1091
|
$
|
|
1092
|
-
lightning.9
|
|
1092
|
+
palette.lightning.9
|
|
1093
1093
|
</Text>
|
|
1094
1094
|
</View>
|
|
1095
1095
|
<Text
|
|
@@ -1160,7 +1160,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1160
1160
|
suppressHighlighting={true}
|
|
1161
1161
|
>
|
|
1162
1162
|
$
|
|
1163
|
-
rainbow.pink
|
|
1163
|
+
palette.rainbow.pink
|
|
1164
1164
|
</Text>
|
|
1165
1165
|
</View>
|
|
1166
1166
|
<Text
|
|
@@ -1231,7 +1231,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1231
1231
|
suppressHighlighting={true}
|
|
1232
1232
|
>
|
|
1233
1233
|
$
|
|
1234
|
-
rainbow.brick
|
|
1234
|
+
palette.rainbow.brick
|
|
1235
1235
|
</Text>
|
|
1236
1236
|
</View>
|
|
1237
1237
|
<Text
|
|
@@ -1302,7 +1302,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1302
1302
|
suppressHighlighting={true}
|
|
1303
1303
|
>
|
|
1304
1304
|
$
|
|
1305
|
-
rainbow.orange
|
|
1305
|
+
palette.rainbow.orange
|
|
1306
1306
|
</Text>
|
|
1307
1307
|
</View>
|
|
1308
1308
|
<Text
|
|
@@ -1373,7 +1373,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1373
1373
|
suppressHighlighting={true}
|
|
1374
1374
|
>
|
|
1375
1375
|
$
|
|
1376
|
-
rainbow.gold
|
|
1376
|
+
palette.rainbow.gold
|
|
1377
1377
|
</Text>
|
|
1378
1378
|
</View>
|
|
1379
1379
|
<Text
|
|
@@ -1444,7 +1444,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1444
1444
|
suppressHighlighting={true}
|
|
1445
1445
|
>
|
|
1446
1446
|
$
|
|
1447
|
-
rainbow.sun
|
|
1447
|
+
palette.rainbow.sun
|
|
1448
1448
|
</Text>
|
|
1449
1449
|
</View>
|
|
1450
1450
|
<Text
|
|
@@ -1515,7 +1515,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1515
1515
|
suppressHighlighting={true}
|
|
1516
1516
|
>
|
|
1517
1517
|
$
|
|
1518
|
-
rainbow.green-pine
|
|
1518
|
+
palette.rainbow.green-pine
|
|
1519
1519
|
</Text>
|
|
1520
1520
|
</View>
|
|
1521
1521
|
<Text
|
|
@@ -1586,7 +1586,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1586
1586
|
suppressHighlighting={true}
|
|
1587
1587
|
>
|
|
1588
1588
|
$
|
|
1589
|
-
rainbow.green-grass
|
|
1589
|
+
palette.rainbow.green-grass
|
|
1590
1590
|
</Text>
|
|
1591
1591
|
</View>
|
|
1592
1592
|
<Text
|
|
@@ -1657,7 +1657,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1657
1657
|
suppressHighlighting={true}
|
|
1658
1658
|
>
|
|
1659
1659
|
$
|
|
1660
|
-
rainbow.green-apple
|
|
1660
|
+
palette.rainbow.green-apple
|
|
1661
1661
|
</Text>
|
|
1662
1662
|
</View>
|
|
1663
1663
|
<Text
|
|
@@ -1728,7 +1728,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1728
1728
|
suppressHighlighting={true}
|
|
1729
1729
|
>
|
|
1730
1730
|
$
|
|
1731
|
-
rainbow.blue-electric
|
|
1731
|
+
palette.rainbow.blue-electric
|
|
1732
1732
|
</Text>
|
|
1733
1733
|
</View>
|
|
1734
1734
|
<Text
|
|
@@ -1799,7 +1799,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1799
1799
|
suppressHighlighting={true}
|
|
1800
1800
|
>
|
|
1801
1801
|
$
|
|
1802
|
-
rainbow.blue-sky
|
|
1802
|
+
palette.rainbow.blue-sky
|
|
1803
1803
|
</Text>
|
|
1804
1804
|
</View>
|
|
1805
1805
|
<Text
|
|
@@ -1870,7 +1870,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1870
1870
|
suppressHighlighting={true}
|
|
1871
1871
|
>
|
|
1872
1872
|
$
|
|
1873
|
-
grey.0
|
|
1873
|
+
palette.grey.0
|
|
1874
1874
|
</Text>
|
|
1875
1875
|
</View>
|
|
1876
1876
|
<Text
|
|
@@ -1941,7 +1941,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1941
1941
|
suppressHighlighting={true}
|
|
1942
1942
|
>
|
|
1943
1943
|
$
|
|
1944
|
-
grey.1
|
|
1944
|
+
palette.grey.1
|
|
1945
1945
|
</Text>
|
|
1946
1946
|
</View>
|
|
1947
1947
|
<Text
|
|
@@ -1972,7 +1972,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1972
1972
|
<View
|
|
1973
1973
|
style={
|
|
1974
1974
|
{
|
|
1975
|
-
"backgroundColor": "#
|
|
1975
|
+
"backgroundColor": "#DCDCDC",
|
|
1976
1976
|
"borderBottomColor": "#F1ECE4",
|
|
1977
1977
|
"borderBottomLeftRadius": 4,
|
|
1978
1978
|
"borderBottomRightRadius": 4,
|
|
@@ -2012,7 +2012,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2012
2012
|
suppressHighlighting={true}
|
|
2013
2013
|
>
|
|
2014
2014
|
$
|
|
2015
|
-
grey.2
|
|
2015
|
+
palette.grey.2
|
|
2016
2016
|
</Text>
|
|
2017
2017
|
</View>
|
|
2018
2018
|
<Text
|
|
@@ -2028,7 +2028,78 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2028
2028
|
}
|
|
2029
2029
|
suppressHighlighting={true}
|
|
2030
2030
|
>
|
|
2031
|
-
#
|
|
2031
|
+
#DCDCDC
|
|
2032
|
+
</Text>
|
|
2033
|
+
</View>
|
|
2034
|
+
<View
|
|
2035
|
+
style={
|
|
2036
|
+
{
|
|
2037
|
+
"alignItems": "center",
|
|
2038
|
+
"flexDirection": "row",
|
|
2039
|
+
"gap": 16,
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
>
|
|
2043
|
+
<View
|
|
2044
|
+
style={
|
|
2045
|
+
{
|
|
2046
|
+
"backgroundColor": "#BABABA",
|
|
2047
|
+
"borderBottomColor": "#F1ECE4",
|
|
2048
|
+
"borderBottomLeftRadius": 4,
|
|
2049
|
+
"borderBottomRightRadius": 4,
|
|
2050
|
+
"borderBottomWidth": 1,
|
|
2051
|
+
"borderLeftColor": "#F1ECE4",
|
|
2052
|
+
"borderLeftWidth": 1,
|
|
2053
|
+
"borderRightColor": "#F1ECE4",
|
|
2054
|
+
"borderRightWidth": 1,
|
|
2055
|
+
"borderStyle": "solid",
|
|
2056
|
+
"borderTopColor": "#F1ECE4",
|
|
2057
|
+
"borderTopLeftRadius": 4,
|
|
2058
|
+
"borderTopRightRadius": 4,
|
|
2059
|
+
"borderTopWidth": 1,
|
|
2060
|
+
"height": 48,
|
|
2061
|
+
"width": 48,
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
/>
|
|
2065
|
+
<View
|
|
2066
|
+
style={
|
|
2067
|
+
{
|
|
2068
|
+
"width": 200,
|
|
2069
|
+
}
|
|
2070
|
+
}
|
|
2071
|
+
>
|
|
2072
|
+
<Text
|
|
2073
|
+
style={
|
|
2074
|
+
{
|
|
2075
|
+
"color": "#101010",
|
|
2076
|
+
"fontFamily": "GTStandardBold",
|
|
2077
|
+
"fontSize": 14,
|
|
2078
|
+
"letterSpacing": 0.3,
|
|
2079
|
+
"lineHeight": 20,
|
|
2080
|
+
"textAlign": "left",
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
suppressHighlighting={true}
|
|
2084
|
+
>
|
|
2085
|
+
$
|
|
2086
|
+
palette.grey.3
|
|
2087
|
+
</Text>
|
|
2088
|
+
</View>
|
|
2089
|
+
<Text
|
|
2090
|
+
style={
|
|
2091
|
+
{
|
|
2092
|
+
"color": "#505050",
|
|
2093
|
+
"fontFamily": "GTStandardRegular",
|
|
2094
|
+
"fontSize": 14,
|
|
2095
|
+
"letterSpacing": 0.3,
|
|
2096
|
+
"lineHeight": 20,
|
|
2097
|
+
"textAlign": "left",
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
suppressHighlighting={true}
|
|
2101
|
+
>
|
|
2102
|
+
#BABABA
|
|
2032
2103
|
</Text>
|
|
2033
2104
|
</View>
|
|
2034
2105
|
<View
|
|
@@ -2083,7 +2154,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2083
2154
|
suppressHighlighting={true}
|
|
2084
2155
|
>
|
|
2085
2156
|
$
|
|
2086
|
-
grey.
|
|
2157
|
+
palette.grey.4
|
|
2087
2158
|
</Text>
|
|
2088
2159
|
</View>
|
|
2089
2160
|
<Text
|
|
@@ -2154,7 +2225,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2154
2225
|
suppressHighlighting={true}
|
|
2155
2226
|
>
|
|
2156
2227
|
$
|
|
2157
|
-
grey.5
|
|
2228
|
+
palette.grey.5
|
|
2158
2229
|
</Text>
|
|
2159
2230
|
</View>
|
|
2160
2231
|
<Text
|
|
@@ -2225,7 +2296,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2225
2296
|
suppressHighlighting={true}
|
|
2226
2297
|
>
|
|
2227
2298
|
$
|
|
2228
|
-
grey.7
|
|
2299
|
+
palette.grey.7
|
|
2229
2300
|
</Text>
|
|
2230
2301
|
</View>
|
|
2231
2302
|
<Text
|
|
@@ -2296,7 +2367,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2296
2367
|
suppressHighlighting={true}
|
|
2297
2368
|
>
|
|
2298
2369
|
$
|
|
2299
|
-
grey.9
|
|
2370
|
+
palette.grey.9
|
|
2300
2371
|
</Text>
|
|
2301
2372
|
</View>
|
|
2302
2373
|
<Text
|
|
@@ -2367,7 +2438,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2367
2438
|
suppressHighlighting={true}
|
|
2368
2439
|
>
|
|
2369
2440
|
$
|
|
2370
|
-
blue.1
|
|
2441
|
+
palette.blue.1
|
|
2371
2442
|
</Text>
|
|
2372
2443
|
</View>
|
|
2373
2444
|
<Text
|
|
@@ -2438,7 +2509,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2438
2509
|
suppressHighlighting={true}
|
|
2439
2510
|
>
|
|
2440
2511
|
$
|
|
2441
|
-
blue.2
|
|
2512
|
+
palette.blue.2
|
|
2442
2513
|
</Text>
|
|
2443
2514
|
</View>
|
|
2444
2515
|
<Text
|
|
@@ -2509,7 +2580,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2509
2580
|
suppressHighlighting={true}
|
|
2510
2581
|
>
|
|
2511
2582
|
$
|
|
2512
|
-
blue.4
|
|
2583
|
+
palette.blue.4
|
|
2513
2584
|
</Text>
|
|
2514
2585
|
</View>
|
|
2515
2586
|
<Text
|
|
@@ -2580,7 +2651,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2580
2651
|
suppressHighlighting={true}
|
|
2581
2652
|
>
|
|
2582
2653
|
$
|
|
2583
|
-
blue.6
|
|
2654
|
+
palette.blue.6
|
|
2584
2655
|
</Text>
|
|
2585
2656
|
</View>
|
|
2586
2657
|
<Text
|
|
@@ -2651,7 +2722,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2651
2722
|
suppressHighlighting={true}
|
|
2652
2723
|
>
|
|
2653
2724
|
$
|
|
2654
|
-
blue.7
|
|
2725
|
+
palette.blue.7
|
|
2655
2726
|
</Text>
|
|
2656
2727
|
</View>
|
|
2657
2728
|
<Text
|
|
@@ -2722,7 +2793,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2722
2793
|
suppressHighlighting={true}
|
|
2723
2794
|
>
|
|
2724
2795
|
$
|
|
2725
|
-
green.1
|
|
2796
|
+
palette.green.1
|
|
2726
2797
|
</Text>
|
|
2727
2798
|
</View>
|
|
2728
2799
|
<Text
|
|
@@ -2793,7 +2864,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2793
2864
|
suppressHighlighting={true}
|
|
2794
2865
|
>
|
|
2795
2866
|
$
|
|
2796
|
-
green.2
|
|
2867
|
+
palette.green.2
|
|
2797
2868
|
</Text>
|
|
2798
2869
|
</View>
|
|
2799
2870
|
<Text
|
|
@@ -2864,7 +2935,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2864
2935
|
suppressHighlighting={true}
|
|
2865
2936
|
>
|
|
2866
2937
|
$
|
|
2867
|
-
green.6
|
|
2938
|
+
palette.green.6
|
|
2868
2939
|
</Text>
|
|
2869
2940
|
</View>
|
|
2870
2941
|
<Text
|
|
@@ -2935,7 +3006,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
2935
3006
|
suppressHighlighting={true}
|
|
2936
3007
|
>
|
|
2937
3008
|
$
|
|
2938
|
-
green.7
|
|
3009
|
+
palette.green.7
|
|
2939
3010
|
</Text>
|
|
2940
3011
|
</View>
|
|
2941
3012
|
<Text
|
|
@@ -3006,7 +3077,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3006
3077
|
suppressHighlighting={true}
|
|
3007
3078
|
>
|
|
3008
3079
|
$
|
|
3009
|
-
yellow.1
|
|
3080
|
+
palette.yellow.1
|
|
3010
3081
|
</Text>
|
|
3011
3082
|
</View>
|
|
3012
3083
|
<Text
|
|
@@ -3077,7 +3148,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3077
3148
|
suppressHighlighting={true}
|
|
3078
3149
|
>
|
|
3079
3150
|
$
|
|
3080
|
-
yellow.2
|
|
3151
|
+
palette.yellow.2
|
|
3081
3152
|
</Text>
|
|
3082
3153
|
</View>
|
|
3083
3154
|
<Text
|
|
@@ -3148,7 +3219,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3148
3219
|
suppressHighlighting={true}
|
|
3149
3220
|
>
|
|
3150
3221
|
$
|
|
3151
|
-
yellow.6
|
|
3222
|
+
palette.yellow.6
|
|
3152
3223
|
</Text>
|
|
3153
3224
|
</View>
|
|
3154
3225
|
<Text
|
|
@@ -3219,7 +3290,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3219
3290
|
suppressHighlighting={true}
|
|
3220
3291
|
>
|
|
3221
3292
|
$
|
|
3222
|
-
yellow.7
|
|
3293
|
+
palette.yellow.7
|
|
3223
3294
|
</Text>
|
|
3224
3295
|
</View>
|
|
3225
3296
|
<Text
|
|
@@ -3290,7 +3361,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3290
3361
|
suppressHighlighting={true}
|
|
3291
3362
|
>
|
|
3292
3363
|
$
|
|
3293
|
-
red.1
|
|
3364
|
+
palette.red.1
|
|
3294
3365
|
</Text>
|
|
3295
3366
|
</View>
|
|
3296
3367
|
<Text
|
|
@@ -3361,7 +3432,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3361
3432
|
suppressHighlighting={true}
|
|
3362
3433
|
>
|
|
3363
3434
|
$
|
|
3364
|
-
red.2
|
|
3435
|
+
palette.red.2
|
|
3365
3436
|
</Text>
|
|
3366
3437
|
</View>
|
|
3367
3438
|
<Text
|
|
@@ -3432,7 +3503,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3432
3503
|
suppressHighlighting={true}
|
|
3433
3504
|
>
|
|
3434
3505
|
$
|
|
3435
|
-
red.6
|
|
3506
|
+
palette.red.6
|
|
3436
3507
|
</Text>
|
|
3437
3508
|
</View>
|
|
3438
3509
|
<Text
|
|
@@ -3503,7 +3574,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3503
3574
|
suppressHighlighting={true}
|
|
3504
3575
|
>
|
|
3505
3576
|
$
|
|
3506
|
-
red.7
|
|
3577
|
+
palette.red.7
|
|
3507
3578
|
</Text>
|
|
3508
3579
|
</View>
|
|
3509
3580
|
<Text
|
|
@@ -3574,7 +3645,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3574
3645
|
suppressHighlighting={true}
|
|
3575
3646
|
>
|
|
3576
3647
|
$
|
|
3577
|
-
mauve.1
|
|
3648
|
+
palette.mauve.1
|
|
3578
3649
|
</Text>
|
|
3579
3650
|
</View>
|
|
3580
3651
|
<Text
|
|
@@ -3645,7 +3716,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3645
3716
|
suppressHighlighting={true}
|
|
3646
3717
|
>
|
|
3647
3718
|
$
|
|
3648
|
-
mauve.2
|
|
3719
|
+
palette.mauve.2
|
|
3649
3720
|
</Text>
|
|
3650
3721
|
</View>
|
|
3651
3722
|
<Text
|
|
@@ -3716,7 +3787,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3716
3787
|
suppressHighlighting={true}
|
|
3717
3788
|
>
|
|
3718
3789
|
$
|
|
3719
|
-
mauve.3
|
|
3790
|
+
palette.mauve.3
|
|
3720
3791
|
</Text>
|
|
3721
3792
|
</View>
|
|
3722
3793
|
<Text
|
|
@@ -3787,7 +3858,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3787
3858
|
suppressHighlighting={true}
|
|
3788
3859
|
>
|
|
3789
3860
|
$
|
|
3790
|
-
mauve.4
|
|
3861
|
+
palette.mauve.4
|
|
3791
3862
|
</Text>
|
|
3792
3863
|
</View>
|
|
3793
3864
|
<Text
|
|
@@ -3858,7 +3929,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3858
3929
|
suppressHighlighting={true}
|
|
3859
3930
|
>
|
|
3860
3931
|
$
|
|
3861
|
-
deepPurple-alpha.10
|
|
3932
|
+
palette.deepPurple-alpha.10
|
|
3862
3933
|
</Text>
|
|
3863
3934
|
</View>
|
|
3864
3935
|
<Text
|
|
@@ -3929,7 +4000,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
3929
4000
|
suppressHighlighting={true}
|
|
3930
4001
|
>
|
|
3931
4002
|
$
|
|
3932
|
-
beige-alpha.25
|
|
4003
|
+
palette.beige-alpha.25
|
|
3933
4004
|
</Text>
|
|
3934
4005
|
</View>
|
|
3935
4006
|
<Text
|
|
@@ -4000,7 +4071,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4000
4071
|
suppressHighlighting={true}
|
|
4001
4072
|
>
|
|
4002
4073
|
$
|
|
4003
|
-
beige-alpha.40
|
|
4074
|
+
palette.beige-alpha.40
|
|
4004
4075
|
</Text>
|
|
4005
4076
|
</View>
|
|
4006
4077
|
<Text
|
|
@@ -4071,7 +4142,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4071
4142
|
suppressHighlighting={true}
|
|
4072
4143
|
>
|
|
4073
4144
|
$
|
|
4074
|
-
beige-alpha.50
|
|
4145
|
+
palette.beige-alpha.50
|
|
4075
4146
|
</Text>
|
|
4076
4147
|
</View>
|
|
4077
4148
|
<Text
|
|
@@ -4142,7 +4213,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4142
4213
|
suppressHighlighting={true}
|
|
4143
4214
|
>
|
|
4144
4215
|
$
|
|
4145
|
-
grey-alpha.25
|
|
4216
|
+
palette.grey-alpha.25
|
|
4146
4217
|
</Text>
|
|
4147
4218
|
</View>
|
|
4148
4219
|
<Text
|
|
@@ -4213,7 +4284,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4213
4284
|
suppressHighlighting={true}
|
|
4214
4285
|
>
|
|
4215
4286
|
$
|
|
4216
|
-
grey-alpha.35
|
|
4287
|
+
palette.grey-alpha.35
|
|
4217
4288
|
</Text>
|
|
4218
4289
|
</View>
|
|
4219
4290
|
<Text
|
|
@@ -4284,7 +4355,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4284
4355
|
suppressHighlighting={true}
|
|
4285
4356
|
>
|
|
4286
4357
|
$
|
|
4287
|
-
grey-alpha.50
|
|
4358
|
+
palette.grey-alpha.50
|
|
4288
4359
|
</Text>
|
|
4289
4360
|
</View>
|
|
4290
4361
|
<Text
|
|
@@ -4355,7 +4426,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4355
4426
|
suppressHighlighting={true}
|
|
4356
4427
|
>
|
|
4357
4428
|
$
|
|
4358
|
-
white-alpha.10
|
|
4429
|
+
palette.white-alpha.10
|
|
4359
4430
|
</Text>
|
|
4360
4431
|
</View>
|
|
4361
4432
|
<Text
|
|
@@ -4426,7 +4497,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4426
4497
|
suppressHighlighting={true}
|
|
4427
4498
|
>
|
|
4428
4499
|
$
|
|
4429
|
-
white-alpha.20
|
|
4500
|
+
palette.white-alpha.20
|
|
4430
4501
|
</Text>
|
|
4431
4502
|
</View>
|
|
4432
4503
|
<Text
|
|
@@ -4497,7 +4568,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4497
4568
|
suppressHighlighting={true}
|
|
4498
4569
|
>
|
|
4499
4570
|
$
|
|
4500
|
-
white-alpha.60
|
|
4571
|
+
palette.white-alpha.60
|
|
4501
4572
|
</Text>
|
|
4502
4573
|
</View>
|
|
4503
4574
|
<Text
|
|
@@ -4568,7 +4639,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4568
4639
|
suppressHighlighting={true}
|
|
4569
4640
|
>
|
|
4570
4641
|
$
|
|
4571
|
-
white-alpha.80
|
|
4642
|
+
palette.white-alpha.80
|
|
4572
4643
|
</Text>
|
|
4573
4644
|
</View>
|
|
4574
4645
|
<Text
|
|
@@ -4639,7 +4710,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4639
4710
|
suppressHighlighting={true}
|
|
4640
4711
|
>
|
|
4641
4712
|
$
|
|
4642
|
-
white-alpha.90
|
|
4713
|
+
palette.white-alpha.90
|
|
4643
4714
|
</Text>
|
|
4644
4715
|
</View>
|
|
4645
4716
|
<Text
|
|
@@ -4710,7 +4781,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4710
4781
|
suppressHighlighting={true}
|
|
4711
4782
|
>
|
|
4712
4783
|
$
|
|
4713
|
-
white
|
|
4784
|
+
palette.white
|
|
4714
4785
|
</Text>
|
|
4715
4786
|
</View>
|
|
4716
4787
|
<Text
|
|
@@ -4781,7 +4852,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4781
4852
|
suppressHighlighting={true}
|
|
4782
4853
|
>
|
|
4783
4854
|
$
|
|
4784
|
-
black
|
|
4855
|
+
palette.black
|
|
4785
4856
|
</Text>
|
|
4786
4857
|
</View>
|
|
4787
4858
|
<Text
|
|
@@ -4852,7 +4923,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
4852
4923
|
suppressHighlighting={true}
|
|
4853
4924
|
>
|
|
4854
4925
|
$
|
|
4855
|
-
transparent
|
|
4926
|
+
palette.transparent
|
|
4856
4927
|
</Text>
|
|
4857
4928
|
</View>
|
|
4858
4929
|
<Text
|