Trilium Frontend API
    Preparing search index...

    Interface CKEditorOpts

    interface CKEditorOpts {
        apiRef: MutableRef<CKEditorApi>;
        className: string;
        config: EditorConfig;
        currentValue?: string;
        disableNewlines?: boolean;
        disableSpellcheck?: boolean;
        editor: typeof AttributeEditor;
        onBlur?: () => void;
        onChange?: (newValue?: string) => void;
        onClick?: (e: MouseEvent, pos?: ModelPosition) => void;
        onInitialized?: (editorInstance: CKTextEditor) => void;
        onKeyDown?: (e: KeyboardEvent) => void;
        tabIndex?: number;
    }
    Index

    Properties

    className: string
    config: EditorConfig
    currentValue?: string
    disableNewlines?: boolean
    disableSpellcheck?: boolean
    editor: typeof AttributeEditor
    onBlur?: () => void
    onChange?: (newValue?: string) => void
    onClick?: (e: MouseEvent, pos?: ModelPosition) => void
    onInitialized?: (editorInstance: CKTextEditor) => void
    onKeyDown?: (e: KeyboardEvent) => void
    tabIndex?: number