Compare commits
2 Commits
201829a523
...
af1424edc2
Author | SHA1 | Date | |
---|---|---|---|
af1424edc2 | |||
f01229bc0f |
1738
package-lock.json
generated
1738
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
37
package.json
37
package.json
@ -15,33 +15,32 @@
|
|||||||
"@astrojs/svelte": "^7.0.13",
|
"@astrojs/svelte": "^7.0.13",
|
||||||
"@iconify-json/fa-brands": "^1.2.1",
|
"@iconify-json/fa-brands": "^1.2.1",
|
||||||
"@iconify-json/heroicons": "^1.2.2",
|
"@iconify-json/heroicons": "^1.2.2",
|
||||||
"@iconify/svelte": "^4.2.0",
|
"@iconify/svelte": "^5.0.0",
|
||||||
"@inox-tools/runtime-logger": "^0.4.2",
|
"@inox-tools/runtime-logger": "^0.5.1",
|
||||||
"@tailwindcss/vite": "^4.1.3",
|
"@tailwindcss/vite": "^4.1.7",
|
||||||
"astro": "^5.7.10",
|
"astro": "^5.7.13",
|
||||||
"astro-icon": "^1.1.5",
|
"astro-icon": "^1.1.5",
|
||||||
"bcrypt": "^5.1.1",
|
"bcrypt": "^6.0.0",
|
||||||
"daisyui": "^5.0.25",
|
"daisyui": "^5.0.35",
|
||||||
"drizzle-orm": "^0.41.0",
|
"drizzle-orm": "^0.43.1",
|
||||||
"mysql2": "^3.14.0",
|
"mysql2": "^3.14.1",
|
||||||
"nanostores": "^1.0.1",
|
"nanostores": "^1.0.1",
|
||||||
"sass-embedded": "^1.87.0",
|
"sass-embedded": "^1.89.0",
|
||||||
"skinview3d": "^3.3.0",
|
"skinview3d": "^3.4.1",
|
||||||
"tailwindcss": "^4.1.3",
|
"tailwindcss": "^4.1.7",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.8.3"
|
||||||
"zod": "^3.24.2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bcrypt": "^5.0.2",
|
"@types/bcrypt": "^5.0.2",
|
||||||
"@typescript-eslint/parser": "^8.32.1",
|
"@typescript-eslint/parser": "^8.32.1",
|
||||||
"eslint": "^9.26.0",
|
"eslint": "^9.27.0",
|
||||||
"eslint-plugin-astro": "^1.3.1",
|
"eslint-plugin-astro": "^1.3.1",
|
||||||
"eslint-plugin-svelte": "^3.7.0",
|
"eslint-plugin-svelte": "^3.8.1",
|
||||||
"globals": "^16.1.0",
|
"globals": "^16.1.0",
|
||||||
"prettier": "3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"prettier-plugin-astro": "0.14.1",
|
"prettier-plugin-astro": "^0.14.1",
|
||||||
"prettier-plugin-svelte": "^3.3.3",
|
"prettier-plugin-svelte": "^3.4.0",
|
||||||
"svelte": "^5.30.1",
|
"svelte": "^5.30.2",
|
||||||
"typescript-eslint": "^8.32.1"
|
"typescript-eslint": "^8.32.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -78,8 +78,23 @@
|
|||||||
<Input type="text" label="Name" bind:value={name} required />
|
<Input type="text" label="Name" bind:value={name} required />
|
||||||
</div>
|
</div>
|
||||||
<div class="grid grid-cols-2 gap-4">
|
<div class="grid grid-cols-2 gap-4">
|
||||||
<UserSearch label="Spieler 1" bind:value={memberOne.username} required mustMatch />
|
<UserSearch
|
||||||
<UserSearch label="Spieler 2" bind:value={memberTwo.username} required />
|
label="Spieler 1"
|
||||||
|
onSubmit={(user) => {
|
||||||
|
if (user) memberOne = user;
|
||||||
|
}}
|
||||||
|
bind:value={memberOne.username}
|
||||||
|
required
|
||||||
|
mustMatch
|
||||||
|
/>
|
||||||
|
<UserSearch
|
||||||
|
label="Spieler 2"
|
||||||
|
onSubmit={(user) => {
|
||||||
|
if (user) memberTwo = user;
|
||||||
|
}}
|
||||||
|
bind:value={memberTwo.username}
|
||||||
|
required
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid grid-cols-2 gap-4">
|
<div class="grid grid-cols-2 gap-4">
|
||||||
<Input type="datetime-local" label="Zuletzt gejoined" bind:value={lastJoined}></Input>
|
<Input type="datetime-local" label="Zuletzt gejoined" bind:value={lastJoined}></Input>
|
||||||
|
Reference in New Issue
Block a user