@deankwan/ui 0.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/app/components/ui/accordion.mjs +64 -0
- package/dist/app/components/ui/alert-dialog.mjs +146 -0
- package/dist/app/components/ui/alert.mjs +66 -0
- package/dist/app/components/ui/aspect-ratio.mjs +10 -0
- package/dist/app/components/ui/avatar.mjs +53 -0
- package/dist/app/components/ui/badge.mjs +39 -0
- package/dist/app/components/ui/breadcrumb.mjs +102 -0
- package/dist/app/components/ui/button.mjs +49 -0
- package/dist/app/components/ui/calendar.mjs +61 -0
- package/dist/app/components/ui/card.mjs +90 -0
- package/dist/app/components/ui/carousel.mjs +177 -0
- package/dist/app/components/ui/chart.mjs +215 -0
- package/dist/app/components/ui/checkbox.mjs +31 -0
- package/dist/app/components/ui/collapsible.mjs +34 -0
- package/dist/app/components/ui/command.mjs +161 -0
- package/dist/app/components/ui/context-menu.mjs +223 -0
- package/dist/app/components/ui/dialog.mjs +128 -0
- package/dist/app/components/ui/drawer.mjs +125 -0
- package/dist/app/components/ui/dropdown-menu.mjs +231 -0
- package/dist/app/components/ui/form.mjs +101 -0
- package/dist/app/components/ui/hover-card.mjs +38 -0
- package/dist/app/components/ui/input-otp.mjs +65 -0
- package/dist/app/components/ui/input.mjs +21 -0
- package/dist/app/components/ui/label.mjs +22 -0
- package/dist/app/components/ui/menubar.mjs +251 -0
- package/dist/app/components/ui/navigation-menu.mjs +170 -0
- package/dist/app/components/ui/pagination.mjs +118 -0
- package/dist/app/components/ui/popover.mjs +44 -0
- package/dist/app/components/ui/progress.mjs +31 -0
- package/dist/app/components/ui/radio-group.mjs +45 -0
- package/dist/app/components/ui/resizable.mjs +48 -0
- package/dist/app/components/ui/scroll-area.mjs +60 -0
- package/dist/app/components/ui/select.mjs +169 -0
- package/dist/app/components/ui/separator.mjs +26 -0
- package/dist/app/components/ui/sheet.mjs +126 -0
- package/dist/app/components/ui/sidebar.mjs +593 -0
- package/dist/app/components/ui/skeleton.mjs +15 -0
- package/dist/app/components/ui/slider.mjs +63 -0
- package/dist/app/components/ui/sonner.mjs +22 -0
- package/dist/app/components/ui/switch.mjs +31 -0
- package/dist/app/components/ui/table.mjs +114 -0
- package/dist/app/components/ui/tabs.mjs +67 -0
- package/dist/app/components/ui/textarea.mjs +18 -0
- package/dist/app/components/ui/toggle-group.mjs +62 -0
- package/dist/app/components/ui/toggle.mjs +43 -0
- package/dist/app/components/ui/tooltip.mjs +55 -0
- package/dist/app/components/ui/use-mobile.mjs +16 -0
- package/dist/app/components/ui/utils.mjs +8 -0
- package/dist/index.mjs +297 -0
- package/dist/src/app/components/ui/accordion.d.ts +7 -0
- package/dist/src/app/components/ui/alert-dialog.d.ts +14 -0
- package/dist/src/app/components/ui/alert.d.ts +9 -0
- package/dist/src/app/components/ui/avatar.d.ts +6 -0
- package/dist/src/app/components/ui/badge.d.ts +9 -0
- package/dist/src/app/components/ui/breadcrumb.d.ts +11 -0
- package/dist/src/app/components/ui/button.d.ts +10 -0
- package/dist/src/app/components/ui/calendar.d.ts +4 -0
- package/dist/src/app/components/ui/card.d.ts +9 -0
- package/dist/src/app/components/ui/carousel.d.ts +19 -0
- package/dist/src/app/components/ui/chart.d.ts +40 -0
- package/dist/src/app/components/ui/checkbox.d.ts +4 -0
- package/dist/src/app/components/ui/command.d.ts +16 -0
- package/dist/src/app/components/ui/context-menu.d.ts +25 -0
- package/dist/src/app/components/ui/dialog.d.ts +13 -0
- package/dist/src/app/components/ui/drawer.d.ts +13 -0
- package/dist/src/app/components/ui/dropdown-menu.d.ts +25 -0
- package/dist/src/app/components/ui/hover-card.d.ts +6 -0
- package/dist/src/app/components/ui/input-otp.d.ts +11 -0
- package/dist/src/app/components/ui/input.d.ts +3 -0
- package/dist/src/app/components/ui/label.d.ts +4 -0
- package/dist/src/app/components/ui/menubar.d.ts +26 -0
- package/dist/src/app/components/ui/navigation-menu.d.ts +14 -0
- package/dist/src/app/components/ui/pagination.d.ts +13 -0
- package/dist/src/app/components/ui/popover.d.ts +7 -0
- package/dist/src/app/components/ui/progress.d.ts +4 -0
- package/dist/src/app/components/ui/radio-group.d.ts +5 -0
- package/dist/src/app/components/ui/resizable.d.ts +8 -0
- package/dist/src/app/components/ui/scroll-area.d.ts +5 -0
- package/dist/src/app/components/ui/select.d.ts +15 -0
- package/dist/src/app/components/ui/separator.d.ts +4 -0
- package/dist/src/app/components/ui/sheet.d.ts +13 -0
- package/dist/src/app/components/ui/sidebar.d.ts +60 -0
- package/dist/src/app/components/ui/slider.d.ts +4 -0
- package/dist/src/app/components/ui/switch.d.ts +4 -0
- package/dist/src/app/components/ui/table.d.ts +10 -0
- package/dist/src/app/components/ui/tabs.d.ts +7 -0
- package/dist/src/app/components/ui/textarea.d.ts +3 -0
- package/dist/src/app/components/ui/toggle-group.d.ts +7 -0
- package/dist/src/app/components/ui/toggle.d.ts +9 -0
- package/dist/src/app/components/ui/tooltip.d.ts +7 -0
- package/dist/src/app/components/ui/use-mobile.d.ts +1 -0
- package/dist/src/app/components/ui/utils.d.ts +2 -0
- package/dist/src/index.d.ts +48 -0
- package/dist/style.css +1 -0
- package/package.json +166 -0
package/package.json
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deankwan/ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.mjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/src/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"types": "./dist/src/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./style.css": "./dist/style.css"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": [
|
|
19
|
+
"**/*.css"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "vite build"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@radix-ui/react-accordion": "^1.2.0",
|
|
26
|
+
"@radix-ui/react-alert-dialog": "^1.1.0",
|
|
27
|
+
"@radix-ui/react-aspect-ratio": "^1.1.0",
|
|
28
|
+
"@radix-ui/react-avatar": "^1.1.0",
|
|
29
|
+
"@radix-ui/react-checkbox": "^1.1.0",
|
|
30
|
+
"@radix-ui/react-collapsible": "^1.1.0",
|
|
31
|
+
"@radix-ui/react-context-menu": "^2.2.0",
|
|
32
|
+
"@radix-ui/react-dialog": "^1.1.0",
|
|
33
|
+
"@radix-ui/react-dropdown-menu": "^2.1.0",
|
|
34
|
+
"@radix-ui/react-hover-card": "^1.1.0",
|
|
35
|
+
"@radix-ui/react-label": "^2.1.0",
|
|
36
|
+
"@radix-ui/react-menubar": "^1.1.0",
|
|
37
|
+
"@radix-ui/react-navigation-menu": "^1.2.0",
|
|
38
|
+
"@radix-ui/react-popover": "^1.1.0",
|
|
39
|
+
"@radix-ui/react-progress": "^1.1.0",
|
|
40
|
+
"@radix-ui/react-radio-group": "^1.2.0",
|
|
41
|
+
"@radix-ui/react-scroll-area": "^1.2.0",
|
|
42
|
+
"@radix-ui/react-select": "^2.1.0",
|
|
43
|
+
"@radix-ui/react-separator": "^1.1.0",
|
|
44
|
+
"@radix-ui/react-slider": "^1.2.0",
|
|
45
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
46
|
+
"@radix-ui/react-switch": "^1.1.0",
|
|
47
|
+
"@radix-ui/react-tabs": "^1.1.0",
|
|
48
|
+
"@radix-ui/react-toggle": "^1.1.0",
|
|
49
|
+
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
50
|
+
"@radix-ui/react-tooltip": "^1.1.0",
|
|
51
|
+
"class-variance-authority": "^0.7.0",
|
|
52
|
+
"clsx": "^2.0.0",
|
|
53
|
+
"lucide-react": ">=0.400.0",
|
|
54
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
55
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
56
|
+
"tailwind-merge": "^3.0.0"
|
|
57
|
+
},
|
|
58
|
+
"peerDependenciesMeta": {
|
|
59
|
+
"cmdk": {
|
|
60
|
+
"optional": true
|
|
61
|
+
},
|
|
62
|
+
"embla-carousel-react": {
|
|
63
|
+
"optional": true
|
|
64
|
+
},
|
|
65
|
+
"input-otp": {
|
|
66
|
+
"optional": true
|
|
67
|
+
},
|
|
68
|
+
"next-themes": {
|
|
69
|
+
"optional": true
|
|
70
|
+
},
|
|
71
|
+
"react-day-picker": {
|
|
72
|
+
"optional": true
|
|
73
|
+
},
|
|
74
|
+
"react-hook-form": {
|
|
75
|
+
"optional": true
|
|
76
|
+
},
|
|
77
|
+
"react-resizable-panels": {
|
|
78
|
+
"optional": true
|
|
79
|
+
},
|
|
80
|
+
"recharts": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"sonner": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"vaul": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"date-fns": {
|
|
90
|
+
"optional": true
|
|
91
|
+
},
|
|
92
|
+
"motion": {
|
|
93
|
+
"optional": true
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@emotion/react": "11.14.0",
|
|
98
|
+
"@emotion/styled": "11.14.1",
|
|
99
|
+
"@mui/icons-material": "7.3.5",
|
|
100
|
+
"@mui/material": "7.3.5",
|
|
101
|
+
"@popperjs/core": "2.11.8",
|
|
102
|
+
"@radix-ui/react-accordion": "1.2.3",
|
|
103
|
+
"@radix-ui/react-alert-dialog": "1.1.6",
|
|
104
|
+
"@radix-ui/react-aspect-ratio": "1.1.2",
|
|
105
|
+
"@radix-ui/react-avatar": "1.1.3",
|
|
106
|
+
"@radix-ui/react-checkbox": "1.1.4",
|
|
107
|
+
"@radix-ui/react-collapsible": "1.1.3",
|
|
108
|
+
"@radix-ui/react-context-menu": "2.2.6",
|
|
109
|
+
"@radix-ui/react-dialog": "1.1.6",
|
|
110
|
+
"@radix-ui/react-dropdown-menu": "2.1.6",
|
|
111
|
+
"@radix-ui/react-hover-card": "1.1.6",
|
|
112
|
+
"@radix-ui/react-label": "2.1.2",
|
|
113
|
+
"@radix-ui/react-menubar": "1.1.6",
|
|
114
|
+
"@radix-ui/react-navigation-menu": "1.2.5",
|
|
115
|
+
"@radix-ui/react-popover": "1.1.6",
|
|
116
|
+
"@radix-ui/react-progress": "1.1.2",
|
|
117
|
+
"@radix-ui/react-radio-group": "1.2.3",
|
|
118
|
+
"@radix-ui/react-scroll-area": "1.2.3",
|
|
119
|
+
"@radix-ui/react-select": "2.1.6",
|
|
120
|
+
"@radix-ui/react-separator": "1.1.2",
|
|
121
|
+
"@radix-ui/react-slider": "1.2.3",
|
|
122
|
+
"@radix-ui/react-slot": "1.1.2",
|
|
123
|
+
"@radix-ui/react-switch": "1.1.3",
|
|
124
|
+
"@radix-ui/react-tabs": "1.1.3",
|
|
125
|
+
"@radix-ui/react-toggle": "1.1.2",
|
|
126
|
+
"@radix-ui/react-toggle-group": "1.1.2",
|
|
127
|
+
"@radix-ui/react-tooltip": "1.1.8",
|
|
128
|
+
"@tailwindcss/vite": "4.1.12",
|
|
129
|
+
"@vitejs/plugin-react": "4.7.0",
|
|
130
|
+
"canvas-confetti": "1.9.4",
|
|
131
|
+
"class-variance-authority": "0.7.1",
|
|
132
|
+
"clsx": "2.1.1",
|
|
133
|
+
"cmdk": "1.1.1",
|
|
134
|
+
"date-fns": "3.6.0",
|
|
135
|
+
"embla-carousel-react": "8.6.0",
|
|
136
|
+
"input-otp": "1.4.2",
|
|
137
|
+
"lucide-react": "0.487.0",
|
|
138
|
+
"motion": "12.23.24",
|
|
139
|
+
"next-themes": "0.4.6",
|
|
140
|
+
"react": "18.3.1",
|
|
141
|
+
"react-day-picker": "8.10.1",
|
|
142
|
+
"react-dnd": "16.0.1",
|
|
143
|
+
"react-dnd-html5-backend": "16.0.1",
|
|
144
|
+
"react-dom": "18.3.1",
|
|
145
|
+
"react-hook-form": "7.55.0",
|
|
146
|
+
"react-popper": "2.3.0",
|
|
147
|
+
"react-resizable-panels": "2.1.7",
|
|
148
|
+
"react-responsive-masonry": "2.7.1",
|
|
149
|
+
"react-router": "7.13.0",
|
|
150
|
+
"react-slick": "0.31.0",
|
|
151
|
+
"recharts": "2.15.2",
|
|
152
|
+
"sonner": "2.0.3",
|
|
153
|
+
"tailwind-merge": "3.2.0",
|
|
154
|
+
"tailwindcss": "4.1.12",
|
|
155
|
+
"tw-animate-css": "1.3.8",
|
|
156
|
+
"typescript": "^6.0.3",
|
|
157
|
+
"vaul": "1.1.2",
|
|
158
|
+
"vite": "6.3.5",
|
|
159
|
+
"vite-plugin-dts": "^4.5.4"
|
|
160
|
+
},
|
|
161
|
+
"pnpm": {
|
|
162
|
+
"overrides": {
|
|
163
|
+
"vite": "6.3.5"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|