From 7384e886139d268142201c79d16d530b13d73afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Keviin=20=C3=85berg=20Kultalahti?= Date: Wed, 21 Apr 2021 13:16:05 +0200 Subject: [PATCH] remove unused files that were accidentally left --- .../NewComponentTree.svelte | 139 ------------------ .../NewPathTree.svelte | 114 -------------- 2 files changed, 253 deletions(-) delete mode 100644 packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewComponentTree.svelte delete mode 100644 packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewPathTree.svelte diff --git a/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewComponentTree.svelte b/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewComponentTree.svelte deleted file mode 100644 index ec7fc1c4b5..0000000000 --- a/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewComponentTree.svelte +++ /dev/null @@ -1,139 +0,0 @@ - -{#each components as component, index (component._id)} - {#if $dragDropStore?.targetComponent === component && $dragDropStore.dropPosition === DropPosition.ABOVE} -
- {/if} - selectComponent(component)} - title={isScreenslot(component._component) ? 'Screenslot' : component._instanceName} - open - selected={$store.selectedComponentId === component._id}> - {#if component._children} - - {/if} - - {#if $dragDropStore?.targetComponent === component && ($dragDropStore.dropPosition === DropPosition.INSIDE || $dragDropStore.dropPosition === DropPosition.BELOW)} -
- {/if} -{/each} - - - - - \ No newline at end of file diff --git a/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewPathTree.svelte b/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewPathTree.svelte deleted file mode 100644 index ef5405e109..0000000000 --- a/packages/builder/src/components/design/NavigationPanel/ComponentNavigationTree/NewPathTree.svelte +++ /dev/null @@ -1,114 +0,0 @@ - - -{#if !noSearchMatch} - - {#if routeOpened} - {#each filteredScreens as screen (screen.id)} - changeScreen(screen.id)}> - {#if selectedScreen?._id === screen.id} - - {/if} - - {/each} - {/if} - - - -{/if}