@ckeditor/ckeditor5-engine 48.2.0 → 48.3.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/dist/controller/datacontroller.d.ts +329 -328
- package/dist/controller/editingcontroller.d.ts +95 -94
- package/dist/conversion/comparemarkers.d.ts +45 -45
- package/dist/conversion/conversion.d.ts +474 -474
- package/dist/conversion/conversionhelpers.d.ts +21 -21
- package/dist/conversion/downcastdispatcher.d.ts +539 -538
- package/dist/conversion/downcasthelpers.d.ts +1129 -1129
- package/dist/conversion/mapper.d.ts +692 -697
- package/dist/conversion/modelconsumable.d.ts +196 -196
- package/dist/conversion/upcastdispatcher.d.ts +483 -482
- package/dist/conversion/upcasthelpers.d.ts +491 -491
- package/dist/conversion/viewconsumable.d.ts +330 -330
- package/dist/dataprocessor/basichtmlwriter.d.ts +15 -15
- package/dist/dataprocessor/dataprocessor.d.ts +57 -57
- package/dist/dataprocessor/htmldataprocessor.d.ts +72 -72
- package/dist/dataprocessor/htmlwriter.d.ts +11 -11
- package/dist/dataprocessor/xmldataprocessor.d.ts +86 -86
- package/dist/dev-utils/model.d.ts +128 -123
- package/dist/dev-utils/operationreplayer.d.ts +49 -49
- package/dist/dev-utils/utils.d.ts +33 -33
- package/dist/dev-utils/view.d.ts +314 -309
- package/dist/engineconfig.d.ts +39 -39
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +150 -150
- package/dist/index.js +34026 -40107
- package/dist/index.js.map +1 -1
- package/dist/legacyerrors.d.ts +0 -4
- package/dist/model/batch.d.ts +86 -86
- package/dist/model/differ.d.ts +504 -504
- package/dist/model/document.d.ts +265 -268
- package/dist/model/documentfragment.d.ts +214 -214
- package/dist/model/documentselection.d.ts +406 -410
- package/dist/model/element.d.ts +182 -182
- package/dist/model/history.d.ts +109 -109
- package/dist/model/item.d.ts +9 -9
- package/dist/model/liveposition.d.ts +70 -69
- package/dist/model/liverange.d.ts +93 -92
- package/dist/model/markercollection.d.ts +317 -324
- package/dist/model/model.d.ts +889 -909
- package/dist/model/node.d.ts +254 -254
- package/dist/model/nodelist.d.ts +110 -110
- package/dist/model/operation/attributeoperation.d.ts +98 -98
- package/dist/model/operation/detachoperation.d.ts +57 -57
- package/dist/model/operation/insertoperation.d.ts +85 -85
- package/dist/model/operation/markeroperation.d.ts +87 -87
- package/dist/model/operation/mergeoperation.d.ts +95 -95
- package/dist/model/operation/moveoperation.d.ts +97 -97
- package/dist/model/operation/nooperation.d.ts +33 -33
- package/dist/model/operation/operation.d.ts +94 -94
- package/dist/model/operation/operationfactory.d.ts +14 -14
- package/dist/model/operation/renameoperation.d.ts +78 -78
- package/dist/model/operation/rootattributeoperation.d.ts +93 -93
- package/dist/model/operation/rootoperation.d.ts +71 -71
- package/dist/model/operation/splitoperation.d.ts +104 -104
- package/dist/model/operation/transform.d.ts +91 -91
- package/dist/model/operation/utils.d.ts +58 -58
- package/dist/model/position.d.ts +535 -535
- package/dist/model/range.d.ts +458 -453
- package/dist/model/rootelement.d.ts +55 -55
- package/dist/model/schema.d.ts +1325 -1327
- package/dist/model/selection.d.ts +452 -471
- package/dist/model/text.d.ts +62 -62
- package/dist/model/textproxy.d.ts +140 -140
- package/dist/model/treewalker.d.ts +190 -190
- package/dist/model/typecheckable.d.ts +281 -281
- package/dist/model/utils/autoparagraphing.d.ts +29 -29
- package/dist/model/utils/deletecontent.d.ts +68 -68
- package/dist/model/utils/getselectedcontent.d.ts +27 -27
- package/dist/model/utils/insertcontent.d.ts +42 -42
- package/dist/model/utils/insertobject.d.ts +41 -41
- package/dist/model/utils/modifyselection.d.ts +44 -44
- package/dist/model/utils/selection-post-fixer.d.ts +71 -71
- package/dist/model/writer.d.ts +854 -854
- package/dist/view/attributeelement.d.ts +123 -123
- package/dist/view/containerelement.d.ts +49 -49
- package/dist/view/datatransfer.d.ts +70 -70
- package/dist/view/document.d.ts +175 -177
- package/dist/view/documentfragment.d.ts +158 -157
- package/dist/view/documentselection.d.ts +308 -307
- package/dist/view/domconverter.d.ts +612 -657
- package/dist/view/downcastwriter.d.ts +1006 -1006
- package/dist/view/editableelement.d.ts +64 -63
- package/dist/view/element.d.ts +754 -754
- package/dist/view/elementdefinition.d.ts +79 -79
- package/dist/view/emptyelement.d.ts +42 -42
- package/dist/view/filler.d.ts +75 -75
- package/dist/view/item.d.ts +9 -9
- package/dist/view/matcher.d.ts +412 -487
- package/dist/view/node.d.ts +164 -163
- package/dist/view/observer/arrowkeysobserver.d.ts +37 -37
- package/dist/view/observer/bubblingemittermixin.d.ts +163 -153
- package/dist/view/observer/bubblingeventinfo.d.ts +45 -42
- package/dist/view/observer/clickobserver.d.ts +36 -36
- package/dist/view/observer/compositionobserver.d.ts +67 -67
- package/dist/view/observer/domeventdata.d.ts +46 -46
- package/dist/view/observer/domeventobserver.d.ts +77 -74
- package/dist/view/observer/fakeselectionobserver.d.ts +42 -42
- package/dist/view/observer/focusobserver.d.ts +84 -84
- package/dist/view/observer/inputobserver.d.ts +76 -76
- package/dist/view/observer/keyobserver.d.ts +53 -53
- package/dist/view/observer/mouseobserver.d.ts +73 -73
- package/dist/view/observer/mutationobserver.d.ts +101 -101
- package/dist/view/observer/observer.d.ts +84 -83
- package/dist/view/observer/pointerobserver.d.ts +63 -63
- package/dist/view/observer/selectionobserver.d.ts +136 -136
- package/dist/view/observer/tabobserver.d.ts +38 -38
- package/dist/view/observer/touchobserver.d.ts +60 -60
- package/dist/view/placeholder.d.ts +80 -80
- package/dist/view/position.d.ts +187 -187
- package/dist/view/range.d.ts +282 -282
- package/dist/view/rawelement.d.ts +72 -72
- package/dist/view/renderer.d.ts +270 -272
- package/dist/view/rooteditableelement.d.ts +43 -43
- package/dist/view/selection.d.ts +356 -369
- package/dist/view/styles/background.d.ts +15 -15
- package/dist/view/styles/border.d.ts +27 -27
- package/dist/view/styles/margin.d.ts +12 -12
- package/dist/view/styles/padding.d.ts +12 -12
- package/dist/view/styles/utils.d.ts +72 -72
- package/dist/view/stylesmap.d.ts +715 -715
- package/dist/view/text.d.ts +75 -75
- package/dist/view/textproxy.d.ts +92 -92
- package/dist/view/tokenlist.d.ts +104 -104
- package/dist/view/treewalker.d.ts +201 -201
- package/dist/view/typecheckable.d.ts +445 -445
- package/dist/view/uielement.d.ts +93 -93
- package/dist/view/upcastwriter.d.ts +412 -412
- package/dist/view/view.d.ts +466 -469
- package/package.json +2 -2
package/dist/model/nodelist.d.ts
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { ModelNode } from
|
|
6
|
+
* @module engine/model/nodelist
|
|
7
|
+
*/
|
|
8
|
+
import { ModelNode } from "./node.js";
|
|
9
9
|
/**
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
* Provides an interface to operate on a list of {@link module:engine/model/node~ModelNode nodes}. `NodeList` is used internally
|
|
11
|
+
* in classes like {@link module:engine/model/element~ModelElement Element}
|
|
12
|
+
* or {@link module:engine/model/documentfragment~ModelDocumentFragment ModelDocumentFragment}.
|
|
13
|
+
*/
|
|
14
14
|
export declare class ModelNodeList implements Iterable<ModelNode> {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Nodes contained in this node list.
|
|
17
|
+
*/
|
|
18
|
+
private _nodes;
|
|
19
|
+
/**
|
|
20
|
+
* This array maps numbers (offsets) to node that is placed at that offset.
|
|
21
|
+
*
|
|
22
|
+
* This array is similar to `_nodes` with the difference that one node may occupy multiple consecutive items in the array.
|
|
23
|
+
*
|
|
24
|
+
* This array is needed to quickly retrieve a node that is placed at given offset.
|
|
25
|
+
*/
|
|
26
|
+
private _offsetToNode;
|
|
27
|
+
/**
|
|
28
|
+
* Creates a node list.
|
|
29
|
+
*
|
|
30
|
+
* @internal
|
|
31
|
+
* @param nodes Nodes contained in this node list.
|
|
32
|
+
*/
|
|
33
|
+
constructor(nodes?: Iterable<ModelNode>);
|
|
34
|
+
/**
|
|
35
|
+
* Iterable interface.
|
|
36
|
+
*
|
|
37
|
+
* Iterates over all nodes contained inside this node list.
|
|
38
|
+
*/
|
|
39
|
+
[Symbol.iterator](): IterableIterator<ModelNode>;
|
|
40
|
+
/**
|
|
41
|
+
* Number of nodes contained inside this node list.
|
|
42
|
+
*/
|
|
43
|
+
get length(): number;
|
|
44
|
+
/**
|
|
45
|
+
* Sum of {@link module:engine/model/node~ModelNode#offsetSize offset sizes} of all nodes contained inside this node list.
|
|
46
|
+
*/
|
|
47
|
+
get maxOffset(): number;
|
|
48
|
+
/**
|
|
49
|
+
* Gets the node at the given index. Returns `null` if incorrect index was passed.
|
|
50
|
+
*/
|
|
51
|
+
getNode(index: number): ModelNode | null;
|
|
52
|
+
/**
|
|
53
|
+
* Gets the node at the given offset. Returns `null` if incorrect offset was passed.
|
|
54
|
+
*/
|
|
55
|
+
getNodeAtOffset(offset: number): ModelNode | null;
|
|
56
|
+
/**
|
|
57
|
+
* Returns an index of the given node or `null` if given node does not have a parent.
|
|
58
|
+
*
|
|
59
|
+
* This is an alias to {@link module:engine/model/node~ModelNode#index}.
|
|
60
|
+
*/
|
|
61
|
+
getNodeIndex(node: ModelNode): number | null;
|
|
62
|
+
/**
|
|
63
|
+
* Returns the offset at which given node is placed in its parent or `null` if given node does not have a parent.
|
|
64
|
+
*
|
|
65
|
+
* This is an alias to {@link module:engine/model/node~ModelNode#startOffset}.
|
|
66
|
+
*/
|
|
67
|
+
getNodeStartOffset(node: ModelNode): number | null;
|
|
68
|
+
/**
|
|
69
|
+
* Converts index to offset in node list.
|
|
70
|
+
*
|
|
71
|
+
* Throws {@link module:utils/ckeditorerror~CKEditorError CKEditorError} `model-nodelist-index-out-of-bounds` if given index is less
|
|
72
|
+
* than `0` or more than {@link #length}.
|
|
73
|
+
*/
|
|
74
|
+
indexToOffset(index: number): number;
|
|
75
|
+
/**
|
|
76
|
+
* Converts offset in node list to index.
|
|
77
|
+
*
|
|
78
|
+
* Throws {@link module:utils/ckeditorerror~CKEditorError CKEditorError} `model-nodelist-offset-out-of-bounds` if given offset is less
|
|
79
|
+
* than `0` or more than {@link #maxOffset}.
|
|
80
|
+
*/
|
|
81
|
+
offsetToIndex(offset: number): number;
|
|
82
|
+
/**
|
|
83
|
+
* Inserts given nodes at given index.
|
|
84
|
+
*
|
|
85
|
+
* @internal
|
|
86
|
+
* @param index Index at which nodes should be inserted.
|
|
87
|
+
* @param nodes Nodes to be inserted.
|
|
88
|
+
*/
|
|
89
|
+
_insertNodes(index: number, nodes: Iterable<ModelNode>): void;
|
|
90
|
+
/**
|
|
91
|
+
* Removes one or more nodes starting at the given index.
|
|
92
|
+
*
|
|
93
|
+
* @internal
|
|
94
|
+
* @param indexStart Index of the first node to remove.
|
|
95
|
+
* @param howMany Number of nodes to remove.
|
|
96
|
+
* @returns Array containing removed nodes.
|
|
97
|
+
*/
|
|
98
|
+
_removeNodes(indexStart: number, howMany?: number): Array<ModelNode>;
|
|
99
|
+
/**
|
|
100
|
+
* Removes children nodes provided as an array. These nodes do not need to be direct siblings.
|
|
101
|
+
*
|
|
102
|
+
* This method is faster than removing nodes one by one, as it recalculates offsets only once.
|
|
103
|
+
*
|
|
104
|
+
* @internal
|
|
105
|
+
* @param nodes Array of nodes.
|
|
106
|
+
*/
|
|
107
|
+
_removeNodesArray(nodes: Array<ModelNode>): void;
|
|
108
|
+
/**
|
|
109
|
+
* Converts `NodeList` instance to an array containing nodes that were inserted in the node list. Nodes
|
|
110
|
+
* are also converted to their plain object representation.
|
|
111
|
+
*
|
|
112
|
+
* @returns `NodeList` instance converted to `Array`.
|
|
113
|
+
*/
|
|
114
|
+
toJSON(): unknown;
|
|
115
115
|
}
|
|
@@ -1,103 +1,103 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { Operation } from
|
|
9
|
-
import { ModelRange } from
|
|
10
|
-
import { type ModelDocument } from
|
|
11
|
-
import type { ModelSelectable } from
|
|
6
|
+
* @module engine/model/operation/attributeoperation
|
|
7
|
+
*/
|
|
8
|
+
import { Operation } from "./operation.js";
|
|
9
|
+
import { ModelRange } from "../range.js";
|
|
10
|
+
import { type ModelDocument } from "../document.js";
|
|
11
|
+
import type { ModelSelectable } from "../selection.js";
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
* Operation to change nodes' attribute.
|
|
14
|
+
*
|
|
15
|
+
* Using this class you can add, remove or change value of the attribute.
|
|
16
|
+
*/
|
|
17
17
|
export declare class AttributeOperation extends Operation {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
18
|
+
/**
|
|
19
|
+
* Range on which operation should be applied.
|
|
20
|
+
*
|
|
21
|
+
* @readonly
|
|
22
|
+
*/
|
|
23
|
+
range: ModelRange;
|
|
24
|
+
/**
|
|
25
|
+
* Key of an attribute to change or remove.
|
|
26
|
+
*
|
|
27
|
+
* @readonly
|
|
28
|
+
*/
|
|
29
|
+
key: string;
|
|
30
|
+
/**
|
|
31
|
+
* Old value of the attribute with given key or `null`, if attribute was not set before.
|
|
32
|
+
*
|
|
33
|
+
* @readonly
|
|
34
|
+
*/
|
|
35
|
+
oldValue: unknown;
|
|
36
|
+
/**
|
|
37
|
+
* New value of the attribute with given key or `null`, if operation should remove attribute.
|
|
38
|
+
*
|
|
39
|
+
* @readonly
|
|
40
|
+
*/
|
|
41
|
+
newValue: unknown;
|
|
42
|
+
/**
|
|
43
|
+
* Creates an operation that changes, removes or adds attributes.
|
|
44
|
+
*
|
|
45
|
+
* If only `newValue` is set, attribute will be added on a node. Note that all nodes in operation's range must not
|
|
46
|
+
* have an attribute with the same key as the added attribute.
|
|
47
|
+
*
|
|
48
|
+
* If only `oldValue` is set, then attribute with given key will be removed. Note that all nodes in operation's range
|
|
49
|
+
* must have an attribute with that key added.
|
|
50
|
+
*
|
|
51
|
+
* If both `newValue` and `oldValue` are set, then the operation will change the attribute value. Note that all nodes in
|
|
52
|
+
* operation's ranges must already have an attribute with given key and `oldValue` as value
|
|
53
|
+
*
|
|
54
|
+
* @param range Range on which the operation should be applied. Must be a flat range.
|
|
55
|
+
* @param key Key of an attribute to change or remove.
|
|
56
|
+
* @param oldValue Old value of the attribute with given key or `null`, if attribute was not set before.
|
|
57
|
+
* @param newValue New value of the attribute with given key or `null`, if operation should remove attribute.
|
|
58
|
+
* @param baseVersion Document {@link module:engine/model/document~ModelDocument#version} on which operation
|
|
59
|
+
* can be applied or `null` if the operation operates on detached (non-document) tree.
|
|
60
|
+
*/
|
|
61
|
+
constructor(range: ModelRange, key: string, oldValue: unknown, newValue: unknown, baseVersion: number | null);
|
|
62
|
+
/**
|
|
63
|
+
* @inheritDoc
|
|
64
|
+
*/
|
|
65
|
+
get type(): "addAttribute" | "removeAttribute" | "changeAttribute";
|
|
66
|
+
/**
|
|
67
|
+
* @inheritDoc
|
|
68
|
+
*/
|
|
69
|
+
get affectedSelectable(): ModelSelectable;
|
|
70
|
+
/**
|
|
71
|
+
* Creates and returns an operation that has the same parameters as this operation.
|
|
72
|
+
*/
|
|
73
|
+
clone(): AttributeOperation;
|
|
74
|
+
/**
|
|
75
|
+
* See {@link module:engine/model/operation/operation~Operation#getReversed `Operation#getReversed()`}.
|
|
76
|
+
*/
|
|
77
|
+
getReversed(): Operation;
|
|
78
|
+
/**
|
|
79
|
+
* @inheritDoc
|
|
80
|
+
*/
|
|
81
|
+
override toJSON(): unknown;
|
|
82
|
+
/**
|
|
83
|
+
* @inheritDoc
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
override _validate(): void;
|
|
87
|
+
/**
|
|
88
|
+
* @inheritDoc
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
_execute(): void;
|
|
92
|
+
/**
|
|
93
|
+
* @inheritDoc
|
|
94
|
+
*/
|
|
95
|
+
static override get className(): string;
|
|
96
|
+
/**
|
|
97
|
+
* Creates `AttributeOperation` object from deserialized object, i.e. from parsed JSON string.
|
|
98
|
+
*
|
|
99
|
+
* @param json Deserialized JSON object.
|
|
100
|
+
* @param document Document on which this operation will be applied.
|
|
101
|
+
*/
|
|
102
|
+
static override fromJSON(json: any, document: ModelDocument): AttributeOperation;
|
|
103
103
|
}
|
|
@@ -1,62 +1,62 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { Operation } from
|
|
9
|
-
import { type ModelPosition } from
|
|
10
|
-
import type { ModelSelectable } from
|
|
6
|
+
* @module engine/model/operation/detachoperation
|
|
7
|
+
*/
|
|
8
|
+
import { Operation } from "./operation.js";
|
|
9
|
+
import { type ModelPosition } from "../position.js";
|
|
10
|
+
import type { ModelSelectable } from "../selection.js";
|
|
11
11
|
/**
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
* Operation to permanently remove node from detached root.
|
|
13
|
+
* Note this operation is only a local operation and won't be send to the other clients.
|
|
14
|
+
*
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
17
|
export declare class DetachOperation extends Operation {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
18
|
+
/**
|
|
19
|
+
* Position before the first {@link module:engine/model/item~ModelItem model item} to detach.
|
|
20
|
+
*/
|
|
21
|
+
sourcePosition: ModelPosition;
|
|
22
|
+
/**
|
|
23
|
+
* Offset size of moved range.
|
|
24
|
+
*/
|
|
25
|
+
howMany: number;
|
|
26
|
+
clone: never;
|
|
27
|
+
getReversed: never;
|
|
28
|
+
/**
|
|
29
|
+
* Creates an insert operation.
|
|
30
|
+
*
|
|
31
|
+
* @param sourcePosition Position before the first {@link module:engine/model/item~ModelItem model item} to move.
|
|
32
|
+
* @param howMany Offset size of moved range. Moved range will start from `sourcePosition` and end at
|
|
33
|
+
* `sourcePosition` with offset shifted by `howMany`.
|
|
34
|
+
*/
|
|
35
|
+
constructor(sourcePosition: ModelPosition, howMany: number);
|
|
36
|
+
/**
|
|
37
|
+
* @inheritDoc
|
|
38
|
+
*/
|
|
39
|
+
get type(): "detach";
|
|
40
|
+
/**
|
|
41
|
+
* @inheritDoc
|
|
42
|
+
*/
|
|
43
|
+
get affectedSelectable(): ModelSelectable;
|
|
44
|
+
/**
|
|
45
|
+
* @inheritDoc
|
|
46
|
+
*/
|
|
47
|
+
override toJSON(): unknown;
|
|
48
|
+
/**
|
|
49
|
+
* @inheritDoc
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
override _validate(): void;
|
|
53
|
+
/**
|
|
54
|
+
* @inheritDoc
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
_execute(): void;
|
|
58
|
+
/**
|
|
59
|
+
* @inheritDoc
|
|
60
|
+
*/
|
|
61
|
+
static override get className(): string;
|
|
62
62
|
}
|