@hirely/ui 0.1.6

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 (71) hide show
  1. package/README.md +167 -0
  2. package/dist/components/ui/AlertWrapper.d.ts +8 -0
  3. package/dist/components/ui/accordion.d.ts +6 -0
  4. package/dist/components/ui/alert-dialog.d.ts +18 -0
  5. package/dist/components/ui/alert.d.ts +10 -0
  6. package/dist/components/ui/aspect-ratio.d.ts +4 -0
  7. package/dist/components/ui/attachment.d.ts +23 -0
  8. package/dist/components/ui/avatar.d.ts +11 -0
  9. package/dist/components/ui/badge.d.ts +7 -0
  10. package/dist/components/ui/breadcrumb.d.ts +10 -0
  11. package/dist/components/ui/bubble.d.ts +16 -0
  12. package/dist/components/ui/button-group.d.ts +10 -0
  13. package/dist/components/ui/button.d.ts +8 -0
  14. package/dist/components/ui/calendar.d.ts +10 -0
  15. package/dist/components/ui/card.d.ts +11 -0
  16. package/dist/components/ui/carousel.d.ts +28 -0
  17. package/dist/components/ui/chart.d.ts +44 -0
  18. package/dist/components/ui/checkbox.d.ts +3 -0
  19. package/dist/components/ui/collapsible.d.ts +5 -0
  20. package/dist/components/ui/combobox.d.ts +24 -0
  21. package/dist/components/ui/command.d.ts +19 -0
  22. package/dist/components/ui/context-menu.d.ts +29 -0
  23. package/dist/components/ui/dialog.d.ts +17 -0
  24. package/dist/components/ui/direction.d.ts +1 -0
  25. package/dist/components/ui/drawer.d.ts +16 -0
  26. package/dist/components/ui/dropdown-menu.d.ts +29 -0
  27. package/dist/components/ui/empty.d.ts +11 -0
  28. package/dist/components/ui/field.d.ts +24 -0
  29. package/dist/components/ui/hover-card.d.ts +5 -0
  30. package/dist/components/ui/input-group.d.ts +18 -0
  31. package/dist/components/ui/input-otp.d.ts +11 -0
  32. package/dist/components/ui/input.d.ts +3 -0
  33. package/dist/components/ui/item.d.ts +22 -0
  34. package/dist/components/ui/kbd.d.ts +3 -0
  35. package/dist/components/ui/label.d.ts +3 -0
  36. package/dist/components/ui/marker.d.ts +10 -0
  37. package/dist/components/ui/menubar.d.ts +29 -0
  38. package/dist/components/ui/message-scroller.d.ts +10 -0
  39. package/dist/components/ui/message.d.ts +10 -0
  40. package/dist/components/ui/native-select.d.ts +8 -0
  41. package/dist/components/ui/navigation-menu.d.ts +11 -0
  42. package/dist/components/ui/pagination.d.ts +17 -0
  43. package/dist/components/ui/popover.d.ts +9 -0
  44. package/dist/components/ui/progress.d.ts +7 -0
  45. package/dist/components/ui/radio-group.d.ts +5 -0
  46. package/dist/components/ui/resizable.d.ts +7 -0
  47. package/dist/components/ui/scroll-area.d.ts +4 -0
  48. package/dist/components/ui/select.d.ts +15 -0
  49. package/dist/components/ui/separator.d.ts +3 -0
  50. package/dist/components/ui/sheet.d.ts +14 -0
  51. package/dist/components/ui/sidebar.d.ts +63 -0
  52. package/dist/components/ui/skeleton.d.ts +2 -0
  53. package/dist/components/ui/slider.d.ts +3 -0
  54. package/dist/components/ui/sonner.d.ts +3 -0
  55. package/dist/components/ui/spinner.d.ts +2 -0
  56. package/dist/components/ui/switch.d.ts +5 -0
  57. package/dist/components/ui/table.d.ts +10 -0
  58. package/dist/components/ui/tabs.d.ts +10 -0
  59. package/dist/components/ui/textarea.d.ts +3 -0
  60. package/dist/components/ui/toggle-group.d.ts +11 -0
  61. package/dist/components/ui/toggle.d.ts +8 -0
  62. package/dist/components/ui/tooltip.d.ts +6 -0
  63. package/dist/favicon.svg +1 -0
  64. package/dist/hooks/use-mobile.d.ts +1 -0
  65. package/dist/icons.svg +24 -0
  66. package/dist/index.cjs.js +7 -0
  67. package/dist/index.d.ts +61 -0
  68. package/dist/index.es.js +5447 -0
  69. package/dist/lib/utils.d.ts +1 -0
  70. package/package.json +65 -0
  71. package/src/index.css +132 -0
@@ -0,0 +1 @@
1
+ export { cn, type ClassValue } from "cnfast";
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@hirely/ui",
3
+ "version": "0.1.6",
4
+ "type": "module",
5
+ "files": [
6
+ "dist",
7
+ "src/index.css"
8
+ ],
9
+ "main": "./dist/index.cjs.js",
10
+ "module": "./dist/index.es.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.es.js",
16
+ "require": "./dist/index.cjs.js",
17
+ "style": "./src/index.css"
18
+ },
19
+ "./src/index.css": {
20
+ "style": "./src/index.css",
21
+ "default": "./src/index.css"
22
+ }
23
+ },
24
+ "scripts": {
25
+ "dev": "vite",
26
+ "build": "tsc -b && vite build && tsc -p tsconfig.app.json --noEmit false --emitDeclarationOnly --declaration --declarationDir dist --rootDir src",
27
+ "lint": "oxlint",
28
+ "preview": "vite preview"
29
+ },
30
+ "dependencies": {
31
+ "@base-ui/react": "^1.6.0",
32
+ "@fontsource-variable/geist": "^5.2.9",
33
+ "@fontsource/poppins": "^5.2.7",
34
+ "@shadcn/react": "^0.2.1",
35
+ "@tailwindcss/vite": "^4.3.2",
36
+ "class-variance-authority": "^0.7.1",
37
+ "clsx": "^2.1.1",
38
+ "cmdk": "^1.1.1",
39
+ "date-fns": "^4.4.0",
40
+ "embla-carousel-react": "^8.6.0",
41
+ "input-otp": "^1.4.2",
42
+ "lucide-react": "^1.24.0",
43
+ "next-themes": "^0.4.6",
44
+ "react": "^19.2.7",
45
+ "react-day-picker": "^10.0.1",
46
+ "react-dom": "^19.2.7",
47
+ "react-resizable-panels": "^4.12.1",
48
+ "recharts": "3.8.0",
49
+ "shadcn": "^4.13.0",
50
+ "sonner": "^2.0.7",
51
+ "tailwind-merge": "^3.6.0",
52
+ "tailwindcss": "^4.3.2",
53
+ "tw-animate-css": "^1.4.0"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^24.13.2",
57
+ "@types/react": "^19.2.17",
58
+ "@types/react-dom": "^19.2.3",
59
+ "@vitejs/plugin-react": "^6.0.3",
60
+ "oxlint": "^1.71.0",
61
+ "typescript": "~6.0.2",
62
+ "vite": "^8.1.1",
63
+ "vite-tsconfig-paths": "^6.1.1"
64
+ }
65
+ }
package/src/index.css ADDED
@@ -0,0 +1,132 @@
1
+ @import "tailwindcss";
2
+ @source "../dist";
3
+ @import "tw-animate-css";
4
+ @import "shadcn/tailwind.css";
5
+ @import "@fontsource/poppins";
6
+
7
+ @custom-variant dark (&:is(.dark *));
8
+
9
+ @theme inline {
10
+ --font-sans: "Poppins", sans-serif;
11
+ --font-heading: var(--font-sans);
12
+ --color-sidebar-ring: var(--sidebar-ring);
13
+ --color-sidebar-border: var(--sidebar-border);
14
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
15
+ --color-sidebar-accent: var(--sidebar-accent);
16
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
17
+ --color-sidebar-primary: var(--sidebar-primary);
18
+ --color-sidebar-foreground: var(--sidebar-foreground);
19
+ --color-sidebar: var(--sidebar);
20
+ --color-chart-5: var(--chart-5);
21
+ --color-chart-4: var(--chart-4);
22
+ --color-chart-3: var(--chart-3);
23
+ --color-chart-2: var(--chart-2);
24
+ --color-chart-1: var(--chart-1);
25
+ --color-ring: var(--ring);
26
+ --color-input: var(--input);
27
+ --color-border: var(--border);
28
+ --color-destructive: var(--destructive);
29
+ --color-accent-foreground: var(--accent-foreground);
30
+ --color-accent: var(--accent);
31
+ --color-muted-foreground: var(--muted-foreground);
32
+ --color-muted: var(--muted);
33
+ --color-secondary-foreground: var(--secondary-foreground);
34
+ --color-secondary: var(--secondary);
35
+ --color-primary-foreground: var(--primary-foreground);
36
+ --color-primary: var(--primary);
37
+ --color-popover-foreground: var(--popover-foreground);
38
+ --color-popover: var(--popover);
39
+ --color-card-foreground: var(--card-foreground);
40
+ --color-card: var(--card);
41
+ --color-foreground: var(--foreground);
42
+ --color-background: var(--background);
43
+ --radius-sm: calc(var(--radius) * 0.6);
44
+ --radius-md: calc(var(--radius) * 0.8);
45
+ --radius-lg: var(--radius);
46
+ --radius-xl: calc(var(--radius) * 1.4);
47
+ --radius-2xl: calc(var(--radius) * 1.8);
48
+ --radius-3xl: calc(var(--radius) * 2.2);
49
+ --radius-4xl: 32px;
50
+ }
51
+
52
+ :root {
53
+ --background: oklch(1 0 0);
54
+ --foreground: oklch(0.145 0 0);
55
+ --card: hsl(0, 0%, 100%);
56
+ --card-foreground: oklch(0.145 0 0);
57
+ --popover: oklch(1 0 0);
58
+ --popover-foreground: oklch(0.145 0 0);
59
+ --primary: oklch(0.205 0 0);
60
+ --primary-foreground: oklch(0.985 0 0);
61
+ --secondary: oklch(0.97 0 0);
62
+ --secondary-foreground: oklch(0.205 0 0);
63
+ --muted: oklch(0.97 0 0);
64
+ --muted-foreground: oklch(0.556 0 0);
65
+ --accent: oklch(0.97 0 0);
66
+ --accent-foreground: oklch(0.205 0 0);
67
+ --destructive: oklch(0.577 0.245 27.325);
68
+ --border: oklch(0.922 0 0);
69
+ --input: oklch(0.922 0 0);
70
+ --ring: oklch(0.708 0 0);
71
+ --chart-1: oklch(0.87 0 0);
72
+ --chart-2: oklch(0.556 0 0);
73
+ --chart-3: oklch(0.439 0 0);
74
+ --chart-4: oklch(0.371 0 0);
75
+ --chart-5: oklch(0.269 0 0);
76
+ --radius: 0.625rem;
77
+ --sidebar: oklch(0.985 0 0);
78
+ --sidebar-foreground: oklch(0.145 0 0);
79
+ --sidebar-primary: oklch(0.205 0 0);
80
+ --sidebar-primary-foreground: oklch(0.985 0 0);
81
+ --sidebar-accent: oklch(0.97 0 0);
82
+ --sidebar-accent-foreground: oklch(0.205 0 0);
83
+ --sidebar-border: oklch(0.922 0 0);
84
+ --sidebar-ring: oklch(0.708 0 0);
85
+ }
86
+
87
+ .dark {
88
+ --background: oklch(0.145 0 0);
89
+ --foreground: oklch(0.985 0 0);
90
+ --card: oklch(0.205 0 0);
91
+ --card-foreground: oklch(0.985 0 0);
92
+ --popover: oklch(0.205 0 0);
93
+ --popover-foreground: oklch(0.985 0 0);
94
+ --primary: oklch(0.922 0 0);
95
+ --primary-foreground: oklch(0.205 0 0);
96
+ --secondary: oklch(0.269 0 0);
97
+ --secondary-foreground: oklch(0.985 0 0);
98
+ --muted: oklch(0.269 0 0);
99
+ --muted-foreground: oklch(0.708 0 0);
100
+ --accent: oklch(0.269 0 0);
101
+ --accent-foreground: oklch(0.985 0 0);
102
+ --destructive: oklch(0.704 0.191 22.216);
103
+ --border: oklch(1 0 0 / 10%);
104
+ --input: oklch(1 0 0 / 15%);
105
+ --ring: oklch(0.556 0 0);
106
+ --chart-1: oklch(0.87 0 0);
107
+ --chart-2: oklch(0.556 0 0);
108
+ --chart-3: oklch(0.439 0 0);
109
+ --chart-4: oklch(0.371 0 0);
110
+ --chart-5: oklch(0.269 0 0);
111
+ --sidebar: oklch(0.205 0 0);
112
+ --sidebar-foreground: oklch(0.985 0 0);
113
+ --sidebar-primary: oklch(0.488 0.243 264.376);
114
+ --sidebar-primary-foreground: oklch(0.985 0 0);
115
+ --sidebar-accent: oklch(0.269 0 0);
116
+ --sidebar-accent-foreground: oklch(0.985 0 0);
117
+ --sidebar-border: oklch(1 0 0 / 10%);
118
+ --sidebar-ring: oklch(0.556 0 0);
119
+ }
120
+
121
+ @layer base {
122
+ * {
123
+ @apply border-border outline-ring/50;
124
+ }
125
+ body {
126
+ @apply bg-background text-foreground;
127
+
128
+ }
129
+ html {
130
+ @apply font-sans;
131
+ }
132
+ }