@adobe/spectrum-tokens 14.13.2 → 14.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/CHANGELOG.md CHANGED
@@ -1,5 +1,82 @@
1
1
  # [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-design-data)
2
2
 
3
+ ## 14.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1229](https://github.com/adobe/spectrum-design-data/pull/1229) [`b4f79db`](https://github.com/adobe/spectrum-design-data/commit/b4f79db78d8b889b46b98d0fc26d424c1d4fe5fe) Thanks [@GarthDB](https://github.com/GarthDB)! - Route tab-item, menu-item, and in-field-stepper anatomy sub-parts to their real parent
8
+ component, clearing 123 SPEC-009 warnings (part of spectrum-design-data-uep; remaining
9
+ 71 tokens tracked separately pending a taxonomy ruling).
10
+ - **packages/design-data/registry/anatomy-terms.json**: add `in-field-stepper`; mark
11
+ `tab-item`/`menu-item` `usedIn: ["tokens"]`.
12
+ - **packages/design-data/tokens/{layout,color}-component.tokens.json**: 123 tokens gain
13
+ `component` (real parent: `tabs`, `menu`, `number-field`) + `anatomy` (sub-part) + a
14
+ pinned `legacyKey` so the published key is unchanged.
15
+ - **packages/tokens/src/{layout,color}-component.json**: regenerated; only the flat
16
+ `component` attribute value changed (67 tokens), no key renames.
17
+ - **packages/tokens/naming-exceptions.json** / **validation-snapshot.json**: track the
18
+ 49 tokens whose pinned legacy key no longer roundtrips through canonical name
19
+ generation (category `anatomy-decomposition`).
20
+ - **packages/tokens/test/checkComponentProps.js**: recognize anatomy sub-part prefixes
21
+ (via the anatomy registry) as valid even when they don't match `component`.
22
+ - **sdk/core/src/migrate.rs**: `thin_name_val` now pins `legacyKey` when a corrected
23
+ `component` no longer reproduces the original key, fixing legacy→cascade roundtrip.
24
+
25
+ - [#1231](https://github.com/adobe/spectrum-design-data/pull/1231) [`62e74d7`](https://github.com/adobe/spectrum-design-data/commit/62e74d7f4d59bcc3e63fbc5b7c594f65ef78b024) Thanks [@GarthDB](https://github.com/GarthDB)! - Re-key icon tokens off the new `icon` name field (part of spectrum-design-data-aui),
26
+ clearing ~315 SPEC-009 warnings. Published legacy keys are unchanged.
27
+ - **packages/design-data/registry/icon-terms.json**: new registry, 12 icon ids (`icon`,
28
+ `ui`, `checkmark`, `chevron`, `dash`, `arrow`, `cross`, `add`, `link-out`,
29
+ `drag-handle`, `asterisk`, `gripper`), with `tokenName` long-form expansions.
30
+ - **packages/design-data/tokens/icons.tokens.json**: 191 tokens re-keyed
31
+ `component:'icon'` → `icon:'icon'`.
32
+ - **packages/design-data/tokens/layout-component.tokens.json**: 124 tokens re-keyed
33
+ `component:'X-icon'` → `icon:'X'` across 11 distinct values.
34
+ - **sdk/core/src/naming.rs**: `extract_legacy_key` gains an icon (non-color) branch and
35
+ a thin-format guard so re-keyed tokens still resolve to their original legacy key.
36
+ - **sdk/core/src/legacy.rs**: legacy-metadata hoisting (`resolve_owner_component`) now
37
+ falls back to the icon field so published `component` metadata is unaffected.
38
+ - **packages/tokens/src/icons.json**, **layout-component.json**: regenerated, byte-identical
39
+ to their pre-change state.
40
+
41
+ - [#1238](https://github.com/adobe/spectrum-design-data/pull/1238) [`8d8bf09`](https://github.com/adobe/spectrum-design-data/commit/8d8bf0904e716ed86b10f890251980f73f0215c7) Thanks [@GarthDB](https://github.com/GarthDB)! - Decompose the 16 remaining fused-property typography tokens onto proper
42
+ `component`/`property`/`family`/`script`/`emphasis`/`size` fields (closes
43
+ spectrum-design-data-1lf).
44
+ - **packages/design-data/tokens/typography.tokens.json**:
45
+ `body-cjk-size-{l,m,s,xl,xs,xxl,xxs,xxxl}`, `body-size-xxs`, `heading-cjk-font-weight`,
46
+ `heading-cjk-size-xxxxl`, `heading-size-xxxxl` get `component`/`property`/`script`/`size`
47
+ fields, retaining `legacyKey` to pin their published fused name.
48
+ `heading-{sans-serif,serif}[-emphasized]-font-weight` get `component`/`property`/`family`/
49
+ `emphasis` fields; their reconstructed names already match the fused originals, so no
50
+ `legacyKey` pin is needed.
51
+ - **packages/tokens/src/typography.json**: regenerated legacy output now carries a
52
+ `component` attribute on these 16 tokens (previously absent) — an accepted, additive
53
+ publish diff.
54
+
55
+ ## 14.14.0
56
+
57
+ ### Minor Changes
58
+
59
+ - [#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.
60
+ - **sdk/core/src/naming.rs**: Generalize `extract_legacy_key` to walk the
61
+ field catalog in `serialization.position` order, expanding registry ids to
62
+ their `tokenName` long-forms (e.g. `size:"xl"` → `"extra-large"`). Excludes
63
+ mode-set, color-domain, and legacy metadata annotation fields. Output is
64
+ byte-identical for all current tokens (all gates pass).
65
+ - **sdk/core/src/registry.rs**: Add `token_name(field, id) -> Option<&str>`
66
+ to `RegistryData`, backed by the embedded registry JSON.
67
+ - **sdk/scripts/generate-registry-data.js** + **registry_data.rs**: Generate
68
+ `build_token_name_map()` alongside the existing `build_registry_map()`.
69
+ - **packages/design-data/tokens/layout-component.tokens.json**,
70
+ **layout.tokens.json**: 68 layout tokens decomposed — `size` extracted from
71
+ `property` into the structured field (HIGH-confidence, all roundtrip-verified).
72
+ - **tools/token-mapping-analyzer/test/apply.test.js**: Verify roundtrip
73
+ invariant on already-migrated tokens.
74
+
75
+ - [#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).
76
+ - **packages/design-data/tokens/layout-component.tokens.json**: decomposed 2 tokens —
77
+ `height-compact` → `height` + `density: compact` and `spacing-spacious` → `spacing` +
78
+ `density: spacious`; Rust roundtrip verified clean.
79
+
3
80
  ## 14.13.2
4
81
 
5
82
  ### Patch Changes
@@ -27,6 +104,8 @@
27
104
  ### Updated (4)
28
105
 
29
106
  <details open><summary><strong>Updated Properties (4)</strong></summary>
107
+
108
+ <!-- -->
30
109
  - `accessory-gap-extra-small`
31
110
  - `value`: `4px` -> `3px`
32
111
  - `accessory-gap-small`
@@ -69,6 +148,8 @@
69
148
  **New Branch:** `f84bce21`
70
149
 
71
150
  <details open><summary><strong>Added (9)</strong></summary>
151
+
152
+ <!-- -->
72
153
  - `group-gap-extra-large-spacious`
73
154
  - `group-gap-extra-small-spacious`
74
155
  - `group-gap-large-spacious`
@@ -83,6 +164,8 @@
83
164
  ### Updated (15)
84
165
 
85
166
  <details open><summary><strong>Added Properties (5)</strong></summary>
167
+
168
+ <!-- -->
86
169
  - `base-padding-horizontal-2x-large`
87
170
  - `desktop.schema`: `dimension.json`
88
171
  - `desktop.value`: `18px`
@@ -114,6 +197,8 @@
114
197
  - `base-padding-horizontal-small` - `desktop.schema`: `dimension.json` - `desktop.value`: `10px` - `desktop.uuid`: `ba072414-2cdd-4773-86a5-11ca47c08e23` - `mobile.schema`: `dimension.json` - `mobile.value`: `8px` - `mobile.uuid`: `6b43633d-8f29-4c24-b26e-687d6f161bce`
115
198
  </details>
116
199
  <details open><summary><strong>Deleted Properties (5)</strong></summary>
200
+
201
+ <!-- -->
117
202
  - `base-padding-horizontal-2x-large`
118
203
  - `value`: -> `14px`
119
204
  - `base-padding-horizontal-extra-large`
@@ -244,9 +329,13 @@
244
329
  **New Branch:** `tokens-sync/patch-spectrum2-from-main`
245
330
 
246
331
  <details open><summary><strong>Newly "Un-deprecated" (1)</strong></summary>
332
+
333
+ <!-- -->
247
334
  - `stack-item-item-to-item`
248
335
  </details>
249
336
  <details open><summary><strong>Added (5)</strong></summary>
337
+
338
+ <!-- -->
250
339
  - `stack-item-selected-background-opacity-highlight`
251
340
  - `stack-item-selected-background-opacity-highlight-hover`
252
341
  - `vertical-align-items`
@@ -257,6 +346,8 @@
257
346
  ### Updated (2)
258
347
 
259
348
  <details open><summary><strong>Updated Properties (2)</strong></summary>
349
+
350
+ <!-- -->
260
351
  - `stack-item-item-to-item`
261
352
  - `value`: `-1px` -> `0px`
262
353
  - `stack-item-selected-background-color-down` - `value`: `{gray-200}` -> `{gray-300}`
@@ -295,6 +386,8 @@
295
386
  **New Branch:** `tokens-sync/patch-spectrum2-from-main`
296
387
 
297
388
  <details><summary><strong>Newly Deprecated (66)</strong></summary>
389
+
390
+ <!-- -->
298
391
  - `corner-triangle-icon-size-100`
299
392
  - `corner-triangle-icon-size-200`
300
393
  - `corner-triangle-icon-size-300`
@@ -411,6 +504,8 @@
411
504
  ## Tokens Changed (671)
412
505
 
413
506
  <details><summary><strong>Newly Deprecated (540)</strong></summary>
507
+
508
+ <!-- -->
414
509
  - `text-to-visual-50`
415
510
  - `text-to-visual-75`
416
511
  - `text-to-visual-100`
@@ -953,6 +1048,8 @@
953
1048
  - `side-navigation-trailing-accessory-area-to-edge`
954
1049
  </details>
955
1050
  <details><summary><strong>Added (117)</strong></summary>
1051
+
1052
+ <!-- -->
956
1053
  - `spacing-25`
957
1054
  - `spacing-85`
958
1055
  - `spacing-350`
@@ -1075,6 +1172,8 @@
1075
1172
  ### Updated (14)
1076
1173
 
1077
1174
  <details><summary><strong>Added Properties (6)</strong></summary>
1175
+
1176
+ <!-- -->
1078
1177
  - `help-text-top-to-workflow-icon-small`
1079
1178
  - `value`: `{component-top-to-workflow-icon-75}`
1080
1179
  - `deprecated_comment`: `Replaced with component-top-to-workflow-icon-75`
@@ -1104,6 +1203,8 @@
1104
1203
 
1105
1204
  </details>
1106
1205
  <details><summary><strong>Deleted Properties (4)</strong></summary>
1206
+
1207
+ <!-- -->
1107
1208
  - `help-text-top-to-workflow-icon-small`
1108
1209
  - `desktop.schema`: -> `alias.json`
1109
1210
  - `desktop.value`: -> `{component-top-to-workflow-icon-75}`
@@ -1151,6 +1252,8 @@
1151
1252
 
1152
1253
  </details>
1153
1254
  <details><summary><strong>Updated Properties (4)</strong></summary>
1255
+
1256
+ <!-- -->
1154
1257
  - `help-text-top-to-workflow-icon-small`
1155
1258
  - `schema`: `scale-set.json` -> `alias.json`
1156
1259
  - `help-text-top-to-workflow-icon-medium`
@@ -1326,12 +1429,16 @@
1326
1429
  **New Branch:** `tokens-sync/patch-spectrum2-from-main`
1327
1430
 
1328
1431
  <details><summary><strong>Newly Deprecated (3)</strong></summary>
1432
+
1433
+ <!-- -->
1329
1434
  - `side-navigation-maximum-width`
1330
1435
  - `side-navigation-with-icon-second-level-edge-to-text`
1331
1436
  - `side-navigation-with-icon-third-level-edge-to-text`
1332
1437
 
1333
1438
  </details>
1334
1439
  <details><summary><strong>Added (12)</strong></summary>
1440
+
1441
+ <!-- -->
1335
1442
  - `side-navigation-counter-to-disclosure`
1336
1443
  - `side-navigation-edge-to-indicator`
1337
1444
  - `side-navigation-indicator-to-content`
@@ -1350,6 +1457,8 @@
1350
1457
  ### Updated (5)
1351
1458
 
1352
1459
  <details><summary><strong>Updated Properties (5)</strong></summary>
1460
+
1461
+ <!-- -->
1353
1462
  - `side-navigation-minimum-width`
1354
1463
  - `desktop.value`: `160px` -> `144px`
1355
1464
  - `mobile.value`: `200px` -> `180px`
@@ -1402,6 +1511,8 @@
1402
1511
  **New Branch:** tokens-sync/patch-spectrum2-from-main
1403
1512
 
1404
1513
  <details><summary><strong>Added (43)</strong></summary>
1514
+
1515
+ <!-- -->
1405
1516
  - `gradient-stop-1-avatar`
1406
1517
  - `gradient-stop-2-avatar`
1407
1518
  - `gradient-stop-3-avatar`
@@ -1463,6 +1574,8 @@
1463
1574
  **Tokens Changed (33)**
1464
1575
 
1465
1576
  <details><summary><strong>Added (33)</strong></summary>
1577
+
1578
+ <!-- -->
1466
1579
  - `gradient-stop-1-avatar`
1467
1580
  - `gradient-stop-2-avatar`
1468
1581
  - `gradient-stop-3-avatar`
@@ -1525,6 +1638,8 @@
1525
1638
  **New Branch:** `tokens-sync/patch-spectrum2-from-main`
1526
1639
 
1527
1640
  <details><summary><strong>Added (1)</strong></summary>
1641
+
1642
+ <!-- -->
1528
1643
  - `select-box-horizontal-minimum-width`
1529
1644
 
1530
1645
  </details>
@@ -1532,14 +1647,20 @@
1532
1647
  ### Updated (3)
1533
1648
 
1534
1649
  <details><summary><strong>Added Properties (1)</strong></summary>
1650
+
1651
+ <!-- -->
1535
1652
  - `select-box-edge-to-checkbox` - `value`: `8px` - `uuid`: `70a20970-ebd9-48a7-8324-44d352f79978`
1536
1653
 
1537
1654
  </details>
1538
1655
  <details><summary><strong>Deleted Properties (1)</strong></summary>
1656
+
1657
+ <!-- -->
1539
1658
  - `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`
1540
1659
 
1541
1660
  </details>
1542
1661
  <details><summary><strong>Updated Properties (1)</strong></summary>
1662
+
1663
+ <!-- -->
1543
1664
  - `select-box-edge-to-checkbox` - `schema`: `scale-set.json` -> `dimension.json`
1544
1665
 
1545
1666
  </details>
@@ -1559,12 +1680,16 @@
1559
1680
  Updated (4)
1560
1681
 
1561
1682
  <details><summary>Added Properties (1)</summary>
1683
+
1684
+ <!-- -->
1562
1685
  - `accordion-top-to-text-compact-medium`
1563
1686
  value: 5px
1564
1687
  uuid: [`484c960`](https://github.com/adobe/spectrum-design-data/commit/484c9603)-07f1-4ba6-b1bf-7cfaec5d1594
1565
1688
 
1566
1689
  </details>
1567
1690
  <details><summary>Deleted Properties (1)</summary>
1691
+
1692
+ <!-- -->
1568
1693
  - `accordion-top-to-text-compact-medium`
1569
1694
  desktop.schema: dimension.json
1570
1695
  desktop.value: 8px
@@ -1575,6 +1700,8 @@
1575
1700
 
1576
1701
  </details>
1577
1702
  <details><summary>Updated Properties (2)</summary>
1703
+
1704
+ <!-- -->
1578
1705
  - `accordion-top-to-text-compact-medium`
1579
1706
  schema: scale-set.json -> dimension.json
1580
1707
  - `accordion-top-to-text-spacious-medium`
@@ -1590,11 +1717,15 @@
1590
1717
  - [#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
1591
1718
 
1592
1719
  <details><summary>Newly Deprecated (2)</summary>
1720
+
1721
+ <!-- -->
1593
1722
  - `card-minimum-width`: This token has been deprecated, use card-minimum-width-default instead.
1594
1723
  - `tree-view-item-to-item`: This token has been deprecated, use tree-view-item-to-item-default instead.
1595
1724
 
1596
1725
  </details>
1597
1726
  <details><summary>Added (22)</summary>
1727
+
1728
+ <!-- -->
1598
1729
  - `component-xs-regular`
1599
1730
  - `component-xs-medium`
1600
1731
  - `component-xs-bold`
@@ -1621,6 +1752,8 @@
1621
1752
  </details>
1622
1753
 
1623
1754
  <details><summary>Updated Properties (3)</summary>
1755
+
1756
+ <!-- -->
1624
1757
  - `sans-serif-font-family`
1625
1758
  value: Adobe Clean -> Adobe Clean Spectrum VF
1626
1759
  - `card-minimum-width`
@@ -1648,6 +1781,8 @@
1648
1781
  Updated (2)
1649
1782
 
1650
1783
  <details><summary>Updated Properties (2)</summary>
1784
+
1785
+ <!-- -->
1651
1786
  - `accordion-focus-indicator-gap`
1652
1787
  - value: `0px` -> `2px`
1653
1788
  - `accordion-top-to-text-medium`
@@ -1669,6 +1804,8 @@
1669
1804
  ## Token Diff
1670
1805
 
1671
1806
  <details><summary>Newly Deprecated (8)</summary>
1807
+
1808
+ <!-- -->
1672
1809
  - `accordion-top-to-text-regular-small`
1673
1810
  - `accordion-top-to-text-regular-medium`
1674
1811
  - `accordion-top-to-text-regular-large`
@@ -1681,6 +1818,8 @@
1681
1818
  </details>
1682
1819
 
1683
1820
  <details><summary>Added (20)</summary>
1821
+
1822
+ <!-- -->
1684
1823
  - `field-top-to-disclosure-icon-compact-small`
1685
1824
  - `field-top-to-disclosure-icon-small`
1686
1825
  - `field-top-to-disclosure-icon-spacious-small`
@@ -1705,6 +1844,8 @@
1705
1844
  </details>
1706
1845
 
1707
1846
  <details><summary>Added Properties (3)</summary>
1847
+
1848
+ <!-- -->
1708
1849
  - `accordion-top-to-text-compact-small`
1709
1850
  - `desktop.schema`: dimension.json
1710
1851
  - `desktop.value`: 3px
@@ -1737,6 +1878,8 @@
1737
1878
  ## Token Diff
1738
1879
 
1739
1880
  <details><summary>Added (28)</summary>
1881
+
1882
+ <!-- -->
1740
1883
  - `visual-to-control-100`
1741
1884
  - `label-to-description-0`
1742
1885
  - `list-view-minimum-height`
@@ -1783,6 +1926,8 @@
1783
1926
  ## Token Diff
1784
1927
 
1785
1928
  <details><summary>Added (22)</summary>
1929
+
1930
+ <!-- -->
1786
1931
  - `link-out-icon-size-300`
1787
1932
  - `link-out-icon-size-400`
1788
1933
  - `add-icon-size-50`
@@ -1821,6 +1966,8 @@
1821
1966
  ## Token Diff
1822
1967
 
1823
1968
  <details><summary>Added (19)<br /></summary>
1969
+
1970
+ <!-- -->
1824
1971
  - `accordion-edge-to-content-area-small`
1825
1972
  - `accordion-edge-to-content-area-medium`
1826
1973
  - `accordion-edge-to-content-area-large`
@@ -1856,6 +2003,8 @@
1856
2003
  ## Token Diff
1857
2004
 
1858
2005
  <details><summary>Added (3)</summary>
2006
+
2007
+ <!-- -->
1859
2008
  - `card-horizontal-edge-to-content-compact`
1860
2009
  - `card-horizontal-edge-to-content-default`
1861
2010
  - `card-horizontal-edge-to-content-spacious`
@@ -1876,11 +2025,15 @@
1876
2025
 
1877
2026
  <details>
1878
2027
  <summary>Newly Deprecated (1)</summary>
2028
+
2029
+ <!-- -->
1879
2030
  - `drop-zone-content-maximum-width`
1880
2031
 
1881
2032
  </details>
1882
2033
  <details>
1883
2034
  <summary>Added (18)</summary>
2035
+
2036
+ <!-- -->
1884
2037
  - `line-height-font-size-25`
1885
2038
  - `line-height-font-size-50`
1886
2039
  - `line-height-font-size-75`
@@ -1915,6 +2068,8 @@
1915
2068
  ## Token Diff
1916
2069
 
1917
2070
  <details><summary>Added (18)</summary>
2071
+
2072
+ <!-- -->
1918
2073
  - `steplist-step-default-width-small`
1919
2074
  - `steplist-step-default-width-medium`
1920
2075
  - `steplist-step-default-width-large`
@@ -1945,6 +2100,8 @@
1945
2100
  ## Token Diff
1946
2101
 
1947
2102
  <details><summary>Added (1)</summary>
2103
+
2104
+ <!-- -->
1948
2105
  - `segmented-control-item-maximum-width`
1949
2106
 
1950
2107
  </details>
@@ -1968,6 +2125,8 @@
1968
2125
  Updated (174)
1969
2126
 
1970
2127
  <details><summary>Added Properties (82)</summary>
2128
+
2129
+ <!-- -->
1971
2130
  - `informative-subtle-background-color-default`
1972
2131
  - `wireframe.schema`: `alias.json`
1973
2132
  - `wireframe.value`: `informative-color-200`
@@ -2299,6 +2458,8 @@
2299
2458
 
2300
2459
  </details>
2301
2460
  <details><summary>Updated Properties (92)</summary>
2461
+
2462
+ <!-- -->
2302
2463
  - `icon-color-blue-primary-default`
2303
2464
  - `wireframe.uuid`: `20880dfd-57dc-486d-b0dd-c44002f340e3` -> `a306b28e-f698-427d-a576-439b2ab378fc`
2304
2465
  - `icon-color-red-primary-default`
@@ -2545,6 +2706,8 @@
2545
2706
  ***
2546
2707
 
2547
2708
  <details><summary>Added (61)</summary>
2709
+
2710
+ <!-- -->
2548
2711
  - `card-edge-to-content-compact-extra-small`
2549
2712
  - `card-edge-to-content-default-extra-small`
2550
2713
  - `card-edge-to-content-spacious-extra-small`
@@ -2612,6 +2775,8 @@
2612
2775
  #### Updated (3)
2613
2776
 
2614
2777
  <details><summary>Added Properties (1)</summary>
2778
+
2779
+ <!-- -->
2615
2780
  - `card-selection-background-color`
2616
2781
  - `light.schema`: `alias.json`
2617
2782
  - `light.value`: `transparent-white-600`
@@ -2622,12 +2787,16 @@
2622
2787
 
2623
2788
  </details>
2624
2789
  <details><summary>Deleted Properties (1)</summary>
2790
+
2791
+ <!-- -->
2625
2792
  - `card-selection-background-color`
2626
2793
  - `value`: `gray-100`
2627
2794
  - `uuid`: `622c6e86-dea6-416d-9f13-bb6ef112d3cb`
2628
2795
 
2629
2796
  </details>
2630
2797
  <details><summary>Updated Properties (1)</summary>
2798
+
2799
+ <!-- -->
2631
2800
  - `card-selection-background-color`
2632
2801
  - `schema`: `alias.json` -> `color-set.json`
2633
2802
 
@@ -10084,6 +10253,8 @@ Updated (1592)
10084
10253
  Updated S2 Table tokens
10085
10254
 
10086
10255
  <details><summary>Tokens added (42):</summary>
10256
+
10257
+ <!-- -->
10087
10258
  - `illustrated-message-maximum-width`
10088
10259
  - `side-focus-indicator`
10089
10260
  - `table-row-bottom-to-text-extra-large`
@@ -10130,6 +10301,8 @@ Updated (1592)
10130
10301
  </details>
10131
10302
 
10132
10303
  <details><summary>Tokens updated (101):</summary>
10304
+
10305
+ <!-- -->
10133
10306
  - `informative-subtle-background-color-default`
10134
10307
  - light: `blue-200` -> `informative-color-200`
10135
10308
  - dark: `blue-200` -> `informative-color-300`
@@ -12204,6 +12377,8 @@ Updated (1592)
12204
12377
  ## Token Diff
12205
12378
 
12206
12379
  <details><summary><strong>Token values updated (246):</strong></summary>
12380
+
12381
+ <!-- -->
12207
12382
  - `accent-background-color-default`
12208
12383
  - `accent-background-color-down`
12209
12384
  - `accent-background-color-hover`
@@ -12464,6 +12639,8 @@ Updated (1592)
12464
12639
  ## Token Diff
12465
12640
 
12466
12641
  <details><summary><strong>Tokens added (64):</strong></summary>
12642
+
12643
+ <!-- -->
12467
12644
  - `brown-100`
12468
12645
  - `brown-1000`
12469
12646
  - `brown-1100`
@@ -12624,6 +12801,8 @@ Updated (1592)
12624
12801
  ## Token Diff
12625
12802
 
12626
12803
  <details><summary><strong>Tokens added (46):</strong></summary>
12804
+
12805
+ <!-- -->
12627
12806
  - `accent-color-1500`
12628
12807
  - `accent-color-1600`
12629
12808
  - `blue-1500`
@@ -12674,6 +12853,8 @@ Updated (1592)
12674
12853
  </details>
12675
12854
 
12676
12855
  <details><summary><strong>Token values updated (408):</strong></summary>
12856
+
12857
+ <!-- -->
12677
12858
  - `accent-background-color-default`
12678
12859
  - `accent-background-color-down`
12679
12860
  - `accent-background-color-hover`
@@ -13098,6 +13279,8 @@ Updated (1592)
13098
13279
  ## Token Diff
13099
13280
 
13100
13281
  <details><summary><strong>Token values updated (358):</strong></summary>
13282
+
13283
+ <!-- -->
13101
13284
  - `accent-background-color-default`
13102
13285
  - `accent-background-color-down`
13103
13286
  - `accent-background-color-hover`
@@ -13470,6 +13653,8 @@ Updated (1592)
13470
13653
  ## Token Diff
13471
13654
 
13472
13655
  <details><summary><strong>Tokens values updated (102):</strong></summary>
13656
+
13657
+ <!-- -->
13473
13658
  - `accent-background-color-default`
13474
13659
  - `accent-background-color-down`
13475
13660
  - `accent-background-color-hover`