@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 CHANGED
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.61",
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.29",
11
- "@trackunit/css-core": "0.0.83",
12
- "@trackunit/css-tailwind-custom-properties-plugin": "0.0.21",
13
- "@trackunit/ui-design-tokens": "0.0.67"
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: `var(${themeBoxShadow.sm})`,
765
- E10: `var(${themeBoxShadow.DEFAULT})`,
766
- E10A: `var(${themeBoxShadow.md})`,
767
- E20: `var(${themeBoxShadow.lg})`,
768
- E30: `var(${themeBoxShadow.xl})`,
769
- E40: `var(${themeBoxShadow["2xl"]})`
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: `var(${themeSpacing[0]})`,
823
- tiny: `var(${themeSpacing[1]})`,
824
- mini: `var(${themeSpacing[2]})`,
825
- small: `var(${themeSpacing[3]})`,
826
- medium: `var(${themeSpacing[4]})`,
827
- large: `var(${themeSpacing[6]})`,
828
- giant: `var(${themeSpacing[8]})`,
829
- enormous: `var(${themeSpacing[10]})`
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: `var(${themeFontSize["3xl"]})`,
874
+ primary: themeFontSize["3xl"],
875
875
  // 30px
876
- secondary: `var(${themeFontSize.lg})`,
876
+ secondary: themeFontSize.lg,
877
877
  // 18px
878
- tertiary: `var(${themeFontSize.base})`,
878
+ tertiary: themeFontSize.base,
879
879
  // 16px
880
- subtitle: `var(${themeFontSize.base})`,
880
+ subtitle: themeFontSize.base,
881
881
  // 16px
882
- body: `var(${themeFontSize.sm})`,
882
+ body: themeFontSize.sm,
883
883
  // 14px
884
- small: `var(${themeFontSize.xs})`
884
+ small: themeFontSize.xs
885
885
  // 12px
886
886
  };
887
887
  var fontWeight = {