@ckeditor/ckeditor5-engine 47.6.2 → 47.7.0-alpha.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.
Files changed (3) hide show
  1. package/LICENSE.md +2 -5
  2. package/README.md +5 -8
  3. package/package.json +2 -2
package/LICENSE.md CHANGED
@@ -4,12 +4,9 @@ Software License Agreement
4
4
  **CKEditor&nbsp;5 Editing engine** (https://github.com/ckeditor/ckeditor5)<br>
5
5
  Copyright (c) 2003–2026, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
6
6
 
7
- Licensed under a dual-license model, this software is available under:
7
+ CKEditor&nbsp;5 Long Term Support Edition is licensed under a commercial license and is protected by copyright law.
8
8
 
9
- * the [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html),
10
- * or commercial license terms from CKSource Holding sp. z o.o.
11
-
12
- For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
9
+ For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
13
10
 
14
11
  Sources of Intellectual Property Included in CKEditor&nbsp;5
15
12
  ------------------------------------------------------------
package/README.md CHANGED
@@ -23,7 +23,7 @@ If you want to check full CKEditor&nbsp;5 capabilities, sign up for a [free non-
23
23
 
24
24
  * **Custom data model.** CKEditor&nbsp;5 implements a tree-structured custom data model, designed to fit multiple requirements such as enabling real-time collaboration and complex editing features (like tables or nested blocks).
25
25
  * **Virtual DOM.** CKEditor&nbsp;5's editing engine features a custom, editing-oriented virtual DOM implementation that aims to hide browser quirks from your sight. **No more `contentEditable` nightmares!**
26
- * **Real-time collaborative editing**. The editor implements Operational Transformation for the tree-structured model as well as many other mechanisms which were required to create a seamless collaborative UX. Additionally, we provide cloud infrastructure and plugins enabling real-time collaborative editing in your application! [Check the collaboration demo](https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/overview.html).
26
+ * **Real-time collaborative editing**. The editor implements Operational Transformation for the tree-structured model as well as many other mechanisms which were required to create a seamless collaborative UX. Additionally, we provide cloud infrastructure and plugins enabling real-time collaborative editing in your application! [Check the collaboration demo](https://ckeditor.com/docs/ckeditor5/lts-v47/features/collaboration/overview.html).
27
27
  * **Extensible.** The entire editor architecture was designed for maximum flexibility. The code is event-based and highly decoupled, allowing you to plug in or replace selected pieces. Features do not directly depend on each other and communicate in standardized ways.
28
28
  * **Schema-less core**. The core makes minimal assumptions and can be controlled through the schema. This leaves all decisions to plugins and to you.
29
29
  * **Modular architecture.** Not only can the core modules be reused and recomposed but even the features were implemented in a highly granular way. Feel like running a headless CKEditor&nbsp;5 with a couple of features in Node.js? Not a problem!
@@ -33,15 +33,12 @@ If you want to check full CKEditor&nbsp;5 capabilities, sign up for a [free non-
33
33
 
34
34
  ## Documentation
35
35
 
36
- For a general introduction see the [Overview of CKEditor&nbsp;5 Framework](https://ckeditor.com/docs/ckeditor5/latest/framework/architecture/core-editor-architecture.html) guide and then the [Editing engine architecture guide](https://ckeditor.com/docs/ckeditor5/latest/framework/architecture/editing-engine.html).
36
+ For a general introduction see the [Overview of CKEditor&nbsp;5 Framework](https://ckeditor.com/docs/ckeditor5/lts-v47/framework/architecture/core-editor-architecture.html) guide and then the [Editing engine architecture guide](https://ckeditor.com/docs/ckeditor5/lts-v47/framework/architecture/editing-engine.html).
37
37
 
38
- Additionally, refer to the [`@ckeditor/ckeditor5-engine` package](https://ckeditor.com/docs/ckeditor5/latest/api/engine.html) page in [CKEditor&nbsp;5 documentation](https://ckeditor.com/docs/ckeditor5/latest/) for even more information.
38
+ Additionally, refer to the [`@ckeditor/ckeditor5-engine` package](https://ckeditor.com/docs/ckeditor5/lts-v47/api/engine.html) page in [CKEditor&nbsp;5 documentation](https://ckeditor.com/docs/ckeditor5/lts-v47/) for even more information.
39
39
 
40
40
  ## License
41
41
 
42
- Licensed under a dual-license model, this software is available under:
42
+ CKEditor&nbsp;5 Long Term Support Edition is licensed under a commercial license and is protected by copyright law.
43
43
 
44
- * the [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html),
45
- * or commercial license terms from CKSource Holding sp. z o.o.
46
-
47
- For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
44
+ For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-engine",
3
- "version": "47.6.2",
3
+ "version": "47.7.0-alpha.1",
4
4
  "description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",
5
5
  "keywords": [
6
6
  "wysiwyg",
@@ -24,7 +24,7 @@
24
24
  "type": "module",
25
25
  "main": "src/index.js",
26
26
  "dependencies": {
27
- "@ckeditor/ckeditor5-utils": "47.6.2",
27
+ "@ckeditor/ckeditor5-utils": "47.7.0-alpha.1",
28
28
  "es-toolkit": "1.39.5"
29
29
  },
30
30
  "author": "CKSource (http://cksource.com/)",