From d5d6ea5e33c000538850f1d7fe0b68eac50f075c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Tue, 2 Sep 2025 13:25:56 -0600 Subject: [PATCH] chore: Minor demo updates --- demo/src/App.svelte | 2 +- demo/src/lib/views/hash-routing/HashRoutingView.svelte | 8 ++++---- demo/src/lib/views/path-routing/views/HomeView.svelte | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/demo/src/App.svelte b/demo/src/App.svelte index b82424e..73e1303 100644 --- a/demo/src/App.svelte +++ b/demo/src/App.svelte @@ -10,7 +10,7 @@ let showNavTooltip = $state(false); - // Show toolti

{ const timer = setTimeout(() => { showNavTooltip = true; diff --git a/demo/src/lib/views/hash-routing/HashRoutingView.svelte b/demo/src/lib/views/hash-routing/HashRoutingView.svelte index 032178f..733f4c5 100644 --- a/demo/src/lib/views/hash-routing/HashRoutingView.svelte +++ b/demo/src/lib/views/hash-routing/HashRoutingView.svelte @@ -300,7 +300,7 @@ Parsed routes:

@@ -335,7 +335,7 @@ {#if parsedRoutes.main}
- Current route: {parsedRoutes.main} + Current route: {parsedRoutes.main}
{/if}
@@ -380,8 +380,8 @@
💡 Key points:
    -
  • location.url.hash is reactive and updates automatically
  • -
  • location.hashPaths provides parsed hash routes
  • +
  • location.url.hash reactive updates automatically
  • +
  • location.hashPaths reactive provides parsed hash routes
  • $derived() creates reactive computed values
  • ✨ No manual event listeners needed!
diff --git a/demo/src/lib/views/path-routing/views/HomeView.svelte b/demo/src/lib/views/path-routing/views/HomeView.svelte index 2ffe1dc..aa7ef37 100644 --- a/demo/src/lib/views/path-routing/views/HomeView.svelte +++ b/demo/src/lib/views/path-routing/views/HomeView.svelte @@ -290,7 +290,7 @@

🎮 Ready to Try Path Routing?

- Click the "Demo" link in the navigation above to see path routing in action! + Click the "Start Demo" link in the navigation above to see path routing in action! Watch how the URL changes as you navigate between different sections.