Update view components button in screen section to function
This commit is contained in:
parent
01bfb86276
commit
bff36f499a
|
@ -21,17 +21,23 @@
|
||||||
)
|
)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<SettingsPanel
|
{#if $selectedComponent}
|
||||||
title={$selectedComponent._instanceName}
|
<SettingsPanel
|
||||||
icon={componentDefinition.icon}
|
title={$selectedComponent._instanceName}
|
||||||
>
|
icon={componentDefinition.icon}
|
||||||
<ComponentSettingsSection
|
>
|
||||||
{componentInstance}
|
<ComponentSettingsSection
|
||||||
{componentDefinition}
|
{componentInstance}
|
||||||
{bindings}
|
{componentDefinition}
|
||||||
{componentBindings}
|
{bindings}
|
||||||
/>
|
{componentBindings}
|
||||||
<DesignSection {componentInstance} {componentDefinition} {bindings} />
|
/>
|
||||||
<CustomStylesSection {componentInstance} {componentDefinition} {bindings} />
|
<DesignSection {componentInstance} {componentDefinition} {bindings} />
|
||||||
<ConditionalUISection {componentInstance} {componentDefinition} {bindings} />
|
<CustomStylesSection {componentInstance} {componentDefinition} {bindings} />
|
||||||
</SettingsPanel>
|
<ConditionalUISection
|
||||||
|
{componentInstance}
|
||||||
|
{componentDefinition}
|
||||||
|
{bindings}
|
||||||
|
/>
|
||||||
|
</SettingsPanel>
|
||||||
|
{/if}
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
import RoleSelect from "components/design/settings/controls/RoleSelect.svelte"
|
import RoleSelect from "components/design/settings/controls/RoleSelect.svelte"
|
||||||
import { selectedScreen, store } from "builderStore"
|
import { selectedScreen, store } from "builderStore"
|
||||||
import sanitizeUrl from "builderStore/store/screenTemplates/utils/sanitizeUrl"
|
import sanitizeUrl from "builderStore/store/screenTemplates/utils/sanitizeUrl"
|
||||||
|
import { goto } from "@roxi/routify"
|
||||||
|
|
||||||
let errors = {}
|
let errors = {}
|
||||||
|
|
||||||
|
@ -138,6 +139,6 @@
|
||||||
props={{ ...setting.props, error: errors[setting.key] }}
|
props={{ ...setting.props, error: errors[setting.key] }}
|
||||||
/>
|
/>
|
||||||
{/each}
|
{/each}
|
||||||
<Button cta>View components</Button>
|
<Button cta on:click={() => $goto("../components")}>View components</Button>
|
||||||
</Layout>
|
</Layout>
|
||||||
</SettingsPanel>
|
</SettingsPanel>
|
||||||
|
|
Loading…
Reference in New Issue