@adobe/spectrum-tokens 14.6.0 → 14.7.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 +50 -4
- package/dist/json/drover.json +8 -311
- package/dist/json/variables.json +915 -4414
- package/naming-exceptions.json +632 -3543
- package/package.json +1 -1
- package/schemas/token-file.json +1 -1
- package/schemas/token-types/{text-align.json → alignment.json} +4 -4
- package/snapshots/validation-snapshot.json +0 -175
- package/src/color-aliases.json +27 -262
- package/src/color-component.json +17 -161
- package/src/icons.json +23 -454
- package/src/layout-component.json +760 -1693
- package/src/layout.json +34 -133
- package/src/semantic-color-palette.json +5 -45
- package/src/typography.json +39 -737
- package/test/checkComponentProps.js +4 -6
- package/schemas/token-types/typography-scale.json +0 -82
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,59 @@
|
|
|
1
1
|
# [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-design-data)
|
|
2
2
|
|
|
3
|
+
## 14.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#842](https://github.com/adobe/spectrum-design-data/pull/842) [`c28702f`](https://github.com/adobe/spectrum-design-data/commit/c28702f19ad408d3dc1461bb059a1c7125f7d32f) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Token sync from Spectrum Tokens Studio
|
|
8
|
+
|
|
9
|
+
**Original implementer:** @larz0
|
|
10
|
+
|
|
11
|
+
### Design motivation
|
|
12
|
+
|
|
13
|
+
"Highlight selection is a visual treatment used in components (like list views, tables, or tree views) to indicate that an item is selected, without relying on checkboxes or radio buttons. It’s helpful when we want to avoid clutter or don’t want users interacting with extra controls like checkboxes."
|
|
14
|
+
|
|
15
|
+
### Token changes
|
|
16
|
+
|
|
17
|
+
## Tokens Changed (8)
|
|
18
|
+
|
|
19
|
+
**Original Branch:** `main`
|
|
20
|
+
**New Branch:** `tokens-sync/patch-spectrum2-from-main`
|
|
21
|
+
|
|
22
|
+
<details open><summary><strong>Newly "Un-deprecated" (1)</strong></summary>
|
|
23
|
+
- `stack-item-item-to-item`
|
|
24
|
+
</details>
|
|
25
|
+
<details open><summary><strong>Added (5)</strong></summary>
|
|
26
|
+
- `stack-item-selected-background-opacity-highlight`
|
|
27
|
+
- `stack-item-selected-background-opacity-highlight-hover`
|
|
28
|
+
- `vertical-align-items`
|
|
29
|
+
- `stack-item-minimum-padding-vertical`
|
|
30
|
+
- `stack-item-selected-background-color-highlight`
|
|
31
|
+
</details>
|
|
32
|
+
|
|
33
|
+
### Updated (2)
|
|
34
|
+
|
|
35
|
+
<details open><summary><strong>Updated Properties (2)</strong></summary>
|
|
36
|
+
- `stack-item-item-to-item`
|
|
37
|
+
- `value`: `-1px` -> `0px`
|
|
38
|
+
- `stack-item-selected-background-color-down` - `value`: `{gray-200}` -> `{gray-300}`
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
### References
|
|
42
|
+
- Tokens Studio PR: https://github.com/adobe/spectrum-tokens-studio-data/pull/303
|
|
43
|
+
- Spectrum Tokens PR: https://github.com/adobe/spectrum-design-data/pull/842
|
|
44
|
+
|
|
3
45
|
## 14.6.0
|
|
4
46
|
|
|
5
47
|
### Minor Changes
|
|
6
48
|
|
|
7
|
-
- [#
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
49
|
+
- [#840](https://github.com/adobe/spectrum-design-data/pull/840) [`b11942c`](https://github.com/adobe/spectrum-design-data/commit/b11942cf52ec0077cfd53d8cb70ca722dc88c2e0) Thanks [@GarthDB](https://github.com/GarthDB)! - Generalize the `text-align` token type schema to `alignment`. The schema's
|
|
50
|
+
file name (`text-align.json` → `alignment.json`), `$id`
|
|
51
|
+
(`…/token-types/text-align.json` → `…/token-types/alignment.json`), title,
|
|
52
|
+
and description now describe a generic single-axis alignment value usable
|
|
53
|
+
for horizontal, vertical, or text alignment. The enum
|
|
54
|
+
(`start | center | end`) and default (`start`) are unchanged, and the
|
|
55
|
+
`text-align-*` token names are unchanged. Consumers referencing the old
|
|
56
|
+
schema `$id` or file path must update.
|
|
11
57
|
|
|
12
58
|
## 14.5.0
|
|
13
59
|
|