@ckeditor/ckeditor5-core 45.0.0-alpha.2 → 45.0.0-alpha.3
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/dist/index.js +9 -8
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/context.d.ts +4 -4
- package/src/context.js +4 -4
- package/src/editor/editor.d.ts +3 -2
- package/src/editor/editor.js +3 -2
- package/src/plugincollection.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-core",
|
|
3
|
-
"version": "45.0.0-alpha.
|
|
3
|
+
"version": "45.0.0-alpha.3",
|
|
4
4
|
"description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "src/index.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ckeditor/ckeditor5-engine": "45.0.0-alpha.
|
|
28
|
-
"@ckeditor/ckeditor5-ui": "45.0.0-alpha.
|
|
29
|
-
"@ckeditor/ckeditor5-utils": "45.0.0-alpha.
|
|
30
|
-
"@ckeditor/ckeditor5-watchdog": "45.0.0-alpha.
|
|
27
|
+
"@ckeditor/ckeditor5-engine": "45.0.0-alpha.3",
|
|
28
|
+
"@ckeditor/ckeditor5-ui": "45.0.0-alpha.3",
|
|
29
|
+
"@ckeditor/ckeditor5-utils": "45.0.0-alpha.3",
|
|
30
|
+
"@ckeditor/ckeditor5-watchdog": "45.0.0-alpha.3",
|
|
31
31
|
"es-toolkit": "1.32.0"
|
|
32
32
|
},
|
|
33
33
|
"author": "CKSource (http://cksource.com/)",
|
package/src/context.d.ts
CHANGED
|
@@ -58,8 +58,8 @@ export default class Context {
|
|
|
58
58
|
/**
|
|
59
59
|
* The default configuration which is built into the `Context` class.
|
|
60
60
|
*
|
|
61
|
-
* It
|
|
62
|
-
* context initialization.
|
|
61
|
+
* It was used in the now deprecated CKEditor 5 builds featuring `Context` to provide the default configuration options
|
|
62
|
+
* which are later used during the context initialization.
|
|
63
63
|
*
|
|
64
64
|
* ```ts
|
|
65
65
|
* Context.defaultConfig = {
|
|
@@ -90,8 +90,8 @@ export default class Context {
|
|
|
90
90
|
/**
|
|
91
91
|
* An array of plugins built into the `Context` class.
|
|
92
92
|
*
|
|
93
|
-
* It
|
|
94
|
-
* during the context initialization.
|
|
93
|
+
* It was used in the now deprecated CKEditor 5 builds featuring `Context` to provide the default configuration options
|
|
94
|
+
* which are later used during the context initialization.
|
|
95
95
|
*
|
|
96
96
|
* They will be automatically initialized by `Context` unless `config.plugins` is passed.
|
|
97
97
|
*
|
package/src/context.js
CHANGED
|
@@ -55,8 +55,8 @@ export default class Context {
|
|
|
55
55
|
/**
|
|
56
56
|
* The default configuration which is built into the `Context` class.
|
|
57
57
|
*
|
|
58
|
-
* It
|
|
59
|
-
* context initialization.
|
|
58
|
+
* It was used in the now deprecated CKEditor 5 builds featuring `Context` to provide the default configuration options
|
|
59
|
+
* which are later used during the context initialization.
|
|
60
60
|
*
|
|
61
61
|
* ```ts
|
|
62
62
|
* Context.defaultConfig = {
|
|
@@ -87,8 +87,8 @@ export default class Context {
|
|
|
87
87
|
/**
|
|
88
88
|
* An array of plugins built into the `Context` class.
|
|
89
89
|
*
|
|
90
|
-
* It
|
|
91
|
-
* during the context initialization.
|
|
90
|
+
* It was used in the now deprecated CKEditor 5 builds featuring `Context` to provide the default configuration options
|
|
91
|
+
* which are later used during the context initialization.
|
|
92
92
|
*
|
|
93
93
|
* They will be automatically initialized by `Context` unless `config.plugins` is passed.
|
|
94
94
|
*
|
package/src/editor/editor.d.ts
CHANGED
|
@@ -153,7 +153,8 @@ export default abstract class Editor extends /* #__PURE__ */ Editor_base {
|
|
|
153
153
|
/**
|
|
154
154
|
* The default configuration which is built into the editor class.
|
|
155
155
|
*
|
|
156
|
-
* It
|
|
156
|
+
* It was used in the now deprecated CKEditor 5 builds to provide the default configuration options
|
|
157
|
+
* which are later used during the editor initialization.
|
|
157
158
|
*
|
|
158
159
|
* ```ts
|
|
159
160
|
* ClassicEditor.defaultConfig = {
|
|
@@ -183,7 +184,7 @@ export default abstract class Editor extends /* #__PURE__ */ Editor_base {
|
|
|
183
184
|
/**
|
|
184
185
|
* An array of plugins built into this editor class.
|
|
185
186
|
*
|
|
186
|
-
* It is used in CKEditor 5 builds to provide a list of plugins which are later automatically initialized
|
|
187
|
+
* It is used in the now deprecated CKEditor 5 builds to provide a list of plugins which are later automatically initialized
|
|
187
188
|
* during the editor initialization.
|
|
188
189
|
*
|
|
189
190
|
* They will be automatically initialized by the editor, unless listed in `config.removePlugins` and
|
package/src/editor/editor.js
CHANGED
|
@@ -135,7 +135,8 @@ class Editor extends /* #__PURE__ */ ObservableMixin() {
|
|
|
135
135
|
/**
|
|
136
136
|
* The default configuration which is built into the editor class.
|
|
137
137
|
*
|
|
138
|
-
* It
|
|
138
|
+
* It was used in the now deprecated CKEditor 5 builds to provide the default configuration options
|
|
139
|
+
* which are later used during the editor initialization.
|
|
139
140
|
*
|
|
140
141
|
* ```ts
|
|
141
142
|
* ClassicEditor.defaultConfig = {
|
|
@@ -165,7 +166,7 @@ class Editor extends /* #__PURE__ */ ObservableMixin() {
|
|
|
165
166
|
/**
|
|
166
167
|
* An array of plugins built into this editor class.
|
|
167
168
|
*
|
|
168
|
-
* It is used in CKEditor 5 builds to provide a list of plugins which are later automatically initialized
|
|
169
|
+
* It is used in the now deprecated CKEditor 5 builds to provide a list of plugins which are later automatically initialized
|
|
169
170
|
* during the editor initialization.
|
|
170
171
|
*
|
|
171
172
|
* They will be automatically initialized by the editor, unless listed in `config.removePlugins` and
|
package/src/plugincollection.js
CHANGED
|
@@ -274,8 +274,8 @@ export default class PluginCollection extends /* #__PURE__ */ EmitterMixin() {
|
|
|
274
274
|
* A plugin is not available and could not be loaded.
|
|
275
275
|
*
|
|
276
276
|
* Plugin classes (constructors) need to be provided to the editor before they can be loaded by name.
|
|
277
|
-
* This is usually done in CKEditor 5 builds by setting
|
|
278
|
-
* property.
|
|
277
|
+
* This is usually done in the now deprecated CKEditor 5 builds by setting
|
|
278
|
+
* the {@link module:core/editor/editor~Editor.builtinPlugins} property.
|
|
279
279
|
*
|
|
280
280
|
* **If you see this warning when using one of the deprecated CKEditor 5 Builds**,
|
|
281
281
|
* it means that you tried to enable a plugin that was not included in that build. This may be due to a typo
|