ckeditor5 38.0.1 → 38.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +260 -5331
- package/README.md +8 -2
- package/build/ckeditor5-dll.js +1 -1
- package/build/ckeditor5-dll.manifest.json +2 -0
- package/build/translations/it.js +1 -1
- package/package.json +27 -17
- package/src/clipboard.d.ts +8 -8
- package/src/clipboard.js +8 -8
- package/src/core.d.ts +8 -8
- package/src/core.js +8 -8
- package/src/engine.d.ts +8 -8
- package/src/engine.js +8 -8
- package/src/enter.d.ts +8 -8
- package/src/enter.js +8 -8
- package/src/paragraph.d.ts +8 -8
- package/src/paragraph.js +8 -8
- package/src/select-all.d.ts +8 -8
- package/src/select-all.js +8 -8
- package/src/typing.d.ts +8 -8
- package/src/typing.js +8 -8
- package/src/ui.d.ts +8 -8
- package/src/ui.js +8 -8
- package/src/undo.d.ts +8 -8
- package/src/undo.js +8 -8
- package/src/upload.d.ts +8 -8
- package/src/upload.js +8 -8
- package/src/utils.d.ts +8 -8
- package/src/utils.js +8 -8
- package/src/watchdog.d.ts +8 -8
- package/src/watchdog.js +8 -8
- package/src/widget.d.ts +8 -8
- package/src/widget.js +8 -8
package/README.md
CHANGED
@@ -5,9 +5,10 @@ CKEditor 5 [](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
6
6
|
[](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
7
7
|

|
8
|
+

|
8
9
|
|
9
10
|
[](http://eepurl.com/c3zRPr)
|
10
|
-
[](https://twitter.com/ckeditor)
|
11
12
|
|
12
13
|
CKEditor 5 is an ultra-modern JavaScript rich-text editor with MVC architecture, a custom data model, and virtual DOM. It is written from scratch in TypeScript and has excellent webpack and Vite support. It provides every type of WYSIWYG editing solution imaginable with extensive collaboration support. From editors similar to Google Docs and Medium to Slack or Twitter-like applications, all is possible within a single editing framework. As a market leader, it is constantly expanded and updated.
|
13
14
|
|
@@ -21,6 +22,7 @@ CKEditor 5 is an ultra-modern JavaScript rich-text editor with MVC architecture,
|
|
21
22
|
- [CKEditor 5 online builder](#ckeditor-5-online-builder)
|
22
23
|
- [CKEditor 5 predefined builds](#ckeditor-5-predefined-builds)
|
23
24
|
- [Example installation](#example-installation)
|
25
|
+
- [TypeScript support](#typescript-support)
|
24
26
|
- [CKEditor 5 advanced installation](#ckeditor-5-advanced-installation)
|
25
27
|
- [CKEditor 5 Framework](#ckeditor-5-framework)
|
26
28
|
- [Documentation and FAQ](#documentation-and-faq)
|
@@ -66,7 +68,7 @@ In your HTML page, add an element that CKEditor should replace:
|
|
66
68
|
Load the classic editor build (you can choose between the [CDN](https://cdn.ckeditor.com/#ckeditor5), [npm](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html#npm), and [zip downloads](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html#zip-download)):
|
67
69
|
|
68
70
|
```html
|
69
|
-
<script src="https://cdn.ckeditor.com/ckeditor5/38.
|
71
|
+
<script src="https://cdn.ckeditor.com/ckeditor5/38.1.1/classic/ckeditor.js"></script>
|
70
72
|
```
|
71
73
|
|
72
74
|
Call the [`ClassicEditor.create()`](https://ckeditor.com/docs/ckeditor5/latest/api/module_editor-classic_classiceditor-ClassicEditor.html#static-function-create) method:
|
@@ -85,6 +87,10 @@ You’re ready to go!
|
|
85
87
|
|
86
88
|
To find out how to start with other builds, check the [Predefined builds](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html) guide in the CKEditor 5 documentation.
|
87
89
|
|
90
|
+
### TypeScript support
|
91
|
+
|
92
|
+
CKEditor 5 is a TypeScript project. Starting from v37.0.0, it offers native type definitions. Check out our dedicated guide to read more about [TypeScript support](https://ckeditor.com/docs/ckeditor5/latest/installation/working-with-typescript.html).
|
93
|
+
|
88
94
|
### CKEditor 5 advanced installation
|
89
95
|
|
90
96
|
For more advanced users or those who need to integrate CKEditor 5 with their applications, we have prepared several other, advanced methods to do it. You can:
|