@adobe/spectrum-tokens 12.15.0 → 12.16.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 +15 -3
- package/dist/json/drover.json +1 -0
- package/dist/json/variables.json +4 -0
- package/manifest.json +6 -6
- package/package.json +5 -6
- package/src/layout-component.json +5 -0
- package/tasks/addIds.js +1 -1
- package/tasks/buildManifest.js +1 -1
- package/tasks/deprecateExpress.js +1 -1
- package/test/checkId.test.js +1 -1
- package/test/schemaValidator.test.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,28 @@
|
|
|
1
1
|
# @adobe/spectrum-tokens
|
|
2
2
|
|
|
3
|
-
## 12.
|
|
3
|
+
## 12.16.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 25dc20d: Add new menu-item token for section dividers
|
|
8
8
|
|
|
9
9
|
#### Token Diff
|
|
10
10
|
|
|
11
11
|
_Tokens added (1):_
|
|
12
12
|
|
|
13
|
-
- `
|
|
13
|
+
- `menu-item-section-divider-height`
|
|
14
|
+
|
|
15
|
+
## 12.15.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- fc12f6d: Added side-navigation token
|
|
20
|
+
|
|
21
|
+
#### Token Diff
|
|
22
|
+
|
|
23
|
+
_Tokens added (1):_
|
|
24
|
+
|
|
25
|
+
- `side-navigation-bottom-to-text`
|
|
14
26
|
|
|
15
27
|
## 12.14.0
|
|
16
28
|
|
package/dist/json/drover.json
CHANGED
|
@@ -1714,6 +1714,7 @@
|
|
|
1714
1714
|
"menu-item-edge-to-content-not-selected-medium": "32px",
|
|
1715
1715
|
"menu-item-edge-to-content-not-selected-small": "28px",
|
|
1716
1716
|
"menu-item-label-to-description": "1px",
|
|
1717
|
+
"menu-item-section-divider-height": "8px",
|
|
1717
1718
|
"menu-item-top-to-disclosure-icon-extra-large": "17px",
|
|
1718
1719
|
"menu-item-top-to-disclosure-icon-large": "14px",
|
|
1719
1720
|
"menu-item-top-to-disclosure-icon-medium": "11px",
|
package/dist/json/variables.json
CHANGED
|
@@ -13795,6 +13795,10 @@
|
|
|
13795
13795
|
}
|
|
13796
13796
|
}
|
|
13797
13797
|
},
|
|
13798
|
+
"menu-item-section-divider-height": {
|
|
13799
|
+
"value": "8px",
|
|
13800
|
+
"uuid": "dac5c077-b948-434b-91bd-0759c2414007"
|
|
13801
|
+
},
|
|
13798
13802
|
"slider-track-thickness": {
|
|
13799
13803
|
"sets": {
|
|
13800
13804
|
"spectrum": {
|
package/manifest.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[
|
|
2
|
-
"src/
|
|
3
|
-
"src/color-component.json",
|
|
4
|
-
"src/color-palette.json",
|
|
5
|
-
"src/layout-component.json",
|
|
6
|
-
"src/layout.json",
|
|
2
|
+
"src/typography.json",
|
|
7
3
|
"src/semantic-color-palette.json",
|
|
8
|
-
"src/
|
|
4
|
+
"src/layout.json",
|
|
5
|
+
"src/layout-component.json",
|
|
6
|
+
"src/color-palette.json",
|
|
7
|
+
"src/color-component.json",
|
|
8
|
+
"src/color-aliases.json"
|
|
9
9
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spectrum-tokens",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.16.0",
|
|
4
4
|
"description": "Design tokens for Spectrum, Adobe's design system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "tasks/buildSpectrumTokens.js",
|
|
@@ -21,12 +21,11 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"ajv": "^8.12.0",
|
|
23
23
|
"ajv-formats": "^2.1.1",
|
|
24
|
-
"deep-object-diff": "^1.1.
|
|
25
|
-
"glob": "^
|
|
26
|
-
"
|
|
27
|
-
"style-dictionary": "^3.7.1",
|
|
24
|
+
"deep-object-diff": "^1.1.9",
|
|
25
|
+
"glob": "^10.3.3",
|
|
26
|
+
"style-dictionary": "^3.8.0",
|
|
28
27
|
"style-dictionary-sets": "^2.3.0",
|
|
29
|
-
"tar": "^6.1.
|
|
28
|
+
"tar": "^6.1.15",
|
|
30
29
|
"tmp-promise": "^3.0.3"
|
|
31
30
|
},
|
|
32
31
|
"scripts": {}
|
|
@@ -2050,6 +2050,11 @@
|
|
|
2050
2050
|
}
|
|
2051
2051
|
}
|
|
2052
2052
|
},
|
|
2053
|
+
"menu-item-section-divider-height": {
|
|
2054
|
+
"component": "menu",
|
|
2055
|
+
"value": "8px",
|
|
2056
|
+
"uuid": "dac5c077-b948-434b-91bd-0759c2414007"
|
|
2057
|
+
},
|
|
2053
2058
|
"slider-track-thickness": {
|
|
2054
2059
|
"component": "slider",
|
|
2055
2060
|
"sets": {
|
package/tasks/addIds.js
CHANGED
package/tasks/buildManifest.js
CHANGED
|
@@ -10,7 +10,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
10
10
|
governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import glob from "glob
|
|
13
|
+
import { glob } from "glob";
|
|
14
14
|
import { writeFile } from "fs/promises";
|
|
15
15
|
import { format } from "prettier";
|
|
16
16
|
|
|
@@ -10,7 +10,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
10
10
|
governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import glob from "glob
|
|
13
|
+
import { glob } from "glob";
|
|
14
14
|
import { readFile, writeFile } from "fs/promises";
|
|
15
15
|
import augmentExpressTokens from "./lib/augmentExpressTokens.js";
|
|
16
16
|
|
package/test/checkId.test.js
CHANGED
|
@@ -11,7 +11,7 @@ governing permissions and limitations under the License.
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
import test from "ava";
|
|
14
|
-
import glob from "glob
|
|
14
|
+
import { glob } from "glob";
|
|
15
15
|
import { readFile } from "fs/promises";
|
|
16
16
|
const fileNames = await glob("src/**/*.json");
|
|
17
17
|
const files = await Promise.all(
|
|
@@ -13,7 +13,7 @@ governing permissions and limitations under the License.
|
|
|
13
13
|
import test from "ava";
|
|
14
14
|
import Ajv from "ajv/dist/2020.js";
|
|
15
15
|
import addFormats from "ajv-formats";
|
|
16
|
-
import glob from "glob
|
|
16
|
+
import { glob } from "glob";
|
|
17
17
|
import { readFile } from "fs/promises";
|
|
18
18
|
|
|
19
19
|
const readJSON = async (filePath) =>
|