@telus-uds/theme-allium 4.13.0 → 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 +833 -799
- package/build/android/theme.json +132 -21
- package/build/ios/schema.json +833 -799
- package/build/ios/theme.json +132 -21
- package/build/rn/schema.json +833 -799
- package/build/rn/theme.js +77 -15
- package/package.json +3 -3
- package/theme.json +114 -14
package/build/android/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
|
|
@@ -2053,6 +2082,10 @@
|
|
|
2053
2082
|
"type": "variant",
|
|
2054
2083
|
"values": ["alternative", "subtle", "grid", "feature"]
|
|
2055
2084
|
},
|
|
2085
|
+
"borderRadius": {
|
|
2086
|
+
"type": "variant",
|
|
2087
|
+
"values": ["none", "small", "large"]
|
|
2088
|
+
},
|
|
2056
2089
|
"padding": {
|
|
2057
2090
|
"type": "variant",
|
|
2058
2091
|
"values": ["narrow", "intermediate", "compact", "custom"]
|
|
@@ -2064,6 +2097,30 @@
|
|
|
2064
2097
|
}
|
|
2065
2098
|
},
|
|
2066
2099
|
"rules": [
|
|
2100
|
+
{
|
|
2101
|
+
"if": {
|
|
2102
|
+
"borderRadius": "none"
|
|
2103
|
+
},
|
|
2104
|
+
"tokens": {
|
|
2105
|
+
"borderRadius": 0
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"if": {
|
|
2110
|
+
"borderRadius": "small"
|
|
2111
|
+
},
|
|
2112
|
+
"tokens": {
|
|
2113
|
+
"borderRadius": 6
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"if": {
|
|
2118
|
+
"borderRadius": "large"
|
|
2119
|
+
},
|
|
2120
|
+
"tokens": {
|
|
2121
|
+
"borderRadius": 12
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
2067
2124
|
{
|
|
2068
2125
|
"if": {
|
|
2069
2126
|
"background": "alternative"
|
|
@@ -3655,16 +3712,16 @@
|
|
|
3655
3712
|
],
|
|
3656
3713
|
"tokens": {
|
|
3657
3714
|
"backgroundColor": {
|
|
3658
|
-
"red": 0.
|
|
3659
|
-
"green": 0.
|
|
3660
|
-
"blue":
|
|
3715
|
+
"red": 0.93725,
|
|
3716
|
+
"green": 0.92941,
|
|
3717
|
+
"blue": 1,
|
|
3661
3718
|
"alpha": 1
|
|
3662
3719
|
},
|
|
3663
3720
|
"borderColor": {
|
|
3664
|
-
"red": 0
|
|
3665
|
-
"green": 0
|
|
3666
|
-
"blue": 0
|
|
3667
|
-
"alpha":
|
|
3721
|
+
"red": 0,
|
|
3722
|
+
"green": 0,
|
|
3723
|
+
"blue": 0,
|
|
3724
|
+
"alpha": 0
|
|
3668
3725
|
},
|
|
3669
3726
|
"borderRadius": 4,
|
|
3670
3727
|
"borderWidth": 1,
|
|
@@ -3737,8 +3794,60 @@
|
|
|
3737
3794
|
}
|
|
3738
3795
|
},
|
|
3739
3796
|
"Footnote": {
|
|
3740
|
-
"appearances": {
|
|
3741
|
-
|
|
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
|
+
],
|
|
3742
3851
|
"tokens": {
|
|
3743
3852
|
"closeButtonBackgroundColor": {
|
|
3744
3853
|
"red": 0.95686,
|
|
@@ -3773,7 +3882,7 @@
|
|
|
3773
3882
|
"blue": 0.96863,
|
|
3774
3883
|
"alpha": 1
|
|
3775
3884
|
},
|
|
3776
|
-
"footnoteBodyPaddingBottom":
|
|
3885
|
+
"footnoteBodyPaddingBottom": 40,
|
|
3777
3886
|
"footnoteBodyPaddingLeft": 16,
|
|
3778
3887
|
"footnoteBodyPaddingRight": 16,
|
|
3779
3888
|
"footnoteBodyPaddingTop": 0,
|
|
@@ -3784,10 +3893,10 @@
|
|
|
3784
3893
|
"alpha": 1
|
|
3785
3894
|
},
|
|
3786
3895
|
"footnoteBorderTopSizeMd": 1,
|
|
3787
|
-
"footnoteHeaderPaddingBottom":
|
|
3896
|
+
"footnoteHeaderPaddingBottom": 24,
|
|
3788
3897
|
"footnoteHeaderPaddingLeft": 16,
|
|
3789
|
-
"footnoteHeaderPaddingRight":
|
|
3790
|
-
"footnoteHeaderPaddingTop":
|
|
3898
|
+
"footnoteHeaderPaddingRight": 4,
|
|
3899
|
+
"footnoteHeaderPaddingTop": 24,
|
|
3791
3900
|
"headerFontName": "HelveticaNow",
|
|
3792
3901
|
"headerFontSize": 16,
|
|
3793
3902
|
"headerFontWeight": 500,
|
|
@@ -4354,7 +4463,7 @@
|
|
|
4354
4463
|
"blue": 1,
|
|
4355
4464
|
"alpha": 1
|
|
4356
4465
|
},
|
|
4357
|
-
"outerBorderGap":
|
|
4466
|
+
"outerBorderGap": 0
|
|
4358
4467
|
}
|
|
4359
4468
|
},
|
|
4360
4469
|
{
|
|
@@ -4539,6 +4648,7 @@
|
|
|
4539
4648
|
"borderTopRightRadius": null,
|
|
4540
4649
|
"borderTopWidth": null,
|
|
4541
4650
|
"borderWidth": 1,
|
|
4651
|
+
"height": null,
|
|
4542
4652
|
"icon": "PaletteIconAdd",
|
|
4543
4653
|
"iconColor": {
|
|
4544
4654
|
"red": 0.40392,
|
|
@@ -4559,7 +4669,8 @@
|
|
|
4559
4669
|
"outerBorderGap": 0,
|
|
4560
4670
|
"outerBorderWidth": null,
|
|
4561
4671
|
"padding": 4,
|
|
4562
|
-
"shadow": null
|
|
4672
|
+
"shadow": null,
|
|
4673
|
+
"width": null
|
|
4563
4674
|
}
|
|
4564
4675
|
},
|
|
4565
4676
|
"Image": {
|
|
@@ -5665,16 +5776,16 @@
|
|
|
5665
5776
|
],
|
|
5666
5777
|
"tokens": {
|
|
5667
5778
|
"backgroundColor": {
|
|
5668
|
-
"red": 0.
|
|
5669
|
-
"green": 0.
|
|
5670
|
-
"blue":
|
|
5779
|
+
"red": 0.93725,
|
|
5780
|
+
"green": 0.92941,
|
|
5781
|
+
"blue": 1,
|
|
5671
5782
|
"alpha": 1
|
|
5672
5783
|
},
|
|
5673
5784
|
"borderBottomWidth": 1,
|
|
5674
5785
|
"borderColor": {
|
|
5675
|
-
"red": 0.
|
|
5676
|
-
"green": 0.
|
|
5677
|
-
"blue": 0.
|
|
5786
|
+
"red": 0.48627,
|
|
5787
|
+
"green": 0.32549,
|
|
5788
|
+
"blue": 0.64706,
|
|
5678
5789
|
"alpha": 1
|
|
5679
5790
|
},
|
|
5680
5791
|
"borderLeftWidth": 1,
|