@adobe/spectrum-tokens 13.0.0-beta.55 → 13.0.0-beta.56
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 +18 -0
- package/dist/json/drover.json +1 -0
- package/dist/json/variables.json +4 -0
- package/package.json +1 -1
- package/src/layout.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @adobe/spectrum-tokens
|
|
2
2
|
|
|
3
|
+
## 13.0.0-beta.56
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#463](https://github.com/adobe/spectrum-tokens/pull/463) [`1ae8051`](https://github.com/adobe/spectrum-tokens/commit/1ae80516c48b70b87a8cd81cde75af8755188d45) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added a component-size-maximum-perspective-down token, which defines that components larger than 96px would appear to scale down more.
|
|
8
|
+
|
|
9
|
+
## Design Motivation
|
|
10
|
+
|
|
11
|
+
This token is used in larger components that support a down state that scales, like the select box.
|
|
12
|
+
|
|
13
|
+
## Token Diff
|
|
14
|
+
|
|
15
|
+
<details open><summary>Added (1)</summary>
|
|
16
|
+
|
|
17
|
+
- `component-size-maximum-perspective-down`
|
|
18
|
+
|
|
19
|
+
</details>
|
|
20
|
+
|
|
3
21
|
## 13.0.0-beta.55
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/json/drover.json
CHANGED
|
@@ -1824,6 +1824,7 @@
|
|
|
1824
1824
|
"component-pill-edge-to-visual-only-300": "11px",
|
|
1825
1825
|
"component-pill-edge-to-visual-only-75": "4px",
|
|
1826
1826
|
"component-size-difference-down": "-2px",
|
|
1827
|
+
"component-size-maximum-perspective-down": "96px",
|
|
1827
1828
|
"component-size-minimum-perspective-down": "24px",
|
|
1828
1829
|
"component-size-width-ratio-down": 0.3333,
|
|
1829
1830
|
"component-to-menu-extra-large": "8px",
|
package/dist/json/variables.json
CHANGED
|
@@ -26129,6 +26129,10 @@
|
|
|
26129
26129
|
"value": "40px",
|
|
26130
26130
|
"uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51"
|
|
26131
26131
|
},
|
|
26132
|
+
"component-size-maximum-perspective-down": {
|
|
26133
|
+
"value": "96px",
|
|
26134
|
+
"uuid": "437f2e57-2aa6-41b5-bdcc-e4993dc42168"
|
|
26135
|
+
},
|
|
26132
26136
|
"accent-color-100": {
|
|
26133
26137
|
"ref": "{blue-100}",
|
|
26134
26138
|
"sets": {
|
package/package.json
CHANGED
package/src/layout.json
CHANGED
|
@@ -2413,5 +2413,10 @@
|
|
|
2413
2413
|
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json",
|
|
2414
2414
|
"value": "{spacing-600}",
|
|
2415
2415
|
"uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51"
|
|
2416
|
+
},
|
|
2417
|
+
"component-size-maximum-perspective-down": {
|
|
2418
|
+
"$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json",
|
|
2419
|
+
"value": "96px",
|
|
2420
|
+
"uuid": "437f2e57-2aa6-41b5-bdcc-e4993dc42168"
|
|
2416
2421
|
}
|
|
2417
|
-
}
|
|
2422
|
+
}
|