mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
removed absolute imports from lite-text-editor
This commit is contained in:
parent
857fa18719
commit
0080880852
@ -1,2 +1,2 @@
|
||||
export { LiteTextEditor, LiteTextEditorWithRef } from "@/ui";
|
||||
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "@/ui/read-only";
|
||||
export { LiteTextEditor, LiteTextEditorWithRef } from "./ui";
|
||||
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "./ui/read-only";
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { EnterKeyExtension } from "./enter-key-extension";
|
||||
|
||||
export const LiteTextEditorExtensions = () => [
|
||||
EnterKeyExtension,
|
||||
];
|
||||
EnterKeyExtension,
|
||||
];
|
||||
|
@ -3,7 +3,7 @@ import { BoldIcon, ItalicIcon, UnderlineIcon, StrikethroughIcon, CodeIcon } from
|
||||
|
||||
import { cn } from "@plane/editor-core";
|
||||
import { Icon } from "./icon";
|
||||
import { Tooltip } from "@/ui/tooltip";
|
||||
import { Tooltip } from "../../tooltip";
|
||||
|
||||
export interface BubbleMenuItem {
|
||||
name: string;
|
||||
|
@ -10,11 +10,6 @@
|
||||
"node_modules"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
}
|
||||
"baseUrl": "."
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user