@telus-uds/theme-koodo 4.15.0 → 4.16.1
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 +315 -134
- package/build/android/theme.json +65 -8
- package/build/ios/schema.json +315 -134
- package/build/ios/theme.json +65 -8
- package/build/rn/schema.json +315 -134
- package/build/rn/theme.js +60 -10
- package/package.json +2 -2
- package/theme.json +60 -7
package/build/ios/theme.json
CHANGED
|
@@ -2593,18 +2593,65 @@
|
|
|
2593
2593
|
"textTransform": "none"
|
|
2594
2594
|
}
|
|
2595
2595
|
},
|
|
2596
|
+
"CheckboxCardGroup": {
|
|
2597
|
+
"appearances": {
|
|
2598
|
+
"fullWidth": {
|
|
2599
|
+
"description": "Makes cards always occupy the full width of the parent, regardless of viewport",
|
|
2600
|
+
"type": "variant",
|
|
2601
|
+
"values": [true]
|
|
2602
|
+
},
|
|
2603
|
+
"viewport": {
|
|
2604
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
2605
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
2606
|
+
"type": "state"
|
|
2607
|
+
}
|
|
2608
|
+
},
|
|
2609
|
+
"rules": [
|
|
2610
|
+
{
|
|
2611
|
+
"if": {
|
|
2612
|
+
"viewport": ["md", "lg", "xl"]
|
|
2613
|
+
},
|
|
2614
|
+
"tokens": {
|
|
2615
|
+
"direction": "row",
|
|
2616
|
+
"space": 5
|
|
2617
|
+
}
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
"if": {
|
|
2621
|
+
"fullWidth": true
|
|
2622
|
+
},
|
|
2623
|
+
"tokens": {
|
|
2624
|
+
"direction": "column",
|
|
2625
|
+
"fieldSpace": 3,
|
|
2626
|
+
"space": 3
|
|
2627
|
+
}
|
|
2628
|
+
}
|
|
2629
|
+
],
|
|
2630
|
+
"tokens": {
|
|
2631
|
+
"borderBottomLeftRadius": 1,
|
|
2632
|
+
"borderBottomRightRadius": 1,
|
|
2633
|
+
"borderTopLeftRadius": 1,
|
|
2634
|
+
"borderTopRightRadius": 1,
|
|
2635
|
+
"direction": "column",
|
|
2636
|
+
"fieldSpace": 3,
|
|
2637
|
+
"outlineOffset": 8,
|
|
2638
|
+
"outlineWidth": 1,
|
|
2639
|
+
"showIcon": true,
|
|
2640
|
+
"space": 3
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2596
2643
|
"CheckboxGroup": {
|
|
2597
2644
|
"appearances": {},
|
|
2598
2645
|
"rules": [],
|
|
2599
2646
|
"tokens": {
|
|
2600
|
-
"borderBottomLeftRadius":
|
|
2601
|
-
"borderBottomRightRadius":
|
|
2602
|
-
"borderTopLeftRadius":
|
|
2603
|
-
"borderTopRightRadius":
|
|
2647
|
+
"borderBottomLeftRadius": 1,
|
|
2648
|
+
"borderBottomRightRadius": 1,
|
|
2649
|
+
"borderTopLeftRadius": 1,
|
|
2650
|
+
"borderTopRightRadius": 1,
|
|
2604
2651
|
"fieldSpace": 2,
|
|
2605
|
-
"outlineOffset":
|
|
2606
|
-
"outlineWidth":
|
|
2607
|
-
"showIcon":
|
|
2652
|
+
"outlineOffset": 8,
|
|
2653
|
+
"outlineWidth": 1,
|
|
2654
|
+
"showIcon": true,
|
|
2608
2655
|
"space": 2
|
|
2609
2656
|
}
|
|
2610
2657
|
},
|
|
@@ -5157,6 +5204,7 @@
|
|
|
5157
5204
|
"viewport": ["xs", "sm"]
|
|
5158
5205
|
},
|
|
5159
5206
|
"tokens": {
|
|
5207
|
+
"direction": "column",
|
|
5160
5208
|
"height": "100%",
|
|
5161
5209
|
"paddingBottom": 24,
|
|
5162
5210
|
"paddingLeft": 24,
|
|
@@ -5171,6 +5219,7 @@
|
|
|
5171
5219
|
"tokens": {
|
|
5172
5220
|
"containerPaddingBottom": 32,
|
|
5173
5221
|
"containerPaddingTop": 32,
|
|
5222
|
+
"direction": "row",
|
|
5174
5223
|
"maxWidth": 576
|
|
5175
5224
|
}
|
|
5176
5225
|
},
|
|
@@ -5226,6 +5275,7 @@
|
|
|
5226
5275
|
"containerPaddingLeft": 0,
|
|
5227
5276
|
"containerPaddingRight": 0,
|
|
5228
5277
|
"containerPaddingTop": 0,
|
|
5278
|
+
"direction": "row",
|
|
5229
5279
|
"gap": 16,
|
|
5230
5280
|
"headingColor": {
|
|
5231
5281
|
"red": 0,
|
|
@@ -7443,8 +7493,15 @@
|
|
|
7443
7493
|
}
|
|
7444
7494
|
],
|
|
7445
7495
|
"tokens": {
|
|
7496
|
+
"borderBottomLeftRadius": 1,
|
|
7497
|
+
"borderBottomRightRadius": 1,
|
|
7498
|
+
"borderTopLeftRadius": 1,
|
|
7499
|
+
"borderTopRightRadius": 1,
|
|
7446
7500
|
"direction": "column",
|
|
7447
7501
|
"fieldSpace": 3,
|
|
7502
|
+
"outlineOffset": 8,
|
|
7503
|
+
"outlineWidth": 1,
|
|
7504
|
+
"showIcon": true,
|
|
7448
7505
|
"space": 3
|
|
7449
7506
|
}
|
|
7450
7507
|
},
|
|
@@ -11323,7 +11380,7 @@
|
|
|
11323
11380
|
}
|
|
11324
11381
|
},
|
|
11325
11382
|
"metadata": {
|
|
11326
|
-
"themeTokensVersion": "2.
|
|
11383
|
+
"themeTokensVersion": "2.44.1",
|
|
11327
11384
|
"name": "theme-koodo"
|
|
11328
11385
|
}
|
|
11329
11386
|
}
|