@voyantjs/ui 0.24.0 → 0.24.2

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.
Files changed (2) hide show
  1. package/package.json +10 -6
  2. package/src/styles.css +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/ui",
3
- "version": "0.24.0",
3
+ "version": "0.24.2",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -35,10 +35,10 @@
35
35
  "tw-animate-css": "^1.3.5",
36
36
  "vaul": "^1.1.2",
37
37
  "zod": "^4.3.6",
38
- "@voyantjs/i18n": "0.24.0",
39
- "@voyantjs/notifications": "0.24.0",
40
- "@voyantjs/notifications-react": "0.24.0",
41
- "@voyantjs/utils": "0.24.0"
38
+ "@voyantjs/i18n": "0.24.2",
39
+ "@voyantjs/notifications": "0.24.2",
40
+ "@voyantjs/notifications-react": "0.24.2",
41
+ "@voyantjs/utils": "0.24.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@tailwindcss/postcss": "^4.1.11",
@@ -51,6 +51,9 @@
51
51
  },
52
52
  "exports": {
53
53
  "./globals.css": "./src/styles/globals.css",
54
+ "./styles.css": {
55
+ "default": "./src/styles.css"
56
+ },
54
57
  "./postcss.config": "./postcss.config.mjs",
55
58
  "./lib/*": {
56
59
  "types": "./dist/lib/*.d.ts",
@@ -75,6 +78,7 @@
75
78
  },
76
79
  "files": [
77
80
  "dist",
81
+ "src/styles.css",
78
82
  "src/styles",
79
83
  "postcss.config.mjs"
80
84
  ],
@@ -88,7 +92,7 @@
88
92
  },
89
93
  "scripts": {
90
94
  "build": "tsc -p tsconfig.build.json",
91
- "clean": "rm -rf dist",
95
+ "clean": "rm -rf dist tsconfig.tsbuildinfo",
92
96
  "typecheck": "tsc --noEmit",
93
97
  "lint": "biome check registry/",
94
98
  "registry:build": "pnpm -C ../.. registry:build"
package/src/styles.css ADDED
@@ -0,0 +1,8 @@
1
+ /* Canonical Voyant UI stylesheet.
2
+ *
3
+ * This includes the shared theme globals and the Tailwind v4 source-detection
4
+ * directives for classes emitted by @voyantjs/ui components.
5
+ *
6
+ * @import "@voyantjs/ui/styles.css";
7
+ */
8
+ @import "./styles/globals.css";