├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── src ├── Link.svelte ├── Route.svelte ├── Router.svelte ├── actions.js ├── contexts.js ├── history.js ├── index.js └── utils.js └── types ├── Link.d.ts ├── Route.d.ts ├── Router.d.ts ├── RouterContext.d.ts ├── actions.d.ts ├── ambient.d.ts ├── contexts.d.ts ├── functions.d.ts └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svelte linguist-language=HTML 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/package.json -------------------------------------------------------------------------------- /src/Link.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/Link.svelte -------------------------------------------------------------------------------- /src/Route.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/Route.svelte -------------------------------------------------------------------------------- /src/Router.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/Router.svelte -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/contexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/contexts.js -------------------------------------------------------------------------------- /src/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/history.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/src/utils.js -------------------------------------------------------------------------------- /types/Link.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/Link.d.ts -------------------------------------------------------------------------------- /types/Route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/Route.d.ts -------------------------------------------------------------------------------- /types/Router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/Router.d.ts -------------------------------------------------------------------------------- /types/RouterContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/RouterContext.d.ts -------------------------------------------------------------------------------- /types/actions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/actions.d.ts -------------------------------------------------------------------------------- /types/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/ambient.d.ts -------------------------------------------------------------------------------- /types/contexts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/contexts.d.ts -------------------------------------------------------------------------------- /types/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/functions.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmilTholin/svelte-routing/HEAD/types/index.d.ts --------------------------------------------------------------------------------