Update renamed/moved imports

This commit is contained in:
Nate Butler 2022-03-31 23:43:01 -04:00 committed by Keith Simmons
parent 43a7cadf5b
commit 211c473d32
7 changed files with 11 additions and 11 deletions

View File

@ -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 = {

View File

@ -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(

View File

@ -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"];

View File

@ -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 = {

View File

@ -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 = {

View File

@ -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 = {

View File

@ -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 = {