Skip to content

Commit

Permalink
Merge pull request #103 from openscript-ch/38-design-visual-elements-…
Browse files Browse the repository at this point in the history
…and-user-interactions

38 design visual elements and user interactions
  • Loading branch information
openscript authored Oct 24, 2024
2 parents 516b41c + 64c7090 commit 33f959b
Show file tree
Hide file tree
Showing 58 changed files with 1,620 additions and 168 deletions.
6 changes: 6 additions & 0 deletions .changeset/forty-tips-jam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@quassel/frontend": patch
"@quassel/ui": patch
---

Administrator navigation
7 changes: 7 additions & 0 deletions .changeset/large-emus-beg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@quassel/frontend": patch
"@quassel/mockup": patch
"@quassel/ui": patch
---

Add authentication user interface
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM mcr.microsoft.com/devcontainers/typescript-node:1-20-bookworm

RUN su node -c "npm install -g [email protected].1"
RUN su node -c "npm install -g [email protected].2"
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
}
}
2 changes: 2 additions & 0 deletions apps/backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ lerna-debug.log*
# temp directory
.temp
.tmp
/temp

# Runtime data
pids
Expand All @@ -54,3 +55,4 @@ pids

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

16 changes: 16 additions & 0 deletions apps/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quassel</title>
<link rel="icon" href="/favicon.ico" />
<style>
html {
height: 100%;
}

body {
margin: 0;
padding: 0;
min-height: 100%;
}

#root {
min-height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
Expand Down
5 changes: 5 additions & 0 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@
"test": "vitest"
},
"dependencies": {
"@mantine/form": "^7.13.3",
"@nanostores/i18n": "^0.12.2",
"@nanostores/persistent": "^0.10.2",
"@nanostores/react": "^0.8.0",
"@quassel/ui": "workspace:*",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-router": "^1.58.15",
"nanostores": "^0.11.3",
"openapi-fetch": "^0.12.2",
"openapi-react-query": "^0.2.0",
"react": "^18.3.1",
Expand Down
Empty file removed apps/frontend/public/.gitkeep
Empty file.
Binary file added apps/frontend/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/frontend/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/frontend/public/favicon.ico
Binary file not shown.
Loading

0 comments on commit 33f959b

Please sign in to comment.