@vertekum/schema-atlassian 0.1.0 → 0.1.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 +7 -0
- package/README.md +55 -16
- package/dfn/atlassian.dfn +15 -0
- package/dfn/border.dfn +6 -0
- package/dfn/color.dfn +42 -0
- package/dfn/elevation.dfn +14 -0
- package/dfn/font.dfn +13 -0
- package/dfn/motion.dfn +32 -0
- package/dfn/opacity.dfn +6 -0
- package/dfn/radius.dfn +6 -0
- package/dfn/space.dfn +9 -0
- package/dfn/utility.dfn +6 -0
- package/lib/atlassian.json +18583 -0
- package/{border.json → lib/border.json} +1 -0
- package/lib/color.json +17090 -0
- package/{elevation.json → lib/elevation.json} +59 -41
- package/{font.json → lib/font.json} +17 -16
- package/{motion.json → lib/motion.json} +242 -351
- package/{opacity.json → lib/opacity.json} +1 -0
- package/{radius.json → lib/radius.json} +1 -0
- package/{space.json → lib/space.json} +1 -0
- package/{utility.json → lib/utility.json} +1 -0
- package/package.json +10 -7
- package/atlassian.json +0 -5534
- package/color.json +0 -3929
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vertekum://schema-atlassian/opacity.json",
|
|
4
|
+
"$comment": "built by @vertekum/schema-builder from opacity.dfn — do not hand-edit; remove this comment to take ownership",
|
|
4
5
|
"title": "Atlassian Design System — opacity",
|
|
5
6
|
"description": "Token path vocabulary: which names may appear, in what order, and where the order ends. What a granted name IS — group, token, base value — belongs to the token author and the DTCG format schema.",
|
|
6
7
|
"type": "object",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vertekum://schema-atlassian/radius.json",
|
|
4
|
+
"$comment": "built by @vertekum/schema-builder from radius.dfn — do not hand-edit; remove this comment to take ownership",
|
|
4
5
|
"title": "Atlassian Design System — radius",
|
|
5
6
|
"description": "Token path vocabulary: which names may appear, in what order, and where the order ends. What a granted name IS — group, token, base value — belongs to the token author and the DTCG format schema.",
|
|
6
7
|
"type": "object",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vertekum://schema-atlassian/space.json",
|
|
4
|
+
"$comment": "built by @vertekum/schema-builder from space.dfn — do not hand-edit; remove this comment to take ownership",
|
|
4
5
|
"title": "Atlassian Design System — space",
|
|
5
6
|
"description": "Token path vocabulary: which names may appear, in what order, and where the order ends. What a granted name IS — group, token, base value — belongs to the token author and the DTCG format schema.",
|
|
6
7
|
"type": "object",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vertekum://schema-atlassian/utility.json",
|
|
4
|
+
"$comment": "built by @vertekum/schema-builder from utility.dfn — do not hand-edit; remove this comment to take ownership",
|
|
4
5
|
"title": "Atlassian Design System — utility",
|
|
5
6
|
"description": "Token path vocabulary: which names may appear, in what order, and where the order ends. What a granted name IS — group, token, base value — belongs to the token author and the DTCG format schema.",
|
|
6
7
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertekum/schema-atlassian",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "The Atlassian Design System token vocabulary as JSON Schema files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -18,9 +18,8 @@
|
|
|
18
18
|
"bugs": "https://github.com/moros-oxus/vertekum/issues",
|
|
19
19
|
"files": [
|
|
20
20
|
"CHANGELOG.md",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"!tsconfig.json",
|
|
21
|
+
"dfn",
|
|
22
|
+
"lib",
|
|
24
23
|
"src/vocabulary.json"
|
|
25
24
|
],
|
|
26
25
|
"publishConfig": {
|
|
@@ -28,17 +27,21 @@
|
|
|
28
27
|
},
|
|
29
28
|
"type": "module",
|
|
30
29
|
"exports": {
|
|
31
|
-
".": "./atlassian.json",
|
|
32
|
-
"
|
|
30
|
+
".": "./lib/atlassian.json",
|
|
31
|
+
"./*.json": "./lib/*.json",
|
|
32
|
+
"./*.dfn": "./dfn/*.dfn",
|
|
33
|
+
"./package.json": "./package.json"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
36
|
"@atlaskit/tokens": "^16.5.0",
|
|
36
37
|
"ajv": "^8.20.0",
|
|
37
38
|
"tsx": "^4.22.5",
|
|
38
|
-
"vitest": "^3.0.5"
|
|
39
|
+
"vitest": "^3.0.5",
|
|
40
|
+
"@vertekum/schema-builder": "0.1.1"
|
|
39
41
|
},
|
|
40
42
|
"scripts": {
|
|
41
43
|
"derive": "tsx scripts/derive.ts",
|
|
44
|
+
"build": "tsx scripts/build.ts",
|
|
42
45
|
"test": "vitest run"
|
|
43
46
|
}
|
|
44
47
|
}
|