Remove deprecated settings from screen settings
This commit is contained in:
parent
7e706c403a
commit
0c57699d99
|
@ -5,8 +5,6 @@
|
||||||
import {
|
import {
|
||||||
Input,
|
Input,
|
||||||
Layout,
|
Layout,
|
||||||
Button,
|
|
||||||
Toggle,
|
|
||||||
Checkbox,
|
Checkbox,
|
||||||
Banner,
|
Banner,
|
||||||
Select,
|
Select,
|
||||||
|
@ -16,7 +14,6 @@
|
||||||
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"
|
|
||||||
import ButtonActionEditor from "components/design/settings/controls/ButtonActionEditor/ButtonActionEditor.svelte"
|
import ButtonActionEditor from "components/design/settings/controls/ButtonActionEditor/ButtonActionEditor.svelte"
|
||||||
import { getBindableProperties } from "builderStore/dataBinding"
|
import { getBindableProperties } from "builderStore/dataBinding"
|
||||||
|
|
||||||
|
@ -119,15 +116,6 @@
|
||||||
label: "On screen load",
|
label: "On screen load",
|
||||||
control: ButtonActionEditor,
|
control: ButtonActionEditor,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: "showNavigation",
|
|
||||||
label: "Navigation",
|
|
||||||
control: Toggle,
|
|
||||||
props: {
|
|
||||||
text: "Show nav",
|
|
||||||
disabled: !!$selectedScreen.layoutId,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: "width",
|
key: "width",
|
||||||
label: "Width",
|
label: "Width",
|
||||||
|
@ -173,8 +161,5 @@
|
||||||
{bindings}
|
{bindings}
|
||||||
/>
|
/>
|
||||||
{/each}
|
{/each}
|
||||||
<Button secondary on:click={() => $goto("../components")}>
|
|
||||||
View components
|
|
||||||
</Button>
|
|
||||||
</Layout>
|
</Layout>
|
||||||
</Panel>
|
</Panel>
|
||||||
|
|
Loading…
Reference in New Issue