@hexdspace/react 0.1.0 → 0.1.1

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.
@@ -0,0 +1,2 @@
1
+ @import "./base-theme.css";
2
+ @import "tailwindcss";
package/dist/index.js CHANGED
@@ -1117,7 +1117,7 @@ var buttonVariants = cva("btn", {
1117
1117
  },
1118
1118
  size: {
1119
1119
  sm: "px-3 py-1.5",
1120
- md: "px-3.5 py-2.5 !text-base",
1120
+ md: "px-3.5 py-2.5",
1121
1121
  lg: "px-4.5 py-3 !text-base",
1122
1122
  icon: "h-10 w-10 p-0"
1123
1123
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexdspace/react",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -49,7 +49,6 @@
49
49
  "@storybook/addon-onboarding": "^10.1.10",
50
50
  "@storybook/addon-vitest": "^10.1.10",
51
51
  "@storybook/react-vite": "^10.1.10",
52
- "@tailwindcss/cli": "^4.1.18",
53
52
  "@tailwindcss/vite": "^4.1.18",
54
53
  "@tanstack/react-query": "^5.90.11",
55
54
  "@types/react": "^19.2.7",
@@ -71,7 +70,7 @@
71
70
  },
72
71
  "scripts": {
73
72
  "build": "tsup src/index.ts --dts --format esm --clean && pnpm run build:css",
74
- "build:css": "mkdir -p dist/css && cp -R src/ui/theme/css/* dist/css/ && tailwindcss -i src/ui/theme/css/base-theme.css -o dist/css/base-theme.css --config tailwind.config.mjs",
73
+ "build:css": "mkdir -p dist/css && cp -R src/ui/theme/css/* dist/css/",
75
74
  "test": "vitest",
76
75
  "storybook": "storybook dev -p 6006",
77
76
  "build-storybook": "storybook build"