@abgov/design-tokens 1.5.8 → 1.5.10

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.
@@ -44,7 +44,7 @@ jobs:
44
44
  run: npm run test
45
45
 
46
46
  - name: Semantic Release
47
- uses: cycjimmy/semantic-release-action@v3.1.2
47
+ uses: cycjimmy/semantic-release-action@v4
48
48
  with:
49
49
  semantic_version: 16
50
50
  branches: |
@@ -54,4 +54,5 @@ jobs:
54
54
  ]
55
55
  env:
56
56
  GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
57
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
57
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_GRANULAR }}
58
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_GRANULAR }}
@@ -39,9 +39,10 @@ jobs:
39
39
  # git commit --amend -m "$PREVIOUS_MESSAGE"
40
40
  # git push origin $CURRENT_BRANCH -f
41
41
  - name: Semantic Release
42
- uses: cycjimmy/semantic-release-action@v3.1.2
42
+ uses: cycjimmy/semantic-release-action@v4
43
43
  with:
44
44
  dry_run: true
45
45
  env:
46
46
  GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
47
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
47
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_GRANULAR }}
48
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_GRANULAR }}
@@ -4,12 +4,8 @@
4
4
  "type": "other"
5
5
  },
6
6
  "text-input-border-disabled": {
7
- "value": {
8
- "width": "1px",
9
- "style": "solid",
10
- "color": "{color.greyscale.200}"
11
- },
12
- "type": "border"
7
+ "value": "inset 0 0 0 {borderWidth.s} {color.greyscale.200}",
8
+ "type": "other"
13
9
  },
14
10
  "text-input-border-error": {
15
11
  "value": "inset 0 0 0 {borderWidth.m} {color.interactive.error}",
package/dist/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 07 Mar 2025 19:07:06 GMT
3
+ * Generated on Thu, 20 Mar 2025 18:45:46 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -347,7 +347,7 @@
347
347
  --goa-text-input-border-hover: inset 0 0 0 var(--goa-border-width-m) var(--goa-color-interactive-hover);
348
348
  --goa-text-input-border-focus: 0 0 0 var(--goa-border-width-l) var(--goa-color-interactive-focus);
349
349
  --goa-text-input-border-error: inset 0 0 0 var(--goa-border-width-m) var(--goa-color-interactive-error);
350
- --goa-text-input-border-disabled: 1px solid var(--goa-color-greyscale-200);
350
+ --goa-text-input-border-disabled: inset 0 0 0 var(--goa-border-width-s) var(--goa-color-greyscale-200);
351
351
  --goa-text-input-border: inset 0 0 0 var(--goa-border-width-s) var(--goa-color-greyscale-700);
352
352
  --goa-icon-button-medium-padding: var(--goa-space-2xs);
353
353
  --goa-icon-button-large-padding: var(--goa-space-xs);
package/dist/tokens.scss CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Fri, 07 Mar 2025 19:07:06 GMT
3
+ // Generated on Thu, 20 Mar 2025 18:45:46 GMT
4
4
 
5
5
  $goa-font-weight-bold: 700;
6
6
  $goa-font-weight-medium: 500;
@@ -345,7 +345,7 @@ $goa-text-input-border-radius: $goa-border-radius-m;
345
345
  $goa-text-input-border-hover: inset 0 0 0 $goa-border-width-m $goa-color-interactive-hover;
346
346
  $goa-text-input-border-focus: 0 0 0 $goa-border-width-l $goa-color-interactive-focus;
347
347
  $goa-text-input-border-error: inset 0 0 0 $goa-border-width-m $goa-color-interactive-error;
348
- $goa-text-input-border-disabled: 1px solid $goa-color-greyscale-200;
348
+ $goa-text-input-border-disabled: inset 0 0 0 $goa-border-width-s $goa-color-greyscale-200;
349
349
  $goa-text-input-border: inset 0 0 0 $goa-border-width-s $goa-color-greyscale-700;
350
350
  $goa-icon-button-medium-padding: $goa-space-2xs;
351
351
  $goa-icon-button-large-padding: $goa-space-xs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/design-tokens",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
4
4
  "main": "./index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "devDependencies": {
18
18
  "jest": "^29.2.1",
19
19
  "rimraf": "^3.0.2",
20
- "semantic-release": "^19.0.5"
20
+ "semantic-release": "^24.2.3"
21
21
  },
22
22
  "dependencies": {
23
23
  "style-dictionary": "^3.7.1"