@telus-uds/theme-allium 4.13.1 → 4.14.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 +809 -804
- package/build/android/theme.json +100 -19
- package/build/ios/schema.json +809 -804
- package/build/ios/theme.json +100 -19
- package/build/rn/schema.json +809 -804
- package/build/rn/theme.js +66 -11
- package/package.json +3 -3
- package/theme.json +72 -10
package/build/ios/theme.json
CHANGED
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"type": "variant",
|
|
37
37
|
"values": [true]
|
|
38
38
|
},
|
|
39
|
+
"inverse": {
|
|
40
|
+
"type": "variant",
|
|
41
|
+
"values": [true]
|
|
42
|
+
},
|
|
39
43
|
"outline": {
|
|
40
44
|
"type": "variant",
|
|
41
45
|
"values": [true]
|
|
@@ -46,6 +50,31 @@
|
|
|
46
50
|
}
|
|
47
51
|
},
|
|
48
52
|
"rules": [
|
|
53
|
+
{
|
|
54
|
+
"if": {
|
|
55
|
+
"inverse": true
|
|
56
|
+
},
|
|
57
|
+
"tokens": {
|
|
58
|
+
"backgroundColor": {
|
|
59
|
+
"red": 0,
|
|
60
|
+
"green": 0,
|
|
61
|
+
"blue": 0,
|
|
62
|
+
"alpha": 0
|
|
63
|
+
},
|
|
64
|
+
"borderColor": {
|
|
65
|
+
"red": 1,
|
|
66
|
+
"green": 1,
|
|
67
|
+
"blue": 1,
|
|
68
|
+
"alpha": 1
|
|
69
|
+
},
|
|
70
|
+
"color": {
|
|
71
|
+
"red": 1,
|
|
72
|
+
"green": 1,
|
|
73
|
+
"blue": 1,
|
|
74
|
+
"alpha": 1
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
49
78
|
{
|
|
50
79
|
"if": {
|
|
51
80
|
"outline": true
|
|
@@ -3683,16 +3712,16 @@
|
|
|
3683
3712
|
],
|
|
3684
3713
|
"tokens": {
|
|
3685
3714
|
"backgroundColor": {
|
|
3686
|
-
"red": 0.
|
|
3687
|
-
"green": 0.
|
|
3688
|
-
"blue":
|
|
3715
|
+
"red": 0.93725,
|
|
3716
|
+
"green": 0.92941,
|
|
3717
|
+
"blue": 1,
|
|
3689
3718
|
"alpha": 1
|
|
3690
3719
|
},
|
|
3691
3720
|
"borderColor": {
|
|
3692
|
-
"red": 0
|
|
3693
|
-
"green": 0
|
|
3694
|
-
"blue": 0
|
|
3695
|
-
"alpha":
|
|
3721
|
+
"red": 0,
|
|
3722
|
+
"green": 0,
|
|
3723
|
+
"blue": 0,
|
|
3724
|
+
"alpha": 0
|
|
3696
3725
|
},
|
|
3697
3726
|
"borderRadius": 4,
|
|
3698
3727
|
"borderWidth": 1,
|
|
@@ -3765,8 +3794,60 @@
|
|
|
3765
3794
|
}
|
|
3766
3795
|
},
|
|
3767
3796
|
"Footnote": {
|
|
3768
|
-
"appearances": {
|
|
3769
|
-
|
|
3797
|
+
"appearances": {
|
|
3798
|
+
"viewport": {
|
|
3799
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
3800
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
3801
|
+
"type": "state"
|
|
3802
|
+
}
|
|
3803
|
+
},
|
|
3804
|
+
"rules": [
|
|
3805
|
+
{
|
|
3806
|
+
"if": {
|
|
3807
|
+
"viewport": ["xs"]
|
|
3808
|
+
},
|
|
3809
|
+
"tokens": {
|
|
3810
|
+
"footnoteBodyPaddingBottom": 32,
|
|
3811
|
+
"footnoteBodyPaddingLeft": 16,
|
|
3812
|
+
"footnoteBodyPaddingRight": 16,
|
|
3813
|
+
"footnoteBodyPaddingTop": 0,
|
|
3814
|
+
"footnoteHeaderPaddingBottom": 16,
|
|
3815
|
+
"footnoteHeaderPaddingLeft": 16,
|
|
3816
|
+
"footnoteHeaderPaddingRight": 4,
|
|
3817
|
+
"footnoteHeaderPaddingTop": 16
|
|
3818
|
+
}
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"if": {
|
|
3822
|
+
"viewport": ["md", "lg"]
|
|
3823
|
+
},
|
|
3824
|
+
"tokens": {
|
|
3825
|
+
"footnoteBodyPaddingBottom": 40,
|
|
3826
|
+
"footnoteBodyPaddingLeft": 16,
|
|
3827
|
+
"footnoteBodyPaddingRight": 16,
|
|
3828
|
+
"footnoteBodyPaddingTop": 0,
|
|
3829
|
+
"footnoteHeaderPaddingBottom": 24,
|
|
3830
|
+
"footnoteHeaderPaddingLeft": 16,
|
|
3831
|
+
"footnoteHeaderPaddingRight": 4,
|
|
3832
|
+
"footnoteHeaderPaddingTop": 24
|
|
3833
|
+
}
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
"if": {
|
|
3837
|
+
"viewport": ["xl"]
|
|
3838
|
+
},
|
|
3839
|
+
"tokens": {
|
|
3840
|
+
"footnoteBodyPaddingBottom": 40,
|
|
3841
|
+
"footnoteBodyPaddingLeft": 16,
|
|
3842
|
+
"footnoteBodyPaddingRight": 16,
|
|
3843
|
+
"footnoteBodyPaddingTop": 0,
|
|
3844
|
+
"footnoteHeaderPaddingBottom": 24,
|
|
3845
|
+
"footnoteHeaderPaddingLeft": 16,
|
|
3846
|
+
"footnoteHeaderPaddingRight": 16,
|
|
3847
|
+
"footnoteHeaderPaddingTop": 24
|
|
3848
|
+
}
|
|
3849
|
+
}
|
|
3850
|
+
],
|
|
3770
3851
|
"tokens": {
|
|
3771
3852
|
"closeButtonBackgroundColor": {
|
|
3772
3853
|
"red": 0.95686,
|
|
@@ -3801,7 +3882,7 @@
|
|
|
3801
3882
|
"blue": 0.96863,
|
|
3802
3883
|
"alpha": 1
|
|
3803
3884
|
},
|
|
3804
|
-
"footnoteBodyPaddingBottom":
|
|
3885
|
+
"footnoteBodyPaddingBottom": 40,
|
|
3805
3886
|
"footnoteBodyPaddingLeft": 16,
|
|
3806
3887
|
"footnoteBodyPaddingRight": 16,
|
|
3807
3888
|
"footnoteBodyPaddingTop": 0,
|
|
@@ -3812,10 +3893,10 @@
|
|
|
3812
3893
|
"alpha": 1
|
|
3813
3894
|
},
|
|
3814
3895
|
"footnoteBorderTopSizeMd": 1,
|
|
3815
|
-
"footnoteHeaderPaddingBottom":
|
|
3896
|
+
"footnoteHeaderPaddingBottom": 24,
|
|
3816
3897
|
"footnoteHeaderPaddingLeft": 16,
|
|
3817
|
-
"footnoteHeaderPaddingRight":
|
|
3818
|
-
"footnoteHeaderPaddingTop":
|
|
3898
|
+
"footnoteHeaderPaddingRight": 4,
|
|
3899
|
+
"footnoteHeaderPaddingTop": 24,
|
|
3819
3900
|
"headerFontName": "HelveticaNow",
|
|
3820
3901
|
"headerFontSize": 16,
|
|
3821
3902
|
"headerFontWeight": 500,
|
|
@@ -5695,16 +5776,16 @@
|
|
|
5695
5776
|
],
|
|
5696
5777
|
"tokens": {
|
|
5697
5778
|
"backgroundColor": {
|
|
5698
|
-
"red": 0.
|
|
5699
|
-
"green": 0.
|
|
5700
|
-
"blue":
|
|
5779
|
+
"red": 0.93725,
|
|
5780
|
+
"green": 0.92941,
|
|
5781
|
+
"blue": 1,
|
|
5701
5782
|
"alpha": 1
|
|
5702
5783
|
},
|
|
5703
5784
|
"borderBottomWidth": 1,
|
|
5704
5785
|
"borderColor": {
|
|
5705
|
-
"red": 0.
|
|
5706
|
-
"green": 0.
|
|
5707
|
-
"blue": 0.
|
|
5786
|
+
"red": 0.48627,
|
|
5787
|
+
"green": 0.32549,
|
|
5788
|
+
"blue": 0.64706,
|
|
5708
5789
|
"alpha": 1
|
|
5709
5790
|
},
|
|
5710
5791
|
"borderLeftWidth": 1,
|