@nuvia/components 0.1.1 → 0.2.0
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 +10 -10
- package/src/styles/globals.css +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuvia/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -46,12 +46,6 @@
|
|
|
46
46
|
"sideEffects": [
|
|
47
47
|
"**/*.css"
|
|
48
48
|
],
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsup",
|
|
51
|
-
"dev": "tsup --watch",
|
|
52
|
-
"typecheck": "tsc --noEmit",
|
|
53
|
-
"clean": "rm -rf dist node_modules"
|
|
54
|
-
},
|
|
55
49
|
"dependencies": {
|
|
56
50
|
"@hookform/resolvers": "^3.10.0",
|
|
57
51
|
"@phosphor-icons/react": "^2.1.7",
|
|
@@ -101,12 +95,12 @@
|
|
|
101
95
|
"zod": "^3.24.1"
|
|
102
96
|
},
|
|
103
97
|
"devDependencies": {
|
|
98
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
104
99
|
"@types/node": "^22.10.7",
|
|
105
100
|
"@types/react": "^19.0.7",
|
|
106
101
|
"@types/react-dom": "^19.0.3",
|
|
107
|
-
"autoprefixer": "^10.4.20",
|
|
108
102
|
"postcss": "^8.5.1",
|
|
109
|
-
"tailwindcss": "^
|
|
103
|
+
"tailwindcss": "^4.1.18",
|
|
110
104
|
"tsup": "^8.3.5",
|
|
111
105
|
"typescript": "^5.7.3"
|
|
112
106
|
},
|
|
@@ -117,5 +111,11 @@
|
|
|
117
111
|
"publishConfig": {
|
|
118
112
|
"access": "public",
|
|
119
113
|
"registry": "https://registry.npmjs.org/"
|
|
114
|
+
},
|
|
115
|
+
"scripts": {
|
|
116
|
+
"build": "tsup",
|
|
117
|
+
"dev": "tsup --watch",
|
|
118
|
+
"typecheck": "tsc --noEmit",
|
|
119
|
+
"clean": "rm -rf dist node_modules"
|
|
120
120
|
}
|
|
121
|
-
}
|
|
121
|
+
}
|
package/src/styles/globals.css
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
@tailwind base;
|
|
2
|
-
@tailwind components;
|
|
3
|
-
@tailwind utilities;
|
|
4
|
-
|
|
5
1
|
* {
|
|
6
2
|
font-family: var(--font-plus-jakarta-sans);
|
|
7
3
|
overscroll-behavior-x: none;
|
|
@@ -340,10 +336,11 @@
|
|
|
340
336
|
/* This layer is added by shadcn/ui */
|
|
341
337
|
@layer base {
|
|
342
338
|
* {
|
|
343
|
-
|
|
339
|
+
border-color: hsl(var(--border));
|
|
344
340
|
}
|
|
345
341
|
body {
|
|
346
|
-
|
|
342
|
+
background-color: hsl(var(--background));
|
|
343
|
+
color: hsl(var(--foreground));
|
|
347
344
|
}
|
|
348
345
|
}
|
|
349
346
|
|