@abgov/design-tokens 1.6.1 → 1.7.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.
@@ -406,6 +406,11 @@
406
406
  "value": "8rem",
407
407
  "type": "spacing",
408
408
  "description": "128px"
409
+ },
410
+ "fill": {
411
+ "value": "100%",
412
+ "type": "spacing",
413
+ "description": "fill the space"
409
414
  }
410
415
  },
411
416
  "iconSize": {
package/dist/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 23 Apr 2025 19:07:12 GMT
3
+ * Generated on Mon, 17 Nov 2025 23:04:46 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -44,6 +44,7 @@
44
44
  --goa-icon-size-3: 1.25rem;
45
45
  --goa-icon-size-2: 1.125rem;
46
46
  --goa-icon-size-1: 1rem;
47
+ --goa-space-fill: 100%;
47
48
  --goa-space-4xl: 8rem;
48
49
  --goa-space-3xl: 4rem;
49
50
  --goa-space-2xl: 3rem;
package/dist/tokens.scss CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Wed, 23 Apr 2025 19:07:12 GMT
3
+ // Generated on Mon, 17 Nov 2025 23:04:46 GMT
4
4
 
5
5
  $goa-accordion-color-bg-heading: #f1f1f1;
6
6
  $goa-accordion-color-bg-content: #ffffff;
@@ -709,6 +709,7 @@ $goa-space-xl: 2rem;
709
709
  $goa-space-2xl: 3rem;
710
710
  $goa-space-3xl: 4rem;
711
711
  $goa-space-4xl: 8rem;
712
+ $goa-space-fill: 100%;
712
713
  $goa-icon-size-1: 1rem;
713
714
  $goa-icon-size-2: 1.125rem;
714
715
  $goa-icon-size-3: 1.25rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/design-tokens",
3
- "version": "1.6.1",
3
+ "version": "1.7.1",
4
4
  "main": "./index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,13 +15,11 @@
15
15
  "design-tokens"
16
16
  ],
17
17
  "devDependencies": {
18
+ "style-dictionary": "^3.7.1",
18
19
  "jest": "^29.2.1",
19
20
  "rimraf": "^3.0.2",
20
21
  "semantic-release": "^24.2.3"
21
22
  },
22
- "dependencies": {
23
- "style-dictionary": "^3.7.1"
24
- },
25
23
  "scripts": {
26
24
  "build": "node index.js",
27
25
  "test": "jest && rimraf ./tmp",