forked from github/plane
1bddaf75b2
* added image min width and height programatically * fixed editor initialization for peek view and inbox issues * fixed ts issues with issue id in inbox
24 lines
730 B
TypeScript
24 lines
730 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/use-editor";
|
|
export { useReadOnlyEditor } from "./ui/hooks/use-read-only-editor";
|
|
|
|
// helper items
|
|
export * from "./ui/menus/menu-items";
|
|
export * from "./lib/editor-commands";
|