@ckeditor/ckeditor5-essentials 48.2.0 → 48.3.0-alpha.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.
@@ -1,10 +1,10 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import type { Essentials } from './index.js';
6
- declare module '@ckeditor/ckeditor5-core' {
7
- interface PluginsMap {
8
- [Essentials.pluginName]: Essentials;
9
- }
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import type { Essentials } from "./index.js";
6
+ declare module "@ckeditor/ckeditor5-core" {
7
+ interface PluginsMap {
8
+ [Essentials.pluginName]: Essentials;
9
+ }
10
10
  }
@@ -1,45 +1,45 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module essentials/essentials
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { Clipboard } from '@ckeditor/ckeditor5-clipboard';
10
- import { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter';
11
- import { SelectAll } from '@ckeditor/ckeditor5-select-all';
12
- import { Typing } from '@ckeditor/ckeditor5-typing';
13
- import { Undo } from '@ckeditor/ckeditor5-undo';
14
- import { AccessibilityHelp } from '@ckeditor/ckeditor5-ui';
6
+ * @module essentials/essentials
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { Clipboard } from "@ckeditor/ckeditor5-clipboard";
10
+ import { Enter, ShiftEnter } from "@ckeditor/ckeditor5-enter";
11
+ import { SelectAll } from "@ckeditor/ckeditor5-select-all";
12
+ import { Typing } from "@ckeditor/ckeditor5-typing";
13
+ import { Undo } from "@ckeditor/ckeditor5-undo";
14
+ import { AccessibilityHelp } from "@ckeditor/ckeditor5-ui";
15
15
  /**
16
- * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
17
- * to a `<textarea>` element.
18
- *
19
- * It includes:
20
- *
21
- * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
22
- * * {@link module:clipboard/clipboard~Clipboard},
23
- * * {@link module:enter/enter~Enter},
24
- * * {@link module:select-all/selectall~SelectAll},
25
- * * {@link module:enter/shiftenter~ShiftEnter},
26
- * * {@link module:typing/typing~Typing},
27
- * * {@link module:undo/undo~Undo}.
28
- *
29
- * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
30
- * If your editor is supposed to handle block content, make sure to include it.
31
- */
16
+ * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
17
+ * to a `<textarea>` element.
18
+ *
19
+ * It includes:
20
+ *
21
+ * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
22
+ * * {@link module:clipboard/clipboard~Clipboard},
23
+ * * {@link module:enter/enter~Enter},
24
+ * * {@link module:select-all/selectall~SelectAll},
25
+ * * {@link module:enter/shiftenter~ShiftEnter},
26
+ * * {@link module:typing/typing~Typing},
27
+ * * {@link module:undo/undo~Undo}.
28
+ *
29
+ * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
30
+ * If your editor is supposed to handle block content, make sure to include it.
31
+ */
32
32
  export declare class Essentials extends Plugin {
33
- /**
34
- * @inheritDoc
35
- */
36
- static get requires(): readonly [typeof AccessibilityHelp, typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo];
37
- /**
38
- * @inheritDoc
39
- */
40
- static get pluginName(): "Essentials";
41
- /**
42
- * @inheritDoc
43
- */
44
- static get isOfficialPlugin(): true;
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ static get requires(): PluginDependenciesOf<[AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo]>;
37
+ /**
38
+ * @inheritDoc
39
+ */
40
+ static get pluginName(): "Essentials";
41
+ /**
42
+ * @inheritDoc
43
+ */
44
+ static override get isOfficialPlugin(): true;
45
45
  }
@@ -2,3 +2,4 @@
2
2
  * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
+
@@ -2,3 +2,4 @@
2
2
  * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
+
package/dist/index.css CHANGED
@@ -3,5 +3,3 @@
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
 
6
-
7
- /*# sourceMappingURL=index.css.map */
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module essentials
7
- */
8
- export { Essentials } from './essentials.js';
9
- import './augmentation.js';
6
+ * @module essentials
7
+ */
8
+ export { Essentials } from "./essentials.js";
9
+ import "./augmentation.js";
package/dist/index.js CHANGED
@@ -2,55 +2,71 @@
2
2
  * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
- import { Plugin } from '@ckeditor/ckeditor5-core/dist/index.js';
6
- import { Clipboard } from '@ckeditor/ckeditor5-clipboard/dist/index.js';
7
- import { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter/dist/index.js';
8
- import { SelectAll } from '@ckeditor/ckeditor5-select-all/dist/index.js';
9
- import { Typing } from '@ckeditor/ckeditor5-typing/dist/index.js';
10
- import { Undo } from '@ckeditor/ckeditor5-undo/dist/index.js';
11
- import { AccessibilityHelp } from '@ckeditor/ckeditor5-ui/dist/index.js';
5
+ import { Plugin } from "@ckeditor/ckeditor5-core";
6
+ import { Clipboard } from "@ckeditor/ckeditor5-clipboard";
7
+ import { Enter, ShiftEnter } from "@ckeditor/ckeditor5-enter";
8
+ import { SelectAll } from "@ckeditor/ckeditor5-select-all";
9
+ import { Typing } from "@ckeditor/ckeditor5-typing";
10
+ import { Undo } from "@ckeditor/ckeditor5-undo";
11
+ import { AccessibilityHelp } from "@ckeditor/ckeditor5-ui";
12
12
 
13
13
  /**
14
- * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
15
- * to a `<textarea>` element.
16
- *
17
- * It includes:
18
- *
19
- * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
20
- * * {@link module:clipboard/clipboard~Clipboard},
21
- * * {@link module:enter/enter~Enter},
22
- * * {@link module:select-all/selectall~SelectAll},
23
- * * {@link module:enter/shiftenter~ShiftEnter},
24
- * * {@link module:typing/typing~Typing},
25
- * * {@link module:undo/undo~Undo}.
26
- *
27
- * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
28
- * If your editor is supposed to handle block content, make sure to include it.
29
- */ class Essentials extends Plugin {
30
- /**
31
- * @inheritDoc
32
- */ static get requires() {
33
- return [
34
- AccessibilityHelp,
35
- Clipboard,
36
- Enter,
37
- SelectAll,
38
- ShiftEnter,
39
- Typing,
40
- Undo
41
- ];
42
- }
43
- /**
44
- * @inheritDoc
45
- */ static get pluginName() {
46
- return 'Essentials';
47
- }
48
- /**
49
- * @inheritDoc
50
- */ static get isOfficialPlugin() {
51
- return true;
52
- }
53
- }
14
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
15
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
16
+ */
17
+ /**
18
+ * @module essentials/essentials
19
+ */
20
+ /**
21
+ * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
22
+ * to a `<textarea>` element.
23
+ *
24
+ * It includes:
25
+ *
26
+ * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
27
+ * * {@link module:clipboard/clipboard~Clipboard},
28
+ * * {@link module:enter/enter~Enter},
29
+ * * {@link module:select-all/selectall~SelectAll},
30
+ * * {@link module:enter/shiftenter~ShiftEnter},
31
+ * * {@link module:typing/typing~Typing},
32
+ * * {@link module:undo/undo~Undo}.
33
+ *
34
+ * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
35
+ * If your editor is supposed to handle block content, make sure to include it.
36
+ */
37
+ var Essentials = class extends Plugin {
38
+ /**
39
+ * @inheritDoc
40
+ */
41
+ static get requires() {
42
+ return [
43
+ AccessibilityHelp,
44
+ Clipboard,
45
+ Enter,
46
+ SelectAll,
47
+ ShiftEnter,
48
+ Typing,
49
+ Undo
50
+ ];
51
+ }
52
+ /**
53
+ * @inheritDoc
54
+ */
55
+ static get pluginName() {
56
+ return "Essentials";
57
+ }
58
+ /**
59
+ * @inheritDoc
60
+ */
61
+ static get isOfficialPlugin() {
62
+ return true;
63
+ }
64
+ };
65
+
66
+ /**
67
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
68
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
69
+ */
54
70
 
55
71
  export { Essentials };
56
- //# sourceMappingURL=index.js.map
72
+ //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js","../src/essentials.ts"],"names":["Essentials","Plugin","requires","AccessibilityHelp","Clipboard","Enter","SelectAll","ShiftEnter","Typing","Undo","pluginName","isOfficialPlugin"],"mappings":"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","file":"index.js.map","sourcesContent":["import { Plugin } from '@ckeditor/ckeditor5-core/dist/index.js';\nimport { Clipboard } from '@ckeditor/ckeditor5-clipboard/dist/index.js';\nimport { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter/dist/index.js';\nimport { SelectAll } from '@ckeditor/ckeditor5-select-all/dist/index.js';\nimport { Typing } from '@ckeditor/ckeditor5-typing/dist/index.js';\nimport { Undo } from '@ckeditor/ckeditor5-undo/dist/index.js';\nimport { AccessibilityHelp } from '@ckeditor/ckeditor5-ui/dist/index.js';\n\n/**\n * A plugin including all essential editing features. It represents a set of features that enables similar functionalities\n * to a `<textarea>` element.\n *\n * It includes:\n *\n * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\n * * {@link module:clipboard/clipboard~Clipboard},\n * * {@link module:enter/enter~Enter},\n * * {@link module:select-all/selectall~SelectAll},\n * * {@link module:enter/shiftenter~ShiftEnter},\n * * {@link module:typing/typing~Typing},\n * * {@link module:undo/undo~Undo}.\n *\n * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).\n * If your editor is supposed to handle block content, make sure to include it.\n */ class Essentials extends Plugin {\n /**\n\t * @inheritDoc\n\t */ static get requires() {\n return [\n AccessibilityHelp,\n Clipboard,\n Enter,\n SelectAll,\n ShiftEnter,\n Typing,\n Undo\n ];\n }\n /**\n\t * @inheritDoc\n\t */ static get pluginName() {\n return 'Essentials';\n }\n /**\n\t * @inheritDoc\n\t */ static get isOfficialPlugin() {\n return true;\n }\n}\n\nexport { Essentials };\n//# sourceMappingURL=index.js.map\n","/**\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n/**\n * @module essentials/essentials\n */\n\nimport { Plugin } from '@ckeditor/ckeditor5-core';\n\nimport { Clipboard } from '@ckeditor/ckeditor5-clipboard';\nimport { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter';\nimport { SelectAll } from '@ckeditor/ckeditor5-select-all';\nimport { Typing } from '@ckeditor/ckeditor5-typing';\nimport { Undo } from '@ckeditor/ckeditor5-undo';\nimport { AccessibilityHelp } from '@ckeditor/ckeditor5-ui';\n\n/**\n * A plugin including all essential editing features. It represents a set of features that enables similar functionalities\n * to a `<textarea>` element.\n *\n * It includes:\n *\n * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\n * * {@link module:clipboard/clipboard~Clipboard},\n * * {@link module:enter/enter~Enter},\n * * {@link module:select-all/selectall~SelectAll},\n * * {@link module:enter/shiftenter~ShiftEnter},\n * * {@link module:typing/typing~Typing},\n * * {@link module:undo/undo~Undo}.\n *\n * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).\n * If your editor is supposed to handle block content, make sure to include it.\n */\nexport class Essentials extends Plugin {\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get requires() {\n\t\treturn [ AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ] as const;\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get pluginName() {\n\t\treturn 'Essentials' as const;\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static override get isOfficialPlugin(): true {\n\t\treturn true;\n\t}\n}\n"]}
1
+ {"version":3,"sources":["index.js","../src/essentials.ts"],"names":[],"mappings":"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","file":"index.js.map","sourcesContent":["import { Plugin } from \"@ckeditor/ckeditor5-core\";\nimport { Clipboard } from \"@ckeditor/ckeditor5-clipboard\";\nimport { Enter, ShiftEnter } from \"@ckeditor/ckeditor5-enter\";\nimport { SelectAll } from \"@ckeditor/ckeditor5-select-all\";\nimport { Typing } from \"@ckeditor/ckeditor5-typing\";\nimport { Undo } from \"@ckeditor/ckeditor5-undo\";\nimport { AccessibilityHelp } from \"@ckeditor/ckeditor5-ui\";\n\n/**\n* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n*/\n/**\n* @module essentials/essentials\n*/\n/**\n* A plugin including all essential editing features. It represents a set of features that enables similar functionalities\n* to a `<textarea>` element.\n*\n* It includes:\n*\n* * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\n* * {@link module:clipboard/clipboard~Clipboard},\n* * {@link module:enter/enter~Enter},\n* * {@link module:select-all/selectall~SelectAll},\n* * {@link module:enter/shiftenter~ShiftEnter},\n* * {@link module:typing/typing~Typing},\n* * {@link module:undo/undo~Undo}.\n*\n* This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).\n* If your editor is supposed to handle block content, make sure to include it.\n*/\nvar Essentials = class extends Plugin {\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get requires() {\n\t\treturn [\n\t\t\tAccessibilityHelp,\n\t\t\tClipboard,\n\t\t\tEnter,\n\t\t\tSelectAll,\n\t\t\tShiftEnter,\n\t\t\tTyping,\n\t\t\tUndo\n\t\t];\n\t}\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get pluginName() {\n\t\treturn \"Essentials\";\n\t}\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get isOfficialPlugin() {\n\t\treturn true;\n\t}\n};\n\n/**\n* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n*/\n\nexport { Essentials };\n//# sourceMappingURL=index.js.map","/**\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n/**\n * @module essentials/essentials\n */\n\nimport { Plugin, type PluginDependenciesOf } from '@ckeditor/ckeditor5-core';\n\nimport { Clipboard } from '@ckeditor/ckeditor5-clipboard';\nimport { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter';\nimport { SelectAll } from '@ckeditor/ckeditor5-select-all';\nimport { Typing } from '@ckeditor/ckeditor5-typing';\nimport { Undo } from '@ckeditor/ckeditor5-undo';\nimport { AccessibilityHelp } from '@ckeditor/ckeditor5-ui';\n\n/**\n * A plugin including all essential editing features. It represents a set of features that enables similar functionalities\n * to a `<textarea>` element.\n *\n * It includes:\n *\n * * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\n * * {@link module:clipboard/clipboard~Clipboard},\n * * {@link module:enter/enter~Enter},\n * * {@link module:select-all/selectall~SelectAll},\n * * {@link module:enter/shiftenter~ShiftEnter},\n * * {@link module:typing/typing~Typing},\n * * {@link module:undo/undo~Undo}.\n *\n * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).\n * If your editor is supposed to handle block content, make sure to include it.\n */\nexport class Essentials extends Plugin {\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get requires(): PluginDependenciesOf<[ AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ]> {\n\t\treturn [ AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ];\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get pluginName() {\n\t\treturn 'Essentials' as const;\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static override get isOfficialPlugin(): true {\n\t\treturn true;\n\t}\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-essentials",
3
- "version": "48.2.0",
3
+ "version": "48.3.0-alpha.0",
4
4
  "description": "Essential editing features for CKEditor 5.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "CKSource (http://cksource.com/)",
@@ -26,13 +26,13 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@ckeditor/ckeditor5-clipboard": "48.2.0",
30
- "@ckeditor/ckeditor5-core": "48.2.0",
31
- "@ckeditor/ckeditor5-enter": "48.2.0",
32
- "@ckeditor/ckeditor5-select-all": "48.2.0",
33
- "@ckeditor/ckeditor5-typing": "48.2.0",
34
- "@ckeditor/ckeditor5-ui": "48.2.0",
35
- "@ckeditor/ckeditor5-undo": "48.2.0"
29
+ "@ckeditor/ckeditor5-clipboard": "48.3.0-alpha.0",
30
+ "@ckeditor/ckeditor5-core": "48.3.0-alpha.0",
31
+ "@ckeditor/ckeditor5-enter": "48.3.0-alpha.0",
32
+ "@ckeditor/ckeditor5-select-all": "48.3.0-alpha.0",
33
+ "@ckeditor/ckeditor5-typing": "48.3.0-alpha.0",
34
+ "@ckeditor/ckeditor5-ui": "48.3.0-alpha.0",
35
+ "@ckeditor/ckeditor5-undo": "48.3.0-alpha.0"
36
36
  },
37
37
  "files": [
38
38
  "dist",
@@ -1 +0,0 @@
1
- {"version":3,"sources":["index.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index.css.map */"]}