@agenticindiedev/ui 0.1.0 → 0.2.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.
- package/README.md +183 -13
- package/dist/index.cjs +53 -1
- package/dist/index.d.ts +319 -6
- package/dist/index.js +10518 -811
- package/dist/styles.css +848 -94
- package/package.json +30 -7
package/package.json
CHANGED
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "
|
|
2
|
+
"author": "agenticindiedev",
|
|
3
3
|
"dependencies": {
|
|
4
|
+
"@radix-ui/react-accordion": "1.2.12",
|
|
5
|
+
"@radix-ui/react-alert-dialog": "1.1.15",
|
|
6
|
+
"@radix-ui/react-avatar": "1.1.11",
|
|
7
|
+
"@radix-ui/react-checkbox": "1.3.3",
|
|
8
|
+
"@radix-ui/react-dialog": "1.1.15",
|
|
9
|
+
"@radix-ui/react-dropdown-menu": "2.1.16",
|
|
10
|
+
"@radix-ui/react-label": "2.1.8",
|
|
11
|
+
"@radix-ui/react-popover": "1.1.15",
|
|
12
|
+
"@radix-ui/react-progress": "1.1.8",
|
|
13
|
+
"@radix-ui/react-radio-group": "1.3.8",
|
|
14
|
+
"@radix-ui/react-select": "2.2.6",
|
|
15
|
+
"@radix-ui/react-separator": "1.1.8",
|
|
16
|
+
"@radix-ui/react-slider": "1.3.6",
|
|
17
|
+
"@radix-ui/react-slot": "1.2.4",
|
|
18
|
+
"@radix-ui/react-switch": "1.2.6",
|
|
19
|
+
"@radix-ui/react-tabs": "1.1.13",
|
|
20
|
+
"@radix-ui/react-toast": "1.2.15",
|
|
21
|
+
"@radix-ui/react-tooltip": "1.2.8",
|
|
22
|
+
"@tanstack/react-table": "8.21.3",
|
|
4
23
|
"class-variance-authority": "0.7.1",
|
|
5
24
|
"clsx": "2.1.1",
|
|
25
|
+
"date-fns": "4.1.0",
|
|
26
|
+
"lucide-react": "0.562.0",
|
|
27
|
+
"react-day-picker": "9.13.0",
|
|
28
|
+
"sonner": "2.0.7",
|
|
6
29
|
"tailwind-merge": "3.4.0"
|
|
7
30
|
},
|
|
8
|
-
"description": "
|
|
31
|
+
"description": "@agenticindiedev/ui - Modern React component library",
|
|
9
32
|
"devDependencies": {
|
|
10
33
|
"@happy-dom/global-registrator": "20.0.11",
|
|
11
34
|
"@storybook/addon-essentials": "8.6.14",
|
|
@@ -16,7 +39,7 @@
|
|
|
16
39
|
"@storybook/react-vite": "10.1.10",
|
|
17
40
|
"@storybook/test": "8.6.14",
|
|
18
41
|
"@tailwindcss/postcss": "4.1.18",
|
|
19
|
-
"@testing-library/jest-dom": "
|
|
42
|
+
"@testing-library/jest-dom": "6.9.1",
|
|
20
43
|
"@testing-library/react": "16.3.1",
|
|
21
44
|
"@types/bun": "1.3.5",
|
|
22
45
|
"@types/node": "25.0.3",
|
|
@@ -59,7 +82,7 @@
|
|
|
59
82
|
"components",
|
|
60
83
|
"ui",
|
|
61
84
|
"tailwind",
|
|
62
|
-
"
|
|
85
|
+
"agenticindiedev"
|
|
63
86
|
],
|
|
64
87
|
"license": "MIT",
|
|
65
88
|
"main": "./dist/index.cjs",
|
|
@@ -76,7 +99,7 @@
|
|
|
76
99
|
},
|
|
77
100
|
"repository": {
|
|
78
101
|
"type": "git",
|
|
79
|
-
"url": "https://github.com/agenticindiedev/
|
|
102
|
+
"url": "https://github.com/agenticindiedev/ui"
|
|
80
103
|
},
|
|
81
104
|
"scripts": {
|
|
82
105
|
"build": "bun run build:lib && bun run build:css",
|
|
@@ -91,7 +114,7 @@
|
|
|
91
114
|
"pre:install": "bun update --latest --recursive && bun install",
|
|
92
115
|
"prepare": "bun run build",
|
|
93
116
|
"prepare:deploy": "bun run format:fix && bun run lint:fix && bun run build",
|
|
94
|
-
"prepublishOnly": "bun run build",
|
|
117
|
+
"prepublishOnly": "node -e \"const fs = require('fs'); if (!fs.existsSync('dist')) { console.error('ERROR: dist directory not found. Run \\\"bun run build\\\" first.'); process.exit(1); }\"",
|
|
95
118
|
"storybook": "storybook dev -p 6006",
|
|
96
119
|
"test": "bun test",
|
|
97
120
|
"typecheck": "tsc --noEmit"
|
|
@@ -101,5 +124,5 @@
|
|
|
101
124
|
],
|
|
102
125
|
"type": "module",
|
|
103
126
|
"types": "./dist/index.d.ts",
|
|
104
|
-
"version": "0.1
|
|
127
|
+
"version": "0.2.1"
|
|
105
128
|
}
|