1.2.0 • Published 1 year ago

ckeditor-online v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ckeditor-online

CKEditor 5 editor build generated by the Online builder tool

Install

npm i ckeditor-online

Usage

import { CKEditor } from "@ckeditor/ckeditor5-react";
import Editor from "ckeditor-online";

export function RichTextEditor() {
  return (
    <CKEditor
      editor={Editor}
      data="<p>Hello from CKEditor 5!</p>"
      onChange={(event: any, editor: { getData: () => any }) => {
        const data = editor.getData();
        console.log({ event, editor, data });
      }}
    />
  );
}

ckeditor-online demo

1.2.0

1 year ago

1.1.0

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago