ckeditor5 35.2.1 → 35.3.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/CHANGELOG.md +282 -5
- package/build/ckeditor5-dll.js +1 -1
- package/build/ckeditor5-dll.manifest.json +5 -2
- package/package.json +13 -13
- package/src/clipboard.js +0 -2
- package/src/core.js +0 -2
- package/src/engine.js +0 -2
- package/src/enter.js +0 -2
- package/src/paragraph.js +0 -2
- package/src/select-all.js +0 -2
- package/src/typing.js +0 -2
- package/src/ui.js +0 -2
- package/src/undo.js +0 -2
- package/src/upload.js +0 -2
- package/src/utils.js +0 -2
- package/src/widget.js +0 -2
- package/tsconfig.json +18 -0
- package/typings/types.d.ts +9 -0
@@ -68,10 +68,13 @@
|
|
68
68
|
"Position",
|
69
69
|
"Range",
|
70
70
|
"Renderer",
|
71
|
+
"Schema",
|
72
|
+
"Selection",
|
71
73
|
"StylesProcessor",
|
72
74
|
"Text",
|
73
75
|
"TreeWalker",
|
74
76
|
"UpcastWriter",
|
77
|
+
"View",
|
75
78
|
"ViewAttributeElement",
|
76
79
|
"ViewContainerElement",
|
77
80
|
"ViewDocument",
|
@@ -156,8 +159,7 @@
|
|
156
159
|
"Typing",
|
157
160
|
"findAttributeRange",
|
158
161
|
"getLastTextLine",
|
159
|
-
"inlineHighlight"
|
160
|
-
"isNonTypingKeystroke"
|
162
|
+
"inlineHighlight"
|
161
163
|
]
|
162
164
|
},
|
163
165
|
"./ui.js": {
|
@@ -271,6 +273,7 @@
|
|
271
273
|
"getLanguageDirection",
|
272
274
|
"getLocalizedArrowKeyCodeDirection",
|
273
275
|
"global",
|
276
|
+
"insertToPriorityArray",
|
274
277
|
"isArrowKeyCode",
|
275
278
|
"isForwardArrowKeyCode",
|
276
279
|
"isVisible",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ckeditor5",
|
3
|
-
"version": "35.
|
3
|
+
"version": "35.3.1",
|
4
4
|
"description": "A set of ready-to-use rich text editors created with a powerful framework. Made with real-time collaborative editing in mind.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -32,17 +32,17 @@
|
|
32
32
|
"url": "https://github.com/ckeditor/ckeditor5.git"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@ckeditor/ckeditor5-clipboard": "^35.
|
36
|
-
"@ckeditor/ckeditor5-core": "^35.
|
37
|
-
"@ckeditor/ckeditor5-engine": "^35.
|
38
|
-
"@ckeditor/ckeditor5-enter": "^35.
|
39
|
-
"@ckeditor/ckeditor5-paragraph": "^35.
|
40
|
-
"@ckeditor/ckeditor5-select-all": "^35.
|
41
|
-
"@ckeditor/ckeditor5-typing": "^35.
|
42
|
-
"@ckeditor/ckeditor5-ui": "^35.
|
43
|
-
"@ckeditor/ckeditor5-undo": "^35.
|
44
|
-
"@ckeditor/ckeditor5-upload": "^35.
|
45
|
-
"@ckeditor/ckeditor5-utils": "^35.
|
46
|
-
"@ckeditor/ckeditor5-widget": "^35.
|
35
|
+
"@ckeditor/ckeditor5-clipboard": "^35.3.1",
|
36
|
+
"@ckeditor/ckeditor5-core": "^35.3.1",
|
37
|
+
"@ckeditor/ckeditor5-engine": "^35.3.1",
|
38
|
+
"@ckeditor/ckeditor5-enter": "^35.3.1",
|
39
|
+
"@ckeditor/ckeditor5-paragraph": "^35.3.1",
|
40
|
+
"@ckeditor/ckeditor5-select-all": "^35.3.1",
|
41
|
+
"@ckeditor/ckeditor5-typing": "^35.3.1",
|
42
|
+
"@ckeditor/ckeditor5-ui": "^35.3.1",
|
43
|
+
"@ckeditor/ckeditor5-undo": "^35.3.1",
|
44
|
+
"@ckeditor/ckeditor5-upload": "^35.3.1",
|
45
|
+
"@ckeditor/ckeditor5-utils": "^35.3.1",
|
46
|
+
"@ckeditor/ckeditor5-widget": "^35.3.1"
|
47
47
|
}
|
48
48
|
}
|
package/src/clipboard.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/clipboard
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-clipboard';
|
package/src/core.js
CHANGED
package/src/engine.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/engine
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-engine';
|
package/src/enter.js
CHANGED
package/src/paragraph.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/paragraph
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-paragraph';
|
package/src/select-all.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/select-all
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-select-all';
|
package/src/typing.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/typing
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-typing';
|
package/src/ui.js
CHANGED
package/src/undo.js
CHANGED
package/src/upload.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/upload
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-upload';
|
package/src/utils.js
CHANGED
package/src/widget.js
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2022, 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
|
-
|
6
5
|
/**
|
7
6
|
* @module ckeditor5/widget
|
8
7
|
*/
|
9
|
-
|
10
8
|
export * from '@ckeditor/ckeditor5-widget';
|
package/tsconfig.json
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"lib": [
|
4
|
+
"DOM"
|
5
|
+
],
|
6
|
+
"noImplicitAny": true,
|
7
|
+
"noImplicitOverride": true,
|
8
|
+
"strict": true,
|
9
|
+
"module": "es6",
|
10
|
+
"target": "es2020",
|
11
|
+
"sourceMap": true,
|
12
|
+
"allowJs": true,
|
13
|
+
"moduleResolution": "node"
|
14
|
+
},
|
15
|
+
"include": [
|
16
|
+
"./typings/"
|
17
|
+
]
|
18
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2022, 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
|
+
|
6
|
+
declare module '*.svg' {
|
7
|
+
const content: string;
|
8
|
+
export default content;
|
9
|
+
}
|