@ckeditor/ckeditor5-block-quote 37.0.0-alpha.0 → 37.0.0-alpha.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-block-quote",
3
- "version": "37.0.0-alpha.0",
3
+ "version": "37.0.0-alpha.1",
4
4
  "description": "Block quote feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,22 +12,22 @@
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-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-enter": "^37.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-list": "^37.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
28
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
29
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
30
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
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-enter": "^37.0.0-alpha.1",
24
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
25
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
26
+ "@ckeditor/ckeditor5-list": "^37.0.0-alpha.1",
27
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
28
+ "@ckeditor/ckeditor5-table": "^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
31
  "typescript": "^4.8.4",
32
32
  "webpack": "^5.58.1",
33
33
  "webpack-cli": "^4.9.0"
@@ -56,7 +56,7 @@
56
56
  ],
57
57
  "scripts": {
58
58
  "dll:build": "webpack",
59
- "build": "tsc -p ./tsconfig.release.json",
59
+ "build": "tsc -p ./tsconfig.json",
60
60
  "postversion": "npm run build"
61
61
  },
62
62
  "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 { BlockQuote, BlockQuoteCommand, BlockQuoteEditing, BlockQuoteUI } from './index';
6
+ declare module '@ckeditor/ckeditor5-core' {
7
+ interface PluginsMap {
8
+ [BlockQuote.pluginName]: BlockQuote;
9
+ [BlockQuoteEditing.pluginName]: BlockQuoteEditing;
10
+ [BlockQuoteUI.pluginName]: BlockQuoteUI;
11
+ }
12
+ interface CommandsMap {
13
+ blockQuote: BlockQuoteCommand;
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 {};
@@ -26,8 +26,3 @@ export default class BlockQuote extends Plugin {
26
26
  */
27
27
  static get pluginName(): 'BlockQuote';
28
28
  }
29
- declare module '@ckeditor/ckeditor5-core' {
30
- interface PluginsMap {
31
- [BlockQuote.pluginName]: BlockQuote;
32
- }
33
- }
@@ -59,8 +59,3 @@ export default class BlockQuoteCommand extends Command {
59
59
  */
60
60
  private _applyQuote;
61
61
  }
62
- declare module '@ckeditor/ckeditor5-core' {
63
- interface CommandsMap {
64
- blockQuote: BlockQuoteCommand;
65
- }
66
- }
@@ -27,8 +27,3 @@ export default class BlockQuoteEditing extends Plugin {
27
27
  */
28
28
  init(): void;
29
29
  }
30
- declare module '@ckeditor/ckeditor5-core' {
31
- interface PluginsMap {
32
- [BlockQuoteEditing.pluginName]: BlockQuoteEditing;
33
- }
34
- }
@@ -24,8 +24,3 @@ export default class BlockQuoteUI extends Plugin {
24
24
  */
25
25
  init(): void;
26
26
  }
27
- declare module '@ckeditor/ckeditor5-core' {
28
- interface PluginsMap {
29
- [BlockQuoteUI.pluginName]: BlockQuoteUI;
30
- }
31
- }
package/src/index.d.ts CHANGED
@@ -8,3 +8,5 @@
8
8
  export { default as BlockQuote } from './blockquote';
9
9
  export { default as BlockQuoteEditing } from './blockquoteediting';
10
10
  export { default as BlockQuoteUI } from './blockquoteui';
11
+ export type { default as BlockQuoteCommand } from './blockquotecommand';
12
+ import './augmentation';
package/src/index.js CHANGED
@@ -8,3 +8,4 @@
8
8
  export { default as BlockQuote } from './blockquote';
9
9
  export { default as BlockQuoteEditing } from './blockquoteediting';
10
10
  export { default as BlockQuoteUI } from './blockquoteui';
11
+ import './augmentation';