@ckeditor/ckeditor5-essentials 36.0.1 → 37.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-essentials",
3
- "version": "36.0.1",
3
+ "version": "37.0.0-alpha.0",
4
4
  "description": "Essential editing features for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,19 +12,19 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^36.0.1"
15
+ "ckeditor5": "^37.0.0-alpha.0"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-clipboard": "^36.0.1",
19
- "@ckeditor/ckeditor5-core": "^36.0.1",
20
- "@ckeditor/ckeditor5-dev-utils": "^32.0.0",
21
- "@ckeditor/ckeditor5-editor-classic": "^36.0.1",
22
- "@ckeditor/ckeditor5-enter": "^36.0.1",
23
- "@ckeditor/ckeditor5-paragraph": "^36.0.1",
24
- "@ckeditor/ckeditor5-select-all": "^36.0.1",
25
- "@ckeditor/ckeditor5-theme-lark": "^36.0.1",
26
- "@ckeditor/ckeditor5-typing": "^36.0.1",
27
- "@ckeditor/ckeditor5-undo": "^36.0.1",
18
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.0",
19
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
20
+ "@ckeditor/ckeditor5-dev-utils": "^34.0.0",
21
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
22
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
23
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
24
+ "@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.0",
25
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
26
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
27
+ "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.0",
28
28
  "typescript": "^4.8.4",
29
29
  "webpack": "^5.58.1",
30
30
  "webpack-cli": "^4.9.0"
@@ -55,5 +55,6 @@
55
55
  "dll:build": "webpack",
56
56
  "build": "tsc -p ./tsconfig.release.json",
57
57
  "postversion": "npm run build"
58
- }
58
+ },
59
+ "types": "src/index.d.ts"
59
60
  }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module essentials/essentials
7
+ */
8
+ import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
9
+ /**
10
+ * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
11
+ * to a `<textarea>` element.
12
+ *
13
+ * It includes:
14
+ *
15
+ * * {@link module:clipboard/clipboard~Clipboard},
16
+ * * {@link module:enter/enter~Enter},
17
+ * * {@link module:select-all/selectall~SelectAll},
18
+ * * {@link module:enter/shiftenter~ShiftEnter},
19
+ * * {@link module:typing/typing~Typing},
20
+ * * {@link module:undo/undo~Undo}.
21
+ *
22
+ * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
23
+ * If your editor is supposed to handle block content, make sure to include it.
24
+ */
25
+ export default class Essentials extends Plugin {
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get requires(): PluginDependencies;
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get pluginName(): 'Essentials';
34
+ }
35
+ declare module '@ckeditor/ckeditor5-core' {
36
+ interface PluginsMap {
37
+ [Essentials.pluginName]: Essentials;
38
+ }
39
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module essentials
7
+ */
8
+ export { default as Essentials } from './essentials';