mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
rearrange view files into directories
This commit is contained in:
parent
4b30c8bc3b
commit
9f98d03add
@ -2,6 +2,7 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { useLongClick } from "@/app/hook/useLongClick";
|
||||
import { PlotView } from "@/app/view/plotview/plotview";
|
||||
import { PreviewView, makePreviewModel } from "@/app/view/preview/preview";
|
||||
import { Button } from "@/element/button";
|
||||
import { ErrorBoundary } from "@/element/errorboundary";
|
||||
@ -11,12 +12,11 @@ import { atoms, globalStore, setBlockFocus, useBlockAtom } from "@/store/global"
|
||||
import * as services from "@/store/services";
|
||||
import * as WOS from "@/store/wos";
|
||||
import * as util from "@/util/util";
|
||||
import { CpuPlotView, makeCpuPlotViewModel } from "@/view/cpuplot";
|
||||
import { HelpView } from "@/view/helpview";
|
||||
import { PlotView } from "@/view/plotview";
|
||||
import { CpuPlotView, makeCpuPlotViewModel } from "@/view/cpuplot/cpuplot";
|
||||
import { HelpView } from "@/view/helpview/helpview";
|
||||
import { TerminalView, makeTerminalModel } from "@/view/term/term";
|
||||
import { WaveAi, makeWaveAiViewModel } from "@/view/waveai";
|
||||
import { WebView, makeWebViewModel } from "@/view/webview";
|
||||
import { WaveAi, makeWaveAiViewModel } from "@/view/waveai/waveai";
|
||||
import { WebView, makeWebViewModel } from "@/view/webview/webview";
|
||||
import clsx from "clsx";
|
||||
import * as jotai from "jotai";
|
||||
import * as React from "react";
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Copyright 2024, Command Line Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { Markdown } from "../element/markdown";
|
||||
import { Markdown } from "@/app/element/markdown";
|
||||
|
||||
import "./helpview.less";
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Copyright 2024, Command Line Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
@import "../mixins.less";
|
||||
@import "../../mixins.less";
|
||||
|
||||
.csv-view {
|
||||
opacity: 0; /* Start with an opacity of 0, meaning it's invisible */
|
@ -14,7 +14,7 @@ import { loadable } from "jotai/utils";
|
||||
import { useEffect, useRef } from "react";
|
||||
import { CenteredDiv } from "../../element/quickelems";
|
||||
import { CodeEditor } from "../codeeditor/codeeditor";
|
||||
import { CSVView } from "../csvview";
|
||||
import { CSVView } from "./csvview";
|
||||
import { DirectoryPreview } from "./directorypreview";
|
||||
|
||||
import "./preview.less";
|
||||
|
Loading…
Reference in New Issue
Block a user