diff --git a/src/lib/views/SchemaMatter.svelte b/src/lib/views/SchemaMatter.svelte deleted file mode 100644 index bac8345..0000000 --- a/src/lib/views/SchemaMatter.svelte +++ /dev/null @@ -1,131 +0,0 @@ - - -
-

Schema Mapper

-
-
-
-
-

Transformations

- - - - -
-
- {#each table.transformations as transformation} -

- {transformation.name} - {#if transformation.required} - required - {/if} -

- -

{transformation.description}

-
- -
-
- {/each} -
-
-
-

Input Schema

-
- {#each Object.entries(table.sourceSchema) as [key, value]} - {key}:{value} - {/each} -
-
-
-

Output Schema

-
- {#each Object.entries(table.schema) as [key, value]} - {key}:{value} - {/each} -
-
-
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 3b97358..dba33c3 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -3,7 +3,7 @@ import '@fontsource/inter'; import '../app.css'; import settingsStore, { Theme } from '$lib/store/SettingsStore'; - import notificationStore from '$lib/store/notificationStore'; + import notificationStore, { NotificationType } from '$lib/store/notificationStore'; import { browser } from '$app/environment'; import Notification from '$lib/components/Notification.svelte'; @@ -36,12 +36,11 @@
-
+
{#each $notificationStore as notification} {/each}
-
diff --git a/src/routes/graph/[slug]/+page.svelte b/src/routes/graph/[slug]/+page.svelte index 3f3e9e0..3bd6abd 100644 --- a/src/routes/graph/[slug]/+page.svelte +++ b/src/routes/graph/[slug]/+page.svelte @@ -59,7 +59,7 @@ {#if $filterStore.graphOptions instanceof PlaneGraphModel} {/if} - + {:else} {/if}