chore: format
📊 Benchmark the Runtime / benchmark (push) Successful in 1m21s
🚀 Lint & Test & Deploy / quality (push) Failing after 54s
🚀 Lint & Test & Deploy / test-unit (push) Successful in 30s
🚀 Lint & Test & Deploy / test-e2e (push) Successful in 1m52s
🚀 Lint & Test & Deploy / deploy (push) Has been skipped

This commit is contained in:
2026-05-07 17:40:41 +02:00
parent 3a78ad5ee3
commit 36f02cabd3
5 changed files with 262 additions and 255 deletions
+7 -2
View File
@@ -46,7 +46,10 @@
}
function handleKeydown(e: KeyboardEvent) {
if (e.key === 'Enter') { e.preventDefault(); confirm(); }
if (e.key === 'Enter') {
e.preventDefault();
confirm();
}
}
function handleCancel(e: Event) {
@@ -61,7 +64,9 @@
class="m-auto bg-layer-1 border border-outline rounded-md p-0 text-text max-w-md w-full backdrop:bg-black/50"
oncancel={handleCancel}
onkeydown={handleKeydown}
onclick={(e) => { if (e.target === dialogEl) cancel(); }}
onclick={(e) => {
if (e.target === dialogEl) cancel();
}}
>
<div class="px-6 py-5 flex flex-col gap-3">
<h3 class="m-0 text-sm font-semibold">{title}</h3>
+1 -1
View File
@@ -9,13 +9,13 @@ export { default as InputVec3 } from './inputs/InputVec3.svelte';
export { default as SocketTable } from './inputs/SocketTable.svelte';
export { default as Button } from './Button.svelte';
export { default as ConfirmDialog } from './ConfirmDialog.svelte';
export { default as Details } from './Details.svelte';
export { default as JsonViewer } from './JsonViewer.svelte';
export { default as ShortCut } from './ShortCut.svelte';
export { default as Spinner } from './Spinner.svelte';
export { default as Toast } from './Toast.svelte';
export { toast } from './toast.svelte';
export { default as ConfirmDialog } from './ConfirmDialog.svelte';
import Input from './Input.svelte';
export default Input;