16 lines
445 B
Svelte
16 lines
445 B
Svelte
<script lang="ts">
|
|
import type { Schema } from '$lib/common'
|
|
import type { EditableSchemaFormUi } from '$lib/components/custom_ui'
|
|
|
|
import EditableSchemaForm from './EditableSchemaForm.svelte'
|
|
|
|
interface Props {
|
|
schema: Schema | any
|
|
customUi?: EditableSchemaFormUi | undefined
|
|
}
|
|
|
|
let { schema = $bindable(), customUi = undefined }: Props = $props()
|
|
</script>
|
|
|
|
<EditableSchemaForm bind:schema uiOnly {customUi} editTab="inputEditor" />
|