@cyberbloxai/ui-kit 0.3.0 → 0.3.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 CHANGED
@@ -4,6 +4,36 @@ Production-ready component library built with Radix UI and Tailwind CSS, develop
4
4
 
5
5
  **Live Preview**: [https://ui.cyberbloxai.in/](https://ui.cyberbloxai.in/)
6
6
 
7
+ ## Components
8
+
9
+ CyberBlox UI includes a comprehensive set of production-ready components.
10
+
11
+ ### Core Components
12
+ - **Button**: Enhanced with modern variants including `shiny`, `outline`, and `ghost`.
13
+ - **Input & Textarea**: Polished fields with smooth transitions and rounded-lg styling.
14
+ - **Badge**: Status indicators with `success`, `warning`, `info`, and `destructive` variants.
15
+ - **Card**: Versatile containers with hover lift effects and rounded-xl corners.
16
+ - **Checkbox & Switch**: Accessible toggle components with fluid animations.
17
+ - **Select & Popover**: Modern dropdowns and floating panels with `rounded-xl` design.
18
+ - **Dialog**: Fully accessible modal system with smooth transitions.
19
+ - **Tabs**: Tabbed navigation with refined active states and shadows.
20
+
21
+ ### Advanced Components
22
+ - **Accordion**: Vertically stacked interactive headings.
23
+ - **Alert & Alert Dialog**: Important messages and confirmation modals.
24
+ - **Avatar**: Visual representation of users with fallback support.
25
+ - **Carousel**: Responsive image and content sliders.
26
+ - **Chart**: Data visualization components built on Recharts.
27
+ - **Command**: Fast, composable command menu/search.
28
+ - **Form**: Powerful form builder integrated with `react-hook-form` and `zod`.
29
+ - **Navigation Menu**: Complex header and side navigation patterns.
30
+ - **Sidebar**: Fully responsive and collapsible dashboard sidebar.
31
+ - **Table**: Data tables with support for headers, footers, and rows.
32
+ - **Toast & Sonner**: Action notifications and system alerts.
33
+
34
+ ### And many more...
35
+ *Breadcrumb, Calendar, Collapsible, Context Menu, Drawer, Hover Card, Label, Menubar, Pagination, Progress, Scroll Area, Separator, Sheet, Skeleton, Slider, Tooltip.*
36
+
7
37
  ## Overview
8
38
 
9
39
  CyberBlox UI Kit is a modular, themeable component library designed for building SaaS applications faster. It includes production-grade components for authentication flows, dashboards, notifications, error pages, and more.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyberbloxai/ui-kit",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Production-ready UI component library built on Radix UI + Tailwind CSS. Supports shadcn-style component installation.",
5
5
  "bin": "./src/cli.js",
6
6
  "repository": {
@@ -17,14 +17,15 @@ const ComponentsShowcase = () => {
17
17
  <div className="space-y-3">
18
18
  <h4 className="text-xs font-mono text-muted-foreground uppercase tracking-wider">Buttons</h4>
19
19
  <div className="flex flex-wrap gap-2">
20
- <Button className="bg-primary text-primary-foreground hover:bg-primary/90">Primary</Button>
21
- <Button variant="secondary" className="bg-secondary text-secondary-foreground">Secondary</Button>
22
- <Button variant="outline" className="border-border/60 hover:bg-muted/60">Outline</Button>
20
+ <Button variant="shiny">Shiny</Button>
21
+ <Button>Default</Button>
22
+ <Button variant="secondary">Secondary</Button>
23
+ <Button variant="outline">Outline</Button>
23
24
  <Button variant="destructive">Destructive</Button>
24
- <Button className="bg-primary text-primary-foreground" disabled>
25
+ <Button disabled>
25
26
  <Loader2 className="mr-2 h-4 w-4 animate-spin" /> Loading
26
27
  </Button>
27
- <Button variant="ghost" className="hover:bg-muted/60">Ghost</Button>
28
+ <Button variant="ghost">Ghost</Button>
28
29
  </div>
29
30
  </div>
30
31
 
@@ -32,8 +33,8 @@ const ComponentsShowcase = () => {
32
33
  <div className="space-y-3">
33
34
  <h4 className="text-xs font-mono text-muted-foreground uppercase tracking-wider">Inputs</h4>
34
35
  <div className="grid grid-cols-1 sm:grid-cols-2 gap-3">
35
- <Input placeholder="Default input" className="bg-muted/50 border-border/60" />
36
- <Input placeholder="Disabled input" disabled className="bg-muted/30 border-border/40" />
36
+ <Input placeholder="Modern rounded input" />
37
+ <Input placeholder="Disabled input" disabled />
37
38
  </div>
38
39
  </div>
39
40
 
@@ -41,11 +42,13 @@ const ComponentsShowcase = () => {
41
42
  <div className="space-y-3">
42
43
  <h4 className="text-xs font-mono text-muted-foreground uppercase tracking-wider">Badges</h4>
43
44
  <div className="flex flex-wrap gap-2">
44
- <Badge className="bg-primary/20 text-primary border-0">New</Badge>
45
- <Badge variant="secondary" className="bg-secondary">Beta</Badge>
45
+ <Badge>Default</Badge>
46
+ <Badge variant="secondary">Secondary</Badge>
47
+ <Badge variant="success">Success</Badge>
48
+ <Badge variant="warning">Warning</Badge>
49
+ <Badge variant="info">Info</Badge>
46
50
  <Badge variant="destructive">Critical</Badge>
47
- <Badge variant="outline" className="border-success/40 text-success">Stable</Badge>
48
- <Badge variant="outline" className="border-warning/40 text-warning">Pending</Badge>
51
+ <Badge variant="outline">Outline</Badge>
49
52
  </div>
50
53
  </div>
51
54
 
@@ -60,8 +60,8 @@ const Index = () => {
60
60
  <nav className="relative z-10 flex items-center justify-between max-w-6xl mx-auto px-6 py-5">
61
61
  <div className="flex items-center gap-2">
62
62
  <Package className="h-6 w-6 text-primary" />
63
- <span className="font-bold text-lg text-foreground">UIKit</span>
64
- <span className="text-xs font-mono text-primary bg-primary/10 px-2 py-0.5 rounded-full">v1.0</span>
63
+ <span className="font-bold text-lg text-foreground">CyberBlox UI</span>
64
+ <span className="text-xs font-mono text-primary bg-primary/10 px-2 py-0.5 rounded-full">v0.3.0</span>
65
65
  </div>
66
66
  <div className="flex items-center gap-3">
67
67
  <Link to="/components">
@@ -173,7 +173,7 @@ const Index = () => {
173
173
  {/* Features Grid */}
174
174
  <section className="max-w-6xl mx-auto px-6 pb-24">
175
175
  <div className="text-center mb-12">
176
- <h2 className="text-3xl font-bold text-foreground mb-3">Why UIKit?</h2>
176
+ <h2 className="text-3xl font-bold text-foreground mb-3">Why CyberBlox UI?</h2>
177
177
  <p className="text-muted-foreground">Everything you need to ship fast.</p>
178
178
  </div>
179
179
  <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">