@telus-uds/theme-koodo 3.24.0 → 3.26.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 +1674 -724
- package/build/android/theme.json +495 -89
- package/build/ios/schema.json +1674 -724
- package/build/ios/theme.json +495 -89
- package/build/rn/schema.json +1674 -724
- package/build/rn/theme.js +340 -52
- package/package.json +4 -4
- package/theme.json +333 -48
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Tue, 09 May 2023 00:18:42 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -14,9 +14,9 @@ const PaletteIconArrowRight = require('@telus-uds/palette-koodo/build/rn/icons/A
|
|
|
14
14
|
const PaletteIconArrowLeft = require('@telus-uds/palette-koodo/build/rn/icons/ArrowLeft')
|
|
15
15
|
const PaletteIconCheckCircledFilled = require('@telus-uds/palette-koodo/build/rn/icons/CheckCircledFilled')
|
|
16
16
|
const PaletteIconCaution = require('@telus-uds/palette-koodo/build/rn/icons/Caution')
|
|
17
|
+
const PaletteIconClose = require('@telus-uds/palette-koodo/build/rn/icons/Close')
|
|
17
18
|
const PaletteIconAdd = require('@telus-uds/palette-koodo/build/rn/icons/Add')
|
|
18
19
|
const PaletteIconSubtract = require('@telus-uds/palette-koodo/build/rn/icons/Subtract')
|
|
19
|
-
const PaletteIconClose = require('@telus-uds/palette-koodo/build/rn/icons/Close')
|
|
20
20
|
const PaletteIconExpand = require('@telus-uds/palette-koodo/build/rn/icons/Expand')
|
|
21
21
|
const PaletteIconPlayVideo = require('@telus-uds/palette-koodo/build/rn/icons/PlayVideo')
|
|
22
22
|
const PaletteIconTimes = require('@telus-uds/palette-koodo/build/rn/icons/Times')
|
|
@@ -212,15 +212,30 @@ module.exports = {
|
|
|
212
212
|
tokens: { backgroundColor: '#016b6a' }
|
|
213
213
|
}
|
|
214
214
|
],
|
|
215
|
-
tokens: { backgroundColor: '
|
|
215
|
+
tokens: { backgroundColor: 'rgba(0, 0, 0, 0)', gradient: null }
|
|
216
216
|
},
|
|
217
217
|
Breadcrumbs: {
|
|
218
218
|
appearances: { inverse: { type: 'variant', values: [ true ] } },
|
|
219
|
-
rules: [
|
|
219
|
+
rules: [
|
|
220
|
+
{
|
|
221
|
+
if: { inverse: true },
|
|
222
|
+
tokens: {
|
|
223
|
+
color: '#e5f7fb',
|
|
224
|
+
currentColor: '#ffffff',
|
|
225
|
+
iconColor: '#c9c8c8'
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
],
|
|
220
229
|
tokens: {
|
|
230
|
+
color: '#016b6a',
|
|
231
|
+
currentColor: '#016b6a',
|
|
232
|
+
fontName: 'StagSans',
|
|
233
|
+
fontSize: 14,
|
|
234
|
+
fontWeight: '600',
|
|
221
235
|
icon: PaletteIconChevronRight,
|
|
222
|
-
iconColor:
|
|
223
|
-
iconPadding:
|
|
236
|
+
iconColor: '#016b6a',
|
|
237
|
+
iconPadding: 4,
|
|
238
|
+
iconSize: 20,
|
|
224
239
|
listItemPadding: 0
|
|
225
240
|
}
|
|
226
241
|
},
|
|
@@ -1221,20 +1236,20 @@ module.exports = {
|
|
|
1221
1236
|
},
|
|
1222
1237
|
{
|
|
1223
1238
|
if: { size: 'large' },
|
|
1224
|
-
tokens: {
|
|
1239
|
+
tokens: { fontSize: 20, iconSize: 24, textLineHeight: 2.15 }
|
|
1225
1240
|
},
|
|
1226
1241
|
{
|
|
1227
1242
|
if: { size: 'small' },
|
|
1228
|
-
tokens: {
|
|
1243
|
+
tokens: { fontSize: 14, iconSize: 16, textLineHeight: 2.15 }
|
|
1229
1244
|
},
|
|
1230
1245
|
{
|
|
1231
1246
|
if: { size: 'micro' },
|
|
1232
|
-
tokens: {
|
|
1247
|
+
tokens: { fontSize: 12, iconSize: 16, textLineHeight: 2.25 }
|
|
1233
1248
|
}
|
|
1234
1249
|
],
|
|
1235
1250
|
tokens: {
|
|
1236
1251
|
color: '#016b6a',
|
|
1237
|
-
|
|
1252
|
+
fontSize: 16,
|
|
1238
1253
|
iconDisplace: 0,
|
|
1239
1254
|
iconSize: 18,
|
|
1240
1255
|
iconSpace: 1,
|
|
@@ -1373,6 +1388,17 @@ module.exports = {
|
|
|
1373
1388
|
validInputMixin: null
|
|
1374
1389
|
}
|
|
1375
1390
|
},
|
|
1391
|
+
Disclaimer: {
|
|
1392
|
+
appearances: {},
|
|
1393
|
+
rules: [],
|
|
1394
|
+
tokens: {
|
|
1395
|
+
color: null,
|
|
1396
|
+
fontName: 'StagSans',
|
|
1397
|
+
fontSize: 14,
|
|
1398
|
+
fontWeight: '300',
|
|
1399
|
+
lineHeight: 1.42857142857
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1376
1402
|
Divider: {
|
|
1377
1403
|
appearances: {
|
|
1378
1404
|
decorative: {
|
|
@@ -1529,6 +1555,7 @@ module.exports = {
|
|
|
1529
1555
|
closeButtonMarginRight: 12,
|
|
1530
1556
|
closeButtonMarginTop: 12,
|
|
1531
1557
|
closeButtonWidth: 24,
|
|
1558
|
+
closeIcon: PaletteIconClose,
|
|
1532
1559
|
footnoteBackground: '#fafafa',
|
|
1533
1560
|
footnoteBodyBackground: '#fafafa',
|
|
1534
1561
|
footnoteBodyPaddingBottom: 32,
|
|
@@ -1550,7 +1577,14 @@ module.exports = {
|
|
|
1550
1577
|
FootnoteLink: {
|
|
1551
1578
|
appearances: {},
|
|
1552
1579
|
rules: [],
|
|
1553
|
-
tokens: {
|
|
1580
|
+
tokens: {
|
|
1581
|
+
color: '#000000',
|
|
1582
|
+
fontName: 'StagSans',
|
|
1583
|
+
fontWeight: '400',
|
|
1584
|
+
lineHeight: 1,
|
|
1585
|
+
paddingLeft: 2,
|
|
1586
|
+
paddingRight: 2
|
|
1587
|
+
}
|
|
1554
1588
|
},
|
|
1555
1589
|
HorizontalScrollButton: {
|
|
1556
1590
|
appearances: {
|
|
@@ -2114,6 +2148,7 @@ module.exports = {
|
|
|
2114
2148
|
{
|
|
2115
2149
|
if: { size: 'large' },
|
|
2116
2150
|
tokens: {
|
|
2151
|
+
iconMarginTop: 2,
|
|
2117
2152
|
itemFontSize: 20,
|
|
2118
2153
|
itemIconSize: 20,
|
|
2119
2154
|
itemLineHeight: 1.4,
|
|
@@ -2122,7 +2157,12 @@ module.exports = {
|
|
|
2122
2157
|
},
|
|
2123
2158
|
{
|
|
2124
2159
|
if: { size: 'small' },
|
|
2125
|
-
tokens: {
|
|
2160
|
+
tokens: {
|
|
2161
|
+
iconMarginTop: 1,
|
|
2162
|
+
itemFontSize: 14,
|
|
2163
|
+
itemIconSize: 14,
|
|
2164
|
+
listGutter: 10
|
|
2165
|
+
}
|
|
2126
2166
|
},
|
|
2127
2167
|
{ if: { compact: true }, tokens: { itemLineHeight: 1.2 } },
|
|
2128
2168
|
{
|
|
@@ -2137,7 +2177,7 @@ module.exports = {
|
|
|
2137
2177
|
tokens: {
|
|
2138
2178
|
dividerColor: '#c9c8c8',
|
|
2139
2179
|
dividerSize: 1,
|
|
2140
|
-
iconMarginTop:
|
|
2180
|
+
iconMarginTop: 2,
|
|
2141
2181
|
interItemMargin: 8,
|
|
2142
2182
|
interItemMarginWithDivider: 16,
|
|
2143
2183
|
itemBulletColor: '#7c1366',
|
|
@@ -2147,7 +2187,7 @@ module.exports = {
|
|
|
2147
2187
|
itemBulletWidth: 4,
|
|
2148
2188
|
itemFontName: 'StagSans',
|
|
2149
2189
|
itemFontSize: 16,
|
|
2150
|
-
itemFontWeight: '
|
|
2190
|
+
itemFontWeight: '400',
|
|
2151
2191
|
itemIconColor: '#7c1366',
|
|
2152
2192
|
itemIconSize: 16,
|
|
2153
2193
|
itemLineHeight: 1.3,
|
|
@@ -2337,6 +2377,122 @@ module.exports = {
|
|
|
2337
2377
|
subHeadingMarginTop: 8
|
|
2338
2378
|
}
|
|
2339
2379
|
},
|
|
2380
|
+
NavigationBar: {
|
|
2381
|
+
appearances: {
|
|
2382
|
+
expanded: {
|
|
2383
|
+
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
2384
|
+
type: 'state',
|
|
2385
|
+
values: [ true ]
|
|
2386
|
+
},
|
|
2387
|
+
focus: {
|
|
2388
|
+
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.",
|
|
2389
|
+
platforms: [ 'rn' ],
|
|
2390
|
+
type: 'state',
|
|
2391
|
+
values: [ true ]
|
|
2392
|
+
},
|
|
2393
|
+
hover: {
|
|
2394
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
2395
|
+
platforms: [ 'rn' ],
|
|
2396
|
+
type: 'state',
|
|
2397
|
+
values: [ true ]
|
|
2398
|
+
},
|
|
2399
|
+
pressed: {
|
|
2400
|
+
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.',
|
|
2401
|
+
type: 'state',
|
|
2402
|
+
values: [ true ]
|
|
2403
|
+
},
|
|
2404
|
+
selected: {
|
|
2405
|
+
description: 'Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.',
|
|
2406
|
+
type: 'state',
|
|
2407
|
+
values: [ true ]
|
|
2408
|
+
},
|
|
2409
|
+
viewport: {
|
|
2410
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
2411
|
+
type: 'state',
|
|
2412
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
rules: [
|
|
2416
|
+
{
|
|
2417
|
+
if: { selected: true },
|
|
2418
|
+
tokens: {
|
|
2419
|
+
backgroundColor: '#efefef',
|
|
2420
|
+
borderColor: '#efefef',
|
|
2421
|
+
color: '#016b6a',
|
|
2422
|
+
fontName: 'StagSans',
|
|
2423
|
+
fontWeight: '700'
|
|
2424
|
+
}
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
if: { focus: true },
|
|
2428
|
+
tokens: {
|
|
2429
|
+
backgroundColor: '#ffffff',
|
|
2430
|
+
borderColor: '#016b6a',
|
|
2431
|
+
borderWidth: 3,
|
|
2432
|
+
color: '#016b6a'
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
if: { focus: true, pressed: true },
|
|
2437
|
+
tokens: {
|
|
2438
|
+
backgroundColor: '#016b6a',
|
|
2439
|
+
borderColor: '#016b6a',
|
|
2440
|
+
color: '#ffffff'
|
|
2441
|
+
}
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
if: { hover: true },
|
|
2445
|
+
tokens: {
|
|
2446
|
+
backgroundColor: '#1b4746',
|
|
2447
|
+
borderColor: '#016b6a',
|
|
2448
|
+
color: '#016b6a'
|
|
2449
|
+
}
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
if: { pressed: true },
|
|
2453
|
+
tokens: {
|
|
2454
|
+
backgroundColor: '#efefef',
|
|
2455
|
+
borderColor: '#016b6a',
|
|
2456
|
+
borderWidth: 1,
|
|
2457
|
+
color: '#016b6a'
|
|
2458
|
+
}
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
if: { viewport: [ 'xs', 'sm', 'md' ] },
|
|
2462
|
+
tokens: { textAlign: 'flex-start', width: 288 }
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
if: { expanded: true },
|
|
2466
|
+
tokens: { icoMenu: PaletteIconChevronUp }
|
|
2467
|
+
}
|
|
2468
|
+
],
|
|
2469
|
+
tokens: {
|
|
2470
|
+
alignSelf: 'flex-start',
|
|
2471
|
+
backgroundColor: '#ffffff',
|
|
2472
|
+
borderColor: '#ffffff',
|
|
2473
|
+
borderRadius: 32,
|
|
2474
|
+
borderWidth: 1,
|
|
2475
|
+
color: '#efefef',
|
|
2476
|
+
fontName: 'StagSans',
|
|
2477
|
+
fontSize: 14,
|
|
2478
|
+
fontWeight: '400',
|
|
2479
|
+
icoMenu: PaletteIconChevronDown,
|
|
2480
|
+
lineHeight: 1.14285714286,
|
|
2481
|
+
minWidth: 0,
|
|
2482
|
+
opacity: 1,
|
|
2483
|
+
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2484
|
+
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
2485
|
+
outerBorderGap: 0,
|
|
2486
|
+
outerBorderWidth: 1,
|
|
2487
|
+
paddingBottom: 8,
|
|
2488
|
+
paddingLeft: 16,
|
|
2489
|
+
paddingRight: 16,
|
|
2490
|
+
paddingTop: 8,
|
|
2491
|
+
shadow: null,
|
|
2492
|
+
textAlign: 'center',
|
|
2493
|
+
width: 0
|
|
2494
|
+
}
|
|
2495
|
+
},
|
|
2340
2496
|
Notification: {
|
|
2341
2497
|
appearances: {
|
|
2342
2498
|
style: { type: 'state', values: [ 'success', 'warning', 'error' ] },
|
|
@@ -2426,7 +2582,6 @@ module.exports = {
|
|
|
2426
2582
|
if: { size: 'large' },
|
|
2427
2583
|
tokens: { itemFontSize: 20, itemLineHeight: 1.4 }
|
|
2428
2584
|
},
|
|
2429
|
-
{ if: { size: 'medium' }, tokens: {} },
|
|
2430
2585
|
{
|
|
2431
2586
|
if: { size: 'small' },
|
|
2432
2587
|
tokens: { itemFontSize: 14, itemLineHeight: 1.42857142857 }
|
|
@@ -2695,18 +2850,95 @@ module.exports = {
|
|
|
2695
2850
|
}
|
|
2696
2851
|
},
|
|
2697
2852
|
PriceLockup: {
|
|
2698
|
-
appearances: {
|
|
2699
|
-
|
|
2853
|
+
appearances: {
|
|
2854
|
+
size: { type: 'variant', values: [ 'small', 'medium', 'large' ] },
|
|
2855
|
+
viewport: {
|
|
2856
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
2857
|
+
type: 'state',
|
|
2858
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
2859
|
+
}
|
|
2860
|
+
},
|
|
2861
|
+
rules: [
|
|
2862
|
+
{
|
|
2863
|
+
if: { size: 'small' },
|
|
2864
|
+
tokens: {
|
|
2865
|
+
amountFontSize: 36,
|
|
2866
|
+
centsFontSize: 20,
|
|
2867
|
+
centsLineHeight: 1.25,
|
|
2868
|
+
currencySymbolFontSize: 20,
|
|
2869
|
+
currencySymbolLineHeight: 1,
|
|
2870
|
+
rateFontSize: 16,
|
|
2871
|
+
rateLineHeight: 1.14285714286,
|
|
2872
|
+
topTextFontSize: 14,
|
|
2873
|
+
topTextLineHeight: 2.25
|
|
2874
|
+
}
|
|
2875
|
+
},
|
|
2876
|
+
{
|
|
2877
|
+
if: { size: 'large' },
|
|
2878
|
+
tokens: {
|
|
2879
|
+
amountFontSize: 54,
|
|
2880
|
+
centsFontName: 'StagSans',
|
|
2881
|
+
centsFontSize: 24,
|
|
2882
|
+
centsFontWeight: '600',
|
|
2883
|
+
centsLineHeight: 1.25,
|
|
2884
|
+
currencySymbolFontSize: 32,
|
|
2885
|
+
currencySymbolLineHeight: 1,
|
|
2886
|
+
rateFontName: 'StagSans',
|
|
2887
|
+
rateFontSize: 16,
|
|
2888
|
+
rateFontWeight: '600',
|
|
2889
|
+
rateLineHeight: 2,
|
|
2890
|
+
topTextFontSize: 16,
|
|
2891
|
+
topTextLineHeight: 2.25
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
{
|
|
2895
|
+
if: { size: 'large', viewport: [ 'lg', 'xl' ] },
|
|
2896
|
+
tokens: {
|
|
2897
|
+
centsFontName: 'StagSans',
|
|
2898
|
+
centsFontSize: 32,
|
|
2899
|
+
centsFontWeight: '700'
|
|
2900
|
+
}
|
|
2901
|
+
}
|
|
2902
|
+
],
|
|
2700
2903
|
tokens: {
|
|
2904
|
+
amountFontName: 'StagSans',
|
|
2905
|
+
amountFontSize: 44,
|
|
2906
|
+
amountFontWeight: '700',
|
|
2907
|
+
amountLetterSpacing: 0,
|
|
2908
|
+
amountLineHeight: 1,
|
|
2701
2909
|
bottomLinksMarginLeft: 4,
|
|
2702
|
-
|
|
2703
|
-
|
|
2910
|
+
bottomTextFontSize: 14,
|
|
2911
|
+
bottomTextLineHeight: 1.14285714286,
|
|
2912
|
+
bottomTextMarginTop: 0,
|
|
2913
|
+
centsFontName: 'StagSans',
|
|
2914
|
+
centsFontSize: 24,
|
|
2915
|
+
centsFontWeight: '700',
|
|
2916
|
+
centsLineHeight: 1.2,
|
|
2917
|
+
currencySymbolFontName: 'StagSans',
|
|
2918
|
+
currencySymbolFontSize: 24,
|
|
2919
|
+
currencySymbolFontWeight: '700',
|
|
2920
|
+
currencySymbolLineHeight: 1.2,
|
|
2921
|
+
dividerColor: null,
|
|
2704
2922
|
fontColor: '#000000',
|
|
2923
|
+
fontName: 'StagSans',
|
|
2924
|
+
fontWeight: '700',
|
|
2705
2925
|
footnoteGap: 4,
|
|
2926
|
+
footnoteLinkColor: '#016b6a',
|
|
2927
|
+
footnoteLinkFontName: 'StagSans',
|
|
2928
|
+
footnoteLinkFontSize: 14,
|
|
2929
|
+
footnoteLinkFontWeight: '600',
|
|
2706
2930
|
footnoteMarginTop: 4,
|
|
2707
|
-
priceMarginBottom:
|
|
2708
|
-
|
|
2931
|
+
priceMarginBottom: 0,
|
|
2932
|
+
rateFontName: 'StagSans',
|
|
2933
|
+
rateFontSize: 16,
|
|
2934
|
+
rateFontWeight: '700',
|
|
2935
|
+
rateLineHeight: 1.25,
|
|
2936
|
+
strikeThroughColor: '#000000',
|
|
2709
2937
|
strikeThroughHeight: 2,
|
|
2938
|
+
topTextFontName: 'StagSans',
|
|
2939
|
+
topTextFontSize: 16,
|
|
2940
|
+
topTextFontWeight: '700',
|
|
2941
|
+
topTextLineHeight: 1.5,
|
|
2710
2942
|
topTextMarginBottom: 4
|
|
2711
2943
|
}
|
|
2712
2944
|
},
|
|
@@ -3237,30 +3469,47 @@ module.exports = {
|
|
|
3237
3469
|
purpose: {
|
|
3238
3470
|
type: 'variant',
|
|
3239
3471
|
values: [ 'offer', 'default', 'editorial' ]
|
|
3240
|
-
}
|
|
3472
|
+
},
|
|
3473
|
+
wrap: { type: 'variant', values: [ true ] }
|
|
3241
3474
|
},
|
|
3242
|
-
rules: [
|
|
3475
|
+
rules: [
|
|
3476
|
+
{
|
|
3477
|
+
if: { purpose: 'editorial' },
|
|
3478
|
+
tokens: { backgroundColor: '#fbaf34' }
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
if: { purpose: 'offer' },
|
|
3482
|
+
tokens: { backgroundColor: '#7c1366', fontColor: '#ffffff' }
|
|
3483
|
+
},
|
|
3484
|
+
{
|
|
3485
|
+
if: { wrap: true },
|
|
3486
|
+
tokens: { paddingBottom: 6, paddingTop: 6 }
|
|
3487
|
+
}
|
|
3488
|
+
],
|
|
3243
3489
|
tokens: {
|
|
3244
|
-
backgroundColor: '#
|
|
3490
|
+
backgroundColor: '#c3efff',
|
|
3245
3491
|
borderRadius: 4,
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3492
|
+
borderRadiusBottomLeft: null,
|
|
3493
|
+
borderRadiusBottomRight: null,
|
|
3494
|
+
boxShadowColor: null,
|
|
3495
|
+
boxShadowPaddingBottom: null,
|
|
3496
|
+
boxShadowPaddingLeft: null,
|
|
3497
|
+
boxShadowPaddingRight: null,
|
|
3498
|
+
boxShadowPaddingTop: null,
|
|
3499
|
+
curveAfterBackgroundColor: null,
|
|
3500
|
+
curveAfterHeight: null,
|
|
3501
|
+
curveAfterRadius: null,
|
|
3502
|
+
curveAfterWidth: null,
|
|
3503
|
+
curveBackgroundColor: null,
|
|
3504
|
+
curveHeight: null,
|
|
3505
|
+
curveMarginTop: null,
|
|
3506
|
+
curveWidth: null,
|
|
3507
|
+
fontColor: '#000000',
|
|
3259
3508
|
gradient: null,
|
|
3260
|
-
paddingBottom:
|
|
3261
|
-
paddingLeft:
|
|
3262
|
-
paddingRight:
|
|
3263
|
-
paddingTop:
|
|
3509
|
+
paddingBottom: 2,
|
|
3510
|
+
paddingLeft: 12,
|
|
3511
|
+
paddingRight: 12,
|
|
3512
|
+
paddingTop: 2
|
|
3264
3513
|
}
|
|
3265
3514
|
},
|
|
3266
3515
|
Search: {
|
|
@@ -3857,23 +4106,26 @@ module.exports = {
|
|
|
3857
4106
|
],
|
|
3858
4107
|
tokens: {
|
|
3859
4108
|
cellBackground: '#ffffff',
|
|
3860
|
-
cellBoxShadowColor: '#
|
|
3861
|
-
cellHeadingBackground: '#
|
|
3862
|
-
cellHeadingBoxShadowColor: '#
|
|
4109
|
+
cellBoxShadowColor: '#efefef',
|
|
4110
|
+
cellHeadingBackground: '#c1f2e8',
|
|
4111
|
+
cellHeadingBoxShadowColor: '#efefef',
|
|
3863
4112
|
cellPaddingBottom: 16,
|
|
3864
4113
|
cellPaddingLeft: 16,
|
|
3865
4114
|
cellPaddingRight: 16,
|
|
3866
4115
|
cellPaddingTop: 16,
|
|
3867
4116
|
cellRowHeadingBackground: '#ffffff',
|
|
3868
4117
|
cellStickyShadow: {
|
|
3869
|
-
blur:
|
|
3870
|
-
color: 'rgba(
|
|
3871
|
-
inset:
|
|
4118
|
+
blur: 1,
|
|
4119
|
+
color: 'rgba(255, 255, 255, 0.8)',
|
|
4120
|
+
inset: true,
|
|
3872
4121
|
offsetX: 0,
|
|
3873
|
-
offsetY:
|
|
4122
|
+
offsetY: 1,
|
|
3874
4123
|
spread: 0
|
|
3875
4124
|
},
|
|
3876
|
-
cellSubheadingBackground: '#
|
|
4125
|
+
cellSubheadingBackground: '#fafafa',
|
|
4126
|
+
fontName: 'StagSans',
|
|
4127
|
+
fontSize: 16,
|
|
4128
|
+
fontWeight: '600',
|
|
3877
4129
|
tablePaddingBottom: 24
|
|
3878
4130
|
}
|
|
3879
4131
|
},
|
|
@@ -4364,8 +4616,6 @@ module.exports = {
|
|
|
4364
4616
|
animationColorBefore: '#ffffff',
|
|
4365
4617
|
animationDivColorAfter: '#ffffff',
|
|
4366
4618
|
animationDivColorBefore: '#ffffff',
|
|
4367
|
-
animationFillColorAfter: '#ffffff',
|
|
4368
|
-
animationFillColorBefore: '#ffffff',
|
|
4369
4619
|
animationHeightAfter: 24,
|
|
4370
4620
|
animationHeightBefore: 0,
|
|
4371
4621
|
animationPaddingBottomAfter: 16,
|
|
@@ -4791,6 +5041,44 @@ module.exports = {
|
|
|
4791
5041
|
width: 64
|
|
4792
5042
|
}
|
|
4793
5043
|
},
|
|
5044
|
+
VideoPicker: {
|
|
5045
|
+
appearances: {},
|
|
5046
|
+
rules: [],
|
|
5047
|
+
tokens: {
|
|
5048
|
+
framedContainerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
5049
|
+
framedContainerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
5050
|
+
framedContainerBorderRadius: 4,
|
|
5051
|
+
framedContainerBorderWidth: 1,
|
|
5052
|
+
framedContainerPadding: 24,
|
|
5053
|
+
framedMaxHeight: 640,
|
|
5054
|
+
stackViewDividerColor: 'rgba(0, 0, 0, 0)'
|
|
5055
|
+
}
|
|
5056
|
+
},
|
|
5057
|
+
VideoPickerSlider: {
|
|
5058
|
+
appearances: {},
|
|
5059
|
+
rules: [],
|
|
5060
|
+
tokens: {
|
|
5061
|
+
nextIcon: PaletteIconArrowRight,
|
|
5062
|
+
previousIcon: PaletteIconArrowLeft
|
|
5063
|
+
}
|
|
5064
|
+
},
|
|
5065
|
+
VideoPickerThumbnail: {
|
|
5066
|
+
appearances: {},
|
|
5067
|
+
rules: [],
|
|
5068
|
+
tokens: {
|
|
5069
|
+
borderColor: 'rgba(0, 0, 0, 0)',
|
|
5070
|
+
borderRadius: 4,
|
|
5071
|
+
borderWidth: 2,
|
|
5072
|
+
pressableBorderTopColor: 'rgba(0, 0, 0, 0)',
|
|
5073
|
+
pressableBorderTopWidth: 1,
|
|
5074
|
+
pressablePaddingBottom: 16,
|
|
5075
|
+
pressablePaddingHorizontal: 24,
|
|
5076
|
+
pressablePaddingVertical: 16,
|
|
5077
|
+
splashButtonRadius: 4,
|
|
5078
|
+
subTitleColor: 'rgba(0, 0, 0, 0)',
|
|
5079
|
+
titleColor: 'rgba(0, 0, 0, 0)'
|
|
5080
|
+
}
|
|
5081
|
+
},
|
|
4794
5082
|
VideoProgressBar: {
|
|
4795
5083
|
appearances: {},
|
|
4796
5084
|
rules: [],
|
|
@@ -4890,5 +5178,5 @@ module.exports = {
|
|
|
4890
5178
|
tokens: { size: 96 }
|
|
4891
5179
|
}
|
|
4892
5180
|
},
|
|
4893
|
-
metadata: { name: 'theme-koodo', themeTokensVersion: '2.
|
|
5181
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '2.25.0' }
|
|
4894
5182
|
}
|
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.15.0",
|
|
9
|
+
"@telus-uds/system-theme-tokens": "^2.25.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.15.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.26.0"
|
|
35
35
|
}
|