@ckeditor/ckeditor5-core 42.0.0-alpha.8 → 42.0.0

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.
@@ -487,7 +487,7 @@ export {};
487
487
  * This error is thrown when trying to pass a `<textarea>` element to a `create()` function of an editor class.
488
488
  *
489
489
  * The only editor type which can be initialized on `<textarea>` elements is
490
- * the {@glink getting-started/legacy/installation-methods/predefined-builds#classic-editor classic editor}.
490
+ * the {@glink getting-started/setup/editor-types#classic-editor classic editor}.
491
491
  * This editor hides the passed element and inserts its own UI next to it. Other types of editors reuse the passed element as their root
492
492
  * editable element and therefore `<textarea>` is not appropriate for them. Use a `<div>` or another text container instead:
493
493
  *
@@ -51,8 +51,7 @@ export interface EditorConfig {
51
51
  *
52
52
  * **Note:** This configuration works only for simple plugins which utilize the
53
53
  * {@link module:core/plugin~PluginInterface plugin interface} and have no dependencies. To extend a
54
- * build with complex features, create a
55
- * {@glink getting-started/legacy/installation-methods/quick-start-other#creating-custom-builds-with-online-builder custom build}.
54
+ * build with complex features, try [CKEditr 5 Builder](https://ckeditor.com/ckeditor-5/builder?redirect=docs).
56
55
  *
57
56
  * **Note:** Make sure you include the new features in you toolbar configuration. Learn more
58
57
  * about the {@glink getting-started/setup/toolbar toolbar setup}.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-core",
3
- "version": "42.0.0-alpha.8",
3
+ "version": "42.0.0",
4
4
  "description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
5
5
  "keywords": [
6
6
  "wysiwyg",
@@ -24,9 +24,9 @@
24
24
  "type": "module",
25
25
  "main": "src/index.js",
26
26
  "dependencies": {
27
- "@ckeditor/ckeditor5-engine": "42.0.0-alpha.8",
28
- "@ckeditor/ckeditor5-utils": "42.0.0-alpha.8",
29
- "@ckeditor/ckeditor5-watchdog": "42.0.0-alpha.8",
27
+ "@ckeditor/ckeditor5-engine": "42.0.0",
28
+ "@ckeditor/ckeditor5-utils": "42.0.0",
29
+ "@ckeditor/ckeditor5-watchdog": "42.0.0",
30
30
  "lodash-es": "4.17.21"
31
31
  },
32
32
  "author": "CKSource (http://cksource.com/)",
@@ -483,7 +483,7 @@ export {};
483
483
  * This error is thrown when trying to pass a `<textarea>` element to a `create()` function of an editor class.
484
484
  *
485
485
  * The only editor type which can be initialized on `<textarea>` elements is
486
- * the {@glink getting-started/legacy/installation-methods/predefined-builds#classic-editor classic editor}.
486
+ * the {@glink getting-started/setup/editor-types#classic-editor classic editor}.
487
487
  * This editor hides the passed element and inserts its own UI next to it. Other types of editors reuse the passed element as their root
488
488
  * editable element and therefore `<textarea>` is not appropriate for them. Use a `<div>` or another text container instead:
489
489
  *
@@ -384,7 +384,7 @@ export default Editor;
384
384
  * This error is thrown when trying to pass a `<textarea>` element to a `create()` function of an editor class.
385
385
  *
386
386
  * The only editor type which can be initialized on `<textarea>` elements is
387
- * the {@glink getting-started/legacy/installation-methods/predefined-builds#classic-editor classic editor}.
387
+ * the {@glink getting-started/setup/editor-types#classic-editor classic editor}.
388
388
  * This editor hides the passed element and inserts its own UI next to it. Other types of editors reuse the passed element as their root
389
389
  * editable element and therefore `<textarea>` is not appropriate for them. Use a `<div>` or another text container instead:
390
390
  *
@@ -47,8 +47,7 @@ export interface EditorConfig {
47
47
  *
48
48
  * **Note:** This configuration works only for simple plugins which utilize the
49
49
  * {@link module:core/plugin~PluginInterface plugin interface} and have no dependencies. To extend a
50
- * build with complex features, create a
51
- * {@glink getting-started/legacy/installation-methods/quick-start-other#creating-custom-builds-with-online-builder custom build}.
50
+ * build with complex features, try [CKEditr 5 Builder](https://ckeditor.com/ckeditor-5/builder?redirect=docs).
52
51
  *
53
52
  * **Note:** Make sure you include the new features in you toolbar configuration. Learn more
54
53
  * about the {@glink getting-started/setup/toolbar toolbar setup}.
@@ -278,8 +278,8 @@ export default class PluginCollection extends /* #__PURE__ */ EmitterMixin() {
278
278
  * **If you see this warning when using one of the editor creators directly** (not a build), then it means
279
279
  * that you tried loading plugins by name. However, unlike CKEditor 4, CKEditor 5 does not implement a "plugin loader".
280
280
  * This means that CKEditor 5 does not know where to load the plugin modules from. Therefore, you need to
281
- * provide each plugin through a reference (as a constructor function). Check out the examples in
282
- * {@glink getting-started/legacy/advanced/alternative-setups/integrating-from-source-webpack "Building from source"}.
281
+ * provide each plugin through a reference (as a constructor function). Check out the examples in the
282
+ * {@glink getting-started/installation/quick-start Quick start} guide.
283
283
  *
284
284
  * @error plugincollection-plugin-not-found
285
285
  * @param plugin The name of the plugin which could not be loaded.