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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
155 changes: 155 additions & 0 deletions .svelte-kit/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@

// 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://svelte.dev/docs/kit/$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://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured).
*
* _Unlike_ [`$env/dynamic/private`](https://svelte.dev/docs/kit/$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 npm_config_user_agent: string;
export const HOSTNAME: string;
export const npm_node_execpath: string;
export const SHLVL: string;
export const npm_config_noproxy: string;
export const HOME: string;
export const OLDPWD: string;
export const npm_package_json: string;
export const HOMEBREW_PREFIX: string;
export const npm_config_userconfig: string;
export const npm_config_local_prefix: string;
export const COLOR: string;
export const INFOPATH: string;
export const _: string;
export const npm_config_prefix: string;
export const npm_config_npm_version: string;
export const npm_config_cache: string;
export const npm_config_node_gyp: string;
export const PATH: string;
export const HOMEBREW_CELLAR: string;
export const NODE: string;
export const npm_package_name: string;
export const OTEL_EXPORTER_OTLP_ENDPOINT: string;
export const npm_lifecycle_script: string;
export const AUGMENT_AGENT_WORKSPACE_IMAGE: string;
export const npm_package_version: string;
export const npm_lifecycle_event: string;
export const npm_config_globalconfig: string;
export const npm_config_init_module: string;
export const PWD: string;
export const npm_execpath: string;
export const npm_config_global_prefix: string;
export const HOMEBREW_REPOSITORY: string;
export const npm_command: string;
export const INIT_CWD: string;
export const EDITOR: string;
export const NODE_ENV: string;
}

/**
* Similar to [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/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://svelte.dev/docs/kit/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/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: {
npm_config_user_agent: string;
HOSTNAME: string;
npm_node_execpath: string;
SHLVL: string;
npm_config_noproxy: string;
HOME: string;
OLDPWD: string;
npm_package_json: string;
HOMEBREW_PREFIX: string;
npm_config_userconfig: string;
npm_config_local_prefix: string;
COLOR: string;
INFOPATH: string;
_: string;
npm_config_prefix: string;
npm_config_npm_version: string;
npm_config_cache: string;
npm_config_node_gyp: string;
PATH: string;
HOMEBREW_CELLAR: string;
NODE: string;
npm_package_name: string;
OTEL_EXPORTER_OTLP_ENDPOINT: string;
npm_lifecycle_script: string;
AUGMENT_AGENT_WORKSPACE_IMAGE: string;
npm_package_version: string;
npm_lifecycle_event: string;
npm_config_globalconfig: string;
npm_config_init_module: string;
PWD: string;
npm_execpath: string;
npm_config_global_prefix: string;
HOMEBREW_REPOSITORY: string;
npm_command: string;
INIT_CWD: string;
EDITOR: string;
NODE_ENV: string;
[key: `PUBLIC_${string}`]: undefined;
[key: `${string}`]: string | undefined;
}
}

/**
* Similar to [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/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;
}
}
36 changes: 36 additions & 0 deletions .svelte-kit/generated/client-optimized/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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')
];

export const server_loads = [];

export const dictionary = {
"/": [2],
"/domain/[domain]": [3],
"/email/[email]": [4],
"/password/[password]": [5],
"/username/[name]": [6]
};

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

reroute: (() => {}),
transport: {}
};

export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));

export const hash = false;

export const decode = (type, value) => decoders[type](value);

export { default as root } from '../root.js';
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/matchers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const matchers = {};
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/nodes/0.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/+layout.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/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-optimized/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-optimized/nodes/3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/domain/[domain]/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/nodes/4.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/email/[email]/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/nodes/5.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/password/[password]/+page.svelte";
1 change: 1 addition & 0 deletions .svelte-kit/generated/client-optimized/nodes/6.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as component } from "../../../../src/routes/username/[name]/+page.svelte";
36 changes: 36 additions & 0 deletions .svelte-kit/generated/client/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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')
];

export const server_loads = [];

export const dictionary = {
"/": [2],
"/domain/[domain]": [3],
"/email/[email]": [4],
"/password/[password]": [5],
"/username/[name]": [6]
};

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

reroute: (() => {}),
transport: {}
};

export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));

export const hash = false;

export const decode = (type, value) => decoders[type](value);

export { default as root } from '../root.js';
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 = {};
1 change: 1 addition & 0 deletions .svelte-kit/generated/client/nodes/0.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
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/domain/[domain]/+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/email/[email]/+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/password/[password]/+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/username/[name]/+page.svelte";
3 changes: 3 additions & 0 deletions .svelte-kit/generated/root.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { asClassComponent } from 'svelte/legacy';
import Root from './root.svelte';
export default asClassComponent(Root);
66 changes: 66 additions & 0 deletions .svelte-kit/generated/root.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!-- This file is generated by @sveltejs/kit β€” do not edit it! -->
<svelte:options runes={true} />
<script>
import { setContext, onMount, tick } from 'svelte';
import { browser } from '$app/environment';

// stores
let { stores, page, constructors, components = [], form, data_0 = null, data_1 = null } = $props();

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

if (browser) {
$effect.pre(() => stores.page.set(page));
} else {
stores.page.set(page);
}
$effect(() => {
stores;page;constructors;components;form;data_0;data_1;
stores.page.notify();
});

let mounted = $state(false);
let navigated = $state(false);
let title = $state(null);

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

mounted = true;
return unsubscribe;
});

const Pyramid_1=$derived(constructors[1])
</script>

{#if constructors[1]}
{@const Pyramid_0 = constructors[0]}
<!-- svelte-ignore binding_property_non_reactive -->
<Pyramid_0 bind:this={components[0]} data={data_0} {form}>
<!-- svelte-ignore binding_property_non_reactive -->
<Pyramid_1 bind:this={components[1]} data={data_1} {form} />
</Pyramid_0>

{:else}
{@const Pyramid_0 = constructors[0]}
<!-- svelte-ignore binding_property_non_reactive -->
<Pyramid_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