@covalent/tokens 8.6.0-beta.1 → 8.6.1
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/_index.scss +10 -2
- package/index.css +5 -1
- package/index.d.ts +5 -1
- package/index.js +5 -1
- package/index.json +76 -0
- package/package.json +4 -4
package/_index.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Thu, 14 Mar 2024 21:17:10 GMT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
$light-primary: #3053f4ff !default;
|
|
@@ -1164,6 +1164,10 @@ $typography-caption-font-family: Arial, sans-serif !default;
|
|
|
1164
1164
|
$typography-caption-font-size: 12px !default;
|
|
1165
1165
|
$typography-caption-font-weight: 400 !default;
|
|
1166
1166
|
$typography-caption-line-height: 16px !default;
|
|
1167
|
+
$typography-code-font-family: Menlo !default;
|
|
1168
|
+
$typography-code-font-size: 12px !default;
|
|
1169
|
+
$typography-code-font-weight: 400 !default;
|
|
1170
|
+
$typography-code-line-height: 20px !default;
|
|
1167
1171
|
|
|
1168
1172
|
$tokens: (
|
|
1169
1173
|
'light': (
|
|
@@ -2348,6 +2352,10 @@ $tokens: (
|
|
|
2348
2352
|
'caption-font-family': $typography-caption-font-family,
|
|
2349
2353
|
'caption-font-size': $typography-caption-font-size,
|
|
2350
2354
|
'caption-font-weight': $typography-caption-font-weight,
|
|
2351
|
-
'caption-line-height': $typography-caption-line-height
|
|
2355
|
+
'caption-line-height': $typography-caption-line-height,
|
|
2356
|
+
'code-font-family': $typography-code-font-family,
|
|
2357
|
+
'code-font-size': $typography-code-font-size,
|
|
2358
|
+
'code-font-weight': $typography-code-font-weight,
|
|
2359
|
+
'code-line-height': $typography-code-line-height
|
|
2352
2360
|
)
|
|
2353
2361
|
);
|
package/index.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 14 Mar 2024 21:17:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -1164,4 +1164,8 @@
|
|
|
1164
1164
|
--cv-typography-caption-font-size: 12px;
|
|
1165
1165
|
--cv-typography-caption-font-weight: 400;
|
|
1166
1166
|
--cv-typography-caption-line-height: 16px;
|
|
1167
|
+
--cv-typography-code-font-family: Menlo;
|
|
1168
|
+
--cv-typography-code-font-size: 12px;
|
|
1169
|
+
--cv-typography-code-font-weight: 400;
|
|
1170
|
+
--cv-typography-code-line-height: 20px;
|
|
1167
1171
|
}
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 14 Mar 2024 21:17:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const CvLightPrimary : string;
|
|
@@ -1163,3 +1163,7 @@ export const CvTypographyCaptionFontFamily : string;
|
|
|
1163
1163
|
export const CvTypographyCaptionFontSize : string;
|
|
1164
1164
|
export const CvTypographyCaptionFontWeight : string;
|
|
1165
1165
|
export const CvTypographyCaptionLineHeight : string;
|
|
1166
|
+
export const CvTypographyCodeFontFamily : string;
|
|
1167
|
+
export const CvTypographyCodeFontSize : string;
|
|
1168
|
+
export const CvTypographyCodeFontWeight : string;
|
|
1169
|
+
export const CvTypographyCodeLineHeight : string;
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 14 Mar 2024 21:17:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const CvLightPrimary = "#3053f4ff";
|
|
@@ -1163,3 +1163,7 @@ export const CvTypographyCaptionFontFamily = "Arial, sans-serif";
|
|
|
1163
1163
|
export const CvTypographyCaptionFontSize = "12px";
|
|
1164
1164
|
export const CvTypographyCaptionFontWeight = "400";
|
|
1165
1165
|
export const CvTypographyCaptionLineHeight = "16px";
|
|
1166
|
+
export const CvTypographyCodeFontFamily = "Menlo";
|
|
1167
|
+
export const CvTypographyCodeFontSize = "12px";
|
|
1168
|
+
export const CvTypographyCodeFontWeight = "400";
|
|
1169
|
+
export const CvTypographyCodeLineHeight = "20px";
|
package/index.json
CHANGED
|
@@ -40973,6 +40973,82 @@
|
|
|
40973
40973
|
"typography",
|
|
40974
40974
|
"caption-line-height"
|
|
40975
40975
|
]
|
|
40976
|
+
},
|
|
40977
|
+
"code-font-family": {
|
|
40978
|
+
"value": "Menlo",
|
|
40979
|
+
"type": "fontFamilies",
|
|
40980
|
+
"filePath": "libs/tokens/src/typography.json",
|
|
40981
|
+
"isSource": true,
|
|
40982
|
+
"original": {
|
|
40983
|
+
"value": "Menlo",
|
|
40984
|
+
"type": "fontFamilies"
|
|
40985
|
+
},
|
|
40986
|
+
"name": "code-font-family",
|
|
40987
|
+
"attributes": {
|
|
40988
|
+
"category": "typography",
|
|
40989
|
+
"type": "code-font-family"
|
|
40990
|
+
},
|
|
40991
|
+
"path": [
|
|
40992
|
+
"typography",
|
|
40993
|
+
"code-font-family"
|
|
40994
|
+
]
|
|
40995
|
+
},
|
|
40996
|
+
"code-font-size": {
|
|
40997
|
+
"value": "12px",
|
|
40998
|
+
"type": "fontSizes",
|
|
40999
|
+
"filePath": "libs/tokens/src/typography.json",
|
|
41000
|
+
"isSource": true,
|
|
41001
|
+
"original": {
|
|
41002
|
+
"value": "12px",
|
|
41003
|
+
"type": "fontSizes"
|
|
41004
|
+
},
|
|
41005
|
+
"name": "code-font-size",
|
|
41006
|
+
"attributes": {
|
|
41007
|
+
"category": "typography",
|
|
41008
|
+
"type": "code-font-size"
|
|
41009
|
+
},
|
|
41010
|
+
"path": [
|
|
41011
|
+
"typography",
|
|
41012
|
+
"code-font-size"
|
|
41013
|
+
]
|
|
41014
|
+
},
|
|
41015
|
+
"code-font-weight": {
|
|
41016
|
+
"value": "400",
|
|
41017
|
+
"type": "fontWeights",
|
|
41018
|
+
"filePath": "libs/tokens/src/typography.json",
|
|
41019
|
+
"isSource": true,
|
|
41020
|
+
"original": {
|
|
41021
|
+
"value": "400",
|
|
41022
|
+
"type": "fontWeights"
|
|
41023
|
+
},
|
|
41024
|
+
"name": "code-font-weight",
|
|
41025
|
+
"attributes": {
|
|
41026
|
+
"category": "typography",
|
|
41027
|
+
"type": "code-font-weight"
|
|
41028
|
+
},
|
|
41029
|
+
"path": [
|
|
41030
|
+
"typography",
|
|
41031
|
+
"code-font-weight"
|
|
41032
|
+
]
|
|
41033
|
+
},
|
|
41034
|
+
"code-line-height": {
|
|
41035
|
+
"value": "20px",
|
|
41036
|
+
"type": "lineHeights",
|
|
41037
|
+
"filePath": "libs/tokens/src/typography.json",
|
|
41038
|
+
"isSource": true,
|
|
41039
|
+
"original": {
|
|
41040
|
+
"value": "20px",
|
|
41041
|
+
"type": "lineHeights"
|
|
41042
|
+
},
|
|
41043
|
+
"name": "code-line-height",
|
|
41044
|
+
"attributes": {
|
|
41045
|
+
"category": "typography",
|
|
41046
|
+
"type": "code-line-height"
|
|
41047
|
+
},
|
|
41048
|
+
"path": [
|
|
41049
|
+
"typography",
|
|
41050
|
+
"code-line-height"
|
|
41051
|
+
]
|
|
40976
41052
|
}
|
|
40977
41053
|
}
|
|
40978
41054
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/tokens",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.1",
|
|
4
4
|
"description": "Design tokens for covalent design system",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
5
|
"repository": {
|
|
8
6
|
"type": "git",
|
|
9
7
|
"url": "https://github.com/teradata/covalent.git"
|
|
@@ -16,7 +14,9 @@
|
|
|
16
14
|
"exports": {
|
|
17
15
|
".": {
|
|
18
16
|
"sass": "./_index.scss",
|
|
19
|
-
"style": "./index.css"
|
|
17
|
+
"style": "./index.css",
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"default": "./index.js"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|