ckeditor5 36.0.1 → 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/CHANGELOG.md +249 -1
- package/README.md +5 -5
- package/build/ckeditor5-dll.js +1 -1
- package/build/ckeditor5-dll.manifest.json +8 -1
- package/package.json +13 -13
- package/src/clipboard.d.ts +8 -0
- package/{typings/types.d.ts → src/core.d.ts} +4 -5
- package/src/engine.d.ts +8 -0
- package/src/enter.d.ts +8 -0
- package/src/paragraph.d.ts +8 -0
- package/src/select-all.d.ts +8 -0
- package/src/typing.d.ts +8 -0
- package/src/ui.d.ts +8 -0
- package/src/undo.d.ts +8 -0
- package/src/upload.d.ts +8 -0
- package/src/utils.d.ts +8 -0
- package/src/widget.d.ts +8 -0
@@ -63,16 +63,20 @@
|
|
63
63
|
"LiveRange",
|
64
64
|
"MarkerOperation",
|
65
65
|
"Matcher",
|
66
|
+
"MergeOperation",
|
66
67
|
"Model",
|
67
68
|
"MouseObserver",
|
69
|
+
"MoveOperation",
|
68
70
|
"Observer",
|
69
71
|
"OperationFactory",
|
70
72
|
"Position",
|
71
73
|
"Range",
|
72
74
|
"Renderer",
|
75
|
+
"SplitOperation",
|
73
76
|
"StylesProcessor",
|
74
77
|
"TabObserver",
|
75
78
|
"Text",
|
79
|
+
"TextProxy",
|
76
80
|
"TreeWalker",
|
77
81
|
"UpcastWriter",
|
78
82
|
"View",
|
@@ -156,6 +160,7 @@
|
|
156
160
|
"exports": [
|
157
161
|
"Delete",
|
158
162
|
"Input",
|
163
|
+
"InsertTextCommand",
|
159
164
|
"TextTransformation",
|
160
165
|
"TextWatcher",
|
161
166
|
"TwoStepCaretMovement",
|
@@ -182,6 +187,7 @@
|
|
182
187
|
"ColorTileView",
|
183
188
|
"ComponentFactory",
|
184
189
|
"ContextualBalloon",
|
190
|
+
"CssTransitionDisablerMixin",
|
185
191
|
"DropdownButtonView",
|
186
192
|
"DropdownView",
|
187
193
|
"EditorUI",
|
@@ -235,7 +241,7 @@
|
|
235
241
|
"exports": [
|
236
242
|
"Undo",
|
237
243
|
"UndoEditing",
|
238
|
-
"
|
244
|
+
"UndoUI"
|
239
245
|
]
|
240
246
|
},
|
241
247
|
"./upload.js": {
|
@@ -275,6 +281,7 @@
|
|
275
281
|
"count",
|
276
282
|
"createElement",
|
277
283
|
"diff",
|
284
|
+
"diffToChanges",
|
278
285
|
"env",
|
279
286
|
"fastDiff",
|
280
287
|
"findClosestScrollableAncestor",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ckeditor5",
|
3
|
-
"version": "
|
3
|
+
"version": "37.0.0-alpha.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": "^
|
36
|
-
"@ckeditor/ckeditor5-core": "^
|
37
|
-
"@ckeditor/ckeditor5-engine": "^
|
38
|
-
"@ckeditor/ckeditor5-enter": "^
|
39
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
40
|
-
"@ckeditor/ckeditor5-select-all": "^
|
41
|
-
"@ckeditor/ckeditor5-typing": "^
|
42
|
-
"@ckeditor/ckeditor5-ui": "^
|
43
|
-
"@ckeditor/ckeditor5-undo": "^
|
44
|
-
"@ckeditor/ckeditor5-upload": "^
|
45
|
-
"@ckeditor/ckeditor5-utils": "^
|
46
|
-
"@ckeditor/ckeditor5-widget": "^
|
35
|
+
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.1",
|
36
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
|
37
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
|
38
|
+
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1",
|
39
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
|
40
|
+
"@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.1",
|
41
|
+
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
|
42
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
|
43
|
+
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.1",
|
44
|
+
"@ckeditor/ckeditor5-upload": "^37.0.0-alpha.1",
|
45
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
|
46
|
+
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.1"
|
47
47
|
}
|
48
48
|
}
|
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/clipboard
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-clipboard';
|
@@ -2,8 +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
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
}
|
5
|
+
/**
|
6
|
+
* @module ckeditor5/core
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-core';
|
package/src/engine.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/engine
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-engine';
|
package/src/enter.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/paragraph
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-paragraph';
|
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/select-all
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-select-all';
|
package/src/typing.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/typing
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-typing';
|
package/src/ui.d.ts
ADDED
package/src/undo.d.ts
ADDED
package/src/upload.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/upload
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-upload';
|
package/src/utils.d.ts
ADDED
package/src/widget.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
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
|
+
/**
|
6
|
+
* @module ckeditor5/widget
|
7
|
+
*/
|
8
|
+
export * from '@ckeditor/ckeditor5-widget';
|