Update renamed/moved imports

Nate Butler created

Change summary

styles/styleTree/app.ts           | 8 ++++----
styles/styleTree/chatPanel.ts     | 4 ++--
styles/styleTree/components.ts    | 2 +-
styles/styleTree/editor.ts        | 2 +-
styles/styleTree/search.ts        | 2 +-
styles/styleTree/selectorModal.ts | 2 +-
styles/styleTree/workspace.ts     | 2 +-
7 files changed, 11 insertions(+), 11 deletions(-)

Detailed changes

styles/styleTree/app.ts 🔗

@@ -1,10 +1,10 @@
-import chatPanel from "./chat-panel";
+import Theme from "../themes/theme";
+import chatPanel from "./chatPanel";
 import { backgroundColor, borderColor, text } from "./components";
 import editor from "./editor";
-import projectPanel from "./project-panel";
+import projectPanel from "./projectPanel";
 import search from "./search";
-import selectorModal from "./selector-modal";
-import Theme from "./theme";
+import selectorModal from "./selectorModal";
 import workspace from "./workspace";
 
 export const panel = {

styles/styleTree/chatPanel.ts 🔗

@@ -1,3 +1,4 @@
+import Theme from "../themes/theme";
 import { panel } from "./app";
 import {
   backgroundColor,
@@ -5,9 +6,8 @@ import {
   player,
   shadow,
   text,
-  TextColor,
+  TextColor
 } from "./components";
-import Theme from "./theme";
 
 export default function chatPanel(theme: Theme) {
   function channelSelectItem(

styles/styleTree/components.ts 🔗

@@ -1,7 +1,7 @@
 import chroma from "chroma-js";
+import Theme, { BackgroundColor, Weight } from "../themes/theme";
 import core from "../tokens/core";
 import { Color } from "../utils/color";
-import Theme, { BackgroundColor, Weight } from "../themes/theme";
 
 export type TextColor = keyof Theme["textColor"];
 

styles/styleTree/editor.ts 🔗

@@ -1,3 +1,4 @@
+import Theme from "../themes/theme";
 import {
   backgroundColor,
   border,
@@ -6,7 +7,6 @@ import {
   text,
   TextColor
 } from "./components";
-import Theme from "./theme";
 
 export default function editor(theme: Theme) {
   const autocompleteItem = {

styles/styleTree/search.ts 🔗

@@ -1,5 +1,5 @@
+import Theme from "../themes/theme";
 import { backgroundColor, border, player, text } from "./components";
-import Theme from "./theme";
 
 export default function search(theme: Theme) {
   const optionButton = {

styles/styleTree/selectorModal.ts 🔗

@@ -1,5 +1,5 @@
+import Theme from "../themes/theme";
 import { backgroundColor, border, player, shadow, text } from "./components";
-import Theme from "./theme";
 
 export default function selectorModal(theme: Theme): Object {
   const item = {

styles/styleTree/workspace.ts 🔗

@@ -1,5 +1,5 @@
+import Theme from "../themes/theme";
 import { backgroundColor, border, iconColor, text } from "./components";
-import Theme from "./theme";
 
 export default function workspace(theme: Theme) {
   const signInPrompt = {