Classes
AbstractEditorAnnotationCommandCommandComponentConfiguratorContainerEditorContainerSelectionDOMImporterDocumentDocumentNodeEditAnnotationCommandEditingEventEmitterInsertInlineNodeCommandNodeIndexPropertyAnnotationPropertySelectionProseEditorScrollPaneSelectionSpellCheckCommandSurfaceTextNodeTransactionDocumentVirtualElement
Components
Modules
ProseEditor
Class defined in packages/prose-editor/ProseEditor.js#26 inherits from
Configurable ProseEditor component
Example
const cfg = new Configurator()
cfg.import(ProseEditorPackage)
cfg.import(SuperscriptPackage)
window.onload = function() {
let doc = configurator.createArticle(fixture)
let editorSession = new EditorSession(doc, {
configurator: configurator
})
ProseEditor.mount({
editorSession: editorSession
}, document.body)
}