@adobe/spectrum-tokens 12.25.0 → 12.26.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 +6 -0
- package/dist/json/variables.json +6 -2
- package/package.json +1 -1
- package/schemas/token-types/color-set.json +6 -2
- package/schemas/token-types/scale-set.json +6 -2
- package/src/color-aliases.json +136 -68
- package/src/color-component.json +2 -1
- package/src/color-palette.json +386 -193
- package/src/icons.json +109 -55
- package/src/layout-component.json +896 -448
- package/src/layout.json +277 -139
- package/src/semantic-color-palette.json +28 -14
- package/src/typography.json +40 -20
- package/tasks/addIds.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @adobe/spectrum-tokens
|
|
2
2
|
|
|
3
|
+
## 12.26.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#345](https://github.com/adobe/spectrum-tokens/pull/345) [`fe4c707`](https://github.com/adobe/spectrum-tokens/commit/fe4c707c5ae2cc89efe6439dc775cddc94b706b3) Thanks [@GarthDB](https://github.com/GarthDB)! - Added UUIDs to the base of set tokens.
|
|
8
|
+
|
|
3
9
|
## 12.25.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/json/variables.json
CHANGED
|
@@ -16325,8 +16325,12 @@
|
|
|
16325
16325
|
"color-area-border-rounding": {
|
|
16326
16326
|
"ref": "{corner-radius-100}",
|
|
16327
16327
|
"sets": {
|
|
16328
|
-
"spectrum": {
|
|
16329
|
-
|
|
16328
|
+
"spectrum": {
|
|
16329
|
+
"uuid": "67b83ee8-2782-48a5-ba27-70f690c95b4a"
|
|
16330
|
+
},
|
|
16331
|
+
"express": {
|
|
16332
|
+
"uuid": "179b1a27-66f9-47b9-9af9-648c0a3dbbfb"
|
|
16333
|
+
}
|
|
16330
16334
|
},
|
|
16331
16335
|
"uuid": "ab656bf4-8814-42fa-9036-b1e67159e4e1"
|
|
16332
16336
|
},
|
package/package.json
CHANGED
|
@@ -73,7 +73,11 @@
|
|
|
73
73
|
"private": {},
|
|
74
74
|
"deprecated": {},
|
|
75
75
|
"deprecated_comment": {},
|
|
76
|
-
"uuid": {
|
|
76
|
+
"uuid": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"pattern": "^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$",
|
|
79
|
+
"format": "uuid"
|
|
80
|
+
}
|
|
77
81
|
},
|
|
78
|
-
"required": ["sets"]
|
|
82
|
+
"required": ["sets", "uuid"]
|
|
79
83
|
}
|
|
@@ -49,7 +49,11 @@
|
|
|
49
49
|
"private": {},
|
|
50
50
|
"deprecated": {},
|
|
51
51
|
"deprecated_comment": {},
|
|
52
|
-
"uuid": {
|
|
52
|
+
"uuid": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"pattern": "^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$",
|
|
55
|
+
"format": "uuid"
|
|
56
|
+
}
|
|
53
57
|
},
|
|
54
|
-
"required": ["sets"]
|
|
58
|
+
"required": ["sets", "uuid"]
|
|
55
59
|
}
|