@ckeditor/ckeditor5-editor-multi-root 43.3.1 → 44.0.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/build/editor-multi-root.js +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/multirooteditor.d.ts +4 -0
- package/package.json +6 -6
- package/src/multirooteditor.d.ts +4 -0
- package/src/multirooteditor.js +6 -0
@@ -28,6 +28,10 @@ import { type RootElement } from 'ckeditor5/src/engine.js';
|
|
28
28
|
* Note that you will need to attach the editor toolbar to your web page manually, in a desired place, after the editor is initialized.
|
29
29
|
*/
|
30
30
|
export default class MultiRootEditor extends Editor {
|
31
|
+
/**
|
32
|
+
* @inheritDoc
|
33
|
+
*/
|
34
|
+
static get editorName(): 'MultiRootEditor';
|
31
35
|
/**
|
32
36
|
* @inheritDoc
|
33
37
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-editor-multi-root",
|
3
|
-
"version": "
|
3
|
+
"version": "44.0.0-alpha.1",
|
4
4
|
"description": "Multi-root editor implementation for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,11 +12,11 @@
|
|
12
12
|
"type": "module",
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"@ckeditor/ckeditor5-core": "
|
16
|
-
"@ckeditor/ckeditor5-engine": "
|
17
|
-
"@ckeditor/ckeditor5-ui": "
|
18
|
-
"@ckeditor/ckeditor5-utils": "
|
19
|
-
"ckeditor5": "
|
15
|
+
"@ckeditor/ckeditor5-core": "44.0.0-alpha.1",
|
16
|
+
"@ckeditor/ckeditor5-engine": "44.0.0-alpha.1",
|
17
|
+
"@ckeditor/ckeditor5-ui": "44.0.0-alpha.1",
|
18
|
+
"@ckeditor/ckeditor5-utils": "44.0.0-alpha.1",
|
19
|
+
"ckeditor5": "44.0.0-alpha.1",
|
20
20
|
"lodash-es": "4.17.21"
|
21
21
|
},
|
22
22
|
"author": "CKSource (http://cksource.com/)",
|
package/src/multirooteditor.d.ts
CHANGED
@@ -24,6 +24,10 @@ import { type RootElement } from 'ckeditor5/src/engine.js';
|
|
24
24
|
* Note that you will need to attach the editor toolbar to your web page manually, in a desired place, after the editor is initialized.
|
25
25
|
*/
|
26
26
|
export default class MultiRootEditor extends Editor {
|
27
|
+
/**
|
28
|
+
* @inheritDoc
|
29
|
+
*/
|
30
|
+
static get editorName(): 'MultiRootEditor';
|
27
31
|
/**
|
28
32
|
* @inheritDoc
|
29
33
|
*/
|
package/src/multirooteditor.js
CHANGED
@@ -25,6 +25,12 @@ import { isElement as _isElement } from 'lodash-es';
|
|
25
25
|
* Note that you will need to attach the editor toolbar to your web page manually, in a desired place, after the editor is initialized.
|
26
26
|
*/
|
27
27
|
export default class MultiRootEditor extends Editor {
|
28
|
+
/**
|
29
|
+
* @inheritDoc
|
30
|
+
*/
|
31
|
+
static get editorName() {
|
32
|
+
return 'MultiRootEditor';
|
33
|
+
}
|
28
34
|
/**
|
29
35
|
* Creates an instance of the multi-root editor.
|
30
36
|
*
|