@ckeditor/ckeditor5-source-editing 37.0.0-alpha.0 → 37.0.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 +15 -15
- package/src/augmentation.d.ts +10 -0
- package/src/augmentation.js +5 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/sourceediting.d.ts +0 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-source-editing",
|
3
|
-
"version": "37.0.0-alpha.
|
3
|
+
"version": "37.0.0-alpha.1",
|
4
4
|
"description": "Source editing feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,21 +12,21 @@
|
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
16
|
-
"ckeditor5": "^37.0.0-alpha.
|
15
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
|
16
|
+
"ckeditor5": "^37.0.0-alpha.1"
|
17
17
|
},
|
18
18
|
"devDependencies": {
|
19
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
20
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
21
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
22
|
-
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.
|
23
|
-
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.
|
24
|
-
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.
|
25
|
-
"@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.
|
26
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
27
|
-
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.
|
28
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
29
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
19
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
|
20
|
+
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
21
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
|
22
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
|
23
|
+
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.1",
|
24
|
+
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
|
25
|
+
"@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.1",
|
26
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
|
27
|
+
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
|
28
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
|
29
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
|
30
30
|
"typescript": "^4.8.4",
|
31
31
|
"webpack": "^5.58.1",
|
32
32
|
"webpack-cli": "^4.9.0"
|
@@ -54,7 +54,7 @@
|
|
54
54
|
"CHANGELOG.md"
|
55
55
|
],
|
56
56
|
"scripts": {
|
57
|
-
"build": "tsc -p ./tsconfig.
|
57
|
+
"build": "tsc -p ./tsconfig.json",
|
58
58
|
"postversion": "npm run build",
|
59
59
|
"dll:build": "webpack"
|
60
60
|
},
|
@@ -0,0 +1,10 @@
|
|
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
|
+
import type { SourceEditing } from './index';
|
6
|
+
declare module '@ckeditor/ckeditor5-core' {
|
7
|
+
interface PluginsMap {
|
8
|
+
[SourceEditing.pluginName]: SourceEditing;
|
9
|
+
}
|
10
|
+
}
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
package/src/sourceediting.d.ts
CHANGED