@navikt/ds-tokens 0.8.4 → 0.8.5
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 +2 -1
- package/dist/tokens.css +2 -1
- package/dist/tokens.js +2 -1
- package/dist/tokens.less +2 -1
- package/dist/tokens.scss +2 -1
- package/package.json +2 -2
- package/src/index.js +1 -0
package/dist/tokens-cjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 31 Mar 2022 10:47:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -29,6 +29,7 @@ module.exports = {
|
|
|
29
29
|
"NavdsZIndexModal": 2000,
|
|
30
30
|
"NavdsZIndexPopover": 1000,
|
|
31
31
|
"NavdsZIndexFocus": 10,
|
|
32
|
+
"NavdsZIndexTooltip": 3000,
|
|
32
33
|
"NavdsBorderRadiusSmall": "2px",
|
|
33
34
|
"NavdsBorderRadiusMedium": "4px",
|
|
34
35
|
"NavdsBorderRadiusLarge": "8px",
|
package/dist/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 31 Mar 2022 10:47:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -126,6 +126,7 @@
|
|
|
126
126
|
--navds-border-radius-large: 8px;
|
|
127
127
|
--navds-border-radius-medium: 4px;
|
|
128
128
|
--navds-border-radius-small: 2px;
|
|
129
|
+
--navds-z-index-tooltip: 3000;
|
|
129
130
|
--navds-z-index-focus: 10;
|
|
130
131
|
--navds-z-index-popover: 1000;
|
|
131
132
|
--navds-z-index-modal: 2000;
|
package/dist/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 31 Mar 2022 10:47:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const NavdsFontFamily = "\"Source Sans Pro\", Arial, sans-serif";
|
|
@@ -28,6 +28,7 @@ export const NavdsFontWeightRegular = "400";
|
|
|
28
28
|
export const NavdsZIndexModal = 2000;
|
|
29
29
|
export const NavdsZIndexPopover = 1000;
|
|
30
30
|
export const NavdsZIndexFocus = 10;
|
|
31
|
+
export const NavdsZIndexTooltip = 3000;
|
|
31
32
|
export const NavdsBorderRadiusSmall = "2px";
|
|
32
33
|
export const NavdsBorderRadiusMedium = "4px";
|
|
33
34
|
export const NavdsBorderRadiusLarge = "8px";
|
package/dist/tokens.less
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on Thu,
|
|
3
|
+
// Generated on Thu, 31 Mar 2022 10:47:09 GMT
|
|
4
4
|
|
|
5
5
|
@navds-font-family: "Source Sans Pro", Arial, sans-serif;
|
|
6
6
|
@navds-font-line-height-heading-2xlarge: 3.25rem;
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
@navds-z-index-modal: 2000;
|
|
28
28
|
@navds-z-index-popover: 1000;
|
|
29
29
|
@navds-z-index-focus: 10;
|
|
30
|
+
@navds-z-index-tooltip: 3000;
|
|
30
31
|
@navds-border-radius-small: 2px;
|
|
31
32
|
@navds-border-radius-medium: 4px;
|
|
32
33
|
@navds-border-radius-large: 8px;
|
package/dist/tokens.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on Thu,
|
|
3
|
+
// Generated on Thu, 31 Mar 2022 10:47:09 GMT
|
|
4
4
|
|
|
5
5
|
$navds-font-family: "Source Sans Pro", Arial, sans-serif;
|
|
6
6
|
$navds-font-line-height-heading-2xlarge: 3.25rem;
|
|
@@ -27,6 +27,7 @@ $navds-font-weight-regular: 400;
|
|
|
27
27
|
$navds-z-index-modal: 2000;
|
|
28
28
|
$navds-z-index-popover: 1000;
|
|
29
29
|
$navds-z-index-focus: 10;
|
|
30
|
+
$navds-z-index-tooltip: 3000;
|
|
30
31
|
$navds-border-radius-small: 2px;
|
|
31
32
|
$navds-border-radius-medium: 4px;
|
|
32
33
|
$navds-border-radius-large: 8px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navikt/ds-tokens",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Auto-generated design-tokens for NAV design-systems framework",
|
|
6
6
|
"author": "NAV Designsystem team",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"ts-jest": "^27.0.5",
|
|
42
42
|
"ts-node": "^10.3.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "fcbd614a3444afa7fd07c0c133cc754206e5f106"
|
|
45
45
|
}
|