perspectives WIP

This commit is contained in:
Jan Prochazka
2022-06-16 17:05:42 +02:00
parent ff4dd18c1b
commit 75bf0e53fc
8 changed files with 183 additions and 4 deletions

View File

@@ -1,11 +1,14 @@
<script lang="ts">
import PerspectiveView from '../perspectives/PerspectiveView.svelte';
import usePerspectiveConfig from '../utility/usePerspectiveConfig';
export let tabid;
export let conid;
export let database;
export let schemaName;
export let pureName;
const config = usePerspectiveConfig(tabid);
</script>
<PerspectiveView {conid} {database} {schemaName} {pureName} />
<PerspectiveView {conid} {database} {schemaName} {pureName} config={$config} setConfig={config.update} />