@ckeditor/ckeditor5-remove-format 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-remove-format",
3
- "version": "37.0.0-alpha.0",
3
+ "version": "37.0.0-alpha.1",
4
4
  "description": "Remove format feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,24 +12,24 @@
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-core": "^37.0.0-alpha.0",
21
- "@ckeditor/ckeditor5-dev-utils": "^34.0.0",
22
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.0",
28
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
29
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
30
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
31
- "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.0",
32
- "@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-core": "^37.0.0-alpha.1",
21
+ "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
22
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
23
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
24
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1",
25
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
26
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
27
+ "@ckeditor/ckeditor5-link": "^37.0.0-alpha.1",
28
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
29
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
30
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
31
+ "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.1",
32
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
33
33
  "typescript": "^4.8.4",
34
34
  "webpack": "^5.58.1",
35
35
  "webpack-cli": "^4.9.0"
@@ -58,7 +58,7 @@
58
58
  ],
59
59
  "scripts": {
60
60
  "dll:build": "webpack",
61
- "build": "tsc -p ./tsconfig.release.json",
61
+ "build": "tsc -p ./tsconfig.json",
62
62
  "postversion": "npm run build"
63
63
  },
64
64
  "types": "src/index.d.ts"
@@ -0,0 +1,15 @@
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 { RemoveFormat, RemoveFormatEditing, RemoveFormatUI, RemoveFormatCommand } from './index';
6
+ declare module '@ckeditor/ckeditor5-core' {
7
+ interface PluginsMap {
8
+ [RemoveFormat.pluginName]: RemoveFormat;
9
+ [RemoveFormatUI.pluginName]: RemoveFormatUI;
10
+ [RemoveFormatEditing.pluginName]: RemoveFormatEditing;
11
+ }
12
+ interface CommandsMap {
13
+ removeFormat: RemoveFormatCommand;
14
+ }
15
+ }
@@ -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
@@ -8,3 +8,5 @@
8
8
  export { default as RemoveFormat } from './removeformat';
9
9
  export { default as RemoveFormatEditing } from './removeformatediting';
10
10
  export { default as RemoveFormatUI } from './removeformatui';
11
+ export type { default as RemoveFormatCommand } from './removeformatcommand';
12
+ import './augmentation';
package/src/index.js CHANGED
@@ -8,3 +8,4 @@
8
8
  export { default as RemoveFormat } from './removeformat';
9
9
  export { default as RemoveFormatEditing } from './removeformatediting';
10
10
  export { default as RemoveFormatUI } from './removeformatui';
11
+ import './augmentation';
@@ -24,8 +24,3 @@ export default class RemoveFormat extends Plugin {
24
24
  */
25
25
  static get pluginName(): 'RemoveFormat';
26
26
  }
27
- declare module '@ckeditor/ckeditor5-core' {
28
- interface PluginsMap {
29
- [RemoveFormat.pluginName]: RemoveFormat;
30
- }
31
- }
@@ -40,8 +40,3 @@ export default class RemoveFormatCommand extends Command {
40
40
  */
41
41
  private _getFormattingAttributes;
42
42
  }
43
- declare module '@ckeditor/ckeditor5-core' {
44
- interface CommandsMap {
45
- removeFormat: RemoveFormatCommand;
46
- }
47
- }
@@ -21,8 +21,3 @@ export default class RemoveFormatEditing extends Plugin {
21
21
  */
22
22
  init(): void;
23
23
  }
24
- declare module '@ckeditor/ckeditor5-core' {
25
- interface PluginsMap {
26
- [RemoveFormatEditing.pluginName]: RemoveFormatEditing;
27
- }
28
- }
@@ -20,8 +20,3 @@ export default class RemoveFormatUI extends Plugin {
20
20
  */
21
21
  init(): void;
22
22
  }
23
- declare module '@ckeditor/ckeditor5-core' {
24
- interface PluginsMap {
25
- [RemoveFormatUI.pluginName]: RemoveFormatUI;
26
- }
27
- }