Skip to content

Commit 7fbf0c0

Browse files
authored
Merge pull request #311 from code0-tech/feat/#309
New dashboard design concept
2 parents 50f9267 + 10a5ae8 commit 7fbf0c0

187 files changed

Lines changed: 7657 additions & 6164 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SAGITTARIUS_GRAPHQL_URL=http://localhost:80/graphql
55
SAGITTARIUS_CABLE_URL=http://localhost:80/cable
66

77
NEXT_PUBLIC_SCULPTOR_VERSION=0.0.0
8-
NEXT_PUBLIC_PICTOR_VERSION=0.11.1
8+
NEXT_PUBLIC_PICTOR_VERSION=0.14.0
99
NEXT_PUBLIC_ALLOWED_REDIRECT_DOMAINS=*.code0.tech,*.codezero.build
1010

1111
NEXT_PUBLIC_OTEL_SERVICE_NAME=#"sculptor-client"

next.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ const nextConfig: NextConfig = {
3838
]
3939
},
4040
reactStrictMode: true,
41-
reactCompiler: true,
41+
// Enable React Compiler in production builds only. In dev it forces a
42+
// per-file Babel pass (the compiler is a Babel plugin) which is the
43+
// dominant cost of Turbopack dev compile time and memory here.
44+
reactCompiler: process.env.NODE_ENV === "production",
4245
turbopack: {
4346
resolveAlias: {
4447
"@edition": path.resolve(__dirname, `src/packages/${EDITION}/src`),

package-lock.json

Lines changed: 1816 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
},
1616
"dependencies": {
1717
"@apollo/client": "^4.0.9",
18-
"@code0-tech/pictor": "^0.11.1",
19-
"@code0-tech/triangulum": "^0.27.0",
18+
"@code0-tech/pictor": "^0.14.0",
19+
"@code0-tech/triangulum": "^0.27.1",
2020
"@codemirror/lang-javascript": "^6.2.5",
2121
"@codemirror/lint": "^6.9.5",
2222
"@icons-pack/react-simple-icons": "^13.13.0",
@@ -34,6 +34,7 @@
3434
"@uidotdev/usehooks": "^2.4.1",
3535
"@vercel/otel": "^2.1.1",
3636
"@xyflow/react": "^12.11.0",
37+
"border-beam": "^1.3.0",
3738
"date-fns": "^4.1.0",
3839
"graphql": "^16.12.0",
3940
"graphql-ruby-client": "^1.15.1",
@@ -45,6 +46,8 @@
4546
"react": "19.2.6",
4647
"react-dom": "19.2.6",
4748
"react-hotkeys-hook": "^5.2.4",
49+
"react-markdown": "^10.1.0",
50+
"remark-gfm": "^4.0.1",
4851
"rxjs": "^7.8.2",
4952
"sass": "^1.93.3",
5053
"use-debounce": "^10.1.1"

src/app/(dashboard)/@bar/default.tsx

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {MemberAddPage} from "@edition/member/pages/MemberAddPage";
2+
3+
export default MemberAddPage
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {ModuleConfigurationPage} from "@ce-internal/module/pages/ModuleConfigurationPage";
2+
3+
export default ModuleConfigurationPage
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {ProjectSettingsPage} from "@edition/project/pages/ProjectSettingsPage";
2+
3+
export default ProjectSettingsPage
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {NamespaceProjectsCreatePage} from "@edition/namespace/pages/NamespaceProjectsCreatePage";
2+
3+
export default NamespaceProjectsCreatePage
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {RoleSettingsPage} from "@edition/role/pages/RoleSettingsPage";
2+
3+
export default RoleSettingsPage

0 commit comments

Comments
 (0)