diff --git a/apps/client/src/features/editor/components/common/node-resize-handles.ts b/apps/client/src/features/editor/components/common/node-resize-handles.ts index 2ad4404c..38e10a9a 100644 --- a/apps/client/src/features/editor/components/common/node-resize-handles.ts +++ b/apps/client/src/features/editor/components/common/node-resize-handles.ts @@ -1,5 +1,5 @@ -import type { ResizableNodeViewDirection } from "@docmost/editor-ext/lib/resizable-nodeview"; import classes from "./node-resize.module.css"; +import { ResizableNodeViewDirection } from "@docmost/editor-ext"; export function createResizeHandle( direction: ResizableNodeViewDirection, diff --git a/packages/editor-ext/src/index.ts b/packages/editor-ext/src/index.ts index 53667ee2..435d904b 100644 --- a/packages/editor-ext/src/index.ts +++ b/packages/editor-ext/src/index.ts @@ -28,3 +28,5 @@ export * from "./lib/shared-storage"; export * from "./lib/recreate-transform"; export * from "./lib/columns"; export * from "./lib/status"; +export * from "./lib/resizable-nodeview"; +