@telus-uds/theme-koodo 3.22.0 → 3.23.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 +932 -520
- package/build/android/theme.json +265 -3
- package/build/ios/schema.json +932 -520
- package/build/ios/theme.json +265 -3
- package/build/rn/schema.json +932 -520
- package/build/rn/theme.js +172 -4
- package/package.json +4 -4
- package/theme.json +201 -2
package/build/android/theme.json
CHANGED
|
@@ -209,6 +209,25 @@
|
|
|
209
209
|
"paddingTop": 2
|
|
210
210
|
}
|
|
211
211
|
},
|
|
212
|
+
"BlockQuote": {
|
|
213
|
+
"appearances": {},
|
|
214
|
+
"rules": [],
|
|
215
|
+
"tokens": {
|
|
216
|
+
"backgroundGradient": null,
|
|
217
|
+
"color": {
|
|
218
|
+
"red": 0.00392,
|
|
219
|
+
"green": 0.41961,
|
|
220
|
+
"blue": 0.41569,
|
|
221
|
+
"alpha": 1
|
|
222
|
+
},
|
|
223
|
+
"marginBottom": 16,
|
|
224
|
+
"paddingBottom": 16,
|
|
225
|
+
"paddingLeft": 32,
|
|
226
|
+
"paddingRight": 32,
|
|
227
|
+
"paddingTop": 16,
|
|
228
|
+
"width": 2
|
|
229
|
+
}
|
|
230
|
+
},
|
|
212
231
|
"Box": {
|
|
213
232
|
"appearances": {
|
|
214
233
|
"background": {
|
|
@@ -1464,7 +1483,7 @@
|
|
|
1464
1483
|
"borderWidth": 0,
|
|
1465
1484
|
"contentAlignItems": "stretch",
|
|
1466
1485
|
"contentFlexGrow": 0,
|
|
1467
|
-
"contentFlexShrink":
|
|
1486
|
+
"contentFlexShrink": 1,
|
|
1468
1487
|
"contentJustifyContent": "flex-start",
|
|
1469
1488
|
"flex": 1,
|
|
1470
1489
|
"minWidth": null,
|
|
@@ -2721,6 +2740,20 @@
|
|
|
2721
2740
|
},
|
|
2722
2741
|
"IconButton": {
|
|
2723
2742
|
"appearances": {
|
|
2743
|
+
"action": {
|
|
2744
|
+
"type": "variant",
|
|
2745
|
+
"values": [
|
|
2746
|
+
"add",
|
|
2747
|
+
"close",
|
|
2748
|
+
"expand",
|
|
2749
|
+
"moveDown",
|
|
2750
|
+
"moveLeft",
|
|
2751
|
+
"moveRight",
|
|
2752
|
+
"moveUp",
|
|
2753
|
+
"play",
|
|
2754
|
+
"subtract"
|
|
2755
|
+
]
|
|
2756
|
+
},
|
|
2724
2757
|
"compact": {
|
|
2725
2758
|
"description": "Without the outer border gap",
|
|
2726
2759
|
"type": "variant",
|
|
@@ -2757,6 +2790,78 @@
|
|
|
2757
2790
|
}
|
|
2758
2791
|
},
|
|
2759
2792
|
"rules": [
|
|
2793
|
+
{
|
|
2794
|
+
"if": {
|
|
2795
|
+
"action": "add"
|
|
2796
|
+
},
|
|
2797
|
+
"tokens": {
|
|
2798
|
+
"icon": "PaletteIconAdd"
|
|
2799
|
+
}
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"if": {
|
|
2803
|
+
"action": "subtract"
|
|
2804
|
+
},
|
|
2805
|
+
"tokens": {
|
|
2806
|
+
"icon": "PaletteIconSubtract"
|
|
2807
|
+
}
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"if": {
|
|
2811
|
+
"action": "close"
|
|
2812
|
+
},
|
|
2813
|
+
"tokens": {
|
|
2814
|
+
"icon": "PaletteIconClose"
|
|
2815
|
+
}
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
"if": {
|
|
2819
|
+
"action": "expand"
|
|
2820
|
+
},
|
|
2821
|
+
"tokens": {
|
|
2822
|
+
"icon": "PaletteIconExpand"
|
|
2823
|
+
}
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
"if": {
|
|
2827
|
+
"action": "moveDown"
|
|
2828
|
+
},
|
|
2829
|
+
"tokens": {
|
|
2830
|
+
"icon": "PaletteIconChevronDown"
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
"if": {
|
|
2835
|
+
"action": "moveLeft"
|
|
2836
|
+
},
|
|
2837
|
+
"tokens": {
|
|
2838
|
+
"icon": "PaletteIconChevronLeft"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"if": {
|
|
2843
|
+
"action": "moveRight"
|
|
2844
|
+
},
|
|
2845
|
+
"tokens": {
|
|
2846
|
+
"icon": "PaletteIconChevronRight"
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"if": {
|
|
2851
|
+
"action": "moveUp"
|
|
2852
|
+
},
|
|
2853
|
+
"tokens": {
|
|
2854
|
+
"icon": "PaletteIconChevronUp"
|
|
2855
|
+
}
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
"if": {
|
|
2859
|
+
"action": "play"
|
|
2860
|
+
},
|
|
2861
|
+
"tokens": {
|
|
2862
|
+
"icon": "PaletteIconPlayVideo"
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2760
2865
|
{
|
|
2761
2866
|
"if": {
|
|
2762
2867
|
"inverse": true
|
|
@@ -3010,6 +3115,7 @@
|
|
|
3010
3115
|
},
|
|
3011
3116
|
"borderRadius": 99999999999999,
|
|
3012
3117
|
"borderWidth": 1,
|
|
3118
|
+
"icon": null,
|
|
3013
3119
|
"iconColor": {
|
|
3014
3120
|
"red": 0,
|
|
3015
3121
|
"green": 0,
|
|
@@ -3337,6 +3443,162 @@
|
|
|
3337
3443
|
"listGutter": 10
|
|
3338
3444
|
}
|
|
3339
3445
|
},
|
|
3446
|
+
"ListBox": {
|
|
3447
|
+
"appearances": {
|
|
3448
|
+
"current": {
|
|
3449
|
+
"description": "When the current item is selected",
|
|
3450
|
+
"values": [true],
|
|
3451
|
+
"type": "state"
|
|
3452
|
+
},
|
|
3453
|
+
"expanded": {
|
|
3454
|
+
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
3455
|
+
"values": [true],
|
|
3456
|
+
"type": "state"
|
|
3457
|
+
},
|
|
3458
|
+
"isChild": {
|
|
3459
|
+
"description": "when the item is child of another child",
|
|
3460
|
+
"values": [true],
|
|
3461
|
+
"type": "state"
|
|
3462
|
+
},
|
|
3463
|
+
"pressed": {
|
|
3464
|
+
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
3465
|
+
"values": [true],
|
|
3466
|
+
"type": "state"
|
|
3467
|
+
}
|
|
3468
|
+
},
|
|
3469
|
+
"rules": [
|
|
3470
|
+
{
|
|
3471
|
+
"if": {
|
|
3472
|
+
"pressed": true
|
|
3473
|
+
},
|
|
3474
|
+
"tokens": {
|
|
3475
|
+
"groupBackgroundColor": {
|
|
3476
|
+
"red": 0.73333,
|
|
3477
|
+
"green": 0.91765,
|
|
3478
|
+
"blue": 0.96078,
|
|
3479
|
+
"alpha": 1
|
|
3480
|
+
},
|
|
3481
|
+
"groupColor": {
|
|
3482
|
+
"red": 0.00392,
|
|
3483
|
+
"green": 0.41961,
|
|
3484
|
+
"blue": 0.41569,
|
|
3485
|
+
"alpha": 1
|
|
3486
|
+
}
|
|
3487
|
+
}
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
"if": {
|
|
3491
|
+
"current": true
|
|
3492
|
+
},
|
|
3493
|
+
"tokens": {
|
|
3494
|
+
"groupColor": {
|
|
3495
|
+
"red": 0.00392,
|
|
3496
|
+
"green": 0.41961,
|
|
3497
|
+
"blue": 0.41569,
|
|
3498
|
+
"alpha": 1
|
|
3499
|
+
},
|
|
3500
|
+
"groupFontName": "StagSans",
|
|
3501
|
+
"groupFontWeight": 700
|
|
3502
|
+
}
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
"if": {
|
|
3506
|
+
"isChild": true
|
|
3507
|
+
},
|
|
3508
|
+
"tokens": {
|
|
3509
|
+
"itemBorderWidth": 4,
|
|
3510
|
+
"itemPaddingLeft": 12
|
|
3511
|
+
}
|
|
3512
|
+
},
|
|
3513
|
+
{
|
|
3514
|
+
"if": {
|
|
3515
|
+
"expanded": true
|
|
3516
|
+
},
|
|
3517
|
+
"tokens": {
|
|
3518
|
+
"groupIcon": "PaletteIconChevronUp"
|
|
3519
|
+
}
|
|
3520
|
+
}
|
|
3521
|
+
],
|
|
3522
|
+
"tokens": {
|
|
3523
|
+
"groupBackgroundColor": {
|
|
3524
|
+
"red": 0,
|
|
3525
|
+
"green": 0,
|
|
3526
|
+
"blue": 0,
|
|
3527
|
+
"alpha": 0
|
|
3528
|
+
},
|
|
3529
|
+
"groupBorderColor": {
|
|
3530
|
+
"red": 0.00392,
|
|
3531
|
+
"green": 0.41961,
|
|
3532
|
+
"blue": 0.41569,
|
|
3533
|
+
"alpha": 1
|
|
3534
|
+
},
|
|
3535
|
+
"groupBorderRadius": 6,
|
|
3536
|
+
"groupBorderWidth": 1,
|
|
3537
|
+
"groupColor": {
|
|
3538
|
+
"red": 0.89804,
|
|
3539
|
+
"green": 0.96863,
|
|
3540
|
+
"blue": 0.98431,
|
|
3541
|
+
"alpha": 1
|
|
3542
|
+
},
|
|
3543
|
+
"groupFontName": "StagSans",
|
|
3544
|
+
"groupFontSize": 14,
|
|
3545
|
+
"groupFontWeight": 400,
|
|
3546
|
+
"groupIcon": "PaletteIconChevronDown",
|
|
3547
|
+
"groupPaddingBottom": 12,
|
|
3548
|
+
"groupPaddingLeft": 16,
|
|
3549
|
+
"groupPaddingRight": 16,
|
|
3550
|
+
"groupPaddingTop": 12,
|
|
3551
|
+
"itemBackgroundColor": {
|
|
3552
|
+
"red": 0,
|
|
3553
|
+
"green": 0,
|
|
3554
|
+
"blue": 0,
|
|
3555
|
+
"alpha": 0
|
|
3556
|
+
},
|
|
3557
|
+
"itemBorderBackgroundColor": {
|
|
3558
|
+
"red": 0.73333,
|
|
3559
|
+
"green": 0.91765,
|
|
3560
|
+
"blue": 0.96078,
|
|
3561
|
+
"alpha": 1
|
|
3562
|
+
},
|
|
3563
|
+
"itemBorderLeftColor": {
|
|
3564
|
+
"red": 0.00392,
|
|
3565
|
+
"green": 0.41961,
|
|
3566
|
+
"blue": 0.41569,
|
|
3567
|
+
"alpha": 1
|
|
3568
|
+
},
|
|
3569
|
+
"itemBorderLeftWidth": 4,
|
|
3570
|
+
"itemBorderWidth": 0,
|
|
3571
|
+
"itemColor": {
|
|
3572
|
+
"red": 0.00392,
|
|
3573
|
+
"green": 0.41961,
|
|
3574
|
+
"blue": 0.41569,
|
|
3575
|
+
"alpha": 1
|
|
3576
|
+
},
|
|
3577
|
+
"itemDisplay": false,
|
|
3578
|
+
"itemFontName": "StagSans",
|
|
3579
|
+
"itemFontSize": 14,
|
|
3580
|
+
"itemFontWeight": 700,
|
|
3581
|
+
"itemOutline": 0,
|
|
3582
|
+
"itemPaddingBottom": 12,
|
|
3583
|
+
"itemPaddingLeft": 16,
|
|
3584
|
+
"itemPaddingRight": 16,
|
|
3585
|
+
"itemPaddingTop": 12,
|
|
3586
|
+
"itemTextDecoration": "none",
|
|
3587
|
+
"shadow": {
|
|
3588
|
+
"inset": false,
|
|
3589
|
+
"offsetX": 0,
|
|
3590
|
+
"offsetY": 2,
|
|
3591
|
+
"blur": 2,
|
|
3592
|
+
"spread": 0,
|
|
3593
|
+
"color": {
|
|
3594
|
+
"red": 0,
|
|
3595
|
+
"green": 0,
|
|
3596
|
+
"blue": 0,
|
|
3597
|
+
"alpha": 0.1
|
|
3598
|
+
}
|
|
3599
|
+
}
|
|
3600
|
+
}
|
|
3601
|
+
},
|
|
3340
3602
|
"Modal": {
|
|
3341
3603
|
"appearances": {
|
|
3342
3604
|
"maxWidth": {
|
|
@@ -4784,7 +5046,7 @@
|
|
|
4784
5046
|
},
|
|
4785
5047
|
"contentAlignItems": "stretch",
|
|
4786
5048
|
"contentFlexGrow": 0,
|
|
4787
|
-
"contentFlexShrink":
|
|
5049
|
+
"contentFlexShrink": 1,
|
|
4788
5050
|
"contentJustifyContent": "flex-start",
|
|
4789
5051
|
"contentSpace": 2,
|
|
4790
5052
|
"flex": 1,
|
|
@@ -7300,7 +7562,7 @@
|
|
|
7300
7562
|
}
|
|
7301
7563
|
},
|
|
7302
7564
|
"metadata": {
|
|
7303
|
-
"themeTokensVersion": "2.
|
|
7565
|
+
"themeTokensVersion": "2.22.0",
|
|
7304
7566
|
"name": "theme-koodo"
|
|
7305
7567
|
}
|
|
7306
7568
|
}
|