mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
34ab188a99
* better variable names and comments * drag drop migrated * custom horizontal rule created * init transaction hijack * fixed code block with better contrast, keyboard tripple enter press disabled and syntax highlighting * fixed link selector closing on open behaviour * added better keymaps and syntax highlights * made drag and drop working for code blocks * fixed drag drop for code blocks * moved drag drop only to rich text editor * fixed drag and drop only for description * enabled drag handles for peek overview and main issues * got images to old state
24 lines
726 B
TypeScript
24 lines
726 B
TypeScript
// styles
|
|
// import "./styles/tailwind.css";
|
|
// import "./styles/editor.css";
|
|
import "./styles/github-dark.css";
|
|
|
|
export { isCellSelection } from "./ui/extensions/table/table/utilities/is-cell-selection";
|
|
|
|
// utils
|
|
export * from "./lib/utils";
|
|
export * from "./ui/extensions/table/table";
|
|
export { startImageUpload } from "./ui/plugins/upload-image";
|
|
|
|
// components
|
|
export { EditorContainer } from "./ui/components/editor-container";
|
|
export { EditorContentWrapper } from "./ui/components/editor-content";
|
|
|
|
// hooks
|
|
export { useEditor } from "./ui/hooks/useEditor";
|
|
export { useReadOnlyEditor } from "./ui/hooks/useReadOnlyEditor";
|
|
|
|
// helper items
|
|
export * from "./ui/menus/menu-items";
|
|
export * from "./lib/editor-commands";
|