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.
- package/README.md +197 -177
- package/index.js +7 -0
- package/package.json +1 -1
- package/template/README.md +73 -73
- package/template/components.json +22 -22
- package/template/eslint.config.js +30 -23
- package/template/index.html +13 -13
- package/template/package.json +53 -51
- package/template/pnpm-lock.yaml +1521 -1766
- package/template/src/App.tsx +27 -13
- package/template/src/components/admin-page-components/activity-chart.tsx +80 -0
- package/template/src/components/admin-page-components/dashboard-header.tsx +38 -0
- package/template/src/components/admin-page-components/dashboard-layout.tsx +23 -0
- package/template/src/components/admin-page-components/dashboard-sales.tsx +67 -0
- package/template/src/components/admin-page-components/dashboard-sidebar.tsx +81 -0
- package/template/src/components/admin-page-components/revenu-chart.tsx +69 -0
- package/template/src/components/admin-page-components/stat-cards.tsx +50 -0
- package/template/src/components/home-page-components/header.tsx +2 -2
- package/template/src/components/ui/accordion.tsx +64 -64
- package/template/src/components/ui/alert.tsx +66 -66
- package/template/src/components/ui/avatar.tsx +51 -51
- package/template/src/components/ui/badge.tsx +46 -46
- package/template/src/components/ui/button-group.tsx +83 -83
- package/template/src/components/ui/button.tsx +60 -60
- package/template/src/components/ui/calendar.tsx +210 -211
- package/template/src/components/ui/card.tsx +92 -92
- package/template/src/components/ui/checkbox.tsx +30 -30
- package/template/src/components/ui/collapsible.tsx +31 -31
- package/template/src/components/ui/dialog.tsx +141 -141
- package/template/src/components/ui/input.tsx +21 -0
- package/template/src/components/ui/select.tsx +185 -185
- package/template/src/components/ui/separator.tsx +26 -26
- package/template/src/components/ui/sonner.tsx +38 -38
- package/template/src/components/ui/spinner.tsx +16 -16
- package/template/src/components/ui/table.tsx +114 -114
- package/template/src/components/ui/toggle.tsx +45 -45
- package/template/src/components/ui/tooltip.tsx +59 -59
- package/template/src/lib/utils.ts +6 -6
- package/template/src/main.tsx +10 -10
- package/template/src/pages/Dashboard/Dashboard.tsx +32 -0
- package/template/tsconfig.app.json +31 -28
- package/template/tsconfig.json +12 -14
- package/template/tsconfig.node.json +26 -26
- package/template/vite.config.ts +13 -14
package/template/index.html
CHANGED
|
@@ -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>
|
package/template/package.json
CHANGED
|
@@ -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.
|
|
14
|
-
"@radix-ui/react-avatar": "^1.1.
|
|
15
|
-
"@radix-ui/react-checkbox": "^1.3.
|
|
16
|
-
"@radix-ui/react-collapsible": "^1.1.
|
|
17
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
18
|
-
"@radix-ui/react-select": "^2.
|
|
19
|
-
"@radix-ui/react-separator": "^1.1.
|
|
20
|
-
"@radix-ui/react-slot": "^1.2.
|
|
21
|
-
"@radix-ui/react-toggle": "^1.1.
|
|
22
|
-
"@radix-ui/react-tooltip": "^1.2.
|
|
23
|
-
"@tailwindcss/vite": "^4.
|
|
24
|
-
"class-variance-authority": "^0.7.1",
|
|
25
|
-
"clsx": "^2.1.1",
|
|
26
|
-
"date-fns": "^4.
|
|
27
|
-
"lucide-react": "^
|
|
28
|
-
"next-themes": "^0.4.6",
|
|
29
|
-
"react": "^19.
|
|
30
|
-
"react-day-picker": "^
|
|
31
|
-
"react-dom": "^19.
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"@
|
|
40
|
-
"@types/
|
|
41
|
-
"@
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"eslint
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
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
|
+
}
|