@telus-uds/theme-koodo 4.12.4 → 4.14.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/rn/theme.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
3
  * Do not edit directly
4
- * Generated on Mon, 16 Oct 2023 22:46:48 GMT
4
+ * Generated on Thu, 26 Oct 2023 19:22:57 GMT
5
5
  *
6
6
  */
7
7
 
@@ -54,10 +54,19 @@ module.exports = {
54
54
  Badge: {
55
55
  appearances: {
56
56
  alternative: { type: 'variant', values: [ true ] },
57
+ inverse: { type: 'variant', values: [ true ] },
57
58
  outline: { type: 'variant', values: [ true ] },
58
59
  purpose: { type: 'variant', values: [ 'offer', 'editorial' ] }
59
60
  },
60
61
  rules: [
62
+ {
63
+ if: { inverse: true },
64
+ tokens: {
65
+ backgroundColor: 'rgba(0, 0, 0, 0)',
66
+ borderColor: '#ffffff',
67
+ color: '#ffffff'
68
+ }
69
+ },
61
70
  {
62
71
  if: { outline: true },
63
72
  tokens: {
@@ -1413,6 +1422,162 @@ module.exports = {
1413
1422
  labelMarginLeft: 8
1414
1423
  }
1415
1424
  },
1425
+ CheckboxCard: {
1426
+ appearances: {
1427
+ checked: {
1428
+ description: 'Corresponds to a selected state for a checkbox or radio',
1429
+ type: 'state',
1430
+ values: [ true ]
1431
+ },
1432
+ error: { type: 'state', values: [ true ] },
1433
+ focus: {
1434
+ 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.",
1435
+ platforms: [ 'rn' ],
1436
+ type: 'state',
1437
+ values: [ true, false ]
1438
+ },
1439
+ hover: {
1440
+ description: "Currently web only. Applies when an interactive component's hover handler is triggered, such as on mouseover.",
1441
+ platforms: [ 'rn' ],
1442
+ type: 'state',
1443
+ values: [ true, false ]
1444
+ },
1445
+ inactive: {
1446
+ description: 'Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.',
1447
+ type: 'state',
1448
+ values: [ true ]
1449
+ },
1450
+ pressed: {
1451
+ 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.',
1452
+ type: 'state',
1453
+ values: [ true, false ]
1454
+ },
1455
+ viewport: {
1456
+ description: 'The size label for the current screen viewport based on the current screen width',
1457
+ type: 'state',
1458
+ values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
1459
+ }
1460
+ },
1461
+ rules: [
1462
+ {
1463
+ if: { viewport: [ 'lg', 'xl' ] },
1464
+ tokens: {
1465
+ fontSize: 24,
1466
+ lineHeight: 1.3,
1467
+ paddingBottom: 24,
1468
+ paddingLeft: 16,
1469
+ paddingRight: 24,
1470
+ paddingTop: 16
1471
+ }
1472
+ },
1473
+ {
1474
+ if: { hover: true },
1475
+ tokens: {
1476
+ borderColor: '#666666',
1477
+ checkboxOuterBorderColor: '#17367d',
1478
+ checkboxOuterBorderGap: 2,
1479
+ checkboxOuterBorderWidth: 1,
1480
+ outerBorderColor: '#efefef',
1481
+ outerBorderWidth: 2
1482
+ }
1483
+ },
1484
+ {
1485
+ if: { focus: true },
1486
+ tokens: {
1487
+ checkboxInputBorderColor: '#016b6a',
1488
+ checkboxOuterBorderColor: '#17367d',
1489
+ checkboxOuterBorderGap: 2,
1490
+ checkboxOuterBorderWidth: 1,
1491
+ outerBorderColor: '#17367d',
1492
+ outerBorderGap: 2,
1493
+ outerBorderWidth: 2
1494
+ }
1495
+ },
1496
+ {
1497
+ if: { checked: true },
1498
+ tokens: {
1499
+ borderColor: '#c9c8c8',
1500
+ checkboxInputBorderColor: '#016b6a',
1501
+ checkboxInputBorderWidth: 2
1502
+ }
1503
+ },
1504
+ {
1505
+ description: 'Pressed state matches hover state plus light grey background',
1506
+ if: { pressed: true },
1507
+ tokens: {
1508
+ backgroundColor: '#efefef',
1509
+ checkboxOuterBorderColor: '#17367d',
1510
+ checkboxOuterBorderGap: 2,
1511
+ outerBorderColor: '#c9c8c8',
1512
+ outerBorderGap: 0,
1513
+ outerBorderWidth: 1
1514
+ }
1515
+ },
1516
+ {
1517
+ if: { inactive: true },
1518
+ tokens: {
1519
+ backgroundColor: '#efefef',
1520
+ borderColor: 'transparent',
1521
+ checkboxCheckedBackgroundColor: '#c9c8c8',
1522
+ checkboxInputBackgroundColor: '#c9c8c8',
1523
+ checkboxInputBorderColor: '#c9c8c8',
1524
+ checkboxInputSize: 16,
1525
+ checkboxOuterBorderColor: '#c9c8c8',
1526
+ checkboxOuterBorderGap: 2,
1527
+ checkboxOuterBorderWidth: 1,
1528
+ color: '#666666'
1529
+ }
1530
+ },
1531
+ {
1532
+ if: { error: true },
1533
+ tokens: {
1534
+ borderColor: '#df3d0c',
1535
+ checkboxInputBorderColor: '#df3d0c',
1536
+ color: '#df3d0c'
1537
+ }
1538
+ }
1539
+ ],
1540
+ tokens: {
1541
+ backgroundColor: '#ffffff',
1542
+ borderColor: '#c9c8c8',
1543
+ borderRadius: 4,
1544
+ borderWidth: 1,
1545
+ checkboxCheckedBackgroundColor: '#016b6a',
1546
+ checkboxCheckedSize: 16,
1547
+ checkboxInputBackgroundColor: '#ffffff',
1548
+ checkboxInputBorderColor: '#016b6a',
1549
+ checkboxInputBorderWidth: 2,
1550
+ checkboxInputOutlineColor: 'rgba(0, 0, 0, 0)',
1551
+ checkboxInputOutlineWidth: 0,
1552
+ checkboxInputSize: 24,
1553
+ checkboxOuterBorderColor: 'transparent',
1554
+ checkboxOuterBorderGap: 0,
1555
+ checkboxOuterBorderWidth: 0,
1556
+ checkboxSpace: 2,
1557
+ color: '#000000',
1558
+ contentAlignItems: 'stretch',
1559
+ contentFlexGrow: 0,
1560
+ contentFlexShrink: 1,
1561
+ contentJustifyContent: 'flex-start',
1562
+ contentSpace: 2,
1563
+ flex: 1,
1564
+ fontName: 'StagSans',
1565
+ fontSize: 20,
1566
+ fontWeight: '700',
1567
+ letterSpacing: 0,
1568
+ lineHeight: 1.4,
1569
+ minWidth: 288,
1570
+ outerBorderColor: 'transparent',
1571
+ outerBorderGap: 0,
1572
+ outerBorderWidth: 0,
1573
+ paddingBottom: 16,
1574
+ paddingLeft: 8,
1575
+ paddingRight: 16,
1576
+ paddingTop: 12,
1577
+ shadow: null,
1578
+ textTransform: 'none'
1579
+ }
1580
+ },
1416
1581
  CheckboxGroup: {
1417
1582
  appearances: {},
1418
1583
  rules: [],
@@ -1942,8 +2107,54 @@ module.exports = {
1942
2107
  }
1943
2108
  },
1944
2109
  Footnote: {
1945
- appearances: {},
1946
- rules: [],
2110
+ appearances: {
2111
+ viewport: {
2112
+ description: 'The size label for the current screen viewport based on the current screen width',
2113
+ type: 'state',
2114
+ values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
2115
+ }
2116
+ },
2117
+ rules: [
2118
+ {
2119
+ if: { viewport: [ 'xs' ] },
2120
+ tokens: {
2121
+ footnoteBodyPaddingBottom: 32,
2122
+ footnoteBodyPaddingLeft: 16,
2123
+ footnoteBodyPaddingRight: 16,
2124
+ footnoteBodyPaddingTop: 0,
2125
+ footnoteHeaderPaddingBottom: 16,
2126
+ footnoteHeaderPaddingLeft: 16,
2127
+ footnoteHeaderPaddingRight: 4,
2128
+ footnoteHeaderPaddingTop: 16
2129
+ }
2130
+ },
2131
+ {
2132
+ if: { viewport: [ 'md', 'lg' ] },
2133
+ tokens: {
2134
+ footnoteBodyPaddingBottom: 40,
2135
+ footnoteBodyPaddingLeft: 16,
2136
+ footnoteBodyPaddingRight: 16,
2137
+ footnoteBodyPaddingTop: 0,
2138
+ footnoteHeaderPaddingBottom: 24,
2139
+ footnoteHeaderPaddingLeft: 16,
2140
+ footnoteHeaderPaddingRight: 4,
2141
+ footnoteHeaderPaddingTop: 24
2142
+ }
2143
+ },
2144
+ {
2145
+ if: { viewport: [ 'xl' ] },
2146
+ tokens: {
2147
+ footnoteBodyPaddingBottom: 40,
2148
+ footnoteBodyPaddingLeft: 16,
2149
+ footnoteBodyPaddingRight: 16,
2150
+ footnoteBodyPaddingTop: 0,
2151
+ footnoteHeaderPaddingBottom: 24,
2152
+ footnoteHeaderPaddingLeft: 16,
2153
+ footnoteHeaderPaddingRight: 16,
2154
+ footnoteHeaderPaddingTop: 24
2155
+ }
2156
+ }
2157
+ ],
1947
2158
  tokens: {
1948
2159
  closeButtonBackgroundColor: '#ffffff',
1949
2160
  closeButtonBorderColor: '#000000',
@@ -1958,16 +2169,16 @@ module.exports = {
1958
2169
  closeIcon: PaletteIconClose,
1959
2170
  footnoteBackground: '#ffffff',
1960
2171
  footnoteBodyBackground: '#ffffff',
1961
- footnoteBodyPaddingBottom: 32,
2172
+ footnoteBodyPaddingBottom: 40,
1962
2173
  footnoteBodyPaddingLeft: 16,
1963
2174
  footnoteBodyPaddingRight: 16,
1964
2175
  footnoteBodyPaddingTop: 0,
1965
2176
  footnoteBorderColorMd: '#c9c8c8',
1966
2177
  footnoteBorderTopSizeMd: 1,
1967
- footnoteHeaderPaddingBottom: 16,
2178
+ footnoteHeaderPaddingBottom: 24,
1968
2179
  footnoteHeaderPaddingLeft: 16,
1969
- footnoteHeaderPaddingRight: 16,
1970
- footnoteHeaderPaddingTop: 16,
2180
+ footnoteHeaderPaddingRight: 4,
2181
+ footnoteHeaderPaddingTop: 24,
1971
2182
  headerFontName: 'StagSans',
1972
2183
  headerFontSize: 16,
1973
2184
  headerFontWeight: '700',
@@ -4880,7 +5091,8 @@ module.exports = {
4880
5091
  alignItems: 'stretch',
4881
5092
  flexGrow: 0,
4882
5093
  flexShrink: 0,
4883
- justifyContent: 'flex-start'
5094
+ justifyContent: 'flex-start',
5095
+ width: null
4884
5096
  }
4885
5097
  },
4886
5098
  StepTracker: {
@@ -5177,7 +5389,13 @@ module.exports = {
5177
5389
  }
5178
5390
  },
5179
5391
  Tabs: {
5180
- appearances: {},
5392
+ appearances: {
5393
+ equalWidth: {
5394
+ description: 'Divide the available width equally among `TabsItem`',
5395
+ type: 'variant',
5396
+ values: [ true ]
5397
+ }
5398
+ },
5181
5399
  rules: [],
5182
5400
  tokens: {
5183
5401
  borderBottomColor: 'transparent',
@@ -5191,6 +5409,11 @@ module.exports = {
5191
5409
  },
5192
5410
  TabsItem: {
5193
5411
  appearances: {
5412
+ equalWidth: {
5413
+ description: 'Divide the available width equally among `TabsItem`',
5414
+ type: 'variant',
5415
+ values: [ true ]
5416
+ },
5194
5417
  focus: {
5195
5418
  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.",
5196
5419
  platforms: [ 'rn' ],
@@ -5282,7 +5505,8 @@ module.exports = {
5282
5505
  highlightBarHeight: 1,
5283
5506
  highlightColor: '#c9c8c8'
5284
5507
  }
5285
- }
5508
+ },
5509
+ { if: { equalWidth: true }, tokens: { maxWidth: null } }
5286
5510
  ],
5287
5511
  tokens: {
5288
5512
  backgroundColor: '#ffffff',
@@ -6540,5 +6764,5 @@ module.exports = {
6540
6764
  tokens: { size: 96 }
6541
6765
  }
6542
6766
  },
6543
- metadata: { name: 'theme-koodo', themeTokensVersion: '2.41.1' }
6767
+ metadata: { name: 'theme-koodo', themeTokensVersion: '2.42.0' }
6544
6768
  }
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "description": "Koodo theme",
7
7
  "devDependencies": {
8
8
  "@telus-uds/palette-koodo": "^0.26.0",
9
- "@telus-uds/system-theme-tokens": "^2.41.1"
9
+ "@telus-uds/system-theme-tokens": "^2.42.0"
10
10
  },
11
11
  "files": [
12
12
  "build",
@@ -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": "4.12.4"
34
+ "version": "4.14.0"
35
35
  }
package/theme.json CHANGED
@@ -31,6 +31,10 @@
31
31
  "type": "variant",
32
32
  "values": [true]
33
33
  },
34
+ "inverse": {
35
+ "type": "variant",
36
+ "values": [true]
37
+ },
34
38
  "outline": {
35
39
  "type": "variant",
36
40
  "values": [true]
@@ -41,6 +45,16 @@
41
45
  }
42
46
  },
43
47
  "rules": [
48
+ {
49
+ "if": {
50
+ "inverse": true
51
+ },
52
+ "tokens": {
53
+ "backgroundColor": "{palette.color.transparent}",
54
+ "borderColor": "{palette.color.white}",
55
+ "color": "{palette.color.white}"
56
+ }
57
+ },
44
58
  {
45
59
  "if": {
46
60
  "outline": true
@@ -1816,6 +1830,150 @@
1816
1830
  "labelMarginLeft": "{palette.size.size8}"
1817
1831
  }
1818
1832
  },
1833
+ "CheckboxCard": {
1834
+ "appearances": {
1835
+ "checked": "{appearances.CheckboxCard.checked}",
1836
+ "error": "{appearances.CheckboxCard.error}",
1837
+ "focus": "{appearances.CheckboxCard.focus}",
1838
+ "hover": "{appearances.CheckboxCard.hover}",
1839
+ "inactive": "{appearances.CheckboxCard.inactive}",
1840
+ "pressed": "{appearances.CheckboxCard.pressed}",
1841
+ "viewport": "{appearances.system.viewport}"
1842
+ },
1843
+ "rules": [
1844
+ {
1845
+ "if": {
1846
+ "viewport": ["lg", "xl"]
1847
+ },
1848
+ "tokens": {
1849
+ "fontSize": "{palette.fontSize.size24}",
1850
+ "lineHeight": "{palette.lineHeight.multiply130}",
1851
+ "paddingBottom": "{palette.size.size24}",
1852
+ "paddingLeft": "{palette.size.size16}",
1853
+ "paddingRight": "{palette.size.size24}",
1854
+ "paddingTop": "{palette.size.size16}"
1855
+ }
1856
+ },
1857
+ {
1858
+ "if": {
1859
+ "hover": true
1860
+ },
1861
+ "tokens": {
1862
+ "borderColor": "{palette.color.dove}",
1863
+ "checkboxOuterBorderColor": "{palette.color.chathamsBlue}",
1864
+ "checkboxOuterBorderGap": "{palette.size.size2}",
1865
+ "checkboxOuterBorderWidth": "{palette.border.border1}",
1866
+ "outerBorderColor": "{palette.color.gallery}",
1867
+ "outerBorderWidth": "{palette.border.border2}"
1868
+ }
1869
+ },
1870
+ {
1871
+ "if": {
1872
+ "focus": true
1873
+ },
1874
+ "tokens": {
1875
+ "checkboxInputBorderColor": "{palette.color.mosque}",
1876
+ "checkboxOuterBorderColor": "{palette.color.chathamsBlue}",
1877
+ "checkboxOuterBorderGap": "{palette.size.size2}",
1878
+ "checkboxOuterBorderWidth": "{palette.border.border1}",
1879
+ "outerBorderColor": "{palette.color.chathamsBlue}",
1880
+ "outerBorderGap": "{palette.size.size2}",
1881
+ "outerBorderWidth": "{palette.border.border2}"
1882
+ }
1883
+ },
1884
+ {
1885
+ "if": {
1886
+ "checked": true
1887
+ },
1888
+ "tokens": {
1889
+ "borderColor": "{palette.color.silver}",
1890
+ "checkboxInputBorderColor": "{palette.color.mosque}",
1891
+ "checkboxInputBorderWidth": "{palette.border.border2}"
1892
+ }
1893
+ },
1894
+ {
1895
+ "description": "Pressed state matches hover state plus light grey background",
1896
+ "if": {
1897
+ "pressed": true
1898
+ },
1899
+ "tokens": {
1900
+ "backgroundColor": "{palette.color.gallery}",
1901
+ "checkboxOuterBorderColor": "{palette.color.chathamsBlue}",
1902
+ "checkboxOuterBorderGap": "{palette.size.size2}",
1903
+ "outerBorderColor": "{palette.color.silver}",
1904
+ "outerBorderGap": "{palette.size.size0}",
1905
+ "outerBorderWidth": "{palette.border.border1}"
1906
+ }
1907
+ },
1908
+ {
1909
+ "if": {
1910
+ "inactive": true
1911
+ },
1912
+ "tokens": {
1913
+ "backgroundColor": "{palette.color.gallery}",
1914
+ "borderColor": "{system.color.transparent}",
1915
+ "checkboxCheckedBackgroundColor": "{palette.color.silver}",
1916
+ "checkboxInputBackgroundColor": "{palette.color.silver}",
1917
+ "checkboxInputBorderColor": "{palette.color.silver}",
1918
+ "checkboxInputSize": "{palette.size.size16}",
1919
+ "checkboxOuterBorderColor": "{palette.color.silver}",
1920
+ "checkboxOuterBorderGap": "{palette.size.size2}",
1921
+ "checkboxOuterBorderWidth": "{palette.border.border1}",
1922
+ "color": "{palette.color.dove}"
1923
+ }
1924
+ },
1925
+ {
1926
+ "if": {
1927
+ "error": true
1928
+ },
1929
+ "tokens": {
1930
+ "borderColor": "{palette.color.trinidad}",
1931
+ "checkboxInputBorderColor": "{palette.color.trinidad}",
1932
+ "color": "{palette.color.trinidad}"
1933
+ }
1934
+ }
1935
+ ],
1936
+ "tokens": {
1937
+ "backgroundColor": "{palette.color.white}",
1938
+ "borderColor": "{palette.color.silver}",
1939
+ "borderRadius": "{palette.radius.radius4}",
1940
+ "borderWidth": "{palette.border.border1}",
1941
+ "checkboxCheckedBackgroundColor": "{palette.color.mosque}",
1942
+ "checkboxCheckedSize": "{palette.size.size16}",
1943
+ "checkboxInputBackgroundColor": "{palette.color.white}",
1944
+ "checkboxInputBorderColor": "{palette.color.mosque}",
1945
+ "checkboxInputBorderWidth": "{palette.border.border2}",
1946
+ "checkboxInputOutlineColor": "{palette.color.transparent}",
1947
+ "checkboxInputOutlineWidth": "{palette.border.none}",
1948
+ "checkboxInputSize": "{palette.size.size24}",
1949
+ "checkboxOuterBorderColor": "{system.color.transparent}",
1950
+ "checkboxOuterBorderGap": "{system.size.zero}",
1951
+ "checkboxOuterBorderWidth": "{system.border.zero}",
1952
+ "checkboxSpace": "{system.integer.2}",
1953
+ "color": "{palette.color.black}",
1954
+ "contentAlignItems": "{system.flexAlign.stretch}",
1955
+ "contentFlexGrow": "{system.integer.0}",
1956
+ "contentFlexShrink": "{system.integer.1}",
1957
+ "contentJustifyContent": "{system.flexJustifyContent.flexStart}",
1958
+ "contentSpace": "{system.integer.2}",
1959
+ "flex": "{system.integer.1}",
1960
+ "fontName": "{palette.fontName.StagSans}",
1961
+ "fontSize": "{palette.fontSize.size20}",
1962
+ "fontWeight": "{palette.fontWeight.weight700}",
1963
+ "letterSpacing": "{system.letterSpacing.none}",
1964
+ "lineHeight": "{palette.lineHeight.multiply140}",
1965
+ "minWidth": "{palette.size.size288}",
1966
+ "outerBorderColor": "{system.color.transparent}",
1967
+ "outerBorderGap": "{system.size.zero}",
1968
+ "outerBorderWidth": "{system.border.zero}",
1969
+ "paddingBottom": "{palette.size.size16}",
1970
+ "paddingLeft": "{palette.size.size8}",
1971
+ "paddingRight": "{palette.size.size16}",
1972
+ "paddingTop": "{palette.size.size12}",
1973
+ "shadow": "{system.shadow.none}",
1974
+ "textTransform": "{system.textTransform.none}"
1975
+ }
1976
+ },
1819
1977
  "CheckboxGroup": {
1820
1978
  "appearances": {},
1821
1979
  "rules": [],
@@ -2593,8 +2751,56 @@
2593
2751
  }
2594
2752
  },
2595
2753
  "Footnote": {
2596
- "appearances": {},
2597
- "rules": [],
2754
+ "appearances": {
2755
+ "viewport": "{appearances.system.viewport}"
2756
+ },
2757
+ "rules": [
2758
+ {
2759
+ "if": {
2760
+ "viewport": ["xs"]
2761
+ },
2762
+ "tokens": {
2763
+ "footnoteBodyPaddingBottom": "{palette.size.size32}",
2764
+ "footnoteBodyPaddingLeft": "{palette.size.size16}",
2765
+ "footnoteBodyPaddingRight": "{palette.size.size16}",
2766
+ "footnoteBodyPaddingTop": "{palette.size.size0}",
2767
+ "footnoteHeaderPaddingBottom": "{palette.size.size16}",
2768
+ "footnoteHeaderPaddingLeft": "{palette.size.size16}",
2769
+ "footnoteHeaderPaddingRight": "{palette.size.size4}",
2770
+ "footnoteHeaderPaddingTop": "{palette.size.size16}"
2771
+ }
2772
+ },
2773
+ {
2774
+ "if": {
2775
+ "viewport": ["md", "lg"]
2776
+ },
2777
+ "tokens": {
2778
+ "footnoteBodyPaddingBottom": "{palette.size.size40}",
2779
+ "footnoteBodyPaddingLeft": "{palette.size.size16}",
2780
+ "footnoteBodyPaddingRight": "{palette.size.size16}",
2781
+ "footnoteBodyPaddingTop": "{palette.size.size0}",
2782
+ "footnoteHeaderPaddingBottom": "{palette.size.size24}",
2783
+ "footnoteHeaderPaddingLeft": "{palette.size.size16}",
2784
+ "footnoteHeaderPaddingRight": "{palette.size.size4}",
2785
+ "footnoteHeaderPaddingTop": "{palette.size.size24}"
2786
+ }
2787
+ },
2788
+ {
2789
+ "if": {
2790
+ "viewport": ["xl"]
2791
+ },
2792
+ "tokens": {
2793
+ "footnoteBodyPaddingBottom": "{palette.size.size40}",
2794
+ "footnoteBodyPaddingLeft": "{palette.size.size16}",
2795
+ "footnoteBodyPaddingRight": "{palette.size.size16}",
2796
+ "footnoteBodyPaddingTop": "{palette.size.size0}",
2797
+ "footnoteHeaderPaddingBottom": "{palette.size.size24}",
2798
+ "footnoteHeaderPaddingLeft": "{palette.size.size16}",
2799
+ "footnoteHeaderPaddingRight": "{palette.size.size16}",
2800
+ "footnoteHeaderPaddingTop": "{palette.size.size24}"
2801
+ }
2802
+ }
2803
+ ],
2598
2804
  "tokens": {
2599
2805
  "closeButtonBackgroundColor": "{palette.color.white}",
2600
2806
  "closeButtonBorderColor": "{palette.color.black}",
@@ -2609,16 +2815,16 @@
2609
2815
  "closeIcon": "{palette.icon.Close}",
2610
2816
  "footnoteBackground": "{palette.color.white}",
2611
2817
  "footnoteBodyBackground": "{palette.color.white}",
2612
- "footnoteBodyPaddingBottom": "{palette.size.size32}",
2818
+ "footnoteBodyPaddingBottom": "{palette.size.size40}",
2613
2819
  "footnoteBodyPaddingLeft": "{palette.size.size16}",
2614
2820
  "footnoteBodyPaddingRight": "{palette.size.size16}",
2615
2821
  "footnoteBodyPaddingTop": "{palette.size.size0}",
2616
2822
  "footnoteBorderColorMd": "{palette.color.silver}",
2617
2823
  "footnoteBorderTopSizeMd": "{palette.border.border1}",
2618
- "footnoteHeaderPaddingBottom": "{palette.size.size16}",
2824
+ "footnoteHeaderPaddingBottom": "{palette.size.size24}",
2619
2825
  "footnoteHeaderPaddingLeft": "{palette.size.size16}",
2620
- "footnoteHeaderPaddingRight": "{palette.size.size16}",
2621
- "footnoteHeaderPaddingTop": "{palette.size.size16}",
2826
+ "footnoteHeaderPaddingRight": "{palette.size.size4}",
2827
+ "footnoteHeaderPaddingTop": "{palette.size.size24}",
2622
2828
  "headerFontName": "{palette.fontName.StagSans}",
2623
2829
  "headerFontSize": "{palette.size.size16}",
2624
2830
  "headerFontWeight": "{palette.fontWeight.weight700}",
@@ -6110,7 +6316,8 @@
6110
6316
  "alignItems": "{system.flexAlign.stretch}",
6111
6317
  "flexGrow": "{system.integer.0}",
6112
6318
  "flexShrink": "{system.integer.0}",
6113
- "justifyContent": "{system.flexJustifyContent.flexStart}"
6319
+ "justifyContent": "{system.flexJustifyContent.flexStart}",
6320
+ "width": "{system.size.none}"
6114
6321
  }
6115
6322
  },
6116
6323
  "StepTracker": {
@@ -6430,7 +6637,13 @@
6430
6637
  }
6431
6638
  },
6432
6639
  "Tabs": {
6433
- "appearances": {},
6640
+ "appearances": {
6641
+ "equalWidth": {
6642
+ "description": "Divide the available width equally among `TabsItem`",
6643
+ "type": "variant",
6644
+ "values": [true]
6645
+ }
6646
+ },
6434
6647
  "rules": [],
6435
6648
  "tokens": {
6436
6649
  "borderBottomColor": "{system.color.transparent}",
@@ -6444,6 +6657,11 @@
6444
6657
  },
6445
6658
  "TabsItem": {
6446
6659
  "appearances": {
6660
+ "equalWidth": {
6661
+ "description": "Divide the available width equally among `TabsItem`",
6662
+ "type": "variant",
6663
+ "values": [true]
6664
+ },
6447
6665
  "focus": "{appearances.TabsItem.focus}",
6448
6666
  "hover": "{appearances.TabsItem.hover}",
6449
6667
  "inverse": {
@@ -6568,6 +6786,14 @@
6568
6786
  "highlightBarHeight": "{palette.border.border1}",
6569
6787
  "highlightColor": "{palette.color.silver}"
6570
6788
  }
6789
+ },
6790
+ {
6791
+ "if": {
6792
+ "equalWidth": true
6793
+ },
6794
+ "tokens": {
6795
+ "maxWidth": "{system.size.none}"
6796
+ }
6571
6797
  }
6572
6798
  ],
6573
6799
  "tokens": {