@trackunit/css-tailwind 0.0.152 → 0.0.153

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.152",
3
+ "version": "0.0.153",
4
4
  "main": "./index.cjs.js",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -868,14 +868,23 @@ var elevation = {
868
868
  };
869
869
 
870
870
  // libs/ui/design-tokens/src/tokens/screenSize.ts
871
+ var themeScreenSizeAsNumber = {
872
+ xs: 0,
873
+ sm: 480,
874
+ md: 768,
875
+ lg: 1024,
876
+ xl: 1200,
877
+ "2xl": 1600,
878
+ "3xl": 1900,
879
+ };
871
880
  var themeScreenSize = {
872
- xs: "0px",
873
- sm: "480px",
874
- md: "768px",
875
- lg: "1024px",
876
- xl: "1200px",
877
- "2xl": "1600px",
878
- "3xl": "1900px",
881
+ xs: `${themeScreenSizeAsNumber.xs}px`,
882
+ sm: `${themeScreenSizeAsNumber.sm}px`,
883
+ md: `${themeScreenSizeAsNumber.md}px`,
884
+ lg: `${themeScreenSizeAsNumber.lg}px`,
885
+ xl: `${themeScreenSizeAsNumber.xl}px`,
886
+ "2xl": `${themeScreenSizeAsNumber["2xl"]}px`,
887
+ "3xl": `${themeScreenSizeAsNumber["3xl"]}px`,
879
888
  };
880
889
 
881
890
  // libs/ui/design-tokens/src/tokens/size.ts