@ckeditor/ckeditor5-essentials 38.2.0-alpha.0 → 38.2.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 +2 -2
- package/src/augmentation.d.ts +1 -1
- package/src/essentials.d.ts +6 -6
- package/src/essentials.js +6 -6
- package/src/index.d.ts +2 -2
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-essentials",
|
|
3
|
-
"version": "38.2.0-alpha.
|
|
3
|
+
"version": "38.2.0-alpha.1",
|
|
4
4
|
"description": "Essential editing features for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"type": "module",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "38.2.0-alpha.
|
|
16
|
+
"ckeditor5": "38.2.0-alpha.1"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
-
import type { Essentials } from './index';
|
|
5
|
+
import type { Essentials } from './index.js';
|
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
|
7
7
|
interface PluginsMap {
|
|
8
8
|
[Essentials.pluginName]: Essentials;
|
package/src/essentials.d.ts
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module essentials/essentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Clipboard } from 'ckeditor5/src/clipboard';
|
|
10
|
-
import { Enter, ShiftEnter } from 'ckeditor5/src/enter';
|
|
11
|
-
import { SelectAll } from 'ckeditor5/src/select-all';
|
|
12
|
-
import { Typing } from 'ckeditor5/src/typing';
|
|
13
|
-
import { Undo } from 'ckeditor5/src/undo';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Clipboard } from 'ckeditor5/src/clipboard.js';
|
|
10
|
+
import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
|
|
11
|
+
import { SelectAll } from 'ckeditor5/src/select-all.js';
|
|
12
|
+
import { Typing } from 'ckeditor5/src/typing.js';
|
|
13
|
+
import { Undo } from 'ckeditor5/src/undo.js';
|
|
14
14
|
/**
|
|
15
15
|
* A plugin including all essential editing features. It represents a set of features that enables similar functionalities
|
|
16
16
|
* to a `<textarea>` element.
|
package/src/essentials.js
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module essentials/essentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Clipboard } from 'ckeditor5/src/clipboard';
|
|
10
|
-
import { Enter, ShiftEnter } from 'ckeditor5/src/enter';
|
|
11
|
-
import { SelectAll } from 'ckeditor5/src/select-all';
|
|
12
|
-
import { Typing } from 'ckeditor5/src/typing';
|
|
13
|
-
import { Undo } from 'ckeditor5/src/undo';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Clipboard } from 'ckeditor5/src/clipboard.js';
|
|
10
|
+
import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
|
|
11
|
+
import { SelectAll } from 'ckeditor5/src/select-all.js';
|
|
12
|
+
import { Typing } from 'ckeditor5/src/typing.js';
|
|
13
|
+
import { Undo } from 'ckeditor5/src/undo.js';
|
|
14
14
|
/**
|
|
15
15
|
* A plugin including all essential editing features. It represents a set of features that enables similar functionalities
|
|
16
16
|
* to a `<textarea>` element.
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED