@telus-uds/theme-koodo 4.5.0 → 4.7.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.
- package/build/android/schema.json +802 -611
- package/build/android/theme.json +370 -115
- package/build/ios/schema.json +802 -611
- package/build/ios/theme.json +370 -115
- package/build/rn/schema.json +802 -611
- package/build/rn/theme.js +358 -142
- package/package.json +4 -4
- package/theme.json +332 -64
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Wed, 28 Jun 2023 23:15:25 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -21,12 +21,20 @@ const PaletteIconTimes = require('@telus-uds/palette-koodo/build/rn/icons/Times'
|
|
|
21
21
|
const PaletteIconExclamationTriangle = require('@telus-uds/palette-koodo/build/rn/icons/ExclamationTriangle')
|
|
22
22
|
const PaletteIconSpyglass = require('@telus-uds/palette-koodo/build/rn/icons/Spyglass')
|
|
23
23
|
const PaletteIconExclamationOctagon = require('@telus-uds/palette-koodo/build/rn/icons/ExclamationOctagon')
|
|
24
|
+
const PaletteIconPlaySolid = require('@telus-uds/palette-koodo/build/rn/icons/PlaySolid')
|
|
24
25
|
const PaletteIconArrowLeft = require('@telus-uds/palette-koodo/build/rn/icons/ArrowLeft')
|
|
25
26
|
const PaletteIconEyeMasked = require('@telus-uds/palette-koodo/build/rn/icons/EyeMasked')
|
|
26
27
|
const PaletteIconEyeUnmasked = require('@telus-uds/palette-koodo/build/rn/icons/EyeUnmasked')
|
|
27
28
|
const PaletteIconInfo = require('@telus-uds/palette-koodo/build/rn/icons/Info')
|
|
28
|
-
const
|
|
29
|
+
const PaletteIconPause = require('@telus-uds/palette-koodo/build/rn/icons/Pause')
|
|
30
|
+
const PaletteIconReplay = require('@telus-uds/palette-koodo/build/rn/icons/Replay')
|
|
31
|
+
const PaletteIconClosedCaptions = require('@telus-uds/palette-koodo/build/rn/icons/ClosedCaptions')
|
|
32
|
+
const PaletteIconFullscreenExpand = require('@telus-uds/palette-koodo/build/rn/icons/FullscreenExpand')
|
|
33
|
+
const PaletteIconFullscreenMinimize = require('@telus-uds/palette-koodo/build/rn/icons/FullscreenMinimize')
|
|
34
|
+
const PaletteIconSettingsSolid = require('@telus-uds/palette-koodo/build/rn/icons/SettingsSolid')
|
|
29
35
|
const PaletteIconArrowRight = require('@telus-uds/palette-koodo/build/rn/icons/ArrowRight')
|
|
36
|
+
const PaletteIconMuted = require('@telus-uds/palette-koodo/build/rn/icons/Muted')
|
|
37
|
+
const PaletteIconUnmuted = require('@telus-uds/palette-koodo/build/rn/icons/Unmuted')
|
|
30
38
|
|
|
31
39
|
module.exports = {
|
|
32
40
|
components: {
|
|
@@ -293,13 +301,13 @@ module.exports = {
|
|
|
293
301
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
294
302
|
platforms: [ 'rn' ],
|
|
295
303
|
type: 'state',
|
|
296
|
-
values: [ true ]
|
|
304
|
+
values: [ true, false ]
|
|
297
305
|
},
|
|
298
306
|
hover: {
|
|
299
307
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
300
308
|
platforms: [ 'rn' ],
|
|
301
309
|
type: 'state',
|
|
302
|
-
values: [ true ]
|
|
310
|
+
values: [ true, false ]
|
|
303
311
|
},
|
|
304
312
|
inactive: {
|
|
305
313
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -314,7 +322,7 @@ module.exports = {
|
|
|
314
322
|
pressed: {
|
|
315
323
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
316
324
|
type: 'state',
|
|
317
|
-
values: [ true ]
|
|
325
|
+
values: [ true, false ]
|
|
318
326
|
},
|
|
319
327
|
priority: {
|
|
320
328
|
description: 'Indicates the importance of the call-to-action. Limit the amount of high priority buttons on a page to prioritize meaningful user flows. Low priority styles are applied by default.',
|
|
@@ -677,13 +685,13 @@ module.exports = {
|
|
|
677
685
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
678
686
|
platforms: [ 'rn' ],
|
|
679
687
|
type: 'state',
|
|
680
|
-
values: [ true ]
|
|
688
|
+
values: [ true, false ]
|
|
681
689
|
},
|
|
682
690
|
hover: {
|
|
683
691
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
684
692
|
platforms: [ 'rn' ],
|
|
685
693
|
type: 'state',
|
|
686
|
-
values: [ true ]
|
|
694
|
+
values: [ true, false ]
|
|
687
695
|
},
|
|
688
696
|
inactive: {
|
|
689
697
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -698,7 +706,7 @@ module.exports = {
|
|
|
698
706
|
pressed: {
|
|
699
707
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
700
708
|
type: 'state',
|
|
701
|
-
values: [ true ]
|
|
709
|
+
values: [ true, false ]
|
|
702
710
|
},
|
|
703
711
|
selected: {
|
|
704
712
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -848,13 +856,13 @@ module.exports = {
|
|
|
848
856
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
849
857
|
platforms: [ 'rn' ],
|
|
850
858
|
type: 'state',
|
|
851
|
-
values: [ true ]
|
|
859
|
+
values: [ true, false ]
|
|
852
860
|
},
|
|
853
861
|
hover: {
|
|
854
862
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
855
863
|
platforms: [ 'rn' ],
|
|
856
864
|
type: 'state',
|
|
857
|
-
values: [ true ]
|
|
865
|
+
values: [ true, false ]
|
|
858
866
|
},
|
|
859
867
|
iconPosition: {
|
|
860
868
|
description: 'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
@@ -869,7 +877,7 @@ module.exports = {
|
|
|
869
877
|
pressed: {
|
|
870
878
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
871
879
|
type: 'state',
|
|
872
|
-
values: [ true ]
|
|
880
|
+
values: [ true, false ]
|
|
873
881
|
},
|
|
874
882
|
selected: {
|
|
875
883
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -971,7 +979,10 @@ module.exports = {
|
|
|
971
979
|
type: 'variant',
|
|
972
980
|
values: [ 'alternative', 'subtle', 'grid', 'feature' ]
|
|
973
981
|
},
|
|
974
|
-
padding: {
|
|
982
|
+
padding: {
|
|
983
|
+
type: 'variant',
|
|
984
|
+
values: [ 'narrow', 'intermediate', 'compact', 'custom' ]
|
|
985
|
+
},
|
|
975
986
|
viewport: {
|
|
976
987
|
description: 'The size label for the current screen viewport based on the current screen width',
|
|
977
988
|
type: 'state',
|
|
@@ -981,19 +992,27 @@ module.exports = {
|
|
|
981
992
|
rules: [
|
|
982
993
|
{
|
|
983
994
|
if: { background: 'alternative' },
|
|
984
|
-
tokens: {
|
|
995
|
+
tokens: {
|
|
996
|
+
backgroundColor: '#e5f7fb',
|
|
997
|
+
borderRadius: 0,
|
|
998
|
+
borderWidth: 0
|
|
999
|
+
}
|
|
985
1000
|
},
|
|
986
1001
|
{
|
|
987
1002
|
if: { background: 'subtle' },
|
|
988
|
-
tokens: { backgroundColor: '#fae6f4',
|
|
1003
|
+
tokens: { backgroundColor: '#fae6f4', borderWidth: 0 }
|
|
989
1004
|
},
|
|
990
1005
|
{
|
|
991
1006
|
if: { background: 'grid' },
|
|
992
|
-
tokens: { borderColor: '#016b6a',
|
|
1007
|
+
tokens: { borderColor: '#016b6a', borderWidth: 1 }
|
|
993
1008
|
},
|
|
994
1009
|
{
|
|
995
1010
|
if: { background: 'feature' },
|
|
996
|
-
tokens: {
|
|
1011
|
+
tokens: {
|
|
1012
|
+
backgroundColor: '#f9f6a5',
|
|
1013
|
+
borderRadius: 0,
|
|
1014
|
+
borderWidth: 0
|
|
1015
|
+
}
|
|
997
1016
|
},
|
|
998
1017
|
{
|
|
999
1018
|
if: { viewport: [ 'md', 'lg', 'xl' ] },
|
|
@@ -1004,6 +1023,51 @@ module.exports = {
|
|
|
1004
1023
|
paddingTop: 48
|
|
1005
1024
|
}
|
|
1006
1025
|
},
|
|
1026
|
+
{
|
|
1027
|
+
if: { padding: 'narrow' },
|
|
1028
|
+
tokens: {
|
|
1029
|
+
paddingBottom: 24,
|
|
1030
|
+
paddingLeft: 16,
|
|
1031
|
+
paddingRight: 16,
|
|
1032
|
+
paddingTop: 24
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
if: { padding: 'narrow', viewport: [ 'md', 'lg', 'xl' ] },
|
|
1037
|
+
tokens: {
|
|
1038
|
+
paddingBottom: 32,
|
|
1039
|
+
paddingLeft: 16,
|
|
1040
|
+
paddingRight: 16,
|
|
1041
|
+
paddingTop: 32
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
if: { padding: 'intermediate' },
|
|
1046
|
+
tokens: {
|
|
1047
|
+
paddingBottom: 24,
|
|
1048
|
+
paddingLeft: 24,
|
|
1049
|
+
paddingRight: 24,
|
|
1050
|
+
paddingTop: 24
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
if: { padding: 'intermediate', viewport: [ 'md', 'lg', 'xl' ] },
|
|
1055
|
+
tokens: {
|
|
1056
|
+
paddingBottom: 32,
|
|
1057
|
+
paddingLeft: 32,
|
|
1058
|
+
paddingRight: 32,
|
|
1059
|
+
paddingTop: 32
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
if: { padding: 'compact' },
|
|
1064
|
+
tokens: {
|
|
1065
|
+
paddingBottom: 16,
|
|
1066
|
+
paddingLeft: 16,
|
|
1067
|
+
paddingRight: 16,
|
|
1068
|
+
paddingTop: 16
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1007
1071
|
{
|
|
1008
1072
|
if: { padding: 'custom' },
|
|
1009
1073
|
tokens: {
|
|
@@ -1024,6 +1088,7 @@ module.exports = {
|
|
|
1024
1088
|
contentFlexShrink: 1,
|
|
1025
1089
|
contentJustifyContent: 'flex-start',
|
|
1026
1090
|
flex: 1,
|
|
1091
|
+
gradient: null,
|
|
1027
1092
|
minWidth: null,
|
|
1028
1093
|
paddingBottom: 32,
|
|
1029
1094
|
paddingLeft: 24,
|
|
@@ -1076,13 +1141,13 @@ module.exports = {
|
|
|
1076
1141
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1077
1142
|
platforms: [ 'rn' ],
|
|
1078
1143
|
type: 'state',
|
|
1079
|
-
values: [ true ]
|
|
1144
|
+
values: [ true, false ]
|
|
1080
1145
|
},
|
|
1081
1146
|
hover: {
|
|
1082
1147
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1083
1148
|
platforms: [ 'rn' ],
|
|
1084
1149
|
type: 'state',
|
|
1085
|
-
values: [ true ]
|
|
1150
|
+
values: [ true, false ]
|
|
1086
1151
|
},
|
|
1087
1152
|
inactive: {
|
|
1088
1153
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -1092,7 +1157,7 @@ module.exports = {
|
|
|
1092
1157
|
pressed: {
|
|
1093
1158
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1094
1159
|
type: 'state',
|
|
1095
|
-
values: [ true ]
|
|
1160
|
+
values: [ true, false ]
|
|
1096
1161
|
},
|
|
1097
1162
|
selected: {
|
|
1098
1163
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -1180,13 +1245,13 @@ module.exports = {
|
|
|
1180
1245
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1181
1246
|
platforms: [ 'rn' ],
|
|
1182
1247
|
type: 'state',
|
|
1183
|
-
values: [ true ]
|
|
1248
|
+
values: [ true, false ]
|
|
1184
1249
|
},
|
|
1185
1250
|
hover: {
|
|
1186
1251
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1187
1252
|
platforms: [ 'rn' ],
|
|
1188
1253
|
type: 'state',
|
|
1189
|
-
values: [ true ]
|
|
1254
|
+
values: [ true, false ]
|
|
1190
1255
|
},
|
|
1191
1256
|
inactive: {
|
|
1192
1257
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -1249,19 +1314,19 @@ module.exports = {
|
|
|
1249
1314
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1250
1315
|
platforms: [ 'rn' ],
|
|
1251
1316
|
type: 'state',
|
|
1252
|
-
values: [ true ]
|
|
1317
|
+
values: [ true, false ]
|
|
1253
1318
|
},
|
|
1254
1319
|
hover: {
|
|
1255
1320
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1256
1321
|
platforms: [ 'rn' ],
|
|
1257
1322
|
type: 'state',
|
|
1258
|
-
values: [ true ]
|
|
1323
|
+
values: [ true, false ]
|
|
1259
1324
|
},
|
|
1260
1325
|
inverse: { type: 'variant', values: [ true ] },
|
|
1261
1326
|
pressed: {
|
|
1262
1327
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1263
1328
|
type: 'state',
|
|
1264
|
-
values: [ true ]
|
|
1329
|
+
values: [ true, false ]
|
|
1265
1330
|
},
|
|
1266
1331
|
size: {
|
|
1267
1332
|
description: 'Sets the size of the text and icon; these variants are shared with ChevronLink',
|
|
@@ -1536,7 +1601,6 @@ module.exports = {
|
|
|
1536
1601
|
{
|
|
1537
1602
|
if: { mini: true },
|
|
1538
1603
|
tokens: {
|
|
1539
|
-
backgroundColor: 'rgba(0, 0, 0, 0)',
|
|
1540
1604
|
borderColor: 'rgba(0, 0, 0, 0)',
|
|
1541
1605
|
borderWidth: 0,
|
|
1542
1606
|
icon: PaletteIconChevronDown,
|
|
@@ -1584,34 +1648,65 @@ module.exports = {
|
|
|
1584
1648
|
ExpandCollapseMini: { appearances: {}, rules: [], tokens: { borderWidth: 0 } },
|
|
1585
1649
|
ExpandCollapseMiniControl: {
|
|
1586
1650
|
appearances: {
|
|
1651
|
+
alternative: {
|
|
1652
|
+
description: 'Replaces the default green colour with black',
|
|
1653
|
+
type: 'variant',
|
|
1654
|
+
values: [ true ]
|
|
1655
|
+
},
|
|
1587
1656
|
expanded: {
|
|
1588
1657
|
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
1589
1658
|
type: 'state',
|
|
1590
1659
|
values: [ true ]
|
|
1591
|
-
}
|
|
1660
|
+
},
|
|
1661
|
+
inverse: {
|
|
1662
|
+
description: 'Replaces the default green colour with white. Useful for dark backgrounds.',
|
|
1663
|
+
type: 'variant',
|
|
1664
|
+
values: [ true ]
|
|
1665
|
+
},
|
|
1666
|
+
size: { type: 'variant', values: [ 'micro', 'small', 'large' ] }
|
|
1592
1667
|
},
|
|
1593
1668
|
rules: [
|
|
1594
1669
|
{
|
|
1595
1670
|
if: { expanded: true },
|
|
1596
1671
|
tokens: { icon: PaletteIconChevronUp }
|
|
1672
|
+
},
|
|
1673
|
+
{ if: { alternative: true }, tokens: { color: '#000000' } },
|
|
1674
|
+
{
|
|
1675
|
+
if: { inverse: true },
|
|
1676
|
+
tokens: { color: '#ffffff', iconColor: '#ffffff' }
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
if: { size: 'micro' },
|
|
1680
|
+
tokens: { fontSize: 12, iconSize: 16, lineHeight: 1.33333333333 }
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
if: { size: 'small' },
|
|
1684
|
+
tokens: { fontSize: 14, iconSize: 20, lineHeight: 1.45 }
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
if: { size: 'large' },
|
|
1688
|
+
tokens: { fontSize: 20, lineHeight: 1.45 }
|
|
1597
1689
|
}
|
|
1598
1690
|
],
|
|
1599
1691
|
tokens: {
|
|
1600
|
-
backgroundColor: null,
|
|
1601
1692
|
borderColor: 'rgba(0, 0, 0, 0)',
|
|
1602
1693
|
borderWidth: 0,
|
|
1694
|
+
color: '#016b6a',
|
|
1695
|
+
fontSize: 16,
|
|
1603
1696
|
icon: PaletteIconChevronDown,
|
|
1604
1697
|
iconColor: '#000000',
|
|
1605
1698
|
iconGap: 8,
|
|
1606
1699
|
iconPaddingTop: 4,
|
|
1607
1700
|
iconPosition: 'left',
|
|
1608
|
-
iconSize:
|
|
1701
|
+
iconSize: 24,
|
|
1609
1702
|
justifyContent: 'flex-start',
|
|
1703
|
+
lineHeight: 1.45,
|
|
1610
1704
|
paddingBottom: 0,
|
|
1611
1705
|
paddingLeft: 0,
|
|
1612
1706
|
paddingRight: 0,
|
|
1613
1707
|
paddingTop: 0,
|
|
1614
1708
|
size: 4,
|
|
1709
|
+
textLine: 'none',
|
|
1615
1710
|
verticalAlign: 'middle'
|
|
1616
1711
|
}
|
|
1617
1712
|
},
|
|
@@ -1772,18 +1867,18 @@ module.exports = {
|
|
|
1772
1867
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1773
1868
|
platforms: [ 'rn' ],
|
|
1774
1869
|
type: 'state',
|
|
1775
|
-
values: [ true ]
|
|
1870
|
+
values: [ true, false ]
|
|
1776
1871
|
},
|
|
1777
1872
|
hover: {
|
|
1778
1873
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1779
1874
|
platforms: [ 'rn' ],
|
|
1780
1875
|
type: 'state',
|
|
1781
|
-
values: [ true ]
|
|
1876
|
+
values: [ true, false ]
|
|
1782
1877
|
},
|
|
1783
1878
|
pressed: {
|
|
1784
1879
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1785
1880
|
type: 'state',
|
|
1786
|
-
values: [ true ]
|
|
1881
|
+
values: [ true, false ]
|
|
1787
1882
|
}
|
|
1788
1883
|
},
|
|
1789
1884
|
rules: [
|
|
@@ -1886,13 +1981,13 @@ module.exports = {
|
|
|
1886
1981
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
1887
1982
|
platforms: [ 'rn' ],
|
|
1888
1983
|
type: 'state',
|
|
1889
|
-
values: [ true ]
|
|
1984
|
+
values: [ true, false ]
|
|
1890
1985
|
},
|
|
1891
1986
|
hover: {
|
|
1892
1987
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1893
1988
|
platforms: [ 'rn' ],
|
|
1894
1989
|
type: 'state',
|
|
1895
|
-
values: [ true ]
|
|
1990
|
+
values: [ true, false ]
|
|
1896
1991
|
},
|
|
1897
1992
|
inactive: {
|
|
1898
1993
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -1912,7 +2007,7 @@ module.exports = {
|
|
|
1912
2007
|
pressed: {
|
|
1913
2008
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
1914
2009
|
type: 'state',
|
|
1915
|
-
values: [ true ]
|
|
2010
|
+
values: [ true, false ]
|
|
1916
2011
|
},
|
|
1917
2012
|
raised: {
|
|
1918
2013
|
description: 'Uses shadow and background colour to appear raised above the page',
|
|
@@ -2186,13 +2281,13 @@ module.exports = {
|
|
|
2186
2281
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2187
2282
|
platforms: [ 'rn' ],
|
|
2188
2283
|
type: 'state',
|
|
2189
|
-
values: [ true ]
|
|
2284
|
+
values: [ true, false ]
|
|
2190
2285
|
},
|
|
2191
2286
|
hover: {
|
|
2192
2287
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2193
2288
|
platforms: [ 'rn' ],
|
|
2194
2289
|
type: 'state',
|
|
2195
|
-
values: [ true ]
|
|
2290
|
+
values: [ true, false ]
|
|
2196
2291
|
},
|
|
2197
2292
|
iconPosition: {
|
|
2198
2293
|
description: 'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
@@ -2203,7 +2298,7 @@ module.exports = {
|
|
|
2203
2298
|
pressed: {
|
|
2204
2299
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2205
2300
|
type: 'state',
|
|
2206
|
-
values: [ true ]
|
|
2301
|
+
values: [ true, false ]
|
|
2207
2302
|
},
|
|
2208
2303
|
size: {
|
|
2209
2304
|
description: 'Text sizes for block links; similar but not always identical to Typography sizes.',
|
|
@@ -2377,12 +2472,12 @@ module.exports = {
|
|
|
2377
2472
|
listGutter: 10
|
|
2378
2473
|
}
|
|
2379
2474
|
},
|
|
2380
|
-
|
|
2475
|
+
Listbox: {
|
|
2381
2476
|
appearances: {
|
|
2382
2477
|
current: {
|
|
2383
2478
|
description: 'When the current item is selected',
|
|
2384
2479
|
type: 'state',
|
|
2385
|
-
values: [ true ]
|
|
2480
|
+
values: [ true, false ]
|
|
2386
2481
|
},
|
|
2387
2482
|
expanded: {
|
|
2388
2483
|
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
@@ -2393,85 +2488,184 @@ module.exports = {
|
|
|
2393
2488
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2394
2489
|
platforms: [ 'rn' ],
|
|
2395
2490
|
type: 'state',
|
|
2396
|
-
values: [ true ]
|
|
2491
|
+
values: [ true, false ]
|
|
2397
2492
|
},
|
|
2398
2493
|
hover: {
|
|
2399
2494
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2400
2495
|
platforms: [ 'rn' ],
|
|
2401
2496
|
type: 'state',
|
|
2402
|
-
values: [ true ]
|
|
2497
|
+
values: [ true, false ]
|
|
2403
2498
|
},
|
|
2404
2499
|
isChild: {
|
|
2405
2500
|
description: 'when the item is child of another child',
|
|
2406
2501
|
type: 'state',
|
|
2407
|
-
values: [ true ]
|
|
2502
|
+
values: [ true, false ]
|
|
2408
2503
|
},
|
|
2409
2504
|
pressed: {
|
|
2410
2505
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2411
2506
|
type: 'state',
|
|
2412
|
-
values: [ true ]
|
|
2507
|
+
values: [ true, false ]
|
|
2413
2508
|
}
|
|
2414
2509
|
},
|
|
2415
2510
|
rules: [
|
|
2416
2511
|
{
|
|
2417
|
-
if: { pressed: true },
|
|
2418
|
-
tokens: {
|
|
2512
|
+
if: { focus: true, hover: true, pressed: true },
|
|
2513
|
+
tokens: {
|
|
2514
|
+
groupBackgroundColor: '#b5b4b4',
|
|
2515
|
+
groupBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2516
|
+
groupBorderWidth: 0,
|
|
2517
|
+
groupColor: '#595959',
|
|
2518
|
+
itemBackgroundColor: '#b5b4b4',
|
|
2519
|
+
itemColor: '#595959'
|
|
2520
|
+
}
|
|
2419
2521
|
},
|
|
2420
2522
|
{
|
|
2421
|
-
if: { hover: true },
|
|
2422
|
-
tokens: {
|
|
2523
|
+
if: { focus: false, hover: true, pressed: false },
|
|
2524
|
+
tokens: {
|
|
2525
|
+
groupBackgroundColor: '#c9c8c8',
|
|
2526
|
+
groupBorderColor: '#c9c8c8',
|
|
2527
|
+
itemBackgroundColor: '#c9c8c8'
|
|
2528
|
+
}
|
|
2423
2529
|
},
|
|
2424
2530
|
{
|
|
2425
|
-
if: { focus: true },
|
|
2426
|
-
tokens: {
|
|
2531
|
+
if: { focus: true, pressed: false },
|
|
2532
|
+
tokens: {
|
|
2533
|
+
groupBorderColor: '#016b6a',
|
|
2534
|
+
groupColor: '#016b6a',
|
|
2535
|
+
itemBorderBottomColor: '#016b6a',
|
|
2536
|
+
itemBorderLeftColor: '#016b6a',
|
|
2537
|
+
itemBorderRightColor: '#016b6a',
|
|
2538
|
+
itemBorderTopColor: '#016b6a',
|
|
2539
|
+
itemColor: '#016b6a'
|
|
2540
|
+
}
|
|
2427
2541
|
},
|
|
2428
2542
|
{
|
|
2429
2543
|
if: { current: true },
|
|
2430
2544
|
tokens: {
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2545
|
+
groupBackgroundColor: '#016b6a',
|
|
2546
|
+
groupBorderColor: '#016b6a',
|
|
2547
|
+
groupColor: '#ffffff',
|
|
2548
|
+
itemBackgroundColor: '#016b6a',
|
|
2549
|
+
itemColor: '#ffffff'
|
|
2434
2550
|
}
|
|
2435
2551
|
},
|
|
2552
|
+
{
|
|
2553
|
+
if: { current: true, pressed: true },
|
|
2554
|
+
tokens: { itemBackgroundColor: '#b5b4b4', itemColor: '#595959' }
|
|
2555
|
+
},
|
|
2436
2556
|
{
|
|
2437
2557
|
if: { isChild: true },
|
|
2438
|
-
tokens: {
|
|
2558
|
+
tokens: {
|
|
2559
|
+
itemBorderBottomWidth: 0,
|
|
2560
|
+
itemBorderLeftColor: '#000000',
|
|
2561
|
+
itemBorderLeftWidth: 4,
|
|
2562
|
+
itemBorderTopWidth: 0
|
|
2563
|
+
}
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
if: { focus: true, isChild: true },
|
|
2567
|
+
tokens: {
|
|
2568
|
+
itemBorderBottomColor: '#016b6a',
|
|
2569
|
+
itemBorderBottomWidth: 1,
|
|
2570
|
+
itemBorderLeftColor: '#016b6a',
|
|
2571
|
+
itemBorderRightColor: '#016b6a',
|
|
2572
|
+
itemBorderRightWidth: 1,
|
|
2573
|
+
itemBorderTopColor: '#016b6a',
|
|
2574
|
+
itemBorderTopWidth: 1
|
|
2575
|
+
}
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
if: { current: true, isChild: true },
|
|
2579
|
+
tokens: { itemBorderLeftColor: '#016b6a' }
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
if: { isChild: true, pressed: true },
|
|
2583
|
+
tokens: {
|
|
2584
|
+
itemBorderBottomWidth: 0,
|
|
2585
|
+
itemBorderLeftColor: '#595959',
|
|
2586
|
+
itemBorderTopWidth: 0,
|
|
2587
|
+
itemColor: '#595959'
|
|
2588
|
+
}
|
|
2439
2589
|
},
|
|
2440
2590
|
{
|
|
2441
2591
|
if: { expanded: true },
|
|
2442
2592
|
tokens: { groupIcon: PaletteIconChevronUp }
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
if: { current: true, expanded: true, focus: true },
|
|
2596
|
+
tokens: {
|
|
2597
|
+
groupBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2598
|
+
groupColor: '#016b6a'
|
|
2599
|
+
}
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
if: { current: true, hover: true },
|
|
2603
|
+
tokens: {
|
|
2604
|
+
itemBackgroundColor: '#1b4746',
|
|
2605
|
+
itemBorderLeftColor: '#1b4746',
|
|
2606
|
+
itemColor: '#ffffff'
|
|
2607
|
+
}
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
if: { current: true, expanded: true, hover: true },
|
|
2611
|
+
tokens: { groupBackgroundColor: '#1b4746', groupColor: '#ffffff' }
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
if: {
|
|
2615
|
+
current: true,
|
|
2616
|
+
expanded: true,
|
|
2617
|
+
focus: true,
|
|
2618
|
+
hover: true,
|
|
2619
|
+
pressed: true
|
|
2620
|
+
},
|
|
2621
|
+
tokens: {
|
|
2622
|
+
groupBackgroundColor: '#b5b4b4',
|
|
2623
|
+
groupBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2624
|
+
groupColor: '#595959'
|
|
2625
|
+
}
|
|
2443
2626
|
}
|
|
2444
2627
|
],
|
|
2445
2628
|
tokens: {
|
|
2446
2629
|
groupBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2447
|
-
groupBorderColor: '
|
|
2448
|
-
groupBorderRadius:
|
|
2630
|
+
groupBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2631
|
+
groupBorderRadius: 0,
|
|
2449
2632
|
groupBorderWidth: 1,
|
|
2450
|
-
groupColor: '#
|
|
2633
|
+
groupColor: '#000000',
|
|
2451
2634
|
groupFontName: 'StagSans',
|
|
2452
|
-
groupFontSize:
|
|
2635
|
+
groupFontSize: 16,
|
|
2453
2636
|
groupFontWeight: '400',
|
|
2637
|
+
groupHeight: 32,
|
|
2454
2638
|
groupIcon: PaletteIconChevronDown,
|
|
2455
2639
|
groupPaddingBottom: 12,
|
|
2456
2640
|
groupPaddingLeft: 16,
|
|
2457
2641
|
groupPaddingRight: 16,
|
|
2458
2642
|
groupPaddingTop: 12,
|
|
2459
2643
|
itemBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2644
|
+
itemBorderBottomColor: 'rgba(0, 0, 0, 0)',
|
|
2645
|
+
itemBorderBottomWidth: 1,
|
|
2646
|
+
itemBorderLeftColor: 'rgba(0, 0, 0, 0)',
|
|
2647
|
+
itemBorderLeftWidth: 1,
|
|
2648
|
+
itemBorderRadius: 0,
|
|
2649
|
+
itemBorderRightColor: 'rgba(0, 0, 0, 0)',
|
|
2650
|
+
itemBorderRightWidth: 1,
|
|
2651
|
+
itemBorderTopColor: 'rgba(0, 0, 0, 0)',
|
|
2652
|
+
itemBorderTopWidth: 1,
|
|
2463
2653
|
itemBorderWidth: 0,
|
|
2464
|
-
itemColor: '#
|
|
2654
|
+
itemColor: '#000000',
|
|
2465
2655
|
itemDisplay: false,
|
|
2466
2656
|
itemFontName: 'StagSans',
|
|
2467
|
-
itemFontSize:
|
|
2468
|
-
itemFontWeight: '
|
|
2657
|
+
itemFontSize: 16,
|
|
2658
|
+
itemFontWeight: '400',
|
|
2659
|
+
itemHeight: 32,
|
|
2469
2660
|
itemOutline: 0,
|
|
2470
2661
|
itemPaddingBottom: 12,
|
|
2471
2662
|
itemPaddingLeft: 16,
|
|
2472
2663
|
itemPaddingRight: 16,
|
|
2473
2664
|
itemPaddingTop: 12,
|
|
2474
2665
|
itemTextDecoration: 'none',
|
|
2666
|
+
lineHeight: 1.5,
|
|
2667
|
+
minHeight: '100%',
|
|
2668
|
+
minWidth: '100%',
|
|
2475
2669
|
shadow: {
|
|
2476
2670
|
blur: 2,
|
|
2477
2671
|
color: 'rgba(0, 0, 0, 0.1)',
|
|
@@ -2624,18 +2818,18 @@ module.exports = {
|
|
|
2624
2818
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2625
2819
|
platforms: [ 'rn' ],
|
|
2626
2820
|
type: 'state',
|
|
2627
|
-
values: [ true ]
|
|
2821
|
+
values: [ true, false ]
|
|
2628
2822
|
},
|
|
2629
2823
|
hover: {
|
|
2630
2824
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2631
2825
|
platforms: [ 'rn' ],
|
|
2632
2826
|
type: 'state',
|
|
2633
|
-
values: [ true ]
|
|
2827
|
+
values: [ true, false ]
|
|
2634
2828
|
},
|
|
2635
2829
|
pressed: {
|
|
2636
2830
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2637
2831
|
type: 'state',
|
|
2638
|
-
values: [ true ]
|
|
2832
|
+
values: [ true, false ]
|
|
2639
2833
|
},
|
|
2640
2834
|
selected: {
|
|
2641
2835
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -2907,18 +3101,18 @@ module.exports = {
|
|
|
2907
3101
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2908
3102
|
platforms: [ 'rn' ],
|
|
2909
3103
|
type: 'state',
|
|
2910
|
-
values: [ true ]
|
|
3104
|
+
values: [ true, false ]
|
|
2911
3105
|
},
|
|
2912
3106
|
hover: {
|
|
2913
3107
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2914
3108
|
platforms: [ 'rn' ],
|
|
2915
3109
|
type: 'state',
|
|
2916
|
-
values: [ true ]
|
|
3110
|
+
values: [ true, false ]
|
|
2917
3111
|
},
|
|
2918
3112
|
pressed: {
|
|
2919
3113
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
2920
3114
|
type: 'state',
|
|
2921
|
-
values: [ true ]
|
|
3115
|
+
values: [ true, false ]
|
|
2922
3116
|
},
|
|
2923
3117
|
selected: {
|
|
2924
3118
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -2987,18 +3181,18 @@ module.exports = {
|
|
|
2987
3181
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
2988
3182
|
platforms: [ 'rn' ],
|
|
2989
3183
|
type: 'state',
|
|
2990
|
-
values: [ true ]
|
|
3184
|
+
values: [ true, false ]
|
|
2991
3185
|
},
|
|
2992
3186
|
hover: {
|
|
2993
3187
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2994
3188
|
platforms: [ 'rn' ],
|
|
2995
3189
|
type: 'state',
|
|
2996
|
-
values: [ true ]
|
|
3190
|
+
values: [ true, false ]
|
|
2997
3191
|
},
|
|
2998
3192
|
pressed: {
|
|
2999
3193
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3000
3194
|
type: 'state',
|
|
3001
|
-
values: [ true ]
|
|
3195
|
+
values: [ true, false ]
|
|
3002
3196
|
},
|
|
3003
3197
|
selected: {
|
|
3004
3198
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -3085,19 +3279,19 @@ module.exports = {
|
|
|
3085
3279
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3086
3280
|
platforms: [ 'rn' ],
|
|
3087
3281
|
type: 'state',
|
|
3088
|
-
values: [ true ]
|
|
3282
|
+
values: [ true, false ]
|
|
3089
3283
|
},
|
|
3090
3284
|
hover: {
|
|
3091
3285
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3092
3286
|
platforms: [ 'rn' ],
|
|
3093
3287
|
type: 'state',
|
|
3094
|
-
values: [ true ]
|
|
3288
|
+
values: [ true, false ]
|
|
3095
3289
|
},
|
|
3096
3290
|
pressed: {
|
|
3097
3291
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3098
3292
|
platforms: [ 'rn' ],
|
|
3099
3293
|
type: 'state',
|
|
3100
|
-
values: [ true ]
|
|
3294
|
+
values: [ true, false ]
|
|
3101
3295
|
}
|
|
3102
3296
|
},
|
|
3103
3297
|
rules: [
|
|
@@ -3312,18 +3506,18 @@ module.exports = {
|
|
|
3312
3506
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3313
3507
|
platforms: [ 'rn' ],
|
|
3314
3508
|
type: 'state',
|
|
3315
|
-
values: [ true ]
|
|
3509
|
+
values: [ true, false ]
|
|
3316
3510
|
},
|
|
3317
3511
|
hover: {
|
|
3318
3512
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3319
3513
|
platforms: [ 'rn' ],
|
|
3320
3514
|
type: 'state',
|
|
3321
|
-
values: [ true ]
|
|
3515
|
+
values: [ true, false ]
|
|
3322
3516
|
},
|
|
3323
3517
|
pressed: {
|
|
3324
3518
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3325
3519
|
type: 'state',
|
|
3326
|
-
values: [ true ]
|
|
3520
|
+
values: [ true, false ]
|
|
3327
3521
|
}
|
|
3328
3522
|
},
|
|
3329
3523
|
rules: [
|
|
@@ -3403,18 +3597,18 @@ module.exports = {
|
|
|
3403
3597
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3404
3598
|
platforms: [ 'rn' ],
|
|
3405
3599
|
type: 'state',
|
|
3406
|
-
values: [ true ]
|
|
3600
|
+
values: [ true, false ]
|
|
3407
3601
|
},
|
|
3408
3602
|
hover: {
|
|
3409
3603
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3410
3604
|
platforms: [ 'rn' ],
|
|
3411
3605
|
type: 'state',
|
|
3412
|
-
values: [ true ]
|
|
3606
|
+
values: [ true, false ]
|
|
3413
3607
|
},
|
|
3414
3608
|
pressed: {
|
|
3415
3609
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3416
3610
|
type: 'state',
|
|
3417
|
-
values: [ true ]
|
|
3611
|
+
values: [ true, false ]
|
|
3418
3612
|
},
|
|
3419
3613
|
viewport: {
|
|
3420
3614
|
description: 'The size label for the current screen viewport based on the current screen width',
|
|
@@ -3478,18 +3672,18 @@ module.exports = {
|
|
|
3478
3672
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3479
3673
|
platforms: [ 'rn' ],
|
|
3480
3674
|
type: 'state',
|
|
3481
|
-
values: [ true ]
|
|
3675
|
+
values: [ true, false ]
|
|
3482
3676
|
},
|
|
3483
3677
|
hover: {
|
|
3484
3678
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3485
3679
|
platforms: [ 'rn' ],
|
|
3486
3680
|
type: 'state',
|
|
3487
|
-
values: [ true ]
|
|
3681
|
+
values: [ true, false ]
|
|
3488
3682
|
},
|
|
3489
3683
|
pressed: {
|
|
3490
3684
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3491
3685
|
type: 'state',
|
|
3492
|
-
values: [ true ]
|
|
3686
|
+
values: [ true, false ]
|
|
3493
3687
|
}
|
|
3494
3688
|
},
|
|
3495
3689
|
rules: [
|
|
@@ -3538,13 +3732,13 @@ module.exports = {
|
|
|
3538
3732
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3539
3733
|
platforms: [ 'rn' ],
|
|
3540
3734
|
type: 'state',
|
|
3541
|
-
values: [ true ]
|
|
3735
|
+
values: [ true, false ]
|
|
3542
3736
|
},
|
|
3543
3737
|
hover: {
|
|
3544
3738
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3545
3739
|
platforms: [ 'rn' ],
|
|
3546
3740
|
type: 'state',
|
|
3547
|
-
values: [ true ]
|
|
3741
|
+
values: [ true, false ]
|
|
3548
3742
|
},
|
|
3549
3743
|
inactive: {
|
|
3550
3744
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3644,13 +3838,13 @@ module.exports = {
|
|
|
3644
3838
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3645
3839
|
platforms: [ 'rn' ],
|
|
3646
3840
|
type: 'state',
|
|
3647
|
-
values: [ true ]
|
|
3841
|
+
values: [ true, false ]
|
|
3648
3842
|
},
|
|
3649
3843
|
hover: {
|
|
3650
3844
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3651
3845
|
platforms: [ 'rn' ],
|
|
3652
3846
|
type: 'state',
|
|
3653
|
-
values: [ true ]
|
|
3847
|
+
values: [ true, false ]
|
|
3654
3848
|
},
|
|
3655
3849
|
inactive: {
|
|
3656
3850
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3660,7 +3854,7 @@ module.exports = {
|
|
|
3660
3854
|
pressed: {
|
|
3661
3855
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3662
3856
|
type: 'state',
|
|
3663
|
-
values: [ true ]
|
|
3857
|
+
values: [ true, false ]
|
|
3664
3858
|
},
|
|
3665
3859
|
viewport: {
|
|
3666
3860
|
description: 'The size label for the current screen viewport based on the current screen width',
|
|
@@ -3883,7 +4077,7 @@ module.exports = {
|
|
|
3883
4077
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3884
4078
|
platforms: [ 'rn' ],
|
|
3885
4079
|
type: 'state',
|
|
3886
|
-
values: [ true ]
|
|
4080
|
+
values: [ true, false ]
|
|
3887
4081
|
},
|
|
3888
4082
|
inactive: {
|
|
3889
4083
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3940,13 +4134,13 @@ module.exports = {
|
|
|
3940
4134
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3941
4135
|
platforms: [ 'rn' ],
|
|
3942
4136
|
type: 'state',
|
|
3943
|
-
values: [ true ]
|
|
4137
|
+
values: [ true, false ]
|
|
3944
4138
|
},
|
|
3945
4139
|
hover: {
|
|
3946
4140
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3947
4141
|
platforms: [ 'rn' ],
|
|
3948
4142
|
type: 'state',
|
|
3949
|
-
values: [ true ]
|
|
4143
|
+
values: [ true, false ]
|
|
3950
4144
|
},
|
|
3951
4145
|
inactive: {
|
|
3952
4146
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -3956,7 +4150,7 @@ module.exports = {
|
|
|
3956
4150
|
pressed: {
|
|
3957
4151
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
3958
4152
|
type: 'state',
|
|
3959
|
-
values: [ true ]
|
|
4153
|
+
values: [ true, false ]
|
|
3960
4154
|
},
|
|
3961
4155
|
priority: { description: '', type: 'variant', values: [ 'high' ] }
|
|
3962
4156
|
},
|
|
@@ -4046,7 +4240,7 @@ module.exports = {
|
|
|
4046
4240
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4047
4241
|
platforms: [ 'rn' ],
|
|
4048
4242
|
type: 'state',
|
|
4049
|
-
values: [ true ]
|
|
4243
|
+
values: [ true, false ]
|
|
4050
4244
|
},
|
|
4051
4245
|
inactive: {
|
|
4052
4246
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4143,13 +4337,13 @@ module.exports = {
|
|
|
4143
4337
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4144
4338
|
platforms: [ 'rn' ],
|
|
4145
4339
|
type: 'state',
|
|
4146
|
-
values: [ true ]
|
|
4340
|
+
values: [ true, false ]
|
|
4147
4341
|
},
|
|
4148
4342
|
hover: {
|
|
4149
4343
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4150
4344
|
platforms: [ 'rn' ],
|
|
4151
4345
|
type: 'state',
|
|
4152
|
-
values: [ true ]
|
|
4346
|
+
values: [ true, false ]
|
|
4153
4347
|
},
|
|
4154
4348
|
type: {
|
|
4155
4349
|
description: '`parent` being the toggle button for an ItemsGroup, and `child` an element of the ItemGroup',
|
|
@@ -4303,14 +4497,14 @@ module.exports = {
|
|
|
4303
4497
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4304
4498
|
platforms: [ 'rn' ],
|
|
4305
4499
|
type: 'state',
|
|
4306
|
-
values: [ true ]
|
|
4500
|
+
values: [ true, false ]
|
|
4307
4501
|
}
|
|
4308
4502
|
},
|
|
4309
4503
|
rules: [],
|
|
4310
4504
|
tokens: {
|
|
4311
4505
|
buttonContentBackground: null,
|
|
4312
4506
|
buttonContentChildrenBackground: null,
|
|
4313
|
-
playIcon:
|
|
4507
|
+
playIcon: PaletteIconPlaySolid,
|
|
4314
4508
|
playIconColor: '#ffffff'
|
|
4315
4509
|
}
|
|
4316
4510
|
},
|
|
@@ -4320,7 +4514,7 @@ module.exports = {
|
|
|
4320
4514
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4321
4515
|
platforms: [ 'rn' ],
|
|
4322
4516
|
type: 'state',
|
|
4323
|
-
values: [ true ]
|
|
4517
|
+
values: [ true, false ]
|
|
4324
4518
|
}
|
|
4325
4519
|
},
|
|
4326
4520
|
rules: [
|
|
@@ -4341,9 +4535,11 @@ module.exports = {
|
|
|
4341
4535
|
buttonPaddingRight: 16,
|
|
4342
4536
|
buttonRadius: 32,
|
|
4343
4537
|
detailsContainerPadding: 8,
|
|
4344
|
-
|
|
4538
|
+
labelFontName: 'StagSans',
|
|
4539
|
+
labelFontWeight: '600',
|
|
4540
|
+
playIcon: PaletteIconPlaySolid,
|
|
4345
4541
|
playIconColor: '#ffffff',
|
|
4346
|
-
playIconContainerBackground:
|
|
4542
|
+
playIconContainerBackground: '#016b6a'
|
|
4347
4543
|
}
|
|
4348
4544
|
},
|
|
4349
4545
|
StackView: {
|
|
@@ -4450,18 +4646,18 @@ module.exports = {
|
|
|
4450
4646
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4451
4647
|
platforms: [ 'rn' ],
|
|
4452
4648
|
type: 'state',
|
|
4453
|
-
values: [ true ]
|
|
4649
|
+
values: [ true, false ]
|
|
4454
4650
|
},
|
|
4455
4651
|
hover: {
|
|
4456
4652
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4457
4653
|
platforms: [ 'rn' ],
|
|
4458
4654
|
type: 'state',
|
|
4459
|
-
values: [ true ]
|
|
4655
|
+
values: [ true, false ]
|
|
4460
4656
|
},
|
|
4461
4657
|
pressed: {
|
|
4462
4658
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4463
4659
|
type: 'state',
|
|
4464
|
-
values: [ true ]
|
|
4660
|
+
values: [ true, false ]
|
|
4465
4661
|
}
|
|
4466
4662
|
},
|
|
4467
4663
|
rules: [
|
|
@@ -4560,24 +4756,24 @@ module.exports = {
|
|
|
4560
4756
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4561
4757
|
platforms: [ 'rn' ],
|
|
4562
4758
|
type: 'state',
|
|
4563
|
-
values: [ true ]
|
|
4759
|
+
values: [ true, false ]
|
|
4564
4760
|
},
|
|
4565
4761
|
hover: {
|
|
4566
4762
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4567
4763
|
platforms: [ 'rn' ],
|
|
4568
4764
|
type: 'state',
|
|
4569
|
-
values: [ true ]
|
|
4765
|
+
values: [ true, false ]
|
|
4570
4766
|
},
|
|
4571
4767
|
inverse: { type: 'variant', values: [ true ] },
|
|
4572
4768
|
pressed: {
|
|
4573
4769
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4574
4770
|
type: 'state',
|
|
4575
|
-
values: [ true ]
|
|
4771
|
+
values: [ true, false ]
|
|
4576
4772
|
},
|
|
4577
4773
|
selected: {
|
|
4578
4774
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4579
4775
|
type: 'state',
|
|
4580
|
-
values: [ true ]
|
|
4776
|
+
values: [ true, false ]
|
|
4581
4777
|
}
|
|
4582
4778
|
},
|
|
4583
4779
|
rules: [
|
|
@@ -4698,13 +4894,13 @@ module.exports = {
|
|
|
4698
4894
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
4699
4895
|
platforms: [ 'rn' ],
|
|
4700
4896
|
type: 'state',
|
|
4701
|
-
values: [ true ]
|
|
4897
|
+
values: [ true, false ]
|
|
4702
4898
|
},
|
|
4703
4899
|
hover: {
|
|
4704
4900
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4705
4901
|
platforms: [ 'rn' ],
|
|
4706
4902
|
type: 'state',
|
|
4707
|
-
values: [ true ]
|
|
4903
|
+
values: [ true, false ]
|
|
4708
4904
|
},
|
|
4709
4905
|
inactive: {
|
|
4710
4906
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -4714,7 +4910,7 @@ module.exports = {
|
|
|
4714
4910
|
pressed: {
|
|
4715
4911
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
4716
4912
|
type: 'state',
|
|
4717
|
-
values: [ true ]
|
|
4913
|
+
values: [ true, false ]
|
|
4718
4914
|
},
|
|
4719
4915
|
selected: {
|
|
4720
4916
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -4924,7 +5120,7 @@ module.exports = {
|
|
|
4924
5120
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4925
5121
|
platforms: [ 'rn' ],
|
|
4926
5122
|
type: 'state',
|
|
4927
|
-
values: [ true ]
|
|
5123
|
+
values: [ true, false ]
|
|
4928
5124
|
},
|
|
4929
5125
|
inactive: {
|
|
4930
5126
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -5025,7 +5221,7 @@ module.exports = {
|
|
|
5025
5221
|
{
|
|
5026
5222
|
if: { horizontal: true, viewport: [ 'lg', 'xl' ] },
|
|
5027
5223
|
tokens: {
|
|
5028
|
-
connectorHeight:
|
|
5224
|
+
connectorHeight: 1,
|
|
5029
5225
|
connectorWidth: '100%',
|
|
5030
5226
|
itemContentMarginBottom: 0,
|
|
5031
5227
|
itemContentMarginRight: 32,
|
|
@@ -5039,10 +5235,10 @@ module.exports = {
|
|
|
5039
5235
|
],
|
|
5040
5236
|
tokens: {
|
|
5041
5237
|
connectorHeight: '100%',
|
|
5042
|
-
connectorWidth:
|
|
5043
|
-
dotBorderWidth:
|
|
5238
|
+
connectorWidth: 1,
|
|
5239
|
+
dotBorderWidth: 2,
|
|
5044
5240
|
dotColor: '#ffffff',
|
|
5045
|
-
dotWidth:
|
|
5241
|
+
dotWidth: 12,
|
|
5046
5242
|
itemContentFlexSize: 1,
|
|
5047
5243
|
itemContentMarginBottom: 32,
|
|
5048
5244
|
itemContentMarginRight: 0,
|
|
@@ -5053,6 +5249,7 @@ module.exports = {
|
|
|
5053
5249
|
lineItemMarginBottom: 0,
|
|
5054
5250
|
lineItemMarginRight: 24,
|
|
5055
5251
|
timelineColor: '#016b6a',
|
|
5252
|
+
timelineConnectorColor: '#000000',
|
|
5056
5253
|
timelineContainerDirection: 'column'
|
|
5057
5254
|
}
|
|
5058
5255
|
},
|
|
@@ -5098,13 +5295,13 @@ module.exports = {
|
|
|
5098
5295
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
5099
5296
|
platforms: [ 'rn' ],
|
|
5100
5297
|
type: 'state',
|
|
5101
|
-
values: [ true ]
|
|
5298
|
+
values: [ true, false ]
|
|
5102
5299
|
},
|
|
5103
5300
|
hover: {
|
|
5104
5301
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
5105
5302
|
platforms: [ 'rn' ],
|
|
5106
5303
|
type: 'state',
|
|
5107
|
-
values: [ true ]
|
|
5304
|
+
values: [ true, false ]
|
|
5108
5305
|
},
|
|
5109
5306
|
inactive: {
|
|
5110
5307
|
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
@@ -5114,7 +5311,7 @@ module.exports = {
|
|
|
5114
5311
|
pressed: {
|
|
5115
5312
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
5116
5313
|
type: 'state',
|
|
5117
|
-
values: [ true ]
|
|
5314
|
+
values: [ true, false ]
|
|
5118
5315
|
},
|
|
5119
5316
|
selected: {
|
|
5120
5317
|
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
@@ -5153,11 +5350,11 @@ module.exports = {
|
|
|
5153
5350
|
},
|
|
5154
5351
|
{
|
|
5155
5352
|
if: { hover: true, selected: true },
|
|
5156
|
-
tokens: { backgroundColor: '#bbeaf5' }
|
|
5353
|
+
tokens: { backgroundColor: '#bbeaf5', switchColor: '#1b4746' }
|
|
5157
5354
|
},
|
|
5158
5355
|
{
|
|
5159
5356
|
if: { pressed: true, selected: true },
|
|
5160
|
-
tokens: { backgroundColor: '#
|
|
5357
|
+
tokens: { backgroundColor: '#b5b4b4', switchColor: '#505050' }
|
|
5161
5358
|
},
|
|
5162
5359
|
{
|
|
5163
5360
|
if: { focus: true, selected: true },
|
|
@@ -5200,17 +5397,19 @@ module.exports = {
|
|
|
5200
5397
|
labelFontSize: 16,
|
|
5201
5398
|
labelFontWeight: '600',
|
|
5202
5399
|
labelLineHeight: 1.5,
|
|
5203
|
-
labelMarginLeft:
|
|
5400
|
+
labelMarginLeft: 0,
|
|
5204
5401
|
opacity: 1,
|
|
5205
5402
|
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
5206
5403
|
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
5207
5404
|
outerBorderGap: 0,
|
|
5405
|
+
outerBorderGapButton: 4,
|
|
5208
5406
|
outerBorderWidth: 0,
|
|
5209
5407
|
paddingBottom: 0,
|
|
5210
5408
|
paddingLeft: 0,
|
|
5211
5409
|
paddingRight: 0,
|
|
5212
5410
|
paddingTop: 0,
|
|
5213
5411
|
shadow: null,
|
|
5412
|
+
space: 2,
|
|
5214
5413
|
switchBorderColor: 'rgba(0, 0, 0, 0)',
|
|
5215
5414
|
switchBorderRadius: 32,
|
|
5216
5415
|
switchBorderWidth: 0,
|
|
@@ -5223,10 +5422,11 @@ module.exports = {
|
|
|
5223
5422
|
offsetY: 2,
|
|
5224
5423
|
spread: 0
|
|
5225
5424
|
},
|
|
5226
|
-
switchSize:
|
|
5425
|
+
switchSize: 24,
|
|
5227
5426
|
trackBorderColor: 'rgba(0, 0, 0, 0)',
|
|
5228
5427
|
trackBorderRadius: 12,
|
|
5229
5428
|
trackBorderWidth: 3,
|
|
5429
|
+
trackHeight: 20,
|
|
5230
5430
|
width: 40
|
|
5231
5431
|
}
|
|
5232
5432
|
},
|
|
@@ -5288,18 +5488,18 @@ module.exports = {
|
|
|
5288
5488
|
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
5289
5489
|
platforms: [ 'rn' ],
|
|
5290
5490
|
type: 'state',
|
|
5291
|
-
values: [ true ]
|
|
5491
|
+
values: [ true, false ]
|
|
5292
5492
|
},
|
|
5293
5493
|
hover: {
|
|
5294
5494
|
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
5295
5495
|
platforms: [ 'rn' ],
|
|
5296
5496
|
type: 'state',
|
|
5297
|
-
values: [ true ]
|
|
5497
|
+
values: [ true, false ]
|
|
5298
5498
|
},
|
|
5299
5499
|
pressed: {
|
|
5300
5500
|
description: 'Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.',
|
|
5301
5501
|
type: 'state',
|
|
5302
|
-
values: [ true ]
|
|
5502
|
+
values: [ true, false ]
|
|
5303
5503
|
}
|
|
5304
5504
|
},
|
|
5305
5505
|
rules: [
|
|
@@ -5557,29 +5757,45 @@ module.exports = {
|
|
|
5557
5757
|
rules: [],
|
|
5558
5758
|
tokens: {
|
|
5559
5759
|
borderColor: '#000000',
|
|
5560
|
-
pauseIcon:
|
|
5561
|
-
playIcon:
|
|
5562
|
-
replayIcon:
|
|
5760
|
+
pauseIcon: PaletteIconPause,
|
|
5761
|
+
playIcon: PaletteIconPlaySolid,
|
|
5762
|
+
replayIcon: PaletteIconReplay
|
|
5563
5763
|
}
|
|
5564
5764
|
},
|
|
5565
5765
|
VideoButton: { appearances: {}, rules: [], tokens: { color: '#ffffff' } },
|
|
5566
5766
|
VideoControlBar: {
|
|
5567
|
-
appearances: {
|
|
5568
|
-
|
|
5767
|
+
appearances: {
|
|
5768
|
+
viewport: {
|
|
5769
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
5770
|
+
type: 'state',
|
|
5771
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
5772
|
+
}
|
|
5773
|
+
},
|
|
5774
|
+
rules: [
|
|
5775
|
+
{
|
|
5776
|
+
if: { viewport: [ 'xs', 'sm' ] },
|
|
5777
|
+
tokens: {
|
|
5778
|
+
height: 40,
|
|
5779
|
+
paddingBottom: 8,
|
|
5780
|
+
paddingLeft: 16,
|
|
5781
|
+
paddingRight: 16,
|
|
5782
|
+
paddingTop: 8
|
|
5783
|
+
}
|
|
5784
|
+
}
|
|
5785
|
+
],
|
|
5569
5786
|
tokens: {
|
|
5570
|
-
captionsIcon:
|
|
5571
|
-
|
|
5787
|
+
captionsIcon: PaletteIconClosedCaptions,
|
|
5788
|
+
height: 56,
|
|
5789
|
+
maximizeIcon: PaletteIconFullscreenExpand,
|
|
5572
5790
|
menuBottom: 64,
|
|
5573
5791
|
menuMarginLeft: 16,
|
|
5574
5792
|
menuRight: 32,
|
|
5575
|
-
minimizeIcon:
|
|
5793
|
+
minimizeIcon: PaletteIconFullscreenMinimize,
|
|
5576
5794
|
paddingBottom: 16,
|
|
5577
5795
|
paddingLeft: 48,
|
|
5578
|
-
paddingLeftCompactMode: 16,
|
|
5579
5796
|
paddingRight: 48,
|
|
5580
|
-
paddingRightCompactMode: 16,
|
|
5581
5797
|
paddingTop: 16,
|
|
5582
|
-
settingsIcon:
|
|
5798
|
+
settingsIcon: PaletteIconSettingsSolid
|
|
5583
5799
|
}
|
|
5584
5800
|
},
|
|
5585
5801
|
VideoMenu: {
|
|
@@ -5655,8 +5871,8 @@ module.exports = {
|
|
|
5655
5871
|
thumbWidth: 8,
|
|
5656
5872
|
timestampMarginLeft: 8,
|
|
5657
5873
|
timestampMarginRight: 8,
|
|
5658
|
-
trackGradientEnd: '#
|
|
5659
|
-
trackGradientStart: '#
|
|
5874
|
+
trackGradientEnd: '#39cdc9',
|
|
5875
|
+
trackGradientStart: '#39cdc9'
|
|
5660
5876
|
}
|
|
5661
5877
|
},
|
|
5662
5878
|
VideoVolumeSlider: {
|
|
@@ -5665,14 +5881,14 @@ module.exports = {
|
|
|
5665
5881
|
tokens: {
|
|
5666
5882
|
marginLeft: 16,
|
|
5667
5883
|
marginRight: 16,
|
|
5668
|
-
mutedIcon:
|
|
5884
|
+
mutedIcon: PaletteIconMuted,
|
|
5669
5885
|
rangeBackground: 'rgba(0, 0, 0, 0)',
|
|
5670
5886
|
thumbBackground: '#ffffff',
|
|
5671
5887
|
thumbHeight: 8,
|
|
5672
5888
|
thumbWidth: 8,
|
|
5673
5889
|
trackGradientEnd: '#ffffff',
|
|
5674
5890
|
trackGradientStart: '#ffffff',
|
|
5675
|
-
unmutedIcon:
|
|
5891
|
+
unmutedIcon: PaletteIconUnmuted
|
|
5676
5892
|
}
|
|
5677
5893
|
},
|
|
5678
5894
|
WaffleGrid: {
|
|
@@ -5744,5 +5960,5 @@ module.exports = {
|
|
|
5744
5960
|
tokens: { size: 96 }
|
|
5745
5961
|
}
|
|
5746
5962
|
},
|
|
5747
|
-
metadata: { name: 'theme-koodo', themeTokensVersion: '2.
|
|
5963
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '2.36.0' }
|
|
5748
5964
|
}
|