@vertekum/schema-atlassian 0.1.1 → 0.1.2

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
  # @vertekum/schema-atlassian
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`9c0f093`](https://github.com/moros-oxus/vertekum/commit/9c0f093b5016c6c0ca9cb5b5fd48598718e698d9) Thanks [@tschemmer](https://github.com/tschemmer)! - The space vocabulary is declared with zero-padded scale ranges (`025-100/25 | 150-300/50 | 400-600/100`) instead of a hand-list; granted names are unchanged.
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/dfn/space.dfn CHANGED
@@ -3,7 +3,7 @@ title "Atlassian Design System — space"
3
3
  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."
4
4
  scope "branch"
5
5
 
6
- root = space.[
7
- [0 | 025 | 050 | 075 | 100 | 1000 | 150 | 200 | 250 | 300 | 400 | 500 | 600 | 800]
8
- | negative.[025 | 050 | 075 | 100 | 150 | 200 | 250 | 300 | 400]
9
- ]
6
+ # The spacing scale, as scale expressions: a leading zero pads the emitted names.
7
+ scale = 0 | 025-100/25 | 150-300/50 | 400-600/100 | 800 | 1000
8
+
9
+ root = space.[<scale> | negative.<scale ![0, 500, 600, 800, 1000]>]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertekum/schema-atlassian",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "The Atlassian Design System token vocabulary as JSON Schema files",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "ajv": "^8.20.0",
38
38
  "tsx": "^4.22.5",
39
39
  "vitest": "^3.0.5",
40
- "@vertekum/schema-builder": "0.1.1"
40
+ "@vertekum/schema-builder": "0.1.4"
41
41
  },
42
42
  "scripts": {
43
43
  "derive": "tsx scripts/derive.ts",