@covalent/tokens 10.3.0 → 10.4.0-beta.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 +6 -0
- package/index.css +2 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/index.json +44 -0
- package/package.json +1 -1
package/_index.scss
CHANGED
|
@@ -1250,6 +1250,8 @@ $material-blue-grey-600: #546e7a !default;
|
|
|
1250
1250
|
$material-blue-grey-700: #455a64 !default;
|
|
1251
1251
|
$material-blue-grey-800: #37474f !default;
|
|
1252
1252
|
$material-blue-grey-900: #263238 !default;
|
|
1253
|
+
$density-interval: 4px !default;
|
|
1254
|
+
$density-mode: 0 !default;
|
|
1253
1255
|
$typography-font-family: Arial, sans-serif !default;
|
|
1254
1256
|
$typography-headline1-font-family: 'Inter', sans-serif !default;
|
|
1255
1257
|
$typography-headline1-font-size: 96px !default;
|
|
@@ -2574,6 +2576,10 @@ $tokens: (
|
|
|
2574
2576
|
'blue-grey-800': $material-blue-grey-800,
|
|
2575
2577
|
'blue-grey-900': $material-blue-grey-900
|
|
2576
2578
|
),
|
|
2579
|
+
'density': (
|
|
2580
|
+
'interval': $density-interval,
|
|
2581
|
+
'mode': $density-mode
|
|
2582
|
+
),
|
|
2577
2583
|
'typography': (
|
|
2578
2584
|
'font-family': $typography-font-family,
|
|
2579
2585
|
'headline1-font-family': $typography-headline1-font-family,
|
package/index.css
CHANGED
|
@@ -1250,6 +1250,8 @@
|
|
|
1250
1250
|
--cv-material-blue-grey-700: #455a64;
|
|
1251
1251
|
--cv-material-blue-grey-800: #37474f;
|
|
1252
1252
|
--cv-material-blue-grey-900: #263238;
|
|
1253
|
+
--cv-density-interval: 4px;
|
|
1254
|
+
--cv-density-mode: 0;
|
|
1253
1255
|
--cv-typography-font-family: Arial, sans-serif;
|
|
1254
1256
|
--cv-typography-headline1-font-family: 'Inter', sans-serif;
|
|
1255
1257
|
--cv-typography-headline1-font-size: 96px;
|
package/index.d.ts
CHANGED
|
@@ -1249,6 +1249,8 @@ export const CvMaterialBlueGrey600: string;
|
|
|
1249
1249
|
export const CvMaterialBlueGrey700: string;
|
|
1250
1250
|
export const CvMaterialBlueGrey800: string;
|
|
1251
1251
|
export const CvMaterialBlueGrey900: string;
|
|
1252
|
+
export const CvDensityInterval: string;
|
|
1253
|
+
export const CvDensityMode: number;
|
|
1252
1254
|
export const CvTypographyFontFamily: string;
|
|
1253
1255
|
export const CvTypographyHeadline1FontFamily: string;
|
|
1254
1256
|
export const CvTypographyHeadline1FontSize: string;
|
package/index.js
CHANGED
|
@@ -1249,6 +1249,8 @@ export const CvMaterialBlueGrey600 = "#546e7a";
|
|
|
1249
1249
|
export const CvMaterialBlueGrey700 = "#455a64";
|
|
1250
1250
|
export const CvMaterialBlueGrey800 = "#37474f";
|
|
1251
1251
|
export const CvMaterialBlueGrey900 = "#263238";
|
|
1252
|
+
export const CvDensityInterval = "4px";
|
|
1253
|
+
export const CvDensityMode = 0;
|
|
1252
1254
|
export const CvTypographyFontFamily = "Arial, sans-serif";
|
|
1253
1255
|
export const CvTypographyHeadline1FontFamily = "'Inter', sans-serif";
|
|
1254
1256
|
export const CvTypographyHeadline1FontSize = "96px";
|
package/index.json
CHANGED
|
@@ -28606,6 +28606,50 @@
|
|
|
28606
28606
|
]
|
|
28607
28607
|
}
|
|
28608
28608
|
},
|
|
28609
|
+
"density": {
|
|
28610
|
+
"interval": {
|
|
28611
|
+
"value": "4px",
|
|
28612
|
+
"type": "number",
|
|
28613
|
+
"description": "Default interval number",
|
|
28614
|
+
"filePath": "libs/tokens/src/density.json",
|
|
28615
|
+
"isSource": true,
|
|
28616
|
+
"original": {
|
|
28617
|
+
"value": "4px",
|
|
28618
|
+
"type": "number",
|
|
28619
|
+
"description": "Default interval number"
|
|
28620
|
+
},
|
|
28621
|
+
"name": "interval",
|
|
28622
|
+
"attributes": {
|
|
28623
|
+
"category": "density",
|
|
28624
|
+
"type": "interval"
|
|
28625
|
+
},
|
|
28626
|
+
"path": [
|
|
28627
|
+
"density",
|
|
28628
|
+
"interval"
|
|
28629
|
+
]
|
|
28630
|
+
},
|
|
28631
|
+
"mode": {
|
|
28632
|
+
"value": 0,
|
|
28633
|
+
"type": "number",
|
|
28634
|
+
"description": "Default density mode (points to normal)",
|
|
28635
|
+
"filePath": "libs/tokens/src/density.json",
|
|
28636
|
+
"isSource": true,
|
|
28637
|
+
"original": {
|
|
28638
|
+
"value": 0,
|
|
28639
|
+
"type": "number",
|
|
28640
|
+
"description": "Default density mode (points to normal)"
|
|
28641
|
+
},
|
|
28642
|
+
"name": "mode",
|
|
28643
|
+
"attributes": {
|
|
28644
|
+
"category": "density",
|
|
28645
|
+
"type": "mode"
|
|
28646
|
+
},
|
|
28647
|
+
"path": [
|
|
28648
|
+
"density",
|
|
28649
|
+
"mode"
|
|
28650
|
+
]
|
|
28651
|
+
}
|
|
28652
|
+
},
|
|
28609
28653
|
"typography": {
|
|
28610
28654
|
"font-family": {
|
|
28611
28655
|
"value": "Arial, sans-serif",
|