diff --git a/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte b/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte index 23ca5d8981..0a9d5c75ac 100644 --- a/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte +++ b/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte @@ -1,6 +1,5 @@ - -
- {#if prop_definition.type !== 'event'} -
{prop_name}
- store.setComponentProp(prop_name, v)} /> - {/if} -
- - diff --git a/packages/builder/src/components/userInterface/PropsView.svelte b/packages/builder/src/components/userInterface/PropsView.svelte deleted file mode 100644 index caf79eb4ce..0000000000 --- a/packages/builder/src/components/userInterface/PropsView.svelte +++ /dev/null @@ -1,52 +0,0 @@ - - -
- -
- {#if componentDef} - {#each Object.entries(componentDef.props) as [prop_name, prop_def], index} - {#if prop_def !== 'event'} -
- - -
- {/if} - {/each} - {/if} -
- -
- - diff --git a/packages/builder/src/components/userInterface/StateBindingControl.svelte b/packages/builder/src/components/userInterface/StateBindingControl.svelte deleted file mode 100644 index c37b0b52e9..0000000000 --- a/packages/builder/src/components/userInterface/StateBindingControl.svelte +++ /dev/null @@ -1,63 +0,0 @@ - - -
- {#if type === 'bool'} -
- onChanged(!value)} /> -
- {:else if type === 'models'} - - {:else if type === 'options' || type === 'models'} - - {/if} -
- -