@telus-uds/theme-allium 3.17.0 → 3.19.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 +1218 -872
- package/build/android/theme.json +205 -1
- package/build/ios/schema.json +1218 -872
- package/build/ios/theme.json +205 -1
- package/build/rn/schema.json +1218 -872
- package/build/rn/theme.js +111 -2
- package/package.json +5 -5
- package/theme.json +147 -1
package/build/android/theme.json
CHANGED
|
@@ -3787,6 +3787,93 @@
|
|
|
3787
3787
|
"paddingTop": 12
|
|
3788
3788
|
}
|
|
3789
3789
|
},
|
|
3790
|
+
"OrderedList": {
|
|
3791
|
+
"appearances": {
|
|
3792
|
+
"compact": {
|
|
3793
|
+
"description": "When true it will reduce the line height of the list item.",
|
|
3794
|
+
"type": "variant",
|
|
3795
|
+
"values": [true]
|
|
3796
|
+
},
|
|
3797
|
+
"size": {
|
|
3798
|
+
"description": "Indicates list item text size.",
|
|
3799
|
+
"type": "variant",
|
|
3800
|
+
"values": ["large", "medium", "small"]
|
|
3801
|
+
}
|
|
3802
|
+
},
|
|
3803
|
+
"rules": [
|
|
3804
|
+
{
|
|
3805
|
+
"if": {
|
|
3806
|
+
"size": "large"
|
|
3807
|
+
},
|
|
3808
|
+
"tokens": {
|
|
3809
|
+
"itemFontSize": 20,
|
|
3810
|
+
"itemLineHeight": 1.6
|
|
3811
|
+
}
|
|
3812
|
+
},
|
|
3813
|
+
{
|
|
3814
|
+
"if": {
|
|
3815
|
+
"size": "medium"
|
|
3816
|
+
},
|
|
3817
|
+
"tokens": {}
|
|
3818
|
+
},
|
|
3819
|
+
{
|
|
3820
|
+
"if": {
|
|
3821
|
+
"size": "small"
|
|
3822
|
+
},
|
|
3823
|
+
"tokens": {
|
|
3824
|
+
"itemFontSize": 14,
|
|
3825
|
+
"itemLineHeight": 1.42857142857
|
|
3826
|
+
}
|
|
3827
|
+
},
|
|
3828
|
+
{
|
|
3829
|
+
"if": {
|
|
3830
|
+
"compact": true
|
|
3831
|
+
},
|
|
3832
|
+
"tokens": {
|
|
3833
|
+
"itemLineHeight": 1.25
|
|
3834
|
+
}
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
"if": {
|
|
3838
|
+
"compact": true,
|
|
3839
|
+
"size": "small"
|
|
3840
|
+
},
|
|
3841
|
+
"tokens": {
|
|
3842
|
+
"itemLineHeight": 1.14285714286
|
|
3843
|
+
}
|
|
3844
|
+
},
|
|
3845
|
+
{
|
|
3846
|
+
"if": {
|
|
3847
|
+
"compact": true,
|
|
3848
|
+
"size": "large"
|
|
3849
|
+
},
|
|
3850
|
+
"tokens": {
|
|
3851
|
+
"itemLineHeight": 1.2
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
],
|
|
3855
|
+
"tokens": {
|
|
3856
|
+
"headerFontName": "HelveticaNow",
|
|
3857
|
+
"headerFontWeight": 700,
|
|
3858
|
+
"interItemMargin": 8,
|
|
3859
|
+
"itemBulletContainerWidth": 16,
|
|
3860
|
+
"itemBulletHeight": 4,
|
|
3861
|
+
"itemBulletWidth": 4,
|
|
3862
|
+
"itemColor": {
|
|
3863
|
+
"red": 0.2549,
|
|
3864
|
+
"green": 0.27059,
|
|
3865
|
+
"blue": 0.27843,
|
|
3866
|
+
"alpha": 1
|
|
3867
|
+
},
|
|
3868
|
+
"itemFontName": "HelveticaNow",
|
|
3869
|
+
"itemFontSize": 16,
|
|
3870
|
+
"itemFontWeight": 400,
|
|
3871
|
+
"itemLineHeight": 1.5,
|
|
3872
|
+
"itemMarginTop": 0,
|
|
3873
|
+
"itemPaddingTop": 0,
|
|
3874
|
+
"listGutter": 8
|
|
3875
|
+
}
|
|
3876
|
+
},
|
|
3790
3877
|
"Pagination": {
|
|
3791
3878
|
"appearances": {
|
|
3792
3879
|
"viewport": {
|
|
@@ -4866,6 +4953,100 @@
|
|
|
4866
4953
|
"space": 2
|
|
4867
4954
|
}
|
|
4868
4955
|
},
|
|
4956
|
+
"Ribbon": {
|
|
4957
|
+
"appearances": {
|
|
4958
|
+
"purpose": {
|
|
4959
|
+
"type": "variant",
|
|
4960
|
+
"values": ["offer", "default", "editorial"]
|
|
4961
|
+
}
|
|
4962
|
+
},
|
|
4963
|
+
"rules": [
|
|
4964
|
+
{
|
|
4965
|
+
"if": {
|
|
4966
|
+
"purpose": "editorial"
|
|
4967
|
+
},
|
|
4968
|
+
"tokens": {
|
|
4969
|
+
"backgroundColor": {
|
|
4970
|
+
"red": 0.40392,
|
|
4971
|
+
"green": 0.43137,
|
|
4972
|
+
"blue": 0.45098,
|
|
4973
|
+
"alpha": 1
|
|
4974
|
+
},
|
|
4975
|
+
"curveBackgroundColor": {
|
|
4976
|
+
"red": 0.17255,
|
|
4977
|
+
"green": 0.18039,
|
|
4978
|
+
"blue": 0.18824,
|
|
4979
|
+
"alpha": 1
|
|
4980
|
+
}
|
|
4981
|
+
}
|
|
4982
|
+
}
|
|
4983
|
+
],
|
|
4984
|
+
"tokens": {
|
|
4985
|
+
"backgroundColor": {
|
|
4986
|
+
"red": 0.38039,
|
|
4987
|
+
"green": 0.21961,
|
|
4988
|
+
"blue": 0.53725,
|
|
4989
|
+
"alpha": 1
|
|
4990
|
+
},
|
|
4991
|
+
"borderRadius": 4,
|
|
4992
|
+
"boxShadowColor": {
|
|
4993
|
+
"red": 0,
|
|
4994
|
+
"green": 0,
|
|
4995
|
+
"blue": 0,
|
|
4996
|
+
"alpha": 0.1
|
|
4997
|
+
},
|
|
4998
|
+
"boxShadowPaddingBottom": 2,
|
|
4999
|
+
"boxShadowPaddingLeft": 0,
|
|
5000
|
+
"boxShadowPaddingRight": 2,
|
|
5001
|
+
"boxShadowPaddingTop": 0,
|
|
5002
|
+
"curveAfterBackgroundColor": {
|
|
5003
|
+
"red": 0.38039,
|
|
5004
|
+
"green": 0.21961,
|
|
5005
|
+
"blue": 0.53725,
|
|
5006
|
+
"alpha": 1
|
|
5007
|
+
},
|
|
5008
|
+
"curveAfterHeight": 4,
|
|
5009
|
+
"curveAfterRadius": 8,
|
|
5010
|
+
"curveAfterWidth": 8,
|
|
5011
|
+
"curveBackgroundColor": {
|
|
5012
|
+
"red": 0.24706,
|
|
5013
|
+
"green": 0.16471,
|
|
5014
|
+
"blue": 0.32941,
|
|
5015
|
+
"alpha": 1
|
|
5016
|
+
},
|
|
5017
|
+
"curveHeight": 10,
|
|
5018
|
+
"curveMarginTop": 4,
|
|
5019
|
+
"curveWidth": 8,
|
|
5020
|
+
"gradient": {
|
|
5021
|
+
"type": "linear",
|
|
5022
|
+
"angle": 135,
|
|
5023
|
+
"stops": [
|
|
5024
|
+
{
|
|
5025
|
+
"stop": 0,
|
|
5026
|
+
"color": {
|
|
5027
|
+
"red": 0.29412,
|
|
5028
|
+
"green": 0.15686,
|
|
5029
|
+
"blue": 0.42745,
|
|
5030
|
+
"alpha": 1
|
|
5031
|
+
}
|
|
5032
|
+
},
|
|
5033
|
+
{
|
|
5034
|
+
"stop": 1,
|
|
5035
|
+
"color": {
|
|
5036
|
+
"red": 0.89804,
|
|
5037
|
+
"green": 0.19608,
|
|
5038
|
+
"blue": 0.57647,
|
|
5039
|
+
"alpha": 1
|
|
5040
|
+
}
|
|
5041
|
+
}
|
|
5042
|
+
]
|
|
5043
|
+
},
|
|
5044
|
+
"paddingBottom": 4,
|
|
5045
|
+
"paddingLeft": 8,
|
|
5046
|
+
"paddingRight": 8,
|
|
5047
|
+
"paddingTop": 4
|
|
5048
|
+
}
|
|
5049
|
+
},
|
|
4869
5050
|
"Search": {
|
|
4870
5051
|
"appearances": {
|
|
4871
5052
|
"focus": {
|
|
@@ -6912,6 +7093,11 @@
|
|
|
6912
7093
|
"description": "The size label for the current screen viewport based on the current screen width",
|
|
6913
7094
|
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
6914
7095
|
"type": "state"
|
|
7096
|
+
},
|
|
7097
|
+
"weight": {
|
|
7098
|
+
"description": "Sets the font weight, default is regular 400 weight. Does not change accessibility properties.",
|
|
7099
|
+
"type": "variant",
|
|
7100
|
+
"values": ["semibold", "bold"]
|
|
6915
7101
|
}
|
|
6916
7102
|
},
|
|
6917
7103
|
"rules": [
|
|
@@ -7328,6 +7514,24 @@
|
|
|
7328
7514
|
"fontName": "HelveticaNow",
|
|
7329
7515
|
"fontWeight": 700
|
|
7330
7516
|
}
|
|
7517
|
+
},
|
|
7518
|
+
{
|
|
7519
|
+
"if": {
|
|
7520
|
+
"weight": "semibold"
|
|
7521
|
+
},
|
|
7522
|
+
"tokens": {
|
|
7523
|
+
"fontName": "HelveticaNow",
|
|
7524
|
+
"fontWeight": 500
|
|
7525
|
+
}
|
|
7526
|
+
},
|
|
7527
|
+
{
|
|
7528
|
+
"if": {
|
|
7529
|
+
"weight": "bold"
|
|
7530
|
+
},
|
|
7531
|
+
"tokens": {
|
|
7532
|
+
"fontName": "HelveticaNow",
|
|
7533
|
+
"fontWeight": 700
|
|
7534
|
+
}
|
|
7331
7535
|
}
|
|
7332
7536
|
],
|
|
7333
7537
|
"tokens": {
|
|
@@ -7533,7 +7737,7 @@
|
|
|
7533
7737
|
}
|
|
7534
7738
|
},
|
|
7535
7739
|
"metadata": {
|
|
7536
|
-
"themeTokensVersion": "2.
|
|
7740
|
+
"themeTokensVersion": "2.17.0",
|
|
7537
7741
|
"name": "theme-allium"
|
|
7538
7742
|
}
|
|
7539
7743
|
}
|