svelte-navigator
svelte-navigator copied to clipboard
Simple, accessible routing for Svelte
How do you do a 404 page for routes that don't exist? I"ve tried a Route with no path (just as svelte-routing suggest) with no success ``` ``` any idea?
I have the following app: ``` //App.svelte import { Route, Router } from 'svelte-navigator' import Temp from './Temp.svelte' ``` ``` //Temp.svelte import { useLocation } from 'svelte-navigator' const location$ =...
V4 should make the router usable for more use cases. I've been planing on adding a hash based history for a while now. But there are a few things standing...
Add Router modules that are bound to a specific history: - BrowserRouter using the HTML5 History API - HashRouter using the hash fragment - MemoryRouter for testing and embedded widgets...
Svelte Navigator gives you a lot of accessibility improvements out of the box, but for an even better experience the user needs to tailor focus management manually. A common and...
Some CSS should be added to the examples, to show some basic techniques on how to style an app in an accessible way. Focus outlines should be explained, as they...
**Describe the bug** See #3: > when navigating to a Route, that is not already rendered, the browser will check for a jump mark immediately, but of course rendering the...
Including svelte transitions in a child component of a `Route` throws runtime errors when you navigate back from that route. Here's a REPL that repros the issue: https://svelte.dev/repl/fbf4cecab51842758c2e3e5a746a7dc3?version=3.50.1 1. Go...
Hi, I'm new with svelte. In Angular I have lazy loading together with a login guard. My question is how I can combine private route together with lazy laoding with...
When i try to npm install your package I got many errors because i need is-ci and husky to be present on my machine (they are not) and even after...