@ckeditor/ckeditor5-engine 40.2.0 → 41.1.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.
- package/CHANGELOG.md +34 -34
- package/LICENSE.md +1 -1
- package/package.json +3 -2
- package/src/controller/datacontroller.d.ts +17 -16
- package/src/controller/datacontroller.js +12 -12
- package/src/controller/editingcontroller.d.ts +8 -8
- package/src/controller/editingcontroller.js +8 -8
- package/src/conversion/conversion.d.ts +7 -7
- package/src/conversion/conversion.js +3 -3
- package/src/conversion/conversionhelpers.d.ts +1 -1
- package/src/conversion/conversionhelpers.js +1 -1
- package/src/conversion/downcastdispatcher.d.ts +14 -14
- package/src/conversion/downcastdispatcher.js +3 -3
- package/src/conversion/downcasthelpers.d.ts +18 -54
- package/src/conversion/downcasthelpers.js +35 -52
- package/src/conversion/mapper.d.ts +10 -10
- package/src/conversion/mapper.js +6 -6
- package/src/conversion/modelconsumable.d.ts +6 -6
- package/src/conversion/modelconsumable.js +2 -2
- package/src/conversion/upcastdispatcher.d.ts +13 -13
- package/src/conversion/upcastdispatcher.js +6 -6
- package/src/conversion/upcasthelpers.d.ts +10 -10
- package/src/conversion/upcasthelpers.js +6 -6
- package/src/conversion/viewconsumable.d.ts +6 -6
- package/src/conversion/viewconsumable.js +1 -1
- package/src/dataprocessor/basichtmlwriter.d.ts +2 -2
- package/src/dataprocessor/basichtmlwriter.js +1 -1
- package/src/dataprocessor/dataprocessor.d.ts +3 -3
- package/src/dataprocessor/dataprocessor.js +1 -1
- package/src/dataprocessor/htmldataprocessor.d.ts +7 -7
- package/src/dataprocessor/htmldataprocessor.js +3 -3
- package/src/dataprocessor/htmlwriter.d.ts +1 -1
- package/src/dataprocessor/htmlwriter.js +1 -1
- package/src/dataprocessor/xmldataprocessor.d.ts +7 -7
- package/src/dataprocessor/xmldataprocessor.js +3 -3
- package/src/dev-utils/model.d.ts +11 -11
- package/src/dev-utils/model.js +17 -17
- package/src/dev-utils/operationreplayer.d.ts +3 -3
- package/src/dev-utils/operationreplayer.js +2 -2
- package/src/dev-utils/utils.d.ts +1 -1
- package/src/dev-utils/utils.js +1 -1
- package/src/dev-utils/view.d.ts +9 -9
- package/src/dev-utils/view.js +15 -15
- package/src/index.d.ts +107 -108
- package/src/index.js +65 -66
- package/src/model/batch.d.ts +2 -2
- package/src/model/batch.js +1 -1
- package/src/model/differ.d.ts +35 -7
- package/src/model/differ.js +9 -6
- package/src/model/document.d.ts +12 -10
- package/src/model/document.js +5 -5
- package/src/model/documentfragment.d.ts +5 -5
- package/src/model/documentfragment.js +6 -6
- package/src/model/documentselection.d.ts +9 -9
- package/src/model/documentselection.js +6 -6
- package/src/model/element.d.ts +3 -3
- package/src/model/element.js +5 -5
- package/src/model/history.d.ts +2 -2
- package/src/model/history.js +1 -1
- package/src/model/item.d.ts +3 -3
- package/src/model/item.js +1 -1
- package/src/model/liveposition.d.ts +5 -5
- package/src/model/liveposition.js +2 -2
- package/src/model/liverange.d.ts +6 -6
- package/src/model/liverange.js +2 -2
- package/src/model/markercollection.d.ts +5 -5
- package/src/model/markercollection.js +3 -3
- package/src/model/model.d.ts +15 -15
- package/src/model/model.js +19 -19
- package/src/model/node.d.ts +6 -6
- package/src/model/node.js +3 -3
- package/src/model/nodelist.d.ts +2 -2
- package/src/model/nodelist.js +2 -2
- package/src/model/operation/attributeoperation.d.ts +5 -5
- package/src/model/operation/attributeoperation.js +4 -4
- package/src/model/operation/detachoperation.d.ts +4 -4
- package/src/model/operation/detachoperation.js +4 -4
- package/src/model/operation/insertoperation.d.ts +7 -7
- package/src/model/operation/insertoperation.js +8 -8
- package/src/model/operation/markeroperation.d.ts +6 -6
- package/src/model/operation/markeroperation.js +3 -3
- package/src/model/operation/mergeoperation.d.ts +6 -6
- package/src/model/operation/mergeoperation.js +6 -6
- package/src/model/operation/moveoperation.d.ts +5 -5
- package/src/model/operation/moveoperation.js +5 -5
- package/src/model/operation/nooperation.d.ts +3 -3
- package/src/model/operation/nooperation.js +2 -2
- package/src/model/operation/operation.d.ts +4 -4
- package/src/model/operation/operation.js +1 -1
- package/src/model/operation/operationfactory.d.ts +3 -3
- package/src/model/operation/operationfactory.js +12 -12
- package/src/model/operation/renameoperation.d.ts +5 -5
- package/src/model/operation/renameoperation.js +4 -4
- package/src/model/operation/rootattributeoperation.d.ts +5 -5
- package/src/model/operation/rootattributeoperation.js +2 -2
- package/src/model/operation/rootoperation.d.ts +4 -4
- package/src/model/operation/rootoperation.js +2 -2
- package/src/model/operation/splitoperation.d.ts +6 -6
- package/src/model/operation/splitoperation.js +6 -6
- package/src/model/operation/transform.d.ts +3 -3
- package/src/model/operation/transform.js +13 -13
- package/src/model/operation/utils.d.ts +7 -7
- package/src/model/operation/utils.js +5 -5
- package/src/model/position.d.ts +15 -15
- package/src/model/position.js +4 -4
- package/src/model/range.d.ts +13 -13
- package/src/model/range.js +4 -4
- package/src/model/rootelement.d.ts +3 -3
- package/src/model/rootelement.js +2 -2
- package/src/model/schema.d.ts +32 -12
- package/src/model/schema.js +52 -7
- package/src/model/selection.d.ts +8 -8
- package/src/model/selection.js +5 -5
- package/src/model/text.d.ts +2 -2
- package/src/model/text.js +2 -2
- package/src/model/textproxy.d.ts +6 -6
- package/src/model/textproxy.js +2 -2
- package/src/model/treewalker.d.ts +4 -4
- package/src/model/treewalker.js +5 -5
- package/src/model/typecheckable.d.ts +14 -14
- package/src/model/typecheckable.js +1 -1
- package/src/model/utils/autoparagraphing.d.ts +5 -5
- package/src/model/utils/autoparagraphing.js +1 -1
- package/src/model/utils/deletecontent.d.ts +4 -4
- package/src/model/utils/deletecontent.js +4 -4
- package/src/model/utils/getselectedcontent.d.ts +5 -5
- package/src/model/utils/getselectedcontent.js +1 -1
- package/src/model/utils/insertcontent.d.ts +7 -7
- package/src/model/utils/insertcontent.js +7 -7
- package/src/model/utils/insertobject.d.ts +9 -6
- package/src/model/utils/insertobject.js +2 -6
- package/src/model/utils/modifyselection.d.ts +4 -4
- package/src/model/utils/modifyselection.js +5 -5
- package/src/model/utils/selection-post-fixer.d.ts +4 -4
- package/src/model/utils/selection-post-fixer.js +3 -3
- package/src/model/writer.d.ts +13 -13
- package/src/model/writer.js +18 -18
- package/src/view/attributeelement.d.ts +4 -4
- package/src/view/attributeelement.js +4 -3
- package/src/view/containerelement.d.ts +4 -4
- package/src/view/containerelement.js +2 -2
- package/src/view/datatransfer.d.ts +1 -1
- package/src/view/datatransfer.js +1 -1
- package/src/view/document.d.ts +5 -5
- package/src/view/document.js +3 -3
- package/src/view/documentfragment.d.ts +5 -5
- package/src/view/documentfragment.js +4 -4
- package/src/view/documentselection.d.ts +9 -9
- package/src/view/documentselection.js +3 -3
- package/src/view/domconverter.d.ts +14 -14
- package/src/view/domconverter.js +11 -11
- package/src/view/downcastwriter.d.ts +18 -18
- package/src/view/downcastwriter.js +12 -12
- package/src/view/editableelement.d.ts +5 -5
- package/src/view/editableelement.js +2 -2
- package/src/view/element.d.ts +6 -6
- package/src/view/element.js +6 -6
- package/src/view/elementdefinition.d.ts +1 -1
- package/src/view/elementdefinition.js +1 -1
- package/src/view/emptyelement.d.ts +5 -5
- package/src/view/emptyelement.js +3 -3
- package/src/view/filler.d.ts +2 -2
- package/src/view/filler.js +1 -1
- package/src/view/item.d.ts +3 -3
- package/src/view/item.js +1 -1
- package/src/view/matcher.d.ts +2 -2
- package/src/view/matcher.js +1 -1
- package/src/view/node.d.ts +6 -6
- package/src/view/node.js +3 -3
- package/src/view/observer/arrowkeysobserver.d.ts +5 -5
- package/src/view/observer/arrowkeysobserver.js +3 -3
- package/src/view/observer/bubblingemittermixin.d.ts +3 -3
- package/src/view/observer/bubblingemittermixin.js +2 -2
- package/src/view/observer/bubblingeventinfo.d.ts +4 -4
- package/src/view/observer/bubblingeventinfo.js +1 -1
- package/src/view/observer/clickobserver.d.ts +4 -4
- package/src/view/observer/clickobserver.js +2 -2
- package/src/view/observer/compositionobserver.d.ts +4 -4
- package/src/view/observer/compositionobserver.js +2 -2
- package/src/view/observer/domeventdata.d.ts +4 -4
- package/src/view/observer/domeventdata.js +1 -1
- package/src/view/observer/domeventobserver.d.ts +2 -2
- package/src/view/observer/domeventobserver.js +3 -3
- package/src/view/observer/fakeselectionobserver.d.ts +3 -3
- package/src/view/observer/fakeselectionobserver.js +3 -3
- package/src/view/observer/focusobserver.d.ts +4 -4
- package/src/view/observer/focusobserver.js +2 -2
- package/src/view/observer/inputobserver.d.ts +5 -5
- package/src/view/observer/inputobserver.js +3 -3
- package/src/view/observer/keyobserver.d.ts +3 -3
- package/src/view/observer/keyobserver.js +2 -2
- package/src/view/observer/mouseobserver.d.ts +3 -3
- package/src/view/observer/mouseobserver.js +2 -2
- package/src/view/observer/mutationobserver.d.ts +5 -5
- package/src/view/observer/mutationobserver.js +3 -3
- package/src/view/observer/observer.d.ts +3 -3
- package/src/view/observer/observer.js +1 -1
- package/src/view/observer/selectionobserver.d.ts +8 -8
- package/src/view/observer/selectionobserver.js +4 -4
- package/src/view/observer/tabobserver.d.ts +5 -5
- package/src/view/observer/tabobserver.js +3 -3
- package/src/view/placeholder.d.ts +5 -5
- package/src/view/placeholder.js +1 -1
- package/src/view/position.d.ts +8 -8
- package/src/view/position.js +5 -5
- package/src/view/range.d.ts +8 -8
- package/src/view/range.js +4 -4
- package/src/view/rawelement.d.ts +6 -6
- package/src/view/rawelement.js +3 -3
- package/src/view/renderer.d.ts +6 -6
- package/src/view/renderer.js +4 -4
- package/src/view/rooteditableelement.d.ts +3 -3
- package/src/view/rooteditableelement.js +2 -2
- package/src/view/selection.d.ts +9 -9
- package/src/view/selection.js +6 -6
- package/src/view/styles/background.d.ts +2 -2
- package/src/view/styles/background.js +2 -2
- package/src/view/styles/border.d.ts +2 -2
- package/src/view/styles/border.js +2 -2
- package/src/view/styles/margin.d.ts +2 -2
- package/src/view/styles/margin.js +2 -2
- package/src/view/styles/padding.d.ts +2 -2
- package/src/view/styles/padding.js +2 -2
- package/src/view/styles/utils.d.ts +2 -2
- package/src/view/styles/utils.js +1 -1
- package/src/view/stylesmap.d.ts +2 -2
- package/src/view/stylesmap.js +4 -4
- package/src/view/text.d.ts +3 -3
- package/src/view/text.js +2 -2
- package/src/view/textproxy.d.ts +7 -7
- package/src/view/textproxy.js +2 -2
- package/src/view/treewalker.d.ts +4 -4
- package/src/view/treewalker.js +5 -5
- package/src/view/typecheckable.d.ts +17 -17
- package/src/view/typecheckable.js +1 -1
- package/src/view/uielement.d.ts +7 -7
- package/src/view/uielement.js +3 -3
- package/src/view/upcastwriter.d.ts +10 -10
- package/src/view/upcastwriter.js +7 -7
- package/src/view/view.d.ts +22 -22
- package/src/view/view.js +19 -19
- package/theme/placeholder.css +1 -1
- package/theme/renderer.css +1 -1
- package/src/model/utils/findoptimalinsertionrange.d.ts +0 -32
- package/src/model/utils/findoptimalinsertionrange.js +0 -57
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/attributeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Range from '../range';
|
|
10
|
-
import type Document from '../document';
|
|
11
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
|
+
import type Document from '../document.js';
|
|
11
|
+
import type { Selectable } from '../selection.js';
|
|
12
12
|
/**
|
|
13
13
|
* Operation to change nodes' attribute.
|
|
14
14
|
*
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/attributeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import { _setAttribute } from './utils';
|
|
10
|
-
import Range from '../range';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import { _setAttribute } from './utils.js';
|
|
10
|
+
import Range from '../range.js';
|
|
11
11
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
12
12
|
import { isEqual } from 'lodash-es';
|
|
13
13
|
/**
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/detachoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import type Position from '../position';
|
|
10
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import type Position from '../position.js';
|
|
10
|
+
import type { Selectable } from '../selection.js';
|
|
11
11
|
/**
|
|
12
12
|
* Operation to permanently remove node from detached root.
|
|
13
13
|
* Note this operation is only a local operation and won't be send to the other clients.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/detachoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Range from '../range';
|
|
10
|
-
import { _remove } from './utils';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
|
+
import { _remove } from './utils.js';
|
|
11
11
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
12
12
|
// @if CK_DEBUG_ENGINE // const ModelRange = require( '../range' ).default;
|
|
13
13
|
/**
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/insertoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import NodeList from '../nodelist';
|
|
11
|
-
import { type NodeSet } from './utils';
|
|
12
|
-
import type { Selectable } from '../selection';
|
|
13
|
-
import type Document from '../document';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import NodeList from '../nodelist.js';
|
|
11
|
+
import { type NodeSet } from './utils.js';
|
|
12
|
+
import type { Selectable } from '../selection.js';
|
|
13
|
+
import type Document from '../document.js';
|
|
14
14
|
/**
|
|
15
15
|
* Operation to insert one or more nodes at given position in the model.
|
|
16
16
|
*/
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/insertoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import NodeList from '../nodelist';
|
|
11
|
-
import MoveOperation from './moveoperation';
|
|
12
|
-
import { _insert, _normalizeNodes } from './utils';
|
|
13
|
-
import Text from '../text';
|
|
14
|
-
import Element from '../element';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import NodeList from '../nodelist.js';
|
|
11
|
+
import MoveOperation from './moveoperation.js';
|
|
12
|
+
import { _insert, _normalizeNodes } from './utils.js';
|
|
13
|
+
import Text from '../text.js';
|
|
14
|
+
import Element from '../element.js';
|
|
15
15
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
16
16
|
/**
|
|
17
17
|
* Operation to insert one or more nodes at given position in the model.
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/markeroperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Range from '../range';
|
|
10
|
-
import type Document from '../document';
|
|
11
|
-
import type MarkerCollection from '../markercollection';
|
|
12
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
|
+
import type Document from '../document.js';
|
|
11
|
+
import type MarkerCollection from '../markercollection.js';
|
|
12
|
+
import type { Selectable } from '../selection.js';
|
|
13
13
|
export default class MarkerOperation extends Operation {
|
|
14
14
|
/**
|
|
15
15
|
* Marker name.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/markeroperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Range from '../range';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
10
|
export default class MarkerOperation extends Operation {
|
|
11
11
|
/**
|
|
12
12
|
* @param name Marker name.
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/mergeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import Range from '../range';
|
|
11
|
-
import type Document from '../document';
|
|
12
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import Range from '../range.js';
|
|
11
|
+
import type Document from '../document.js';
|
|
12
|
+
import type { Selectable } from '../selection.js';
|
|
13
13
|
/**
|
|
14
14
|
* Operation to merge two {@link module:engine/model/element~Element elements}.
|
|
15
15
|
*
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/mergeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import SplitOperation from './splitoperation';
|
|
10
|
-
import Position from '../position';
|
|
11
|
-
import Range from '../range';
|
|
12
|
-
import { _move } from './utils';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import SplitOperation from './splitoperation.js';
|
|
10
|
+
import Position from '../position.js';
|
|
11
|
+
import Range from '../range.js';
|
|
12
|
+
import { _move } from './utils.js';
|
|
13
13
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
14
14
|
/**
|
|
15
15
|
* Operation to merge two {@link module:engine/model/element~Element elements}.
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/moveoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import type { Selectable } from '../selection';
|
|
11
|
-
import type Document from '../document';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import type { Selectable } from '../selection.js';
|
|
11
|
+
import type Document from '../document.js';
|
|
12
12
|
/**
|
|
13
13
|
* Operation to move a range of {@link module:engine/model/item~Item model items}
|
|
14
14
|
* to given {@link module:engine/model/position~Position target position}.
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/moveoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import Range from '../range';
|
|
11
|
-
import { _move } from './utils';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import Range from '../range.js';
|
|
11
|
+
import { _move } from './utils.js';
|
|
12
12
|
import { CKEditorError, compareArrays } from '@ckeditor/ckeditor5-utils';
|
|
13
13
|
// @if CK_DEBUG_ENGINE // const ModelRange = require( '../range' ).default;
|
|
14
14
|
/**
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/nooperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import type { Selectable } from '../selection.js';
|
|
10
10
|
/**
|
|
11
11
|
* Operation which is doing nothing ("empty operation", "do-nothing operation", "noop"). This is an operation,
|
|
12
12
|
* which when executed does not change the tree model. It still has some parameters defined for transformation purposes.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/nooperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
9
|
/**
|
|
10
10
|
* Operation which is doing nothing ("empty operation", "do-nothing operation", "noop"). This is an operation,
|
|
11
11
|
* which when executed does not change the tree model. It still has some parameters defined for transformation purposes.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/operation
|
|
7
7
|
*/
|
|
8
|
-
import type Batch from '../batch';
|
|
9
|
-
import type Document from '../document';
|
|
10
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import type Batch from '../batch.js';
|
|
9
|
+
import type Document from '../document.js';
|
|
10
|
+
import type { Selectable } from '../selection.js';
|
|
11
11
|
/**
|
|
12
12
|
* Abstract base operation class.
|
|
13
13
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
|
-
import Operation from './operation';
|
|
6
|
-
import type Document from '../document';
|
|
5
|
+
import Operation from './operation.js';
|
|
6
|
+
import type Document from '../document.js';
|
|
7
7
|
/**
|
|
8
8
|
* A factory class for creating operations.
|
|
9
9
|
*/
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/operationfactory
|
|
7
7
|
*/
|
|
8
|
-
import AttributeOperation from './attributeoperation';
|
|
9
|
-
import InsertOperation from './insertoperation';
|
|
10
|
-
import MarkerOperation from './markeroperation';
|
|
11
|
-
import MoveOperation from './moveoperation';
|
|
12
|
-
import NoOperation from './nooperation';
|
|
13
|
-
import Operation from './operation';
|
|
14
|
-
import RenameOperation from './renameoperation';
|
|
15
|
-
import RootAttributeOperation from './rootattributeoperation';
|
|
16
|
-
import RootOperation from './rootoperation';
|
|
17
|
-
import SplitOperation from './splitoperation';
|
|
18
|
-
import MergeOperation from './mergeoperation';
|
|
8
|
+
import AttributeOperation from './attributeoperation.js';
|
|
9
|
+
import InsertOperation from './insertoperation.js';
|
|
10
|
+
import MarkerOperation from './markeroperation.js';
|
|
11
|
+
import MoveOperation from './moveoperation.js';
|
|
12
|
+
import NoOperation from './nooperation.js';
|
|
13
|
+
import Operation from './operation.js';
|
|
14
|
+
import RenameOperation from './renameoperation.js';
|
|
15
|
+
import RootAttributeOperation from './rootattributeoperation.js';
|
|
16
|
+
import RootOperation from './rootoperation.js';
|
|
17
|
+
import SplitOperation from './splitoperation.js';
|
|
18
|
+
import MergeOperation from './mergeoperation.js';
|
|
19
19
|
const operations = {};
|
|
20
20
|
operations[AttributeOperation.className] = AttributeOperation;
|
|
21
21
|
operations[InsertOperation.className] = InsertOperation;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/renameoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import type Document from '../document';
|
|
11
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import type Document from '../document.js';
|
|
11
|
+
import type { Selectable } from '../selection.js';
|
|
12
12
|
/**
|
|
13
13
|
* Operation to change element's name.
|
|
14
14
|
*
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/renameoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Element from '../element';
|
|
10
|
-
import Position from '../position';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Element from '../element.js';
|
|
10
|
+
import Position from '../position.js';
|
|
11
11
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
12
12
|
/**
|
|
13
13
|
* Operation to change element's name.
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/rootattributeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import type Document from '../document';
|
|
10
|
-
import type RootElement from '../rootelement';
|
|
11
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import type Document from '../document.js';
|
|
10
|
+
import type RootElement from '../rootelement.js';
|
|
11
|
+
import type { Selectable } from '../selection.js';
|
|
12
12
|
/**
|
|
13
13
|
* Operation to change root element's attribute. Using this class you can add, remove or change value of the attribute.
|
|
14
14
|
*
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/rootattributeoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
9
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
10
10
|
/**
|
|
11
11
|
* Operation to change root element's attribute. Using this class you can add, remove or change value of the attribute.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/rootoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import type Document from '../document';
|
|
10
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import type Document from '../document.js';
|
|
10
|
+
import type { Selectable } from '../selection.js';
|
|
11
11
|
/**
|
|
12
12
|
* Operation that creates (or attaches) or detaches a root element.
|
|
13
13
|
*/
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/rootoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
9
|
/**
|
|
10
10
|
* Operation that creates (or attaches) or detaches a root element.
|
|
11
11
|
*/
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/splitoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import Position from '../position';
|
|
10
|
-
import Range from '../range';
|
|
11
|
-
import type Document from '../document';
|
|
12
|
-
import type { Selectable } from '../selection';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import Position from '../position.js';
|
|
10
|
+
import Range from '../range.js';
|
|
11
|
+
import type Document from '../document.js';
|
|
12
|
+
import type { Selectable } from '../selection.js';
|
|
13
13
|
/**
|
|
14
14
|
* Operation to split {@link module:engine/model/element~Element an element} at given
|
|
15
15
|
* {@link module:engine/model/operation/splitoperation~SplitOperation#splitPosition split position} into two elements,
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/splitoperation
|
|
7
7
|
*/
|
|
8
|
-
import Operation from './operation';
|
|
9
|
-
import MergeOperation from './mergeoperation';
|
|
10
|
-
import Position from '../position';
|
|
11
|
-
import Range from '../range';
|
|
12
|
-
import { _insert, _move } from './utils';
|
|
8
|
+
import Operation from './operation.js';
|
|
9
|
+
import MergeOperation from './mergeoperation.js';
|
|
10
|
+
import Position from '../position.js';
|
|
11
|
+
import Range from '../range.js';
|
|
12
|
+
import { _insert, _move } from './utils.js';
|
|
13
13
|
import { CKEditorError } from '@ckeditor/ckeditor5-utils';
|
|
14
14
|
/**
|
|
15
15
|
* Operation to split {@link module:engine/model/element~Element an element} at given
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
|
-
import type Operation from './operation';
|
|
6
|
-
import type Document from '../document';
|
|
5
|
+
import type Operation from './operation.js';
|
|
6
|
+
import type Document from '../document.js';
|
|
7
7
|
/**
|
|
8
8
|
* Transforms operation `a` by operation `b`.
|
|
9
9
|
*
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/transform
|
|
7
7
|
*/
|
|
8
|
-
import InsertOperation from './insertoperation';
|
|
9
|
-
import AttributeOperation from './attributeoperation';
|
|
10
|
-
import RenameOperation from './renameoperation';
|
|
11
|
-
import MarkerOperation from './markeroperation';
|
|
12
|
-
import MoveOperation from './moveoperation';
|
|
13
|
-
import RootAttributeOperation from './rootattributeoperation';
|
|
14
|
-
import RootOperation from './rootoperation';
|
|
15
|
-
import MergeOperation from './mergeoperation';
|
|
16
|
-
import SplitOperation from './splitoperation';
|
|
17
|
-
import NoOperation from './nooperation';
|
|
18
|
-
import Range from '../range';
|
|
19
|
-
import Position from '../position';
|
|
8
|
+
import InsertOperation from './insertoperation.js';
|
|
9
|
+
import AttributeOperation from './attributeoperation.js';
|
|
10
|
+
import RenameOperation from './renameoperation.js';
|
|
11
|
+
import MarkerOperation from './markeroperation.js';
|
|
12
|
+
import MoveOperation from './moveoperation.js';
|
|
13
|
+
import RootAttributeOperation from './rootattributeoperation.js';
|
|
14
|
+
import RootOperation from './rootoperation.js';
|
|
15
|
+
import MergeOperation from './mergeoperation.js';
|
|
16
|
+
import SplitOperation from './splitoperation.js';
|
|
17
|
+
import NoOperation from './nooperation.js';
|
|
18
|
+
import Range from '../range.js';
|
|
19
|
+
import Position from '../position.js';
|
|
20
20
|
import { compareArrays } from '@ckeditor/ckeditor5-utils';
|
|
21
21
|
const transformations = new Map();
|
|
22
22
|
/**
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/utils
|
|
7
7
|
*/
|
|
8
|
-
import Node from '../node';
|
|
9
|
-
import Range from '../range';
|
|
10
|
-
import type DocumentFragment from '../documentfragment';
|
|
11
|
-
import type Item from '../item';
|
|
12
|
-
import type NodeList from '../nodelist';
|
|
13
|
-
import type Position from '../position';
|
|
8
|
+
import Node from '../node.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
|
+
import type DocumentFragment from '../documentfragment.js';
|
|
11
|
+
import type Item from '../item.js';
|
|
12
|
+
import type NodeList from '../nodelist.js';
|
|
13
|
+
import type Position from '../position.js';
|
|
14
14
|
/**
|
|
15
15
|
* Inserts given nodes at given position.
|
|
16
16
|
*
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2024, 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
5
|
/**
|
|
6
6
|
* @module engine/model/operation/utils
|
|
7
7
|
*/
|
|
8
|
-
import Node from '../node';
|
|
9
|
-
import Range from '../range';
|
|
10
|
-
import Text from '../text';
|
|
11
|
-
import TextProxy from '../textproxy';
|
|
8
|
+
import Node from '../node.js';
|
|
9
|
+
import Range from '../range.js';
|
|
10
|
+
import Text from '../text.js';
|
|
11
|
+
import TextProxy from '../textproxy.js';
|
|
12
12
|
import { CKEditorError, isIterable } from '@ckeditor/ckeditor5-utils';
|
|
13
13
|
/**
|
|
14
14
|
* Inserts given nodes at given position.
|