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 { LiteTextEditor, LiteTextEditorWithRef } from "./ui";
|
||||||
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "@/ui/read-only";
|
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "./ui/read-only";
|
||||||
|
@ -2,4 +2,4 @@ import { EnterKeyExtension } from "./enter-key-extension";
|
|||||||
|
|
||||||
export const LiteTextEditorExtensions = () => [
|
export const LiteTextEditorExtensions = () => [
|
||||||
EnterKeyExtension,
|
EnterKeyExtension,
|
||||||
];
|
];
|
||||||
|
@ -3,7 +3,7 @@ import { BoldIcon, ItalicIcon, UnderlineIcon, StrikethroughIcon, CodeIcon } from
|
|||||||
|
|
||||||
import { cn } from "@plane/editor-core";
|
import { cn } from "@plane/editor-core";
|
||||||
import { Icon } from "./icon";
|
import { Icon } from "./icon";
|
||||||
import { Tooltip } from "@/ui/tooltip";
|
import { Tooltip } from "../../tooltip";
|
||||||
|
|
||||||
export interface BubbleMenuItem {
|
export interface BubbleMenuItem {
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -10,11 +10,6 @@
|
|||||||
"node_modules"
|
"node_modules"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": ".",
|
"baseUrl": "."
|
||||||
"paths": {
|
|
||||||
"@/*": [
|
|
||||||
"src/*"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user