@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.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/types/editor/editor.d.ts +1 -1
- package/dist/types/editor/editorconfig.d.ts +1 -2
- package/package.json +4 -4
- package/src/editor/editor.d.ts +1 -1
- package/src/editor/editor.js +1 -1
- package/src/editor/editorconfig.d.ts +1 -2
- package/src/plugincollection.js +2 -2
package/dist/index.js
CHANGED
|
@@ -641,8 +641,8 @@ import { isFunction } from 'lodash-es';
|
|
|
641
641
|
* **If you see this warning when using one of the editor creators directly** (not a build), then it means
|
|
642
642
|
* that you tried loading plugins by name. However, unlike CKEditor 4, CKEditor 5 does not implement a "plugin loader".
|
|
643
643
|
* This means that CKEditor 5 does not know where to load the plugin modules from. Therefore, you need to
|
|
644
|
-
* provide each plugin through a reference (as a constructor function). Check out the examples in
|
|
645
|
-
* {@glink getting-started/
|
|
644
|
+
* provide each plugin through a reference (as a constructor function). Check out the examples in the
|
|
645
|
+
* {@glink getting-started/installation/quick-start Quick start} guide.
|
|
646
646
|
*
|
|
647
647
|
* @error plugincollection-plugin-not-found
|
|
648
648
|
* @param plugin The name of the plugin which could not be loaded.
|
|
@@ -2160,7 +2160,7 @@ const DEFAULT_GROUP_ID = 'common';
|
|
|
2160
2160
|
* This error is thrown when trying to pass a `<textarea>` element to a `create()` function of an editor class.
|
|
2161
2161
|
*
|
|
2162
2162
|
* The only editor type which can be initialized on `<textarea>` elements is
|
|
2163
|
-
* the {@glink getting-started/
|
|
2163
|
+
* the {@glink getting-started/setup/editor-types#classic-editor classic editor}.
|
|
2164
2164
|
* 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
|
|
2165
2165
|
* editable element and therefore `<textarea>` is not appropriate for them. Use a `<div>` or another text container instead:
|
|
2166
2166
|
*
|