@trackunit/css-tailwind 0.0.61 → 0.0.65
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/package.json +8 -5
- package/tailwind-base.generated.js +20 -20
package/package.json
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.65",
|
|
4
4
|
"main": "./index.cjs",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=16.x"
|
|
9
|
+
},
|
|
7
10
|
"type": "commonjs",
|
|
8
11
|
"types": "./src/index.d.ts",
|
|
9
12
|
"dependencies": {
|
|
10
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
11
|
-
"@trackunit/css-core": "0.0.
|
|
12
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.
|
|
13
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
13
|
+
"@trackunit/css-component-tokens": "0.0.30",
|
|
14
|
+
"@trackunit/css-core": "0.0.85",
|
|
15
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.22",
|
|
16
|
+
"@trackunit/ui-design-tokens": "0.0.69"
|
|
14
17
|
},
|
|
15
18
|
"peerDependencies": {}
|
|
16
19
|
}
|
|
@@ -761,12 +761,12 @@ var themeBoxShadow = {
|
|
|
761
761
|
active: "0px 0px 1px 1px rgba(26, 27, 28, 0.13), 0px 1px 1px rgba(26, 27, 28, 0.15)"
|
|
762
762
|
};
|
|
763
763
|
var elevation = {
|
|
764
|
-
E05:
|
|
765
|
-
E10:
|
|
766
|
-
E10A:
|
|
767
|
-
E20:
|
|
768
|
-
E30:
|
|
769
|
-
E40:
|
|
764
|
+
E05: themeBoxShadow.sm,
|
|
765
|
+
E10: themeBoxShadow.DEFAULT,
|
|
766
|
+
E10A: themeBoxShadow.md,
|
|
767
|
+
E20: themeBoxShadow.lg,
|
|
768
|
+
E30: themeBoxShadow.xl,
|
|
769
|
+
E40: themeBoxShadow["2xl"]
|
|
770
770
|
};
|
|
771
771
|
|
|
772
772
|
// libs/ui/design-tokens/src/tokens/screenSize.ts
|
|
@@ -819,14 +819,14 @@ var themeSpacing = {
|
|
|
819
819
|
"96": "24rem"
|
|
820
820
|
};
|
|
821
821
|
var size = {
|
|
822
|
-
none:
|
|
823
|
-
tiny:
|
|
824
|
-
mini:
|
|
825
|
-
small:
|
|
826
|
-
medium:
|
|
827
|
-
large:
|
|
828
|
-
giant:
|
|
829
|
-
enormous:
|
|
822
|
+
none: themeSpacing[0],
|
|
823
|
+
tiny: themeSpacing[1],
|
|
824
|
+
mini: themeSpacing[2],
|
|
825
|
+
small: themeSpacing[3],
|
|
826
|
+
medium: themeSpacing[4],
|
|
827
|
+
large: themeSpacing[6],
|
|
828
|
+
giant: themeSpacing[8],
|
|
829
|
+
enormous: themeSpacing[10]
|
|
830
830
|
};
|
|
831
831
|
|
|
832
832
|
// libs/ui/design-tokens/src/tokens/typography.ts
|
|
@@ -871,17 +871,17 @@ var themeFontWeight = {
|
|
|
871
871
|
black: 800
|
|
872
872
|
};
|
|
873
873
|
var fontSize = {
|
|
874
|
-
primary:
|
|
874
|
+
primary: themeFontSize["3xl"],
|
|
875
875
|
// 30px
|
|
876
|
-
secondary:
|
|
876
|
+
secondary: themeFontSize.lg,
|
|
877
877
|
// 18px
|
|
878
|
-
tertiary:
|
|
878
|
+
tertiary: themeFontSize.base,
|
|
879
879
|
// 16px
|
|
880
|
-
subtitle:
|
|
880
|
+
subtitle: themeFontSize.base,
|
|
881
881
|
// 16px
|
|
882
|
-
body:
|
|
882
|
+
body: themeFontSize.sm,
|
|
883
883
|
// 14px
|
|
884
|
-
small:
|
|
884
|
+
small: themeFontSize.xs
|
|
885
885
|
// 12px
|
|
886
886
|
};
|
|
887
887
|
var fontWeight = {
|