@adobe/spectrum-tokens 12.5.0-beta.0 → 12.6.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 +33 -2
- package/dist/json/drover.json +10 -86
- package/dist/json/variables.json +116 -798
- package/manifest.json +4 -8
- package/moon.yml +10 -0
- package/package.json +3 -3
- package/src/color-component.json +8 -8
- package/src/layout-component.json +98 -774
- package/tasks/buildManifest.js +12 -0
- package/tasks/buildSpectrumTokens.js +1 -1
- package/tasks/deprecateExpress.js +12 -0
- package/tasks/diff.js +12 -0
- package/tasks/lib/augmentExpressTokens.js +12 -0
- package/test/deprecateExpress.test.js +12 -0
- package/test/drover.test.js +12 -0
package/manifest.json
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
[
|
|
2
|
-
"src/color-aliases.json",
|
|
3
|
-
"src/color-component.json",
|
|
4
|
-
"src/color-palette.json",
|
|
5
|
-
|
|
6
|
-
"src/layout.json",
|
|
7
|
-
"src/semantic-color-palette.json",
|
|
8
|
-
"src/typography.json"
|
|
9
|
-
]
|
|
2
|
+
"src/color-aliases.json", "src/color-component.json",
|
|
3
|
+
"src/color-palette.json", "src/layout-component.json", "src/layout.json",
|
|
4
|
+
"src/semantic-color-palette.json", "src/typography.json"
|
|
5
|
+
]
|
package/moon.yml
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# Copyright 2023 Adobe. All rights reserved.
|
|
2
|
+
# This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
3
|
+
# you may not use this file except in compliance with the License. You may obtain a copy
|
|
4
|
+
# of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
|
|
6
|
+
# Unless required by applicable law or agreed to in writing, software distributed under
|
|
7
|
+
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
8
|
+
# OF ANY KIND, either express or implied. See the License for the specific language
|
|
9
|
+
# governing permissions and limitations under the License.
|
|
10
|
+
|
|
1
11
|
fileGroups:
|
|
2
12
|
sources:
|
|
3
13
|
- "src/**/*"
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spectrum-tokens",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.6.0",
|
|
4
4
|
"description": "Design tokens for Spectrum, Adobe's design system",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "
|
|
6
|
+
"main": "tasks/buildSpectrumTokens.js",
|
|
7
7
|
"tokens": "dist/json/variables.json",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/adobe/spectrum-tokens/issues"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://github.com/adobe/spectrum-tokens#readme",
|
|
20
|
+
"homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"deep-object-diff": "^1.1.7",
|
|
23
23
|
"glob": "^8.1.0",
|
package/src/color-component.json
CHANGED
|
@@ -136,20 +136,20 @@
|
|
|
136
136
|
},
|
|
137
137
|
"color-handle-outer-border-opacity": {
|
|
138
138
|
"component": "color-handle",
|
|
139
|
-
"
|
|
140
|
-
"spectrum": {
|
|
141
|
-
"value": "{color-handle-inner-border-opacity}"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
139
|
+
"value": "{color-handle-inner-border-opacity}"
|
|
144
140
|
},
|
|
145
141
|
"color-handle-drop-shadow-color": {
|
|
146
142
|
"component": "color-handle",
|
|
143
|
+
"deprecated": true,
|
|
144
|
+
"deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components",
|
|
147
145
|
"sets": {
|
|
148
146
|
"express": {
|
|
149
|
-
"value": "{drop-shadow-color}"
|
|
150
|
-
"deprecated": true,
|
|
151
|
-
"deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2."
|
|
147
|
+
"value": "{drop-shadow-color}"
|
|
152
148
|
}
|
|
153
149
|
}
|
|
150
|
+
},
|
|
151
|
+
"floating-action-button-shadow-color": {
|
|
152
|
+
"component": "floating-action-button",
|
|
153
|
+
"value": "{transparent-black-300}"
|
|
154
154
|
}
|
|
155
155
|
}
|