@telus-uds/theme-koodo 4.12.2 → 4.12.4
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 +690 -654
- package/build/android/theme.json +119 -11
- package/build/ios/schema.json +690 -654
- package/build/ios/theme.json +119 -11
- package/build/rn/schema.json +690 -654
- package/build/rn/theme.js +48 -18
- package/package.json +4 -4
- package/theme.json +96 -17
package/build/ios/theme.json
CHANGED
|
@@ -1664,6 +1664,10 @@
|
|
|
1664
1664
|
"type": "variant",
|
|
1665
1665
|
"values": ["alternative", "subtle", "grid", "feature"]
|
|
1666
1666
|
},
|
|
1667
|
+
"borderRadius": {
|
|
1668
|
+
"type": "variant",
|
|
1669
|
+
"values": ["none", "small", "large"]
|
|
1670
|
+
},
|
|
1667
1671
|
"padding": {
|
|
1668
1672
|
"type": "variant",
|
|
1669
1673
|
"values": ["narrow", "intermediate", "compact", "custom"]
|
|
@@ -1675,6 +1679,30 @@
|
|
|
1675
1679
|
}
|
|
1676
1680
|
},
|
|
1677
1681
|
"rules": [
|
|
1682
|
+
{
|
|
1683
|
+
"if": {
|
|
1684
|
+
"borderRadius": "none"
|
|
1685
|
+
},
|
|
1686
|
+
"tokens": {
|
|
1687
|
+
"borderRadius": 0
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"if": {
|
|
1692
|
+
"borderRadius": "small"
|
|
1693
|
+
},
|
|
1694
|
+
"tokens": {
|
|
1695
|
+
"borderRadius": 4
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"if": {
|
|
1700
|
+
"borderRadius": "large"
|
|
1701
|
+
},
|
|
1702
|
+
"tokens": {
|
|
1703
|
+
"borderRadius": 8
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1678
1706
|
{
|
|
1679
1707
|
"if": {
|
|
1680
1708
|
"background": "alternative"
|
|
@@ -3890,6 +3918,26 @@
|
|
|
3890
3918
|
}
|
|
3891
3919
|
}
|
|
3892
3920
|
},
|
|
3921
|
+
{
|
|
3922
|
+
"if": {
|
|
3923
|
+
"inactive": null,
|
|
3924
|
+
"pressed": true
|
|
3925
|
+
},
|
|
3926
|
+
"tokens": {
|
|
3927
|
+
"backgroundColor": {
|
|
3928
|
+
"red": 0,
|
|
3929
|
+
"green": 0,
|
|
3930
|
+
"blue": 0,
|
|
3931
|
+
"alpha": 0
|
|
3932
|
+
},
|
|
3933
|
+
"iconColor": {
|
|
3934
|
+
"red": 0.00392,
|
|
3935
|
+
"green": 0.28235,
|
|
3936
|
+
"blue": 0.27843,
|
|
3937
|
+
"alpha": 1
|
|
3938
|
+
}
|
|
3939
|
+
}
|
|
3940
|
+
},
|
|
3893
3941
|
{
|
|
3894
3942
|
"if": {
|
|
3895
3943
|
"pressed": true
|
|
@@ -4080,9 +4128,9 @@
|
|
|
4080
4128
|
},
|
|
4081
4129
|
"borderWidth": 0,
|
|
4082
4130
|
"iconColor": {
|
|
4083
|
-
"red": 0.
|
|
4084
|
-
"green": 0.
|
|
4085
|
-
"blue": 0.
|
|
4131
|
+
"red": 0.7098,
|
|
4132
|
+
"green": 0.70588,
|
|
4133
|
+
"blue": 0.70588,
|
|
4086
4134
|
"alpha": 1
|
|
4087
4135
|
},
|
|
4088
4136
|
"outerBorderColor": {
|
|
@@ -4100,6 +4148,32 @@
|
|
|
4100
4148
|
"tokens": {
|
|
4101
4149
|
"outerBorderGap": 0
|
|
4102
4150
|
}
|
|
4151
|
+
},
|
|
4152
|
+
{
|
|
4153
|
+
"if": {
|
|
4154
|
+
"inactive": true
|
|
4155
|
+
},
|
|
4156
|
+
"tokens": {
|
|
4157
|
+
"backgroundColor": {
|
|
4158
|
+
"red": 0,
|
|
4159
|
+
"green": 0,
|
|
4160
|
+
"blue": 0,
|
|
4161
|
+
"alpha": 0
|
|
4162
|
+
},
|
|
4163
|
+
"iconColor": {
|
|
4164
|
+
"red": 0.7098,
|
|
4165
|
+
"green": 0.70588,
|
|
4166
|
+
"blue": 0.70588,
|
|
4167
|
+
"alpha": 1
|
|
4168
|
+
},
|
|
4169
|
+
"outerBorderColor": {
|
|
4170
|
+
"red": 0,
|
|
4171
|
+
"green": 0,
|
|
4172
|
+
"blue": 0,
|
|
4173
|
+
"alpha": 0
|
|
4174
|
+
},
|
|
4175
|
+
"outerBorderWidth": 0
|
|
4176
|
+
}
|
|
4103
4177
|
}
|
|
4104
4178
|
],
|
|
4105
4179
|
"tokens": {
|
|
@@ -4125,6 +4199,7 @@
|
|
|
4125
4199
|
"borderTopRightRadius": null,
|
|
4126
4200
|
"borderTopWidth": null,
|
|
4127
4201
|
"borderWidth": 1,
|
|
4202
|
+
"height": null,
|
|
4128
4203
|
"icon": "PaletteIconAdd",
|
|
4129
4204
|
"iconColor": {
|
|
4130
4205
|
"red": 0,
|
|
@@ -4145,7 +4220,8 @@
|
|
|
4145
4220
|
"outerBorderGap": 0,
|
|
4146
4221
|
"outerBorderWidth": 0,
|
|
4147
4222
|
"padding": 4,
|
|
4148
|
-
"shadow": null
|
|
4223
|
+
"shadow": null,
|
|
4224
|
+
"width": null
|
|
4149
4225
|
}
|
|
4150
4226
|
},
|
|
4151
4227
|
"Image": {
|
|
@@ -5869,9 +5945,9 @@
|
|
|
5869
5945
|
},
|
|
5870
5946
|
"tokens": {
|
|
5871
5947
|
"backgroundColor": {
|
|
5872
|
-
"red": 0.
|
|
5873
|
-
"green": 0.
|
|
5874
|
-
"blue": 0.
|
|
5948
|
+
"red": 0.78824,
|
|
5949
|
+
"green": 0.78431,
|
|
5950
|
+
"blue": 0.78431,
|
|
5875
5951
|
"alpha": 1
|
|
5876
5952
|
},
|
|
5877
5953
|
"outlineColor": {
|
|
@@ -10627,8 +10703,39 @@
|
|
|
10627
10703
|
}
|
|
10628
10704
|
},
|
|
10629
10705
|
"WaffleGrid": {
|
|
10630
|
-
"appearances": {
|
|
10631
|
-
|
|
10706
|
+
"appearances": {
|
|
10707
|
+
"viewport": {
|
|
10708
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
10709
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
10710
|
+
"type": "state"
|
|
10711
|
+
}
|
|
10712
|
+
},
|
|
10713
|
+
"rules": [
|
|
10714
|
+
{
|
|
10715
|
+
"if": {
|
|
10716
|
+
"viewport": ["xs"]
|
|
10717
|
+
},
|
|
10718
|
+
"tokens": {
|
|
10719
|
+
"rowSize": 2
|
|
10720
|
+
}
|
|
10721
|
+
},
|
|
10722
|
+
{
|
|
10723
|
+
"if": {
|
|
10724
|
+
"viewport": ["sm", "md"]
|
|
10725
|
+
},
|
|
10726
|
+
"tokens": {
|
|
10727
|
+
"rowSize": 3
|
|
10728
|
+
}
|
|
10729
|
+
},
|
|
10730
|
+
{
|
|
10731
|
+
"if": {
|
|
10732
|
+
"viewport": ["lg", "xl"]
|
|
10733
|
+
},
|
|
10734
|
+
"tokens": {
|
|
10735
|
+
"rowSize": 6
|
|
10736
|
+
}
|
|
10737
|
+
}
|
|
10738
|
+
],
|
|
10632
10739
|
"tokens": {
|
|
10633
10740
|
"itemBorderColor": {
|
|
10634
10741
|
"red": 0,
|
|
@@ -10637,7 +10744,8 @@
|
|
|
10637
10744
|
"alpha": 0
|
|
10638
10745
|
},
|
|
10639
10746
|
"itemPadding": 16,
|
|
10640
|
-
"rowBorderWidth": 1
|
|
10747
|
+
"rowBorderWidth": 1,
|
|
10748
|
+
"rowSize": 6
|
|
10641
10749
|
}
|
|
10642
10750
|
},
|
|
10643
10751
|
"spacingScale": {
|
|
@@ -10827,7 +10935,7 @@
|
|
|
10827
10935
|
}
|
|
10828
10936
|
},
|
|
10829
10937
|
"metadata": {
|
|
10830
|
-
"themeTokensVersion": "2.41.
|
|
10938
|
+
"themeTokensVersion": "2.41.1",
|
|
10831
10939
|
"name": "theme-koodo"
|
|
10832
10940
|
}
|
|
10833
10941
|
}
|