Skip to content

Commit 091aca3

Browse files
authored
Finish projects dashboard and management (#804)
1 parent 4c768b9 commit 091aca3

21 files changed

Lines changed: 4341 additions & 502 deletions

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@ dist-ssr
3333
*.ntvs*
3434
*.njsproj
3535
*.sln
36-
*.sw?
36+
*.sw?
37+
38+
.claude
39+
.playwright
40+
.playwright-cli

.oxlintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
// Shadcn/ui components
2222
"src/components/ui",
2323
"!src/components/ui/theme-provider.tsx",
24-
"!src/components/ui/carousel.tsx"
24+
"!src/components/ui/carousel.tsx",
25+
"!src/components/ui/data-table.tsx"
2526
],
2627
"overrides": [
2728
{

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default defineConfig([
1818
"src/components/ui",
1919
"!src/components/ui/theme-provider.tsx",
2020
"!src/components/ui/carousel.tsx",
21+
"!src/components/ui/data-table.tsx"
2122
]),
2223

2324
{

package.json

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@base-ui/react": "^1.5.0",
12+
"@base-ui/react": "^1.6.0",
13+
"@dnd-kit/dom": "^0.5.0",
14+
"@dnd-kit/helpers": "^0.5.0",
15+
"@dnd-kit/react": "^0.5.0",
1316
"@fontsource-variable/raleway": "^5.2.8",
1417
"@icons-pack/react-simple-icons": "^13.13.0",
1518
"@schedule-x/calendar": "^4.6.0",
@@ -18,52 +21,55 @@
1821
"@schedule-x/scroll-controller": "^4.6.0",
1922
"@schedule-x/theme-shadcn": "^4.6.0",
2023
"@tanstack/react-form": "^1.33.0",
21-
"@tanstack/react-query": "^5.101.0",
22-
"@tanstack/react-router": "^1.170.15",
23-
"axios": "^1.18.0",
24+
"@tanstack/react-query": "^5.101.2",
25+
"@tanstack/react-router": "^1.170.17",
26+
"@tanstack/react-table": "^8.21.3",
27+
"axios": "^1.18.1",
2428
"class-variance-authority": "^0.7.1",
2529
"clsx": "^2.1.1",
2630
"embla-carousel-react": "^8.6.0",
27-
"lucide-react": "^1.17.0",
31+
"hash-wasm": "^4.12.0",
32+
"lucide-react": "^1.23.0",
2833
"next-themes": "^0.4.6",
2934
"react": "^19.2.7",
3035
"react-dom": "^19.2.7",
36+
"react-dropzone": "^15.0.0",
3137
"sonner": "^2.0.7",
3238
"tailwind-merge": "^3.6.0",
33-
"temporal-polyfill": "^1.0.0",
39+
"temporal-polyfill": "^1.0.1",
3440
"zod": "^4.4.3"
3541
},
3642
"devDependencies": {
3743
"@rolldown/plugin-babel": "^0.2.3",
38-
"@tailwindcss/vite": "^4.3.0",
39-
"@tanstack/eslint-plugin-query": "^5.101.0",
44+
"@tailwindcss/vite": "^4.3.2",
45+
"@tanstack/eslint-plugin-query": "^5.101.2",
4046
"@tanstack/eslint-plugin-router": "^1.162.0",
41-
"@tanstack/router-plugin": "^1.168.18",
47+
"@tanstack/router-plugin": "^1.168.19",
4248
"@types/babel__core": "^7.20.5",
43-
"@types/node": "^25.9.3",
49+
"@types/node": "^26.1.1",
4450
"@types/react": "^19.2.17",
4551
"@types/react-dom": "^19.2.3",
46-
"@vitejs/plugin-react": "^6.0.2",
52+
"@vitejs/plugin-react": "^6.0.3",
4753
"babel-plugin-react-compiler": "^1.0.0",
48-
"eslint": "^10.4.0",
49-
"eslint-plugin-better-tailwindcss": "^4.6.0",
50-
"eslint-plugin-oxlint": "^1.70.0",
51-
"eslint-plugin-perfectionist": "^5.9.1",
52-
"eslint-plugin-react-dom": "^5.9.0",
54+
"eslint": "^10.6.0",
55+
"eslint-plugin-better-tailwindcss": "^4.6.1",
56+
"eslint-plugin-oxlint": "^1.73.0",
57+
"eslint-plugin-perfectionist": "^5.10.0",
58+
"eslint-plugin-react-dom": "^5.12.0",
5359
"eslint-plugin-react-hooks": "^7.1.1",
54-
"eslint-plugin-react-jsx": "^5.9.0",
55-
"eslint-plugin-react-naming-convention": "^5.9.0",
56-
"eslint-plugin-react-x": "^5.9.0",
57-
"globals": "^17.6.0",
58-
"oxfmt": "^0.57.0",
59-
"oxlint": "^1.70.0",
60+
"eslint-plugin-react-jsx": "^5.12.0",
61+
"eslint-plugin-react-naming-convention": "^5.12.0",
62+
"eslint-plugin-react-x": "^5.12.0",
63+
"globals": "^17.7.0",
64+
"oxfmt": "^0.58.0",
65+
"oxlint": "^1.73.0",
6066
"oxlint-tsgolint": "^0.24.0",
6167
"react-scan": "^0.5.7",
62-
"shadcn": "^4.11.0",
63-
"tailwindcss": "^4.3.0",
68+
"shadcn": "^4.13.0",
69+
"tailwindcss": "^4.3.2",
6470
"tw-animate-css": "^1.4.0",
65-
"typescript": "^6.0.2",
66-
"typescript-eslint": "^8.61.1",
67-
"vite": "^8.0.16"
71+
"typescript": "^6.0.3",
72+
"typescript-eslint": "^8.62.1",
73+
"vite": "^8.1.3"
6874
}
6975
}

0 commit comments

Comments
 (0)