Skip to content

Commit e407b94

Browse files
authored
Merge pull request #79 from WebSpellChecker/fix-multi-root-sample
Fix multi-root sample
2 parents 706b66d + 63aca56 commit e407b94

File tree

7 files changed

+14
-340
lines changed

7 files changed

+14
-340
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# WProofreader plugin for CKEditor 5 Changelog
22

3+
## 3.0.0-alpha.0 – 2024-06-14
4+
5+
This release is intended for testing the new CKEditor 5 installation methods announced in [this post](https://github.com/ckeditor/ckeditor5/issues/15502).
6+
7+
Please note that this release is marked as `alpha`, meaning that it is an experimental release.
8+
39
## 2.3.1 – 2023-06-29
410

511
* Increase the distance from the badge to the edges of the editor. [#71](https://github.com/WebSpellChecker/wproofreader-ckeditor5/issues/71).

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webspellchecker/wproofreader-ckeditor5",
3-
"version": "2.3.1",
3+
"version": "3.0.0-alpha.0",
44
"description": "Multilingual spelling and grammar checking plugin for CKEditor 5",
55
"repository": {
66
"type": "git",

samples/multi-root-editor/app.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
import MultirootEditorBase from './multi-root-editor.js';
2-
31
import {
2+
MultiRootEditor,
43
Essentials,
54
Paragraph,
65
Heading,
76
List,
87
Bold,
9-
Italic
8+
Italic,
9+
Image
1010
} from 'ckeditor5';
1111

1212
import 'ckeditor5/ckeditor5.css'
1313

1414
import { WProofreader } from '../../dist/index.js';
1515

16-
export default class MultirootEditor extends MultirootEditorBase {}
16+
export default class MultirootEditor extends MultiRootEditor {}
1717

18-
MultirootEditor.builtinPlugins = [ Essentials, Paragraph, Heading, List, Bold, Italic, WProofreader ];
18+
MultirootEditor.builtinPlugins = [ Essentials, Paragraph, Heading, List, Bold, Italic, Image, WProofreader ];

samples/multi-root-editor/multi-root-editor-ui-view.js

Lines changed: 0 additions & 69 deletions
This file was deleted.

samples/multi-root-editor/multi-root-editor-ui.js

Lines changed: 0 additions & 165 deletions
This file was deleted.

samples/multi-root-editor/multi-root-editor.js

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)