@telus-uds/theme-koodo 3.23.0 → 3.25.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 +5051 -3215
- package/build/android/theme.json +776 -75
- package/build/ios/schema.json +5051 -3215
- package/build/ios/theme.json +776 -75
- package/build/rn/schema.json +5051 -3215
- package/build/rn/theme.js +422 -21
- package/package.json +4 -4
- package/theme.json +498 -22
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Mon,
|
|
4
|
+
* Generated on Mon, 01 May 2023 22:00:59 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -27,6 +27,7 @@ const PaletteIconCheckCircledNotFilled = require('@telus-uds/palette-koodo/build
|
|
|
27
27
|
const PaletteIconEyeMasked = require('@telus-uds/palette-koodo/build/rn/icons/EyeMasked')
|
|
28
28
|
const PaletteIconEyeUnmasked = require('@telus-uds/palette-koodo/build/rn/icons/EyeUnmasked')
|
|
29
29
|
const PaletteIconInfo = require('@telus-uds/palette-koodo/build/rn/icons/Info')
|
|
30
|
+
const PaletteIconSettings = require('@telus-uds/palette-koodo/build/rn/icons/Settings')
|
|
30
31
|
|
|
31
32
|
module.exports = {
|
|
32
33
|
components: {
|
|
@@ -39,7 +40,7 @@ module.exports = {
|
|
|
39
40
|
}
|
|
40
41
|
},
|
|
41
42
|
rules: [ { if: { size: 'large' }, tokens: { size: 48, thickness: 4 } } ],
|
|
42
|
-
tokens: { color: '#016b6a', size:
|
|
43
|
+
tokens: { color: '#016b6a', size: 24, thickness: 2 }
|
|
43
44
|
},
|
|
44
45
|
Badge: {
|
|
45
46
|
appearances: {
|
|
@@ -211,7 +212,7 @@ module.exports = {
|
|
|
211
212
|
tokens: { backgroundColor: '#016b6a' }
|
|
212
213
|
}
|
|
213
214
|
],
|
|
214
|
-
tokens: { backgroundColor: '
|
|
215
|
+
tokens: { backgroundColor: 'rgba(0, 0, 0, 0)', gradient: null }
|
|
215
216
|
},
|
|
216
217
|
Breadcrumbs: {
|
|
217
218
|
appearances: { inverse: { type: 'variant', values: [ true ] } },
|
|
@@ -268,10 +269,15 @@ module.exports = {
|
|
|
268
269
|
type: 'variant',
|
|
269
270
|
values: [ true ]
|
|
270
271
|
},
|
|
272
|
+
viewport: {
|
|
273
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
274
|
+
type: 'state',
|
|
275
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
276
|
+
},
|
|
271
277
|
width: {
|
|
272
|
-
description: 'Available in default
|
|
278
|
+
description: 'Available in default, full-width or responsive. Default-width expands based on content. Full-width expands to width of the container. Responsive automatically applies full-width when is displayed on the XS viewport.',
|
|
273
279
|
type: 'variant',
|
|
274
|
-
values: [ 'full' ]
|
|
280
|
+
values: [ 'full', 'responsive' ]
|
|
275
281
|
}
|
|
276
282
|
},
|
|
277
283
|
rules: [
|
|
@@ -407,6 +413,10 @@ module.exports = {
|
|
|
407
413
|
}
|
|
408
414
|
},
|
|
409
415
|
{ if: { width: 'full' }, tokens: { width: '100%' } },
|
|
416
|
+
{
|
|
417
|
+
if: { viewport: [ 'xs' ], width: 'responsive' },
|
|
418
|
+
tokens: { width: '100%' }
|
|
419
|
+
},
|
|
410
420
|
{
|
|
411
421
|
if: { size: 'small' },
|
|
412
422
|
tokens: {
|
|
@@ -858,17 +868,21 @@ module.exports = {
|
|
|
858
868
|
}
|
|
859
869
|
},
|
|
860
870
|
Callout: {
|
|
861
|
-
appearances: {
|
|
871
|
+
appearances: {
|
|
872
|
+
rounded: { type: 'variant', values: [ true ] },
|
|
873
|
+
size: { type: 'variant', values: [ 'small' ] }
|
|
874
|
+
},
|
|
862
875
|
rules: [
|
|
863
876
|
{
|
|
864
877
|
if: { size: 'small' },
|
|
865
878
|
tokens: { paddingBottom: 4, paddingTop: 4 }
|
|
866
|
-
}
|
|
879
|
+
},
|
|
880
|
+
{ if: { rounded: true }, tokens: { borderRadius: 4 } }
|
|
867
881
|
],
|
|
868
882
|
tokens: {
|
|
869
|
-
background: '#
|
|
870
|
-
borderRadius:
|
|
871
|
-
color: '#
|
|
883
|
+
background: '#fae6f4',
|
|
884
|
+
borderRadius: 0,
|
|
885
|
+
color: '#7c1366',
|
|
872
886
|
gap: 16,
|
|
873
887
|
paddingBottom: 8,
|
|
874
888
|
paddingLeft: 16,
|
|
@@ -1207,20 +1221,20 @@ module.exports = {
|
|
|
1207
1221
|
},
|
|
1208
1222
|
{
|
|
1209
1223
|
if: { size: 'large' },
|
|
1210
|
-
tokens: {
|
|
1224
|
+
tokens: { fontSize: 20, iconSize: 24, textLineHeight: 2.15 }
|
|
1211
1225
|
},
|
|
1212
1226
|
{
|
|
1213
1227
|
if: { size: 'small' },
|
|
1214
|
-
tokens: {
|
|
1228
|
+
tokens: { fontSize: 14, iconSize: 16, textLineHeight: 2.15 }
|
|
1215
1229
|
},
|
|
1216
1230
|
{
|
|
1217
1231
|
if: { size: 'micro' },
|
|
1218
|
-
tokens: {
|
|
1232
|
+
tokens: { fontSize: 12, iconSize: 16, textLineHeight: 2.25 }
|
|
1219
1233
|
}
|
|
1220
1234
|
],
|
|
1221
1235
|
tokens: {
|
|
1222
1236
|
color: '#016b6a',
|
|
1223
|
-
|
|
1237
|
+
fontSize: 16,
|
|
1224
1238
|
iconDisplace: 0,
|
|
1225
1239
|
iconSize: 18,
|
|
1226
1240
|
iconSpace: 1,
|
|
@@ -1231,6 +1245,75 @@ module.exports = {
|
|
|
1231
1245
|
textLineHeight: 2.13
|
|
1232
1246
|
}
|
|
1233
1247
|
},
|
|
1248
|
+
Countdown: {
|
|
1249
|
+
appearances: {
|
|
1250
|
+
feature: { type: 'variant', values: [ true ] },
|
|
1251
|
+
inverse: { type: 'variant', values: [ true ] },
|
|
1252
|
+
label: { type: 'variant', values: [ true ] },
|
|
1253
|
+
large: { type: 'variant', values: [ true ] },
|
|
1254
|
+
viewport: {
|
|
1255
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
1256
|
+
type: 'state',
|
|
1257
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
rules: [
|
|
1261
|
+
{
|
|
1262
|
+
if: { viewport: [ 'xs' ] },
|
|
1263
|
+
tokens: {
|
|
1264
|
+
containerPaddingBottomTop: 16,
|
|
1265
|
+
containerPaddingLeftRight: 24,
|
|
1266
|
+
labelFontSize: 14,
|
|
1267
|
+
labelLineHeight: 1.42857142857,
|
|
1268
|
+
textLineHeight: 1.14285714286
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
if: { large: true, viewport: [ 'xs' ] },
|
|
1273
|
+
tokens: { textFontSize: 28 }
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
if: { feature: true, viewport: [ 'xs' ] },
|
|
1277
|
+
tokens: { textFontSize: 28 }
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
if: { feature: true },
|
|
1281
|
+
tokens: {
|
|
1282
|
+
labelBorderColor: null,
|
|
1283
|
+
textFontSize: 64,
|
|
1284
|
+
textLineHeight: 1.14285714286,
|
|
1285
|
+
textTimerFontName: 'StagSans',
|
|
1286
|
+
textTimerFontWeight: '300'
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
if: { large: true },
|
|
1291
|
+
tokens: {
|
|
1292
|
+
textFontSize: 64,
|
|
1293
|
+
textLineHeight: 1.14285714286,
|
|
1294
|
+
textTimerFontName: 'StagSans',
|
|
1295
|
+
textTimerFontWeight: '300'
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
{ if: { inverse: true }, tokens: { labelBorderColor: null } }
|
|
1299
|
+
],
|
|
1300
|
+
tokens: {
|
|
1301
|
+
containerBorderRadius: 6,
|
|
1302
|
+
containerGradient: null,
|
|
1303
|
+
containerInverseBorder: 2,
|
|
1304
|
+
containerInverseBorderColor: '#ffffff',
|
|
1305
|
+
containerPaddingBottomTop: 48,
|
|
1306
|
+
containerPaddingLeftRight: 64,
|
|
1307
|
+
inverseBorderColor: null,
|
|
1308
|
+
labelBorderColor: null,
|
|
1309
|
+
labelFontSize: 16,
|
|
1310
|
+
labelLineHeight: 1.5,
|
|
1311
|
+
textFontSize: 16,
|
|
1312
|
+
textLineHeight: 1.14285714286,
|
|
1313
|
+
textTimerFontName: 'StagSans',
|
|
1314
|
+
textTimerFontWeight: '400'
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1234
1317
|
DatePicker: {
|
|
1235
1318
|
appearances: {},
|
|
1236
1319
|
rules: [],
|
|
@@ -1625,6 +1708,39 @@ module.exports = {
|
|
|
1625
1708
|
size: { type: 'variant', values: [ 'small', 'large' ] }
|
|
1626
1709
|
},
|
|
1627
1710
|
rules: [
|
|
1711
|
+
{ if: { action: 'add' }, tokens: { icon: PaletteIconAdd } },
|
|
1712
|
+
{
|
|
1713
|
+
if: { action: 'subtract' },
|
|
1714
|
+
tokens: { icon: PaletteIconSubtract }
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
if: { action: 'close' },
|
|
1718
|
+
tokens: { icon: PaletteIconClose }
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
if: { action: 'expand' },
|
|
1722
|
+
tokens: { icon: PaletteIconExpand }
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
if: { action: 'moveDown' },
|
|
1726
|
+
tokens: { icon: PaletteIconChevronDown }
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
if: { action: 'moveLeft' },
|
|
1730
|
+
tokens: { icon: PaletteIconChevronLeft }
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
if: { action: 'moveRight' },
|
|
1734
|
+
tokens: { icon: PaletteIconChevronRight }
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
if: { action: 'moveUp' },
|
|
1738
|
+
tokens: { icon: PaletteIconChevronUp }
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
if: { action: 'play' },
|
|
1742
|
+
tokens: { icon: PaletteIconPlayVideo }
|
|
1743
|
+
},
|
|
1628
1744
|
{ if: { action: 'add' }, tokens: { icon: PaletteIconAdd } },
|
|
1629
1745
|
{
|
|
1630
1746
|
if: { action: 'subtract' },
|
|
@@ -1998,6 +2114,7 @@ module.exports = {
|
|
|
1998
2114
|
{
|
|
1999
2115
|
if: { size: 'large' },
|
|
2000
2116
|
tokens: {
|
|
2117
|
+
iconMarginTop: 2,
|
|
2001
2118
|
itemFontSize: 20,
|
|
2002
2119
|
itemIconSize: 20,
|
|
2003
2120
|
itemLineHeight: 1.4,
|
|
@@ -2006,7 +2123,12 @@ module.exports = {
|
|
|
2006
2123
|
},
|
|
2007
2124
|
{
|
|
2008
2125
|
if: { size: 'small' },
|
|
2009
|
-
tokens: {
|
|
2126
|
+
tokens: {
|
|
2127
|
+
iconMarginTop: 1,
|
|
2128
|
+
itemFontSize: 14,
|
|
2129
|
+
itemIconSize: 14,
|
|
2130
|
+
listGutter: 10
|
|
2131
|
+
}
|
|
2010
2132
|
},
|
|
2011
2133
|
{ if: { compact: true }, tokens: { itemLineHeight: 1.2 } },
|
|
2012
2134
|
{
|
|
@@ -2021,7 +2143,7 @@ module.exports = {
|
|
|
2021
2143
|
tokens: {
|
|
2022
2144
|
dividerColor: '#c9c8c8',
|
|
2023
2145
|
dividerSize: 1,
|
|
2024
|
-
iconMarginTop:
|
|
2146
|
+
iconMarginTop: 2,
|
|
2025
2147
|
interItemMargin: 8,
|
|
2026
2148
|
interItemMarginWithDivider: 16,
|
|
2027
2149
|
itemBulletColor: '#7c1366',
|
|
@@ -2031,7 +2153,7 @@ module.exports = {
|
|
|
2031
2153
|
itemBulletWidth: 4,
|
|
2032
2154
|
itemFontName: 'StagSans',
|
|
2033
2155
|
itemFontSize: 16,
|
|
2034
|
-
itemFontWeight: '
|
|
2156
|
+
itemFontWeight: '400',
|
|
2035
2157
|
itemIconColor: '#7c1366',
|
|
2036
2158
|
itemIconSize: 16,
|
|
2037
2159
|
itemLineHeight: 1.3,
|
|
@@ -2310,7 +2432,6 @@ module.exports = {
|
|
|
2310
2432
|
if: { size: 'large' },
|
|
2311
2433
|
tokens: { itemFontSize: 20, itemLineHeight: 1.4 }
|
|
2312
2434
|
},
|
|
2313
|
-
{ if: { size: 'medium' }, tokens: {} },
|
|
2314
2435
|
{
|
|
2315
2436
|
if: { size: 'small' },
|
|
2316
2437
|
tokens: { itemFontSize: 14, itemLineHeight: 1.42857142857 }
|
|
@@ -2632,6 +2753,23 @@ module.exports = {
|
|
|
2632
2753
|
outlineWidth: 1
|
|
2633
2754
|
}
|
|
2634
2755
|
},
|
|
2756
|
+
QuantitySelector: {
|
|
2757
|
+
appearances: { alternative: { type: 'variant', values: [ true ] } },
|
|
2758
|
+
rules: [ { if: { alternative: true }, tokens: { padding: 0 } } ],
|
|
2759
|
+
tokens: {
|
|
2760
|
+
backgroundColor: null,
|
|
2761
|
+
borderColor: null,
|
|
2762
|
+
iconColor: null,
|
|
2763
|
+
iconSize: 16,
|
|
2764
|
+
inputBackgroundColor: null,
|
|
2765
|
+
inputBorderColor: null,
|
|
2766
|
+
inputBorderWidth: 1,
|
|
2767
|
+
leftIcon: PaletteIconSubtract,
|
|
2768
|
+
padding: 16,
|
|
2769
|
+
rightIcon: PaletteIconAdd,
|
|
2770
|
+
textColor: null
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2635
2773
|
QuickLinks: {
|
|
2636
2774
|
appearances: {
|
|
2637
2775
|
viewport: {
|
|
@@ -3511,6 +3649,55 @@ module.exports = {
|
|
|
3511
3649
|
thickness: 4
|
|
3512
3650
|
}
|
|
3513
3651
|
},
|
|
3652
|
+
SplashButton: {
|
|
3653
|
+
appearances: {
|
|
3654
|
+
hover: {
|
|
3655
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3656
|
+
platforms: [ 'rn' ],
|
|
3657
|
+
type: 'state',
|
|
3658
|
+
values: [ true ]
|
|
3659
|
+
}
|
|
3660
|
+
},
|
|
3661
|
+
rules: [],
|
|
3662
|
+
tokens: {
|
|
3663
|
+
buttonContentBackground: null,
|
|
3664
|
+
buttonContentChildrenBackground: null,
|
|
3665
|
+
playIcon: PaletteIconPlayVideo,
|
|
3666
|
+
playIconColor: '#ffffff'
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
SplashButtonWithDetails: {
|
|
3670
|
+
appearances: {
|
|
3671
|
+
hover: {
|
|
3672
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3673
|
+
platforms: [ 'rn' ],
|
|
3674
|
+
type: 'state',
|
|
3675
|
+
values: [ true ]
|
|
3676
|
+
}
|
|
3677
|
+
},
|
|
3678
|
+
rules: [
|
|
3679
|
+
{
|
|
3680
|
+
if: { hover: true },
|
|
3681
|
+
tokens: { buttonContentChildrenBackground: null }
|
|
3682
|
+
}
|
|
3683
|
+
],
|
|
3684
|
+
tokens: {
|
|
3685
|
+
buttonBackground: '#ffffff',
|
|
3686
|
+
buttonBorderColor: null,
|
|
3687
|
+
buttonBottomPosition: 24,
|
|
3688
|
+
buttonContentBackground: null,
|
|
3689
|
+
buttonContentChildrenBackground: null,
|
|
3690
|
+
buttonLeftPosition: 24,
|
|
3691
|
+
buttonMinHeight: 64,
|
|
3692
|
+
buttonPaddingLeft: 16,
|
|
3693
|
+
buttonPaddingRight: 16,
|
|
3694
|
+
buttonRadius: 32,
|
|
3695
|
+
detailsContainerPadding: 8,
|
|
3696
|
+
playIcon: PaletteIconPlayVideo,
|
|
3697
|
+
playIconColor: '#ffffff',
|
|
3698
|
+
playIconContainerBackground: null
|
|
3699
|
+
}
|
|
3700
|
+
},
|
|
3514
3701
|
StackView: {
|
|
3515
3702
|
appearances: {},
|
|
3516
3703
|
rules: [],
|
|
@@ -3602,6 +3789,69 @@ module.exports = {
|
|
|
3602
3789
|
showStepTrackerLabel: true
|
|
3603
3790
|
}
|
|
3604
3791
|
},
|
|
3792
|
+
StoryCard: {
|
|
3793
|
+
appearances: {
|
|
3794
|
+
focus: {
|
|
3795
|
+
description: "Currently only web has good support for this. Applies when an interactive component's focus handler is triggered, such as keyboard tabbing or selection.",
|
|
3796
|
+
platforms: [ 'rn' ],
|
|
3797
|
+
type: 'state',
|
|
3798
|
+
values: [ true ]
|
|
3799
|
+
},
|
|
3800
|
+
hover: {
|
|
3801
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3802
|
+
platforms: [ 'rn' ],
|
|
3803
|
+
type: 'state',
|
|
3804
|
+
values: [ true ]
|
|
3805
|
+
},
|
|
3806
|
+
pressed: {
|
|
3807
|
+
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.',
|
|
3808
|
+
type: 'state',
|
|
3809
|
+
values: [ true ]
|
|
3810
|
+
}
|
|
3811
|
+
},
|
|
3812
|
+
rules: [
|
|
3813
|
+
{ if: { hover: true }, tokens: { borderWidth: 2 } },
|
|
3814
|
+
{
|
|
3815
|
+
if: { pressed: true },
|
|
3816
|
+
tokens: { backgroundColor: '#e6e6e6' }
|
|
3817
|
+
},
|
|
3818
|
+
{
|
|
3819
|
+
if: { focus: true },
|
|
3820
|
+
tokens: {
|
|
3821
|
+
outerBorderColor: '#016b6a',
|
|
3822
|
+
outerBorderGap: 2,
|
|
3823
|
+
outerBorderWidth: 2
|
|
3824
|
+
}
|
|
3825
|
+
}
|
|
3826
|
+
],
|
|
3827
|
+
tokens: {
|
|
3828
|
+
backgroundColor: '#ffffff',
|
|
3829
|
+
borderColor: '#efefef',
|
|
3830
|
+
borderRadius: 6,
|
|
3831
|
+
borderWidth: 1,
|
|
3832
|
+
contentAlignItems: 'stretch',
|
|
3833
|
+
contentFlexGrow: 0,
|
|
3834
|
+
contentFlexShrink: 0,
|
|
3835
|
+
contentJustifyContent: 'flex-start',
|
|
3836
|
+
flex: 1,
|
|
3837
|
+
minWidth: 0,
|
|
3838
|
+
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
3839
|
+
outerBorderGap: 0,
|
|
3840
|
+
outerBorderWidth: 0,
|
|
3841
|
+
paddingBottom: 0,
|
|
3842
|
+
paddingLeft: 0,
|
|
3843
|
+
paddingRight: 0,
|
|
3844
|
+
paddingTop: 0,
|
|
3845
|
+
shadow: {
|
|
3846
|
+
blur: 0,
|
|
3847
|
+
color: 'rgba(0, 0, 0, 0)',
|
|
3848
|
+
inset: false,
|
|
3849
|
+
offsetX: 0,
|
|
3850
|
+
offsetY: 0,
|
|
3851
|
+
spread: 0
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
},
|
|
3605
3855
|
Table: {
|
|
3606
3856
|
appearances: { spacing: { type: 'variant', values: [ 'compact' ] } },
|
|
3607
3857
|
rules: [
|
|
@@ -3898,6 +4148,74 @@ module.exports = {
|
|
|
3898
4148
|
width: null
|
|
3899
4149
|
}
|
|
3900
4150
|
},
|
|
4151
|
+
TermsAndConditions: {
|
|
4152
|
+
appearances: {
|
|
4153
|
+
expanded: {
|
|
4154
|
+
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
4155
|
+
type: 'state',
|
|
4156
|
+
values: [ true ]
|
|
4157
|
+
}
|
|
4158
|
+
},
|
|
4159
|
+
rules: [
|
|
4160
|
+
{
|
|
4161
|
+
if: { expanded: true },
|
|
4162
|
+
tokens: { icon: PaletteIconChevronUp }
|
|
4163
|
+
}
|
|
4164
|
+
],
|
|
4165
|
+
tokens: {
|
|
4166
|
+
contentPaddingBottom: 8,
|
|
4167
|
+
contentPaddingLeft: 16,
|
|
4168
|
+
expandBaseBorderWidth: 0,
|
|
4169
|
+
expandContentPaddingBottom: 16,
|
|
4170
|
+
expandContentPaddingLeft: 16,
|
|
4171
|
+
expandContentPaddingRight: 16,
|
|
4172
|
+
expandContentPaddingTop: 16,
|
|
4173
|
+
expandIconContainerAlignItems: 'center',
|
|
4174
|
+
expandIconContainerBorder: 1,
|
|
4175
|
+
expandIconContainerBorderColor: '#efefef',
|
|
4176
|
+
expandIconContainerHeight: 32,
|
|
4177
|
+
expandIconContainerJustifyContent: 'center',
|
|
4178
|
+
expandIconContainerMarginX: 0,
|
|
4179
|
+
expandIconContainerMarginY: 12,
|
|
4180
|
+
expandIconContainerWidth: 32,
|
|
4181
|
+
expandTitleColor: '#efefef',
|
|
4182
|
+
expandTitleFontSize: 16,
|
|
4183
|
+
expandTitleLineHeight: 1.5,
|
|
4184
|
+
expandTitleMarginX: 4,
|
|
4185
|
+
expandTitleMarginY: 0,
|
|
4186
|
+
icon: PaletteIconChevronDown,
|
|
4187
|
+
listColor: '#016b6a',
|
|
4188
|
+
listFontName: 'StagSans',
|
|
4189
|
+
listFontSize: 14,
|
|
4190
|
+
listFontWeight: '400',
|
|
4191
|
+
listLineHeight: 1.42857142857,
|
|
4192
|
+
listMarginBottom: 16,
|
|
4193
|
+
listMarginLeft: 32,
|
|
4194
|
+
mdContentPaddingBottom: 16,
|
|
4195
|
+
mdContentPaddingLeft: 48,
|
|
4196
|
+
orderedPadding: 0,
|
|
4197
|
+
titleColor: '#016b6a',
|
|
4198
|
+
titleFontSize: 14,
|
|
4199
|
+
titleLineHeight: 1.42857142857,
|
|
4200
|
+
titlePaddingLeft: 8,
|
|
4201
|
+
unorderedPadding: 0
|
|
4202
|
+
}
|
|
4203
|
+
},
|
|
4204
|
+
Testimonial: {
|
|
4205
|
+
appearances: {},
|
|
4206
|
+
rules: [],
|
|
4207
|
+
tokens: {
|
|
4208
|
+
dividerBackgroundColor: '#ffffff',
|
|
4209
|
+
dividerBorder: 1,
|
|
4210
|
+
figcaptionGap: 12,
|
|
4211
|
+
icon: PaletteIconArrowLeft,
|
|
4212
|
+
iconColor: '#ffffff',
|
|
4213
|
+
imageSize: 48,
|
|
4214
|
+
quoteContainerGap: 4,
|
|
4215
|
+
testimonialContainerGap: 12,
|
|
4216
|
+
textColor: '#ffffff'
|
|
4217
|
+
}
|
|
4218
|
+
},
|
|
3901
4219
|
TextArea: {
|
|
3902
4220
|
appearances: {},
|
|
3903
4221
|
rules: [],
|
|
@@ -4051,8 +4369,6 @@ module.exports = {
|
|
|
4051
4369
|
animationColorBefore: '#ffffff',
|
|
4052
4370
|
animationDivColorAfter: '#ffffff',
|
|
4053
4371
|
animationDivColorBefore: '#ffffff',
|
|
4054
|
-
animationFillColorAfter: '#ffffff',
|
|
4055
|
-
animationFillColorBefore: '#ffffff',
|
|
4056
4372
|
animationHeightAfter: 24,
|
|
4057
4373
|
animationHeightBefore: 0,
|
|
4058
4374
|
animationPaddingBottomAfter: 16,
|
|
@@ -4423,6 +4739,91 @@ module.exports = {
|
|
|
4423
4739
|
textTransform: 'none'
|
|
4424
4740
|
}
|
|
4425
4741
|
},
|
|
4742
|
+
Video: {
|
|
4743
|
+
appearances: {},
|
|
4744
|
+
rules: [],
|
|
4745
|
+
tokens: {
|
|
4746
|
+
borderColor: '#000000',
|
|
4747
|
+
pauseIcon: PaletteIconAdd,
|
|
4748
|
+
playIcon: PaletteIconAdd,
|
|
4749
|
+
replayIcon: PaletteIconAdd
|
|
4750
|
+
}
|
|
4751
|
+
},
|
|
4752
|
+
VideoButton: { appearances: {}, rules: [], tokens: { color: '#ffffff' } },
|
|
4753
|
+
VideoControlBar: {
|
|
4754
|
+
appearances: {},
|
|
4755
|
+
rules: [],
|
|
4756
|
+
tokens: {
|
|
4757
|
+
captionsIcon: PaletteIconAdd,
|
|
4758
|
+
maximizeIcon: PaletteIconAdd,
|
|
4759
|
+
menuBottom: 64,
|
|
4760
|
+
menuMarginLeft: 16,
|
|
4761
|
+
menuRight: 32,
|
|
4762
|
+
minimizeIcon: PaletteIconAdd,
|
|
4763
|
+
paddingBottom: 16,
|
|
4764
|
+
paddingLeft: 48,
|
|
4765
|
+
paddingLeftCompactMode: 16,
|
|
4766
|
+
paddingRight: 48,
|
|
4767
|
+
paddingRightCompactMode: 16,
|
|
4768
|
+
paddingTop: 16,
|
|
4769
|
+
settingsIcon: PaletteIconSettings
|
|
4770
|
+
}
|
|
4771
|
+
},
|
|
4772
|
+
VideoMenu: {
|
|
4773
|
+
appearances: {},
|
|
4774
|
+
rules: [],
|
|
4775
|
+
tokens: {
|
|
4776
|
+
background: '#000000',
|
|
4777
|
+
checkMarkFocusColor: '#016b6a',
|
|
4778
|
+
checkMarkHeight: 24,
|
|
4779
|
+
checkMarkHoverColor: '#016b6a',
|
|
4780
|
+
checkMarkIcon: PaletteIconCheck,
|
|
4781
|
+
checkMarkSelectedColor: '#000000',
|
|
4782
|
+
checkMarkUnselectedColor: 'rgba(0, 0, 0, 0)',
|
|
4783
|
+
checkMarkWidth: 24,
|
|
4784
|
+
padding: 16
|
|
4785
|
+
}
|
|
4786
|
+
},
|
|
4787
|
+
VideoMiddleControlButton: {
|
|
4788
|
+
appearances: {},
|
|
4789
|
+
rules: [],
|
|
4790
|
+
tokens: {
|
|
4791
|
+
background: '#000000',
|
|
4792
|
+
height: 64,
|
|
4793
|
+
iconColor: '#ffffff',
|
|
4794
|
+
width: 64
|
|
4795
|
+
}
|
|
4796
|
+
},
|
|
4797
|
+
VideoProgressBar: {
|
|
4798
|
+
appearances: {},
|
|
4799
|
+
rules: [],
|
|
4800
|
+
tokens: {
|
|
4801
|
+
rangeBackground: 'rgba(0, 0, 0, 0)',
|
|
4802
|
+
thumbBackground: '#ffffff',
|
|
4803
|
+
thumbHeight: 8,
|
|
4804
|
+
thumbWidth: 8,
|
|
4805
|
+
timestampMarginLeft: 8,
|
|
4806
|
+
timestampMarginRight: 8,
|
|
4807
|
+
trackGradientEnd: '#016b6a',
|
|
4808
|
+
trackGradientStart: '#016b6a'
|
|
4809
|
+
}
|
|
4810
|
+
},
|
|
4811
|
+
VideoVolumeSlider: {
|
|
4812
|
+
appearances: {},
|
|
4813
|
+
rules: [],
|
|
4814
|
+
tokens: {
|
|
4815
|
+
marginLeft: 16,
|
|
4816
|
+
marginRight: 16,
|
|
4817
|
+
mutedIcon: PaletteIconAdd,
|
|
4818
|
+
rangeBackground: 'rgba(0, 0, 0, 0)',
|
|
4819
|
+
thumbBackground: '#ffffff',
|
|
4820
|
+
thumbHeight: 8,
|
|
4821
|
+
thumbWidth: 8,
|
|
4822
|
+
trackGradientEnd: '#ffffff',
|
|
4823
|
+
trackGradientStart: '#ffffff',
|
|
4824
|
+
unmutedIcon: PaletteIconAdd
|
|
4825
|
+
}
|
|
4826
|
+
},
|
|
4426
4827
|
WaffleGrid: {
|
|
4427
4828
|
appearances: {},
|
|
4428
4829
|
rules: [],
|
|
@@ -4492,5 +4893,5 @@ module.exports = {
|
|
|
4492
4893
|
tokens: { size: 96 }
|
|
4493
4894
|
}
|
|
4494
4895
|
},
|
|
4495
|
-
metadata: { name: 'theme-koodo', themeTokensVersion: '2.
|
|
4896
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '2.24.0' }
|
|
4496
4897
|
}
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
},
|
|
6
6
|
"description": "Koodo theme",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@telus-uds/palette-koodo": "^0.
|
|
9
|
-
"@telus-uds/system-theme-tokens": "^2.
|
|
8
|
+
"@telus-uds/palette-koodo": "^0.14.0",
|
|
9
|
+
"@telus-uds/system-theme-tokens": "^2.24.0"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"build",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"main": "build/rn/theme.js",
|
|
21
21
|
"name": "@telus-uds/theme-koodo",
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@telus-uds/palette-koodo": "^0.
|
|
23
|
+
"@telus-uds/palette-koodo": "^0.14.0"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"build": "UDS_PALETTE=@telus-uds/palette-koodo system-tokens-build-theme",
|
|
32
32
|
"dev": "nodemon -w src -x 'npm run build'"
|
|
33
33
|
},
|
|
34
|
-
"version": "3.
|
|
34
|
+
"version": "3.25.0"
|
|
35
35
|
}
|