mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-25 16:02:11 +00:00
72109b01d7
* hide resource * more customizations * disable tooltips globally & hide other elemetns * hide variable picker in autogenerated ui too * change to disableX and context * all * all * all * all * all * all * fix * fix * fix --------- Co-authored-by: smuun <silas@athenaintelligence.ai>
16 lines
456 B
Svelte
16 lines
456 B
Svelte
<script lang="ts">
|
|
import type { Schema } from '$lib/common'
|
|
import type { EditableSchemaFormUi } from '$lib/components/custom_ui'
|
|
|
|
import EditableSchemaForm from './EditableSchemaForm.svelte'
|
|
|
|
export let schema: Schema | any
|
|
export let customUi: EditableSchemaFormUi | undefined = undefined
|
|
|
|
export function setSchema(newSchema: Schema) {
|
|
schema = newSchema
|
|
}
|
|
</script>
|
|
|
|
<EditableSchemaForm bind:schema uiOnly {customUi} editTab="inputEditor" />
|