@telus-uds/system-theme-tokens 2.5.0 → 2.6.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/CHANGELOG.md +12 -2
- package/appearances.js +1 -0
- package/components.js +100 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# Change Log - @telus-uds/system-theme-tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 19 Sep 2022 22:48:56 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.6.0
|
|
8
|
+
|
|
9
|
+
Mon, 19 Sep 2022 22:48:56 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add QuickLinksButton theme (alan.slater@nearform.com)
|
|
14
|
+
- Create QuickLinks component, with themes (alan.slater@nearform.com)
|
|
15
|
+
- implementing timeline component (tiagohldb@gmail.com)
|
|
16
|
+
|
|
7
17
|
## 2.5.0
|
|
8
18
|
|
|
9
|
-
Mon, 12 Sep 2022 20:
|
|
19
|
+
Mon, 12 Sep 2022 20:05:13 GMT
|
|
10
20
|
|
|
11
21
|
### Minor changes
|
|
12
22
|
|
package/appearances.js
CHANGED
|
@@ -130,6 +130,7 @@ module.exports = {
|
|
|
130
130
|
}
|
|
131
131
|
},
|
|
132
132
|
ProgressBar: { inactive },
|
|
133
|
+
QuickLinksList: { hover, focus, pressed },
|
|
133
134
|
Radio: { checked, error, focus, hover, inactive },
|
|
134
135
|
RadioCard: { pressed, checked, error, focus, hover, inactive },
|
|
135
136
|
Search: { hover, focus, inactive },
|
package/components.js
CHANGED
|
@@ -399,6 +399,88 @@ module.exports = {
|
|
|
399
399
|
outlineColor: 'color',
|
|
400
400
|
outlineWidth: 'border'
|
|
401
401
|
},
|
|
402
|
+
QuickLinks: {
|
|
403
|
+
// Sets which subcomponents are rendered
|
|
404
|
+
list: 'show',
|
|
405
|
+
card: 'show',
|
|
406
|
+
dividers: 'show',
|
|
407
|
+
stackSpace: 'integer',
|
|
408
|
+
stackGap: 'integer',
|
|
409
|
+
stackJustify: 'flexJustifyContent'
|
|
410
|
+
},
|
|
411
|
+
QuickLinksCard: {
|
|
412
|
+
// Card tokens
|
|
413
|
+
flex: 'integer',
|
|
414
|
+
backgroundColor: 'color',
|
|
415
|
+
borderColor: 'color',
|
|
416
|
+
borderRadius: 'radius',
|
|
417
|
+
borderWidth: 'border',
|
|
418
|
+
paddingBottom: 'size',
|
|
419
|
+
paddingLeft: 'size',
|
|
420
|
+
paddingRight: 'size',
|
|
421
|
+
paddingTop: 'size',
|
|
422
|
+
minWidth: 'size',
|
|
423
|
+
shadow: 'shadow'
|
|
424
|
+
},
|
|
425
|
+
QuickLinksList: {
|
|
426
|
+
// List tokens
|
|
427
|
+
dividerColor: 'color',
|
|
428
|
+
dividerSize: 'border',
|
|
429
|
+
iconMarginTop: 'size',
|
|
430
|
+
interItemMargin: 'size',
|
|
431
|
+
interItemMarginWithDivider: 'size',
|
|
432
|
+
itemBulletColor: 'color',
|
|
433
|
+
itemBulletContainerAlign: 'textAlign',
|
|
434
|
+
itemBulletContainerWidth: 'size',
|
|
435
|
+
itemBulletHeight: 'size',
|
|
436
|
+
itemBulletWidth: 'size',
|
|
437
|
+
itemFontName: 'fontName',
|
|
438
|
+
itemFontSize: 'fontSize',
|
|
439
|
+
itemFontWeight: 'fontWeight',
|
|
440
|
+
itemIconColor: 'color',
|
|
441
|
+
itemIconSize: 'size',
|
|
442
|
+
itemLineHeight: 'lineHeight',
|
|
443
|
+
listGutter: 'size',
|
|
444
|
+
|
|
445
|
+
// PressableListItemBase tokens
|
|
446
|
+
backgroundColor: 'color',
|
|
447
|
+
paddingLeft: 'size',
|
|
448
|
+
paddingRight: 'size',
|
|
449
|
+
paddingTop: 'size',
|
|
450
|
+
paddingBottom: 'size'
|
|
451
|
+
},
|
|
452
|
+
QuickLinksButton: {
|
|
453
|
+
// Button tokens
|
|
454
|
+
borderColor: 'color',
|
|
455
|
+
borderWidth: 'border',
|
|
456
|
+
borderRadius: 'radius',
|
|
457
|
+
shadow: 'shadow',
|
|
458
|
+
fontSize: 'fontSize',
|
|
459
|
+
color: 'color',
|
|
460
|
+
lineHeight: 'lineHeight',
|
|
461
|
+
textAlign: 'flexJustifyContent',
|
|
462
|
+
alignSelf: 'flexAlign',
|
|
463
|
+
fontName: 'fontName',
|
|
464
|
+
fontWeight: 'fontWeight',
|
|
465
|
+
backgroundColor: 'color',
|
|
466
|
+
opacity: 'opacity',
|
|
467
|
+
paddingLeft: 'size',
|
|
468
|
+
paddingRight: 'size',
|
|
469
|
+
paddingTop: 'size',
|
|
470
|
+
paddingBottom: 'size',
|
|
471
|
+
width: 'size',
|
|
472
|
+
minWidth: 'size',
|
|
473
|
+
outerBorderColor: 'color',
|
|
474
|
+
outerBorderWidth: 'border',
|
|
475
|
+
outerBorderGap: 'size',
|
|
476
|
+
outerBackgroundColor: 'color',
|
|
477
|
+
|
|
478
|
+
// Icon & IconText
|
|
479
|
+
icon: 'icon',
|
|
480
|
+
iconColor: 'color',
|
|
481
|
+
iconSize: 'size',
|
|
482
|
+
iconSpace: 'integer'
|
|
483
|
+
},
|
|
402
484
|
Radio: {
|
|
403
485
|
checkedBackgroundColor: 'color',
|
|
404
486
|
checkedSize: 'size',
|
|
@@ -792,6 +874,24 @@ module.exports = {
|
|
|
792
874
|
flexGrow: 'integer',
|
|
793
875
|
flexShrink: 'integer'
|
|
794
876
|
},
|
|
877
|
+
Timeline: {
|
|
878
|
+
dotColor: 'color',
|
|
879
|
+
dotWidth: 'size',
|
|
880
|
+
dotBorderWidth: 'border',
|
|
881
|
+
timelineContainerDirection: 'direction',
|
|
882
|
+
timelineColor: 'color',
|
|
883
|
+
connectorWidth: 'size',
|
|
884
|
+
connectorHeight: 'size',
|
|
885
|
+
lineItemContainerDirection: 'direction',
|
|
886
|
+
lineContainerFlexSize: 'integer',
|
|
887
|
+
lineItemAlign: 'flexAlign',
|
|
888
|
+
lineItemDirection: 'direction',
|
|
889
|
+
lineItemMarginRight: 'size',
|
|
890
|
+
lineItemMarginBottom: 'size',
|
|
891
|
+
itemContentFlexSize: 'integer',
|
|
892
|
+
itemContentMarginRight: 'size',
|
|
893
|
+
itemContentMarginBottom: 'size'
|
|
894
|
+
},
|
|
795
895
|
Tooltip: {
|
|
796
896
|
backgroundColor: 'color',
|
|
797
897
|
paddingTop: 'size',
|