ckeditor5-svelte icon indicating copy to clipboard operation
ckeditor5-svelte copied to clipboard

ckeditor5 editor component for svelte

Results 3 ckeditor5-svelte issues
Sort by recently updated
recently updated
newest added

**Problem** [Line 42 of Ckeditor.svelte](https://github.com/techlab23/ckeditor5-svelte/blob/00b4b5f7c3bc9ce668c16ffde893d6416ae1fc2c/src/Ckeditor.svelte#L42) tries to set the read-only status with this piece of code: `editor.isReadOnly = disabled;`. This is not supported by CKEditor 5, because read-only has no...

Hi, Multiple instances are not allowed because DOM element id is fixed to "_editor". To allow multiple instances a propose to pass id as a property. I've done a fork...

``` import CKEditor from "ckeditor5-svelte"; // Setting up editor prop to be sent to wrapper component let editor ; // Reference to initialised editor instance let editorInstance = null; //...