@ckeditor/ckeditor5-basic-styles 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 +12 -12
- package/src/attributecommand.d.ts +0 -11
- package/src/augmentation.d.ts +40 -0
- package/src/augmentation.js +5 -0
- package/src/bold/boldediting.d.ts +0 -5
- package/src/bold/boldui.d.ts +0 -5
- package/src/bold.d.ts +0 -5
- package/src/code/codeediting.d.ts +0 -5
- package/src/code/codeui.d.ts +0 -5
- package/src/code.d.ts +0 -5
- package/src/index.d.ts +2 -0
- package/src/index.js +1 -0
- package/src/italic/italicediting.d.ts +0 -5
- package/src/italic/italicui.d.ts +0 -5
- package/src/italic.d.ts +0 -5
- package/src/strikethrough/strikethroughediting.d.ts +0 -5
- package/src/strikethrough/strikethroughui.d.ts +0 -5
- package/src/strikethrough.d.ts +0 -5
- package/src/subscript/subscriptediting.d.ts +0 -5
- package/src/subscript/subscriptui.d.ts +0 -5
- package/src/subscript.d.ts +0 -5
- package/src/superscript/superscriptediting.d.ts +0 -5
- package/src/superscript/superscriptui.d.ts +0 -5
- package/src/superscript.d.ts +0 -5
- package/src/underline/underlineediting.d.ts +0 -5
- package/src/underline/underlineui.d.ts +0 -5
- package/src/underline.d.ts +0 -5
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.1",
|
|
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.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
|
19
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
|
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.
|
|
18
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
|
|
19
|
+
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
|
20
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
|
|
22
|
+
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.1",
|
|
23
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
|
|
24
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
|
|
25
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
|
|
26
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
|
|
27
27
|
"typescript": "^4.8.4",
|
|
28
28
|
"webpack": "^5.58.1",
|
|
29
29
|
"webpack-cli": "^4.9.0"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
],
|
|
53
53
|
"scripts": {
|
|
54
54
|
"dll:build": "webpack",
|
|
55
|
-
"build": "tsc -p ./tsconfig.
|
|
55
|
+
"build": "tsc -p ./tsconfig.json",
|
|
56
56
|
"postversion": "npm run build"
|
|
57
57
|
},
|
|
58
58
|
"types": "src/index.d.ts"
|
|
@@ -72,14 +72,3 @@ export default class AttributeCommand extends Command {
|
|
|
72
72
|
*/
|
|
73
73
|
private _getValueFromFirstAllowedNode;
|
|
74
74
|
}
|
|
75
|
-
declare module '@ckeditor/ckeditor5-core' {
|
|
76
|
-
interface CommandsMap {
|
|
77
|
-
bold: AttributeCommand;
|
|
78
|
-
code: AttributeCommand;
|
|
79
|
-
italic: AttributeCommand;
|
|
80
|
-
strikethrough: AttributeCommand;
|
|
81
|
-
subscript: AttributeCommand;
|
|
82
|
-
superscript: AttributeCommand;
|
|
83
|
-
underline: AttributeCommand;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 { Superscript, Subscript, Bold, Code, AttributeCommand, BoldUI, CodeEditing, CodeUI, Italic, ItalicEditing, ItalicUI, Strikethrough, StrikethroughEditing, StrikethroughUI, SubscriptEditing, SubscriptUI, SuperscriptEditing, SuperscriptUI, Underline, UnderlineEditing, UnderlineUI } from './index';
|
|
6
|
+
declare module '@ckeditor/ckeditor5-core' {
|
|
7
|
+
interface PluginsMap {
|
|
8
|
+
[Superscript.pluginName]: Superscript;
|
|
9
|
+
[Subscript.pluginName]: Subscript;
|
|
10
|
+
[Bold.pluginName]: Bold;
|
|
11
|
+
[Code.pluginName]: Code;
|
|
12
|
+
[Code.pluginName]: Code;
|
|
13
|
+
[Code.pluginName]: Code;
|
|
14
|
+
[BoldUI.pluginName]: BoldUI;
|
|
15
|
+
[CodeEditing.pluginName]: CodeEditing;
|
|
16
|
+
[CodeUI.pluginName]: CodeUI;
|
|
17
|
+
[Italic.pluginName]: Italic;
|
|
18
|
+
[ItalicEditing.pluginName]: ItalicEditing;
|
|
19
|
+
[ItalicUI.pluginName]: ItalicUI;
|
|
20
|
+
[Strikethrough.pluginName]: Strikethrough;
|
|
21
|
+
[StrikethroughEditing.pluginName]: StrikethroughEditing;
|
|
22
|
+
[StrikethroughUI.pluginName]: StrikethroughUI;
|
|
23
|
+
[SubscriptEditing.pluginName]: SubscriptEditing;
|
|
24
|
+
[SubscriptUI.pluginName]: SubscriptUI;
|
|
25
|
+
[SuperscriptEditing.pluginName]: SuperscriptEditing;
|
|
26
|
+
[SuperscriptUI.pluginName]: SuperscriptUI;
|
|
27
|
+
[Underline.pluginName]: Underline;
|
|
28
|
+
[UnderlineEditing.pluginName]: UnderlineEditing;
|
|
29
|
+
[UnderlineUI.pluginName]: UnderlineUI;
|
|
30
|
+
}
|
|
31
|
+
interface CommandsMap {
|
|
32
|
+
bold: AttributeCommand;
|
|
33
|
+
code: AttributeCommand;
|
|
34
|
+
italic: AttributeCommand;
|
|
35
|
+
strikethrough: AttributeCommand;
|
|
36
|
+
subscript: AttributeCommand;
|
|
37
|
+
superscript: AttributeCommand;
|
|
38
|
+
underline: AttributeCommand;
|
|
39
|
+
}
|
|
40
|
+
}
|
package/src/bold/boldui.d.ts
CHANGED
package/src/bold.d.ts
CHANGED
package/src/code/codeui.d.ts
CHANGED
package/src/code.d.ts
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -26,3 +26,5 @@ export { default as SuperscriptUI } from './superscript/superscriptui';
|
|
|
26
26
|
export { default as Underline } from './underline';
|
|
27
27
|
export { default as UnderlineEditing } from './underline/underlineediting';
|
|
28
28
|
export { default as UnderlineUI } from './underline/underlineui';
|
|
29
|
+
export type { default as AttributeCommand } from './attributecommand';
|
|
30
|
+
import './augmentation';
|
package/src/index.js
CHANGED
|
@@ -26,3 +26,4 @@ export { default as SuperscriptUI } from './superscript/superscriptui';
|
|
|
26
26
|
export { default as Underline } from './underline';
|
|
27
27
|
export { default as UnderlineEditing } from './underline/underlineediting';
|
|
28
28
|
export { default as UnderlineUI } from './underline/underlineui';
|
|
29
|
+
import './augmentation';
|
package/src/italic/italicui.d.ts
CHANGED
package/src/italic.d.ts
CHANGED
package/src/strikethrough.d.ts
CHANGED
package/src/subscript.d.ts
CHANGED
package/src/superscript.d.ts
CHANGED