ckeditor5 35.4.0 → 36.0.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 +276 -2638
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/build/ckeditor5-dll.js +2 -2
- package/build/ckeditor5-dll.manifest.json +5 -1
- package/build/translations/sr-latn.js +1 -1
- package/build/translations/sr.js +1 -1
- package/build/translations/ug.js +1 -1
- package/package.json +13 -13
- package/src/clipboard.js +1 -1
- package/src/core.js +1 -1
- package/src/engine.js +1 -1
- package/src/enter.js +1 -1
- package/src/paragraph.js +1 -1
- package/src/select-all.js +1 -1
- package/src/typing.js +1 -1
- package/src/ui.js +1 -1
- package/src/undo.js +1 -1
- package/src/upload.js +1 -1
- package/src/utils.js +1 -1
- package/src/widget.js +1 -1
- package/typings/types.d.ts +1 -1
- package/tsconfig.json +0 -18
package/LICENSE.md
CHANGED
@@ -2,7 +2,7 @@ Software License Agreement
|
|
2
2
|
==========================
|
3
3
|
|
4
4
|
**CKEditor 5** – https://github.com/ckeditor/ckeditor5 <br>
|
5
|
-
Copyright (c) 2003-
|
5
|
+
Copyright (c) 2003-2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
6
6
|
|
7
7
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
|
8
8
|
|
package/README.md
CHANGED
@@ -62,7 +62,7 @@ In your HTML page add an element that CKEditor should replace:
|
|
62
62
|
Load the classic editor build (you can choose between [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)):
|
63
63
|
|
64
64
|
```html
|
65
|
-
<script src="https://cdn.ckeditor.com/ckeditor5/
|
65
|
+
<script src="https://cdn.ckeditor.com/ckeditor5/36.0.1/classic/ckeditor.js"></script>
|
66
66
|
```
|
67
67
|
|
68
68
|
Call the [`ClassicEditor.create()`](https://ckeditor.com/docs/ckeditor5/latest/api/module_editor-classic_classiceditor-ClassicEditor.html#static-function-create) method:
|