From 1533759c47799efdbd37f4b79c27ff1aa3a68e10 Mon Sep 17 00:00:00 2001 From: Thomas Richter Date: Thu, 29 Jan 2026 14:27:05 +0100 Subject: [PATCH] fix(02-04): improve swipe-to-delete with direct touch handlers - Replace svelte-gestures with native touch event handlers - Add invalidateAll() after save/delete for seamless list updates - Add $effect to sync edit state when entry prop changes - Improve swipe animation with isSwiping state tracking --- src/lib/components/EntryCard.svelte | 61 +++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 17 deletions(-) diff --git a/src/lib/components/EntryCard.svelte b/src/lib/components/EntryCard.svelte index 7101d12..d428b0f 100644 --- a/src/lib/components/EntryCard.svelte +++ b/src/lib/components/EntryCard.svelte @@ -1,8 +1,8 @@