@ckeditor/ckeditor5-engine 44.3.0-alpha.1 → 44.3.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-engine",
|
|
3
|
-
"version": "44.3.0-alpha.
|
|
3
|
+
"version": "44.3.0-alpha.2",
|
|
4
4
|
"description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "src/index.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ckeditor/ckeditor5-utils": "44.3.0-alpha.
|
|
27
|
+
"@ckeditor/ckeditor5-utils": "44.3.0-alpha.2",
|
|
28
28
|
"lodash-es": "4.17.21"
|
|
29
29
|
},
|
|
30
30
|
"author": "CKSource (http://cksource.com/)",
|
package/src/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export type { default as Differ, DiffItem, DiffItemAttribute, DiffItemInsert, Di
|
|
|
50
50
|
export type { default as Item } from './model/item.js';
|
|
51
51
|
export type { default as Node, NodeAttributes } from './model/node.js';
|
|
52
52
|
export type { default as RootElement } from './model/rootelement.js';
|
|
53
|
-
export type
|
|
53
|
+
export { SchemaContext, type default as Schema, type SchemaAttributeCheckCallback, type SchemaChildCheckCallback, type AttributeProperties, type SchemaItemDefinition, type SchemaCompiledItemDefinition, type SchemaContextDefinition } from './model/schema.js';
|
|
54
54
|
export type { default as Selection, Selectable } from './model/selection.js';
|
|
55
55
|
export type { default as TypeCheckable } from './model/typecheckable.js';
|
|
56
56
|
export type { default as Writer } from './model/writer.js';
|
package/src/index.js
CHANGED
|
@@ -38,6 +38,7 @@ export { default as DocumentFragment } from './model/documentfragment.js';
|
|
|
38
38
|
export { default as History } from './model/history.js';
|
|
39
39
|
export { default as Text } from './model/text.js';
|
|
40
40
|
export { default as TextProxy } from './model/textproxy.js';
|
|
41
|
+
export { SchemaContext } from './model/schema.js';
|
|
41
42
|
// Model utils.
|
|
42
43
|
export * from './model/utils/autoparagraphing.js';
|
|
43
44
|
// View.
|