@teacharium/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/README.md +69 -0
- package/dist/components/alert-dialog.d.ts +21 -0
- package/dist/components/alert-dialog.d.ts.map +1 -0
- package/dist/components/alert.d.ts +10 -0
- package/dist/components/alert.d.ts.map +1 -0
- package/dist/components/avatar.d.ts +7 -0
- package/dist/components/avatar.d.ts.map +1 -0
- package/dist/components/badge.d.ts +10 -0
- package/dist/components/badge.d.ts.map +1 -0
- package/dist/components/button.d.ts +12 -0
- package/dist/components/button.d.ts.map +1 -0
- package/dist/components/card.d.ts +9 -0
- package/dist/components/card.d.ts.map +1 -0
- package/dist/components/carousel.d.ts +20 -0
- package/dist/components/carousel.d.ts.map +1 -0
- package/dist/components/checkbox.d.ts +5 -0
- package/dist/components/checkbox.d.ts.map +1 -0
- package/dist/components/collapsible.d.ts +6 -0
- package/dist/components/collapsible.d.ts.map +1 -0
- package/dist/components/dialog.d.ts +16 -0
- package/dist/components/dialog.d.ts.map +1 -0
- package/dist/components/dropdown-menu.d.ts +28 -0
- package/dist/components/dropdown-menu.d.ts.map +1 -0
- package/dist/components/form.d.ts +25 -0
- package/dist/components/form.d.ts.map +1 -0
- package/dist/components/hover-card.d.ts +7 -0
- package/dist/components/hover-card.d.ts.map +1 -0
- package/dist/components/input.d.ts +4 -0
- package/dist/components/input.d.ts.map +1 -0
- package/dist/components/label.d.ts +6 -0
- package/dist/components/label.d.ts.map +1 -0
- package/dist/components/pagination.d.ts +14 -0
- package/dist/components/pagination.d.ts.map +1 -0
- package/dist/components/popover.d.ts +8 -0
- package/dist/components/popover.d.ts.map +1 -0
- package/dist/components/progress.d.ts +5 -0
- package/dist/components/progress.d.ts.map +1 -0
- package/dist/components/resizable-panels.d.ts +25 -0
- package/dist/components/resizable-panels.d.ts.map +1 -0
- package/dist/components/scroll-area.d.ts +6 -0
- package/dist/components/scroll-area.d.ts.map +1 -0
- package/dist/components/select.d.ts +16 -0
- package/dist/components/select.d.ts.map +1 -0
- package/dist/components/separator.d.ts +5 -0
- package/dist/components/separator.d.ts.map +1 -0
- package/dist/components/sheet.d.ts +14 -0
- package/dist/components/sheet.d.ts.map +1 -0
- package/dist/components/showcase.d.ts +6 -0
- package/dist/components/showcase.d.ts.map +1 -0
- package/dist/components/skeleton.d.ts +3 -0
- package/dist/components/skeleton.d.ts.map +1 -0
- package/dist/components/switch.d.ts +5 -0
- package/dist/components/switch.d.ts.map +1 -0
- package/dist/components/tabs.d.ts +28 -0
- package/dist/components/tabs.d.ts.map +1 -0
- package/dist/components/textarea.d.ts +4 -0
- package/dist/components/textarea.d.ts.map +1 -0
- package/dist/components/tooltip.d.ts +8 -0
- package/dist/components/tooltip.d.ts.map +1 -0
- package/dist/components/typography.d.ts +17 -0
- package/dist/components/typography.d.ts.map +1 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/teacharium-ui.cjs.js +1992 -0
- package/dist/teacharium-ui.cjs.js.map +1 -0
- package/dist/teacharium-ui.es.js +1961 -0
- package/dist/teacharium-ui.es.js.map +1 -0
- package/dist/ui.css +1894 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@teacharium/ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A library of shadcn-based UI components for Teacharium",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"ui",
|
|
9
|
+
"components",
|
|
10
|
+
"shadcn",
|
|
11
|
+
"tailwind"
|
|
12
|
+
],
|
|
13
|
+
"main": "./dist/teacharium-ui.cjs.js",
|
|
14
|
+
"module": "./dist/teacharium-ui.es.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/teacharium-ui.es.js",
|
|
20
|
+
"require": "./dist/teacharium-ui.cjs.js"
|
|
21
|
+
},
|
|
22
|
+
"./styles": "./dist/ui.css"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"react": "^19.1.1",
|
|
29
|
+
"react-dom": "^19.1.1",
|
|
30
|
+
"embla-carousel-react": "^8.6.0",
|
|
31
|
+
"lucide-react": "^0.511.0",
|
|
32
|
+
"class-variance-authority": "^0.7.0",
|
|
33
|
+
"clsx": "^2.1.1",
|
|
34
|
+
"tailwind-merge": "^2.5.4",
|
|
35
|
+
"react-hook-form": "^7.62.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
39
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
40
|
+
"@radix-ui/react-checkbox": "^1.3.1",
|
|
41
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
42
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
43
|
+
"@radix-ui/react-dropdown-menu": "^2.1.14",
|
|
44
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-label": "^2.1.6",
|
|
46
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
47
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
48
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
49
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
50
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
51
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
52
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
53
|
+
"@radix-ui/react-tooltip": "^1.2.8"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@eslint/js": "^9.33.0",
|
|
57
|
+
"@types/react": "^19.1.10",
|
|
58
|
+
"@types/react-dom": "^19.1.7",
|
|
59
|
+
"@vitejs/plugin-react": "^5.0.0",
|
|
60
|
+
"autoprefixer": "^10.4.20",
|
|
61
|
+
"eslint": "^9.33.0",
|
|
62
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
63
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
64
|
+
"globals": "^16.3.0",
|
|
65
|
+
"postcss": "^8.4.47",
|
|
66
|
+
"react": "^19.1.1",
|
|
67
|
+
"react-dom": "^19.1.1",
|
|
68
|
+
"embla-carousel-react": "^8.6.0",
|
|
69
|
+
"lucide-react": "^0.511.0",
|
|
70
|
+
"class-variance-authority": "^0.7.0",
|
|
71
|
+
"clsx": "^2.1.1",
|
|
72
|
+
"tailwind-merge": "^2.5.4",
|
|
73
|
+
"react-hook-form": "^7.62.0",
|
|
74
|
+
"tailwindcss": "^3.4.14",
|
|
75
|
+
"typescript": "~5.8.3",
|
|
76
|
+
"typescript-eslint": "^8.39.1",
|
|
77
|
+
"vite": "^7.1.2",
|
|
78
|
+
"vite-plugin-dts": "^4.5.0"
|
|
79
|
+
},
|
|
80
|
+
"scripts": {
|
|
81
|
+
"dev": "tsc -b && vite build --watch",
|
|
82
|
+
"build": "tsc -b && vite build",
|
|
83
|
+
"lint": "eslint .",
|
|
84
|
+
"preview": "vite"
|
|
85
|
+
}
|
|
86
|
+
}
|