allowed databases config

This commit is contained in:
Jan Prochazka
2024-08-08 14:14:13 +02:00
parent 7c8156fbb9
commit 61b9fd9210
7 changed files with 80 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts">
import { getFormContext } from './FormProviderCore.svelte';
import FormTextAreaFieldRaw from './FormTextAreaFieldRaw.svelte';
export let label;
export let name;
export let templateProps = {};
export let focused = false;
const { template } = getFormContext();
</script>
<svelte:component this={template} type="text" {label} {...templateProps}>
<FormTextAreaFieldRaw {name} {...$$restProps} {focused} />
</svelte:component>