@ckeditor/ckeditor5-basic-styles 37.0.0-alpha.1 → 37.0.0-alpha.3
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 +10 -10
- package/src/bold.d.ts +4 -2
- package/src/code/codeediting.d.ts +3 -2
- package/src/code.d.ts +4 -2
- package/src/italic.d.ts +4 -2
- package/src/strikethrough.d.ts +4 -2
- package/src/subscript.d.ts +4 -2
- package/src/superscript.d.ts +4 -2
- package/src/underline.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-basic-styles",
|
|
3
|
-
"version": "37.0.0-alpha.
|
|
3
|
+
"version": "37.0.0-alpha.3",
|
|
4
4
|
"description": "Basic styles feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "^37.0.0-alpha.
|
|
15
|
+
"ckeditor5": "^37.0.0-alpha.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
|
18
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
|
|
19
19
|
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
|
20
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
|
21
|
-
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.
|
|
22
|
-
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.
|
|
23
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
|
24
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
|
25
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
|
26
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
|
20
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
|
|
22
|
+
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.3",
|
|
23
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
|
|
24
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
|
|
25
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
|
|
26
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
|
|
27
27
|
"typescript": "^4.8.4",
|
|
28
28
|
"webpack": "^5.58.1",
|
|
29
29
|
"webpack-cli": "^4.9.0"
|
package/src/bold.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/bold
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import BoldEditing from './bold/boldediting';
|
|
10
|
+
import BoldUI from './bold/boldui';
|
|
9
11
|
/**
|
|
10
12
|
* The bold feature.
|
|
11
13
|
*
|
|
@@ -19,7 +21,7 @@ export default class Bold extends Plugin {
|
|
|
19
21
|
/**
|
|
20
22
|
* @inheritDoc
|
|
21
23
|
*/
|
|
22
|
-
static get requires():
|
|
24
|
+
static get requires(): readonly [typeof BoldEditing, typeof BoldUI];
|
|
23
25
|
/**
|
|
24
26
|
* @inheritDoc
|
|
25
27
|
*/
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/code/codeediting
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import { TwoStepCaretMovement } from 'ckeditor5/src/typing';
|
|
9
10
|
/**
|
|
10
11
|
* The code editing feature.
|
|
11
12
|
*
|
|
@@ -20,7 +21,7 @@ export default class CodeEditing extends Plugin {
|
|
|
20
21
|
/**
|
|
21
22
|
* @inheritDoc
|
|
22
23
|
*/
|
|
23
|
-
static get requires():
|
|
24
|
+
static get requires(): readonly [typeof TwoStepCaretMovement];
|
|
24
25
|
/**
|
|
25
26
|
* @inheritDoc
|
|
26
27
|
*/
|
package/src/code.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/code
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import CodeEditing from './code/codeediting';
|
|
10
|
+
import CodeUI from './code/codeui';
|
|
9
11
|
import '../theme/code.css';
|
|
10
12
|
/**
|
|
11
13
|
* The code feature.
|
|
@@ -20,7 +22,7 @@ export default class Code extends Plugin {
|
|
|
20
22
|
/**
|
|
21
23
|
* @inheritDoc
|
|
22
24
|
*/
|
|
23
|
-
static get requires():
|
|
25
|
+
static get requires(): readonly [typeof CodeEditing, typeof CodeUI];
|
|
24
26
|
/**
|
|
25
27
|
* @inheritDoc
|
|
26
28
|
*/
|
package/src/italic.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/italic
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import ItalicEditing from './italic/italicediting';
|
|
10
|
+
import ItalicUI from './italic/italicui';
|
|
9
11
|
/**
|
|
10
12
|
* The italic feature.
|
|
11
13
|
*
|
|
@@ -19,7 +21,7 @@ export default class Italic extends Plugin {
|
|
|
19
21
|
/**
|
|
20
22
|
* @inheritDoc
|
|
21
23
|
*/
|
|
22
|
-
static get requires():
|
|
24
|
+
static get requires(): readonly [typeof ItalicEditing, typeof ItalicUI];
|
|
23
25
|
/**
|
|
24
26
|
* @inheritDoc
|
|
25
27
|
*/
|
package/src/strikethrough.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/strikethrough
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import StrikethroughEditing from './strikethrough/strikethroughediting';
|
|
10
|
+
import StrikethroughUI from './strikethrough/strikethroughui';
|
|
9
11
|
/**
|
|
10
12
|
* The strikethrough feature.
|
|
11
13
|
*
|
|
@@ -19,7 +21,7 @@ export default class Strikethrough extends Plugin {
|
|
|
19
21
|
/**
|
|
20
22
|
* @inheritDoc
|
|
21
23
|
*/
|
|
22
|
-
static get requires():
|
|
24
|
+
static get requires(): readonly [typeof StrikethroughEditing, typeof StrikethroughUI];
|
|
23
25
|
/**
|
|
24
26
|
* @inheritDoc
|
|
25
27
|
*/
|
package/src/subscript.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/subscript
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import SubscriptEditing from './subscript/subscriptediting';
|
|
10
|
+
import SubscriptUI from './subscript/subscriptui';
|
|
9
11
|
/**
|
|
10
12
|
* The subscript feature.
|
|
11
13
|
*
|
|
@@ -16,7 +18,7 @@ export default class Subscript extends Plugin {
|
|
|
16
18
|
/**
|
|
17
19
|
* @inheritDoc
|
|
18
20
|
*/
|
|
19
|
-
static get requires():
|
|
21
|
+
static get requires(): readonly [typeof SubscriptEditing, typeof SubscriptUI];
|
|
20
22
|
/**
|
|
21
23
|
* @inheritDoc
|
|
22
24
|
*/
|
package/src/superscript.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/superscript
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import SuperscriptEditing from './superscript/superscriptediting';
|
|
10
|
+
import SuperscriptUI from './superscript/superscriptui';
|
|
9
11
|
/**
|
|
10
12
|
* The superscript feature.
|
|
11
13
|
*
|
|
@@ -16,7 +18,7 @@ export default class Superscript extends Plugin {
|
|
|
16
18
|
/**
|
|
17
19
|
* @inheritDoc
|
|
18
20
|
*/
|
|
19
|
-
static get requires():
|
|
21
|
+
static get requires(): readonly [typeof SuperscriptEditing, typeof SuperscriptUI];
|
|
20
22
|
/**
|
|
21
23
|
* @inheritDoc
|
|
22
24
|
*/
|
package/src/underline.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module basic-styles/underline
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import UnderlineEditing from './underline/underlineediting';
|
|
10
|
+
import UnderlineUI from './underline/underlineui';
|
|
9
11
|
/**
|
|
10
12
|
* The underline feature.
|
|
11
13
|
*
|
|
@@ -19,7 +21,7 @@ export default class Underline extends Plugin {
|
|
|
19
21
|
/**
|
|
20
22
|
* @inheritDoc
|
|
21
23
|
*/
|
|
22
|
-
static get requires():
|
|
24
|
+
static get requires(): readonly [typeof UnderlineEditing, typeof UnderlineUI];
|
|
23
25
|
/**
|
|
24
26
|
* @inheritDoc
|
|
25
27
|
*/
|