From 8e00a79850899297236f36b589b1ae74820476ca Mon Sep 17 00:00:00 2001 From: Michael Shanks Date: Fri, 14 Aug 2020 14:21:55 +0100 Subject: [PATCH] removed PageView.svelte --- .../components/userInterface/PageView.svelte | 65 ------------------- .../userInterface/UserInterfaceRoot.svelte | 1 - .../[application]/frontend/_layout.svelte | 1 - 3 files changed, 67 deletions(-) delete mode 100644 packages/builder/src/components/userInterface/PageView.svelte diff --git a/packages/builder/src/components/userInterface/PageView.svelte b/packages/builder/src/components/userInterface/PageView.svelte deleted file mode 100644 index d60a4082de..0000000000 --- a/packages/builder/src/components/userInterface/PageView.svelte +++ /dev/null @@ -1,65 +0,0 @@ - - -
- -

{$store.currentPageName}

- -
- -
- The title of your page, displayed in the bowser tab -
- v.name} /> - -
- The component that will be loaded into the body of the page -
-
- - - -
- - diff --git a/packages/builder/src/components/userInterface/UserInterfaceRoot.svelte b/packages/builder/src/components/userInterface/UserInterfaceRoot.svelte index d5188d8818..273f6202d2 100644 --- a/packages/builder/src/components/userInterface/UserInterfaceRoot.svelte +++ b/packages/builder/src/components/userInterface/UserInterfaceRoot.svelte @@ -8,7 +8,6 @@ import NewScreen from "./NewScreen.svelte" import CurrentItemPreview from "./CurrentItemPreview.svelte" import SettingsView from "./SettingsView.svelte" - import PageView from "./PageView.svelte" import ComponentsPaneSwitcher from "./ComponentsPaneSwitcher.svelte" import ConfirmDialog from "components/common/ConfirmDialog.svelte" import { last } from "lodash/fp" diff --git a/packages/builder/src/pages/[application]/frontend/_layout.svelte b/packages/builder/src/pages/[application]/frontend/_layout.svelte index d0569fc7c8..7f330ad09b 100644 --- a/packages/builder/src/pages/[application]/frontend/_layout.svelte +++ b/packages/builder/src/pages/[application]/frontend/_layout.svelte @@ -5,7 +5,6 @@ import ComponentsHierarchyChildren from "components/userInterface/ComponentsHierarchyChildren.svelte" import IconButton from "components/common/IconButton.svelte" import CurrentItemPreview from "components/userInterface/AppPreview" - import PageView from "components/userInterface/PageView.svelte" import ComponentPropertiesPanel from "components/userInterface/ComponentPropertiesPanel.svelte" import ComponentSelectionList from "components/userInterface/ComponentSelectionList.svelte" import Switcher from "components/common/Switcher.svelte"