@telus-uds/theme-public-mobile 2.3.1 → 2.3.2
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 +140 -133
- package/build/android/theme.json +36 -4
- package/build/ios/schema.json +140 -133
- package/build/ios/theme.json +36 -4
- package/build/rn/schema.json +140 -133
- package/build/rn/theme.js +16 -5
- package/package.json +2 -2
- package/theme.json +31 -3
package/build/android/theme.json
CHANGED
|
@@ -10630,8 +10630,39 @@
|
|
|
10630
10630
|
}
|
|
10631
10631
|
},
|
|
10632
10632
|
"WaffleGrid": {
|
|
10633
|
-
"appearances": {
|
|
10634
|
-
|
|
10633
|
+
"appearances": {
|
|
10634
|
+
"viewport": {
|
|
10635
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
10636
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
10637
|
+
"type": "state"
|
|
10638
|
+
}
|
|
10639
|
+
},
|
|
10640
|
+
"rules": [
|
|
10641
|
+
{
|
|
10642
|
+
"if": {
|
|
10643
|
+
"viewport": ["xs"]
|
|
10644
|
+
},
|
|
10645
|
+
"tokens": {
|
|
10646
|
+
"rowSize": 2
|
|
10647
|
+
}
|
|
10648
|
+
},
|
|
10649
|
+
{
|
|
10650
|
+
"if": {
|
|
10651
|
+
"viewport": ["sm", "md"]
|
|
10652
|
+
},
|
|
10653
|
+
"tokens": {
|
|
10654
|
+
"rowSize": 3
|
|
10655
|
+
}
|
|
10656
|
+
},
|
|
10657
|
+
{
|
|
10658
|
+
"if": {
|
|
10659
|
+
"viewport": ["lg", "xl"]
|
|
10660
|
+
},
|
|
10661
|
+
"tokens": {
|
|
10662
|
+
"rowSize": 6
|
|
10663
|
+
}
|
|
10664
|
+
}
|
|
10665
|
+
],
|
|
10635
10666
|
"tokens": {
|
|
10636
10667
|
"itemBorderColor": {
|
|
10637
10668
|
"red": 0,
|
|
@@ -10640,7 +10671,8 @@
|
|
|
10640
10671
|
"alpha": 0
|
|
10641
10672
|
},
|
|
10642
10673
|
"itemPadding": 16,
|
|
10643
|
-
"rowBorderWidth": 1
|
|
10674
|
+
"rowBorderWidth": 1,
|
|
10675
|
+
"rowSize": 6
|
|
10644
10676
|
}
|
|
10645
10677
|
},
|
|
10646
10678
|
"spacingScale": {
|
|
@@ -10776,7 +10808,7 @@
|
|
|
10776
10808
|
}
|
|
10777
10809
|
},
|
|
10778
10810
|
"metadata": {
|
|
10779
|
-
"themeTokensVersion": "2.41.
|
|
10811
|
+
"themeTokensVersion": "2.41.1",
|
|
10780
10812
|
"name": "theme-public-mobile"
|
|
10781
10813
|
}
|
|
10782
10814
|
}
|