From ec361079b1f40b2059d0010e837b99364f7a4e68 Mon Sep 17 00:00:00 2001 From: Victoria Sloan Date: Sun, 6 Sep 2020 21:54:23 +0100 Subject: [PATCH] =?UTF-8?q?remove=20unused=20IconButton=20component=20and?= =?UTF-8?q?=20imports=20in=20files=20that=20aren=E2=80=99t=20using=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/userInterface/ComponentPropertiesPanel.svelte | 1 - .../userInterface/EventsEditor/EventEditorModal.svelte | 1 - .../components/userInterface/EventsEditor/EventsEditor.svelte | 1 - .../userInterface/EventsEditor/HandlerSelector.svelte | 1 - .../userInterface/EventsEditor/StateBindingCascader.svelte | 1 - .../src/components/userInterface/UserInterfaceRoot.svelte | 1 - packages/builder/src/pages/[application]/_reset.svelte | 4 ---- .../builder/src/pages/[application]/frontend/_layout.svelte | 1 - packages/builder/src/pages/index.svelte | 1 - 9 files changed, 12 deletions(-) diff --git a/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte b/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte index 0a9d5c75ac..1898fee29b 100644 --- a/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte +++ b/packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte @@ -2,7 +2,6 @@ import { setContext, onMount } from "svelte" import { store } from "builderStore" - import IconButton from "components/common/IconButton.svelte" import { LayoutIcon, PaintIcon, diff --git a/packages/builder/src/components/userInterface/EventsEditor/EventEditorModal.svelte b/packages/builder/src/components/userInterface/EventsEditor/EventEditorModal.svelte index d2e6cc5693..95b1ce9f65 100644 --- a/packages/builder/src/components/userInterface/EventsEditor/EventEditorModal.svelte +++ b/packages/builder/src/components/userInterface/EventsEditor/EventEditorModal.svelte @@ -3,7 +3,6 @@ import { Button, Select } from "@budibase/bbui" import Modal from "../../common/Modal.svelte" import HandlerSelector from "./HandlerSelector.svelte" - import IconButton from "../../common/IconButton.svelte" import ActionButton from "../../common/ActionButton.svelte" import getIcon from "../../common/icon" import { CloseIcon } from "components/common/Icons/" diff --git a/packages/builder/src/components/userInterface/EventsEditor/EventsEditor.svelte b/packages/builder/src/components/userInterface/EventsEditor/EventsEditor.svelte index 56ea9e9035..026b85b5fc 100644 --- a/packages/builder/src/components/userInterface/EventsEditor/EventsEditor.svelte +++ b/packages/builder/src/components/userInterface/EventsEditor/EventsEditor.svelte @@ -13,7 +13,6 @@ } from "lodash/fp" import { pipe } from "components/common/core" import Checkbox from "components/common/Checkbox.svelte" - import IconButton from "components/common/IconButton.svelte" import EventEditorModal from "./EventEditorModal.svelte" import { PencilIcon } from "components/common/Icons" diff --git a/packages/builder/src/components/userInterface/EventsEditor/HandlerSelector.svelte b/packages/builder/src/components/userInterface/EventsEditor/HandlerSelector.svelte index eb64687f20..2876973219 100644 --- a/packages/builder/src/components/userInterface/EventsEditor/HandlerSelector.svelte +++ b/packages/builder/src/components/userInterface/EventsEditor/HandlerSelector.svelte @@ -1,6 +1,5 @@