@ckeditor/ckeditor5-horizontal-line 37.0.0-alpha.0 → 37.0.0-alpha.2
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 +14 -14
- package/src/augmentation.d.ts +15 -0
- package/src/augmentation.js +5 -0
- package/src/horizontalline.d.ts +0 -5
- package/src/horizontallinecommand.d.ts +0 -5
- package/src/horizontallineediting.d.ts +0 -5
- package/src/horizontallineui.d.ts +0 -5
- package/src/index.d.ts +2 -0
- package/src/index.js +1 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-horizontal-line",
|
3
|
-
"version": "37.0.0-alpha.
|
3
|
+
"version": "37.0.0-alpha.2",
|
4
4
|
"description": "Horizontal line feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,20 +12,20 @@
|
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"ckeditor5": "^37.0.0-alpha.
|
15
|
+
"ckeditor5": "^37.0.0-alpha.2"
|
16
16
|
},
|
17
17
|
"devDependencies": {
|
18
|
-
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.
|
19
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
20
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
21
|
-
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
23
|
-
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.
|
24
|
-
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.
|
25
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
26
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
27
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
28
|
-
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.
|
18
|
+
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.2",
|
19
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
|
20
|
+
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
21
|
+
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.2",
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
|
23
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2",
|
24
|
+
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.2",
|
25
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
|
26
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
|
27
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2",
|
28
|
+
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.2",
|
29
29
|
"typescript": "^4.8.4",
|
30
30
|
"webpack": "^5.58.1",
|
31
31
|
"webpack-cli": "^4.9.0"
|
@@ -54,7 +54,7 @@
|
|
54
54
|
],
|
55
55
|
"scripts": {
|
56
56
|
"dll:build": "webpack",
|
57
|
-
"build": "tsc -p ./tsconfig.
|
57
|
+
"build": "tsc -p ./tsconfig.json",
|
58
58
|
"postversion": "npm run build"
|
59
59
|
},
|
60
60
|
"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 { HorizontalLine, HorizontalLineCommand, HorizontalLineEditing, HorizontalLineUI } from './index';
|
6
|
+
declare module '@ckeditor/ckeditor5-core' {
|
7
|
+
interface PluginsMap {
|
8
|
+
[HorizontalLine.pluginName]: HorizontalLine;
|
9
|
+
[HorizontalLineEditing.pluginName]: HorizontalLineEditing;
|
10
|
+
[HorizontalLineUI.pluginName]: HorizontalLineUI;
|
11
|
+
}
|
12
|
+
interface CommandsMap {
|
13
|
+
horizontalLine: HorizontalLineCommand;
|
14
|
+
}
|
15
|
+
}
|
package/src/horizontalline.d.ts
CHANGED
package/src/index.d.ts
CHANGED
@@ -8,3 +8,5 @@
|
|
8
8
|
export { default as HorizontalLine } from './horizontalline';
|
9
9
|
export { default as HorizontalLineEditing } from './horizontallineediting';
|
10
10
|
export { default as HorizontalLineUI } from './horizontallineui';
|
11
|
+
export type { default as HorizontalLineCommand } from './horizontallinecommand';
|
12
|
+
import './augmentation';
|
package/src/index.js
CHANGED