@trackunit/ui-design-tokens 0.0.99 → 0.0.100
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.cjs.js +5 -5
- package/index.esm.d.ts +1 -0
- package/index.esm.js +5 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -797,11 +797,11 @@ const themeFontWeight = {
|
|
|
797
797
|
* Based on a root size of 16px.
|
|
798
798
|
*/
|
|
799
799
|
const fontSize = {
|
|
800
|
-
primary: themeFontSize["3xl"],
|
|
801
|
-
secondary: themeFontSize.lg,
|
|
802
|
-
tertiary: themeFontSize.base,
|
|
803
|
-
subtitle: themeFontSize.base,
|
|
804
|
-
body: themeFontSize.sm,
|
|
800
|
+
primary: themeFontSize["3xl"], // 30px
|
|
801
|
+
secondary: themeFontSize.lg, // 18px
|
|
802
|
+
tertiary: themeFontSize.base, // 16px
|
|
803
|
+
subtitle: themeFontSize.base, // 16px
|
|
804
|
+
body: themeFontSize.sm, // 14px
|
|
805
805
|
small: themeFontSize.xs, // 12px
|
|
806
806
|
};
|
|
807
807
|
/**
|
package/index.esm.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|
package/index.esm.js
CHANGED
|
@@ -793,11 +793,11 @@ const themeFontWeight = {
|
|
|
793
793
|
* Based on a root size of 16px.
|
|
794
794
|
*/
|
|
795
795
|
const fontSize = {
|
|
796
|
-
primary: themeFontSize["3xl"],
|
|
797
|
-
secondary: themeFontSize.lg,
|
|
798
|
-
tertiary: themeFontSize.base,
|
|
799
|
-
subtitle: themeFontSize.base,
|
|
800
|
-
body: themeFontSize.sm,
|
|
796
|
+
primary: themeFontSize["3xl"], // 30px
|
|
797
|
+
secondary: themeFontSize.lg, // 18px
|
|
798
|
+
tertiary: themeFontSize.base, // 16px
|
|
799
|
+
subtitle: themeFontSize.base, // 16px
|
|
800
|
+
body: themeFontSize.sm, // 14px
|
|
801
801
|
small: themeFontSize.xs, // 12px
|
|
802
802
|
};
|
|
803
803
|
/**
|