@telus-uds/theme-allium 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 +5401 -3565
- package/build/android/theme.json +836 -57
- package/build/ios/schema.json +5401 -3565
- package/build/ios/theme.json +836 -57
- package/build/rn/schema.json +5401 -3565
- package/build/rn/theme.js +450 -13
- package/package.json +5 -5
- package/theme.json +538 -16
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:01:35 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -22,9 +22,19 @@ const PaletteIconPlayVideo = require('@telus-uds/palette-allium/build/rn/icons/P
|
|
|
22
22
|
const PaletteIconStatusWarning = require('@telus-uds/palette-allium/build/rn/icons/StatusWarning')
|
|
23
23
|
const PaletteIconTimes = require('@telus-uds/palette-allium/build/rn/icons/Times')
|
|
24
24
|
const PaletteIconSearchBold = require('@telus-uds/palette-allium/build/rn/icons/SearchBold')
|
|
25
|
+
const PaletteIconPlaySolid = require('@telus-uds/palette-allium/build/rn/icons/PlaySolid')
|
|
26
|
+
const PaletteIconQuoteLeft = require('@telus-uds/palette-allium/build/rn/icons/QuoteLeft')
|
|
25
27
|
const PaletteIconInvisible = require('@telus-uds/palette-allium/build/rn/icons/Invisible')
|
|
26
28
|
const PaletteIconVisible = require('@telus-uds/palette-allium/build/rn/icons/Visible')
|
|
27
29
|
const PaletteIconQuestion = require('@telus-uds/palette-allium/build/rn/icons/Question')
|
|
30
|
+
const PaletteIconPause = require('@telus-uds/palette-allium/build/rn/icons/Pause')
|
|
31
|
+
const PaletteIconReplay = require('@telus-uds/palette-allium/build/rn/icons/Replay')
|
|
32
|
+
const PaletteIconClosedCaptions = require('@telus-uds/palette-allium/build/rn/icons/ClosedCaptions')
|
|
33
|
+
const PaletteIconFullscreenExpand = require('@telus-uds/palette-allium/build/rn/icons/FullscreenExpand')
|
|
34
|
+
const PaletteIconFullscreenMinimize = require('@telus-uds/palette-allium/build/rn/icons/FullscreenMinimize')
|
|
35
|
+
const PaletteIconSettingsSolid = require('@telus-uds/palette-allium/build/rn/icons/SettingsSolid')
|
|
36
|
+
const PaletteIconMuted = require('@telus-uds/palette-allium/build/rn/icons/Muted')
|
|
37
|
+
const PaletteIconUnmuted = require('@telus-uds/palette-allium/build/rn/icons/Unmuted')
|
|
28
38
|
|
|
29
39
|
module.exports = {
|
|
30
40
|
components: {
|
|
@@ -388,10 +398,15 @@ module.exports = {
|
|
|
388
398
|
type: 'variant',
|
|
389
399
|
values: [ true ]
|
|
390
400
|
},
|
|
401
|
+
viewport: {
|
|
402
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
403
|
+
type: 'state',
|
|
404
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
405
|
+
},
|
|
391
406
|
width: {
|
|
392
|
-
description: 'Available in default
|
|
407
|
+
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.',
|
|
393
408
|
type: 'variant',
|
|
394
|
-
values: [ 'full' ]
|
|
409
|
+
values: [ 'full', 'responsive' ]
|
|
395
410
|
}
|
|
396
411
|
},
|
|
397
412
|
rules: [
|
|
@@ -472,6 +487,10 @@ module.exports = {
|
|
|
472
487
|
tokens: { outerBorderColor: '#c12335' }
|
|
473
488
|
},
|
|
474
489
|
{ if: { width: 'full' }, tokens: { width: '100%' } },
|
|
490
|
+
{
|
|
491
|
+
if: { viewport: [ 'xs' ], width: 'responsive' },
|
|
492
|
+
tokens: { width: '100%' }
|
|
493
|
+
},
|
|
475
494
|
{
|
|
476
495
|
if: { size: 'small' },
|
|
477
496
|
tokens: { minWidth: 0, paddingBottom: 4, paddingTop: 4 }
|
|
@@ -1342,20 +1361,20 @@ module.exports = {
|
|
|
1342
1361
|
},
|
|
1343
1362
|
{
|
|
1344
1363
|
if: { size: 'large' },
|
|
1345
|
-
tokens: {
|
|
1364
|
+
tokens: { fontSize: 20, iconSize: 24, textLineHeight: 1.95 }
|
|
1346
1365
|
},
|
|
1347
1366
|
{
|
|
1348
1367
|
if: { size: 'small' },
|
|
1349
|
-
tokens: {
|
|
1368
|
+
tokens: { fontSize: 14, iconSize: 14, textLineHeight: 2.12 }
|
|
1350
1369
|
},
|
|
1351
1370
|
{
|
|
1352
1371
|
if: { size: 'micro' },
|
|
1353
|
-
tokens: {
|
|
1372
|
+
tokens: { fontSize: 12, iconSize: 12, textLineHeight: 1.92 }
|
|
1354
1373
|
}
|
|
1355
1374
|
],
|
|
1356
1375
|
tokens: {
|
|
1357
1376
|
color: '#2b8000',
|
|
1358
|
-
|
|
1377
|
+
fontSize: 16,
|
|
1359
1378
|
iconDisplace: 0,
|
|
1360
1379
|
iconSize: 24,
|
|
1361
1380
|
iconSpace: 1,
|
|
@@ -1366,6 +1385,85 @@ module.exports = {
|
|
|
1366
1385
|
textLineHeight: 2.25
|
|
1367
1386
|
}
|
|
1368
1387
|
},
|
|
1388
|
+
Countdown: {
|
|
1389
|
+
appearances: {
|
|
1390
|
+
feature: { type: 'variant', values: [ true ] },
|
|
1391
|
+
inverse: { type: 'variant', values: [ true ] },
|
|
1392
|
+
label: { type: 'variant', values: [ true ] },
|
|
1393
|
+
large: { type: 'variant', values: [ true ] },
|
|
1394
|
+
viewport: {
|
|
1395
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
1396
|
+
type: 'state',
|
|
1397
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
rules: [
|
|
1401
|
+
{
|
|
1402
|
+
if: { viewport: [ 'xs' ] },
|
|
1403
|
+
tokens: {
|
|
1404
|
+
containerPaddingBottomTop: 16,
|
|
1405
|
+
containerPaddingLeftRight: 24,
|
|
1406
|
+
labelFontSize: 14,
|
|
1407
|
+
labelLineHeight: 1.42857142857,
|
|
1408
|
+
textLineHeight: 1.42857142857
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
if: { large: true, viewport: [ 'xs' ] },
|
|
1413
|
+
tokens: { textFontSize: 28 }
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
if: { feature: true, viewport: [ 'xs' ] },
|
|
1417
|
+
tokens: { textFontSize: 28 }
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
if: { feature: true },
|
|
1421
|
+
tokens: {
|
|
1422
|
+
labelBorderColor: '#4b286d',
|
|
1423
|
+
textFontSize: 64,
|
|
1424
|
+
textLineHeight: 1.125,
|
|
1425
|
+
textTimerFontName: 'HelveticaNow',
|
|
1426
|
+
textTimerFontWeight: '300'
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
if: { large: true },
|
|
1431
|
+
tokens: {
|
|
1432
|
+
textFontSize: 64,
|
|
1433
|
+
textLineHeight: 1.125,
|
|
1434
|
+
textTimerFontName: 'HelveticaNow',
|
|
1435
|
+
textTimerFontWeight: '300'
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
if: { inverse: true },
|
|
1440
|
+
tokens: { labelBorderColor: '#ffffff' }
|
|
1441
|
+
}
|
|
1442
|
+
],
|
|
1443
|
+
tokens: {
|
|
1444
|
+
containerBorderRadius: 6,
|
|
1445
|
+
containerGradient: {
|
|
1446
|
+
angle: 135,
|
|
1447
|
+
stops: [
|
|
1448
|
+
{ color: '#4b286d', stop: 0 },
|
|
1449
|
+
{ color: '#e53293', stop: 1 }
|
|
1450
|
+
],
|
|
1451
|
+
type: 'linear'
|
|
1452
|
+
},
|
|
1453
|
+
containerInverseBorder: 2,
|
|
1454
|
+
containerInverseBorderColor: '#ffffff',
|
|
1455
|
+
containerPaddingBottomTop: 48,
|
|
1456
|
+
containerPaddingLeftRight: 64,
|
|
1457
|
+
inverseBorderColor: '#676e73',
|
|
1458
|
+
labelBorderColor: '#414547',
|
|
1459
|
+
labelFontSize: 16,
|
|
1460
|
+
labelLineHeight: 1.5,
|
|
1461
|
+
textFontSize: 16,
|
|
1462
|
+
textLineHeight: 1.5,
|
|
1463
|
+
textTimerFontName: 'HelveticaNow',
|
|
1464
|
+
textTimerFontWeight: '400'
|
|
1465
|
+
}
|
|
1466
|
+
},
|
|
1369
1467
|
DatePicker: {
|
|
1370
1468
|
appearances: {},
|
|
1371
1469
|
rules: [],
|
|
@@ -1751,6 +1849,39 @@ module.exports = {
|
|
|
1751
1849
|
size: { type: 'variant', values: [ 'small', 'large' ] }
|
|
1752
1850
|
},
|
|
1753
1851
|
rules: [
|
|
1852
|
+
{ if: { action: 'add' }, tokens: { icon: PaletteIconAdd } },
|
|
1853
|
+
{
|
|
1854
|
+
if: { action: 'subtract' },
|
|
1855
|
+
tokens: { icon: PaletteIconSubtract }
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
if: { action: 'close' },
|
|
1859
|
+
tokens: { icon: PaletteIconClose }
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
if: { action: 'expand' },
|
|
1863
|
+
tokens: { icon: PaletteIconExpand }
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
if: { action: 'moveDown' },
|
|
1867
|
+
tokens: { icon: PaletteIconCaretDown }
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
if: { action: 'moveUp' },
|
|
1871
|
+
tokens: { icon: PaletteIconCaretUp }
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
if: { action: 'moveLeft' },
|
|
1875
|
+
tokens: { icon: PaletteIconChevronLeft }
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
if: { action: 'moveRight' },
|
|
1879
|
+
tokens: { icon: PaletteIconChevronRight }
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
if: { action: 'play' },
|
|
1883
|
+
tokens: { icon: PaletteIconPlayVideo }
|
|
1884
|
+
},
|
|
1754
1885
|
{ if: { action: 'add' }, tokens: { icon: PaletteIconAdd } },
|
|
1755
1886
|
{
|
|
1756
1887
|
if: { action: 'subtract' },
|
|
@@ -2136,7 +2267,7 @@ module.exports = {
|
|
|
2136
2267
|
{
|
|
2137
2268
|
if: { size: 'large' },
|
|
2138
2269
|
tokens: {
|
|
2139
|
-
iconMarginTop:
|
|
2270
|
+
iconMarginTop: 4,
|
|
2140
2271
|
itemFontSize: 20,
|
|
2141
2272
|
itemIconSize: 20,
|
|
2142
2273
|
itemLineHeight: 1.6,
|
|
@@ -2166,7 +2297,7 @@ module.exports = {
|
|
|
2166
2297
|
tokens: {
|
|
2167
2298
|
dividerColor: '#b2b9bf',
|
|
2168
2299
|
dividerSize: 1,
|
|
2169
|
-
iconMarginTop:
|
|
2300
|
+
iconMarginTop: 3,
|
|
2170
2301
|
interItemMargin: 8,
|
|
2171
2302
|
interItemMarginWithDivider: 16,
|
|
2172
2303
|
itemBulletColor: '#4b286d',
|
|
@@ -2514,7 +2645,6 @@ module.exports = {
|
|
|
2514
2645
|
if: { size: 'large' },
|
|
2515
2646
|
tokens: { itemFontSize: 20, itemLineHeight: 1.6 }
|
|
2516
2647
|
},
|
|
2517
|
-
{ if: { size: 'medium' }, tokens: {} },
|
|
2518
2648
|
{
|
|
2519
2649
|
if: { size: 'small' },
|
|
2520
2650
|
tokens: { itemFontSize: 14, itemLineHeight: 1.42857142857 }
|
|
@@ -2865,6 +2995,50 @@ module.exports = {
|
|
|
2865
2995
|
outlineWidth: 1
|
|
2866
2996
|
}
|
|
2867
2997
|
},
|
|
2998
|
+
QuantitySelector: {
|
|
2999
|
+
appearances: {
|
|
3000
|
+
alternative: { type: 'variant', values: [ true ] },
|
|
3001
|
+
disabled: { type: 'variant', values: [ true ] },
|
|
3002
|
+
focus: { type: 'variant', values: [ true ] },
|
|
3003
|
+
hover: { type: 'variant', values: [ true ] },
|
|
3004
|
+
pressed: { type: 'variant', values: [ true ] }
|
|
3005
|
+
},
|
|
3006
|
+
rules: [
|
|
3007
|
+
{ if: { alternative: true }, tokens: { padding: 0 } },
|
|
3008
|
+
{
|
|
3009
|
+
if: { hover: true },
|
|
3010
|
+
tokens: {
|
|
3011
|
+
backgroundColor: '#f4f4f7',
|
|
3012
|
+
inputBackgroundColor: '#f4f4f7'
|
|
3013
|
+
}
|
|
3014
|
+
},
|
|
3015
|
+
{
|
|
3016
|
+
if: { disabled: true },
|
|
3017
|
+
tokens: { backgroundColor: '#fafafa', iconColor: '#e3e6e8' }
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
if: { pressed: true },
|
|
3021
|
+
tokens: { backgroundColor: '#b2b9bf' }
|
|
3022
|
+
},
|
|
3023
|
+
{
|
|
3024
|
+
if: { focus: true },
|
|
3025
|
+
tokens: { inputBorderColor: '#676e73', inputBorderWidth: 3 }
|
|
3026
|
+
}
|
|
3027
|
+
],
|
|
3028
|
+
tokens: {
|
|
3029
|
+
backgroundColor: null,
|
|
3030
|
+
borderColor: '#676e73',
|
|
3031
|
+
iconColor: '#676e73',
|
|
3032
|
+
iconSize: 16,
|
|
3033
|
+
inputBackgroundColor: '#ffffff',
|
|
3034
|
+
inputBorderColor: '#676e73',
|
|
3035
|
+
inputBorderWidth: 1,
|
|
3036
|
+
leftIcon: PaletteIconSubtract,
|
|
3037
|
+
padding: 16,
|
|
3038
|
+
rightIcon: PaletteIconAdd,
|
|
3039
|
+
textColor: '#b2b9bf'
|
|
3040
|
+
}
|
|
3041
|
+
},
|
|
2868
3042
|
QuickLinks: {
|
|
2869
3043
|
appearances: {
|
|
2870
3044
|
viewport: {
|
|
@@ -3768,6 +3942,62 @@ module.exports = {
|
|
|
3768
3942
|
thickness: 4
|
|
3769
3943
|
}
|
|
3770
3944
|
},
|
|
3945
|
+
SplashButton: {
|
|
3946
|
+
appearances: {
|
|
3947
|
+
hover: {
|
|
3948
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3949
|
+
platforms: [ 'rn' ],
|
|
3950
|
+
type: 'state',
|
|
3951
|
+
values: [ true ]
|
|
3952
|
+
}
|
|
3953
|
+
},
|
|
3954
|
+
rules: [
|
|
3955
|
+
{
|
|
3956
|
+
if: { hover: true },
|
|
3957
|
+
tokens: { buttonContentChildrenBackground: 'rgba(0, 0, 0, 0.8)' }
|
|
3958
|
+
}
|
|
3959
|
+
],
|
|
3960
|
+
tokens: {
|
|
3961
|
+
buttonContentBackground: 'rgba(0, 0, 0, 0.6)',
|
|
3962
|
+
buttonContentChildrenBackground: null,
|
|
3963
|
+
playIcon: PaletteIconPlaySolid,
|
|
3964
|
+
playIconColor: '#ffffff'
|
|
3965
|
+
}
|
|
3966
|
+
},
|
|
3967
|
+
SplashButtonWithDetails: {
|
|
3968
|
+
appearances: {
|
|
3969
|
+
hover: {
|
|
3970
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
3971
|
+
platforms: [ 'rn' ],
|
|
3972
|
+
type: 'state',
|
|
3973
|
+
values: [ true ]
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
rules: [
|
|
3977
|
+
{
|
|
3978
|
+
if: { hover: true },
|
|
3979
|
+
tokens: {
|
|
3980
|
+
buttonContentChildrenBackground: 'rgba(255, 255, 255, 0.8)'
|
|
3981
|
+
}
|
|
3982
|
+
}
|
|
3983
|
+
],
|
|
3984
|
+
tokens: {
|
|
3985
|
+
buttonBackground: '#ffffff',
|
|
3986
|
+
buttonBorderColor: '#e3e6e8',
|
|
3987
|
+
buttonBottomPosition: 24,
|
|
3988
|
+
buttonContentBackground: 'rgba(0, 0, 0, 0.6)',
|
|
3989
|
+
buttonContentChildrenBackground: null,
|
|
3990
|
+
buttonLeftPosition: 24,
|
|
3991
|
+
buttonMinHeight: 64,
|
|
3992
|
+
buttonPaddingLeft: 16,
|
|
3993
|
+
buttonPaddingRight: 16,
|
|
3994
|
+
buttonRadius: 32,
|
|
3995
|
+
detailsContainerPadding: 8,
|
|
3996
|
+
playIcon: PaletteIconPlaySolid,
|
|
3997
|
+
playIconColor: '#ffffff',
|
|
3998
|
+
playIconContainerBackground: '#2b8000'
|
|
3999
|
+
}
|
|
4000
|
+
},
|
|
3771
4001
|
StackView: {
|
|
3772
4002
|
appearances: {},
|
|
3773
4003
|
rules: [],
|
|
@@ -3859,6 +4089,62 @@ module.exports = {
|
|
|
3859
4089
|
showStepTrackerLabel: true
|
|
3860
4090
|
}
|
|
3861
4091
|
},
|
|
4092
|
+
StoryCard: {
|
|
4093
|
+
appearances: {
|
|
4094
|
+
focus: {
|
|
4095
|
+
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.",
|
|
4096
|
+
platforms: [ 'rn' ],
|
|
4097
|
+
type: 'state',
|
|
4098
|
+
values: [ true ]
|
|
4099
|
+
},
|
|
4100
|
+
hover: {
|
|
4101
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
4102
|
+
platforms: [ 'rn' ],
|
|
4103
|
+
type: 'state',
|
|
4104
|
+
values: [ true ]
|
|
4105
|
+
},
|
|
4106
|
+
pressed: {
|
|
4107
|
+
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.',
|
|
4108
|
+
type: 'state',
|
|
4109
|
+
values: [ true ]
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
rules: [
|
|
4113
|
+
{ if: { hover: true }, tokens: { borderWidth: 2 } },
|
|
4114
|
+
{
|
|
4115
|
+
if: { pressed: true },
|
|
4116
|
+
tokens: { backgroundColor: '#f4f4f7' }
|
|
4117
|
+
},
|
|
4118
|
+
{
|
|
4119
|
+
if: { focus: true },
|
|
4120
|
+
tokens: {
|
|
4121
|
+
outerBorderColor: '#676e73',
|
|
4122
|
+
outerBorderGap: 2,
|
|
4123
|
+
outerBorderWidth: 2
|
|
4124
|
+
}
|
|
4125
|
+
}
|
|
4126
|
+
],
|
|
4127
|
+
tokens: {
|
|
4128
|
+
backgroundColor: '#ffffff',
|
|
4129
|
+
borderColor: '#e3e6e8',
|
|
4130
|
+
borderRadius: 6,
|
|
4131
|
+
borderWidth: 1,
|
|
4132
|
+
contentAlignItems: 'stretch',
|
|
4133
|
+
contentFlexGrow: 0,
|
|
4134
|
+
contentFlexShrink: 0,
|
|
4135
|
+
contentJustifyContent: 'flex-start',
|
|
4136
|
+
flex: 1,
|
|
4137
|
+
minWidth: 0,
|
|
4138
|
+
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
4139
|
+
outerBorderGap: 0,
|
|
4140
|
+
outerBorderWidth: 0,
|
|
4141
|
+
paddingBottom: 0,
|
|
4142
|
+
paddingLeft: 0,
|
|
4143
|
+
paddingRight: 0,
|
|
4144
|
+
paddingTop: 0,
|
|
4145
|
+
shadow: null
|
|
4146
|
+
}
|
|
4147
|
+
},
|
|
3862
4148
|
Table: {
|
|
3863
4149
|
appearances: { spacing: { type: 'variant', values: [ 'compact' ] } },
|
|
3864
4150
|
rules: [
|
|
@@ -4168,6 +4454,74 @@ module.exports = {
|
|
|
4168
4454
|
width: null
|
|
4169
4455
|
}
|
|
4170
4456
|
},
|
|
4457
|
+
TermsAndConditions: {
|
|
4458
|
+
appearances: {
|
|
4459
|
+
expanded: {
|
|
4460
|
+
description: 'Applies when an ExpandCollapse panel is open and the content inside is visible',
|
|
4461
|
+
type: 'state',
|
|
4462
|
+
values: [ true ]
|
|
4463
|
+
}
|
|
4464
|
+
},
|
|
4465
|
+
rules: [
|
|
4466
|
+
{
|
|
4467
|
+
if: { expanded: true },
|
|
4468
|
+
tokens: { icon: PaletteIconCaretUp }
|
|
4469
|
+
}
|
|
4470
|
+
],
|
|
4471
|
+
tokens: {
|
|
4472
|
+
contentPaddingBottom: 8,
|
|
4473
|
+
contentPaddingLeft: 16,
|
|
4474
|
+
expandBaseBorderWidth: 0,
|
|
4475
|
+
expandContentPaddingBottom: 16,
|
|
4476
|
+
expandContentPaddingLeft: 16,
|
|
4477
|
+
expandContentPaddingRight: 16,
|
|
4478
|
+
expandContentPaddingTop: 16,
|
|
4479
|
+
expandIconContainerAlignItems: 'center',
|
|
4480
|
+
expandIconContainerBorder: 1,
|
|
4481
|
+
expandIconContainerBorderColor: '#676e73',
|
|
4482
|
+
expandIconContainerHeight: 32,
|
|
4483
|
+
expandIconContainerJustifyContent: 'center',
|
|
4484
|
+
expandIconContainerMarginX: 0,
|
|
4485
|
+
expandIconContainerMarginY: 12,
|
|
4486
|
+
expandIconContainerWidth: 32,
|
|
4487
|
+
expandTitleColor: '#2c2e30',
|
|
4488
|
+
expandTitleFontSize: 16,
|
|
4489
|
+
expandTitleLineHeight: 1.5,
|
|
4490
|
+
expandTitleMarginX: 4,
|
|
4491
|
+
expandTitleMarginY: 0,
|
|
4492
|
+
icon: PaletteIconCaretDown,
|
|
4493
|
+
listColor: '#414547',
|
|
4494
|
+
listFontName: 'HelveticaNow',
|
|
4495
|
+
listFontSize: 14,
|
|
4496
|
+
listFontWeight: '400',
|
|
4497
|
+
listLineHeight: 1.42857142857,
|
|
4498
|
+
listMarginBottom: 16,
|
|
4499
|
+
listMarginLeft: 32,
|
|
4500
|
+
mdContentPaddingBottom: 16,
|
|
4501
|
+
mdContentPaddingLeft: 48,
|
|
4502
|
+
orderedPadding: 0,
|
|
4503
|
+
titleColor: '#414547',
|
|
4504
|
+
titleFontSize: 14,
|
|
4505
|
+
titleLineHeight: 1.42857142857,
|
|
4506
|
+
titlePaddingLeft: 8,
|
|
4507
|
+
unorderedPadding: 0
|
|
4508
|
+
}
|
|
4509
|
+
},
|
|
4510
|
+
Testimonial: {
|
|
4511
|
+
appearances: {},
|
|
4512
|
+
rules: [],
|
|
4513
|
+
tokens: {
|
|
4514
|
+
dividerBackgroundColor: '#b2b9bf',
|
|
4515
|
+
dividerBorder: 1,
|
|
4516
|
+
figcaptionGap: 12,
|
|
4517
|
+
icon: PaletteIconQuoteLeft,
|
|
4518
|
+
iconColor: '#b2b9bf',
|
|
4519
|
+
imageSize: 48,
|
|
4520
|
+
quoteContainerGap: 4,
|
|
4521
|
+
testimonialContainerGap: 12,
|
|
4522
|
+
textColor: '#414547'
|
|
4523
|
+
}
|
|
4524
|
+
},
|
|
4171
4525
|
TextArea: {
|
|
4172
4526
|
appearances: {},
|
|
4173
4527
|
rules: [],
|
|
@@ -4321,8 +4675,6 @@ module.exports = {
|
|
|
4321
4675
|
animationColorBefore: '#ffffff',
|
|
4322
4676
|
animationDivColorAfter: '#2b8000',
|
|
4323
4677
|
animationDivColorBefore: '#ffffff',
|
|
4324
|
-
animationFillColorAfter: '#2b8000',
|
|
4325
|
-
animationFillColorBefore: '#ffffff',
|
|
4326
4678
|
animationHeightAfter: 24,
|
|
4327
4679
|
animationHeightBefore: 0,
|
|
4328
4680
|
animationPaddingBottomAfter: 16,
|
|
@@ -4862,6 +5214,91 @@ module.exports = {
|
|
|
4862
5214
|
textTransform: 'none'
|
|
4863
5215
|
}
|
|
4864
5216
|
},
|
|
5217
|
+
Video: {
|
|
5218
|
+
appearances: {},
|
|
5219
|
+
rules: [],
|
|
5220
|
+
tokens: {
|
|
5221
|
+
borderColor: '#b2b9bf',
|
|
5222
|
+
pauseIcon: PaletteIconPause,
|
|
5223
|
+
playIcon: PaletteIconPlaySolid,
|
|
5224
|
+
replayIcon: PaletteIconReplay
|
|
5225
|
+
}
|
|
5226
|
+
},
|
|
5227
|
+
VideoButton: { appearances: {}, rules: [], tokens: { color: '#ffffff' } },
|
|
5228
|
+
VideoControlBar: {
|
|
5229
|
+
appearances: {},
|
|
5230
|
+
rules: [],
|
|
5231
|
+
tokens: {
|
|
5232
|
+
captionsIcon: PaletteIconClosedCaptions,
|
|
5233
|
+
maximizeIcon: PaletteIconFullscreenExpand,
|
|
5234
|
+
menuBottom: 64,
|
|
5235
|
+
menuMarginLeft: 16,
|
|
5236
|
+
menuRight: 32,
|
|
5237
|
+
minimizeIcon: PaletteIconFullscreenMinimize,
|
|
5238
|
+
paddingBottom: 16,
|
|
5239
|
+
paddingLeft: 48,
|
|
5240
|
+
paddingLeftCompactMode: 16,
|
|
5241
|
+
paddingRight: 48,
|
|
5242
|
+
paddingRightCompactMode: 16,
|
|
5243
|
+
paddingTop: 16,
|
|
5244
|
+
settingsIcon: PaletteIconSettingsSolid
|
|
5245
|
+
}
|
|
5246
|
+
},
|
|
5247
|
+
VideoMenu: {
|
|
5248
|
+
appearances: {},
|
|
5249
|
+
rules: [],
|
|
5250
|
+
tokens: {
|
|
5251
|
+
background: '#2c2e30',
|
|
5252
|
+
checkMarkFocusColor: '#676e73',
|
|
5253
|
+
checkMarkHeight: 24,
|
|
5254
|
+
checkMarkHoverColor: '#676e73',
|
|
5255
|
+
checkMarkIcon: PaletteIconCheckmark,
|
|
5256
|
+
checkMarkSelectedColor: '#ffffff',
|
|
5257
|
+
checkMarkUnselectedColor: 'rgba(0, 0, 0, 0)',
|
|
5258
|
+
checkMarkWidth: 24,
|
|
5259
|
+
padding: 16
|
|
5260
|
+
}
|
|
5261
|
+
},
|
|
5262
|
+
VideoMiddleControlButton: {
|
|
5263
|
+
appearances: {},
|
|
5264
|
+
rules: [],
|
|
5265
|
+
tokens: {
|
|
5266
|
+
background: '#2c2e30',
|
|
5267
|
+
height: 64,
|
|
5268
|
+
iconColor: '#ffffff',
|
|
5269
|
+
width: 64
|
|
5270
|
+
}
|
|
5271
|
+
},
|
|
5272
|
+
VideoProgressBar: {
|
|
5273
|
+
appearances: {},
|
|
5274
|
+
rules: [],
|
|
5275
|
+
tokens: {
|
|
5276
|
+
rangeBackground: 'rgba(0, 0, 0, 0)',
|
|
5277
|
+
thumbBackground: '#ffffff',
|
|
5278
|
+
thumbHeight: 8,
|
|
5279
|
+
thumbWidth: 8,
|
|
5280
|
+
timestampMarginLeft: 8,
|
|
5281
|
+
timestampMarginRight: 8,
|
|
5282
|
+
trackGradientEnd: '#66cc00',
|
|
5283
|
+
trackGradientStart: '#66cc00'
|
|
5284
|
+
}
|
|
5285
|
+
},
|
|
5286
|
+
VideoVolumeSlider: {
|
|
5287
|
+
appearances: {},
|
|
5288
|
+
rules: [],
|
|
5289
|
+
tokens: {
|
|
5290
|
+
marginLeft: 16,
|
|
5291
|
+
marginRight: 16,
|
|
5292
|
+
mutedIcon: PaletteIconMuted,
|
|
5293
|
+
rangeBackground: 'rgba(0, 0, 0, 0)',
|
|
5294
|
+
thumbBackground: '#ffffff',
|
|
5295
|
+
thumbHeight: 8,
|
|
5296
|
+
thumbWidth: 8,
|
|
5297
|
+
trackGradientEnd: '#ffffff',
|
|
5298
|
+
trackGradientStart: '#ffffff',
|
|
5299
|
+
unmutedIcon: PaletteIconUnmuted
|
|
5300
|
+
}
|
|
5301
|
+
},
|
|
4865
5302
|
WaffleGrid: {
|
|
4866
5303
|
appearances: {},
|
|
4867
5304
|
rules: [],
|
|
@@ -4931,5 +5368,5 @@ module.exports = {
|
|
|
4931
5368
|
tokens: { size: 96 }
|
|
4932
5369
|
}
|
|
4933
5370
|
},
|
|
4934
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '2.
|
|
5371
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.24.0' }
|
|
4935
5372
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.26.0",
|
|
4
4
|
"description": "Allium theme",
|
|
5
5
|
"author": "TELUS Digital",
|
|
6
6
|
"homepage": "https://github.com/telus/allium-design-system#readme",
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"main": "build/rn/theme.js",
|
|
9
9
|
"dependencies": {},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@telus-uds/palette-allium": "^2.
|
|
12
|
-
"@telus-uds/system-theme-tokens": "^2.
|
|
13
|
-
"@telus-uds/system-tokens": "^0.7.
|
|
11
|
+
"@telus-uds/palette-allium": "^2.16.0",
|
|
12
|
+
"@telus-uds/system-theme-tokens": "^2.24.0",
|
|
13
|
+
"@telus-uds/system-tokens": "^0.7.3"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@telus-uds/palette-allium": "^2.
|
|
16
|
+
"@telus-uds/palette-allium": "^2.16.0"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"build",
|