Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
245 changes: 245 additions & 0 deletions .svelte-kit/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@

// this file is generated — do not edit it


/// <reference types="@sveltejs/kit" />

/**
* Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured).
*
* _Unlike_ [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination.
*
* ```ts
* import { API_KEY } from '$env/static/private';
* ```
*
* Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed:
*
* ```
* MY_FEATURE_FLAG=""
* ```
*
* You can override `.env` values from the command line like so:
*
* ```bash
* MY_FEATURE_FLAG="enabled" npm run dev
* ```
*/
declare module '$env/static/private' {
export const ALLUSERSPROFILE: string;
export const APPDATA: string;
export const CHROME_CRASHPAD_PIPE_NAME: string;
export const COLOR: string;
export const COLORTERM: string;
export const CommonProgramFiles: string;
export const CommonProgramW6432: string;
export const COMPUTERNAME: string;
export const ComSpec: string;
export const DriverData: string;
export const EDITOR: string;
export const EFC_9224: string;
export const GIT_ASKPASS: string;
export const HOME: string;
export const HOMEDRIVE: string;
export const HOMEPATH: string;
export const INIT_CWD: string;
export const LANG: string;
export const LOCALAPPDATA: string;
export const LOGONSERVER: string;
export const NODE: string;
export const NODE_ENV: string;
export const NODE_EXE: string;
export const NPM_CLI_JS: string;
export const npm_command: string;
export const npm_config_cache: string;
export const npm_config_globalconfig: string;
export const npm_config_global_prefix: string;
export const npm_config_init_module: string;
export const npm_config_local_prefix: string;
export const npm_config_metrics_registry: string;
export const npm_config_node_gyp: string;
export const npm_config_noproxy: string;
export const npm_config_npm_version: string;
export const npm_config_prefix: string;
export const npm_config_userconfig: string;
export const npm_config_user_agent: string;
export const npm_execpath: string;
export const npm_lifecycle_event: string;
export const npm_lifecycle_script: string;
export const npm_node_execpath: string;
export const npm_package_json: string;
export const npm_package_name: string;
export const npm_package_version: string;
export const NPM_PREFIX_NPM_CLI_JS: string;
export const NUMBER_OF_PROCESSORS: string;
export const OculusBase: string;
export const OneDrive: string;
export const OneDriveConsumer: string;
export const ORIGINAL_XDG_CURRENT_DESKTOP: string;
export const OS: string;
export const Path: string;
export const PATHEXT: string;
export const PROCESSOR_ARCHITECTURE: string;
export const PROCESSOR_IDENTIFIER: string;
export const PROCESSOR_LEVEL: string;
export const PROCESSOR_REVISION: string;
export const ProgramData: string;
export const ProgramFiles: string;
export const ProgramW6432: string;
export const PROMPT: string;
export const PSModulePath: string;
export const PUBLIC: string;
export const SESSIONNAME: string;
export const SystemDrive: string;
export const SystemRoot: string;
export const TEMP: string;
export const TERM_PROGRAM: string;
export const TERM_PROGRAM_VERSION: string;
export const TMP: string;
export const USERDOMAIN: string;
export const USERDOMAIN_ROAMINGPROFILE: string;
export const USERNAME: string;
export const USERPROFILE: string;
export const VBOX_HWVIRTEX_IGNORE_SVM_IN_USE: string;
export const VBOX_MSI_INSTALL_PATH: string;
export const VSCODE_GIT_ASKPASS_EXTRA_ARGS: string;
export const VSCODE_GIT_ASKPASS_MAIN: string;
export const VSCODE_GIT_ASKPASS_NODE: string;
export const VSCODE_GIT_IPC_HANDLE: string;
export const VSCODE_INJECTION: string;
export const windir: string;
}

/**
* Similar to [`$env/static/private`](https://kit.svelte.dev/docs/modules#$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
*
* Values are replaced statically at build time.
*
* ```ts
* import { PUBLIC_BASE_URL } from '$env/static/public';
* ```
*/
declare module '$env/static/public' {

}

/**
* This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/main/packages/adapter-node) (or running [`vite preview`](https://kit.svelte.dev/docs/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured).
*
* This module cannot be imported into client-side code.
*
* Dynamic environment variables cannot be used during prerendering.
*
* ```ts
* import { env } from '$env/dynamic/private';
* console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE);
* ```
*
* > In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter.
*/
declare module '$env/dynamic/private' {
export const env: {
ALLUSERSPROFILE: string;
APPDATA: string;
CHROME_CRASHPAD_PIPE_NAME: string;
COLOR: string;
COLORTERM: string;
CommonProgramFiles: string;
CommonProgramW6432: string;
COMPUTERNAME: string;
ComSpec: string;
DriverData: string;
EDITOR: string;
EFC_9224: string;
GIT_ASKPASS: string;
HOME: string;
HOMEDRIVE: string;
HOMEPATH: string;
INIT_CWD: string;
LANG: string;
LOCALAPPDATA: string;
LOGONSERVER: string;
NODE: string;
NODE_ENV: string;
NODE_EXE: string;
NPM_CLI_JS: string;
npm_command: string;
npm_config_cache: string;
npm_config_globalconfig: string;
npm_config_global_prefix: string;
npm_config_init_module: string;
npm_config_local_prefix: string;
npm_config_metrics_registry: string;
npm_config_node_gyp: string;
npm_config_noproxy: string;
npm_config_npm_version: string;
npm_config_prefix: string;
npm_config_userconfig: string;
npm_config_user_agent: string;
npm_execpath: string;
npm_lifecycle_event: string;
npm_lifecycle_script: string;
npm_node_execpath: string;
npm_package_json: string;
npm_package_name: string;
npm_package_version: string;
NPM_PREFIX_NPM_CLI_JS: string;
NUMBER_OF_PROCESSORS: string;
OculusBase: string;
OneDrive: string;
OneDriveConsumer: string;
ORIGINAL_XDG_CURRENT_DESKTOP: string;
OS: string;
Path: string;
PATHEXT: string;
PROCESSOR_ARCHITECTURE: string;
PROCESSOR_IDENTIFIER: string;
PROCESSOR_LEVEL: string;
PROCESSOR_REVISION: string;
ProgramData: string;
ProgramFiles: string;
ProgramW6432: string;
PROMPT: string;
PSModulePath: string;
PUBLIC: string;
SESSIONNAME: string;
SystemDrive: string;
SystemRoot: string;
TEMP: string;
TERM_PROGRAM: string;
TERM_PROGRAM_VERSION: string;
TMP: string;
USERDOMAIN: string;
USERDOMAIN_ROAMINGPROFILE: string;
USERNAME: string;
USERPROFILE: string;
VBOX_HWVIRTEX_IGNORE_SVM_IN_USE: string;
VBOX_MSI_INSTALL_PATH: string;
VSCODE_GIT_ASKPASS_EXTRA_ARGS: string;
VSCODE_GIT_ASKPASS_MAIN: string;
VSCODE_GIT_ASKPASS_NODE: string;
VSCODE_GIT_IPC_HANDLE: string;
VSCODE_INJECTION: string;
windir: string;
[key: `PUBLIC_${string}`]: undefined;
[key: `${string}`]: string | undefined;
}
}

/**
* Similar to [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
*
* Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead.
*
* Dynamic environment variables cannot be used during prerendering.
*
* ```ts
* import { env } from '$env/dynamic/public';
* console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE);
* ```
*/
declare module '$env/dynamic/public' {
export const env: {
[key: `PUBLIC_${string}`]: string | undefined;
}
}
29 changes: 29 additions & 0 deletions .svelte-kit/generated/client/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
export { matchers } from './matchers.js';

export const nodes = [
() => import('./nodes/0'),
() => import('./nodes/1'),
() => import('./nodes/2'),
() => import('./nodes/3'),
() => import('./nodes/4'),
() => import('./nodes/5'),
() => import('./nodes/6'),
() => import('./nodes/7')
];

export const server_loads = [];

export const dictionary = {
"/": [~2],
"/kaart": [~3],
"/kennisbank": [~4],
"/kennisbank/[slug]": [~5],
"/projecten": [~6],
"/projecten/[slug]": [~7]
};

export const hooks = {
handleError: (({ error }) => { console.error(error) }),
};

export { default as root } from '../root.svelte';
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/matchers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const matchers = {};
3 changes: 3 additions & 0 deletions .svelte-kit/generated/client/nodes/0.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as universal from "../../../../src/routes/+layout.js";
export { universal };
export { default as component } from "../../../../src/routes/+layout.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/1.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/kaart/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/4.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/kennisbank/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/5.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/kennisbank/[slug]/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/6.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/projecten/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/7.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/projecten/[slug]/+page.svelte";
57 changes: 57 additions & 0 deletions .svelte-kit/generated/root.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!-- This file is generated by @sveltejs/kit — do not edit it! -->

<script>
import { setContext, afterUpdate, onMount, tick } from 'svelte';
import { browser } from '$app/environment';

// stores
export let stores;
export let page;

export let constructors;
export let components = [];
export let form;
export let data_0 = null;
export let data_1 = null;

if (!browser) {
setContext('__svelte__', stores);
}

$: stores.page.set(page);
afterUpdate(stores.page.notify);

let mounted = false;
let navigated = false;
let title = null;

onMount(() => {
const unsubscribe = stores.page.subscribe(() => {
if (mounted) {
navigated = true;
tick().then(() => {
title = document.title || 'untitled page';
});
}
});

mounted = true;
return unsubscribe;
});
</script>

{#if constructors[1]}
<svelte:component this={constructors[0]} bind:this={components[0]} data={data_0}>
<svelte:component this={constructors[1]} bind:this={components[1]} data={data_1} {form} />
</svelte:component>
{:else}
<svelte:component this={constructors[0]} bind:this={components[0]} data={data_0} {form} />
{/if}

{#if mounted}
<div id="svelte-announcer" aria-live="assertive" aria-atomic="true" style="position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px">
{#if navigated}
{title}
{/if}
</div>
{/if}
Loading