@cyberbloxai/ui-kit 0.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.
- package/README.md +73 -0
- package/dist/App.d.ts +2 -0
- package/dist/components/CodeBlock.d.ts +7 -0
- package/dist/components/ComponentLivePreview.d.ts +5 -0
- package/dist/components/NavLink.d.ts +8 -0
- package/dist/components/PropTable.d.ts +6 -0
- package/dist/components/showcase/AuthShowcase.d.ts +2 -0
- package/dist/components/showcase/ComponentsShowcase.d.ts +2 -0
- package/dist/components/showcase/DashboardShowcase.d.ts +2 -0
- package/dist/components/showcase/ErrorShowcase.d.ts +2 -0
- package/dist/components/showcase/NotificationShowcase.d.ts +2 -0
- package/dist/components/ui/accordion.d.ts +7 -0
- package/dist/components/ui/alert-dialog.d.ts +20 -0
- package/dist/components/ui/alert.d.ts +8 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/avatar.d.ts +6 -0
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/breadcrumb.d.ts +19 -0
- package/dist/components/ui/button.d.ts +11 -0
- package/dist/components/ui/calendar.d.ts +8 -0
- package/dist/components/ui/card.d.ts +8 -0
- package/dist/components/ui/carousel.d.ts +18 -0
- package/dist/components/ui/chart.d.ts +62 -0
- package/dist/components/ui/checkbox.d.ts +4 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/command.d.ts +82 -0
- package/dist/components/ui/context-menu.d.ts +27 -0
- package/dist/components/ui/dialog.d.ts +19 -0
- package/dist/components/ui/drawer.d.ts +22 -0
- package/dist/components/ui/dropdown-menu.d.ts +27 -0
- package/dist/components/ui/form.d.ts +23 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/input-otp.d.ts +34 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +5 -0
- package/dist/components/ui/menubar.d.ts +33 -0
- package/dist/components/ui/navigation-menu.d.ts +12 -0
- package/dist/components/ui/pagination.d.ts +28 -0
- package/dist/components/ui/popover.d.ts +6 -0
- package/dist/components/ui/progress.d.ts +4 -0
- package/dist/components/ui/radio-group.d.ts +5 -0
- package/dist/components/ui/resizable.d.ts +23 -0
- package/dist/components/ui/scroll-area.d.ts +5 -0
- package/dist/components/ui/select.d.ts +13 -0
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/sheet.d.ts +25 -0
- package/dist/components/ui/sidebar.d.ts +66 -0
- package/dist/components/ui/skeleton.d.ts +2 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/sonner.d.ts +4 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/tabs.d.ts +7 -0
- package/dist/components/ui/textarea.d.ts +5 -0
- package/dist/components/ui/toast.d.ts +15 -0
- package/dist/components/ui/toaster.d.ts +1 -0
- package/dist/components/ui/toggle-group.d.ts +12 -0
- package/dist/components/ui/toggle.d.ts +12 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/components/ui/use-toast.d.ts +2 -0
- package/dist/data/componentRegistry.d.ts +20 -0
- package/dist/favicon.ico +0 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-toast.d.ts +44 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.mjs +1888 -0
- package/dist/index.mjs.map +1 -0
- package/dist/lib/index.d.ts +52 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/main.d.ts +1 -0
- package/dist/pages/ComponentDetail.d.ts +2 -0
- package/dist/pages/ComponentsList.d.ts +2 -0
- package/dist/pages/Index.d.ts +2 -0
- package/dist/pages/NotFound.d.ts +2 -0
- package/dist/placeholder.svg +1 -0
- package/dist/robots.txt +14 -0
- package/dist/test/example.test.d.ts +1 -0
- package/dist/test/setup.d.ts +1 -0
- package/package.json +119 -0
package/package.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cyberbloxai/ui-kit",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Production-ready UI component library built on Radix UI + Tailwind CSS.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/abhishekjohn1507/uni-kit-forge.git"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"main": "dist/index.cjs",
|
|
14
|
+
"module": "dist/index.mjs",
|
|
15
|
+
"types": "dist/lib/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/index.mjs",
|
|
19
|
+
"require": "./dist/index.cjs",
|
|
20
|
+
"types": "./dist/lib/index.d.ts"
|
|
21
|
+
},
|
|
22
|
+
"./styles.css": "./dist/style.css"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"sideEffects": false,
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": "^18.0.0",
|
|
31
|
+
"react-dom": "^18.0.0",
|
|
32
|
+
"tailwindcss": "^3.0.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"build": "vite build",
|
|
37
|
+
"build:lib": "vite build --config vite.lib.config.ts && node node_modules/typescript/lib/tsc.js --project tsconfig.app.json --declaration --emitDeclarationOnly --outDir dist --noEmit false",
|
|
38
|
+
"build:dev": "vite build --mode development",
|
|
39
|
+
"lint": "eslint .",
|
|
40
|
+
"preview": "vite preview",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:watch": "vitest"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@hookform/resolvers": "^3.10.0",
|
|
46
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
47
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
48
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
49
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
50
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
51
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
52
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
53
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
54
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
55
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
56
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
57
|
+
"@radix-ui/react-menubar": "^1.1.15",
|
|
58
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
59
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
60
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
61
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
62
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
63
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
64
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
65
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
66
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
67
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
68
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
69
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
70
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
71
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
72
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
73
|
+
"@tanstack/react-query": "^5.83.0",
|
|
74
|
+
"class-variance-authority": "^0.7.1",
|
|
75
|
+
"clsx": "^2.1.1",
|
|
76
|
+
"cmdk": "^1.1.1",
|
|
77
|
+
"date-fns": "^3.6.0",
|
|
78
|
+
"embla-carousel-react": "^8.6.0",
|
|
79
|
+
"framer-motion": "^12.33.0",
|
|
80
|
+
"input-otp": "^1.4.2",
|
|
81
|
+
"lucide-react": "^0.462.0",
|
|
82
|
+
"next-themes": "^0.3.0",
|
|
83
|
+
"react": "^18.3.1",
|
|
84
|
+
"react-day-picker": "^8.10.1",
|
|
85
|
+
"react-dom": "^18.3.1",
|
|
86
|
+
"react-hook-form": "^7.61.1",
|
|
87
|
+
"react-resizable-panels": "^2.1.9",
|
|
88
|
+
"react-router-dom": "^6.30.1",
|
|
89
|
+
"recharts": "^2.15.4",
|
|
90
|
+
"sonner": "^1.7.4",
|
|
91
|
+
"tailwind-merge": "^2.6.0",
|
|
92
|
+
"tailwindcss-animate": "^1.0.7",
|
|
93
|
+
"vaul": "^0.9.9",
|
|
94
|
+
"zod": "^3.25.76"
|
|
95
|
+
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@eslint/js": "^9.32.0",
|
|
98
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
99
|
+
"@testing-library/jest-dom": "^6.6.0",
|
|
100
|
+
"@testing-library/react": "^16.0.0",
|
|
101
|
+
"@types/node": "^22.16.5",
|
|
102
|
+
"@types/react": "^18.3.23",
|
|
103
|
+
"@types/react-dom": "^18.3.7",
|
|
104
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
105
|
+
"autoprefixer": "^10.4.21",
|
|
106
|
+
"eslint": "^9.32.0",
|
|
107
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
108
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
109
|
+
"globals": "^15.15.0",
|
|
110
|
+
"jsdom": "^20.0.3",
|
|
111
|
+
"lovable-tagger": "^1.1.13",
|
|
112
|
+
"postcss": "^8.5.6",
|
|
113
|
+
"tailwindcss": "^3.4.17",
|
|
114
|
+
"typescript": "^5.8.3",
|
|
115
|
+
"typescript-eslint": "^8.38.0",
|
|
116
|
+
"vite": "^5.4.19",
|
|
117
|
+
"vitest": "^3.2.4"
|
|
118
|
+
}
|
|
119
|
+
}
|