@adobe/spectrum-tokens 12.13.0 → 12.13.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @adobe/spectrum-tokens
2
2
 
3
+ ## 12.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 02459bf: Migrate dependencies to devDependencies as they are not needed downstream to leverage the package.
8
+
3
9
  ## 12.13.0
4
10
 
5
11
  ### Minor Changes
package/manifest.json CHANGED
@@ -1,5 +1,9 @@
1
1
  [
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"
2
+ "src/color-aliases.json",
3
+ "src/color-component.json",
4
+ "src/color-palette.json",
5
+ "src/layout-component.json",
6
+ "src/layout.json",
7
+ "src/semantic-color-palette.json",
8
+ "src/typography.json"
5
9
  ]
package/moon.yml CHANGED
@@ -7,7 +7,7 @@
7
7
  # the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
8
8
  # OF ANY KIND, either express or implied. See the License for the specific language
9
9
  # governing permissions and limitations under the License.
10
-
10
+ type: library
11
11
  fileGroups:
12
12
  sources:
13
13
  - "src/**/*"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spectrum-tokens",
3
- "version": "12.13.0",
3
+ "version": "12.13.1",
4
4
  "description": "Design tokens for Spectrum, Adobe's design system",
5
5
  "type": "module",
6
6
  "main": "tasks/buildSpectrumTokens.js",
@@ -19,21 +19,15 @@
19
19
  },
20
20
  "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme",
21
21
  "devDependencies": {
22
+ "ajv": "^8.12.0",
23
+ "ajv-formats": "^2.1.1",
22
24
  "deep-object-diff": "^1.1.7",
23
25
  "glob": "^8.1.0",
24
26
  "glob-promise": "^6.0.2",
25
- "node-fetch": "^2.6.7",
26
27
  "style-dictionary": "^3.7.1",
27
28
  "style-dictionary-sets": "^2.3.0",
28
29
  "tar": "^6.1.13",
29
30
  "tmp-promise": "^3.0.3"
30
31
  },
31
- "dependencies": {
32
- "@graphql-tools/graphql-file-loader": "^8.0.0",
33
- "@graphql-tools/load": "^8.0.0",
34
- "ajv": "^8.12.0",
35
- "ajv-formats": "^2.1.1",
36
- "read-yaml-file": "^2.1.0"
37
- },
38
32
  "scripts": {}
39
33
  }
@@ -10,8 +10,14 @@
10
10
  "category": {
11
11
  "type": "string",
12
12
  "enum": [
13
- "actions", "containers", "data visualization", "feedback", "inputs",
14
- "navigation", "status", "typography"
13
+ "actions",
14
+ "containers",
15
+ "data visualization",
16
+ "feedback",
17
+ "inputs",
18
+ "navigation",
19
+ "status",
20
+ "typography"
15
21
  ]
16
22
  },
17
23
  "documentationUrl": { "type": "string", "format": "uri" }
@@ -18,7 +18,11 @@
18
18
  "variant": {
19
19
  "type": "string",
20
20
  "enum": [
21
- "confirmation", "information", "warning", "destructive", "error"
21
+ "confirmation",
22
+ "information",
23
+ "warning",
24
+ "destructive",
25
+ "error"
22
26
  ],
23
27
  "default": "confirmation"
24
28
  },
@@ -19,8 +19,16 @@
19
19
  "variant": {
20
20
  "type": "string",
21
21
  "enum": [
22
- "neutral", "info", "positive", "negative", "indigo", "yellow",
23
- "magenta", "fuchsia", "purple", "seafoam"
22
+ "neutral",
23
+ "info",
24
+ "positive",
25
+ "negative",
26
+ "indigo",
27
+ "yellow",
28
+ "magenta",
29
+ "fuchsia",
30
+ "purple",
31
+ "seafoam"
24
32
  ]
25
33
  },
26
34
  "fixed": {
@@ -71,8 +71,12 @@
71
71
  "state": {
72
72
  "type": "string",
73
73
  "enum": [
74
- "default", "hover (text area)", "hover (button area)", "focus + hover",
75
- "focus + not hover", "keyboard focus"
74
+ "default",
75
+ "hover (text area)",
76
+ "hover (button area)",
77
+ "focus + hover",
78
+ "focus + not hover",
79
+ "keyboard focus"
76
80
  ],
77
81
  "default": "default"
78
82
  }
@@ -17,10 +17,28 @@
17
17
  "popoverPlacement": {
18
18
  "type": "string",
19
19
  "enum": [
20
- "top", "top left", "top right", "top start", "top end", "bottom",
21
- "bottom left", "bottom right", "bottom start", "bottom end", "left",
22
- "left top", "left bottom", "start", "start top", "start bottom",
23
- "right", "right top", "right bottom", "end", "end top", "end bottom"
20
+ "top",
21
+ "top left",
22
+ "top right",
23
+ "top start",
24
+ "top end",
25
+ "bottom",
26
+ "bottom left",
27
+ "bottom right",
28
+ "bottom start",
29
+ "bottom end",
30
+ "left",
31
+ "left top",
32
+ "left bottom",
33
+ "start",
34
+ "start top",
35
+ "start bottom",
36
+ "right",
37
+ "right top",
38
+ "right bottom",
39
+ "end",
40
+ "end top",
41
+ "end bottom"
24
42
  ],
25
43
  "default": "bottom start"
26
44
  },
@@ -12,7 +12,12 @@
12
12
  "variant": {
13
13
  "type": "string",
14
14
  "enum": [
15
- "neutral", "informative", "positive", "notice", "negative", "neutral"
15
+ "neutral",
16
+ "informative",
17
+ "positive",
18
+ "notice",
19
+ "negative",
20
+ "neutral"
16
21
  ],
17
22
  "default": "neutral"
18
23
  }
@@ -73,7 +73,10 @@
73
73
  "state": {
74
74
  "type": "string",
75
75
  "enum": [
76
- "default", "hover", "focus + hover", "focus + not hover",
76
+ "default",
77
+ "hover",
78
+ "focus + hover",
79
+ "focus + not hover",
77
80
  "keyboard focus"
78
81
  ],
79
82
  "default": "default"
@@ -22,10 +22,28 @@
22
22
  "placement": {
23
23
  "type": "string",
24
24
  "enum": [
25
- "top", "top left", "top right", "top start", "top end", "bottom",
26
- "bottom left", "bottom right", "bottom start", "bottom end", "left",
27
- "left top", "left bottom", "start", "start top", "start bottom",
28
- "right", "right top", "right bottom", "end", "end top", "end bottom"
25
+ "top",
26
+ "top left",
27
+ "top right",
28
+ "top start",
29
+ "top end",
30
+ "bottom",
31
+ "bottom left",
32
+ "bottom right",
33
+ "bottom start",
34
+ "bottom end",
35
+ "left",
36
+ "left top",
37
+ "left bottom",
38
+ "start",
39
+ "start top",
40
+ "start bottom",
41
+ "right",
42
+ "right top",
43
+ "right bottom",
44
+ "end",
45
+ "end top",
46
+ "end bottom"
29
47
  ],
30
48
  "default": "bottom"
31
49
  },
@@ -15,8 +15,18 @@
15
15
  "variant": {
16
16
  "type": "string",
17
17
  "enum": [
18
- "informative", "neutral", "positive", "notice", "negative", "indigo",
19
- "celery", "chartreuse", "yellow", "magenta", "fuchsia", "purple",
18
+ "informative",
19
+ "neutral",
20
+ "positive",
21
+ "notice",
22
+ "negative",
23
+ "indigo",
24
+ "celery",
25
+ "chartreuse",
26
+ "yellow",
27
+ "magenta",
28
+ "fuchsia",
29
+ "purple",
20
30
  "seafoam"
21
31
  ],
22
32
  "default": "informative"
@@ -86,7 +86,10 @@
86
86
  "state": {
87
87
  "type": "string",
88
88
  "enum": [
89
- "default", "hover", "focus + hover", "focus + not hover",
89
+ "default",
90
+ "hover",
91
+ "focus + hover",
92
+ "focus + not hover",
90
93
  "keyboard focus"
91
94
  ],
92
95
  "default": "default"
@@ -74,7 +74,10 @@
74
74
  "state": {
75
75
  "type": "string",
76
76
  "enum": [
77
- "default", "hover", "focus + hover", "focus + not hover",
77
+ "default",
78
+ "hover",
79
+ "focus + hover",
80
+ "focus + not hover",
78
81
  "keyboard focus"
79
82
  ],
80
83
  "default": "default"