@yanolja-next/next-hub-ui 0.0.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.
Files changed (39) hide show
  1. package/README.md +30 -0
  2. package/css/index.css +3070 -0
  3. package/dist/index.cjs +1 -0
  4. package/dist/index.d.ts +1 -0
  5. package/dist/index.js +2942 -0
  6. package/dist/src/components/alert.d.ts +9 -0
  7. package/dist/src/components/assistant-ui/assistant-sidebar.d.ts +2 -0
  8. package/dist/src/components/assistant-ui/attachment.d.ts +4 -0
  9. package/dist/src/components/assistant-ui/markdown-text.d.ts +1 -0
  10. package/dist/src/components/assistant-ui/thread.d.ts +7 -0
  11. package/dist/src/components/assistant-ui/tool-fallback.d.ts +31 -0
  12. package/dist/src/components/assistant-ui/tooltip-icon-button.d.ts +7 -0
  13. package/dist/src/components/avatar.d.ts +11 -0
  14. package/dist/src/components/breadcrumb.d.ts +11 -0
  15. package/dist/src/components/button.d.ts +10 -0
  16. package/dist/src/components/card.d.ts +9 -0
  17. package/dist/src/components/collapsible.d.ts +5 -0
  18. package/dist/src/components/dialog.d.ts +17 -0
  19. package/dist/src/components/dropdown-menu.d.ts +25 -0
  20. package/dist/src/components/field.d.ts +24 -0
  21. package/dist/src/components/input.d.ts +3 -0
  22. package/dist/src/components/label.d.ts +4 -0
  23. package/dist/src/components/radio-group.d.ts +5 -0
  24. package/dist/src/components/resizable.d.ts +7 -0
  25. package/dist/src/components/select.d.ts +15 -0
  26. package/dist/src/components/separator.d.ts +4 -0
  27. package/dist/src/components/sheet.d.ts +13 -0
  28. package/dist/src/components/sidebar.d.ts +69 -0
  29. package/dist/src/components/skeleton.d.ts +2 -0
  30. package/dist/src/components/switch.d.ts +4 -0
  31. package/dist/src/components/table.d.ts +14 -0
  32. package/dist/src/components/textarea.d.ts +3 -0
  33. package/dist/src/components/tooltip.d.ts +7 -0
  34. package/dist/src/components/typography.d.ts +9 -0
  35. package/dist/src/hooks/use-mobile.d.ts +1 -0
  36. package/dist/src/index.d.ts +28 -0
  37. package/dist/src/lib/utils.d.ts +2 -0
  38. package/dist/vite.config.d.ts +2 -0
  39. package/package.json +74 -0
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ ---
2
+ gdrive_sync: true
3
+ gdrive_pdf_name: "Next Hub UI"
4
+ ---
5
+
6
+ # @yanolja-next/next-hub-ui
7
+
8
+ Shared UI component library for Next Cloud Platform, built with [shadcn/ui](https://ui.shadcn.com).
9
+
10
+ ## Usage
11
+
12
+ First, import the CSS in your app's entry point:
13
+
14
+ ```tsx
15
+ import '@yanolja-next/next-hub-ui/index.css';
16
+ ```
17
+
18
+ Then you're ready to use the components:
19
+
20
+ ```tsx
21
+ import { Button, Card } from '@yanolja-next/next-hub-ui';
22
+
23
+ const MyPage = () => {
24
+ return (
25
+ <Card>
26
+ <Button>Click me</Button>
27
+ </Card>
28
+ );
29
+ };
30
+ ```