@adobe/spectrum-tokens 14.13.1 → 14.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/CHANGELOG.md +172 -0
- package/dist/json/drover.json +6 -6
- package/dist/json/variables.json +6 -6
- package/package.json +1 -2
- package/src/layout.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,72 @@
|
|
|
1
1
|
# [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-design-data)
|
|
2
2
|
|
|
3
|
+
## 14.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1203](https://github.com/adobe/spectrum-design-data/pull/1203) [`0297e7e`](https://github.com/adobe/spectrum-design-data/commit/0297e7ee77e102a3756302f83ab9236cd142ee58) Thanks [@GarthDB](https://github.com/GarthDB)! - Phase D: taxonomy field serializer + size decomposition pilot.
|
|
8
|
+
- **sdk/core/src/naming.rs**: Generalize `extract_legacy_key` to walk the
|
|
9
|
+
field catalog in `serialization.position` order, expanding registry ids to
|
|
10
|
+
their `tokenName` long-forms (e.g. `size:"xl"` → `"extra-large"`). Excludes
|
|
11
|
+
mode-set, color-domain, and legacy metadata annotation fields. Output is
|
|
12
|
+
byte-identical for all current tokens (all gates pass).
|
|
13
|
+
- **sdk/core/src/registry.rs**: Add `token_name(field, id) -> Option<&str>`
|
|
14
|
+
to `RegistryData`, backed by the embedded registry JSON.
|
|
15
|
+
- **sdk/scripts/generate-registry-data.js** + **registry_data.rs**: Generate
|
|
16
|
+
`build_token_name_map()` alongside the existing `build_registry_map()`.
|
|
17
|
+
- **packages/design-data/tokens/layout-component.tokens.json**,
|
|
18
|
+
**layout.tokens.json**: 68 layout tokens decomposed — `size` extracted from
|
|
19
|
+
`property` into the structured field (HIGH-confidence, all roundtrip-verified).
|
|
20
|
+
- **tools/token-mapping-analyzer/test/apply.test.js**: Verify roundtrip
|
|
21
|
+
invariant on already-migrated tokens.
|
|
22
|
+
|
|
23
|
+
- [#1205](https://github.com/adobe/spectrum-design-data/pull/1205) [`b57ae32`](https://github.com/adobe/spectrum-design-data/commit/b57ae328a91c68f25bbf51fffecb6c5f3bed3e8f) Thanks [@GarthDB](https://github.com/GarthDB)! - Phase D: decompose density field in 2 layout-component tokens (ye1.2).
|
|
24
|
+
- **packages/design-data/tokens/layout-component.tokens.json**: decomposed 2 tokens —
|
|
25
|
+
`height-compact` → `height` + `density: compact` and `spacing-spacious` → `spacing` +
|
|
26
|
+
`density: spacious`; Rust roundtrip verified clean.
|
|
27
|
+
|
|
28
|
+
## 14.13.2
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- [#1186](https://github.com/adobe/spectrum-design-data/pull/1186) [`dcf0832`](https://github.com/adobe/spectrum-design-data/commit/dcf083214d56989817db192801638e3ec20e2306) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Token sync from Spectrum Tokens Studio
|
|
33
|
+
|
|
34
|
+
**Original implementer:** @NateBaldwinDesign
|
|
35
|
+
|
|
36
|
+
### Design motivation
|
|
37
|
+
|
|
38
|
+
Web Design / Figma Arch teams agree to revert recent updates to component heights for small and extra small sizes back to their original height values in S2 (prior to layout token refactor)
|
|
39
|
+
|
|
40
|
+
| Size | Current | Update (this PR) |
|
|
41
|
+
| ----------- | ------- | ---------------- |
|
|
42
|
+
| Small | 26px | 24px |
|
|
43
|
+
| Extra small | 22px | 20px |
|
|
44
|
+
|
|
45
|
+
### Token changes
|
|
46
|
+
|
|
47
|
+
## Tokens Changed (4)
|
|
48
|
+
|
|
49
|
+
**Original Branch:** `main`
|
|
50
|
+
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
51
|
+
|
|
52
|
+
### Updated (4)
|
|
53
|
+
|
|
54
|
+
<details open><summary><strong>Updated Properties (4)</strong></summary>
|
|
55
|
+
|
|
56
|
+
<!-- -->
|
|
57
|
+
- `accessory-gap-extra-small`
|
|
58
|
+
- `value`: `4px` -> `3px`
|
|
59
|
+
- `accessory-gap-small`
|
|
60
|
+
- `value`: `5px` -> `4px`
|
|
61
|
+
- `base-padding-vertical-extra-small`
|
|
62
|
+
- `value`: `4px` -> `3px`
|
|
63
|
+
- `base-padding-vertical-small` - `value`: `5px` -> `4px`
|
|
64
|
+
</details>
|
|
65
|
+
|
|
66
|
+
### References
|
|
67
|
+
- Tokens Studio PR: https://github.com/adobe/spectrum-tokens-studio-data/pull/312
|
|
68
|
+
- Spectrum Tokens PR: https://github.com/adobe/spectrum-design-data/pull/1186
|
|
69
|
+
|
|
3
70
|
## 14.13.1
|
|
4
71
|
|
|
5
72
|
### Patch Changes
|
|
@@ -29,6 +96,8 @@
|
|
|
29
96
|
**New Branch:** `f84bce21`
|
|
30
97
|
|
|
31
98
|
<details open><summary><strong>Added (9)</strong></summary>
|
|
99
|
+
|
|
100
|
+
<!-- -->
|
|
32
101
|
- `group-gap-extra-large-spacious`
|
|
33
102
|
- `group-gap-extra-small-spacious`
|
|
34
103
|
- `group-gap-large-spacious`
|
|
@@ -43,6 +112,8 @@
|
|
|
43
112
|
### Updated (15)
|
|
44
113
|
|
|
45
114
|
<details open><summary><strong>Added Properties (5)</strong></summary>
|
|
115
|
+
|
|
116
|
+
<!-- -->
|
|
46
117
|
- `base-padding-horizontal-2x-large`
|
|
47
118
|
- `desktop.schema`: `dimension.json`
|
|
48
119
|
- `desktop.value`: `18px`
|
|
@@ -75,6 +146,7 @@
|
|
|
75
146
|
</details>
|
|
76
147
|
<details open><summary><strong>Deleted Properties (5)</strong></summary>
|
|
77
148
|
|
|
149
|
+
<!-- -->
|
|
78
150
|
- `base-padding-horizontal-2x-large`
|
|
79
151
|
- `value`: -> `14px`
|
|
80
152
|
- `base-padding-horizontal-extra-large`
|
|
@@ -205,9 +277,13 @@
|
|
|
205
277
|
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
206
278
|
|
|
207
279
|
<details open><summary><strong>Newly "Un-deprecated" (1)</strong></summary>
|
|
280
|
+
|
|
281
|
+
<!-- -->
|
|
208
282
|
- `stack-item-item-to-item`
|
|
209
283
|
</details>
|
|
210
284
|
<details open><summary><strong>Added (5)</strong></summary>
|
|
285
|
+
|
|
286
|
+
<!-- -->
|
|
211
287
|
- `stack-item-selected-background-opacity-highlight`
|
|
212
288
|
- `stack-item-selected-background-opacity-highlight-hover`
|
|
213
289
|
- `vertical-align-items`
|
|
@@ -218,6 +294,8 @@
|
|
|
218
294
|
### Updated (2)
|
|
219
295
|
|
|
220
296
|
<details open><summary><strong>Updated Properties (2)</strong></summary>
|
|
297
|
+
|
|
298
|
+
<!-- -->
|
|
221
299
|
- `stack-item-item-to-item`
|
|
222
300
|
- `value`: `-1px` -> `0px`
|
|
223
301
|
- `stack-item-selected-background-color-down` - `value`: `{gray-200}` -> `{gray-300}`
|
|
@@ -256,6 +334,8 @@
|
|
|
256
334
|
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
257
335
|
|
|
258
336
|
<details><summary><strong>Newly Deprecated (66)</strong></summary>
|
|
337
|
+
|
|
338
|
+
<!-- -->
|
|
259
339
|
- `corner-triangle-icon-size-100`
|
|
260
340
|
- `corner-triangle-icon-size-200`
|
|
261
341
|
- `corner-triangle-icon-size-300`
|
|
@@ -372,6 +452,8 @@
|
|
|
372
452
|
## Tokens Changed (671)
|
|
373
453
|
|
|
374
454
|
<details><summary><strong>Newly Deprecated (540)</strong></summary>
|
|
455
|
+
|
|
456
|
+
<!-- -->
|
|
375
457
|
- `text-to-visual-50`
|
|
376
458
|
- `text-to-visual-75`
|
|
377
459
|
- `text-to-visual-100`
|
|
@@ -914,6 +996,8 @@
|
|
|
914
996
|
- `side-navigation-trailing-accessory-area-to-edge`
|
|
915
997
|
</details>
|
|
916
998
|
<details><summary><strong>Added (117)</strong></summary>
|
|
999
|
+
|
|
1000
|
+
<!-- -->
|
|
917
1001
|
- `spacing-25`
|
|
918
1002
|
- `spacing-85`
|
|
919
1003
|
- `spacing-350`
|
|
@@ -1036,6 +1120,8 @@
|
|
|
1036
1120
|
### Updated (14)
|
|
1037
1121
|
|
|
1038
1122
|
<details><summary><strong>Added Properties (6)</strong></summary>
|
|
1123
|
+
|
|
1124
|
+
<!-- -->
|
|
1039
1125
|
- `help-text-top-to-workflow-icon-small`
|
|
1040
1126
|
- `value`: `{component-top-to-workflow-icon-75}`
|
|
1041
1127
|
- `deprecated_comment`: `Replaced with component-top-to-workflow-icon-75`
|
|
@@ -1065,6 +1151,8 @@
|
|
|
1065
1151
|
|
|
1066
1152
|
</details>
|
|
1067
1153
|
<details><summary><strong>Deleted Properties (4)</strong></summary>
|
|
1154
|
+
|
|
1155
|
+
<!-- -->
|
|
1068
1156
|
- `help-text-top-to-workflow-icon-small`
|
|
1069
1157
|
- `desktop.schema`: -> `alias.json`
|
|
1070
1158
|
- `desktop.value`: -> `{component-top-to-workflow-icon-75}`
|
|
@@ -1112,6 +1200,8 @@
|
|
|
1112
1200
|
|
|
1113
1201
|
</details>
|
|
1114
1202
|
<details><summary><strong>Updated Properties (4)</strong></summary>
|
|
1203
|
+
|
|
1204
|
+
<!-- -->
|
|
1115
1205
|
- `help-text-top-to-workflow-icon-small`
|
|
1116
1206
|
- `schema`: `scale-set.json` -> `alias.json`
|
|
1117
1207
|
- `help-text-top-to-workflow-icon-medium`
|
|
@@ -1287,12 +1377,16 @@
|
|
|
1287
1377
|
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
1288
1378
|
|
|
1289
1379
|
<details><summary><strong>Newly Deprecated (3)</strong></summary>
|
|
1380
|
+
|
|
1381
|
+
<!-- -->
|
|
1290
1382
|
- `side-navigation-maximum-width`
|
|
1291
1383
|
- `side-navigation-with-icon-second-level-edge-to-text`
|
|
1292
1384
|
- `side-navigation-with-icon-third-level-edge-to-text`
|
|
1293
1385
|
|
|
1294
1386
|
</details>
|
|
1295
1387
|
<details><summary><strong>Added (12)</strong></summary>
|
|
1388
|
+
|
|
1389
|
+
<!-- -->
|
|
1296
1390
|
- `side-navigation-counter-to-disclosure`
|
|
1297
1391
|
- `side-navigation-edge-to-indicator`
|
|
1298
1392
|
- `side-navigation-indicator-to-content`
|
|
@@ -1311,6 +1405,8 @@
|
|
|
1311
1405
|
### Updated (5)
|
|
1312
1406
|
|
|
1313
1407
|
<details><summary><strong>Updated Properties (5)</strong></summary>
|
|
1408
|
+
|
|
1409
|
+
<!-- -->
|
|
1314
1410
|
- `side-navigation-minimum-width`
|
|
1315
1411
|
- `desktop.value`: `160px` -> `144px`
|
|
1316
1412
|
- `mobile.value`: `200px` -> `180px`
|
|
@@ -1363,6 +1459,8 @@
|
|
|
1363
1459
|
**New Branch:** tokens-sync/patch-spectrum2-from-main
|
|
1364
1460
|
|
|
1365
1461
|
<details><summary><strong>Added (43)</strong></summary>
|
|
1462
|
+
|
|
1463
|
+
<!-- -->
|
|
1366
1464
|
- `gradient-stop-1-avatar`
|
|
1367
1465
|
- `gradient-stop-2-avatar`
|
|
1368
1466
|
- `gradient-stop-3-avatar`
|
|
@@ -1424,6 +1522,8 @@
|
|
|
1424
1522
|
**Tokens Changed (33)**
|
|
1425
1523
|
|
|
1426
1524
|
<details><summary><strong>Added (33)</strong></summary>
|
|
1525
|
+
|
|
1526
|
+
<!-- -->
|
|
1427
1527
|
- `gradient-stop-1-avatar`
|
|
1428
1528
|
- `gradient-stop-2-avatar`
|
|
1429
1529
|
- `gradient-stop-3-avatar`
|
|
@@ -1486,6 +1586,8 @@
|
|
|
1486
1586
|
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
1487
1587
|
|
|
1488
1588
|
<details><summary><strong>Added (1)</strong></summary>
|
|
1589
|
+
|
|
1590
|
+
<!-- -->
|
|
1489
1591
|
- `select-box-horizontal-minimum-width`
|
|
1490
1592
|
|
|
1491
1593
|
</details>
|
|
@@ -1493,14 +1595,20 @@
|
|
|
1493
1595
|
### Updated (3)
|
|
1494
1596
|
|
|
1495
1597
|
<details><summary><strong>Added Properties (1)</strong></summary>
|
|
1598
|
+
|
|
1599
|
+
<!-- -->
|
|
1496
1600
|
- `select-box-edge-to-checkbox` - `value`: `8px` - `uuid`: `70a20970-ebd9-48a7-8324-44d352f79978`
|
|
1497
1601
|
|
|
1498
1602
|
</details>
|
|
1499
1603
|
<details><summary><strong>Deleted Properties (1)</strong></summary>
|
|
1604
|
+
|
|
1605
|
+
<!-- -->
|
|
1500
1606
|
- `select-box-edge-to-checkbox` - `desktop.schema`: -> `dimension.json` - `desktop.value`: -> `12px` - `desktop.uuid`: -> `70a20970-ebd9-48a7-8324-44d352f79978` - `mobile.schema`: -> `dimension.json` - `mobile.value`: -> `15px` - `mobile.uuid`: -> `f028974a-20d1-4e03-af77-921b1dfc2469`
|
|
1501
1607
|
|
|
1502
1608
|
</details>
|
|
1503
1609
|
<details><summary><strong>Updated Properties (1)</strong></summary>
|
|
1610
|
+
|
|
1611
|
+
<!-- -->
|
|
1504
1612
|
- `select-box-edge-to-checkbox` - `schema`: `scale-set.json` -> `dimension.json`
|
|
1505
1613
|
|
|
1506
1614
|
</details>
|
|
@@ -1520,12 +1628,16 @@
|
|
|
1520
1628
|
Updated (4)
|
|
1521
1629
|
|
|
1522
1630
|
<details><summary>Added Properties (1)</summary>
|
|
1631
|
+
|
|
1632
|
+
<!-- -->
|
|
1523
1633
|
- `accordion-top-to-text-compact-medium`
|
|
1524
1634
|
value: 5px
|
|
1525
1635
|
uuid: [`484c960`](https://github.com/adobe/spectrum-design-data/commit/484c9603)-07f1-4ba6-b1bf-7cfaec5d1594
|
|
1526
1636
|
|
|
1527
1637
|
</details>
|
|
1528
1638
|
<details><summary>Deleted Properties (1)</summary>
|
|
1639
|
+
|
|
1640
|
+
<!-- -->
|
|
1529
1641
|
- `accordion-top-to-text-compact-medium`
|
|
1530
1642
|
desktop.schema: dimension.json
|
|
1531
1643
|
desktop.value: 8px
|
|
@@ -1536,6 +1648,8 @@
|
|
|
1536
1648
|
|
|
1537
1649
|
</details>
|
|
1538
1650
|
<details><summary>Updated Properties (2)</summary>
|
|
1651
|
+
|
|
1652
|
+
<!-- -->
|
|
1539
1653
|
- `accordion-top-to-text-compact-medium`
|
|
1540
1654
|
schema: scale-set.json -> dimension.json
|
|
1541
1655
|
- `accordion-top-to-text-spacious-medium`
|
|
@@ -1551,11 +1665,15 @@
|
|
|
1551
1665
|
- [#525](https://github.com/adobe/spectrum-design-data/pull/525) [`db6d0ed`](https://github.com/adobe/spectrum-design-data/commit/db6d0ed669e013e6f3ff52aea89fc7a5e798149a) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - composite tokens
|
|
1552
1666
|
|
|
1553
1667
|
<details><summary>Newly Deprecated (2)</summary>
|
|
1668
|
+
|
|
1669
|
+
<!-- -->
|
|
1554
1670
|
- `card-minimum-width`: This token has been deprecated, use card-minimum-width-default instead.
|
|
1555
1671
|
- `tree-view-item-to-item`: This token has been deprecated, use tree-view-item-to-item-default instead.
|
|
1556
1672
|
|
|
1557
1673
|
</details>
|
|
1558
1674
|
<details><summary>Added (22)</summary>
|
|
1675
|
+
|
|
1676
|
+
<!-- -->
|
|
1559
1677
|
- `component-xs-regular`
|
|
1560
1678
|
- `component-xs-medium`
|
|
1561
1679
|
- `component-xs-bold`
|
|
@@ -1582,6 +1700,8 @@
|
|
|
1582
1700
|
</details>
|
|
1583
1701
|
|
|
1584
1702
|
<details><summary>Updated Properties (3)</summary>
|
|
1703
|
+
|
|
1704
|
+
<!-- -->
|
|
1585
1705
|
- `sans-serif-font-family`
|
|
1586
1706
|
value: Adobe Clean -> Adobe Clean Spectrum VF
|
|
1587
1707
|
- `card-minimum-width`
|
|
@@ -1609,6 +1729,8 @@
|
|
|
1609
1729
|
Updated (2)
|
|
1610
1730
|
|
|
1611
1731
|
<details><summary>Updated Properties (2)</summary>
|
|
1732
|
+
|
|
1733
|
+
<!-- -->
|
|
1612
1734
|
- `accordion-focus-indicator-gap`
|
|
1613
1735
|
- value: `0px` -> `2px`
|
|
1614
1736
|
- `accordion-top-to-text-medium`
|
|
@@ -1630,6 +1752,8 @@
|
|
|
1630
1752
|
## Token Diff
|
|
1631
1753
|
|
|
1632
1754
|
<details><summary>Newly Deprecated (8)</summary>
|
|
1755
|
+
|
|
1756
|
+
<!-- -->
|
|
1633
1757
|
- `accordion-top-to-text-regular-small`
|
|
1634
1758
|
- `accordion-top-to-text-regular-medium`
|
|
1635
1759
|
- `accordion-top-to-text-regular-large`
|
|
@@ -1642,6 +1766,8 @@
|
|
|
1642
1766
|
</details>
|
|
1643
1767
|
|
|
1644
1768
|
<details><summary>Added (20)</summary>
|
|
1769
|
+
|
|
1770
|
+
<!-- -->
|
|
1645
1771
|
- `field-top-to-disclosure-icon-compact-small`
|
|
1646
1772
|
- `field-top-to-disclosure-icon-small`
|
|
1647
1773
|
- `field-top-to-disclosure-icon-spacious-small`
|
|
@@ -1666,6 +1792,8 @@
|
|
|
1666
1792
|
</details>
|
|
1667
1793
|
|
|
1668
1794
|
<details><summary>Added Properties (3)</summary>
|
|
1795
|
+
|
|
1796
|
+
<!-- -->
|
|
1669
1797
|
- `accordion-top-to-text-compact-small`
|
|
1670
1798
|
- `desktop.schema`: dimension.json
|
|
1671
1799
|
- `desktop.value`: 3px
|
|
@@ -1698,6 +1826,8 @@
|
|
|
1698
1826
|
## Token Diff
|
|
1699
1827
|
|
|
1700
1828
|
<details><summary>Added (28)</summary>
|
|
1829
|
+
|
|
1830
|
+
<!-- -->
|
|
1701
1831
|
- `visual-to-control-100`
|
|
1702
1832
|
- `label-to-description-0`
|
|
1703
1833
|
- `list-view-minimum-height`
|
|
@@ -1744,6 +1874,8 @@
|
|
|
1744
1874
|
## Token Diff
|
|
1745
1875
|
|
|
1746
1876
|
<details><summary>Added (22)</summary>
|
|
1877
|
+
|
|
1878
|
+
<!-- -->
|
|
1747
1879
|
- `link-out-icon-size-300`
|
|
1748
1880
|
- `link-out-icon-size-400`
|
|
1749
1881
|
- `add-icon-size-50`
|
|
@@ -1782,6 +1914,8 @@
|
|
|
1782
1914
|
## Token Diff
|
|
1783
1915
|
|
|
1784
1916
|
<details><summary>Added (19)<br /></summary>
|
|
1917
|
+
|
|
1918
|
+
<!-- -->
|
|
1785
1919
|
- `accordion-edge-to-content-area-small`
|
|
1786
1920
|
- `accordion-edge-to-content-area-medium`
|
|
1787
1921
|
- `accordion-edge-to-content-area-large`
|
|
@@ -1817,6 +1951,8 @@
|
|
|
1817
1951
|
## Token Diff
|
|
1818
1952
|
|
|
1819
1953
|
<details><summary>Added (3)</summary>
|
|
1954
|
+
|
|
1955
|
+
<!-- -->
|
|
1820
1956
|
- `card-horizontal-edge-to-content-compact`
|
|
1821
1957
|
- `card-horizontal-edge-to-content-default`
|
|
1822
1958
|
- `card-horizontal-edge-to-content-spacious`
|
|
@@ -1837,11 +1973,15 @@
|
|
|
1837
1973
|
|
|
1838
1974
|
<details>
|
|
1839
1975
|
<summary>Newly Deprecated (1)</summary>
|
|
1976
|
+
|
|
1977
|
+
<!-- -->
|
|
1840
1978
|
- `drop-zone-content-maximum-width`
|
|
1841
1979
|
|
|
1842
1980
|
</details>
|
|
1843
1981
|
<details>
|
|
1844
1982
|
<summary>Added (18)</summary>
|
|
1983
|
+
|
|
1984
|
+
<!-- -->
|
|
1845
1985
|
- `line-height-font-size-25`
|
|
1846
1986
|
- `line-height-font-size-50`
|
|
1847
1987
|
- `line-height-font-size-75`
|
|
@@ -1876,6 +2016,8 @@
|
|
|
1876
2016
|
## Token Diff
|
|
1877
2017
|
|
|
1878
2018
|
<details><summary>Added (18)</summary>
|
|
2019
|
+
|
|
2020
|
+
<!-- -->
|
|
1879
2021
|
- `steplist-step-default-width-small`
|
|
1880
2022
|
- `steplist-step-default-width-medium`
|
|
1881
2023
|
- `steplist-step-default-width-large`
|
|
@@ -1906,6 +2048,8 @@
|
|
|
1906
2048
|
## Token Diff
|
|
1907
2049
|
|
|
1908
2050
|
<details><summary>Added (1)</summary>
|
|
2051
|
+
|
|
2052
|
+
<!-- -->
|
|
1909
2053
|
- `segmented-control-item-maximum-width`
|
|
1910
2054
|
|
|
1911
2055
|
</details>
|
|
@@ -1929,6 +2073,8 @@
|
|
|
1929
2073
|
Updated (174)
|
|
1930
2074
|
|
|
1931
2075
|
<details><summary>Added Properties (82)</summary>
|
|
2076
|
+
|
|
2077
|
+
<!-- -->
|
|
1932
2078
|
- `informative-subtle-background-color-default`
|
|
1933
2079
|
- `wireframe.schema`: `alias.json`
|
|
1934
2080
|
- `wireframe.value`: `informative-color-200`
|
|
@@ -2260,6 +2406,8 @@
|
|
|
2260
2406
|
|
|
2261
2407
|
</details>
|
|
2262
2408
|
<details><summary>Updated Properties (92)</summary>
|
|
2409
|
+
|
|
2410
|
+
<!-- -->
|
|
2263
2411
|
- `icon-color-blue-primary-default`
|
|
2264
2412
|
- `wireframe.uuid`: `20880dfd-57dc-486d-b0dd-c44002f340e3` -> `a306b28e-f698-427d-a576-439b2ab378fc`
|
|
2265
2413
|
- `icon-color-red-primary-default`
|
|
@@ -2506,6 +2654,8 @@
|
|
|
2506
2654
|
***
|
|
2507
2655
|
|
|
2508
2656
|
<details><summary>Added (61)</summary>
|
|
2657
|
+
|
|
2658
|
+
<!-- -->
|
|
2509
2659
|
- `card-edge-to-content-compact-extra-small`
|
|
2510
2660
|
- `card-edge-to-content-default-extra-small`
|
|
2511
2661
|
- `card-edge-to-content-spacious-extra-small`
|
|
@@ -2573,6 +2723,8 @@
|
|
|
2573
2723
|
#### Updated (3)
|
|
2574
2724
|
|
|
2575
2725
|
<details><summary>Added Properties (1)</summary>
|
|
2726
|
+
|
|
2727
|
+
<!-- -->
|
|
2576
2728
|
- `card-selection-background-color`
|
|
2577
2729
|
- `light.schema`: `alias.json`
|
|
2578
2730
|
- `light.value`: `transparent-white-600`
|
|
@@ -2583,12 +2735,16 @@
|
|
|
2583
2735
|
|
|
2584
2736
|
</details>
|
|
2585
2737
|
<details><summary>Deleted Properties (1)</summary>
|
|
2738
|
+
|
|
2739
|
+
<!-- -->
|
|
2586
2740
|
- `card-selection-background-color`
|
|
2587
2741
|
- `value`: `gray-100`
|
|
2588
2742
|
- `uuid`: `622c6e86-dea6-416d-9f13-bb6ef112d3cb`
|
|
2589
2743
|
|
|
2590
2744
|
</details>
|
|
2591
2745
|
<details><summary>Updated Properties (1)</summary>
|
|
2746
|
+
|
|
2747
|
+
<!-- -->
|
|
2592
2748
|
- `card-selection-background-color`
|
|
2593
2749
|
- `schema`: `alias.json` -> `color-set.json`
|
|
2594
2750
|
|
|
@@ -10045,6 +10201,8 @@ Updated (1592)
|
|
|
10045
10201
|
Updated S2 Table tokens
|
|
10046
10202
|
|
|
10047
10203
|
<details><summary>Tokens added (42):</summary>
|
|
10204
|
+
|
|
10205
|
+
<!-- -->
|
|
10048
10206
|
- `illustrated-message-maximum-width`
|
|
10049
10207
|
- `side-focus-indicator`
|
|
10050
10208
|
- `table-row-bottom-to-text-extra-large`
|
|
@@ -10091,6 +10249,8 @@ Updated (1592)
|
|
|
10091
10249
|
</details>
|
|
10092
10250
|
|
|
10093
10251
|
<details><summary>Tokens updated (101):</summary>
|
|
10252
|
+
|
|
10253
|
+
<!-- -->
|
|
10094
10254
|
- `informative-subtle-background-color-default`
|
|
10095
10255
|
- light: `blue-200` -> `informative-color-200`
|
|
10096
10256
|
- dark: `blue-200` -> `informative-color-300`
|
|
@@ -12165,6 +12325,8 @@ Updated (1592)
|
|
|
12165
12325
|
## Token Diff
|
|
12166
12326
|
|
|
12167
12327
|
<details><summary><strong>Token values updated (246):</strong></summary>
|
|
12328
|
+
|
|
12329
|
+
<!-- -->
|
|
12168
12330
|
- `accent-background-color-default`
|
|
12169
12331
|
- `accent-background-color-down`
|
|
12170
12332
|
- `accent-background-color-hover`
|
|
@@ -12425,6 +12587,8 @@ Updated (1592)
|
|
|
12425
12587
|
## Token Diff
|
|
12426
12588
|
|
|
12427
12589
|
<details><summary><strong>Tokens added (64):</strong></summary>
|
|
12590
|
+
|
|
12591
|
+
<!-- -->
|
|
12428
12592
|
- `brown-100`
|
|
12429
12593
|
- `brown-1000`
|
|
12430
12594
|
- `brown-1100`
|
|
@@ -12585,6 +12749,8 @@ Updated (1592)
|
|
|
12585
12749
|
## Token Diff
|
|
12586
12750
|
|
|
12587
12751
|
<details><summary><strong>Tokens added (46):</strong></summary>
|
|
12752
|
+
|
|
12753
|
+
<!-- -->
|
|
12588
12754
|
- `accent-color-1500`
|
|
12589
12755
|
- `accent-color-1600`
|
|
12590
12756
|
- `blue-1500`
|
|
@@ -12635,6 +12801,8 @@ Updated (1592)
|
|
|
12635
12801
|
</details>
|
|
12636
12802
|
|
|
12637
12803
|
<details><summary><strong>Token values updated (408):</strong></summary>
|
|
12804
|
+
|
|
12805
|
+
<!-- -->
|
|
12638
12806
|
- `accent-background-color-default`
|
|
12639
12807
|
- `accent-background-color-down`
|
|
12640
12808
|
- `accent-background-color-hover`
|
|
@@ -13059,6 +13227,8 @@ Updated (1592)
|
|
|
13059
13227
|
## Token Diff
|
|
13060
13228
|
|
|
13061
13229
|
<details><summary><strong>Token values updated (358):</strong></summary>
|
|
13230
|
+
|
|
13231
|
+
<!-- -->
|
|
13062
13232
|
- `accent-background-color-default`
|
|
13063
13233
|
- `accent-background-color-down`
|
|
13064
13234
|
- `accent-background-color-hover`
|
|
@@ -13431,6 +13601,8 @@ Updated (1592)
|
|
|
13431
13601
|
## Token Diff
|
|
13432
13602
|
|
|
13433
13603
|
<details><summary><strong>Tokens values updated (102):</strong></summary>
|
|
13604
|
+
|
|
13605
|
+
<!-- -->
|
|
13434
13606
|
- `accent-background-color-default`
|
|
13435
13607
|
- `accent-background-color-down`
|
|
13436
13608
|
- `accent-background-color-hover`
|
package/dist/json/drover.json
CHANGED
|
@@ -1638,10 +1638,10 @@
|
|
|
1638
1638
|
"accessory-gap-affixed-medium": "4px",
|
|
1639
1639
|
"accessory-gap-affixed-small": "3px",
|
|
1640
1640
|
"accessory-gap-extra-large": "8px",
|
|
1641
|
-
"accessory-gap-extra-small": "
|
|
1641
|
+
"accessory-gap-extra-small": "3px",
|
|
1642
1642
|
"accessory-gap-large": "7px",
|
|
1643
1643
|
"accessory-gap-medium": "6px",
|
|
1644
|
-
"accessory-gap-small": "
|
|
1644
|
+
"accessory-gap-small": "4px",
|
|
1645
1645
|
"accessory-item-padding-2x-small": "2px",
|
|
1646
1646
|
"accessory-item-padding-extra-large": "9px",
|
|
1647
1647
|
"accessory-item-padding-extra-small": "3px",
|
|
@@ -1808,18 +1808,18 @@
|
|
|
1808
1808
|
"base-padding-horizontal-uniform-2x-large": "15px",
|
|
1809
1809
|
"base-padding-horizontal-uniform-2x-small": "2px",
|
|
1810
1810
|
"base-padding-horizontal-uniform-extra-large": "13px",
|
|
1811
|
-
"base-padding-horizontal-uniform-extra-small": "
|
|
1811
|
+
"base-padding-horizontal-uniform-extra-small": "3px",
|
|
1812
1812
|
"base-padding-horizontal-uniform-large": "10px",
|
|
1813
1813
|
"base-padding-horizontal-uniform-medium": "7px",
|
|
1814
|
-
"base-padding-horizontal-uniform-small": "
|
|
1814
|
+
"base-padding-horizontal-uniform-small": "4px",
|
|
1815
1815
|
"base-padding-vertical-2x-large": "15px",
|
|
1816
1816
|
"base-padding-vertical-2x-small": "2px",
|
|
1817
1817
|
"base-padding-vertical-3x-large": "19px",
|
|
1818
1818
|
"base-padding-vertical-extra-large": "13px",
|
|
1819
|
-
"base-padding-vertical-extra-small": "
|
|
1819
|
+
"base-padding-vertical-extra-small": "3px",
|
|
1820
1820
|
"base-padding-vertical-large": "10px",
|
|
1821
1821
|
"base-padding-vertical-medium": "7px",
|
|
1822
|
-
"base-padding-vertical-small": "
|
|
1822
|
+
"base-padding-vertical-small": "4px",
|
|
1823
1823
|
"body-cjk-line-height": 1.7,
|
|
1824
1824
|
"body-cjk-size-l": "16px",
|
|
1825
1825
|
"body-cjk-size-m": "14px",
|
package/dist/json/variables.json
CHANGED
|
@@ -28153,7 +28153,7 @@
|
|
|
28153
28153
|
"uuid": "ae4398f5-6ead-4928-adf9-f39c0cfcec11"
|
|
28154
28154
|
},
|
|
28155
28155
|
"accessory-gap-extra-small": {
|
|
28156
|
-
"value": "
|
|
28156
|
+
"value": "3px",
|
|
28157
28157
|
"uuid": "c4071c28-33df-4461-a05c-2a1b1c295d5e"
|
|
28158
28158
|
},
|
|
28159
28159
|
"accessory-gap-large": {
|
|
@@ -28165,7 +28165,7 @@
|
|
|
28165
28165
|
"uuid": "627d972a-4164-4ec6-8c64-0ee97c23fc43"
|
|
28166
28166
|
},
|
|
28167
28167
|
"accessory-gap-small": {
|
|
28168
|
-
"value": "
|
|
28168
|
+
"value": "4px",
|
|
28169
28169
|
"uuid": "843d1518-7aa6-4d60-968e-b71ebbfcd88e"
|
|
28170
28170
|
},
|
|
28171
28171
|
"accessory-item-padding-2x-small": {
|
|
@@ -28334,7 +28334,7 @@
|
|
|
28334
28334
|
},
|
|
28335
28335
|
"base-padding-horizontal-uniform-extra-small": {
|
|
28336
28336
|
"ref": "{base-padding-vertical-extra-small}",
|
|
28337
|
-
"value": "
|
|
28337
|
+
"value": "3px",
|
|
28338
28338
|
"uuid": "337ce5da-d735-4930-a9c8-9fecf4dcb9b0"
|
|
28339
28339
|
},
|
|
28340
28340
|
"base-padding-horizontal-uniform-large": {
|
|
@@ -28349,7 +28349,7 @@
|
|
|
28349
28349
|
},
|
|
28350
28350
|
"base-padding-horizontal-uniform-small": {
|
|
28351
28351
|
"ref": "{base-padding-vertical-small}",
|
|
28352
|
-
"value": "
|
|
28352
|
+
"value": "4px",
|
|
28353
28353
|
"uuid": "3c42cb65-d84e-4cfd-bf17-e9f21ce17b7e"
|
|
28354
28354
|
},
|
|
28355
28355
|
"base-padding-vertical-2x-large": {
|
|
@@ -28369,7 +28369,7 @@
|
|
|
28369
28369
|
"uuid": "62ea5f0e-3cb5-4535-8cd1-a7f30ba932fc"
|
|
28370
28370
|
},
|
|
28371
28371
|
"base-padding-vertical-extra-small": {
|
|
28372
|
-
"value": "
|
|
28372
|
+
"value": "3px",
|
|
28373
28373
|
"uuid": "e4437bc9-3acf-4bb5-9dab-39157a0d5e47"
|
|
28374
28374
|
},
|
|
28375
28375
|
"base-padding-vertical-large": {
|
|
@@ -28381,7 +28381,7 @@
|
|
|
28381
28381
|
"uuid": "5741f832-f012-45bc-9e87-6e07ab2cb87f"
|
|
28382
28382
|
},
|
|
28383
28383
|
"base-padding-vertical-small": {
|
|
28384
|
-
"value": "
|
|
28384
|
+
"value": "4px",
|
|
28385
28385
|
"uuid": "80b4ea6a-2f97-4d23-9256-61e30ed07f4d"
|
|
28386
28386
|
},
|
|
28387
28387
|
"border-width-100": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spectrum-tokens",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.14.0",
|
|
4
4
|
"description": "Design tokens for Spectrum, Adobe's design system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"ajv": "^8.17.1",
|
|
32
32
|
"ajv-formats": "^3.0.1",
|
|
33
|
-
"deep-object-diff": "^1.1.9",
|
|
34
33
|
"find-duplicated-property-keys": "^1.2.9",
|
|
35
34
|
"style-dictionary": "^3.9.2",
|
|
36
35
|
"style-dictionary-sets": "^2.3.0",
|
package/src/layout.json
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"accessory-gap-extra-small": {
|
|
51
51
|
"$schema": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/dimension.json",
|
|
52
|
-
"value": "
|
|
52
|
+
"value": "3px",
|
|
53
53
|
"uuid": "c4071c28-33df-4461-a05c-2a1b1c295d5e",
|
|
54
54
|
"description": "Spacing between child elements for accessory elements at extra-small size"
|
|
55
55
|
},
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"accessory-gap-small": {
|
|
69
69
|
"$schema": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/dimension.json",
|
|
70
|
-
"value": "
|
|
70
|
+
"value": "4px",
|
|
71
71
|
"uuid": "843d1518-7aa6-4d60-968e-b71ebbfcd88e",
|
|
72
72
|
"description": "Spacing between child elements for accessory elements at small size"
|
|
73
73
|
},
|
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
},
|
|
350
350
|
"base-padding-vertical-extra-small": {
|
|
351
351
|
"$schema": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/dimension.json",
|
|
352
|
-
"value": "
|
|
352
|
+
"value": "3px",
|
|
353
353
|
"uuid": "e4437bc9-3acf-4bb5-9dab-39157a0d5e47",
|
|
354
354
|
"description": "Vertical internal spacing for base UI elements at extra-small size"
|
|
355
355
|
},
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
},
|
|
368
368
|
"base-padding-vertical-small": {
|
|
369
369
|
"$schema": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/dimension.json",
|
|
370
|
-
"value": "
|
|
370
|
+
"value": "4px",
|
|
371
371
|
"uuid": "80b4ea6a-2f97-4d23-9256-61e30ed07f4d",
|
|
372
372
|
"description": "Vertical internal spacing for base UI elements at small size"
|
|
373
373
|
},
|