diff --git a/src/data/data.db b/src/data/data.db deleted file mode 100644 index 9073ddb..0000000 Binary files a/src/data/data.db and /dev/null differ diff --git a/src/view/.svelte-kit/ambient.d.ts b/src/view/.svelte-kit/ambient.d.ts deleted file mode 100644 index e5543f8..0000000 --- a/src/view/.svelte-kit/ambient.d.ts +++ /dev/null @@ -1,271 +0,0 @@ - -// this file is generated — do not edit it - - -/// - -/** - * 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: - * - * ```sh - * MY_FEATURE_FLAG="enabled" npm run dev - * ``` - */ -declare module '$env/static/private' { - export const IMSETTINGS_INTEGRATE_DESKTOP: string; - export const SHELL: string; - export const npm_command: string; - export const SESSION_MANAGER: string; - export const WINDOWID: string; - export const COLORTERM: string; - export const XDG_CONFIG_DIRS: string; - export const KGLOBALACCELD_PLATFORM: string; - export const XDG_SESSION_PATH: string; - export const HISTCONTROL: string; - export const XDG_MENU_PREFIX: string; - export const HISTSIZE: string; - export const HOSTNAME: string; - export const ICEAUTHORITY: string; - export const LANGUAGE: string; - export const NODE: string; - export const DOTNET_ROOT: string; - export const SSH_AUTH_SOCK: string; - export const FLYCTL_INSTALL: string; - export const SHELL_SESSION_ID: string; - export const MEMORY_PRESSURE_WRITE: string; - export const npm_config_local_prefix: string; - export const XMODIFIERS: string; - export const DESKTOP_SESSION: string; - export const SSH_AGENT_PID: string; - export const GTK_RC_FILES: string; - export const GDK_CORE_DEVICE_EVENTS: string; - export const GPG_TTY: string; - export const EDITOR: string; - export const XDG_SEAT: string; - export const PWD: string; - export const NIX_PROFILES: string; - export const LOGNAME: string; - export const XDG_SESSION_DESKTOP: string; - export const XDG_SESSION_TYPE: string; - export const SYSTEMD_EXEC_PID: string; - export const XAUTHORITY: string; - export const SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS: string; - export const XKB_DEFAULT_MODEL: string; - export const GTK2_RC_FILES: string; - export const HOME: string; - export const SSH_ASKPASS: string; - export const LANG: string; - export const LS_COLORS: string; - export const XDG_CURRENT_DESKTOP: string; - export const KONSOLE_DBUS_SERVICE: string; - export const MEMORY_PRESSURE_WATCH: string; - export const WAYLAND_DISPLAY: string; - export const NIX_SSL_CERT_FILE: string; - export const KONSOLE_DBUS_SESSION: string; - export const PROFILEHOME: string; - export const XDG_SEAT_PATH: string; - export const INVOCATION_ID: string; - export const KONSOLE_VERSION: string; - export const MANAGERPID: string; - export const IMSETTINGS_MODULE: string; - export const DOTNET_BUNDLE_EXTRACT_BASE_DIR: string; - export const STEAM_FRAME_FORCE_CLOSE: string; - export const KDE_SESSION_UID: string; - export const npm_lifecycle_script: string; - export const MOZ_GMP_PATH: string; - export const NVM_DIR: string; - export const XKB_DEFAULT_LAYOUT: string; - export const XDG_SESSION_CLASS: string; - export const TERM: string; - export const LESSOPEN: string; - export const USER: string; - export const COLORFGBG: string; - export const QT_WAYLAND_RECONNECT: string; - export const KDE_SESSION_VERSION: string; - export const PAM_KWALLET5_LOGIN: string; - export const DISPLAY: string; - export const npm_lifecycle_event: string; - export const SHLVL: string; - export const XDG_VTNR: string; - export const XDG_SESSION_ID: string; - export const npm_config_user_agent: string; - export const npm_execpath: string; - export const XDG_RUNTIME_DIR: string; - export const DEBUGINFOD_URLS: string; - export const npm_package_json: string; - export const BUN_INSTALL: string; - export const DEBUGINFOD_IMA_CERT_PATH: string; - export const KDEDIRS: string; - export const JOURNAL_STREAM: string; - export const XDG_DATA_DIRS: string; - export const KDE_FULL_SESSION: string; - export const PATH: string; - export const DBUS_SESSION_BUS_ADDRESS: string; - export const KDE_APPLICATIONS_AS_SCOPE: string; - export const MAIL: string; - export const npm_node_execpath: string; - export const OLDPWD: string; - export const GOPATH: string; - export const KONSOLE_DBUS_WINDOW: string; - export const _: 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. - * - * ```ts - * import { env } from '$env/dynamic/private'; - * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); - * ``` - * - * > [!NOTE] 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: { - IMSETTINGS_INTEGRATE_DESKTOP: string; - SHELL: string; - npm_command: string; - SESSION_MANAGER: string; - WINDOWID: string; - COLORTERM: string; - XDG_CONFIG_DIRS: string; - KGLOBALACCELD_PLATFORM: string; - XDG_SESSION_PATH: string; - HISTCONTROL: string; - XDG_MENU_PREFIX: string; - HISTSIZE: string; - HOSTNAME: string; - ICEAUTHORITY: string; - LANGUAGE: string; - NODE: string; - DOTNET_ROOT: string; - SSH_AUTH_SOCK: string; - FLYCTL_INSTALL: string; - SHELL_SESSION_ID: string; - MEMORY_PRESSURE_WRITE: string; - npm_config_local_prefix: string; - XMODIFIERS: string; - DESKTOP_SESSION: string; - SSH_AGENT_PID: string; - GTK_RC_FILES: string; - GDK_CORE_DEVICE_EVENTS: string; - GPG_TTY: string; - EDITOR: string; - XDG_SEAT: string; - PWD: string; - NIX_PROFILES: string; - LOGNAME: string; - XDG_SESSION_DESKTOP: string; - XDG_SESSION_TYPE: string; - SYSTEMD_EXEC_PID: string; - XAUTHORITY: string; - SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS: string; - XKB_DEFAULT_MODEL: string; - GTK2_RC_FILES: string; - HOME: string; - SSH_ASKPASS: string; - LANG: string; - LS_COLORS: string; - XDG_CURRENT_DESKTOP: string; - KONSOLE_DBUS_SERVICE: string; - MEMORY_PRESSURE_WATCH: string; - WAYLAND_DISPLAY: string; - NIX_SSL_CERT_FILE: string; - KONSOLE_DBUS_SESSION: string; - PROFILEHOME: string; - XDG_SEAT_PATH: string; - INVOCATION_ID: string; - KONSOLE_VERSION: string; - MANAGERPID: string; - IMSETTINGS_MODULE: string; - DOTNET_BUNDLE_EXTRACT_BASE_DIR: string; - STEAM_FRAME_FORCE_CLOSE: string; - KDE_SESSION_UID: string; - npm_lifecycle_script: string; - MOZ_GMP_PATH: string; - NVM_DIR: string; - XKB_DEFAULT_LAYOUT: string; - XDG_SESSION_CLASS: string; - TERM: string; - LESSOPEN: string; - USER: string; - COLORFGBG: string; - QT_WAYLAND_RECONNECT: string; - KDE_SESSION_VERSION: string; - PAM_KWALLET5_LOGIN: string; - DISPLAY: string; - npm_lifecycle_event: string; - SHLVL: string; - XDG_VTNR: string; - XDG_SESSION_ID: string; - npm_config_user_agent: string; - npm_execpath: string; - XDG_RUNTIME_DIR: string; - DEBUGINFOD_URLS: string; - npm_package_json: string; - BUN_INSTALL: string; - DEBUGINFOD_IMA_CERT_PATH: string; - KDEDIRS: string; - JOURNAL_STREAM: string; - XDG_DATA_DIRS: string; - KDE_FULL_SESSION: string; - PATH: string; - DBUS_SESSION_BUS_ADDRESS: string; - KDE_APPLICATIONS_AS_SCOPE: string; - MAIL: string; - npm_node_execpath: string; - OLDPWD: string; - GOPATH: string; - KONSOLE_DBUS_WINDOW: string; - _: 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. - * - * ```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; - } -} diff --git a/src/view/.svelte-kit/generated/client/app.js b/src/view/.svelte-kit/generated/client/app.js deleted file mode 100644 index c03cfe5..0000000 --- a/src/view/.svelte-kit/generated/client/app.js +++ /dev/null @@ -1,28 +0,0 @@ -export { matchers } from './matchers.js'; - -export const nodes = [ - () => import('./nodes/0'), - () => import('./nodes/1'), - () => import('./nodes/2') -]; - -export const server_loads = [0]; - -export const dictionary = { - "/": [2] - }; - -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'; \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/client/matchers.js b/src/view/.svelte-kit/generated/client/matchers.js deleted file mode 100644 index f6bd30a..0000000 --- a/src/view/.svelte-kit/generated/client/matchers.js +++ /dev/null @@ -1 +0,0 @@ -export const matchers = {}; \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/client/nodes/0.js b/src/view/.svelte-kit/generated/client/nodes/0.js deleted file mode 100644 index fed1375..0000000 --- a/src/view/.svelte-kit/generated/client/nodes/0.js +++ /dev/null @@ -1 +0,0 @@ -export { default as component } from "../../../../src/routes/+layout.svelte"; \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/client/nodes/1.js b/src/view/.svelte-kit/generated/client/nodes/1.js deleted file mode 100644 index 07372a6..0000000 --- a/src/view/.svelte-kit/generated/client/nodes/1.js +++ /dev/null @@ -1 +0,0 @@ -export { default as component } from "../../../../../../node_modules/@sveltejs/kit/src/runtime/components/svelte-5/error.svelte"; \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/client/nodes/2.js b/src/view/.svelte-kit/generated/client/nodes/2.js deleted file mode 100644 index 1cb4f85..0000000 --- a/src/view/.svelte-kit/generated/client/nodes/2.js +++ /dev/null @@ -1 +0,0 @@ -export { default as component } from "../../../../src/routes/+page.svelte"; \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/root.js b/src/view/.svelte-kit/generated/root.js deleted file mode 100644 index 4d1e892..0000000 --- a/src/view/.svelte-kit/generated/root.js +++ /dev/null @@ -1,3 +0,0 @@ -import { asClassComponent } from 'svelte/legacy'; -import Root from './root.svelte'; -export default asClassComponent(Root); \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/root.svelte b/src/view/.svelte-kit/generated/root.svelte deleted file mode 100644 index acbdd37..0000000 --- a/src/view/.svelte-kit/generated/root.svelte +++ /dev/null @@ -1,66 +0,0 @@ - - - - -{#if constructors[1]} - {@const Pyramid_0 = constructors[0]} - - - - - - -{:else} - {@const Pyramid_0 = constructors[0]} - - - -{/if} - -{#if mounted} -
- {#if navigated} - {title} - {/if} -
-{/if} \ No newline at end of file diff --git a/src/view/.svelte-kit/generated/server/internal.js b/src/view/.svelte-kit/generated/server/internal.js deleted file mode 100644 index 452f0cc..0000000 --- a/src/view/.svelte-kit/generated/server/internal.js +++ /dev/null @@ -1,52 +0,0 @@ - -import root from '../root.js'; -import { set_building, set_prerendering } from '__sveltekit/environment'; -import { set_assets } from '__sveltekit/paths'; -import { set_manifest, set_read_implementation } from '__sveltekit/server'; -import { set_private_env, set_public_env } from '../../../../../node_modules/@sveltejs/kit/src/runtime/shared-server.js'; - -export const options = { - app_template_contains_nonce: false, - csp: {"mode":"auto","directives":{"upgrade-insecure-requests":false,"block-all-mixed-content":false},"reportOnly":{"upgrade-insecure-requests":false,"block-all-mixed-content":false}}, - csrf_check_origin: true, - csrf_trusted_origins: [], - embedded: false, - env_public_prefix: 'PUBLIC_', - env_private_prefix: '', - hash_routing: false, - hooks: null, // added lazily, via `get_hooks` - preload_strategy: "modulepreload", - root, - service_worker: false, - service_worker_options: undefined, - templates: { - app: ({ head, body, assets, nonce, env }) => "\n\n\t\n\t\t\n\t\t\n\t\t" + head + "\n\t\n\t\n\t\t
" + body + "
\n\t\n\n", - error: ({ status, message }) => "\n\n\t\n\t\t\n\t\t" + message + "\n\n\t\t\n\t\n\t\n\t\t
\n\t\t\t" + status + "\n\t\t\t
\n\t\t\t\t

" + message + "

\n\t\t\t
\n\t\t
\n\t\n\n" - }, - version_hash: "hxbxsl" -}; - -export async function get_hooks() { - let handle; - let handleFetch; - let handleError; - let handleValidationError; - let init; - - - let reroute; - let transport; - - - return { - handle, - handleFetch, - handleError, - handleValidationError, - init, - reroute, - transport - }; -} - -export { set_assets, set_building, set_manifest, set_prerendering, set_private_env, set_public_env, set_read_implementation }; diff --git a/src/view/.svelte-kit/non-ambient.d.ts b/src/view/.svelte-kit/non-ambient.d.ts deleted file mode 100644 index 705dcff..0000000 --- a/src/view/.svelte-kit/non-ambient.d.ts +++ /dev/null @@ -1,42 +0,0 @@ - -// this file is generated — do not edit it - - -declare module "svelte/elements" { - export interface HTMLAttributes { - 'data-sveltekit-keepfocus'?: true | '' | 'off' | undefined | null; - 'data-sveltekit-noscroll'?: true | '' | 'off' | undefined | null; - 'data-sveltekit-preload-code'?: - | true - | '' - | 'eager' - | 'viewport' - | 'hover' - | 'tap' - | 'off' - | undefined - | null; - 'data-sveltekit-preload-data'?: true | '' | 'hover' | 'tap' | 'off' | undefined | null; - 'data-sveltekit-reload'?: true | '' | 'off' | undefined | null; - 'data-sveltekit-replacestate'?: true | '' | 'off' | undefined | null; - } -} - -export {}; - - -declare module "$app/types" { - export interface AppTypes { - RouteId(): "/" | "/[...slugs]"; - RouteParams(): { - "/[...slugs]": { slugs: string } - }; - LayoutParams(): { - "/": { slugs?: string }; - "/[...slugs]": { slugs: string } - }; - Pathname(): "/" | `/${string}` & {} | `/${string}/` & {}; - ResolvedPathname(): `${"" | `/${string}`}${ReturnType}`; - Asset(): "/robots.txt" | string & {}; - } -} \ No newline at end of file diff --git a/src/view/.svelte-kit/tsconfig.json b/src/view/.svelte-kit/tsconfig.json deleted file mode 100644 index 64aad07..0000000 --- a/src/view/.svelte-kit/tsconfig.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "compilerOptions": { - "paths": { - "$lib": [ - "../src/lib" - ], - "$lib/*": [ - "../src/lib/*" - ], - "$app/types": [ - "./types/index.d.ts" - ] - }, - "rootDirs": [ - "..", - "./types" - ], - "verbatimModuleSyntax": true, - "isolatedModules": true, - "lib": [ - "esnext", - "DOM", - "DOM.Iterable" - ], - "moduleResolution": "bundler", - "module": "esnext", - "noEmit": true, - "target": "esnext" - }, - "include": [ - "ambient.d.ts", - "non-ambient.d.ts", - "./types/**/$types.d.ts", - "../vite.config.js", - "../vite.config.ts", - "../src/**/*.js", - "../src/**/*.ts", - "../src/**/*.svelte", - "../tests/**/*.js", - "../tests/**/*.ts", - "../tests/**/*.svelte" - ], - "exclude": [ - "../node_modules/**", - "../src/service-worker.js", - "../src/service-worker/**/*.js", - "../src/service-worker.ts", - "../src/service-worker/**/*.ts", - "../src/service-worker.d.ts", - "../src/service-worker/**/*.d.ts" - ] -} \ No newline at end of file diff --git a/src/view/.svelte-kit/types/route_meta_data.json b/src/view/.svelte-kit/types/route_meta_data.json deleted file mode 100644 index 7720ac1..0000000 --- a/src/view/.svelte-kit/types/route_meta_data.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "/": [ - "src/routes/+layout.server.ts", - "src/routes/+layout.server.ts" - ], - "/[...slugs]": [ - "src/routes/[...slugs]/+server.ts" - ] -} \ No newline at end of file diff --git a/src/view/.svelte-kit/types/src/routes/$types.d.ts b/src/view/.svelte-kit/types/src/routes/$types.d.ts deleted file mode 100644 index b06d4c7..0000000 --- a/src/view/.svelte-kit/types/src/routes/$types.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type * as Kit from '@sveltejs/kit'; - -type Expand = T extends infer O ? { [K in keyof O]: O[K] } : never; -// @ts-ignore -type MatcherParam = M extends (param : string) => param is infer U ? U extends string ? U : string : string; -type RouteParams = { }; -type RouteId = '/'; -type MaybeWithVoid = {} extends T ? T | void : T; -export type RequiredKeys = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T]; -type OutputDataShape = MaybeWithVoid> & Partial> & Record> -type EnsureDefined = T extends null | undefined ? {} : T; -type OptionalUnion, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude]?: never } & U : never; -export type Snapshot = Kit.Snapshot; -type PageParentData = EnsureDefined; -type LayoutRouteId = RouteId | "/" | null -type LayoutParams = RouteParams & { } -type LayoutServerParentData = EnsureDefined<{}>; -type LayoutParentData = EnsureDefined<{}>; - -export type PageServerData = null; -export type PageData = Expand; -export type PageProps = { params: RouteParams; data: PageData } -export type LayoutServerLoad = OutputDataShape> = Kit.ServerLoad; -export type LayoutServerLoadEvent = Parameters[0]; -export type LayoutServerData = Expand>>>>>; -export type LayoutData = Expand & EnsureDefined>; -export type LayoutProps = { params: LayoutParams; data: LayoutData; children: import("svelte").Snippet } -export type RequestEvent = Kit.RequestEvent; \ No newline at end of file diff --git a/src/view/.svelte-kit/types/src/routes/[...slugs]/$types.d.ts b/src/view/.svelte-kit/types/src/routes/[...slugs]/$types.d.ts deleted file mode 100644 index 7198b54..0000000 --- a/src/view/.svelte-kit/types/src/routes/[...slugs]/$types.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type * as Kit from '@sveltejs/kit'; - -type Expand = T extends infer O ? { [K in keyof O]: O[K] } : never; -// @ts-ignore -type MatcherParam = M extends (param : string) => param is infer U ? U extends string ? U : string : string; -type RouteParams = { slugs: string }; -type RouteId = '/[...slugs]'; - -export type EntryGenerator = () => Promise> | Array; -export type RequestHandler = Kit.RequestHandler; -export type RequestEvent = Kit.RequestEvent; \ No newline at end of file diff --git a/src/view/.svelte-kit/types/src/routes/proxy+layout.server.ts b/src/view/.svelte-kit/types/src/routes/proxy+layout.server.ts deleted file mode 100644 index 342d895..0000000 --- a/src/view/.svelte-kit/types/src/routes/proxy+layout.server.ts +++ /dev/null @@ -1,12 +0,0 @@ -// @ts-nocheck -import { api } from "$lib"; -import type { ActivityStandards } from "../../../services/calculator/main"; -import type { LayoutServerLoad } from "./$types"; - -export const load = async ({ }: Parameters[0]) => { - const { data: allStandardsRaw } = await api.data.standards.get(); - - return { - allStandardsRaw: allStandardsRaw as ActivityStandards - }; -};