@department-of-veterans-affairs/css-library 0.24.0 → 0.26.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.
- package/dist/fonts/roboto-mono-v5-latin-100.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-100.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-100.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-100italic.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-100italic.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-100italic.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300italic.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300italic.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-300italic.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500italic.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500italic.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-500italic.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700italic.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700italic.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-700italic.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-italic.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-italic.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-italic.woff2 +0 -0
- package/dist/fonts/roboto-mono-v5-latin-regular.ttf +0 -0
- package/dist/fonts/roboto-mono-v5-latin-regular.woff +0 -0
- package/dist/fonts/roboto-mono-v5-latin-regular.woff2 +0 -0
- package/dist/img/correct8.png +0 -0
- package/dist/img/correct8.svg +0 -0
- package/dist/img/error.png +0 -0
- package/dist/img/error.svg +0 -0
- package/dist/img/info.png +0 -0
- package/dist/img/info.svg +0 -0
- package/dist/img/success.png +0 -0
- package/dist/img/success.svg +0 -0
- package/dist/img/warning.png +0 -0
- package/dist/img/warning.svg +0 -0
- package/dist/stylesheets/core.css +0 -42
- package/dist/stylesheets/utilities.css +2071 -127
- package/dist/tokens/css/variables.css +6 -1
- package/dist/tokens/json/variables.json +89 -0
- package/dist/tokens/scss/variables.scss +6 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 02 Oct 2025 20:58:27 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
--mobile-lg: 480px;
|
|
15
15
|
--desktop: 1024px;
|
|
16
16
|
--desktop-lg: 1201px;
|
|
17
|
+
--widescreen: 1400px;
|
|
17
18
|
--color-link-default-hover: rgba(#000000, 0.05);
|
|
18
19
|
--vads-button-color-background-primary-on-light: #005ea2;
|
|
19
20
|
--vads-button-color-background-primary-alt-active-on-light: #154c21;
|
|
@@ -131,8 +132,10 @@
|
|
|
131
132
|
--vads-input-tile-border-on-light: rgba(27, 27, 27, 0.03);
|
|
132
133
|
--font-family-sans: 'Source Sans Pro Web', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
133
134
|
--font-family-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
135
|
+
--font-family-mono: 'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace;
|
|
134
136
|
--font-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
135
137
|
--font-source-sans: 'Source Sans Pro Web', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
138
|
+
--font-mono: 'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace;
|
|
136
139
|
--font-weight-normal: 400;
|
|
137
140
|
--font-weight-bold: 700;
|
|
138
141
|
--font-style-normal: normal;
|
|
@@ -159,6 +162,8 @@
|
|
|
159
162
|
--vads-font-line-height-body-lead: 1.75;
|
|
160
163
|
--vads-font-line-height-default: 1.5;
|
|
161
164
|
--vads-font-line-height-heading: 1.2;
|
|
165
|
+
--vads-font-line-height-serif: 1.9;
|
|
166
|
+
--vads-font-line-height-mono: 1.7;
|
|
162
167
|
--vads-font-size-source-sans-normalized: 1.06rem;
|
|
163
168
|
--vads-font-size-root: 1rem;
|
|
164
169
|
--vads-font-size-body-large: 20px;
|
|
@@ -149,6 +149,21 @@
|
|
|
149
149
|
"desktop-lg"
|
|
150
150
|
]
|
|
151
151
|
},
|
|
152
|
+
"widescreen": {
|
|
153
|
+
"value": "1400px",
|
|
154
|
+
"filePath": "tokens/breakpoints.json",
|
|
155
|
+
"isSource": true,
|
|
156
|
+
"original": {
|
|
157
|
+
"value": "1400px"
|
|
158
|
+
},
|
|
159
|
+
"name": "widescreen",
|
|
160
|
+
"attributes": {
|
|
161
|
+
"category": "widescreen"
|
|
162
|
+
},
|
|
163
|
+
"path": [
|
|
164
|
+
"widescreen"
|
|
165
|
+
]
|
|
166
|
+
},
|
|
152
167
|
"color-link-default-hover": {
|
|
153
168
|
"alpha": "0.05",
|
|
154
169
|
"value": "rgba(#000000, 0.05)",
|
|
@@ -2393,6 +2408,25 @@
|
|
|
2393
2408
|
"family",
|
|
2394
2409
|
"serif"
|
|
2395
2410
|
]
|
|
2411
|
+
},
|
|
2412
|
+
"mono": {
|
|
2413
|
+
"value": "'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace",
|
|
2414
|
+
"filePath": "tokens/fonts.json",
|
|
2415
|
+
"isSource": true,
|
|
2416
|
+
"original": {
|
|
2417
|
+
"value": "'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace"
|
|
2418
|
+
},
|
|
2419
|
+
"name": "font-family-mono",
|
|
2420
|
+
"attributes": {
|
|
2421
|
+
"category": "font",
|
|
2422
|
+
"type": "family",
|
|
2423
|
+
"item": "mono"
|
|
2424
|
+
},
|
|
2425
|
+
"path": [
|
|
2426
|
+
"font",
|
|
2427
|
+
"family",
|
|
2428
|
+
"mono"
|
|
2429
|
+
]
|
|
2396
2430
|
}
|
|
2397
2431
|
},
|
|
2398
2432
|
"serif": {
|
|
@@ -2433,6 +2467,23 @@
|
|
|
2433
2467
|
]
|
|
2434
2468
|
}
|
|
2435
2469
|
},
|
|
2470
|
+
"mono": {
|
|
2471
|
+
"value": "'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace",
|
|
2472
|
+
"filePath": "tokens/fonts.json",
|
|
2473
|
+
"isSource": true,
|
|
2474
|
+
"original": {
|
|
2475
|
+
"value": "'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace"
|
|
2476
|
+
},
|
|
2477
|
+
"name": "font-mono",
|
|
2478
|
+
"attributes": {
|
|
2479
|
+
"category": "font",
|
|
2480
|
+
"type": "mono"
|
|
2481
|
+
},
|
|
2482
|
+
"path": [
|
|
2483
|
+
"font",
|
|
2484
|
+
"mono"
|
|
2485
|
+
]
|
|
2486
|
+
},
|
|
2436
2487
|
"weight": {
|
|
2437
2488
|
"normal": {
|
|
2438
2489
|
"value": "400",
|
|
@@ -2939,6 +2990,44 @@
|
|
|
2939
2990
|
"line-height",
|
|
2940
2991
|
"heading"
|
|
2941
2992
|
]
|
|
2993
|
+
},
|
|
2994
|
+
"serif": {
|
|
2995
|
+
"value": "1.9",
|
|
2996
|
+
"filePath": "tokens/fonts.json",
|
|
2997
|
+
"isSource": true,
|
|
2998
|
+
"original": {
|
|
2999
|
+
"value": "1.9"
|
|
3000
|
+
},
|
|
3001
|
+
"name": "vads-font-line-height-serif",
|
|
3002
|
+
"attributes": {
|
|
3003
|
+
"category": "vads-font",
|
|
3004
|
+
"type": "line-height",
|
|
3005
|
+
"item": "serif"
|
|
3006
|
+
},
|
|
3007
|
+
"path": [
|
|
3008
|
+
"vads-font",
|
|
3009
|
+
"line-height",
|
|
3010
|
+
"serif"
|
|
3011
|
+
]
|
|
3012
|
+
},
|
|
3013
|
+
"mono": {
|
|
3014
|
+
"value": "1.7",
|
|
3015
|
+
"filePath": "tokens/fonts.json",
|
|
3016
|
+
"isSource": true,
|
|
3017
|
+
"original": {
|
|
3018
|
+
"value": "1.7"
|
|
3019
|
+
},
|
|
3020
|
+
"name": "vads-font-line-height-mono",
|
|
3021
|
+
"attributes": {
|
|
3022
|
+
"category": "vads-font",
|
|
3023
|
+
"type": "line-height",
|
|
3024
|
+
"item": "mono"
|
|
3025
|
+
},
|
|
3026
|
+
"path": [
|
|
3027
|
+
"vads-font",
|
|
3028
|
+
"line-height",
|
|
3029
|
+
"mono"
|
|
3030
|
+
]
|
|
2942
3031
|
}
|
|
2943
3032
|
},
|
|
2944
3033
|
"size": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Thu, 02 Oct 2025 20:58:27 GMT
|
|
4
4
|
|
|
5
5
|
$xsmall-screen: 320px;
|
|
6
6
|
$small-screen: 481px;
|
|
@@ -12,6 +12,7 @@ $mobile: 320px;
|
|
|
12
12
|
$mobile-lg: 480px;
|
|
13
13
|
$desktop: 1024px;
|
|
14
14
|
$desktop-lg: 1201px;
|
|
15
|
+
$widescreen: 1400px;
|
|
15
16
|
$color-link-default-hover: rgba(#000000, 0.05);
|
|
16
17
|
$vads-button-color-background-primary-on-light: #005ea2;
|
|
17
18
|
$vads-button-color-background-primary-alt-active-on-light: #154c21;
|
|
@@ -129,8 +130,10 @@ $vads-input-tile-border-active-on-light: #005ea2;
|
|
|
129
130
|
$vads-input-tile-border-on-light: rgba(27, 27, 27, 0.03);
|
|
130
131
|
$font-family-sans: 'Source Sans Pro Web', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
131
132
|
$font-family-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
133
|
+
$font-family-mono: 'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace;
|
|
132
134
|
$font-serif: Bitter, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
133
135
|
$font-source-sans: 'Source Sans Pro Web', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
|
|
136
|
+
$font-mono: 'Roboto Mono Web', 'Bitstream Vera Sans Mono', 'Consolas', 'Courier', monospace;
|
|
134
137
|
$font-weight-normal: 400;
|
|
135
138
|
$font-weight-bold: 700;
|
|
136
139
|
$font-style-normal: normal;
|
|
@@ -157,6 +160,8 @@ $vads-font-line-height-6: 1.75;
|
|
|
157
160
|
$vads-font-line-height-body-lead: 1.75;
|
|
158
161
|
$vads-font-line-height-default: 1.5;
|
|
159
162
|
$vads-font-line-height-heading: 1.2;
|
|
163
|
+
$vads-font-line-height-serif: 1.9;
|
|
164
|
+
$vads-font-line-height-mono: 1.7;
|
|
160
165
|
$vads-font-size-source-sans-normalized: 1.06rem;
|
|
161
166
|
$vads-font-size-root: 1rem;
|
|
162
167
|
$vads-font-size-body-large: 20px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@department-of-veterans-affairs/css-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "Department of Veterans Affairs stylesheets, tokens, and utilities",
|
|
5
5
|
"packageManager": "yarn@3.2.0",
|
|
6
6
|
"files": [
|
|
@@ -30,4 +30,4 @@
|
|
|
30
30
|
"@uswds/uswds": "^3.9.0",
|
|
31
31
|
"rimraf": "^5.0.5"
|
|
32
32
|
}
|
|
33
|
-
}
|
|
33
|
+
}
|