@ckeditor/ckeditor5-block-quote 38.2.0-alpha.0 → 38.2.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -2
- package/src/augmentation.d.ts +1 -1
- package/src/blockquote.d.ts +3 -3
- package/src/blockquote.js +3 -3
- package/src/blockquotecommand.d.ts +1 -1
- package/src/blockquotecommand.js +2 -2
- package/src/blockquoteediting.d.ts +3 -3
- package/src/blockquoteediting.js +4 -4
- package/src/blockquoteui.d.ts +1 -1
- package/src/blockquoteui.js +2 -2
- package/src/index.d.ts +5 -5
- package/src/index.js +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-block-quote",
|
3
|
-
"version": "38.2.0-alpha.
|
3
|
+
"version": "38.2.0-alpha.1",
|
4
4
|
"description": "Block quote feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"main": "src/index.js",
|
14
14
|
"type": "module",
|
15
15
|
"dependencies": {
|
16
|
-
"ckeditor5": "38.2.0-alpha.
|
16
|
+
"ckeditor5": "38.2.0-alpha.1"
|
17
17
|
},
|
18
18
|
"engines": {
|
19
19
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
|
-
import type { BlockQuote, BlockQuoteCommand, BlockQuoteEditing, BlockQuoteUI } from './index';
|
5
|
+
import type { BlockQuote, BlockQuoteCommand, BlockQuoteEditing, BlockQuoteUI } from './index.js';
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
7
7
|
interface PluginsMap {
|
8
8
|
[BlockQuote.pluginName]: BlockQuote;
|
package/src/blockquote.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquote
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
9
|
-
import BlockQuoteEditing from './blockquoteediting';
|
10
|
-
import BlockQuoteUI from './blockquoteui';
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
9
|
+
import BlockQuoteEditing from './blockquoteediting.js';
|
10
|
+
import BlockQuoteUI from './blockquoteui.js';
|
11
11
|
/**
|
12
12
|
* The block quote plugin.
|
13
13
|
*
|
package/src/blockquote.js
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquote
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
9
|
-
import BlockQuoteEditing from './blockquoteediting';
|
10
|
-
import BlockQuoteUI from './blockquoteui';
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
9
|
+
import BlockQuoteEditing from './blockquoteediting.js';
|
10
|
+
import BlockQuoteUI from './blockquoteui.js';
|
11
11
|
/**
|
12
12
|
* The block quote plugin.
|
13
13
|
*
|
package/src/blockquotecommand.js
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquotecommand
|
7
7
|
*/
|
8
|
-
import { Command } from 'ckeditor5/src/core';
|
9
|
-
import { first } from 'ckeditor5/src/utils';
|
8
|
+
import { Command } from 'ckeditor5/src/core.js';
|
9
|
+
import { first } from 'ckeditor5/src/utils.js';
|
10
10
|
/**
|
11
11
|
* The block quote command plugin.
|
12
12
|
*
|
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquoteediting
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
9
|
-
import { Enter } from 'ckeditor5/src/enter';
|
10
|
-
import { Delete } from 'ckeditor5/src/typing';
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
9
|
+
import { Enter } from 'ckeditor5/src/enter.js';
|
10
|
+
import { Delete } from 'ckeditor5/src/typing.js';
|
11
11
|
/**
|
12
12
|
* The block quote editing.
|
13
13
|
*
|
package/src/blockquoteediting.js
CHANGED
@@ -5,10 +5,10 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquoteediting
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
9
|
-
import { Enter } from 'ckeditor5/src/enter';
|
10
|
-
import { Delete } from 'ckeditor5/src/typing';
|
11
|
-
import BlockQuoteCommand from './blockquotecommand';
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
9
|
+
import { Enter } from 'ckeditor5/src/enter.js';
|
10
|
+
import { Delete } from 'ckeditor5/src/typing.js';
|
11
|
+
import BlockQuoteCommand from './blockquotecommand.js';
|
12
12
|
/**
|
13
13
|
* The block quote editing.
|
14
14
|
*
|
package/src/blockquoteui.d.ts
CHANGED
package/src/blockquoteui.js
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote/blockquoteui
|
7
7
|
*/
|
8
|
-
import { Plugin, icons } from 'ckeditor5/src/core';
|
9
|
-
import { ButtonView } from 'ckeditor5/src/ui';
|
8
|
+
import { Plugin, icons } from 'ckeditor5/src/core.js';
|
9
|
+
import { ButtonView } from 'ckeditor5/src/ui.js';
|
10
10
|
import '../theme/blockquote.css';
|
11
11
|
/**
|
12
12
|
* The block quote UI plugin.
|
package/src/index.d.ts
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote
|
7
7
|
*/
|
8
|
-
export { default as BlockQuote } from './blockquote';
|
9
|
-
export { default as BlockQuoteEditing } from './blockquoteediting';
|
10
|
-
export { default as BlockQuoteUI } from './blockquoteui';
|
11
|
-
export type { default as BlockQuoteCommand } from './blockquotecommand';
|
12
|
-
import './augmentation';
|
8
|
+
export { default as BlockQuote } from './blockquote.js';
|
9
|
+
export { default as BlockQuoteEditing } from './blockquoteediting.js';
|
10
|
+
export { default as BlockQuoteUI } from './blockquoteui.js';
|
11
|
+
export type { default as BlockQuoteCommand } from './blockquotecommand.js';
|
12
|
+
import './augmentation.js';
|
package/src/index.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module block-quote
|
7
7
|
*/
|
8
|
-
export { default as BlockQuote } from './blockquote';
|
9
|
-
export { default as BlockQuoteEditing } from './blockquoteediting';
|
10
|
-
export { default as BlockQuoteUI } from './blockquoteui';
|
11
|
-
import './augmentation';
|
8
|
+
export { default as BlockQuote } from './blockquote.js';
|
9
|
+
export { default as BlockQuoteEditing } from './blockquoteediting.js';
|
10
|
+
export { default as BlockQuoteUI } from './blockquoteui.js';
|
11
|
+
import './augmentation.js';
|