Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@quadient/design-tokens

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quadient/design-tokens - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

10

build/js/variables.js
/**
* Do not edit directly
* Generated on Thu, 27 May 2021 09:23:40 GMT
* Generated on Wed, 02 Jun 2021 09:58:47 GMT
*/

@@ -309,2 +309,9 @@

export const FontStrongTextTransform = "none";
export const FontXsmallFontFamily = "'Rubik', sans-serif";
export const FontXsmallSize = 8;
export const FontXsmallLineHeight = "12px";
export const FontXsmallWeight = 700;
export const FontXsmallFontStyle = "normal";
export const FontXsmallLetterSpacing = 0;
export const FontXsmallTextTransform = "none";
export const FontHeading100FontFamily = "'Quicksand', sans-serif";

@@ -421,2 +428,3 @@ export const FontHeading100Size = 12;

export const Spacing800 = 48;
export const Spacing000 = 0;
export const SizingIcon100 = 10;

@@ -423,0 +431,0 @@ export const SizingIcon200 = 20;

/**
* Do not edit directly
* Generated on Thu, 27 May 2021 09:23:44 GMT
* Generated on Wed, 02 Jun 2021 09:58:51 GMT
*/

@@ -309,2 +309,9 @@

export const FontStrongTextTransform = "none";
export const FontXsmallFontFamily = "'Rubik', sans-serif";
export const FontXsmallSize = 8;
export const FontXsmallLineHeight = "12px";
export const FontXsmallWeight = 700;
export const FontXsmallFontStyle = "normal";
export const FontXsmallLetterSpacing = 0;
export const FontXsmallTextTransform = "none";
export const FontHeading100FontFamily = "'Quicksand', sans-serif";

@@ -421,2 +428,3 @@ export const FontHeading100Size = 12;

export const Spacing800 = 48;
export const Spacing000 = 0;
export const SizingIcon100 = 10;

@@ -423,0 +431,0 @@ export const SizingIcon200 = 20;

/**
* Do not edit directly
* Generated on Thu, 27 May 2021 09:23:48 GMT
* Generated on Wed, 02 Jun 2021 09:58:55 GMT
*/

@@ -309,2 +309,9 @@

export const FontStrongTextTransform = "none";
export const FontXsmallFontFamily = "'Rubik', sans-serif";
export const FontXsmallSize = 8;
export const FontXsmallLineHeight = "12px";
export const FontXsmallWeight = 700;
export const FontXsmallFontStyle = "normal";
export const FontXsmallLetterSpacing = 0;
export const FontXsmallTextTransform = "none";
export const FontHeading100FontFamily = "'Quicksand', sans-serif";

@@ -421,2 +428,3 @@ export const FontHeading100Size = 12;

export const Spacing800 = 48;
export const Spacing000 = 0;
export const SizingIcon100 = 10;

@@ -423,0 +431,0 @@ export const SizingIcon200 = 20;

@@ -305,2 +305,9 @@ {

"FontStrongTextTransform": "none",
"FontXsmallFontFamily": "'Rubik', sans-serif",
"FontXsmallSize": 8,
"FontXsmallLineHeight": "12px",
"FontXsmallWeight": 700,
"FontXsmallFontStyle": "normal",
"FontXsmallLetterSpacing": 0,
"FontXsmallTextTransform": "none",
"FontHeading100FontFamily": "'Quicksand', sans-serif",

@@ -417,2 +424,3 @@ "FontHeading100Size": 12,

"Spacing800": 48,
"Spacing000": 0,
"SizingIcon100": 10,

@@ -419,0 +427,0 @@ "SizingIcon200": 20,

@@ -305,2 +305,9 @@ {

"FontStrongTextTransform": "none",
"FontXsmallFontFamily": "'Rubik', sans-serif",
"FontXsmallSize": 8,
"FontXsmallLineHeight": "12px",
"FontXsmallWeight": 700,
"FontXsmallFontStyle": "normal",
"FontXsmallLetterSpacing": 0,
"FontXsmallTextTransform": "none",
"FontHeading100FontFamily": "'Quicksand', sans-serif",

@@ -417,2 +424,3 @@ "FontHeading100Size": 12,

"Spacing800": 48,
"Spacing000": 0,
"SizingIcon100": 10,

@@ -419,0 +427,0 @@ "SizingIcon200": 20,

@@ -305,2 +305,9 @@ {

"FontStrongTextTransform": "none",
"FontXsmallFontFamily": "'Rubik', sans-serif",
"FontXsmallSize": 8,
"FontXsmallLineHeight": "12px",
"FontXsmallWeight": 700,
"FontXsmallFontStyle": "normal",
"FontXsmallLetterSpacing": 0,
"FontXsmallTextTransform": "none",
"FontHeading100FontFamily": "'Quicksand', sans-serif",

@@ -417,2 +424,3 @@ "FontHeading100Size": 12,

"Spacing800": 48,
"Spacing000": 0,
"SizingIcon100": 10,

@@ -419,0 +427,0 @@ "SizingIcon200": 20,

@@ -0,1 +1,7 @@

# 0.0.7
## Added
- new tokens:
`spacing-000`,
`font-xsmall-*`
# 0.0.6

@@ -2,0 +8,0 @@ ## Added

2

package.json
{
"name": "@quadient/design-tokens",
"version": "0.0.6",
"version": "0.0.7",
"description": "Quadient design tokens generator tool. As an output, various types of formats are generated based on configuration in json input files.",

@@ -5,0 +5,0 @@ "main": "config.js",

@@ -48,2 +48,11 @@ {

},
"xsmall": {
"fontFamily": { "value": "'Rubik', sans-serif" },
"size": { "value": 8, "unit": "px" },
"lineHeight": { "value": "12px" },
"weight": { "value": 700 },
"font-style": { "value": "normal" },
"letterSpacing": { "value": 0, "unit": "px" },
"textTransform": { "value": "none" }
},
"heading": {

@@ -50,0 +59,0 @@ "100": {

{
"spacing": {
"000": { "value": 0, "unit": "px" },
"100": { "value": 2, "unit": "px" },

@@ -4,0 +5,0 @@ "200": { "value": 4, "unit": "px" },

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

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc