@abgov/design-tokens 1.7.1 → 1.9.0

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.
@@ -0,0 +1,42 @@
1
+ {
2
+ "linear-progress-height": {
3
+ "value": "{space.2xs}",
4
+ "type": "sizing",
5
+ "description": "4px - Height of the progress bar track"
6
+ },
7
+ "linear-progress-border-radius": {
8
+ "value": "{borderRadius.m}",
9
+ "type": "borderRadius",
10
+ "description": "8px - Border radius of progress bar and indicator"
11
+ },
12
+ "linear-progress-color-track": {
13
+ "value": "{color.greyscale.200}",
14
+ "type": "color",
15
+ "description": "Background color of the progress bar track"
16
+ },
17
+ "linear-progress-color-indicator": {
18
+ "value": "{color.info.default}",
19
+ "type": "color",
20
+ "description": "Color of the progress indicator (both determinate and indeterminate)"
21
+ },
22
+ "linear-progress-percentage-gap": {
23
+ "value": "{space.xs}",
24
+ "type": "spacing",
25
+ "description": "8px - Gap between the progress bar and percentage text"
26
+ },
27
+ "linear-progress-percentage-color": {
28
+ "value": "{color.text.secondary}",
29
+ "type": "color",
30
+ "description": "Color of the percentage text"
31
+ },
32
+ "linear-progress-percentage-text": {
33
+ "value": "{typography.body.xs}",
34
+ "type": "other",
35
+ "description": "Typography for the percentage text (14px/20px)"
36
+ },
37
+ "linear-progress-percentage-width": {
38
+ "value": "4ch",
39
+ "type": "sizing",
40
+ "description": "Fixed width for percentage text to prevent layout shift"
41
+ }
42
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "push-drawer-border-radius": {
3
+ "value": "{borderRadius.none}",
4
+ "type": "borderRadius",
5
+ "description": "Border radius for drawer corners"
6
+ },
7
+ "push-drawer-content-padding-horizontal": {
8
+ "value": "{space.l}",
9
+ "type": "spacing",
10
+ "description": "Horizontal padding for content section"
11
+ },
12
+ "push-drawer-content-padding-vertical": {
13
+ "value": "{space.m}",
14
+ "type": "spacing",
15
+ "description": "Vertical padding for content section"
16
+ },
17
+ "push-drawer-actions-padding-top": {
18
+ "value": "{space.m}",
19
+ "type": "spacing",
20
+ "description": "Top padding for actions section"
21
+ },
22
+ "push-drawer-actions-padding-bottom": {
23
+ "value": "{space.l}",
24
+ "type": "spacing",
25
+ "description": "Bottom padding for actions section"
26
+ },
27
+ "push-drawer-heading-typography": {
28
+ "value": "{typography.heading.s}",
29
+ "type": "other",
30
+ "description": "Typography for drawer heading"
31
+ },
32
+ "push-drawer-transition-time": {
33
+ "value": "0.25s",
34
+ "type": "other"
35
+ },
36
+ "push-drawer-padding": {
37
+ "value": "{space.m}",
38
+ "type": "spacing"
39
+ }
40
+ }
package/dist/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 17 Nov 2025 23:04:46 GMT
3
+ * Generated on Tue, 20 Jan 2026 20:52:47 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -144,9 +144,11 @@
144
144
  --goa-radio-border-radius: 50%;
145
145
  --goa-radio-border-checked-error-hover: 7px solid #ba0000;
146
146
  --goa-radio-border-checked-error-disabled: 7px solid #f58185;
147
+ --goa-push-drawer-transition-time: 0.25s;
147
148
  --goa-circular-progress-color-background: rgba(255, 255, 255, 0.9);
148
149
  --goa-popover-shadow: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.25));
149
150
  --goa-modal-shadow: 6px 6px 6px 6px rgba(0,0,0,0.16);
151
+ --goa-linear-progress-percentage-width: 4ch;
150
152
  --goa-text-input-transition: box-shadow 0.05s ease-in;
151
153
  --goa-app-header-nav-color-bg-link-item-in-menu: transparent;
152
154
  --goa-app-header-nav-color-bg-link-item-focus: transparent;
@@ -295,6 +297,12 @@
295
297
  --goa-radio-border-checked-disabled: 7px solid var(--goa-color-interactive-disabled);
296
298
  --goa-radio-border-checked: 7px solid var(--goa-color-interactive-default);
297
299
  --goa-radio-border: var(--goa-border-width-s) solid var(--goa-color-greyscale-700);
300
+ --goa-push-drawer-padding: var(--goa-space-m);
301
+ --goa-push-drawer-actions-padding-bottom: var(--goa-space-l);
302
+ --goa-push-drawer-actions-padding-top: var(--goa-space-m);
303
+ --goa-push-drawer-content-padding-vertical: var(--goa-space-m);
304
+ --goa-push-drawer-content-padding-horizontal: var(--goa-space-l);
305
+ --goa-push-drawer-border-radius: var(--goa-border-radius-none);
298
306
  --goa-circular-progress-small-margin-top: var(--goa-space-l);
299
307
  --goa-circular-progress-large-margin-top: var(--goa-space-xl);
300
308
  --goa-popover-padding: var(--goa-space-s);
@@ -337,6 +345,11 @@
337
345
  --goa-microsite-header-color-bg: var(--goa-color-greyscale-100);
338
346
  --goa-microsite-header-beta-badge-color: var(--goa-color-brand-default);
339
347
  --goa-microsite-header-alpha-badge-color: var(--goa-color-warning-default);
348
+ --goa-linear-progress-percentage-gap: var(--goa-space-xs);
349
+ --goa-linear-progress-color-indicator: var(--goa-color-info-default);
350
+ --goa-linear-progress-color-track: var(--goa-color-greyscale-200);
351
+ --goa-linear-progress-border-radius: var(--goa-border-radius-m);
352
+ --goa-linear-progress-height: var(--goa-space-2xs);
340
353
  --goa-text-input-color-icon: var(--goa-color-greyscale-black);
341
354
  --goa-text-input-size-icon: var(--goa-icon-size-4);
342
355
  --goa-text-input-space-btw-icon-text: var(--goa-space-xs);
@@ -679,6 +692,7 @@
679
692
  --goa-side-menu-color-menu-item: var(--goa-color-text-default);
680
693
  --goa-radio-label: var(--goa-typography-body-m);
681
694
  --goa-radio-description: var(--goa-typography-body-xs);
695
+ --goa-push-drawer-heading-typography: var(--goa-typography-heading-s);
682
696
  --goa-circular-progress-small-text: var(--goa-typography-body-m);
683
697
  --goa-circular-progress-large-text: var(--goa-typography-body-l);
684
698
  --goa-notification-banner-custom-color-text: var(--goa-color-text-light);
@@ -692,6 +706,8 @@
692
706
  --goa-microsite-header-color-version-number: var(--goa-color-text-secondary);
693
707
  --goa-microsite-header-beta-badge-color-text: var(--goa-color-text-light);
694
708
  --goa-microsite-header-alpha-badge-color-text: var(--goa-color-text-default);
709
+ --goa-linear-progress-percentage-text: var(--goa-typography-body-xs);
710
+ --goa-linear-progress-percentage-color: var(--goa-color-text-secondary);
695
711
  --goa-text-input-typography: var(--goa-typography-body-m);
696
712
  --goa-text-input-padding: 7px var(--goa-text-input-padding-lr) 9px;
697
713
  --goa-text-input-lt-content-color-text: var(--goa-color-text-default);
package/dist/tokens.scss CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 17 Nov 2025 23:04:46 GMT
3
+ // Generated on Tue, 20 Jan 2026 20:52:47 GMT
4
4
 
5
5
  $goa-accordion-color-bg-heading: #f1f1f1;
6
6
  $goa-accordion-color-bg-content: #ffffff;
@@ -452,6 +452,14 @@ $goa-text-input-size-icon: 1.5rem;
452
452
  $goa-text-input-color-icon: #333333;
453
453
  $goa-text-input-transition: box-shadow 0.05s ease-in;
454
454
  $goa-text-input-typography: 400 1.125rem/1.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
455
+ $goa-linear-progress-height: 0.25rem;
456
+ $goa-linear-progress-border-radius: 0.25rem;
457
+ $goa-linear-progress-color-track: #dcdcdc;
458
+ $goa-linear-progress-color-indicator: #004a8f;
459
+ $goa-linear-progress-percentage-gap: 0.5rem;
460
+ $goa-linear-progress-percentage-color: #666666;
461
+ $goa-linear-progress-percentage-text: 400 0.875rem/1.25rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
462
+ $goa-linear-progress-percentage-width: 4ch;
455
463
  $goa-microsite-header-alpha-badge-color: #f9ce2d;
456
464
  $goa-microsite-header-alpha-badge-color-text: #333333;
457
465
  $goa-microsite-header-beta-badge-color: #0081a2;
@@ -510,6 +518,14 @@ $goa-circular-progress-large-margin-top: 2rem;
510
518
  $goa-circular-progress-large-text: 400 1.5rem/2rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
511
519
  $goa-circular-progress-small-margin-top: 1.5rem;
512
520
  $goa-circular-progress-small-text: 400 1.125rem/1.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
521
+ $goa-push-drawer-border-radius: 0;
522
+ $goa-push-drawer-content-padding-horizontal: 1.5rem;
523
+ $goa-push-drawer-content-padding-vertical: 1rem;
524
+ $goa-push-drawer-actions-padding-top: 1rem;
525
+ $goa-push-drawer-actions-padding-bottom: 1.5rem;
526
+ $goa-push-drawer-heading-typography: 700 1.125rem/1.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
527
+ $goa-push-drawer-transition-time: 0.25s;
528
+ $goa-push-drawer-padding: 1rem;
513
529
  $goa-radio-border: 1px solid #666666;
514
530
  $goa-radio-border-checked: 7px solid #0070c4;
515
531
  $goa-radio-border-checked-disabled: 7px solid #80b7e1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/design-tokens",
3
- "version": "1.7.1",
3
+ "version": "1.9.0",
4
4
  "main": "./index.js",
5
5
  "repository": {
6
6
  "type": "git",