@ckeditor/ckeditor5-editor-balloon 30.0.0 → 31.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/package.json +13 -13
- package/src/ballooneditor.js +4 -4
package/README.md
CHANGED
@@ -9,7 +9,7 @@ The balloon editor implementation (Medium-like editor) for CKEditor 5.
|
|
9
9
|
|
10
10
|
This package contains the [`BalloonEditor`](https://ckeditor.com/docs/ckeditor5/latest/api/module_editor-balloon_ballooneditor-BalloonEditor.html) class. Follow there to learn more about this type of editor and how to initialize it.
|
11
11
|
|
12
|
-
This package contains the source version of the balloon editor. This editor implementation is also available in the [balloon build](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon). Read more about [CKEditor 5
|
12
|
+
This package contains the source version of the balloon editor. This editor implementation is also available in the [balloon build](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon). Read more about [CKEditor 5 builds](https://ckeditor.com/docs/ckeditor5/latest/builds/index.html).
|
13
13
|
|
14
14
|
## Documentation
|
15
15
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-editor-balloon",
|
3
|
-
"version": "
|
3
|
+
"version": "31.0.0",
|
4
4
|
"description": "Balloon editor implementation for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -11,22 +11,22 @@
|
|
11
11
|
],
|
12
12
|
"main": "src/index.js",
|
13
13
|
"dependencies": {
|
14
|
-
"ckeditor5": "^
|
14
|
+
"ckeditor5": "^31.0.0",
|
15
15
|
"lodash-es": "^4.17.15"
|
16
16
|
},
|
17
17
|
"devDependencies": {
|
18
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
19
|
-
"@ckeditor/ckeditor5-core": "^
|
18
|
+
"@ckeditor/ckeditor5-basic-styles": "^31.0.0",
|
19
|
+
"@ckeditor/ckeditor5-core": "^31.0.0",
|
20
20
|
"@ckeditor/ckeditor5-dev-utils": "^25.4.0",
|
21
|
-
"@ckeditor/ckeditor5-engine": "^
|
22
|
-
"@ckeditor/ckeditor5-enter": "^
|
23
|
-
"@ckeditor/ckeditor5-heading": "^
|
24
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
25
|
-
"@ckeditor/ckeditor5-theme-lark": "^
|
26
|
-
"@ckeditor/ckeditor5-typing": "^
|
27
|
-
"@ckeditor/ckeditor5-ui": "^
|
28
|
-
"@ckeditor/ckeditor5-undo": "^
|
29
|
-
"@ckeditor/ckeditor5-utils": "^
|
21
|
+
"@ckeditor/ckeditor5-engine": "^31.0.0",
|
22
|
+
"@ckeditor/ckeditor5-enter": "^31.0.0",
|
23
|
+
"@ckeditor/ckeditor5-heading": "^31.0.0",
|
24
|
+
"@ckeditor/ckeditor5-paragraph": "^31.0.0",
|
25
|
+
"@ckeditor/ckeditor5-theme-lark": "^31.0.0",
|
26
|
+
"@ckeditor/ckeditor5-typing": "^31.0.0",
|
27
|
+
"@ckeditor/ckeditor5-ui": "^31.0.0",
|
28
|
+
"@ckeditor/ckeditor5-undo": "^31.0.0",
|
29
|
+
"@ckeditor/ckeditor5-utils": "^31.0.0",
|
30
30
|
"webpack": "^4.43.0",
|
31
31
|
"webpack-cli": "^3.3.11"
|
32
32
|
},
|
package/src/ballooneditor.js
CHANGED
@@ -17,7 +17,7 @@ import BalloonEditorUI from './ballooneditorui';
|
|
17
17
|
import BalloonEditorUIView from './ballooneditoruiview';
|
18
18
|
|
19
19
|
/**
|
20
|
-
* The {@glink builds/guides/overview#balloon-editor balloon editor} implementation (Medium-like editor).
|
20
|
+
* The {@glink builds/guides/predefined-builds/overview#balloon-editor balloon editor} implementation (Medium-like editor).
|
21
21
|
* It uses an inline editable and a toolbar based on the {@link module:ui/toolbar/balloon/balloontoolbar~BalloonToolbar}.
|
22
22
|
* See the {@glink examples/builds/balloon-editor demo}.
|
23
23
|
*
|
@@ -28,9 +28,9 @@ import BalloonEditorUIView from './ballooneditoruiview';
|
|
28
28
|
*
|
29
29
|
* The balloon editor can be used directly from source (if you installed the
|
30
30
|
* [`@ckeditor/ckeditor5-editor-balloon`](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon) package)
|
31
|
-
* but it is also available in the {@glink builds/guides/overview#balloon-editor balloon build}.
|
31
|
+
* but it is also available in the {@glink builds/guides/predefined-builds/overview#balloon-editor balloon build}.
|
32
32
|
*
|
33
|
-
* {@glink builds/guides/overview Builds} are ready-to-use editors with plugins bundled in. When using the editor from
|
33
|
+
* {@glink builds/guides/predefined-builds/overview Builds} are ready-to-use editors with plugins bundled in. When using the editor from
|
34
34
|
* source you need to take care of loading all plugins by yourself
|
35
35
|
* (through the {@link module:core/editor/editorconfig~EditorConfig#plugins `config.plugins`} option).
|
36
36
|
* Using the editor from source gives much better flexibility and allows easier customization.
|
@@ -169,7 +169,7 @@ export default class BalloonEditor extends Editor {
|
|
169
169
|
* # Using the editor from source
|
170
170
|
*
|
171
171
|
* The code samples listed in the previous sections of this documentation assume that you are using an
|
172
|
-
* {@glink builds/guides/overview editor build} (for example – `@ckeditor/ckeditor5-build-balloon`).
|
172
|
+
* {@glink builds/guides/predefined-builds/overview editor build} (for example – `@ckeditor/ckeditor5-build-balloon`).
|
173
173
|
*
|
174
174
|
* If you want to use the balloon editor from source (`@ckeditor/ckeditor5-editor-balloon/src/ballooneditor`),
|
175
175
|
* you need to define the list of
|