mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
Update renamed/moved imports
This commit is contained in:
parent
43a7cadf5b
commit
211c473d32
@ -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 = {
|
||||
|
@ -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(
|
||||
|
@ -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"];
|
||||
|
||||
|
@ -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 = {
|
||||
|
@ -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 = {
|
||||
|
@ -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 = {
|
||||
|
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user