@banhosdev/moldsoft-ui 0.3.0 → 1.1.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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@banhosdev/moldsoft-ui",
3
- "version": "0.3.0",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -11,18 +11,20 @@
11
11
  "import": "./dist/index.mjs",
12
12
  "require": "./dist/index.js"
13
13
  },
14
- "./styles": "./src/styles/globals.css"
14
+ "./styles": "./dist/styles.css",
15
+ "./package.json": "./package.json"
15
16
  },
16
17
  "files": [
17
18
  "dist",
18
- "src/styles/globals.css"
19
+ "src/assets"
19
20
  ],
20
21
  "scripts": {
21
- "build": "tsup src/index.ts --format cjs,esm --dts",
22
- "dev": "tsup src/index.ts --format cjs,esm --watch --dts",
22
+ "build": "tsup && npx tailwindcss -i src/styles/globals.css -o dist/styles.css",
23
+ "dev": "tsup --watch --onSuccess \"npx tailwindcss -i src/styles/globals.css -o dist/styles.css\"",
23
24
  "lint": "eslint src"
24
25
  },
25
26
  "dependencies": {
27
+ "@radix-ui/react-separator": "^1.1.8",
26
28
  "@radix-ui/react-slot": "^1.2.4",
27
29
  "class-variance-authority": "^0.7.0",
28
30
  "clsx": "^2.1.1",
@@ -34,6 +36,7 @@
34
36
  "react-dom": "^18.0.0 || ^19.0.0"
35
37
  },
36
38
  "devDependencies": {
39
+ "@tailwindcss/cli": "^4.2.1",
37
40
  "@tailwindcss/postcss": "4",
38
41
  "@types/react": "^19",
39
42
  "@types/react-dom": "^19",
Binary file
Binary file
Binary file
Binary file
@@ -1,109 +0,0 @@
1
- @import "tailwindcss";
2
-
3
- @theme {
4
- --color-background: hsl(var(--background));
5
- --color-foreground: hsl(var(--foreground));
6
-
7
- --color-card: hsl(var(--card));
8
- --color-card-foreground: hsl(var(--card-foreground));
9
-
10
- --color-popover: hsl(var(--popover));
11
- --color-popover-foreground: hsl(var(--popover-foreground));
12
-
13
- --color-primary: hsl(var(--primary));
14
- --color-primary-foreground: hsl(var(--primary-foreground));
15
-
16
- --color-secondary: hsl(var(--secondary));
17
- --color-secondary-foreground: hsl(var(--secondary-foreground));
18
-
19
- --color-muted: hsl(var(--muted));
20
- --color-muted-foreground: hsl(var(--muted-foreground));
21
-
22
- --color-accent: hsl(var(--accent));
23
- --color-accent-foreground: hsl(var(--accent-foreground));
24
-
25
- --color-destructive: hsl(var(--destructive));
26
- --color-destructive-foreground: hsl(var(--destructive-foreground));
27
-
28
- --color-border: hsl(var(--border));
29
- --color-input: hsl(var(--input));
30
- --color-ring: hsl(var(--ring));
31
-
32
- --color-chart-1: hsl(var(--chart-1));
33
- --color-chart-2: hsl(var(--chart-2));
34
- --color-chart-3: hsl(var(--chart-3));
35
- --color-chart-4: hsl(var(--chart-4));
36
- --color-chart-5: hsl(var(--chart-5));
37
-
38
- --radius-lg: var(--radius);
39
- --radius-md: calc(var(--radius) - 2px);
40
- --radius-sm: calc(var(--radius) - 4px);
41
- }
42
-
43
- @layer base {
44
- :root {
45
- --background: 0 0% 100%;
46
- --foreground: 0 0% 3.9%;
47
- --card: 0 0% 100%;
48
- --card-foreground: 0 0% 3.9%;
49
- --popover: 0 0% 100%;
50
- --popover-foreground: 0 0% 3.9%;
51
- --primary: 221.2 83.2% 53.3%;
52
- --primary-foreground: 0 0% 98%;
53
- --secondary: 0 0% 96.1%;
54
- --secondary-foreground: 0 0% 9%;
55
- --muted: 0 0% 96.1%;
56
- --muted-foreground: 0 0% 45.1%;
57
- --accent: 0 0% 96.1%;
58
- --accent-foreground: 0 0% 9%;
59
- --destructive: 0 84.2% 60.2%;
60
- --destructive-foreground: 0 0% 98%;
61
- --border: 0 0% 89.8%;
62
- --input: 0 0% 89.8%;
63
- --ring: 0 0% 3.9%;
64
- --chart-1: 12 76% 61%;
65
- --chart-2: 173 58% 39%;
66
- --chart-3: 197 37% 24%;
67
- --chart-4: 43 74% 66%;
68
- --chart-5: 27 87% 67%;
69
- --radius: 0.5rem;
70
- }
71
-
72
- .dark {
73
- --background: 0 0% 3.9%;
74
- --foreground: 0 0% 98%;
75
- --card: 0 0% 3.9%;
76
- --card-foreground: 0 0% 98%;
77
- --popover: 0 0% 3.9%;
78
- --popover-foreground: 0 0% 98%;
79
- --primary: 0 0% 98%;
80
- --primary-foreground: 0 0% 9%;
81
- --secondary: 0 0% 14.9%;
82
- --secondary-foreground: 0 0% 98%;
83
- --muted: 0 0% 14.9%;
84
- --muted-foreground: 0 0% 63.9%;
85
- --accent: 0 0% 14.9%;
86
- --accent-foreground: 0 0% 98%;
87
- --destructive: 0 62.8% 30.6%;
88
- --destructive-foreground: 0 0% 98%;
89
- --border: 0 0% 14.9%;
90
- --input: 0 0% 14.9%;
91
- --ring: 0 0% 83.1%;
92
- --chart-1: 220 70% 50%;
93
- --chart-2: 160 60% 45%;
94
- --chart-3: 30 80% 55%;
95
- --chart-4: 280 65% 60%;
96
- --chart-5: 340 75% 55%;
97
- }
98
- }
99
-
100
- @layer base {
101
- * {
102
- @apply border-border outline-ring/50;
103
- }
104
-
105
- body {
106
- background-color: hsl(var(--background));
107
- color: hsl(var(--foreground));
108
- }
109
- }