@ckeditor/ckeditor5-restricted-editing 44.2.1 → 44.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-restricted-editing",
3
- "version": "44.2.1",
3
+ "version": "44.3.0-alpha.1",
4
4
  "description": "Restricted editing feature for CKEditor 5 editors.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,11 +12,11 @@
12
12
  "type": "module",
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "44.2.1",
16
- "@ckeditor/ckeditor5-engine": "44.2.1",
17
- "@ckeditor/ckeditor5-ui": "44.2.1",
18
- "@ckeditor/ckeditor5-utils": "44.2.1",
19
- "ckeditor5": "44.2.1"
15
+ "@ckeditor/ckeditor5-core": "44.3.0-alpha.1",
16
+ "@ckeditor/ckeditor5-engine": "44.3.0-alpha.1",
17
+ "@ckeditor/ckeditor5-ui": "44.3.0-alpha.1",
18
+ "@ckeditor/ckeditor5-utils": "44.3.0-alpha.1",
19
+ "ckeditor5": "44.3.0-alpha.1"
20
20
  },
21
21
  "author": "CKSource (http://cksource.com/)",
22
22
  "license": "SEE LICENSE IN LICENSE.md",
@@ -41,7 +41,10 @@ export interface RestrictedEditingConfig {
41
41
  * };
42
42
  * ```
43
43
  *
44
- * To make a command always enabled (also outside non-restricted areas) use
44
+ * Only inline content inserting or editing commands are allowed in this setting. Block content commands such as
45
+ * `insertTable` or `enter` cannot be allowed via this setting, as they are not supported in the restricted editing mode.
46
+ *
47
+ * To make a command always enabled (also outside non-restricted areas) use the
45
48
  * {@link module:restricted-editing/restrictededitingmodeediting~RestrictedEditingModeEditing#enableCommand} method.
46
49
  */
47
50
  allowedCommands: Array<string>;