create-reactivite 1.0.3 → 1.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.
Files changed (44) hide show
  1. package/README.md +197 -177
  2. package/index.js +7 -0
  3. package/package.json +1 -1
  4. package/template/README.md +73 -73
  5. package/template/components.json +22 -22
  6. package/template/eslint.config.js +30 -23
  7. package/template/index.html +13 -13
  8. package/template/package.json +53 -51
  9. package/template/pnpm-lock.yaml +1521 -1766
  10. package/template/src/App.tsx +27 -13
  11. package/template/src/components/admin-page-components/activity-chart.tsx +80 -0
  12. package/template/src/components/admin-page-components/dashboard-header.tsx +38 -0
  13. package/template/src/components/admin-page-components/dashboard-layout.tsx +23 -0
  14. package/template/src/components/admin-page-components/dashboard-sales.tsx +67 -0
  15. package/template/src/components/admin-page-components/dashboard-sidebar.tsx +81 -0
  16. package/template/src/components/admin-page-components/revenu-chart.tsx +69 -0
  17. package/template/src/components/admin-page-components/stat-cards.tsx +50 -0
  18. package/template/src/components/home-page-components/header.tsx +2 -2
  19. package/template/src/components/ui/accordion.tsx +64 -64
  20. package/template/src/components/ui/alert.tsx +66 -66
  21. package/template/src/components/ui/avatar.tsx +51 -51
  22. package/template/src/components/ui/badge.tsx +46 -46
  23. package/template/src/components/ui/button-group.tsx +83 -83
  24. package/template/src/components/ui/button.tsx +60 -60
  25. package/template/src/components/ui/calendar.tsx +210 -211
  26. package/template/src/components/ui/card.tsx +92 -92
  27. package/template/src/components/ui/checkbox.tsx +30 -30
  28. package/template/src/components/ui/collapsible.tsx +31 -31
  29. package/template/src/components/ui/dialog.tsx +141 -141
  30. package/template/src/components/ui/input.tsx +21 -0
  31. package/template/src/components/ui/select.tsx +185 -185
  32. package/template/src/components/ui/separator.tsx +26 -26
  33. package/template/src/components/ui/sonner.tsx +38 -38
  34. package/template/src/components/ui/spinner.tsx +16 -16
  35. package/template/src/components/ui/table.tsx +114 -114
  36. package/template/src/components/ui/toggle.tsx +45 -45
  37. package/template/src/components/ui/tooltip.tsx +59 -59
  38. package/template/src/lib/utils.ts +6 -6
  39. package/template/src/main.tsx +10 -10
  40. package/template/src/pages/Dashboard/Dashboard.tsx +32 -0
  41. package/template/tsconfig.app.json +31 -28
  42. package/template/tsconfig.json +12 -14
  43. package/template/tsconfig.node.json +26 -26
  44. package/template/vite.config.ts +13 -14
@@ -1,13 +1,13 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>reactivite-plate</title>
8
- </head>
9
- <body>
10
- <div id="root"></div>
11
- <script type="module" src="/src/main.tsx"></script>
12
- </body>
13
- </html>
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>reactivite-plate</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>
@@ -1,51 +1,53 @@
1
- {
2
- "name": "reactivite-plate",
3
- "private": true,
4
- "version": "0.0.0",
5
- "type": "module",
6
- "scripts": {
7
- "dev": "vite",
8
- "build": "tsc -b && vite build",
9
- "lint": "eslint .",
10
- "preview": "vite preview"
11
- },
12
- "dependencies": {
13
- "@radix-ui/react-accordion": "^1.2.12",
14
- "@radix-ui/react-avatar": "^1.1.10",
15
- "@radix-ui/react-checkbox": "^1.3.3",
16
- "@radix-ui/react-collapsible": "^1.1.12",
17
- "@radix-ui/react-dialog": "^1.1.15",
18
- "@radix-ui/react-select": "^2.2.6",
19
- "@radix-ui/react-separator": "^1.1.7",
20
- "@radix-ui/react-slot": "^1.2.3",
21
- "@radix-ui/react-toggle": "^1.1.10",
22
- "@radix-ui/react-tooltip": "^1.2.8",
23
- "@tailwindcss/vite": "^4.1.14",
24
- "class-variance-authority": "^0.7.1",
25
- "clsx": "^2.1.1",
26
- "date-fns": "^4.1.0",
27
- "lucide-react": "^0.545.0",
28
- "next-themes": "^0.4.6",
29
- "react": "^19.1.1",
30
- "react-day-picker": "^9.11.1",
31
- "react-dom": "^19.1.1",
32
- "sonner": "^2.0.7",
33
- "tailwind-merge": "^3.3.1",
34
- "tailwindcss": "^4.1.14"
35
- },
36
- "devDependencies": {
37
- "@eslint/js": "^9.36.0",
38
- "@types/node": "^24.6.0",
39
- "@types/react": "^19.1.16",
40
- "@types/react-dom": "^19.1.9",
41
- "@vitejs/plugin-react": "^5.0.4",
42
- "eslint": "^9.36.0",
43
- "eslint-plugin-react-hooks": "^5.2.0",
44
- "eslint-plugin-react-refresh": "^0.4.22",
45
- "globals": "^16.4.0",
46
- "tw-animate-css": "^1.4.0",
47
- "typescript": "~5.9.3",
48
- "typescript-eslint": "^8.45.0",
49
- "vite": "^7.1.7"
50
- }
51
- }
1
+ {
2
+ "name": "reactivite-plate",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "tsc -b && vite build",
9
+ "lint": "eslint .",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "@radix-ui/react-accordion": "^1.2.13",
14
+ "@radix-ui/react-avatar": "^1.1.12",
15
+ "@radix-ui/react-checkbox": "^1.3.4",
16
+ "@radix-ui/react-collapsible": "^1.1.13",
17
+ "@radix-ui/react-dialog": "^1.1.16",
18
+ "@radix-ui/react-select": "^2.3.0",
19
+ "@radix-ui/react-separator": "^1.1.9",
20
+ "@radix-ui/react-slot": "^1.2.5",
21
+ "@radix-ui/react-toggle": "^1.1.11",
22
+ "@radix-ui/react-tooltip": "^1.2.9",
23
+ "@tailwindcss/vite": "^4.3.0",
24
+ "class-variance-authority": "^0.7.1",
25
+ "clsx": "^2.1.1",
26
+ "date-fns": "^4.4.0",
27
+ "lucide-react": "^1.17.0",
28
+ "next-themes": "^0.4.6",
29
+ "react": "^19.2.7",
30
+ "react-day-picker": "^10.0.1",
31
+ "react-dom": "^19.2.7",
32
+ "react-router": "^7.17.0",
33
+ "recharts": "^3.8.1",
34
+ "sonner": "^2.0.7",
35
+ "tailwind-merge": "^3.6.0",
36
+ "tailwindcss": "^4.3.0"
37
+ },
38
+ "devDependencies": {
39
+ "@eslint/js": "^10.0.1",
40
+ "@types/node": "^25.9.3",
41
+ "@types/react": "^19.2.17",
42
+ "@types/react-dom": "^19.2.3",
43
+ "@vitejs/plugin-react": "^6.0.2",
44
+ "eslint": "^10.4.1",
45
+ "eslint-plugin-react-hooks": "^7.1.1",
46
+ "eslint-plugin-react-refresh": "^0.5.2",
47
+ "globals": "^17.6.0",
48
+ "tw-animate-css": "^1.4.0",
49
+ "typescript": "~6.0.3",
50
+ "typescript-eslint": "^8.61.0",
51
+ "vite": "^8.0.16"
52
+ }
53
+ }