/** * `@graphysdk/react/editable` — the chart editing surface. * * Mirrors `@graphysdk/react-renderer/editable`: the editor canvas (`EditableGraphRenderer`), the * `EditorPanel`, its sections, and the default controls. Kept out of the main entry so a read-only * embed ships neither the editing panel nor its stylesheet. * * The batteries-included provenance default lives on this package's `GraphProvider` (the main entry), * not here: `EditableGraphRenderer` mounts *inside* that provider, so the Made with Graphy badge * still defaults on in editable mode. Pair the two entries: * * ```tsx * import { GraphProvider } from '@graphysdk/react'; * import { EditableGraphRenderer } from '@graphysdk/react/editable'; * * * * ; * ``` */ export * from '@graphysdk/react-renderer/editable';