|
|
@ -4,7 +4,6 @@ |
|
|
import DrawerBindableInput from "../../common/bindings/DrawerBindableInput.svelte" |
|
|
import DrawerBindableInput from "../../common/bindings/DrawerBindableInput.svelte" |
|
|
import AutomationBindingPanel from "../../common/bindings/ServerBindingPanel.svelte" |
|
|
import AutomationBindingPanel from "../../common/bindings/ServerBindingPanel.svelte" |
|
|
import { createEventDispatcher } from "svelte" |
|
|
import { createEventDispatcher } from "svelte" |
|
|
import ModalBindableInput from "components/common/bindings/ModalBindableInput.svelte" |
|
|
|
|
|
import { automationStore } from "builderStore" |
|
|
import { automationStore } from "builderStore" |
|
|
import RowSelectorTypes from "./RowSelectorTypes.svelte" |
|
|
import RowSelectorTypes from "./RowSelectorTypes.svelte" |
|
|
|
|
|
|
|
|
@ -107,14 +106,15 @@ |
|
|
{onChange} |
|
|
{onChange} |
|
|
/> |
|
|
/> |
|
|
{:else} |
|
|
{:else} |
|
|
<ModalBindableInput |
|
|
<DrawerBindableInput |
|
|
placeholder={placeholders[schema.type]} |
|
|
placeholder={placeholders[schema.type]} |
|
|
value={value[field]} |
|
|
|
|
|
panel={AutomationBindingPanel} |
|
|
panel={AutomationBindingPanel} |
|
|
label={field} |
|
|
value={value[field]} |
|
|
type={value.customType} |
|
|
|
|
|
on:change={e => onChange(e, field, schema.type)} |
|
|
on:change={e => onChange(e, field, schema.type)} |
|
|
|
|
|
label={field} |
|
|
|
|
|
type="string" |
|
|
{bindings} |
|
|
{bindings} |
|
|
|
|
|
fillWidth={true} |
|
|
allowJS={false} |
|
|
allowJS={false} |
|
|
/> |
|
|
/> |
|
|
{/if} |
|
|
{/if} |
|
|
|