ckeditor5 36.0.1 → 37.0.0-alpha.0

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.
@@ -73,6 +73,7 @@
73
73
  "StylesProcessor",
74
74
  "TabObserver",
75
75
  "Text",
76
+ "TextProxy",
76
77
  "TreeWalker",
77
78
  "UpcastWriter",
78
79
  "View",
@@ -156,6 +157,7 @@
156
157
  "exports": [
157
158
  "Delete",
158
159
  "Input",
160
+ "InsertTextCommand",
159
161
  "TextTransformation",
160
162
  "TextWatcher",
161
163
  "TwoStepCaretMovement",
@@ -182,6 +184,7 @@
182
184
  "ColorTileView",
183
185
  "ComponentFactory",
184
186
  "ContextualBalloon",
187
+ "CssTransitionDisablerMixin",
185
188
  "DropdownButtonView",
186
189
  "DropdownView",
187
190
  "EditorUI",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ckeditor5",
3
- "version": "36.0.1",
3
+ "version": "37.0.0-alpha.0",
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.0.1",
36
- "@ckeditor/ckeditor5-core": "^36.0.1",
37
- "@ckeditor/ckeditor5-engine": "^36.0.1",
38
- "@ckeditor/ckeditor5-enter": "^36.0.1",
39
- "@ckeditor/ckeditor5-paragraph": "^36.0.1",
40
- "@ckeditor/ckeditor5-select-all": "^36.0.1",
41
- "@ckeditor/ckeditor5-typing": "^36.0.1",
42
- "@ckeditor/ckeditor5-ui": "^36.0.1",
43
- "@ckeditor/ckeditor5-undo": "^36.0.1",
44
- "@ckeditor/ckeditor5-upload": "^36.0.1",
45
- "@ckeditor/ckeditor5-utils": "^36.0.1",
46
- "@ckeditor/ckeditor5-widget": "^36.0.1"
35
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.0",
36
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
37
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
38
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
39
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
40
+ "@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.0",
41
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
42
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0",
43
+ "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.0",
44
+ "@ckeditor/ckeditor5-upload": "^37.0.0-alpha.0",
45
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
46
+ "@ckeditor/ckeditor5-widget": "^37.0.0-alpha.0"
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
- declare module '*.svg' {
7
- const content: string;
8
- export default content;
9
- }
5
+ /**
6
+ * @module ckeditor5/core
7
+ */
8
+ export * from '@ckeditor/ckeditor5-core';
@@ -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/enter
7
+ */
8
+ export * from '@ckeditor/ckeditor5-enter';
@@ -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';
@@ -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
@@ -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/ui
7
+ */
8
+ export * from '@ckeditor/ckeditor5-ui';
package/src/undo.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/undo
7
+ */
8
+ export * from '@ckeditor/ckeditor5-undo';
@@ -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
@@ -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/utils
7
+ */
8
+ export * from '@ckeditor/ckeditor5-utils';
@@ -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';