@biom3/design-tokens
Advanced tools
Comparing version 0.1.3-beta to 0.1.4-beta
@@ -159,2 +159,12 @@ type Colors = { | ||
body: { | ||
large: { | ||
regular: { | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
bold: { | ||
fontWeight: number; | ||
}; | ||
}; | ||
medium: { | ||
@@ -161,0 +171,0 @@ regular: { |
@@ -396,2 +396,12 @@ "use strict"; | ||
body: { | ||
large: { | ||
regular: { | ||
fontSize: "20px", | ||
lineHeight: "28px", | ||
fontWeight: 400 | ||
}, | ||
bold: { | ||
fontWeight: 500 | ||
} | ||
}, | ||
medium: { | ||
@@ -398,0 +408,0 @@ regular: { |
{ | ||
"name": "@biom3/design-tokens", | ||
"version": "0.1.3-beta", | ||
"version": "0.1.4-beta", | ||
"main": "./dist/index.js", | ||
@@ -16,2 +16,4 @@ "types": "./dist/index.d.ts", | ||
"build": "npm run build:tokens; npm run build:ts", | ||
"prepack": "npm run build", | ||
"pack": "npm pack", | ||
"prebuild:tokens": "rm -rf ./css; mkdir css;", | ||
@@ -18,0 +20,0 @@ "build:tokens": "ts-node ./src/packageScripts/dumpTokens.ts", |
@@ -69,2 +69,12 @@ import { | ||
body: { | ||
large: { | ||
regular: { | ||
fontSize: '20px', | ||
lineHeight: '28px', | ||
fontWeight: 400, | ||
}, | ||
bold: { | ||
fontWeight: 500, | ||
}, | ||
}, | ||
medium: { | ||
@@ -71,0 +81,0 @@ regular: { |
@@ -168,2 +168,12 @@ // Base Types | ||
body: { | ||
large: { | ||
regular: { | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
bold: { | ||
fontWeight: number; | ||
}; | ||
}; | ||
medium: { | ||
@@ -170,0 +180,0 @@ regular: { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
119114
3014