@thetinycode/hash-ui 1.0.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.
package/dist/index.cjs CHANGED
@@ -30,10 +30,15 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
+ Accordion: () => Accordion,
34
+ AccordionContent: () => AccordionContent,
35
+ AccordionItem: () => AccordionItem,
36
+ AccordionTrigger: () => AccordionTrigger,
33
37
  Alert: () => Alert,
34
38
  AlertDescription: () => AlertDescription,
35
39
  AlertTitle: () => AlertTitle,
36
40
  Avatar: () => Avatar,
41
+ AvatarFallback: () => AvatarFallback,
37
42
  AvatarGroup: () => AvatarGroup,
38
43
  Badge: () => Badge,
39
44
  Box: () => Box,
@@ -43,12 +48,20 @@ __export(index_exports, {
43
48
  BreadcrumbPage: () => BreadcrumbPage,
44
49
  BreadcrumbSeparator: () => BreadcrumbSeparator,
45
50
  Button: () => Button,
51
+ ButtonGroup: () => ButtonGroup,
46
52
  Card: () => Card,
47
53
  CardContent: () => CardContent,
48
54
  CardDescription: () => CardDescription,
49
55
  CardFooter: () => CardFooter,
50
56
  CardHeader: () => CardHeader,
51
57
  CardTitle: () => CardTitle,
58
+ CommandPalette: () => CommandPalette,
59
+ CommandPaletteEmpty: () => CommandPaletteEmpty,
60
+ CommandPaletteGroup: () => CommandPaletteGroup,
61
+ CommandPaletteGroupLabel: () => CommandPaletteGroupLabel,
62
+ CommandPaletteInput: () => CommandPaletteInput,
63
+ CommandPaletteItem: () => CommandPaletteItem,
64
+ CommandPaletteList: () => CommandPaletteList,
52
65
  Container: () => Container,
53
66
  Divider: () => Divider,
54
67
  Drawer: () => Drawer,
@@ -71,6 +84,7 @@ __export(index_exports, {
71
84
  HeroContent: () => HeroContent,
72
85
  HeroDescription: () => HeroDescription,
73
86
  HeroTitle: () => HeroTitle,
87
+ IconButton: () => IconButton,
74
88
  Input: () => Input,
75
89
  Label: () => Label,
76
90
  Modal: () => Modal,
@@ -79,6 +93,14 @@ __export(index_exports, {
79
93
  ModalFooter: () => ModalFooter,
80
94
  ModalHeader: () => ModalHeader,
81
95
  ModalTitle: () => ModalTitle,
96
+ Navbar: () => Navbar,
97
+ NavbarActions: () => NavbarActions,
98
+ NavbarBrand: () => NavbarBrand,
99
+ NavbarNav: () => NavbarNav,
100
+ Notification: () => Notification,
101
+ NotificationActions: () => NotificationActions,
102
+ NotificationDescription: () => NotificationDescription,
103
+ NotificationTitle: () => NotificationTitle,
82
104
  Pagination: () => Pagination,
83
105
  PaginationItem: () => PaginationItem,
84
106
  PaginationLink: () => PaginationLink,
@@ -88,6 +110,15 @@ __export(index_exports, {
88
110
  SectionHeader: () => SectionHeader,
89
111
  SectionTitle: () => SectionTitle,
90
112
  Select: () => Select,
113
+ Sidebar: () => Sidebar,
114
+ SidebarContent: () => SidebarContent,
115
+ SidebarFooter: () => SidebarFooter,
116
+ SidebarGroup: () => SidebarGroup,
117
+ SidebarGroupLabel: () => SidebarGroupLabel,
118
+ SidebarHeader: () => SidebarHeader,
119
+ SidebarItem: () => SidebarItem,
120
+ Skeleton: () => Skeleton,
121
+ Spinner: () => Spinner,
91
122
  Stack: () => Stack,
92
123
  Stat: () => Stat,
93
124
  StatChange: () => StatChange,
@@ -158,12 +189,75 @@ function Button({
158
189
  );
159
190
  }
160
191
 
161
- // src/components/forms/input.tsx
162
- var React2 = __toESM(require("react"), 1);
192
+ // src/components/forms/button-group.tsx
193
+ var React2 = require("react");
163
194
  var import_jsx_runtime2 = require("react/jsx-runtime");
164
- var Input = React2.forwardRef(
195
+ function ButtonGroup({
196
+ className,
197
+ orientation = "horizontal",
198
+ ...props
199
+ }) {
200
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
201
+ "div",
202
+ {
203
+ className: cn(
204
+ "inline-flex",
205
+ orientation === "horizontal" ? "flex-row items-center" : "flex-col",
206
+ className
207
+ ),
208
+ role: "group",
209
+ ...props
210
+ }
211
+ );
212
+ }
213
+
214
+ // src/components/forms/icon-button.tsx
215
+ var React3 = require("react");
216
+ var import_class_variance_authority2 = require("class-variance-authority");
217
+ var import_jsx_runtime3 = require("react/jsx-runtime");
218
+ var iconButtonVariants = (0, import_class_variance_authority2.cva)(
219
+ "inline-flex items-center justify-center rounded-xl transition-colors focus:outline-none disabled:pointer-events-none disabled:opacity-50",
220
+ {
221
+ variants: {
222
+ variant: {
223
+ primary: "bg-blue-600 text-white hover:bg-blue-700",
224
+ secondary: "bg-gray-100 text-gray-900 hover:bg-gray-200",
225
+ outline: "border border-gray-300 bg-white text-gray-900 hover:bg-gray-50",
226
+ ghost: "text-gray-900 hover:bg-gray-100"
227
+ },
228
+ size: {
229
+ sm: "h-8 w-8",
230
+ md: "h-10 w-10",
231
+ lg: "h-12 w-12"
232
+ }
233
+ },
234
+ defaultVariants: {
235
+ variant: "ghost",
236
+ size: "md"
237
+ }
238
+ }
239
+ );
240
+ function IconButton({
241
+ className,
242
+ variant,
243
+ size,
244
+ ...props
245
+ }) {
246
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
247
+ "button",
248
+ {
249
+ className: cn(iconButtonVariants({ variant, size }), className),
250
+ ...props
251
+ }
252
+ );
253
+ }
254
+
255
+ // src/components/forms/input.tsx
256
+ var React4 = __toESM(require("react"), 1);
257
+ var import_jsx_runtime4 = require("react/jsx-runtime");
258
+ var Input = React4.forwardRef(
165
259
  ({ className, type = "text", ...props }, ref) => {
166
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
260
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
167
261
  "input",
168
262
  {
169
263
  ref,
@@ -180,10 +274,10 @@ var Input = React2.forwardRef(
180
274
  Input.displayName = "Input";
181
275
 
182
276
  // src/components/forms/label.tsx
183
- var React3 = require("react");
184
- var import_jsx_runtime3 = require("react/jsx-runtime");
277
+ var React5 = require("react");
278
+ var import_jsx_runtime5 = require("react/jsx-runtime");
185
279
  function Label({ className, ...props }) {
186
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
280
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
187
281
  "label",
188
282
  {
189
283
  className: cn(
@@ -196,11 +290,11 @@ function Label({ className, ...props }) {
196
290
  }
197
291
 
198
292
  // src/components/forms/select.tsx
199
- var React4 = __toESM(require("react"), 1);
200
- var import_jsx_runtime4 = require("react/jsx-runtime");
201
- var Select = React4.forwardRef(
293
+ var React6 = __toESM(require("react"), 1);
294
+ var import_jsx_runtime6 = require("react/jsx-runtime");
295
+ var Select = React6.forwardRef(
202
296
  ({ className, children, ...props }, ref) => {
203
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
297
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
204
298
  "select",
205
299
  {
206
300
  ref,
@@ -217,13 +311,13 @@ var Select = React4.forwardRef(
217
311
  Select.displayName = "Select";
218
312
 
219
313
  // src/components/forms/switch.tsx
220
- var React5 = __toESM(require("react"), 1);
221
- var import_jsx_runtime5 = require("react/jsx-runtime");
222
- var Switch = React5.forwardRef(
314
+ var React7 = __toESM(require("react"), 1);
315
+ var import_jsx_runtime7 = require("react/jsx-runtime");
316
+ var Switch = React7.forwardRef(
223
317
  ({ className, ...props }, ref) => {
224
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("label", { className: "inline-flex cursor-pointer items-center", children: [
225
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("input", { ref, type: "checkbox", className: "peer sr-only", ...props }),
226
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
318
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("label", { className: "inline-flex cursor-pointer items-center", children: [
319
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { ref, type: "checkbox", className: "peer sr-only", ...props }),
320
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
227
321
  "span",
228
322
  {
229
323
  className: cn(
@@ -238,11 +332,11 @@ var Switch = React5.forwardRef(
238
332
  Switch.displayName = "Switch";
239
333
 
240
334
  // src/components/forms/textarea.tsx
241
- var React6 = __toESM(require("react"), 1);
242
- var import_jsx_runtime6 = require("react/jsx-runtime");
243
- var Textarea = React6.forwardRef(
335
+ var React8 = __toESM(require("react"), 1);
336
+ var import_jsx_runtime8 = require("react/jsx-runtime");
337
+ var Textarea = React8.forwardRef(
244
338
  ({ className, ...props }, ref) => {
245
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
339
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
246
340
  "textarea",
247
341
  {
248
342
  ref,
@@ -258,10 +352,10 @@ var Textarea = React6.forwardRef(
258
352
  Textarea.displayName = "Textarea";
259
353
 
260
354
  // src/components/display/alert.tsx
261
- var React7 = require("react");
262
- var import_class_variance_authority2 = require("class-variance-authority");
263
- var import_jsx_runtime7 = require("react/jsx-runtime");
264
- var alertVariants = (0, import_class_variance_authority2.cva)("rounded-2xl border p-4", {
355
+ var React9 = require("react");
356
+ var import_class_variance_authority3 = require("class-variance-authority");
357
+ var import_jsx_runtime9 = require("react/jsx-runtime");
358
+ var alertVariants = (0, import_class_variance_authority3.cva)("rounded-2xl border p-4", {
265
359
  variants: {
266
360
  variant: {
267
361
  default: "border-gray-200 bg-white text-gray-900",
@@ -276,24 +370,24 @@ var alertVariants = (0, import_class_variance_authority2.cva)("rounded-2xl borde
276
370
  }
277
371
  });
278
372
  function Alert({ className, variant, ...props }) {
279
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { role: "alert", className: cn(alertVariants({ variant }), className), ...props });
373
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { role: "alert", className: cn(alertVariants({ variant }), className), ...props });
280
374
  }
281
375
  function AlertTitle({
282
376
  className,
283
377
  ...props
284
378
  }) {
285
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h5", { className: cn("mb-1 font-semibold", className), ...props });
379
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h5", { className: cn("mb-1 font-semibold", className), ...props });
286
380
  }
287
381
  function AlertDescription({
288
382
  className,
289
383
  ...props
290
384
  }) {
291
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: cn("text-sm opacity-90", className), ...props });
385
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { className: cn("text-sm opacity-90", className), ...props });
292
386
  }
293
387
 
294
388
  // src/components/display/avatar.tsx
295
- var React8 = require("react");
296
- var import_jsx_runtime8 = require("react/jsx-runtime");
389
+ var React10 = require("react");
390
+ var import_jsx_runtime10 = require("react/jsx-runtime");
297
391
  function Avatar({
298
392
  className,
299
393
  src,
@@ -301,7 +395,7 @@ function Avatar({
301
395
  fallback,
302
396
  ...props
303
397
  }) {
304
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
398
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
305
399
  "div",
306
400
  {
307
401
  className: cn(
@@ -309,22 +403,35 @@ function Avatar({
309
403
  className
310
404
  ),
311
405
  ...props,
312
- children: src ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("img", { src, alt: alt ?? "Avatar", className: "h-full w-full object-cover" }) : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: fallback ?? "UI" })
406
+ children: src ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
407
+ "img",
408
+ {
409
+ src,
410
+ alt: alt ?? "Avatar",
411
+ className: "h-full w-full object-cover"
412
+ }
413
+ ) : /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(AvatarFallback, { children: fallback ?? "UI" })
313
414
  }
314
415
  );
315
416
  }
417
+ function AvatarFallback({
418
+ className,
419
+ ...props
420
+ }) {
421
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: cn("uppercase", className), ...props });
422
+ }
316
423
  function AvatarGroup({
317
424
  className,
318
425
  ...props
319
426
  }) {
320
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: cn("flex -space-x-3", className), ...props });
427
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: cn("flex -space-x-3", className), ...props });
321
428
  }
322
429
 
323
430
  // src/components/display/badge.tsx
324
- var React9 = require("react");
325
- var import_class_variance_authority3 = require("class-variance-authority");
326
- var import_jsx_runtime9 = require("react/jsx-runtime");
327
- var badgeVariants = (0, import_class_variance_authority3.cva)(
431
+ var React11 = require("react");
432
+ var import_class_variance_authority4 = require("class-variance-authority");
433
+ var import_jsx_runtime11 = require("react/jsx-runtime");
434
+ var badgeVariants = (0, import_class_variance_authority4.cva)(
328
435
  "inline-flex items-center rounded-full px-2.5 py-1 text-xs font-medium",
329
436
  {
330
437
  variants: {
@@ -343,17 +450,17 @@ var badgeVariants = (0, import_class_variance_authority3.cva)(
343
450
  }
344
451
  );
345
452
  function Badge({ className, variant, ...props }) {
346
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: cn(badgeVariants({ variant }), className), ...props });
453
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: cn(badgeVariants({ variant }), className), ...props });
347
454
  }
348
455
 
349
456
  // src/components/display/card.tsx
350
- var React10 = require("react");
351
- var import_jsx_runtime10 = require("react/jsx-runtime");
457
+ var React12 = require("react");
458
+ var import_jsx_runtime12 = require("react/jsx-runtime");
352
459
  function Card({
353
460
  className,
354
461
  ...props
355
462
  }) {
356
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
463
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
357
464
  "div",
358
465
  {
359
466
  className: cn("rounded-2xl border border-gray-200 bg-white shadow-sm", className),
@@ -365,41 +472,41 @@ function CardHeader({
365
472
  className,
366
473
  ...props
367
474
  }) {
368
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: cn("p-6 pb-4", className), ...props });
475
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: cn("p-6 pb-4", className), ...props });
369
476
  }
370
477
  function CardTitle({
371
478
  className,
372
479
  ...props
373
480
  }) {
374
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: cn("text-lg font-semibold text-gray-900", className), ...props });
481
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { className: cn("text-lg font-semibold text-gray-900", className), ...props });
375
482
  }
376
483
  function CardDescription({
377
484
  className,
378
485
  ...props
379
486
  }) {
380
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: cn("text-sm text-gray-500", className), ...props });
487
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { className: cn("text-sm text-gray-500", className), ...props });
381
488
  }
382
489
  function CardContent({
383
490
  className,
384
491
  ...props
385
492
  }) {
386
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: cn("p-6 pt-0", className), ...props });
493
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: cn("p-6 pt-0", className), ...props });
387
494
  }
388
495
  function CardFooter({
389
496
  className,
390
497
  ...props
391
498
  }) {
392
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: cn("flex items-center p-6 pt-4", className), ...props });
499
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: cn("flex items-center p-6 pt-4", className), ...props });
393
500
  }
394
501
 
395
502
  // src/components/display/empty-state.tsx
396
- var React11 = require("react");
397
- var import_jsx_runtime11 = require("react/jsx-runtime");
503
+ var React13 = require("react");
504
+ var import_jsx_runtime13 = require("react/jsx-runtime");
398
505
  function EmptyState({
399
506
  className,
400
507
  ...props
401
508
  }) {
402
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
509
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
403
510
  "div",
404
511
  {
405
512
  className: cn(
@@ -414,29 +521,124 @@ function EmptyStateTitle({
414
521
  className,
415
522
  ...props
416
523
  }) {
417
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: cn("mt-4 text-lg font-semibold text-gray-900", className), ...props });
524
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { className: cn("mt-4 text-lg font-semibold text-gray-900", className), ...props });
418
525
  }
419
526
  function EmptyStateDescription({
420
527
  className,
421
528
  ...props
422
529
  }) {
423
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: cn("mt-2 max-w-md text-sm text-gray-500", className), ...props });
530
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { className: cn("mt-2 max-w-md text-sm text-gray-500", className), ...props });
424
531
  }
425
532
  function EmptyStateActions({
426
533
  className,
427
534
  ...props
428
535
  }) {
429
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: cn("mt-6 flex items-center gap-3", className), ...props });
536
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: cn("mt-6 flex items-center gap-3", className), ...props });
537
+ }
538
+
539
+ // src/components/display/notification.tsx
540
+ var React14 = require("react");
541
+ var import_class_variance_authority5 = require("class-variance-authority");
542
+ var import_jsx_runtime14 = require("react/jsx-runtime");
543
+ var notificationVariants = (0, import_class_variance_authority5.cva)(
544
+ "rounded-2xl border p-4 shadow-sm",
545
+ {
546
+ variants: {
547
+ variant: {
548
+ default: "border-gray-200 bg-white text-gray-900",
549
+ success: "border-green-200 bg-green-50 text-green-800",
550
+ warning: "border-yellow-200 bg-yellow-50 text-yellow-800",
551
+ danger: "border-red-200 bg-red-50 text-red-800",
552
+ info: "border-blue-200 bg-blue-50 text-blue-800"
553
+ }
554
+ },
555
+ defaultVariants: {
556
+ variant: "default"
557
+ }
558
+ }
559
+ );
560
+ function Notification({
561
+ className,
562
+ variant,
563
+ ...props
564
+ }) {
565
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
566
+ "div",
567
+ {
568
+ className: cn(notificationVariants({ variant }), className),
569
+ role: "status",
570
+ ...props
571
+ }
572
+ );
573
+ }
574
+ function NotificationTitle({
575
+ className,
576
+ ...props
577
+ }) {
578
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { className: cn("font-semibold", className), ...props });
579
+ }
580
+ function NotificationDescription({
581
+ className,
582
+ ...props
583
+ }) {
584
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { className: cn("mt-1 text-sm opacity-90", className), ...props });
585
+ }
586
+ function NotificationActions({
587
+ className,
588
+ ...props
589
+ }) {
590
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: cn("mt-4 flex items-center gap-2", className), ...props });
591
+ }
592
+
593
+ // src/components/display/skeleton.tsx
594
+ var React15 = require("react");
595
+ var import_jsx_runtime15 = require("react/jsx-runtime");
596
+ function Skeleton({ className, ...props }) {
597
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
598
+ "div",
599
+ {
600
+ className: cn("animate-pulse rounded-xl bg-gray-200", className),
601
+ ...props
602
+ }
603
+ );
604
+ }
605
+
606
+ // src/components/display/spinner.tsx
607
+ var React16 = require("react");
608
+ var import_jsx_runtime16 = require("react/jsx-runtime");
609
+ function Spinner({
610
+ className,
611
+ size = "md",
612
+ ...props
613
+ }) {
614
+ const sizes = {
615
+ sm: "h-4 w-4 border-2",
616
+ md: "h-6 w-6 border-2",
617
+ lg: "h-8 w-8 border-[3px]"
618
+ };
619
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
620
+ "div",
621
+ {
622
+ className: cn(
623
+ "inline-block animate-spin rounded-full border-gray-300 border-t-gray-900",
624
+ sizes[size],
625
+ className
626
+ ),
627
+ "aria-label": "Loading",
628
+ role: "status",
629
+ ...props
630
+ }
631
+ );
430
632
  }
431
633
 
432
634
  // src/components/display/stat.tsx
433
- var React12 = require("react");
434
- var import_jsx_runtime12 = require("react/jsx-runtime");
635
+ var React17 = require("react");
636
+ var import_jsx_runtime17 = require("react/jsx-runtime");
435
637
  function Stat({
436
638
  className,
437
639
  ...props
438
640
  }) {
439
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
641
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
440
642
  "div",
441
643
  {
442
644
  className: cn("rounded-2xl border border-gray-200 bg-white p-6 shadow-sm", className),
@@ -448,34 +650,34 @@ function StatLabel({
448
650
  className,
449
651
  ...props
450
652
  }) {
451
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { className: cn("text-sm text-gray-500", className), ...props });
653
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: cn("text-sm text-gray-500", className), ...props });
452
654
  }
453
655
  function StatValue({
454
656
  className,
455
657
  ...props
456
658
  }) {
457
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { className: cn("mt-2 text-3xl font-semibold text-gray-900", className), ...props });
659
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: cn("mt-2 text-3xl font-semibold text-gray-900", className), ...props });
458
660
  }
459
661
  function StatChange({
460
662
  className,
461
663
  ...props
462
664
  }) {
463
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { className: cn("mt-2 text-sm font-medium text-gray-600", className), ...props });
665
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: cn("mt-2 text-sm font-medium text-gray-600", className), ...props });
464
666
  }
465
667
 
466
668
  // src/components/primitives/box.tsx
467
- var React13 = require("react");
468
- var import_jsx_runtime13 = require("react/jsx-runtime");
669
+ var React18 = require("react");
670
+ var import_jsx_runtime18 = require("react/jsx-runtime");
469
671
  function Box({
470
672
  className,
471
673
  ...props
472
674
  }) {
473
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: cn(className), ...props });
675
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: cn(className), ...props });
474
676
  }
475
677
 
476
678
  // src/components/primitives/container.tsx
477
- var React14 = require("react");
478
- var import_jsx_runtime14 = require("react/jsx-runtime");
679
+ var React19 = require("react");
680
+ var import_jsx_runtime19 = require("react/jsx-runtime");
479
681
  function Container({
480
682
  className,
481
683
  size = "lg",
@@ -487,7 +689,7 @@ function Container({
487
689
  lg: "max-w-7xl",
488
690
  full: "max-w-none"
489
691
  };
490
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
692
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
491
693
  "div",
492
694
  {
493
695
  className: cn("mx-auto w-full px-4 sm:px-6 lg:px-8", sizes[size], className),
@@ -497,22 +699,22 @@ function Container({
497
699
  }
498
700
 
499
701
  // src/components/primitives/divider.tsx
500
- var React15 = require("react");
501
- var import_jsx_runtime15 = require("react/jsx-runtime");
702
+ var React20 = require("react");
703
+ var import_jsx_runtime20 = require("react/jsx-runtime");
502
704
  function Divider({
503
705
  className,
504
706
  orientation = "horizontal",
505
707
  ...props
506
708
  }) {
507
709
  if (orientation === "vertical") {
508
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: cn("h-full w-px bg-gray-200", className), ...props });
710
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn("h-full w-px bg-gray-200", className), ...props });
509
711
  }
510
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("hr", { className: cn("w-full border-0 border-t border-gray-200", className), ...props });
712
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("hr", { className: cn("w-full border-0 border-t border-gray-200", className), ...props });
511
713
  }
512
714
 
513
715
  // src/components/primitives/grid.tsx
514
- var React16 = require("react");
515
- var import_jsx_runtime16 = require("react/jsx-runtime");
716
+ var React21 = require("react");
717
+ var import_jsx_runtime21 = require("react/jsx-runtime");
516
718
  function Grid({
517
719
  className,
518
720
  cols = 3,
@@ -535,7 +737,7 @@ function Grid({
535
737
  lg: "gap-6",
536
738
  xl: "gap-8"
537
739
  };
538
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
740
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
539
741
  "div",
540
742
  {
541
743
  className: cn("grid", colsClasses[cols], gapClasses[gap], className),
@@ -545,8 +747,8 @@ function Grid({
545
747
  }
546
748
 
547
749
  // src/components/primitives/section.tsx
548
- var React17 = require("react");
549
- var import_jsx_runtime17 = require("react/jsx-runtime");
750
+ var React22 = require("react");
751
+ var import_jsx_runtime22 = require("react/jsx-runtime");
550
752
  function Section({
551
753
  className,
552
754
  spacing = "lg",
@@ -559,19 +761,19 @@ function Section({
559
761
  lg: "py-16",
560
762
  xl: "py-24"
561
763
  };
562
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Comp, { className: cn(spacingClasses[spacing], className), ...props });
764
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Comp, { className: cn(spacingClasses[spacing], className), ...props });
563
765
  }
564
766
  function SectionHeader({
565
767
  className,
566
768
  ...props
567
769
  }) {
568
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: cn("mb-10 space-y-3", className), ...props });
770
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: cn("mb-10 space-y-3", className), ...props });
569
771
  }
570
772
  function SectionTitle({
571
773
  className,
572
774
  ...props
573
775
  }) {
574
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
776
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
575
777
  "h2",
576
778
  {
577
779
  className: cn("text-3xl font-semibold tracking-tight text-gray-900", className),
@@ -583,12 +785,12 @@ function SectionDescription({
583
785
  className,
584
786
  ...props
585
787
  }) {
586
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: cn("max-w-2xl text-sm text-gray-500", className), ...props });
788
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("p", { className: cn("max-w-2xl text-sm text-gray-500", className), ...props });
587
789
  }
588
790
 
589
791
  // src/components/primitives/stack.tsx
590
- var React18 = require("react");
591
- var import_jsx_runtime18 = require("react/jsx-runtime");
792
+ var React23 = require("react");
793
+ var import_jsx_runtime23 = require("react/jsx-runtime");
592
794
  function Stack({
593
795
  className,
594
796
  direction = "col",
@@ -606,7 +808,7 @@ function Stack({
606
808
  lg: "gap-6",
607
809
  xl: "gap-8"
608
810
  };
609
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
811
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
610
812
  "div",
611
813
  {
612
814
  className: cn(directionClasses[direction], gapClasses[gap], className),
@@ -615,49 +817,172 @@ function Stack({
615
817
  );
616
818
  }
617
819
 
820
+ // src/components/navigation/accordion.tsx
821
+ var React24 = require("react");
822
+ var import_jsx_runtime24 = require("react/jsx-runtime");
823
+ function Accordion({
824
+ className,
825
+ ...props
826
+ }) {
827
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: cn("w-full space-y-2", className), ...props });
828
+ }
829
+ function AccordionItem({
830
+ className,
831
+ ...props
832
+ }) {
833
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
834
+ "div",
835
+ {
836
+ className: cn("overflow-hidden rounded-2xl border border-gray-200", className),
837
+ ...props
838
+ }
839
+ );
840
+ }
841
+ function AccordionTrigger({
842
+ className,
843
+ ...props
844
+ }) {
845
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
846
+ "button",
847
+ {
848
+ className: cn(
849
+ "flex w-full items-center justify-between bg-white px-4 py-3 text-left text-sm font-medium text-gray-900 transition-colors hover:bg-gray-50",
850
+ className
851
+ ),
852
+ ...props
853
+ }
854
+ );
855
+ }
856
+ function AccordionContent({
857
+ className,
858
+ open = false,
859
+ ...props
860
+ }) {
861
+ if (!open) return null;
862
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: cn("border-t border-gray-200 p-4 text-sm text-gray-600", className), ...props });
863
+ }
864
+
618
865
  // src/components/navigation/breadcrumb.tsx
619
- var React19 = require("react");
620
- var import_jsx_runtime19 = require("react/jsx-runtime");
866
+ var React25 = require("react");
867
+ var import_jsx_runtime25 = require("react/jsx-runtime");
621
868
  function Breadcrumb({
622
869
  className,
623
870
  ...props
624
871
  }) {
625
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("nav", { "aria-label": "Breadcrumb", className: cn("text-sm text-gray-500", className), ...props });
872
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("nav", { "aria-label": "Breadcrumb", className: cn("text-sm text-gray-500", className), ...props });
626
873
  }
627
874
  function BreadcrumbList({
628
875
  className,
629
876
  ...props
630
877
  }) {
631
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("ol", { className: cn("flex flex-wrap items-center gap-2", className), ...props });
878
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("ol", { className: cn("flex flex-wrap items-center gap-2", className), ...props });
632
879
  }
633
880
  function BreadcrumbItem({
634
881
  className,
635
882
  ...props
636
883
  }) {
637
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("li", { className: cn("inline-flex items-center gap-2", className), ...props });
884
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", { className: cn("inline-flex items-center gap-2", className), ...props });
638
885
  }
639
886
  function BreadcrumbSeparator({
640
887
  className,
641
888
  children = "/",
642
889
  ...props
643
890
  }) {
644
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: cn("text-gray-400", className), ...props, children });
891
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: cn("text-gray-400", className), ...props, children });
645
892
  }
646
893
  function BreadcrumbPage({
647
894
  className,
648
895
  ...props
649
896
  }) {
650
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: cn("font-medium text-gray-900", className), ...props });
897
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: cn("font-medium text-gray-900", className), ...props });
898
+ }
899
+
900
+ // src/components/navigation/command-palette.tsx
901
+ var React26 = require("react");
902
+ var import_jsx_runtime26 = require("react/jsx-runtime");
903
+ function CommandPalette({
904
+ className,
905
+ open = true,
906
+ ...props
907
+ }) {
908
+ if (!open) return null;
909
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "fixed inset-0 z-50 flex items-start justify-center bg-black/40 p-4 pt-24", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
910
+ "div",
911
+ {
912
+ className: cn(
913
+ "w-full max-w-2xl overflow-hidden rounded-2xl border border-gray-200 bg-white shadow-xl",
914
+ className
915
+ ),
916
+ role: "dialog",
917
+ "aria-modal": "true",
918
+ ...props
919
+ }
920
+ ) });
921
+ }
922
+ function CommandPaletteInput({
923
+ className,
924
+ ...props
925
+ }) {
926
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
927
+ "input",
928
+ {
929
+ className: cn(
930
+ "h-12 w-full border-b border-gray-200 bg-transparent px-4 text-sm text-gray-900 outline-none placeholder:text-gray-400",
931
+ className
932
+ ),
933
+ placeholder: "Search commands...",
934
+ ...props
935
+ }
936
+ );
937
+ }
938
+ function CommandPaletteList({
939
+ className,
940
+ ...props
941
+ }) {
942
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: cn("max-h-80 overflow-y-auto p-2", className), ...props });
943
+ }
944
+ function CommandPaletteGroup({
945
+ className,
946
+ ...props
947
+ }) {
948
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: cn("mb-2", className), ...props });
949
+ }
950
+ function CommandPaletteGroupLabel({
951
+ className,
952
+ ...props
953
+ }) {
954
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("p", { className: cn("px-2 py-1 text-xs font-medium uppercase tracking-wide text-gray-500", className), ...props });
955
+ }
956
+ function CommandPaletteItem({
957
+ className,
958
+ ...props
959
+ }) {
960
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
961
+ "button",
962
+ {
963
+ className: cn(
964
+ "flex w-full items-center justify-between rounded-xl px-3 py-2 text-left text-sm text-gray-700 transition-colors hover:bg-gray-100 hover:text-gray-900",
965
+ className
966
+ ),
967
+ ...props
968
+ }
969
+ );
970
+ }
971
+ function CommandPaletteEmpty({
972
+ className,
973
+ ...props
974
+ }) {
975
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: cn("p-6 text-center text-sm text-gray-500", className), ...props });
651
976
  }
652
977
 
653
978
  // src/components/navigation/header.tsx
654
- var React20 = require("react");
655
- var import_jsx_runtime20 = require("react/jsx-runtime");
979
+ var React27 = require("react");
980
+ var import_jsx_runtime27 = require("react/jsx-runtime");
656
981
  function Header({
657
982
  className,
658
983
  ...props
659
984
  }) {
660
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
985
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
661
986
  "header",
662
987
  {
663
988
  className: cn("w-full border-b border-gray-200 bg-white", className),
@@ -669,7 +994,7 @@ function HeaderInner({
669
994
  className,
670
995
  ...props
671
996
  }) {
672
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
997
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
673
998
  "div",
674
999
  {
675
1000
  className: cn(
@@ -684,48 +1009,85 @@ function HeaderBrand({
684
1009
  className,
685
1010
  ...props
686
1011
  }) {
687
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn("flex items-center gap-3 font-semibold text-gray-900", className), ...props });
1012
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: cn("flex items-center gap-3 font-semibold text-gray-900", className), ...props });
688
1013
  }
689
1014
  function HeaderNav({
690
1015
  className,
691
1016
  ...props
692
1017
  }) {
693
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("nav", { className: cn("hidden items-center gap-6 md:flex", className), ...props });
1018
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("nav", { className: cn("hidden items-center gap-6 md:flex", className), ...props });
694
1019
  }
695
1020
  function HeaderActions({
696
1021
  className,
697
1022
  ...props
698
1023
  }) {
699
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: cn("flex items-center gap-3", className), ...props });
1024
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: cn("flex items-center gap-3", className), ...props });
1025
+ }
1026
+
1027
+ // src/components/navigation/navbar.tsx
1028
+ var React28 = require("react");
1029
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1030
+ function Navbar({
1031
+ className,
1032
+ ...props
1033
+ }) {
1034
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1035
+ "nav",
1036
+ {
1037
+ className: cn(
1038
+ "flex items-center justify-between border-b border-gray-200 bg-white px-4 py-3",
1039
+ className
1040
+ ),
1041
+ ...props
1042
+ }
1043
+ );
1044
+ }
1045
+ function NavbarBrand({
1046
+ className,
1047
+ ...props
1048
+ }) {
1049
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: cn("font-semibold text-gray-900", className), ...props });
1050
+ }
1051
+ function NavbarNav({
1052
+ className,
1053
+ ...props
1054
+ }) {
1055
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: cn("hidden items-center gap-6 md:flex", className), ...props });
1056
+ }
1057
+ function NavbarActions({
1058
+ className,
1059
+ ...props
1060
+ }) {
1061
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: cn("flex items-center gap-3", className), ...props });
700
1062
  }
701
1063
 
702
1064
  // src/components/navigation/pagination.tsx
703
- var React21 = require("react");
704
- var import_jsx_runtime21 = require("react/jsx-runtime");
1065
+ var React29 = require("react");
1066
+ var import_jsx_runtime29 = require("react/jsx-runtime");
705
1067
  function Pagination({
706
1068
  className,
707
1069
  ...props
708
1070
  }) {
709
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("nav", { "aria-label": "Pagination", className: cn("flex items-center justify-center", className), ...props });
1071
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("nav", { "aria-label": "Pagination", className: cn("flex items-center justify-center", className), ...props });
710
1072
  }
711
1073
  function PaginationList({
712
1074
  className,
713
1075
  ...props
714
1076
  }) {
715
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("ul", { className: cn("flex items-center gap-2", className), ...props });
1077
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("ul", { className: cn("flex items-center gap-2", className), ...props });
716
1078
  }
717
1079
  function PaginationItem({
718
1080
  className,
719
1081
  ...props
720
1082
  }) {
721
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("li", { className: cn(className), ...props });
1083
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("li", { className: cn(className), ...props });
722
1084
  }
723
1085
  function PaginationLink({
724
1086
  className,
725
1087
  isActive,
726
1088
  ...props
727
1089
  }) {
728
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1090
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
729
1091
  "a",
730
1092
  {
731
1093
  className: cn(
@@ -738,20 +1100,84 @@ function PaginationLink({
738
1100
  );
739
1101
  }
740
1102
 
1103
+ // src/components/navigation/sidebar.tsx
1104
+ var React30 = require("react");
1105
+ var import_jsx_runtime30 = require("react/jsx-runtime");
1106
+ function Sidebar({
1107
+ className,
1108
+ ...props
1109
+ }) {
1110
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1111
+ "aside",
1112
+ {
1113
+ className: cn(
1114
+ "flex h-full w-72 flex-col border-r border-gray-200 bg-white",
1115
+ className
1116
+ ),
1117
+ ...props
1118
+ }
1119
+ );
1120
+ }
1121
+ function SidebarHeader({
1122
+ className,
1123
+ ...props
1124
+ }) {
1125
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: cn("border-b border-gray-200 p-4", className), ...props });
1126
+ }
1127
+ function SidebarContent({
1128
+ className,
1129
+ ...props
1130
+ }) {
1131
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: cn("flex-1 p-4", className), ...props });
1132
+ }
1133
+ function SidebarFooter({
1134
+ className,
1135
+ ...props
1136
+ }) {
1137
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: cn("border-t border-gray-200 p-4", className), ...props });
1138
+ }
1139
+ function SidebarGroup({
1140
+ className,
1141
+ ...props
1142
+ }) {
1143
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: cn("mb-6 space-y-2", className), ...props });
1144
+ }
1145
+ function SidebarGroupLabel({
1146
+ className,
1147
+ ...props
1148
+ }) {
1149
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("p", { className: cn("text-xs font-medium uppercase tracking-wide text-gray-500", className), ...props });
1150
+ }
1151
+ function SidebarItem({
1152
+ className,
1153
+ ...props
1154
+ }) {
1155
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1156
+ "a",
1157
+ {
1158
+ className: cn(
1159
+ "flex items-center rounded-xl px-3 py-2 text-sm text-gray-700 transition-colors hover:bg-gray-100 hover:text-gray-900",
1160
+ className
1161
+ ),
1162
+ ...props
1163
+ }
1164
+ );
1165
+ }
1166
+
741
1167
  // src/components/navigation/tabs.tsx
742
- var React22 = require("react");
743
- var import_jsx_runtime22 = require("react/jsx-runtime");
1168
+ var React31 = require("react");
1169
+ var import_jsx_runtime31 = require("react/jsx-runtime");
744
1170
  function Tabs({
745
1171
  className,
746
1172
  ...props
747
1173
  }) {
748
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: cn("w-full", className), ...props });
1174
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: cn("w-full", className), ...props });
749
1175
  }
750
1176
  function TabsList({
751
1177
  className,
752
1178
  ...props
753
1179
  }) {
754
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1180
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
755
1181
  "div",
756
1182
  {
757
1183
  className: cn(
@@ -767,7 +1193,7 @@ function TabsTrigger({
767
1193
  active,
768
1194
  ...props
769
1195
  }) {
770
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1196
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
771
1197
  "button",
772
1198
  {
773
1199
  className: cn(
@@ -783,12 +1209,12 @@ function TabsContent({
783
1209
  className,
784
1210
  ...props
785
1211
  }) {
786
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: cn("mt-4", className), ...props });
1212
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: cn("mt-4", className), ...props });
787
1213
  }
788
1214
 
789
1215
  // src/components/overlays/drawer.tsx
790
- var React23 = require("react");
791
- var import_jsx_runtime23 = require("react/jsx-runtime");
1216
+ var React32 = require("react");
1217
+ var import_jsx_runtime32 = require("react/jsx-runtime");
792
1218
  function Drawer({
793
1219
  className,
794
1220
  open = true,
@@ -796,7 +1222,7 @@ function Drawer({
796
1222
  ...props
797
1223
  }) {
798
1224
  if (!open) return null;
799
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "fixed inset-0 z-50 bg-black/40", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1225
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "fixed inset-0 z-50 bg-black/40", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
800
1226
  "div",
801
1227
  {
802
1228
  className: cn(
@@ -810,19 +1236,19 @@ function Drawer({
810
1236
  }
811
1237
 
812
1238
  // src/components/overlays/dropdown.tsx
813
- var React24 = require("react");
814
- var import_jsx_runtime24 = require("react/jsx-runtime");
1239
+ var React33 = require("react");
1240
+ var import_jsx_runtime33 = require("react/jsx-runtime");
815
1241
  function Dropdown({
816
1242
  className,
817
1243
  ...props
818
1244
  }) {
819
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: cn("relative inline-block text-left", className), ...props });
1245
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: cn("relative inline-block text-left", className), ...props });
820
1246
  }
821
1247
  function DropdownMenu({
822
1248
  className,
823
1249
  ...props
824
1250
  }) {
825
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1251
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
826
1252
  "div",
827
1253
  {
828
1254
  className: cn(
@@ -837,7 +1263,7 @@ function DropdownItem({
837
1263
  className,
838
1264
  ...props
839
1265
  }) {
840
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1266
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
841
1267
  "button",
842
1268
  {
843
1269
  className: cn(
@@ -850,21 +1276,21 @@ function DropdownItem({
850
1276
  }
851
1277
 
852
1278
  // src/components/overlays/modal.tsx
853
- var React25 = require("react");
854
- var import_jsx_runtime25 = require("react/jsx-runtime");
1279
+ var React34 = require("react");
1280
+ var import_jsx_runtime34 = require("react/jsx-runtime");
855
1281
  function Modal({
856
1282
  className,
857
1283
  open = true,
858
1284
  ...props
859
1285
  }) {
860
1286
  if (!open) return null;
861
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1287
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
862
1288
  "div",
863
1289
  {
864
1290
  className: "fixed inset-0 z-50 flex items-center justify-center bg-black/40 p-4",
865
1291
  "aria-modal": "true",
866
1292
  role: "dialog",
867
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1293
+ children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
868
1294
  "div",
869
1295
  {
870
1296
  className: cn(
@@ -881,38 +1307,38 @@ function ModalHeader({
881
1307
  className,
882
1308
  ...props
883
1309
  }) {
884
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: cn("border-b border-gray-200 p-6", className), ...props });
1310
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: cn("border-b border-gray-200 p-6", className), ...props });
885
1311
  }
886
1312
  function ModalTitle({
887
1313
  className,
888
1314
  ...props
889
1315
  }) {
890
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("h2", { className: cn("text-lg font-semibold text-gray-900", className), ...props });
1316
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("h2", { className: cn("text-lg font-semibold text-gray-900", className), ...props });
891
1317
  }
892
1318
  function ModalDescription({
893
1319
  className,
894
1320
  ...props
895
1321
  }) {
896
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("p", { className: cn("mt-1 text-sm text-gray-500", className), ...props });
1322
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("p", { className: cn("mt-1 text-sm text-gray-500", className), ...props });
897
1323
  }
898
1324
  function ModalContent({
899
1325
  className,
900
1326
  ...props
901
1327
  }) {
902
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: cn("p-6", className), ...props });
1328
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: cn("p-6", className), ...props });
903
1329
  }
904
1330
  function ModalFooter({
905
1331
  className,
906
1332
  ...props
907
1333
  }) {
908
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: cn("flex items-center justify-end gap-3 border-t border-gray-200 p-6", className), ...props });
1334
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: cn("flex items-center justify-end gap-3 border-t border-gray-200 p-6", className), ...props });
909
1335
  }
910
1336
 
911
1337
  // src/components/overlays/toast.tsx
912
- var React26 = require("react");
913
- var import_class_variance_authority4 = require("class-variance-authority");
914
- var import_jsx_runtime26 = require("react/jsx-runtime");
915
- var toastVariants = (0, import_class_variance_authority4.cva)(
1338
+ var React35 = require("react");
1339
+ var import_class_variance_authority6 = require("class-variance-authority");
1340
+ var import_jsx_runtime35 = require("react/jsx-runtime");
1341
+ var toastVariants = (0, import_class_variance_authority6.cva)(
916
1342
  "w-full max-w-sm rounded-2xl border p-4 shadow-lg",
917
1343
  {
918
1344
  variants: {
@@ -930,25 +1356,25 @@ var toastVariants = (0, import_class_variance_authority4.cva)(
930
1356
  }
931
1357
  );
932
1358
  function Toast({ className, variant, ...props }) {
933
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: cn(toastVariants({ variant }), className), ...props });
1359
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: cn(toastVariants({ variant }), className), ...props });
934
1360
  }
935
1361
  function ToastTitle({
936
1362
  className,
937
1363
  ...props
938
1364
  }) {
939
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("h4", { className: cn("font-semibold", className), ...props });
1365
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("h4", { className: cn("font-semibold", className), ...props });
940
1366
  }
941
1367
  function ToastDescription({
942
1368
  className,
943
1369
  ...props
944
1370
  }) {
945
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("p", { className: cn("mt-1 text-sm opacity-90", className), ...props });
1371
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("p", { className: cn("mt-1 text-sm opacity-90", className), ...props });
946
1372
  }
947
1373
  function ToastViewport({
948
1374
  className,
949
1375
  ...props
950
1376
  }) {
951
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1377
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
952
1378
  "div",
953
1379
  {
954
1380
  className: cn("fixed right-4 top-4 z-50 flex flex-col gap-3", className),
@@ -958,13 +1384,13 @@ function ToastViewport({
958
1384
  }
959
1385
 
960
1386
  // src/components/overlays/tooltip.tsx
961
- var React27 = require("react");
962
- var import_jsx_runtime27 = require("react/jsx-runtime");
1387
+ var React36 = require("react");
1388
+ var import_jsx_runtime36 = require("react/jsx-runtime");
963
1389
  function Tooltip({
964
1390
  className,
965
1391
  ...props
966
1392
  }) {
967
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1393
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
968
1394
  "div",
969
1395
  {
970
1396
  role: "tooltip",
@@ -978,13 +1404,13 @@ function Tooltip({
978
1404
  }
979
1405
 
980
1406
  // src/components/marketing/hero.tsx
981
- var React28 = require("react");
982
- var import_jsx_runtime28 = require("react/jsx-runtime");
1407
+ var React37 = require("react");
1408
+ var import_jsx_runtime37 = require("react/jsx-runtime");
983
1409
  function Hero({
984
1410
  className,
985
1411
  ...props
986
1412
  }) {
987
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1413
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
988
1414
  "section",
989
1415
  {
990
1416
  className: cn("relative overflow-hidden py-20 sm:py-28", className),
@@ -996,13 +1422,13 @@ function HeroContent({
996
1422
  className,
997
1423
  ...props
998
1424
  }) {
999
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: cn("mx-auto max-w-3xl text-center", className), ...props });
1425
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: cn("mx-auto max-w-3xl text-center", className), ...props });
1000
1426
  }
1001
1427
  function HeroBadge({
1002
1428
  className,
1003
1429
  ...props
1004
1430
  }) {
1005
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1431
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1006
1432
  "div",
1007
1433
  {
1008
1434
  className: cn(
@@ -1017,26 +1443,31 @@ function HeroTitle({
1017
1443
  className,
1018
1444
  ...props
1019
1445
  }) {
1020
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("h1", { className: cn("text-4xl font-semibold tracking-tight text-gray-900 sm:text-6xl", className), ...props });
1446
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("h1", { className: cn("text-4xl font-semibold tracking-tight text-gray-900 sm:text-6xl", className), ...props });
1021
1447
  }
1022
1448
  function HeroDescription({
1023
1449
  className,
1024
1450
  ...props
1025
1451
  }) {
1026
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("p", { className: cn("mx-auto mt-6 max-w-2xl text-base text-gray-500 sm:text-lg", className), ...props });
1452
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: cn("mx-auto mt-6 max-w-2xl text-base text-gray-500 sm:text-lg", className), ...props });
1027
1453
  }
1028
1454
  function HeroActions({
1029
1455
  className,
1030
1456
  ...props
1031
1457
  }) {
1032
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: cn("mt-8 flex flex-wrap items-center justify-center gap-3", className), ...props });
1458
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: cn("mt-8 flex flex-wrap items-center justify-center gap-3", className), ...props });
1033
1459
  }
1034
1460
  // Annotate the CommonJS export names for ESM import in node:
1035
1461
  0 && (module.exports = {
1462
+ Accordion,
1463
+ AccordionContent,
1464
+ AccordionItem,
1465
+ AccordionTrigger,
1036
1466
  Alert,
1037
1467
  AlertDescription,
1038
1468
  AlertTitle,
1039
1469
  Avatar,
1470
+ AvatarFallback,
1040
1471
  AvatarGroup,
1041
1472
  Badge,
1042
1473
  Box,
@@ -1046,12 +1477,20 @@ function HeroActions({
1046
1477
  BreadcrumbPage,
1047
1478
  BreadcrumbSeparator,
1048
1479
  Button,
1480
+ ButtonGroup,
1049
1481
  Card,
1050
1482
  CardContent,
1051
1483
  CardDescription,
1052
1484
  CardFooter,
1053
1485
  CardHeader,
1054
1486
  CardTitle,
1487
+ CommandPalette,
1488
+ CommandPaletteEmpty,
1489
+ CommandPaletteGroup,
1490
+ CommandPaletteGroupLabel,
1491
+ CommandPaletteInput,
1492
+ CommandPaletteItem,
1493
+ CommandPaletteList,
1055
1494
  Container,
1056
1495
  Divider,
1057
1496
  Drawer,
@@ -1074,6 +1513,7 @@ function HeroActions({
1074
1513
  HeroContent,
1075
1514
  HeroDescription,
1076
1515
  HeroTitle,
1516
+ IconButton,
1077
1517
  Input,
1078
1518
  Label,
1079
1519
  Modal,
@@ -1082,6 +1522,14 @@ function HeroActions({
1082
1522
  ModalFooter,
1083
1523
  ModalHeader,
1084
1524
  ModalTitle,
1525
+ Navbar,
1526
+ NavbarActions,
1527
+ NavbarBrand,
1528
+ NavbarNav,
1529
+ Notification,
1530
+ NotificationActions,
1531
+ NotificationDescription,
1532
+ NotificationTitle,
1085
1533
  Pagination,
1086
1534
  PaginationItem,
1087
1535
  PaginationLink,
@@ -1091,6 +1539,15 @@ function HeroActions({
1091
1539
  SectionHeader,
1092
1540
  SectionTitle,
1093
1541
  Select,
1542
+ Sidebar,
1543
+ SidebarContent,
1544
+ SidebarFooter,
1545
+ SidebarGroup,
1546
+ SidebarGroupLabel,
1547
+ SidebarHeader,
1548
+ SidebarItem,
1549
+ Skeleton,
1550
+ Spinner,
1094
1551
  Stack,
1095
1552
  Stat,
1096
1553
  StatChange,