@navikt/ds-tokens 5.7.2 → 5.7.3
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/tokens-cjs.js +3 -2
- package/dist/tokens.css +2 -1
- package/dist/tokens.d.ts +2 -1
- package/dist/tokens.js +2 -1
- package/dist/tokens.less +2 -1
- package/dist/tokens.scss +2 -1
- package/docs.json +1 -0
- package/package.json +1 -1
- package/src/spacing.json +3 -0
package/dist/tokens-cjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 17 Oct 2023 14:33:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -301,5 +301,6 @@ module.exports = {
|
|
|
301
301
|
"ASpacing20": "5rem",
|
|
302
302
|
"ASpacing24": "6rem",
|
|
303
303
|
"ASpacing32": "8rem",
|
|
304
|
-
"ASpacing05": "0.125rem"
|
|
304
|
+
"ASpacing05": "0.125rem",
|
|
305
|
+
"ASpacing1Alt": "0.375rem"
|
|
305
306
|
};
|
package/dist/tokens.css
CHANGED
package/dist/tokens.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 17 Oct 2023 14:33:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const ABreakpointXs : "0";
|
|
@@ -301,3 +301,4 @@ export const ASpacing20 : "5rem";
|
|
|
301
301
|
export const ASpacing24 : "6rem";
|
|
302
302
|
export const ASpacing32 : "8rem";
|
|
303
303
|
export const ASpacing05 : "0.125rem";
|
|
304
|
+
export const ASpacing1Alt : "0.375rem";
|
package/dist/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 17 Oct 2023 14:33:03 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const ABreakpointXs = "0";
|
|
@@ -301,3 +301,4 @@ export const ASpacing20 = "5rem";
|
|
|
301
301
|
export const ASpacing24 = "6rem";
|
|
302
302
|
export const ASpacing32 = "8rem";
|
|
303
303
|
export const ASpacing05 = "0.125rem";
|
|
304
|
+
export const ASpacing1Alt = "0.375rem";
|
package/dist/tokens.less
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 17 Oct 2023 14:33:03 GMT
|
|
4
4
|
|
|
5
5
|
@a-breakpoint-xs: 0;
|
|
6
6
|
@a-breakpoint-sm: 480px;
|
|
@@ -300,3 +300,4 @@
|
|
|
300
300
|
@a-spacing-24: 6rem;
|
|
301
301
|
@a-spacing-32: 8rem;
|
|
302
302
|
@a-spacing-05: 0.125rem;
|
|
303
|
+
@a-spacing-1-alt: 0.375rem;
|
package/dist/tokens.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 17 Oct 2023 14:33:03 GMT
|
|
4
4
|
|
|
5
5
|
$a-breakpoint-xs: 0;
|
|
6
6
|
$a-breakpoint-sm: 480px;
|
|
@@ -300,3 +300,4 @@ $a-spacing-20: 5rem;
|
|
|
300
300
|
$a-spacing-24: 6rem;
|
|
301
301
|
$a-spacing-32: 8rem;
|
|
302
302
|
$a-spacing-05: 0.125rem;
|
|
303
|
+
$a-spacing-1-alt: 0.375rem;
|
package/docs.json
CHANGED
|
@@ -508,6 +508,7 @@
|
|
|
508
508
|
{ "name": "--a-spacing-0", "value": "0" },
|
|
509
509
|
{ "name": "--a-spacing-05", "value": "0.125rem" },
|
|
510
510
|
{ "name": "--a-spacing-1", "value": "0.25rem" },
|
|
511
|
+
{ "name": "--a-spacing-1-alt", "value": "0.375rem" },
|
|
511
512
|
{ "name": "--a-spacing-2", "value": "0.5rem" },
|
|
512
513
|
{ "name": "--a-spacing-3", "value": "0.75rem" },
|
|
513
514
|
{ "name": "--a-spacing-4", "value": "1rem" },
|
package/package.json
CHANGED