mono/packages/ui-next/src/widgets-editor/EditorShell.tsx
2026-04-09 19:07:01 +02:00

13 lines
583 B
TypeScript

/**
* EditorShell — the single dynamic-import chunk boundary for all editor code.
*
* Everything reachable from this file (@dnd-kit, lucide, overlays, property
* panel) is bundled into one "editor" chunk. It is NEVER loaded in a pure
* view/preview context; only when the user first activates edit mode.
*
* Do not import this file statically. Use the lazy wrappers in ./lazy.tsx.
*/
export { EditableNodeRenderer } from "./EditableNodeRenderer";
export { NodePropertiesPanel } from "./components/NodePropertiesPanel";
export { EditToggle } from "./components/EditToggle";