@ckeditor/ckeditor5-paste-from-office 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-paste-from-office",
3
- "version": "37.0.0-alpha.0",
3
+ "version": "37.0.0-alpha.1",
4
4
  "description": "Paste from Office feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,29 +12,29 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^37.0.0-alpha.0"
15
+ "ckeditor5": "^37.0.0-alpha.1"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.0",
19
- "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.0",
20
- "@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.0",
21
- "@ckeditor/ckeditor5-code-block": "^37.0.0-alpha.0",
22
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-dev-utils": "^34.0.0",
24
- "@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
28
- "@ckeditor/ckeditor5-font": "^37.0.0-alpha.0",
29
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
30
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
31
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.0",
32
- "@ckeditor/ckeditor5-list": "^37.0.0-alpha.0",
33
- "@ckeditor/ckeditor5-page-break": "^37.0.0-alpha.0",
34
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
35
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
36
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
37
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
19
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.1",
20
+ "@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.1",
21
+ "@ckeditor/ckeditor5-code-block": "^37.0.0-alpha.1",
22
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
23
+ "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
24
+ "@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.1",
25
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
26
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
27
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1",
28
+ "@ckeditor/ckeditor5-font": "^37.0.0-alpha.1",
29
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
30
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
31
+ "@ckeditor/ckeditor5-link": "^37.0.0-alpha.1",
32
+ "@ckeditor/ckeditor5-list": "^37.0.0-alpha.1",
33
+ "@ckeditor/ckeditor5-page-break": "^37.0.0-alpha.1",
34
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
35
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
36
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
37
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
38
38
  "typescript": "^4.8.4",
39
39
  "webpack": "^5.58.1",
40
40
  "webpack-cli": "^4.9.0"
@@ -63,7 +63,7 @@
63
63
  ],
64
64
  "scripts": {
65
65
  "dll:build": "webpack",
66
- "build": "tsc -p ./tsconfig.release.json",
66
+ "build": "tsc -p ./tsconfig.json",
67
67
  "postversion": "npm run build"
68
68
  },
69
69
  "types": "src/index.d.ts"
@@ -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 { PasteFromOffice } from './index';
6
+ declare module '@ckeditor/ckeditor5-core' {
7
+ interface PluginsMap {
8
+ [PasteFromOffice.pluginName]: PasteFromOffice;
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 {};
@@ -13,7 +13,7 @@ import { type StylesProcessor, type ViewDocumentFragment } from 'ckeditor5/src/e
13
13
  */
14
14
  export declare function parseHtml(htmlString: string, stylesProcessor: StylesProcessor): ParseHtmlResult;
15
15
  /**
16
- * The result of {@link #parseHtml}.
16
+ * The result of {@link ~parseHtml}.
17
17
  */
18
18
  export interface ParseHtmlResult {
19
19
  /**
package/src/index.d.ts CHANGED
@@ -6,3 +6,4 @@
6
6
  * @module paste-from-office
7
7
  */
8
8
  export { default as PasteFromOffice } from './pastefromoffice';
9
+ import './augmentation';
package/src/index.js CHANGED
@@ -6,3 +6,4 @@
6
6
  * @module paste-from-office
7
7
  */
8
8
  export { default as PasteFromOffice } from './pastefromoffice';
9
+ import './augmentation';
@@ -33,8 +33,3 @@ export default class PasteFromOffice extends Plugin {
33
33
  */
34
34
  init(): void;
35
35
  }
36
- declare module '@ckeditor/ckeditor5-core' {
37
- interface PluginsMap {
38
- [PasteFromOffice.pluginName]: PasteFromOffice;
39
- }
40
- }