@telus-uds/theme-allium 4.7.0 → 4.9.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 +1752 -1048
- package/build/android/theme.json +823 -254
- package/build/ios/schema.json +1752 -1048
- package/build/ios/theme.json +823 -254
- package/build/rn/schema.json +1752 -1048
- package/build/rn/theme.js +502 -87
- package/package.json +5 -5
- package/theme.json +603 -76
package/theme.json
CHANGED
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
"borderWidth": "{palette.border.border2}",
|
|
117
117
|
"color": "{palette.color.white}",
|
|
118
118
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
119
|
+
"fontSize": "{palette.fontSize.size12}",
|
|
119
120
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
120
121
|
"gradient": "{system.gradient.none}",
|
|
121
122
|
"paddingBottom": "{palette.size.size2}",
|
|
@@ -1408,8 +1409,7 @@
|
|
|
1408
1409
|
},
|
|
1409
1410
|
"tokens": {
|
|
1410
1411
|
"showPanelTabs": "{system.show.false}",
|
|
1411
|
-
"showPreviousNextNavigation": "{system.show.false}"
|
|
1412
|
-
"thumbnailSize": "{palette.size.size48}"
|
|
1412
|
+
"showPreviousNextNavigation": "{system.show.false}"
|
|
1413
1413
|
}
|
|
1414
1414
|
}
|
|
1415
1415
|
],
|
|
@@ -1422,15 +1422,7 @@
|
|
|
1422
1422
|
"showPreviousNextNavigation": "{system.show.true}",
|
|
1423
1423
|
"spaceBetweenSlideAndPanelNavigation": "{palette.size.size32}",
|
|
1424
1424
|
"spaceBetweenSlideAndPreviousNextNavigation": "{palette.size.size24}",
|
|
1425
|
-
"
|
|
1426
|
-
"thumbnailBorderRadius": "{palette.radius.radius4}",
|
|
1427
|
-
"thumbnailBorderWidth": "{palette.border.border1}",
|
|
1428
|
-
"thumbnailContainerPaddingTop": "{palette.size.size24}",
|
|
1429
|
-
"thumbnailMargin": "{palette.size.size4}",
|
|
1430
|
-
"thumbnailPadding": "{palette.size.size8}",
|
|
1431
|
-
"thumbnailSelectedBorderColor": "{palette.color.greyShuttle}",
|
|
1432
|
-
"thumbnailSelectedBorderWidth": "{palette.border.border2}",
|
|
1433
|
-
"thumbnailSize": "{palette.size.size56}"
|
|
1425
|
+
"stepTrackerCurrentBackgroundColor": "{system.color.none}"
|
|
1434
1426
|
}
|
|
1435
1427
|
},
|
|
1436
1428
|
"CarouselTabsPanelItem": {
|
|
@@ -1568,7 +1560,9 @@
|
|
|
1568
1560
|
"tokens": {
|
|
1569
1561
|
"borderBottomColor": "{palette.color.white}",
|
|
1570
1562
|
"borderBottomWidth": "{palette.border.border4}",
|
|
1571
|
-
"color": "{palette.color.white}"
|
|
1563
|
+
"color": "{palette.color.white}",
|
|
1564
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
1565
|
+
"fontWeight": "{palette.fontWeight.weight700}"
|
|
1572
1566
|
}
|
|
1573
1567
|
}
|
|
1574
1568
|
],
|
|
@@ -1585,13 +1579,70 @@
|
|
|
1585
1579
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
1586
1580
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|
|
1587
1581
|
"letterSpacing": "{system.letterSpacing.none}",
|
|
1588
|
-
"lineHeight": "{palette.lineHeight.
|
|
1582
|
+
"lineHeight": "{palette.lineHeight.ratio14to1}",
|
|
1589
1583
|
"paddingBottom": "{palette.size.size16}",
|
|
1590
1584
|
"paddingLeft": "{system.size.zero}",
|
|
1591
1585
|
"paddingRight": "{system.size.zero}",
|
|
1592
1586
|
"paddingTop": "{system.size.zero}"
|
|
1593
1587
|
}
|
|
1594
1588
|
},
|
|
1589
|
+
"CarouselThumbnail": {
|
|
1590
|
+
"appearances": {
|
|
1591
|
+
"focus": "{appearances.CarouselThumbnail.focus}",
|
|
1592
|
+
"hover": "{appearances.CarouselThumbnail.hover}",
|
|
1593
|
+
"pressed": "{appearances.CarouselThumbnail.pressed}",
|
|
1594
|
+
"viewport": "{appearances.system.viewport}"
|
|
1595
|
+
},
|
|
1596
|
+
"rules": [
|
|
1597
|
+
{
|
|
1598
|
+
"if": {
|
|
1599
|
+
"viewport": ["xs", "sm"]
|
|
1600
|
+
},
|
|
1601
|
+
"tokens": {
|
|
1602
|
+
"alignItems": "{system.flexAlign.flexStart}",
|
|
1603
|
+
"size": "{palette.size.size48}"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"if": {
|
|
1608
|
+
"hover": true
|
|
1609
|
+
},
|
|
1610
|
+
"tokens": {
|
|
1611
|
+
"borderColor": "{palette.color.greenAccessible}"
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
"if": {
|
|
1616
|
+
"focus": true
|
|
1617
|
+
},
|
|
1618
|
+
"tokens": {
|
|
1619
|
+
"borderColor": "{palette.color.greenAccessible}",
|
|
1620
|
+
"borderWidth": "{palette.border.border2}"
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"if": {
|
|
1625
|
+
"pressed": true
|
|
1626
|
+
},
|
|
1627
|
+
"tokens": {
|
|
1628
|
+
"borderColor": "{palette.color.greenSanFelix}",
|
|
1629
|
+
"borderWidth": "{palette.border.border2}"
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
],
|
|
1633
|
+
"tokens": {
|
|
1634
|
+
"alignItems": "{system.flexAlign.center}",
|
|
1635
|
+
"borderColor": "{palette.color.greyMystic}",
|
|
1636
|
+
"borderRadius": "{palette.radius.radius4}",
|
|
1637
|
+
"borderWidth": "{palette.border.border1}",
|
|
1638
|
+
"containerPaddingTop": "{palette.size.size24}",
|
|
1639
|
+
"margin": "{palette.size.size4}",
|
|
1640
|
+
"padding": "{palette.size.size8}",
|
|
1641
|
+
"selectedBorderColor": "{palette.color.greyShuttle}",
|
|
1642
|
+
"selectedBorderWidth": "{palette.border.border2}",
|
|
1643
|
+
"size": "{palette.size.size72}"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1595
1646
|
"Checkbox": {
|
|
1596
1647
|
"appearances": {
|
|
1597
1648
|
"checked": "{appearances.Checkbox.checked}",
|
|
@@ -1809,6 +1860,34 @@
|
|
|
1809
1860
|
"tokens": {
|
|
1810
1861
|
"outerBorderColor": "{palette.color.greenAccessible}"
|
|
1811
1862
|
}
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"if": {
|
|
1866
|
+
"focus": true,
|
|
1867
|
+
"pressed": true
|
|
1868
|
+
},
|
|
1869
|
+
"tokens": {
|
|
1870
|
+
"outerBorderColor": "{palette.color.greenDarkFern}"
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"if": {
|
|
1875
|
+
"focus": true,
|
|
1876
|
+
"inverse": true
|
|
1877
|
+
},
|
|
1878
|
+
"tokens": {
|
|
1879
|
+
"outerBorderColor": "{palette.color.white}"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"if": {
|
|
1884
|
+
"alternative": true,
|
|
1885
|
+
"focus": true
|
|
1886
|
+
},
|
|
1887
|
+
"tokens": {
|
|
1888
|
+
"color": "{palette.color.greyCharcoal}",
|
|
1889
|
+
"outerBorderColor": "{palette.color.greyCharcoal}"
|
|
1890
|
+
}
|
|
1812
1891
|
}
|
|
1813
1892
|
],
|
|
1814
1893
|
"tokens": {
|
|
@@ -1942,8 +2021,8 @@
|
|
|
1942
2021
|
"rules": [],
|
|
1943
2022
|
"tokens": {
|
|
1944
2023
|
"calendarBackgroundColor": "{palette.color.white}",
|
|
1945
|
-
"calendarDayBlockedCalendarHoverBackground": "{palette.color.
|
|
1946
|
-
"calendarDayBlockedCalendarHoverColor": "{palette.color.
|
|
2024
|
+
"calendarDayBlockedCalendarHoverBackground": "{palette.color.greyAthens}",
|
|
2025
|
+
"calendarDayBlockedCalendarHoverColor": "{palette.color.greyCloud}",
|
|
1947
2026
|
"calendarDayDefaultBackgroundColor": "{palette.color.white}",
|
|
1948
2027
|
"calendarDayDefaultBorder": "{palette.border.border1}",
|
|
1949
2028
|
"calendarDayDefaultBorderColor": "{palette.color.greyCloud}",
|
|
@@ -2263,6 +2342,18 @@
|
|
|
2263
2342
|
"contentPaddingLeft": "{palette.size.size24}",
|
|
2264
2343
|
"contentPaddingRight": "{palette.size.size0}",
|
|
2265
2344
|
"contentPaddingTop": "{palette.size.size0}",
|
|
2345
|
+
"contentPanelBackgroundColor": "{palette.color.transparent}",
|
|
2346
|
+
"contentPanelBorderColor": "{palette.color.transparent}",
|
|
2347
|
+
"contentPanelBorderWidth": "{palette.border.none}",
|
|
2348
|
+
"contentPanelFontColor": "{palette.color.greyThunder}",
|
|
2349
|
+
"contentPanelFontName": "{palette.fontName.HelveticaNow}",
|
|
2350
|
+
"contentPanelFontSize": "{palette.fontSize.size16}",
|
|
2351
|
+
"contentPanelFontWeight": "{palette.fontWeight.weight700}",
|
|
2352
|
+
"contentPanelLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
2353
|
+
"contentPanelPaddingBottom": "{palette.size.size16}",
|
|
2354
|
+
"contentPanelPaddingLeft": "{palette.size.size24}",
|
|
2355
|
+
"contentPanelPaddingRight": "{palette.size.size0}",
|
|
2356
|
+
"contentPanelPaddingTop": "{palette.size.size16}",
|
|
2266
2357
|
"expandDividerColor": "{palette.color.transparent}",
|
|
2267
2358
|
"expandDividerWidth": "{palette.size.size0}",
|
|
2268
2359
|
"expandDuration": "{palette.duration.duration300}",
|
|
@@ -3025,8 +3116,16 @@
|
|
|
3025
3116
|
],
|
|
3026
3117
|
"tokens": {
|
|
3027
3118
|
"backgroundColor": "{system.color.transparent}",
|
|
3119
|
+
"borderBottomLeftRadius": "{system.radius.none}",
|
|
3120
|
+
"borderBottomRightRadius": "{system.radius.none}",
|
|
3121
|
+
"borderBottomWidth": "{system.border.none}",
|
|
3028
3122
|
"borderColor": "{palette.color.greyShuttle}",
|
|
3123
|
+
"borderLeftWidth": "{system.border.none}",
|
|
3029
3124
|
"borderRadius": "{system.radius.round}",
|
|
3125
|
+
"borderRightWidth": "{system.border.none}",
|
|
3126
|
+
"borderTopLeftRadius": "{system.radius.none}",
|
|
3127
|
+
"borderTopRightRadius": "{system.radius.none}",
|
|
3128
|
+
"borderTopWidth": "{system.border.none}",
|
|
3030
3129
|
"borderWidth": "{palette.border.border1}",
|
|
3031
3130
|
"icon": "{system.icon.none}",
|
|
3032
3131
|
"iconColor": "{palette.color.greyShuttle}",
|
|
@@ -3036,7 +3135,7 @@
|
|
|
3036
3135
|
"iconTranslateY": "{system.size.zero}",
|
|
3037
3136
|
"outerBorderColor": "{system.color.transparent}",
|
|
3038
3137
|
"outerBorderGap": "{system.size.zero}",
|
|
3039
|
-
"outerBorderWidth": "{system.border.
|
|
3138
|
+
"outerBorderWidth": "{system.border.none}",
|
|
3040
3139
|
"padding": "{palette.size.size4}",
|
|
3041
3140
|
"shadow": "{system.shadow.none}"
|
|
3042
3141
|
}
|
|
@@ -3810,10 +3909,12 @@
|
|
|
3810
3909
|
"focus": true
|
|
3811
3910
|
},
|
|
3812
3911
|
"tokens": {
|
|
3813
|
-
"backgroundColor": "{palette.color.
|
|
3912
|
+
"backgroundColor": "{palette.color.greyAthens}",
|
|
3814
3913
|
"borderColor": "{palette.color.purpleTelus}",
|
|
3815
|
-
"borderWidth": "{palette.border.
|
|
3816
|
-
"color": "{palette.color.purpleTelus}"
|
|
3914
|
+
"borderWidth": "{palette.border.border2}",
|
|
3915
|
+
"color": "{palette.color.purpleTelus}",
|
|
3916
|
+
"outerBorderColor": "{palette.color.purpleTelus}",
|
|
3917
|
+
"outerBorderWidth": "{palette.border.border2}"
|
|
3817
3918
|
}
|
|
3818
3919
|
},
|
|
3819
3920
|
{
|
|
@@ -3853,7 +3954,7 @@
|
|
|
3853
3954
|
"viewport": ["xs", "sm", "md"]
|
|
3854
3955
|
},
|
|
3855
3956
|
"tokens": {
|
|
3856
|
-
"textAlign": "{system.flexJustifyContent.
|
|
3957
|
+
"textAlign": "{system.flexJustifyContent.spaceBetween}",
|
|
3857
3958
|
"width": "{palette.size.size288}"
|
|
3858
3959
|
}
|
|
3859
3960
|
},
|
|
@@ -4537,7 +4638,8 @@
|
|
|
4537
4638
|
"alternative": true
|
|
4538
4639
|
},
|
|
4539
4640
|
"tokens": {
|
|
4540
|
-
"
|
|
4641
|
+
"paddingBottom": "{palette.size.size8}",
|
|
4642
|
+
"paddingTop": "{palette.size.size8}"
|
|
4541
4643
|
}
|
|
4542
4644
|
},
|
|
4543
4645
|
{
|
|
@@ -4545,7 +4647,6 @@
|
|
|
4545
4647
|
"hover": true
|
|
4546
4648
|
},
|
|
4547
4649
|
"tokens": {
|
|
4548
|
-
"backgroundColor": "{palette.color.greyAthens}",
|
|
4549
4650
|
"inputBackgroundColor": "{palette.color.greyAthens}"
|
|
4550
4651
|
}
|
|
4551
4652
|
},
|
|
@@ -4554,8 +4655,8 @@
|
|
|
4554
4655
|
"disabled": true
|
|
4555
4656
|
},
|
|
4556
4657
|
"tokens": {
|
|
4557
|
-
"
|
|
4558
|
-
"
|
|
4658
|
+
"inputBackgroundColor": "{palette.color.greyAlabaster}",
|
|
4659
|
+
"textColor": "{palette.color.greyCloud}"
|
|
4559
4660
|
}
|
|
4560
4661
|
},
|
|
4561
4662
|
{
|
|
@@ -4563,7 +4664,7 @@
|
|
|
4563
4664
|
"pressed": true
|
|
4564
4665
|
},
|
|
4565
4666
|
"tokens": {
|
|
4566
|
-
"
|
|
4667
|
+
"inputBackgroundColor": "{palette.color.greyCloud}"
|
|
4567
4668
|
}
|
|
4568
4669
|
},
|
|
4569
4670
|
{
|
|
@@ -4572,22 +4673,180 @@
|
|
|
4572
4673
|
},
|
|
4573
4674
|
"tokens": {
|
|
4574
4675
|
"inputBorderColor": "{palette.color.greyShuttle}",
|
|
4575
|
-
"inputBorderWidth": "{palette.
|
|
4676
|
+
"inputBorderWidth": "{palette.border.border3}"
|
|
4576
4677
|
}
|
|
4577
4678
|
}
|
|
4578
4679
|
],
|
|
4579
4680
|
"tokens": {
|
|
4580
|
-
"
|
|
4581
|
-
"borderColor": "{palette.color.greyShuttle}",
|
|
4582
|
-
"iconColor": "{palette.color.greyShuttle}",
|
|
4583
|
-
"iconSize": "{palette.size.size16}",
|
|
4681
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
4584
4682
|
"inputBackgroundColor": "{palette.color.white}",
|
|
4585
4683
|
"inputBorderColor": "{palette.color.greyShuttle}",
|
|
4586
|
-
"inputBorderWidth": "{palette.
|
|
4587
|
-
"
|
|
4684
|
+
"inputBorderWidth": "{palette.border.border1}",
|
|
4685
|
+
"inputWidth": "{palette.size.size64}",
|
|
4686
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
4687
|
+
"padding": "{palette.size.size12}",
|
|
4688
|
+
"paddingBottom": "{palette.size.size12}",
|
|
4689
|
+
"paddingLeft": "{palette.size.size12}",
|
|
4690
|
+
"paddingRight": "{palette.size.size12}",
|
|
4691
|
+
"paddingTop": "{palette.size.size12}",
|
|
4692
|
+
"textColor": "{palette.color.greyCharcoal}"
|
|
4693
|
+
}
|
|
4694
|
+
},
|
|
4695
|
+
"QuantitySelectorSideButton": {
|
|
4696
|
+
"appearances": {
|
|
4697
|
+
"alternative": {
|
|
4698
|
+
"type": "variant",
|
|
4699
|
+
"values": [true, false]
|
|
4700
|
+
},
|
|
4701
|
+
"decrease": {
|
|
4702
|
+
"type": "variant",
|
|
4703
|
+
"values": [true]
|
|
4704
|
+
},
|
|
4705
|
+
"disabled": {
|
|
4706
|
+
"type": "variant",
|
|
4707
|
+
"values": [true]
|
|
4708
|
+
},
|
|
4709
|
+
"focus": {
|
|
4710
|
+
"type": "variant",
|
|
4711
|
+
"values": [true]
|
|
4712
|
+
},
|
|
4713
|
+
"hover": {
|
|
4714
|
+
"type": "variant",
|
|
4715
|
+
"values": [true]
|
|
4716
|
+
},
|
|
4717
|
+
"increase": {
|
|
4718
|
+
"type": "variant",
|
|
4719
|
+
"values": [true]
|
|
4720
|
+
},
|
|
4721
|
+
"pressed": {
|
|
4722
|
+
"type": "variant",
|
|
4723
|
+
"values": [true]
|
|
4724
|
+
}
|
|
4725
|
+
},
|
|
4726
|
+
"rules": [
|
|
4727
|
+
{
|
|
4728
|
+
"if": {
|
|
4729
|
+
"hover": true
|
|
4730
|
+
},
|
|
4731
|
+
"tokens": {
|
|
4732
|
+
"backgroundColor": "{palette.color.greyAthens}"
|
|
4733
|
+
}
|
|
4734
|
+
},
|
|
4735
|
+
{
|
|
4736
|
+
"if": {
|
|
4737
|
+
"pressed": true
|
|
4738
|
+
},
|
|
4739
|
+
"tokens": {
|
|
4740
|
+
"backgroundColor": "{palette.color.greyCloud}",
|
|
4741
|
+
"iconColor": "{palette.color.greyShuttle}"
|
|
4742
|
+
}
|
|
4743
|
+
},
|
|
4744
|
+
{
|
|
4745
|
+
"if": {
|
|
4746
|
+
"decrease": true
|
|
4747
|
+
},
|
|
4748
|
+
"tokens": {
|
|
4749
|
+
"borderBottomLeftRadius": "{palette.radius.radius4}",
|
|
4750
|
+
"borderRightWidth": "{system.border.zero}",
|
|
4751
|
+
"borderTopLeftRadius": "{palette.radius.radius4}",
|
|
4752
|
+
"icon": "{palette.icon.Subtract}"
|
|
4753
|
+
}
|
|
4754
|
+
},
|
|
4755
|
+
{
|
|
4756
|
+
"if": {
|
|
4757
|
+
"increase": true
|
|
4758
|
+
},
|
|
4759
|
+
"tokens": {
|
|
4760
|
+
"borderBottomRightRadius": "{palette.radius.radius4}",
|
|
4761
|
+
"borderLeftWidth": "{system.border.zero}",
|
|
4762
|
+
"borderTopRightRadius": "{palette.radius.radius4}",
|
|
4763
|
+
"icon": "{palette.icon.Add}"
|
|
4764
|
+
}
|
|
4765
|
+
},
|
|
4766
|
+
{
|
|
4767
|
+
"if": {
|
|
4768
|
+
"focus": true,
|
|
4769
|
+
"increase": true
|
|
4770
|
+
},
|
|
4771
|
+
"tokens": {
|
|
4772
|
+
"borderBottomWidth": "{palette.border.border3}",
|
|
4773
|
+
"borderLeftWidth": "{palette.border.border2}",
|
|
4774
|
+
"borderRightWidth": "{palette.border.border3}",
|
|
4775
|
+
"borderTopWidth": "{palette.border.border3}"
|
|
4776
|
+
}
|
|
4777
|
+
},
|
|
4778
|
+
{
|
|
4779
|
+
"if": {
|
|
4780
|
+
"decrease": true,
|
|
4781
|
+
"focus": true
|
|
4782
|
+
},
|
|
4783
|
+
"tokens": {
|
|
4784
|
+
"borderBottomWidth": "{palette.border.border3}",
|
|
4785
|
+
"borderLeftWidth": "{palette.border.border3}",
|
|
4786
|
+
"borderRightWidth": "{palette.border.border2}",
|
|
4787
|
+
"borderTopWidth": "{palette.border.border3}"
|
|
4788
|
+
}
|
|
4789
|
+
},
|
|
4790
|
+
{
|
|
4791
|
+
"if": {
|
|
4792
|
+
"disabled": true
|
|
4793
|
+
},
|
|
4794
|
+
"tokens": {
|
|
4795
|
+
"backgroundColor": "{palette.color.greyAlabaster}",
|
|
4796
|
+
"iconColor": "{palette.color.greyMystic}"
|
|
4797
|
+
}
|
|
4798
|
+
},
|
|
4799
|
+
{
|
|
4800
|
+
"if": {
|
|
4801
|
+
"alternative": true
|
|
4802
|
+
},
|
|
4803
|
+
"tokens": {
|
|
4804
|
+
"paddingBottom": "{palette.size.size12}",
|
|
4805
|
+
"paddingTop": "{palette.size.size12}"
|
|
4806
|
+
}
|
|
4807
|
+
},
|
|
4808
|
+
{
|
|
4809
|
+
"if": {
|
|
4810
|
+
"alternative": true,
|
|
4811
|
+
"increase": true
|
|
4812
|
+
},
|
|
4813
|
+
"tokens": {
|
|
4814
|
+
"borderBottomRightRadius": "{palette.radius.radius24}",
|
|
4815
|
+
"borderTopRightRadius": "{palette.radius.radius24}"
|
|
4816
|
+
}
|
|
4817
|
+
},
|
|
4818
|
+
{
|
|
4819
|
+
"if": {
|
|
4820
|
+
"alternative": true,
|
|
4821
|
+
"decrease": true
|
|
4822
|
+
},
|
|
4823
|
+
"tokens": {
|
|
4824
|
+
"borderBottomLeftRadius": "{palette.radius.radius24}",
|
|
4825
|
+
"borderTopLeftRadius": "{palette.radius.radius24}"
|
|
4826
|
+
}
|
|
4827
|
+
}
|
|
4828
|
+
],
|
|
4829
|
+
"tokens": {
|
|
4830
|
+
"backgroundColor": "{palette.color.white}",
|
|
4831
|
+
"borderBottomLeftRadius": "{system.radius.zero}",
|
|
4832
|
+
"borderBottomRightRadius": "{system.radius.zero}",
|
|
4833
|
+
"borderBottomWidth": "{palette.border.border1}",
|
|
4834
|
+
"borderColor": "{palette.color.greyShuttle}",
|
|
4835
|
+
"borderLeftWidth": "{palette.border.border1}",
|
|
4836
|
+
"borderRadius": "{system.radius.zero}",
|
|
4837
|
+
"borderRightWidth": "{palette.border.border1}",
|
|
4838
|
+
"borderTopLeftRadius": "{system.radius.zero}",
|
|
4839
|
+
"borderTopRightRadius": "{system.radius.zero}",
|
|
4840
|
+
"borderTopWidth": "{palette.border.border1}",
|
|
4841
|
+
"borderWidth": "{palette.border.border1}",
|
|
4842
|
+
"icon": "{system.icon.none}",
|
|
4843
|
+
"iconColor": "{palette.color.greyCharcoal}",
|
|
4844
|
+
"iconSize": "{palette.size.size16}",
|
|
4588
4845
|
"padding": "{palette.size.size16}",
|
|
4589
|
-
"
|
|
4590
|
-
"
|
|
4846
|
+
"paddingBottom": "{palette.size.size16}",
|
|
4847
|
+
"paddingLeft": "{palette.size.size16}",
|
|
4848
|
+
"paddingRight": "{palette.size.size16}",
|
|
4849
|
+
"paddingTop": "{palette.size.size16}"
|
|
4591
4850
|
}
|
|
4592
4851
|
},
|
|
4593
4852
|
"QuickLinks": {
|
|
@@ -5611,18 +5870,37 @@
|
|
|
5611
5870
|
}
|
|
5612
5871
|
},
|
|
5613
5872
|
"SkipLink": {
|
|
5614
|
-
"appearances": {
|
|
5615
|
-
|
|
5873
|
+
"appearances": {
|
|
5874
|
+
"focus": "{appearances.SkipLink.focus}",
|
|
5875
|
+
"pressed": "{appearances.SkipLink.pressed}"
|
|
5876
|
+
},
|
|
5877
|
+
"rules": [
|
|
5878
|
+
{
|
|
5879
|
+
"if": {
|
|
5880
|
+
"focus": true,
|
|
5881
|
+
"pressed": true
|
|
5882
|
+
},
|
|
5883
|
+
"tokens": {
|
|
5884
|
+
"color": "{palette.color.greenDarkFern}",
|
|
5885
|
+
"outlineColor": "{palette.color.greenDarkFern}"
|
|
5886
|
+
}
|
|
5887
|
+
}
|
|
5888
|
+
],
|
|
5616
5889
|
"tokens": {
|
|
5617
|
-
"backgroundColor": "{palette.color.
|
|
5618
|
-
"borderRadius": "{palette.radius.
|
|
5619
|
-
"color": "{palette.color.
|
|
5620
|
-
"
|
|
5621
|
-
"
|
|
5890
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
5891
|
+
"borderRadius": "{palette.radius.radius4}",
|
|
5892
|
+
"color": "{palette.color.greenAccessible}",
|
|
5893
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
5894
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5895
|
+
"fontWeight": "{palette.fontWeight.weight400}",
|
|
5896
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
5897
|
+
"outlineColor": "{palette.color.greenAccessible}",
|
|
5898
|
+
"outlineOffset": "{palette.border.none}",
|
|
5622
5899
|
"outlineStyle": "{system.borderStyle.solid}",
|
|
5623
|
-
"outlineWidth": "{palette.border.
|
|
5624
|
-
"paddingHorizontal": "{palette.size.
|
|
5625
|
-
"paddingVertical": "{palette.size.
|
|
5900
|
+
"outlineWidth": "{palette.border.border2}",
|
|
5901
|
+
"paddingHorizontal": "{palette.size.size2}",
|
|
5902
|
+
"paddingVertical": "{palette.size.size2}",
|
|
5903
|
+
"textLine": "{system.textLine.underline}"
|
|
5626
5904
|
}
|
|
5627
5905
|
},
|
|
5628
5906
|
"Spinner": {
|
|
@@ -5861,37 +6139,165 @@
|
|
|
5861
6139
|
"Table": {
|
|
5862
6140
|
"appearances": {
|
|
5863
6141
|
"spacing": {
|
|
6142
|
+
"description": "Adjusts the height of the table cell",
|
|
6143
|
+
"type": "variant",
|
|
6144
|
+
"values": ["compact", "default"]
|
|
6145
|
+
},
|
|
6146
|
+
"text": {
|
|
6147
|
+
"type": "variant",
|
|
6148
|
+
"values": ["small", "medium"]
|
|
6149
|
+
},
|
|
6150
|
+
"type": {
|
|
5864
6151
|
"type": "variant",
|
|
5865
|
-
"values": ["
|
|
6152
|
+
"values": ["subHeading", "rowHeading", "heading", "default"]
|
|
5866
6153
|
}
|
|
5867
6154
|
},
|
|
5868
6155
|
"rules": [
|
|
5869
6156
|
{
|
|
5870
6157
|
"if": {
|
|
5871
|
-
"spacing": "compact"
|
|
6158
|
+
"spacing": "compact",
|
|
6159
|
+
"type": "default"
|
|
6160
|
+
},
|
|
6161
|
+
"tokens": {
|
|
6162
|
+
"cellPaddingBottom": "{palette.size.size8}",
|
|
6163
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
6164
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
6165
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
6166
|
+
}
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
"if": {
|
|
6170
|
+
"spacing": "compact",
|
|
6171
|
+
"type": "rowHeading"
|
|
6172
|
+
},
|
|
6173
|
+
"tokens": {
|
|
6174
|
+
"cellPaddingBottom": "{palette.size.size8}",
|
|
6175
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
6176
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6177
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
6178
|
+
"fontWeight": "{palette.fontWeight.weight700}",
|
|
6179
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
6180
|
+
}
|
|
6181
|
+
},
|
|
6182
|
+
{
|
|
6183
|
+
"if": {
|
|
6184
|
+
"spacing": "compact",
|
|
6185
|
+
"text": "small",
|
|
6186
|
+
"type": "subHeading"
|
|
5872
6187
|
},
|
|
5873
6188
|
"tokens": {
|
|
6189
|
+
"cellBackground": "{palette.color.greyAlabaster}",
|
|
5874
6190
|
"cellPaddingBottom": "{palette.size.size8}",
|
|
5875
|
-
"cellPaddingTop": "{palette.size.size8}"
|
|
6191
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
6192
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6193
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
6194
|
+
"fontWeight": "{palette.fontWeight.weight500}",
|
|
6195
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
6196
|
+
}
|
|
6197
|
+
},
|
|
6198
|
+
{
|
|
6199
|
+
"if": {
|
|
6200
|
+
"type": "heading"
|
|
6201
|
+
},
|
|
6202
|
+
"tokens": {
|
|
6203
|
+
"cellBackground": "{palette.color.greyAthens}",
|
|
6204
|
+
"cellBoxShadowColor": "{palette.color.greyCloud}",
|
|
6205
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6206
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
6207
|
+
"fontWeight": "{palette.fontWeight.weight500}"
|
|
6208
|
+
}
|
|
6209
|
+
},
|
|
6210
|
+
{
|
|
6211
|
+
"if": {
|
|
6212
|
+
"spacing": "default",
|
|
6213
|
+
"type": "subHeading"
|
|
6214
|
+
},
|
|
6215
|
+
"tokens": {
|
|
6216
|
+
"cellBackground": "{palette.color.greyAlabaster}",
|
|
6217
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6218
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
6219
|
+
"fontWeight": "{palette.fontWeight.weight500}",
|
|
6220
|
+
"lineHeight": "{palette.lineHeight.ratio9to7}"
|
|
6221
|
+
}
|
|
6222
|
+
},
|
|
6223
|
+
{
|
|
6224
|
+
"if": {
|
|
6225
|
+
"spacing": "compact",
|
|
6226
|
+
"text": "medium",
|
|
6227
|
+
"type": "subHeading"
|
|
6228
|
+
},
|
|
6229
|
+
"tokens": {
|
|
6230
|
+
"cellBackground": "{palette.color.greyAlabaster}",
|
|
6231
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6232
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
6233
|
+
"fontWeight": "{palette.fontWeight.weight500}",
|
|
6234
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
6235
|
+
}
|
|
6236
|
+
},
|
|
6237
|
+
{
|
|
6238
|
+
"if": {
|
|
6239
|
+
"spacing": "default",
|
|
6240
|
+
"type": "rowHeading"
|
|
6241
|
+
},
|
|
6242
|
+
"tokens": {
|
|
6243
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6244
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
6245
|
+
"fontWeight": "{palette.fontWeight.weight700}"
|
|
6246
|
+
}
|
|
6247
|
+
},
|
|
6248
|
+
{
|
|
6249
|
+
"if": {
|
|
6250
|
+
"spacing": "default",
|
|
6251
|
+
"text": "small",
|
|
6252
|
+
"type": "default"
|
|
6253
|
+
},
|
|
6254
|
+
"tokens": {
|
|
6255
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6256
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
6257
|
+
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6258
|
+
"lineHeight": "{palette.lineHeight.ratio10to7}"
|
|
6259
|
+
}
|
|
6260
|
+
},
|
|
6261
|
+
{
|
|
6262
|
+
"if": {
|
|
6263
|
+
"spacing": "compact",
|
|
6264
|
+
"text": "small",
|
|
6265
|
+
"type": "default"
|
|
6266
|
+
},
|
|
6267
|
+
"tokens": {
|
|
6268
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6269
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
6270
|
+
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6271
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
6272
|
+
}
|
|
6273
|
+
},
|
|
6274
|
+
{
|
|
6275
|
+
"if": {
|
|
6276
|
+
"text": "small",
|
|
6277
|
+
"type": "rowHeading"
|
|
6278
|
+
},
|
|
6279
|
+
"tokens": {
|
|
6280
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6281
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
6282
|
+
"fontWeight": "{palette.fontWeight.weight700}",
|
|
6283
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
5876
6284
|
}
|
|
5877
6285
|
}
|
|
5878
6286
|
],
|
|
5879
6287
|
"tokens": {
|
|
5880
|
-
"cellBackground": "{palette.color.
|
|
6288
|
+
"cellBackground": "{palette.color.transparent}",
|
|
5881
6289
|
"cellBoxShadowColor": "{palette.color.greyMystic}",
|
|
5882
|
-
"cellHeadingBackground": "{palette.color.greyAthens}",
|
|
5883
|
-
"cellHeadingBoxShadowColor": "{palette.color.greyCloud}",
|
|
5884
6290
|
"cellMinWidth": "{palette.size.size0}",
|
|
5885
6291
|
"cellPaddingBottom": "{palette.size.size16}",
|
|
5886
6292
|
"cellPaddingLeft": "{palette.size.size16}",
|
|
5887
6293
|
"cellPaddingRight": "{palette.size.size16}",
|
|
5888
6294
|
"cellPaddingTop": "{palette.size.size16}",
|
|
5889
|
-
"cellRowHeadingBackground": "{palette.color.white}",
|
|
5890
6295
|
"cellStickyShadow": "{palette.shadow.elevation1}",
|
|
5891
|
-
"cellSubheadingBackground": "{palette.color.greyAlabaster}",
|
|
5892
6296
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
5893
6297
|
"fontSize": "{palette.fontSize.size16}",
|
|
5894
6298
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6299
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
6300
|
+
"stickyBackgroundColor": "{palette.color.white}",
|
|
5895
6301
|
"tablePaddingBottom": "{palette.size.size24}"
|
|
5896
6302
|
}
|
|
5897
6303
|
},
|
|
@@ -6233,9 +6639,20 @@
|
|
|
6233
6639
|
},
|
|
6234
6640
|
"TermsAndConditions": {
|
|
6235
6641
|
"appearances": {
|
|
6236
|
-
"expanded": "{appearances.TermsAndConditions.expanded}"
|
|
6642
|
+
"expanded": "{appearances.TermsAndConditions.expanded}",
|
|
6643
|
+
"viewport": "{appearances.system.viewport}"
|
|
6237
6644
|
},
|
|
6238
6645
|
"rules": [
|
|
6646
|
+
{
|
|
6647
|
+
"if": {
|
|
6648
|
+
"viewport": ["xs", "sm"]
|
|
6649
|
+
},
|
|
6650
|
+
"tokens": {
|
|
6651
|
+
"expandContentPaddingRight": "{palette.size.size24}",
|
|
6652
|
+
"listMarginLeft": "{palette.size.size6}",
|
|
6653
|
+
"titlePaddingLeft": "{palette.size.size6}"
|
|
6654
|
+
}
|
|
6655
|
+
},
|
|
6239
6656
|
{
|
|
6240
6657
|
"if": {
|
|
6241
6658
|
"expanded": true
|
|
@@ -6246,26 +6663,35 @@
|
|
|
6246
6663
|
}
|
|
6247
6664
|
],
|
|
6248
6665
|
"tokens": {
|
|
6666
|
+
"contentBorderColor": "{system.color.transparent}",
|
|
6667
|
+
"contentMarginBottom": "{palette.size.size0}",
|
|
6249
6668
|
"contentPaddingBottom": "{palette.size.size8}",
|
|
6250
6669
|
"contentPaddingLeft": "{palette.size.size16}",
|
|
6670
|
+
"dividerColor": "{palette.color.greyCloud}",
|
|
6251
6671
|
"expandBaseBorderWidth": "{palette.border.none}",
|
|
6252
6672
|
"expandContentPaddingBottom": "{palette.size.size16}",
|
|
6253
6673
|
"expandContentPaddingLeft": "{palette.size.size16}",
|
|
6254
6674
|
"expandContentPaddingRight": "{palette.size.size16}",
|
|
6255
6675
|
"expandContentPaddingTop": "{palette.size.size16}",
|
|
6256
6676
|
"expandIconContainerAlignItems": "{system.flexAlign.center}",
|
|
6257
|
-
"expandIconContainerBorder": "{palette.border.
|
|
6258
|
-
"expandIconContainerBorderColor": "{palette.color.
|
|
6677
|
+
"expandIconContainerBorder": "{palette.border.none}",
|
|
6678
|
+
"expandIconContainerBorderColor": "{palette.color.transparent}",
|
|
6259
6679
|
"expandIconContainerHeight": "{palette.size.size32}",
|
|
6260
6680
|
"expandIconContainerJustifyContent": "{system.flexJustifyContent.center}",
|
|
6261
6681
|
"expandIconContainerMarginX": "{palette.size.size0}",
|
|
6262
6682
|
"expandIconContainerMarginY": "{palette.size.size12}",
|
|
6263
6683
|
"expandIconContainerWidth": "{palette.size.size32}",
|
|
6684
|
+
"expandTitleBorder": "{palette.border.none}",
|
|
6685
|
+
"expandTitleBorderColor": "{palette.color.transparent}",
|
|
6264
6686
|
"expandTitleColor": "{palette.color.greyThunder}",
|
|
6687
|
+
"expandTitleFontName": "{palette.fontName.HelveticaNow}",
|
|
6265
6688
|
"expandTitleFontSize": "{palette.size.size16}",
|
|
6689
|
+
"expandTitleFontWeight": "{palette.fontWeight.weight500}",
|
|
6266
6690
|
"expandTitleLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
6267
6691
|
"expandTitleMarginX": "{palette.size.size4}",
|
|
6268
6692
|
"expandTitleMarginY": "{palette.size.size0}",
|
|
6693
|
+
"expandTitlePaddingLeft": "{palette.size.size0}",
|
|
6694
|
+
"expandTitleUnderline": "{system.textLine.none}",
|
|
6269
6695
|
"icon": "{palette.icon.CaretDown}",
|
|
6270
6696
|
"listColor": "{palette.color.greyCharcoal}",
|
|
6271
6697
|
"listFontName": "{palette.fontName.HelveticaNow}",
|
|
@@ -6280,22 +6706,53 @@
|
|
|
6280
6706
|
"titleColor": "{palette.color.greyCharcoal}",
|
|
6281
6707
|
"titleFontSize": "{palette.fontSize.size14}",
|
|
6282
6708
|
"titleLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
6283
|
-
"titlePaddingLeft": "{palette.size.
|
|
6284
|
-
"unorderedPadding": "{palette.size.
|
|
6709
|
+
"titlePaddingLeft": "{palette.size.size32}",
|
|
6710
|
+
"unorderedPadding": "{palette.size.size12}"
|
|
6285
6711
|
}
|
|
6286
6712
|
},
|
|
6287
6713
|
"Testimonial": {
|
|
6288
|
-
"appearances": {
|
|
6289
|
-
|
|
6714
|
+
"appearances": {
|
|
6715
|
+
"viewport": "{appearances.system.viewport}"
|
|
6716
|
+
},
|
|
6717
|
+
"rules": [
|
|
6718
|
+
{
|
|
6719
|
+
"if": {
|
|
6720
|
+
"viewport": ["md", "lg", "xl"]
|
|
6721
|
+
},
|
|
6722
|
+
"tokens": {
|
|
6723
|
+
"testimonialFontNameHeading": "{palette.fontName.HelveticaNow}",
|
|
6724
|
+
"testimonialFontSizeHeading": "{palette.fontSize.size28}",
|
|
6725
|
+
"testimonialFontWeightHeading": "{palette.fontWeight.weight400}",
|
|
6726
|
+
"testimonialLineHeightHeading": "{palette.lineHeight.ratio9to7}"
|
|
6727
|
+
}
|
|
6728
|
+
}
|
|
6729
|
+
],
|
|
6290
6730
|
"tokens": {
|
|
6731
|
+
"additionalFontName": "{palette.fontName.HelveticaNow}",
|
|
6732
|
+
"additionalFontSize": "{palette.fontSize.size14}",
|
|
6733
|
+
"additionalFontWeight": "{palette.fontWeight.weight400}",
|
|
6734
|
+
"additionalLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
6735
|
+
"authorFontName": "{palette.fontName.HelveticaNow}",
|
|
6736
|
+
"authorFontSize": "{palette.fontSize.size16}",
|
|
6737
|
+
"authorFontWeight": "{palette.fontWeight.weight700}",
|
|
6738
|
+
"authorLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
6291
6739
|
"dividerBackgroundColor": "{palette.color.greyCloud}",
|
|
6292
6740
|
"dividerBorder": "{palette.border.border1}",
|
|
6293
6741
|
"figcaptionGap": "{palette.size.size12}",
|
|
6294
6742
|
"icon": "{palette.icon.QuoteLeft}",
|
|
6295
6743
|
"iconColor": "{palette.color.greyCloud}",
|
|
6744
|
+
"iconFr": "{palette.icon.QuoteLeftArrow}",
|
|
6296
6745
|
"imageSize": "{palette.size.size48}",
|
|
6297
6746
|
"quoteContainerGap": "{palette.size.size4}",
|
|
6298
6747
|
"testimonialContainerGap": "{palette.size.size12}",
|
|
6748
|
+
"testimonialFontNameHeading": "{palette.fontName.HelveticaNow}",
|
|
6749
|
+
"testimonialFontNameLarge": "{palette.fontName.HelveticaNow}",
|
|
6750
|
+
"testimonialFontSizeHeading": "{palette.fontSize.size24}",
|
|
6751
|
+
"testimonialFontSizeLarge": "{palette.fontSize.size20}",
|
|
6752
|
+
"testimonialFontWeightHeading": "{palette.fontWeight.weight400}",
|
|
6753
|
+
"testimonialFontWeightLarge": "{palette.fontWeight.weight400}",
|
|
6754
|
+
"testimonialLineHeightHeading": "{palette.lineHeight.ratio4to3}",
|
|
6755
|
+
"testimonialLineHeightLarge": "{palette.lineHeight.ratio8to5}",
|
|
6299
6756
|
"textColor": "{palette.color.greyCharcoal}"
|
|
6300
6757
|
}
|
|
6301
6758
|
},
|
|
@@ -6757,6 +7214,7 @@
|
|
|
6757
7214
|
}
|
|
6758
7215
|
],
|
|
6759
7216
|
"tokens": {
|
|
7217
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
6760
7218
|
"borderRadius": "{palette.radius.pill32}",
|
|
6761
7219
|
"icon": "{palette.icon.Question}",
|
|
6762
7220
|
"iconColor": "{palette.color.greyThunder}",
|
|
@@ -6883,7 +7341,8 @@
|
|
|
6883
7341
|
"fontSize": "{palette.fontSize.size40}",
|
|
6884
7342
|
"fontWeight": "{palette.fontWeight.weight300}",
|
|
6885
7343
|
"letterSpacing": "{palette.letterSpacing.medium}",
|
|
6886
|
-
"lineHeight": "{palette.lineHeight.ratio6to5}"
|
|
7344
|
+
"lineHeight": "{palette.lineHeight.ratio6to5}",
|
|
7345
|
+
"superScriptFontSize": "{palette.fontSize.size24}"
|
|
6887
7346
|
}
|
|
6888
7347
|
},
|
|
6889
7348
|
{
|
|
@@ -6893,7 +7352,8 @@
|
|
|
6893
7352
|
},
|
|
6894
7353
|
"tokens": {
|
|
6895
7354
|
"fontSize": "{palette.fontSize.size64}",
|
|
6896
|
-
"lineHeight": "{palette.lineHeight.ratio9to8}"
|
|
7355
|
+
"lineHeight": "{palette.lineHeight.ratio9to8}",
|
|
7356
|
+
"superScriptFontSize": "{palette.fontSize.size32}"
|
|
6897
7357
|
}
|
|
6898
7358
|
},
|
|
6899
7359
|
{
|
|
@@ -6905,7 +7365,8 @@
|
|
|
6905
7365
|
"fontSize": "{palette.fontSize.size36}",
|
|
6906
7366
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6907
7367
|
"letterSpacing": "{palette.letterSpacing.medium}",
|
|
6908
|
-
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
7368
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}",
|
|
7369
|
+
"superScriptFontSize": "{palette.fontSize.size24}"
|
|
6909
7370
|
}
|
|
6910
7371
|
},
|
|
6911
7372
|
{
|
|
@@ -6918,7 +7379,8 @@
|
|
|
6918
7379
|
"fontSize": "{palette.fontSize.size56}",
|
|
6919
7380
|
"fontWeight": "{palette.fontWeight.weight300}",
|
|
6920
7381
|
"letterSpacing": "{palette.letterSpacing.condensed}",
|
|
6921
|
-
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
7382
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}",
|
|
7383
|
+
"superScriptFontSize": "{palette.fontSize.size32}"
|
|
6922
7384
|
}
|
|
6923
7385
|
},
|
|
6924
7386
|
{
|
|
@@ -6928,7 +7390,8 @@
|
|
|
6928
7390
|
"tokens": {
|
|
6929
7391
|
"fontSize": "{palette.fontSize.size28}",
|
|
6930
7392
|
"letterSpacing": "{palette.letterSpacing.loose}",
|
|
6931
|
-
"lineHeight": "{palette.lineHeight.ratio9to7}"
|
|
7393
|
+
"lineHeight": "{palette.lineHeight.ratio9to7}",
|
|
7394
|
+
"superScriptFontSize": "{palette.fontSize.size20}"
|
|
6932
7395
|
}
|
|
6933
7396
|
},
|
|
6934
7397
|
{
|
|
@@ -6941,7 +7404,8 @@
|
|
|
6941
7404
|
"fontSize": "{palette.fontSize.size40}",
|
|
6942
7405
|
"fontWeight": "{palette.fontWeight.weight300}",
|
|
6943
7406
|
"letterSpacing": "{palette.letterSpacing.medium}",
|
|
6944
|
-
"lineHeight": "{palette.lineHeight.ratio6to5}"
|
|
7407
|
+
"lineHeight": "{palette.lineHeight.ratio6to5}",
|
|
7408
|
+
"superScriptFontSize": "{palette.fontSize.size24}"
|
|
6945
7409
|
}
|
|
6946
7410
|
},
|
|
6947
7411
|
{
|
|
@@ -6952,7 +7416,8 @@
|
|
|
6952
7416
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6953
7417
|
"fontSize": "{palette.fontSize.size24}",
|
|
6954
7418
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6955
|
-
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
7419
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}",
|
|
7420
|
+
"superScriptFontSize": "{palette.fontSize.size16}"
|
|
6956
7421
|
}
|
|
6957
7422
|
},
|
|
6958
7423
|
{
|
|
@@ -6963,7 +7428,8 @@
|
|
|
6963
7428
|
"tokens": {
|
|
6964
7429
|
"fontSize": "{palette.fontSize.size28}",
|
|
6965
7430
|
"letterSpacing": "{palette.letterSpacing.loose}",
|
|
6966
|
-
"lineHeight": "{palette.lineHeight.ratio9to7}"
|
|
7431
|
+
"lineHeight": "{palette.lineHeight.ratio9to7}",
|
|
7432
|
+
"superScriptFontSize": "{palette.fontSize.size20}"
|
|
6967
7433
|
}
|
|
6968
7434
|
},
|
|
6969
7435
|
{
|
|
@@ -6974,7 +7440,8 @@
|
|
|
6974
7440
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6975
7441
|
"fontSize": "{palette.fontSize.size20}",
|
|
6976
7442
|
"fontWeight": "{palette.fontWeight.weight500}",
|
|
6977
|
-
"lineHeight": "{palette.lineHeight.ratio7to5}"
|
|
7443
|
+
"lineHeight": "{palette.lineHeight.ratio7to5}",
|
|
7444
|
+
"superScriptFontSize": "{palette.fontSize.size16}"
|
|
6978
7445
|
}
|
|
6979
7446
|
},
|
|
6980
7447
|
{
|
|
@@ -6995,7 +7462,8 @@
|
|
|
6995
7462
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
6996
7463
|
"fontSize": "{palette.fontSize.size16}",
|
|
6997
7464
|
"fontWeight": "{palette.fontWeight.weight500}",
|
|
6998
|
-
"lineHeight": "{palette.lineHeight.ratio3to2}"
|
|
7465
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
7466
|
+
"superScriptFontSize": "{palette.fontSize.size16}"
|
|
6999
7467
|
}
|
|
7000
7468
|
},
|
|
7001
7469
|
{
|
|
@@ -7009,6 +7477,14 @@
|
|
|
7009
7477
|
"lineHeight": "{palette.lineHeight.ratio9to7}"
|
|
7010
7478
|
}
|
|
7011
7479
|
},
|
|
7480
|
+
{
|
|
7481
|
+
"if": {
|
|
7482
|
+
"size": ["h5", "h6"]
|
|
7483
|
+
},
|
|
7484
|
+
"tokens": {
|
|
7485
|
+
"superScriptFontSize": "{palette.fontSize.size12}"
|
|
7486
|
+
}
|
|
7487
|
+
},
|
|
7012
7488
|
{
|
|
7013
7489
|
"if": {
|
|
7014
7490
|
"size": "h6"
|
|
@@ -7026,7 +7502,8 @@
|
|
|
7026
7502
|
},
|
|
7027
7503
|
"tokens": {
|
|
7028
7504
|
"fontSize": "{palette.fontSize.size20}",
|
|
7029
|
-
"lineHeight": "{palette.lineHeight.ratio8to5}"
|
|
7505
|
+
"lineHeight": "{palette.lineHeight.ratio8to5}",
|
|
7506
|
+
"superScriptFontSize": "{palette.fontSize.size16}"
|
|
7030
7507
|
}
|
|
7031
7508
|
},
|
|
7032
7509
|
{
|
|
@@ -7054,7 +7531,8 @@
|
|
|
7054
7531
|
},
|
|
7055
7532
|
"tokens": {
|
|
7056
7533
|
"fontSize": "{palette.fontSize.size14}",
|
|
7057
|
-
"lineHeight": "{palette.lineHeight.ratio10to7}"
|
|
7534
|
+
"lineHeight": "{palette.lineHeight.ratio10to7}",
|
|
7535
|
+
"superScriptFontSize": "{palette.fontSize.size12}"
|
|
7058
7536
|
}
|
|
7059
7537
|
},
|
|
7060
7538
|
{
|
|
@@ -7074,7 +7552,8 @@
|
|
|
7074
7552
|
"fontName": "{palette.fontName.HelveticaNow}",
|
|
7075
7553
|
"fontSize": "{palette.fontSize.size12}",
|
|
7076
7554
|
"fontWeight": "{palette.fontWeight.weight500}",
|
|
7077
|
-
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
7555
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}",
|
|
7556
|
+
"superScriptFontSize": "{palette.fontSize.size12}"
|
|
7078
7557
|
}
|
|
7079
7558
|
},
|
|
7080
7559
|
{
|
|
@@ -7334,6 +7813,7 @@
|
|
|
7334
7813
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
7335
7814
|
"letterSpacing": "{system.letterSpacing.none}",
|
|
7336
7815
|
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
7816
|
+
"superScriptFontSize": "{palette.fontSize.size16}",
|
|
7337
7817
|
"textTransform": "{system.textTransform.none}"
|
|
7338
7818
|
}
|
|
7339
7819
|
},
|
|
@@ -7434,12 +7914,59 @@
|
|
|
7434
7914
|
}
|
|
7435
7915
|
},
|
|
7436
7916
|
"VideoPickerThumbnail": {
|
|
7437
|
-
"appearances": {
|
|
7438
|
-
|
|
7917
|
+
"appearances": {
|
|
7918
|
+
"focus": "{appearances.VideoPickerThumbnail.focus}",
|
|
7919
|
+
"hover": "{appearances.VideoPickerThumbnail.hover}",
|
|
7920
|
+
"pressed": "{appearances.VideoPickerThumbnail.pressed}",
|
|
7921
|
+
"selected": "{appearances.VideoPickerThumbnail.selected}"
|
|
7922
|
+
},
|
|
7923
|
+
"rules": [
|
|
7924
|
+
{
|
|
7925
|
+
"if": {
|
|
7926
|
+
"focus": true
|
|
7927
|
+
},
|
|
7928
|
+
"tokens": {
|
|
7929
|
+
"borderColor": "{palette.color.greyCloud}",
|
|
7930
|
+
"outerBorderColor": "{palette.color.greyCloud}"
|
|
7931
|
+
}
|
|
7932
|
+
},
|
|
7933
|
+
{
|
|
7934
|
+
"if": {
|
|
7935
|
+
"hover": true
|
|
7936
|
+
},
|
|
7937
|
+
"tokens": {
|
|
7938
|
+
"borderColor": "{palette.color.greyMystic}",
|
|
7939
|
+
"borderWidth": "{palette.border.border3}"
|
|
7940
|
+
}
|
|
7941
|
+
},
|
|
7942
|
+
{
|
|
7943
|
+
"if": {
|
|
7944
|
+
"pressed": true
|
|
7945
|
+
},
|
|
7946
|
+
"tokens": {
|
|
7947
|
+
"borderColor": "{palette.color.greyShuttle}",
|
|
7948
|
+
"borderWidth": "{palette.border.border3}"
|
|
7949
|
+
}
|
|
7950
|
+
},
|
|
7951
|
+
{
|
|
7952
|
+
"if": {
|
|
7953
|
+
"selected": true
|
|
7954
|
+
},
|
|
7955
|
+
"tokens": {
|
|
7956
|
+
"borderColor": "{palette.color.purpleTelus}",
|
|
7957
|
+
"borderWidth": "{palette.border.border2}",
|
|
7958
|
+
"titleColor": "{palette.color.purpleTelus}"
|
|
7959
|
+
}
|
|
7960
|
+
}
|
|
7961
|
+
],
|
|
7439
7962
|
"tokens": {
|
|
7440
|
-
"borderColor": "{palette.color.
|
|
7963
|
+
"borderColor": "{palette.color.greyMystic}",
|
|
7441
7964
|
"borderRadius": "{palette.radius.radius4}",
|
|
7442
7965
|
"borderWidth": "{palette.border.border2}",
|
|
7966
|
+
"outerBorderColor": "{palette.color.transparent}",
|
|
7967
|
+
"outerBorderGap": "{palette.size.size2}",
|
|
7968
|
+
"outerBorderRadius": "{palette.radius.radius8}",
|
|
7969
|
+
"outerBorderWidth": "{palette.border.border2}",
|
|
7443
7970
|
"pressableBorderTopColor": "{palette.color.greyMystic}",
|
|
7444
7971
|
"pressableBorderTopWidth": "{palette.border.border1}",
|
|
7445
7972
|
"pressablePaddingBottom": "{palette.size.size16}",
|
|
@@ -7447,7 +7974,7 @@
|
|
|
7447
7974
|
"pressablePaddingVertical": "{palette.size.size16}",
|
|
7448
7975
|
"splashButtonRadius": "{palette.radius.radius4}",
|
|
7449
7976
|
"subTitleColor": "{palette.color.greyShuttle}",
|
|
7450
|
-
"titleColor": "{palette.color.
|
|
7977
|
+
"titleColor": "{palette.color.greyCharcoal}"
|
|
7451
7978
|
}
|
|
7452
7979
|
},
|
|
7453
7980
|
"VideoProgressBar": {
|