@telus-uds/theme-allium 4.14.0 → 4.15.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 +1277 -939
- package/build/android/theme.json +284 -6
- package/build/ios/schema.json +1277 -939
- package/build/ios/theme.json +284 -6
- package/build/rn/schema.json +1277 -939
- package/build/rn/theme.js +167 -5
- package/package.json +5 -5
- package/theme.json +169 -2
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Thu,
|
|
4
|
+
* Generated on Thu, 26 Oct 2023 19:23:50 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -1478,6 +1478,156 @@ module.exports = {
|
|
|
1478
1478
|
labelMarginLeft: 10
|
|
1479
1479
|
}
|
|
1480
1480
|
},
|
|
1481
|
+
CheckboxCard: {
|
|
1482
|
+
appearances: {
|
|
1483
|
+
checked: {
|
|
1484
|
+
description: 'Corresponds to a selected state for a checkbox or radio',
|
|
1485
|
+
type: 'state',
|
|
1486
|
+
values: [ true ]
|
|
1487
|
+
},
|
|
1488
|
+
error: { type: 'state', values: [ true ] },
|
|
1489
|
+
focus: {
|
|
1490
|
+
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.",
|
|
1491
|
+
platforms: [ 'rn' ],
|
|
1492
|
+
type: 'state',
|
|
1493
|
+
values: [ true, false ]
|
|
1494
|
+
},
|
|
1495
|
+
hover: {
|
|
1496
|
+
description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
|
|
1497
|
+
platforms: [ 'rn' ],
|
|
1498
|
+
type: 'state',
|
|
1499
|
+
values: [ true, false ]
|
|
1500
|
+
},
|
|
1501
|
+
inactive: {
|
|
1502
|
+
description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
|
|
1503
|
+
type: 'state',
|
|
1504
|
+
values: [ true ]
|
|
1505
|
+
},
|
|
1506
|
+
pressed: {
|
|
1507
|
+
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.',
|
|
1508
|
+
type: 'state',
|
|
1509
|
+
values: [ true, false ]
|
|
1510
|
+
},
|
|
1511
|
+
viewport: {
|
|
1512
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
1513
|
+
type: 'state',
|
|
1514
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
rules: [
|
|
1518
|
+
{
|
|
1519
|
+
if: { viewport: [ 'lg', 'xl' ] },
|
|
1520
|
+
tokens: {
|
|
1521
|
+
fontSize: 24,
|
|
1522
|
+
lineHeight: 1.33333333333,
|
|
1523
|
+
paddingBottom: 24,
|
|
1524
|
+
paddingLeft: 16,
|
|
1525
|
+
paddingRight: 24,
|
|
1526
|
+
paddingTop: 16
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
if: { hover: true },
|
|
1531
|
+
tokens: {
|
|
1532
|
+
borderColor: '#676e73',
|
|
1533
|
+
checkboxOuterBorderColor: '#e3e6e8',
|
|
1534
|
+
checkboxOuterBorderWidth: 2,
|
|
1535
|
+
outerBorderColor: '#e3e6e8'
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
if: { focus: true },
|
|
1540
|
+
tokens: {
|
|
1541
|
+
checkboxInputBorderColor: '#7c53a5',
|
|
1542
|
+
checkboxInputBorderWidth: 3,
|
|
1543
|
+
outerBorderColor: '#676e73',
|
|
1544
|
+
outerBorderGap: 2
|
|
1545
|
+
}
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
description: 'Pressed state matches hover state plus light grey background',
|
|
1549
|
+
if: { pressed: true },
|
|
1550
|
+
tokens: {
|
|
1551
|
+
backgroundColor: '#f4f4f7',
|
|
1552
|
+
borderColor: '#676e73',
|
|
1553
|
+
checkboxInputBorderColor: '#676e73',
|
|
1554
|
+
checkboxInputBorderWidth: 1,
|
|
1555
|
+
checkboxOuterBorderColor: '#e3e6e8',
|
|
1556
|
+
checkboxOuterBorderWidth: 3,
|
|
1557
|
+
outerBorderColor: '#e3e6e8',
|
|
1558
|
+
outerBorderGap: 0
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
{ if: { checked: true }, tokens: { borderColor: '#7c53a5' } },
|
|
1562
|
+
{
|
|
1563
|
+
if: { checked: true, hover: true },
|
|
1564
|
+
tokens: { borderColor: '#4b286d' }
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
if: { error: true },
|
|
1568
|
+
tokens: {
|
|
1569
|
+
borderColor: '#e12339',
|
|
1570
|
+
checkboxInputBorderColor: '#e12339',
|
|
1571
|
+
color: '#e12339'
|
|
1572
|
+
}
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
if: { inactive: true },
|
|
1576
|
+
tokens: {
|
|
1577
|
+
backgroundColor: '#f4f4f7',
|
|
1578
|
+
borderColor: 'rgba(0, 0, 0, 0)',
|
|
1579
|
+
checkboxCheckedBackgroundColor: '#676e73',
|
|
1580
|
+
checkboxInputBackgroundColor: '#b2b9bf',
|
|
1581
|
+
checkboxInputBorderColor: 'transparent',
|
|
1582
|
+
checkboxInputSize: 12,
|
|
1583
|
+
checkboxOuterBorderColor: '#b2b9bf',
|
|
1584
|
+
checkboxOuterBorderGap: 2,
|
|
1585
|
+
checkboxOuterBorderWidth: 1,
|
|
1586
|
+
color: '#676e73'
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
tokens: {
|
|
1591
|
+
backgroundColor: '#ffffff',
|
|
1592
|
+
borderColor: '#b2b9bf',
|
|
1593
|
+
borderRadius: 6,
|
|
1594
|
+
borderWidth: 1,
|
|
1595
|
+
checkboxCheckedBackgroundColor: '#7c53a5',
|
|
1596
|
+
checkboxCheckedSize: 12,
|
|
1597
|
+
checkboxInputBackgroundColor: '#ffffff',
|
|
1598
|
+
checkboxInputBorderColor: '#676e73',
|
|
1599
|
+
checkboxInputBorderWidth: 1,
|
|
1600
|
+
checkboxInputOutlineColor: 'rgba(0, 0, 0, 0)',
|
|
1601
|
+
checkboxInputOutlineWidth: 0,
|
|
1602
|
+
checkboxInputSize: 20,
|
|
1603
|
+
checkboxOuterBorderColor: 'transparent',
|
|
1604
|
+
checkboxOuterBorderGap: 0,
|
|
1605
|
+
checkboxOuterBorderWidth: 0,
|
|
1606
|
+
checkboxSpace: 2,
|
|
1607
|
+
color: '#2c2e30',
|
|
1608
|
+
contentAlignItems: 'stretch',
|
|
1609
|
+
contentFlexGrow: 0,
|
|
1610
|
+
contentFlexShrink: 1,
|
|
1611
|
+
contentJustifyContent: 'flex-start',
|
|
1612
|
+
contentSpace: 2,
|
|
1613
|
+
flex: 1,
|
|
1614
|
+
fontName: 'HelveticaNow',
|
|
1615
|
+
fontSize: 20,
|
|
1616
|
+
fontWeight: '500',
|
|
1617
|
+
letterSpacing: 0,
|
|
1618
|
+
lineHeight: 1.4,
|
|
1619
|
+
minWidth: 264,
|
|
1620
|
+
outerBorderColor: 'transparent',
|
|
1621
|
+
outerBorderGap: 0,
|
|
1622
|
+
outerBorderWidth: 2,
|
|
1623
|
+
paddingBottom: 16,
|
|
1624
|
+
paddingLeft: 10,
|
|
1625
|
+
paddingRight: 16,
|
|
1626
|
+
paddingTop: 16,
|
|
1627
|
+
shadow: null,
|
|
1628
|
+
textTransform: 'none'
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1481
1631
|
CheckboxGroup: {
|
|
1482
1632
|
appearances: {},
|
|
1483
1633
|
rules: [],
|
|
@@ -5014,7 +5164,8 @@ module.exports = {
|
|
|
5014
5164
|
alignItems: 'stretch',
|
|
5015
5165
|
flexGrow: 0,
|
|
5016
5166
|
flexShrink: 0,
|
|
5017
|
-
justifyContent: 'flex-start'
|
|
5167
|
+
justifyContent: 'flex-start',
|
|
5168
|
+
width: null
|
|
5018
5169
|
}
|
|
5019
5170
|
},
|
|
5020
5171
|
StepTracker: {
|
|
@@ -5297,6 +5448,11 @@ module.exports = {
|
|
|
5297
5448
|
},
|
|
5298
5449
|
Tabs: {
|
|
5299
5450
|
appearances: {
|
|
5451
|
+
equalWidth: {
|
|
5452
|
+
description: 'Divide the available width equally among `TabsItem`',
|
|
5453
|
+
type: 'variant',
|
|
5454
|
+
values: [ true ]
|
|
5455
|
+
},
|
|
5300
5456
|
inverse: {
|
|
5301
5457
|
description: 'Styles the link white for use on dark backgrounds.',
|
|
5302
5458
|
type: 'variant',
|
|
@@ -5321,6 +5477,11 @@ module.exports = {
|
|
|
5321
5477
|
},
|
|
5322
5478
|
TabsItem: {
|
|
5323
5479
|
appearances: {
|
|
5480
|
+
equalWidth: {
|
|
5481
|
+
description: 'Divide the available width equally among `TabsItem`',
|
|
5482
|
+
type: 'variant',
|
|
5483
|
+
values: [ true ]
|
|
5484
|
+
},
|
|
5324
5485
|
focus: {
|
|
5325
5486
|
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.',
|
|
5326
5487
|
type: 'state',
|
|
@@ -5348,7 +5509,7 @@ module.exports = {
|
|
|
5348
5509
|
description: "The design uses height of 3: there's (rightly) no '3' in the Allium palette but the effect is 1px above and below a 1px line",
|
|
5349
5510
|
if: { selected: true },
|
|
5350
5511
|
tokens: {
|
|
5351
|
-
backgroundColor: '
|
|
5512
|
+
backgroundColor: 'rgba(0, 0, 0, 0.05)',
|
|
5352
5513
|
color: '#4b286d',
|
|
5353
5514
|
highlightBarBorderRadius: 32,
|
|
5354
5515
|
highlightBarBorderWidth: 1,
|
|
@@ -5404,7 +5565,8 @@ module.exports = {
|
|
|
5404
5565
|
{
|
|
5405
5566
|
if: { focus: true, inverse: true },
|
|
5406
5567
|
tokens: { borderColor: '#ffffff', highlightColor: '#ffffff' }
|
|
5407
|
-
}
|
|
5568
|
+
},
|
|
5569
|
+
{ if: { equalWidth: true }, tokens: { maxWidth: null } }
|
|
5408
5570
|
],
|
|
5409
5571
|
tokens: {
|
|
5410
5572
|
backgroundColor: 'transparent',
|
|
@@ -6736,5 +6898,5 @@ module.exports = {
|
|
|
6736
6898
|
tokens: { size: 96 }
|
|
6737
6899
|
}
|
|
6738
6900
|
},
|
|
6739
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '2.
|
|
6901
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.42.0' }
|
|
6740
6902
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.15.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.27.0",
|
|
12
|
+
"@telus-uds/system-theme-tokens": "^2.42.0",
|
|
13
|
+
"@telus-uds/system-tokens": "^0.7.23"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@telus-uds/palette-allium": "^2.
|
|
16
|
+
"@telus-uds/palette-allium": "^2.27.0"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"build",
|
package/theme.json
CHANGED
|
@@ -1773,6 +1773,154 @@
|
|
|
1773
1773
|
"labelMarginLeft": "{palette.size.size10}"
|
|
1774
1774
|
}
|
|
1775
1775
|
},
|
|
1776
|
+
"CheckboxCard": {
|
|
1777
|
+
"appearances": {
|
|
1778
|
+
"checked": "{appearances.CheckboxCard.checked}",
|
|
1779
|
+
"error": "{appearances.CheckboxCard.error}",
|
|
1780
|
+
"focus": "{appearances.CheckboxCard.focus}",
|
|
1781
|
+
"hover": "{appearances.CheckboxCard.hover}",
|
|
1782
|
+
"inactive": "{appearances.CheckboxCard.inactive}",
|
|
1783
|
+
"pressed": "{appearances.CheckboxCard.pressed}",
|
|
1784
|
+
"viewport": "{appearances.system.viewport}"
|
|
1785
|
+
},
|
|
1786
|
+
"rules": [
|
|
1787
|
+
{
|
|
1788
|
+
"if": {
|
|
1789
|
+
"viewport": ["lg", "xl"]
|
|
1790
|
+
},
|
|
1791
|
+
"tokens": {
|
|
1792
|
+
"fontSize": "{palette.fontSize.size24}",
|
|
1793
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}",
|
|
1794
|
+
"paddingBottom": "{palette.size.size24}",
|
|
1795
|
+
"paddingLeft": "{palette.size.size16}",
|
|
1796
|
+
"paddingRight": "{palette.size.size24}",
|
|
1797
|
+
"paddingTop": "{palette.size.size16}"
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"if": {
|
|
1802
|
+
"hover": true
|
|
1803
|
+
},
|
|
1804
|
+
"tokens": {
|
|
1805
|
+
"borderColor": "{palette.color.greyShuttle}",
|
|
1806
|
+
"checkboxOuterBorderColor": "{palette.color.greyMystic}",
|
|
1807
|
+
"checkboxOuterBorderWidth": "{palette.border.border2}",
|
|
1808
|
+
"outerBorderColor": "{palette.color.greyMystic}"
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"if": {
|
|
1813
|
+
"focus": true
|
|
1814
|
+
},
|
|
1815
|
+
"tokens": {
|
|
1816
|
+
"checkboxInputBorderColor": "{palette.color.purpleDeluge}",
|
|
1817
|
+
"checkboxInputBorderWidth": "{palette.border.border3}",
|
|
1818
|
+
"outerBorderColor": "{palette.color.greyShuttle}",
|
|
1819
|
+
"outerBorderGap": "{palette.size.size2}"
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"description": "Pressed state matches hover state plus light grey background",
|
|
1824
|
+
"if": {
|
|
1825
|
+
"pressed": true
|
|
1826
|
+
},
|
|
1827
|
+
"tokens": {
|
|
1828
|
+
"backgroundColor": "{palette.color.greyAthens}",
|
|
1829
|
+
"borderColor": "{palette.color.greyShuttle}",
|
|
1830
|
+
"checkboxInputBorderColor": "{palette.color.greyShuttle}",
|
|
1831
|
+
"checkboxInputBorderWidth": "{palette.border.border1}",
|
|
1832
|
+
"checkboxOuterBorderColor": "{palette.color.greyMystic}",
|
|
1833
|
+
"checkboxOuterBorderWidth": "{palette.border.border3}",
|
|
1834
|
+
"outerBorderColor": "{palette.color.greyMystic}",
|
|
1835
|
+
"outerBorderGap": "{palette.size.size0}"
|
|
1836
|
+
}
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"if": {
|
|
1840
|
+
"checked": true
|
|
1841
|
+
},
|
|
1842
|
+
"tokens": {
|
|
1843
|
+
"borderColor": "{palette.color.purpleDeluge}"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"if": {
|
|
1848
|
+
"checked": true,
|
|
1849
|
+
"hover": true
|
|
1850
|
+
},
|
|
1851
|
+
"tokens": {
|
|
1852
|
+
"borderColor": "{palette.color.purpleTelus}"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"if": {
|
|
1857
|
+
"error": true
|
|
1858
|
+
},
|
|
1859
|
+
"tokens": {
|
|
1860
|
+
"borderColor": "{palette.color.red}",
|
|
1861
|
+
"checkboxInputBorderColor": "{palette.color.red}",
|
|
1862
|
+
"color": "{palette.color.red}"
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"if": {
|
|
1867
|
+
"inactive": true
|
|
1868
|
+
},
|
|
1869
|
+
"tokens": {
|
|
1870
|
+
"backgroundColor": "{palette.color.greyAthens}",
|
|
1871
|
+
"borderColor": "{palette.color.transparent}",
|
|
1872
|
+
"checkboxCheckedBackgroundColor": "{palette.color.greyShuttle}",
|
|
1873
|
+
"checkboxInputBackgroundColor": "{palette.color.greyCloud}",
|
|
1874
|
+
"checkboxInputBorderColor": "{system.color.transparent}",
|
|
1875
|
+
"checkboxInputSize": "{palette.size.size12}",
|
|
1876
|
+
"checkboxOuterBorderColor": "{palette.color.greyCloud}",
|
|
1877
|
+
"checkboxOuterBorderGap": "{palette.size.size2}",
|
|
1878
|
+
"checkboxOuterBorderWidth": "{palette.border.border1}",
|
|
1879
|
+
"color": "{palette.color.greyShuttle}"
|
|
1880
|
+
}
|
|
1881
|
+
}
|
|
1882
|
+
],
|
|
1883
|
+
"tokens": {
|
|
1884
|
+
"backgroundColor": "{palette.color.white}",
|
|
1885
|
+
"borderColor": "{palette.color.greyCloud}",
|
|
1886
|
+
"borderRadius": "{palette.radius.radius6}",
|
|
1887
|
+
"borderWidth": "{palette.border.border1}",
|
|
1888
|
+
"checkboxCheckedBackgroundColor": "{palette.color.purpleDeluge}",
|
|
1889
|
+
"checkboxCheckedSize": "{palette.size.size12}",
|
|
1890
|
+
"checkboxInputBackgroundColor": "{palette.color.white}",
|
|
1891
|
+
"checkboxInputBorderColor": "{palette.color.greyShuttle}",
|
|
1892
|
+
"checkboxInputBorderWidth": "{palette.border.border1}",
|
|
1893
|
+
"checkboxInputOutlineColor": "{palette.color.transparent}",
|
|
1894
|
+
"checkboxInputOutlineWidth": "{palette.border.none}",
|
|
1895
|
+
"checkboxInputSize": "{palette.size.size20}",
|
|
1896
|
+
"checkboxOuterBorderColor": "{system.color.transparent}",
|
|
1897
|
+
"checkboxOuterBorderGap": "{system.size.zero}",
|
|
1898
|
+
"checkboxOuterBorderWidth": "{system.border.zero}",
|
|
1899
|
+
"checkboxSpace": "{system.integer.2}",
|
|
1900
|
+
"color": "{palette.color.greyThunder}",
|
|
1901
|
+
"contentAlignItems": "{system.flexAlign.stretch}",
|
|
1902
|
+
"contentFlexGrow": "{system.integer.0}",
|
|
1903
|
+
"contentFlexShrink": "{system.integer.1}",
|
|
1904
|
+
"contentJustifyContent": "{system.flexJustifyContent.flexStart}",
|
|
1905
|
+
"contentSpace": "{system.integer.2}",
|
|
1906
|
+
"flex": "{system.integer.1}",
|
|
1907
|
+
"fontName": "{palette.fontName.HelveticaNow}",
|
|
1908
|
+
"fontSize": "{palette.fontSize.size20}",
|
|
1909
|
+
"fontWeight": "{palette.fontWeight.weight500}",
|
|
1910
|
+
"letterSpacing": "{system.letterSpacing.none}",
|
|
1911
|
+
"lineHeight": "{palette.lineHeight.ratio7to5}",
|
|
1912
|
+
"minWidth": "{palette.size.size264}",
|
|
1913
|
+
"outerBorderColor": "{system.color.transparent}",
|
|
1914
|
+
"outerBorderGap": "{system.size.zero}",
|
|
1915
|
+
"outerBorderWidth": "{palette.border.border2}",
|
|
1916
|
+
"paddingBottom": "{palette.size.size16}",
|
|
1917
|
+
"paddingLeft": "{palette.size.size10}",
|
|
1918
|
+
"paddingRight": "{palette.size.size16}",
|
|
1919
|
+
"paddingTop": "{palette.size.size16}",
|
|
1920
|
+
"shadow": "{system.shadow.none}",
|
|
1921
|
+
"textTransform": "{system.textTransform.none}"
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1776
1924
|
"CheckboxGroup": {
|
|
1777
1925
|
"appearances": {},
|
|
1778
1926
|
"rules": [],
|
|
@@ -6110,7 +6258,8 @@
|
|
|
6110
6258
|
"alignItems": "{system.flexAlign.stretch}",
|
|
6111
6259
|
"flexGrow": "{system.integer.0}",
|
|
6112
6260
|
"flexShrink": "{system.integer.0}",
|
|
6113
|
-
"justifyContent": "{system.flexJustifyContent.flexStart}"
|
|
6261
|
+
"justifyContent": "{system.flexJustifyContent.flexStart}",
|
|
6262
|
+
"width": "{system.size.none}"
|
|
6114
6263
|
}
|
|
6115
6264
|
},
|
|
6116
6265
|
"StepTracker": {
|
|
@@ -6428,6 +6577,11 @@
|
|
|
6428
6577
|
},
|
|
6429
6578
|
"Tabs": {
|
|
6430
6579
|
"appearances": {
|
|
6580
|
+
"equalWidth": {
|
|
6581
|
+
"description": "Divide the available width equally among `TabsItem`",
|
|
6582
|
+
"type": "variant",
|
|
6583
|
+
"values": [true]
|
|
6584
|
+
},
|
|
6431
6585
|
"inverse": {
|
|
6432
6586
|
"description": "Styles the link white for use on dark backgrounds.",
|
|
6433
6587
|
"type": "variant",
|
|
@@ -6456,6 +6610,11 @@
|
|
|
6456
6610
|
},
|
|
6457
6611
|
"TabsItem": {
|
|
6458
6612
|
"appearances": {
|
|
6613
|
+
"equalWidth": {
|
|
6614
|
+
"description": "Divide the available width equally among `TabsItem`",
|
|
6615
|
+
"type": "variant",
|
|
6616
|
+
"values": [true]
|
|
6617
|
+
},
|
|
6459
6618
|
"focus": "{appearances.TabsItem.pressed}",
|
|
6460
6619
|
"hover": "{appearances.TabsItem.pressed}",
|
|
6461
6620
|
"inverse": {
|
|
@@ -6472,7 +6631,7 @@
|
|
|
6472
6631
|
"selected": true
|
|
6473
6632
|
},
|
|
6474
6633
|
"tokens": {
|
|
6475
|
-
"backgroundColor": "{palette.color.
|
|
6634
|
+
"backgroundColor": "{palette.color.dark5}",
|
|
6476
6635
|
"color": "{palette.color.purpleTelus}",
|
|
6477
6636
|
"highlightBarBorderRadius": "{palette.radius.pill32}",
|
|
6478
6637
|
"highlightBarBorderWidth": "{palette.border.border1}",
|
|
@@ -6569,6 +6728,14 @@
|
|
|
6569
6728
|
"borderColor": "{palette.color.white}",
|
|
6570
6729
|
"highlightColor": "{palette.color.white}"
|
|
6571
6730
|
}
|
|
6731
|
+
},
|
|
6732
|
+
{
|
|
6733
|
+
"if": {
|
|
6734
|
+
"equalWidth": true
|
|
6735
|
+
},
|
|
6736
|
+
"tokens": {
|
|
6737
|
+
"maxWidth": "{system.size.none}"
|
|
6738
|
+
}
|
|
6572
6739
|
}
|
|
6573
6740
|
],
|
|
6574
6741
|
"tokens": {
|