@srcroot/ui 0.0.1 → 0.0.2

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.js CHANGED
@@ -500,6 +500,97 @@ var REGISTRY = {
500
500
  description: "Date picker",
501
501
  category: "Forms",
502
502
  dependencies: []
503
+ },
504
+ sidebar: {
505
+ file: "sidebar.tsx",
506
+ description: "Responsive sidebar with mobile drawer",
507
+ category: "Layout",
508
+ dependencies: ["sheet", "button"]
509
+ },
510
+ // Added Components
511
+ combobox: {
512
+ file: "combobox.tsx",
513
+ description: "Searchable select with autocomplete",
514
+ category: "Forms",
515
+ dependencies: ["popover"]
516
+ },
517
+ command: {
518
+ file: "command.tsx",
519
+ description: "Command palette / search menu",
520
+ category: "Navigation",
521
+ dependencies: []
522
+ },
523
+ "context-menu": {
524
+ file: "context-menu.tsx",
525
+ description: "Right-click context menu",
526
+ category: "Overlay / Feedback",
527
+ dependencies: []
528
+ },
529
+ "date-picker": {
530
+ file: "date-picker.tsx",
531
+ description: "Date picker with calendar",
532
+ category: "Forms",
533
+ dependencies: ["calendar", "popover", "button"]
534
+ },
535
+ drawer: {
536
+ file: "drawer.tsx",
537
+ description: "Bottom/top sheet drawer",
538
+ category: "Overlay / Feedback",
539
+ dependencies: []
540
+ },
541
+ "file-upload": {
542
+ file: "file-upload.tsx",
543
+ description: "Drag-and-drop file upload",
544
+ category: "Forms",
545
+ dependencies: []
546
+ },
547
+ "hover-card": {
548
+ file: "hover-card.tsx",
549
+ description: "Hover-triggered popover",
550
+ category: "Overlay / Feedback",
551
+ dependencies: []
552
+ },
553
+ kbd: {
554
+ file: "kbd.tsx",
555
+ description: "Keyboard shortcut display",
556
+ category: "Typography",
557
+ dependencies: []
558
+ },
559
+ menubar: {
560
+ file: "menubar.tsx",
561
+ description: "Horizontal menu with dropdowns",
562
+ category: "Navigation",
563
+ dependencies: []
564
+ },
565
+ "native-select": {
566
+ file: "native-select.tsx",
567
+ description: "Styled browser-native select",
568
+ category: "Forms",
569
+ dependencies: []
570
+ },
571
+ resizable: {
572
+ file: "resizable.tsx",
573
+ description: "Resizable panel layout",
574
+ category: "Layout",
575
+ dependencies: []
576
+ },
577
+ "scroll-area": {
578
+ file: "scroll-area.tsx",
579
+ description: "Custom scrollbar container",
580
+ category: "Layout",
581
+ dependencies: []
582
+ },
583
+ toggle: {
584
+ file: "toggle.tsx",
585
+ description: "Toggle button",
586
+ category: "Forms",
587
+ dependencies: []
588
+ },
589
+ "toggle-group": {
590
+ file: "toggle-group.tsx",
591
+ description: "Grouped toggle buttons",
592
+ category: "Forms",
593
+ dependencies: ["toggle"]
503
594
  }
504
595
  };
505
596
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@srcroot/ui",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A shadcn-style CLI UI library with polymorphic, accessible React components",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,6 +38,12 @@
38
38
  },
39
39
  "peerDependencies": {
40
40
  "react": "^18.0.0 || ^19.0.0",
41
- "react-dom": "^18.0.0 || ^19.0.0"
41
+ "react-dom": "^18.0.0 || ^19.0.0",
42
+ "lucide-react": "^0.300.0",
43
+ "cmdk": "^1.0.0",
44
+ "class-variance-authority": "^0.7.0",
45
+ "clsx": "^2.0.0",
46
+ "tailwind-merge": "^2.0.0",
47
+ "tailwindcss": "^3.0.0"
42
48
  }
43
- }
49
+ }