@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-source-editing",
3
- "version": "37.0.0-alpha.0",
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.0",
16
- "ckeditor5": "^37.0.0-alpha.0"
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.0",
20
- "@ckeditor/ckeditor5-dev-utils": "^34.0.0",
21
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
22
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
28
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0",
29
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
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.release.json",
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
+ }
@@ -0,0 +1,5 @@
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
+ export {};
package/src/index.d.ts CHANGED
@@ -6,3 +6,4 @@
6
6
  * @module source-editing
7
7
  */
8
8
  export { default as SourceEditing } from './sourceediting';
9
+ import './augmentation';
package/src/index.js CHANGED
@@ -6,3 +6,4 @@
6
6
  * @module source-editing
7
7
  */
8
8
  export { default as SourceEditing } from './sourceediting';
9
+ import './augmentation';
@@ -100,8 +100,3 @@ export default class SourceEditing extends Plugin {
100
100
  */
101
101
  private _isAllowedToHandleSourceEditingMode;
102
102
  }
103
- declare module '@ckeditor/ckeditor5-core' {
104
- interface PluginsMap {
105
- [SourceEditing.pluginName]: SourceEditing;
106
- }
107
- }