Skip to content
Draft
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
89674b4
Initial inertia rendering
brianjhanson Oct 17, 2025
1a5668c
A lot of foot work for rendering the dashboard
brianjhanson Oct 20, 2025
f97d3a9
When toggling between views, hide the sidebar
brianjhanson Oct 24, 2025
750fd31
Implement the Craft Support widget
brianjhanson Oct 24, 2025
05ef7f4
Remove widgetId
brianjhanson Oct 24, 2025
d6a7c50
Remove unused variable
brianjhanson Oct 24, 2025
0db80ec
Merge branch '6.x' of github.com:craftcms/cms into feature/inertia-da…
brianjhanson Oct 27, 2025
90d44f3
Creating and updating basic widets
brianjhanson Oct 28, 2025
a6b7501
Add Feed Widget
brianjhanson Oct 28, 2025
17210ea
Resize and move functionality
brianjhanson Oct 29, 2025
0abe16f
Merge branch '6.x' of github.com:craftcms/cms into feature/inertia-da…
brianjhanson Oct 29, 2025
808dc7f
Remove compat.css and forms.css
brianjhanson Oct 29, 2025
737b24e
Move dependencies around a bit
brianjhanson Oct 29, 2025
6974783
Replace `getActionUrl` call
brianjhanson Oct 29, 2025
f5ca682
Remove @theme customization
brianjhanson Oct 29, 2025
e267c35
Merge branch '6.x' of github.com:craftcms/cms into feature/inertia-da…
brianjhanson Oct 31, 2025
e24237a
Update widget routes
brianjhanson Oct 31, 2025
91e8c9f
Attempt legacy routes
brianjhanson Oct 31, 2025
fd1b695
Legacy routes working
brianjhanson Oct 31, 2025
aeb4782
Handle backwards compat
brianjhanson Oct 31, 2025
64cca56
Rearrange routes so they follow the same structure as the main package
riasvdv Oct 31, 2025
b13b9a9
Merge branch 'feature/inertia-dashboard' of github.com:craftcms/cms i…
brianjhanson Oct 31, 2025
e4b7c8b
Fix a few bugs
brianjhanson Oct 31, 2025
04878d9
Fix PHPStan errors
brianjhanson Oct 31, 2025
e179701
Remove extra test
brianjhanson Oct 31, 2025
19c73f5
Merge branch '6.x' of github.com:craftcms/cms into feature/inertia-da…
brianjhanson Nov 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"elvanto/litemoji": "~4.3.0",
"enshrined/svg-sanitize": "~0.22.0",
"guzzlehttp/guzzle": "^7.2.0",
"inertiajs/inertia-laravel": "^2.0",
"laravel/framework": "^12.21.0",
"league/uri": "^7.0",
"moneyphp/money": "^4.0",
Expand Down
72 changes: 71 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

154 changes: 150 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"main": "webpack.config.js",
"type": "module",
"scripts": {
"check-prettier": "prettier --check .",
"fix-prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky",
"lint:styles": "stylelint \"src/**/*.scss\"",
"prebuild:bundles": "npm run fix-prettier",
"prebuild:bundles": "npm run prettier:fix",
"build:bundles": "npm run build -w @craftcms/asset-bundles",
"build": "vite build",
"types:check": "vue-tsc --noEmit",
"dev": "vite"
},
"workspaces": [
Expand All @@ -20,12 +21,12 @@
"node": ">=22"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@total-typescript/tsconfig": "^1.0.4",
"@vitejs/plugin-vue": "^6.0.1",
"@craftcms/playwright": "file:packages/craftcms-playwright",
"@craftcms/webpack": "file:packages/craftcms-webpack",
"@playwright/test": "^1.52.0",
"@tailwindcss/vite": "^4.1.14",
"@total-typescript/tsconfig": "^1.0.4",
"@vitejs/plugin-vue": "^6.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"lit": "^3.3.1",
Expand All @@ -35,7 +36,6 @@
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"stylelint-use-logical-spec": "^5.0.1",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vite-tsconfig-paths": "^5.1.4",
Expand All @@ -45,8 +45,12 @@
"@awesome.me/kit-ddaed3f5c5": "^1.0.41"
},
"dependencies": {
"@craftcms/cp": "file:../npm-packages/packages/cp",
"@inertiajs/vue3": "^2.2.7",
"@vueuse/core": "^13.9.0",
"axios": "^1.12.2",
"laravel-vite-plugin": "^2.0.1",
"tailwindcss": "^4.1.14",
"vue": "^3.5.22"
}
}
Loading
Loading