@ckeditor/ckeditor5-engine 48.2.0 → 48.3.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.
Files changed (129) hide show
  1. package/dist/controller/datacontroller.d.ts +329 -328
  2. package/dist/controller/editingcontroller.d.ts +95 -94
  3. package/dist/conversion/comparemarkers.d.ts +45 -45
  4. package/dist/conversion/conversion.d.ts +474 -474
  5. package/dist/conversion/conversionhelpers.d.ts +21 -21
  6. package/dist/conversion/downcastdispatcher.d.ts +539 -538
  7. package/dist/conversion/downcasthelpers.d.ts +1129 -1129
  8. package/dist/conversion/mapper.d.ts +692 -697
  9. package/dist/conversion/modelconsumable.d.ts +196 -196
  10. package/dist/conversion/upcastdispatcher.d.ts +483 -482
  11. package/dist/conversion/upcasthelpers.d.ts +491 -491
  12. package/dist/conversion/viewconsumable.d.ts +330 -330
  13. package/dist/dataprocessor/basichtmlwriter.d.ts +15 -15
  14. package/dist/dataprocessor/dataprocessor.d.ts +57 -57
  15. package/dist/dataprocessor/htmldataprocessor.d.ts +72 -72
  16. package/dist/dataprocessor/htmlwriter.d.ts +11 -11
  17. package/dist/dataprocessor/xmldataprocessor.d.ts +86 -86
  18. package/dist/dev-utils/model.d.ts +128 -123
  19. package/dist/dev-utils/operationreplayer.d.ts +49 -49
  20. package/dist/dev-utils/utils.d.ts +33 -33
  21. package/dist/dev-utils/view.d.ts +314 -309
  22. package/dist/engineconfig.d.ts +39 -39
  23. package/dist/index.css.map +1 -1
  24. package/dist/index.d.ts +150 -150
  25. package/dist/index.js +34026 -40107
  26. package/dist/index.js.map +1 -1
  27. package/dist/legacyerrors.d.ts +0 -4
  28. package/dist/model/batch.d.ts +86 -86
  29. package/dist/model/differ.d.ts +504 -504
  30. package/dist/model/document.d.ts +265 -268
  31. package/dist/model/documentfragment.d.ts +214 -214
  32. package/dist/model/documentselection.d.ts +406 -410
  33. package/dist/model/element.d.ts +182 -182
  34. package/dist/model/history.d.ts +109 -109
  35. package/dist/model/item.d.ts +9 -9
  36. package/dist/model/liveposition.d.ts +70 -69
  37. package/dist/model/liverange.d.ts +93 -92
  38. package/dist/model/markercollection.d.ts +317 -324
  39. package/dist/model/model.d.ts +889 -909
  40. package/dist/model/node.d.ts +254 -254
  41. package/dist/model/nodelist.d.ts +110 -110
  42. package/dist/model/operation/attributeoperation.d.ts +98 -98
  43. package/dist/model/operation/detachoperation.d.ts +57 -57
  44. package/dist/model/operation/insertoperation.d.ts +85 -85
  45. package/dist/model/operation/markeroperation.d.ts +87 -87
  46. package/dist/model/operation/mergeoperation.d.ts +95 -95
  47. package/dist/model/operation/moveoperation.d.ts +97 -97
  48. package/dist/model/operation/nooperation.d.ts +33 -33
  49. package/dist/model/operation/operation.d.ts +94 -94
  50. package/dist/model/operation/operationfactory.d.ts +14 -14
  51. package/dist/model/operation/renameoperation.d.ts +78 -78
  52. package/dist/model/operation/rootattributeoperation.d.ts +93 -93
  53. package/dist/model/operation/rootoperation.d.ts +71 -71
  54. package/dist/model/operation/splitoperation.d.ts +104 -104
  55. package/dist/model/operation/transform.d.ts +91 -91
  56. package/dist/model/operation/utils.d.ts +58 -58
  57. package/dist/model/position.d.ts +535 -535
  58. package/dist/model/range.d.ts +458 -453
  59. package/dist/model/rootelement.d.ts +55 -55
  60. package/dist/model/schema.d.ts +1325 -1327
  61. package/dist/model/selection.d.ts +452 -471
  62. package/dist/model/text.d.ts +62 -62
  63. package/dist/model/textproxy.d.ts +140 -140
  64. package/dist/model/treewalker.d.ts +190 -190
  65. package/dist/model/typecheckable.d.ts +281 -281
  66. package/dist/model/utils/autoparagraphing.d.ts +29 -29
  67. package/dist/model/utils/deletecontent.d.ts +68 -68
  68. package/dist/model/utils/getselectedcontent.d.ts +27 -27
  69. package/dist/model/utils/insertcontent.d.ts +42 -42
  70. package/dist/model/utils/insertobject.d.ts +41 -41
  71. package/dist/model/utils/modifyselection.d.ts +44 -44
  72. package/dist/model/utils/selection-post-fixer.d.ts +71 -71
  73. package/dist/model/writer.d.ts +854 -854
  74. package/dist/view/attributeelement.d.ts +123 -123
  75. package/dist/view/containerelement.d.ts +49 -49
  76. package/dist/view/datatransfer.d.ts +70 -70
  77. package/dist/view/document.d.ts +175 -177
  78. package/dist/view/documentfragment.d.ts +158 -157
  79. package/dist/view/documentselection.d.ts +308 -307
  80. package/dist/view/domconverter.d.ts +612 -657
  81. package/dist/view/downcastwriter.d.ts +1006 -1006
  82. package/dist/view/editableelement.d.ts +64 -63
  83. package/dist/view/element.d.ts +754 -754
  84. package/dist/view/elementdefinition.d.ts +79 -79
  85. package/dist/view/emptyelement.d.ts +42 -42
  86. package/dist/view/filler.d.ts +75 -75
  87. package/dist/view/item.d.ts +9 -9
  88. package/dist/view/matcher.d.ts +412 -487
  89. package/dist/view/node.d.ts +164 -163
  90. package/dist/view/observer/arrowkeysobserver.d.ts +37 -37
  91. package/dist/view/observer/bubblingemittermixin.d.ts +163 -153
  92. package/dist/view/observer/bubblingeventinfo.d.ts +45 -42
  93. package/dist/view/observer/clickobserver.d.ts +36 -36
  94. package/dist/view/observer/compositionobserver.d.ts +67 -67
  95. package/dist/view/observer/domeventdata.d.ts +46 -46
  96. package/dist/view/observer/domeventobserver.d.ts +77 -74
  97. package/dist/view/observer/fakeselectionobserver.d.ts +42 -42
  98. package/dist/view/observer/focusobserver.d.ts +84 -84
  99. package/dist/view/observer/inputobserver.d.ts +76 -76
  100. package/dist/view/observer/keyobserver.d.ts +53 -53
  101. package/dist/view/observer/mouseobserver.d.ts +73 -73
  102. package/dist/view/observer/mutationobserver.d.ts +101 -101
  103. package/dist/view/observer/observer.d.ts +84 -83
  104. package/dist/view/observer/pointerobserver.d.ts +63 -63
  105. package/dist/view/observer/selectionobserver.d.ts +136 -136
  106. package/dist/view/observer/tabobserver.d.ts +38 -38
  107. package/dist/view/observer/touchobserver.d.ts +60 -60
  108. package/dist/view/placeholder.d.ts +80 -80
  109. package/dist/view/position.d.ts +187 -187
  110. package/dist/view/range.d.ts +282 -282
  111. package/dist/view/rawelement.d.ts +72 -72
  112. package/dist/view/renderer.d.ts +270 -272
  113. package/dist/view/rooteditableelement.d.ts +43 -43
  114. package/dist/view/selection.d.ts +356 -369
  115. package/dist/view/styles/background.d.ts +15 -15
  116. package/dist/view/styles/border.d.ts +27 -27
  117. package/dist/view/styles/margin.d.ts +12 -12
  118. package/dist/view/styles/padding.d.ts +12 -12
  119. package/dist/view/styles/utils.d.ts +72 -72
  120. package/dist/view/stylesmap.d.ts +715 -715
  121. package/dist/view/text.d.ts +75 -75
  122. package/dist/view/textproxy.d.ts +92 -92
  123. package/dist/view/tokenlist.d.ts +104 -104
  124. package/dist/view/treewalker.d.ts +201 -201
  125. package/dist/view/typecheckable.d.ts +445 -445
  126. package/dist/view/uielement.d.ts +93 -93
  127. package/dist/view/upcastwriter.d.ts +412 -412
  128. package/dist/view/view.d.ts +466 -469
  129. package/package.json +2 -2
@@ -1,109 +1,109 @@
1
1
  /**
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
- */
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
- * @module engine/model/operation/splitoperation
7
- */
8
- import { Operation } from './operation.js';
9
- import { ModelPosition } from '../position.js';
10
- import { ModelRange } from '../range.js';
11
- import { type ModelDocument } from '../document.js';
12
- import type { ModelSelectable } from '../selection.js';
6
+ * @module engine/model/operation/splitoperation
7
+ */
8
+ import { Operation } from "./operation.js";
9
+ import { ModelPosition } from "../position.js";
10
+ import { ModelRange } from "../range.js";
11
+ import { type ModelDocument } from "../document.js";
12
+ import type { ModelSelectable } from "../selection.js";
13
13
  /**
14
- * Operation to split {@link module:engine/model/element~ModelElement an element} at given
15
- * {@link module:engine/model/operation/splitoperation~SplitOperation#splitPosition split position} into two elements,
16
- * both containing a part of the element's original content.
17
- */
14
+ * Operation to split {@link module:engine/model/element~ModelElement an element} at given
15
+ * {@link module:engine/model/operation/splitoperation~SplitOperation#splitPosition split position} into two elements,
16
+ * both containing a part of the element's original content.
17
+ */
18
18
  export declare class SplitOperation extends Operation {
19
- /**
20
- * Position at which an element should be split.
21
- */
22
- splitPosition: ModelPosition;
23
- /**
24
- * Total offset size of elements that are in the split element after `position`.
25
- */
26
- howMany: number;
27
- /**
28
- * Position at which the clone of split element (or element from graveyard) will be inserted.
29
- */
30
- insertionPosition: ModelPosition;
31
- /**
32
- * Position in the graveyard root before the element which should be used as a parent of the nodes after `position`.
33
- * If it is not set, a copy of the the `position` parent will be used.
34
- *
35
- * The default behavior is to clone the split element. Element from graveyard is used during undo.
36
- */
37
- graveyardPosition: ModelPosition | null;
38
- /**
39
- * Creates a split operation.
40
- *
41
- * @param splitPosition Position at which an element should be split.
42
- * @param howMany Total offset size of elements that are in the split element after `position`.
43
- * @param insertionPosition Position at which the clone of split element (or element from graveyard) will be inserted.
44
- * @param graveyardPosition Position in the graveyard root before the element which
45
- * should be used as a parent of the nodes after `position`. If it is not set, a copy of the the `position` parent will be used.
46
- * @param baseVersion Document {@link module:engine/model/document~ModelDocument#version} on which operation
47
- * can be applied or `null` if the operation operates on detached (non-document) tree.
48
- */
49
- constructor(splitPosition: ModelPosition, howMany: number, insertionPosition: ModelPosition, graveyardPosition: ModelPosition | null, baseVersion: number | null);
50
- /**
51
- * @inheritDoc
52
- */
53
- get type(): 'split';
54
- /**
55
- * Position inside the new clone of a split element.
56
- *
57
- * This is a position where nodes that are after the split position will be moved to.
58
- */
59
- get moveTargetPosition(): ModelPosition;
60
- /**
61
- * Artificial range that contains all the nodes from the split element that will be moved to the new element.
62
- * The range starts at {@link #splitPosition} and ends in the same parent, at `POSITIVE_INFINITY` offset.
63
- */
64
- get movedRange(): ModelRange;
65
- /**
66
- * @inheritDoc
67
- */
68
- get affectedSelectable(): ModelSelectable;
69
- /**
70
- * Creates and returns an operation that has the same parameters as this operation.
71
- *
72
- * @returns Clone of this operation.
73
- */
74
- clone(): SplitOperation;
75
- /**
76
- * See {@link module:engine/model/operation/operation~Operation#getReversed `Operation#getReversed()`}.
77
- */
78
- getReversed(): Operation;
79
- /**
80
- * @inheritDoc
81
- * @internal
82
- */
83
- _validate(): void;
84
- /**
85
- * @inheritDoc
86
- * @internal
87
- */
88
- _execute(): void;
89
- /**
90
- * @inheritDoc
91
- */
92
- toJSON(): unknown;
93
- /**
94
- * @inheritDoc
95
- */
96
- static get className(): string;
97
- /**
98
- * Helper function that returns a default insertion position basing on given `splitPosition`. The default insertion
99
- * position is after the split element.
100
- */
101
- static getInsertionPosition(splitPosition: ModelPosition): ModelPosition;
102
- /**
103
- * Creates `SplitOperation` object from deserialized object, i.e. from parsed JSON string.
104
- *
105
- * @param json Deserialized JSON object.
106
- * @param document Document on which this operation will be applied.
107
- */
108
- static fromJSON(json: any, document: ModelDocument): SplitOperation;
19
+ /**
20
+ * Position at which an element should be split.
21
+ */
22
+ splitPosition: ModelPosition;
23
+ /**
24
+ * Total offset size of elements that are in the split element after `position`.
25
+ */
26
+ howMany: number;
27
+ /**
28
+ * Position at which the clone of split element (or element from graveyard) will be inserted.
29
+ */
30
+ insertionPosition: ModelPosition;
31
+ /**
32
+ * Position in the graveyard root before the element which should be used as a parent of the nodes after `position`.
33
+ * If it is not set, a copy of the the `position` parent will be used.
34
+ *
35
+ * The default behavior is to clone the split element. Element from graveyard is used during undo.
36
+ */
37
+ graveyardPosition: ModelPosition | null;
38
+ /**
39
+ * Creates a split operation.
40
+ *
41
+ * @param splitPosition Position at which an element should be split.
42
+ * @param howMany Total offset size of elements that are in the split element after `position`.
43
+ * @param insertionPosition Position at which the clone of split element (or element from graveyard) will be inserted.
44
+ * @param graveyardPosition Position in the graveyard root before the element which
45
+ * should be used as a parent of the nodes after `position`. If it is not set, a copy of the the `position` parent will be used.
46
+ * @param baseVersion Document {@link module:engine/model/document~ModelDocument#version} on which operation
47
+ * can be applied or `null` if the operation operates on detached (non-document) tree.
48
+ */
49
+ constructor(splitPosition: ModelPosition, howMany: number, insertionPosition: ModelPosition, graveyardPosition: ModelPosition | null, baseVersion: number | null);
50
+ /**
51
+ * @inheritDoc
52
+ */
53
+ get type(): "split";
54
+ /**
55
+ * Position inside the new clone of a split element.
56
+ *
57
+ * This is a position where nodes that are after the split position will be moved to.
58
+ */
59
+ get moveTargetPosition(): ModelPosition;
60
+ /**
61
+ * Artificial range that contains all the nodes from the split element that will be moved to the new element.
62
+ * The range starts at {@link #splitPosition} and ends in the same parent, at `POSITIVE_INFINITY` offset.
63
+ */
64
+ get movedRange(): ModelRange;
65
+ /**
66
+ * @inheritDoc
67
+ */
68
+ get affectedSelectable(): ModelSelectable;
69
+ /**
70
+ * Creates and returns an operation that has the same parameters as this operation.
71
+ *
72
+ * @returns Clone of this operation.
73
+ */
74
+ clone(): SplitOperation;
75
+ /**
76
+ * See {@link module:engine/model/operation/operation~Operation#getReversed `Operation#getReversed()`}.
77
+ */
78
+ getReversed(): Operation;
79
+ /**
80
+ * @inheritDoc
81
+ * @internal
82
+ */
83
+ override _validate(): void;
84
+ /**
85
+ * @inheritDoc
86
+ * @internal
87
+ */
88
+ _execute(): void;
89
+ /**
90
+ * @inheritDoc
91
+ */
92
+ override toJSON(): unknown;
93
+ /**
94
+ * @inheritDoc
95
+ */
96
+ static override get className(): string;
97
+ /**
98
+ * Helper function that returns a default insertion position basing on given `splitPosition`. The default insertion
99
+ * position is after the split element.
100
+ */
101
+ static getInsertionPosition(splitPosition: ModelPosition): ModelPosition;
102
+ /**
103
+ * Creates `SplitOperation` object from deserialized object, i.e. from parsed JSON string.
104
+ *
105
+ * @param json Deserialized JSON object.
106
+ * @param document Document on which this operation will be applied.
107
+ */
108
+ static override fromJSON(json: any, document: ModelDocument): SplitOperation;
109
109
  }
@@ -1,103 +1,103 @@
1
1
  /**
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
- import { type Operation } from './operation.js';
6
- import { type ModelDocument } from '../document.js';
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
+ import { type Operation } from "./operation.js";
6
+ import { type ModelDocument } from "../document.js";
7
7
  /**
8
- * Transforms operation `a` by operation `b`.
9
- *
10
- * @param a Operation to be transformed.
11
- * @param b Operation to transform by.
12
- * @param context Transformation context for this transformation.
13
- * @returns Transformation result.
14
- * @internal
15
- */
8
+ * Transforms operation `a` by operation `b`.
9
+ *
10
+ * @param a Operation to be transformed.
11
+ * @param b Operation to transform by.
12
+ * @param context Transformation context for this transformation.
13
+ * @returns Transformation result.
14
+ * @internal
15
+ */
16
16
  export declare function transform(a: Operation, b: Operation, context?: TransformationContext): Array<Operation>;
17
17
  /**
18
- * Performs a transformation of two sets of operations - `operationsA` and `operationsB`. The transformation is two-way -
19
- * both transformed `operationsA` and transformed `operationsB` are returned.
20
- *
21
- * Note, that the first operation in each set should base on the same document state (
22
- * {@link module:engine/model/document~ModelDocument#version document version}).
23
- *
24
- * It is assumed that `operationsA` are "more important" during conflict resolution between two operations.
25
- *
26
- * New copies of both passed arrays and operations inside them are returned. Passed arguments are not altered.
27
- *
28
- * Base versions of the transformed operations sets are updated accordingly. For example, assume that base versions are `4`
29
- * and there are `3` operations in `operationsA` and `5` operations in `operationsB`. Then:
30
- *
31
- * * transformed `operationsA` will start from base version `9` (`4` base version + `5` operations B),
32
- * * transformed `operationsB` will start from base version `7` (`4` base version + `3` operations A).
33
- *
34
- * If no operation was broken into two during transformation, then both sets will end up with an operation that bases on version `11`:
35
- *
36
- * * transformed `operationsA` start from `9` and there are `3` of them, so the last will have `baseVersion` equal to `11`,
37
- * * transformed `operationsB` start from `7` and there are `5` of them, so the last will have `baseVersion` equal to `11`.
38
- *
39
- * @param operationsA
40
- * @param operationsB
41
- * @param options Additional transformation options.
42
- * @param options.document Document which the operations change.
43
- * @param options.useRelations Whether during transformation relations should be used (used during undo for better conflict resolution).
44
- * @param options.padWithNoOps Whether additional {@link module:engine/model/operation/nooperation~NoOperation}s
45
- * should be added to the transformation results to force the same last base version for both transformed sets (in case
46
- * if some operations got broken into multiple operations during transformation).
47
- * @param options.forceWeakRemove If set to `false`, remove operation will be always stronger than move operation,
48
- * so the removed nodes won't end up back in the document root. When set to `true`, context data will be used.
49
- * @returns Transformation result.
50
- */
18
+ * Performs a transformation of two sets of operations - `operationsA` and `operationsB`. The transformation is two-way -
19
+ * both transformed `operationsA` and transformed `operationsB` are returned.
20
+ *
21
+ * Note, that the first operation in each set should base on the same document state (
22
+ * {@link module:engine/model/document~ModelDocument#version document version}).
23
+ *
24
+ * It is assumed that `operationsA` are "more important" during conflict resolution between two operations.
25
+ *
26
+ * New copies of both passed arrays and operations inside them are returned. Passed arguments are not altered.
27
+ *
28
+ * Base versions of the transformed operations sets are updated accordingly. For example, assume that base versions are `4`
29
+ * and there are `3` operations in `operationsA` and `5` operations in `operationsB`. Then:
30
+ *
31
+ * * transformed `operationsA` will start from base version `9` (`4` base version + `5` operations B),
32
+ * * transformed `operationsB` will start from base version `7` (`4` base version + `3` operations A).
33
+ *
34
+ * If no operation was broken into two during transformation, then both sets will end up with an operation that bases on version `11`:
35
+ *
36
+ * * transformed `operationsA` start from `9` and there are `3` of them, so the last will have `baseVersion` equal to `11`,
37
+ * * transformed `operationsB` start from `7` and there are `5` of them, so the last will have `baseVersion` equal to `11`.
38
+ *
39
+ * @param operationsA
40
+ * @param operationsB
41
+ * @param options Additional transformation options.
42
+ * @param options.document Document which the operations change.
43
+ * @param options.useRelations Whether during transformation relations should be used (used during undo for better conflict resolution).
44
+ * @param options.padWithNoOps Whether additional {@link module:engine/model/operation/nooperation~NoOperation}s
45
+ * should be added to the transformation results to force the same last base version for both transformed sets (in case
46
+ * if some operations got broken into multiple operations during transformation).
47
+ * @param options.forceWeakRemove If set to `false`, remove operation will be always stronger than move operation,
48
+ * so the removed nodes won't end up back in the document root. When set to `true`, context data will be used.
49
+ * @returns Transformation result.
50
+ */
51
51
  export declare function transformOperationSets(operationsA: Array<Operation>, operationsB: Array<Operation>, options: {
52
- document: ModelDocument;
53
- useRelations?: boolean;
54
- padWithNoOps?: boolean;
55
- forceWeakRemove?: boolean;
52
+ document: ModelDocument;
53
+ useRelations?: boolean;
54
+ padWithNoOps?: boolean;
55
+ forceWeakRemove?: boolean;
56
56
  }): TransformOperationSetsResult;
57
57
  /**
58
- * The result of {@link module:engine/model/operation/transform~transformOperationSets}.
59
- */
58
+ * The result of {@link module:engine/model/operation/transform~transformOperationSets}.
59
+ */
60
60
  export interface TransformOperationSetsResult {
61
- /**
62
- * Transformed `operationsA`.
63
- */
64
- operationsA: Array<Operation>;
65
- /**
66
- * Transformed `operationsB`.
67
- */
68
- operationsB: Array<Operation>;
69
- /**
70
- * A map that links transformed operations to original operations. The keys are the transformed
71
- * operations and the values are the original operations from the input (`operationsA` and `operationsB`).
72
- */
73
- originalOperations: Map<Operation, Operation>;
61
+ /**
62
+ * Transformed `operationsA`.
63
+ */
64
+ operationsA: Array<Operation>;
65
+ /**
66
+ * Transformed `operationsB`.
67
+ */
68
+ operationsB: Array<Operation>;
69
+ /**
70
+ * A map that links transformed operations to original operations. The keys are the transformed
71
+ * operations and the values are the original operations from the input (`operationsA` and `operationsB`).
72
+ */
73
+ originalOperations: Map<Operation, Operation>;
74
74
  }
75
75
  /**
76
- * Holds additional contextual information about a transformed pair of operations (`a` and `b`). Those information
77
- * can be used for better conflict resolving.
78
- *
79
- * @internal
80
- */
76
+ * Holds additional contextual information about a transformed pair of operations (`a` and `b`). Those information
77
+ * can be used for better conflict resolving.
78
+ *
79
+ * @internal
80
+ */
81
81
  export type TransformationContext = {
82
- /**
83
- * Whether `a` is strong operation in this transformation, or weak.
84
- */
85
- aIsStrong?: boolean;
86
- /**
87
- * Whether `a` operation was undone.
88
- */
89
- aWasUndone?: boolean;
90
- /**
91
- * Whether `b` operation was undone.
92
- */
93
- bWasUndone?: boolean;
94
- /**
95
- * The relation between `a` operation and an operation undone by `b` operation.
96
- */
97
- abRelation?: any;
98
- /**
99
- * The relation between `b` operation and an operation undone by `a` operation.
100
- */
101
- baRelation?: any;
102
- forceWeakRemove?: boolean;
82
+ /**
83
+ * Whether `a` is strong operation in this transformation, or weak.
84
+ */
85
+ aIsStrong?: boolean;
86
+ /**
87
+ * Whether `a` operation was undone.
88
+ */
89
+ aWasUndone?: boolean;
90
+ /**
91
+ * Whether `b` operation was undone.
92
+ */
93
+ bWasUndone?: boolean;
94
+ /**
95
+ * The relation between `a` operation and an operation undone by `b` operation.
96
+ */
97
+ abRelation?: any;
98
+ /**
99
+ * The relation between `b` operation and an operation undone by `a` operation.
100
+ */
101
+ baRelation?: any;
102
+ forceWeakRemove?: boolean;
103
103
  };
@@ -1,72 +1,72 @@
1
1
  /**
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
- */
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
- * @module engine/model/operation/utils
7
- */
8
- import { ModelNode } from '../node.js';
9
- import { ModelRange } from '../range.js';
10
- import { type ModelDocumentFragment } from '../documentfragment.js';
11
- import { type ModelItem } from '../item.js';
12
- import { type ModelNodeList } from '../nodelist.js';
13
- import { type ModelPosition } from '../position.js';
6
+ * @module engine/model/operation/utils
7
+ */
8
+ import { ModelNode } from "../node.js";
9
+ import { ModelRange } from "../range.js";
10
+ import { type ModelDocumentFragment } from "../documentfragment.js";
11
+ import { type ModelItem } from "../item.js";
12
+ import { type ModelNodeList } from "../nodelist.js";
13
+ import { type ModelPosition } from "../position.js";
14
14
  /**
15
- * Inserts given nodes at given position.
16
- *
17
- * @internal
18
- * @param position Position at which nodes should be inserted.
19
- * @param nodes Nodes to insert.
20
- * @returns Range spanning over inserted elements.
21
- */
15
+ * Inserts given nodes at given position.
16
+ *
17
+ * @internal
18
+ * @param position Position at which nodes should be inserted.
19
+ * @param nodes Nodes to insert.
20
+ * @returns Range spanning over inserted elements.
21
+ */
22
22
  export declare function _insert(position: ModelPosition, nodes: ModelNodeSet): ModelRange;
23
23
  /**
24
- * Removed nodes in given range. Only {@link module:engine/model/range~ModelRange#isFlat flat} ranges are accepted.
25
- *
26
- * @internal
27
- * @param range Range containing nodes to remove.
28
- */
24
+ * Removed nodes in given range. Only {@link module:engine/model/range~ModelRange#isFlat flat} ranges are accepted.
25
+ *
26
+ * @internal
27
+ * @param range Range containing nodes to remove.
28
+ */
29
29
  export declare function _remove(this: any, range: ModelRange): Array<ModelNode>;
30
30
  /**
31
- * Moves nodes in given range to given target position. Only {@link module:engine/model/range~ModelRange#isFlat flat} ranges are accepted.
32
- *
33
- * @internal
34
- * @param sourceRange Range containing nodes to move.
35
- * @param targetPosition Position to which nodes should be moved.
36
- * @returns Range containing moved nodes.
37
- */
31
+ * Moves nodes in given range to given target position. Only {@link module:engine/model/range~ModelRange#isFlat flat} ranges are accepted.
32
+ *
33
+ * @internal
34
+ * @param sourceRange Range containing nodes to move.
35
+ * @param targetPosition Position to which nodes should be moved.
36
+ * @returns Range containing moved nodes.
37
+ */
38
38
  export declare function _move(this: any, sourceRange: ModelRange, targetPosition: ModelPosition): ModelRange;
39
39
  /**
40
- * Sets given attribute on nodes in given range. The attributes are only set on top-level nodes of the range, not on its children.
41
- *
42
- * @internal
43
- * @param range Range containing nodes that should have the attribute set. Must be a flat range.
44
- * @param key Key of attribute to set.
45
- * @param value Attribute value.
46
- */
40
+ * Sets given attribute on nodes in given range. The attributes are only set on top-level nodes of the range, not on its children.
41
+ *
42
+ * @internal
43
+ * @param range Range containing nodes that should have the attribute set. Must be a flat range.
44
+ * @param key Key of attribute to set.
45
+ * @param value Attribute value.
46
+ */
47
47
  export declare function _setAttribute(range: ModelRange, key: string, value: unknown): void;
48
48
  /**
49
- * Normalizes given object or an array of objects to an array of {@link module:engine/model/node~ModelNode nodes}. See
50
- * {@link ~ModelNodeSet NodeSet} for details on how normalization is performed.
51
- *
52
- * @internal
53
- * @param nodes Objects to normalize.
54
- * @returns Normalized nodes.
55
- */
49
+ * Normalizes given object or an array of objects to an array of {@link module:engine/model/node~ModelNode nodes}. See
50
+ * {@link ~ModelNodeSet NodeSet} for details on how normalization is performed.
51
+ *
52
+ * @internal
53
+ * @param nodes Objects to normalize.
54
+ * @returns Normalized nodes.
55
+ */
56
56
  export declare function _normalizeNodes(nodes: ModelNodeSet): Array<ModelNode>;
57
57
  /**
58
- * Value that can be normalized to an array of {@link module:engine/model/node~ModelNode nodes}.
59
- *
60
- * Non-arrays are normalized as follows:
61
- * * {@link module:engine/model/node~ModelNode Node} is left as is,
62
- * * {@link module:engine/model/textproxy~ModelTextProxy TextProxy} and `string` are normalized to
63
- * {@link module:engine/model/text~ModelText Text},
64
- * * {@link module:engine/model/nodelist~ModelNodeList NodeList} is normalized to an array containing all nodes that are in that node list,
65
- * * {@link module:engine/model/documentfragment~ModelDocumentFragment ModelDocumentFragment} is normalized to an array containing all of
66
- * it's children.
67
- *
68
- * Arrays are processed item by item like non-array values and flattened to one array. Normalization always results in
69
- * a flat array of {@link module:engine/model/node~ModelNode nodes}. Consecutive text nodes (or items normalized to text nodes) will be
70
- * merged if they have same attributes.
71
- */
58
+ * Value that can be normalized to an array of {@link module:engine/model/node~ModelNode nodes}.
59
+ *
60
+ * Non-arrays are normalized as follows:
61
+ * * {@link module:engine/model/node~ModelNode Node} is left as is,
62
+ * * {@link module:engine/model/textproxy~ModelTextProxy TextProxy} and `string` are normalized to
63
+ * {@link module:engine/model/text~ModelText Text},
64
+ * * {@link module:engine/model/nodelist~ModelNodeList NodeList} is normalized to an array containing all nodes that are in that node list,
65
+ * * {@link module:engine/model/documentfragment~ModelDocumentFragment ModelDocumentFragment} is normalized to an array containing all of
66
+ * it's children.
67
+ *
68
+ * Arrays are processed item by item like non-array values and flattened to one array. Normalization always results in
69
+ * a flat array of {@link module:engine/model/node~ModelNode nodes}. Consecutive text nodes (or items normalized to text nodes) will be
70
+ * merged if they have same attributes.
71
+ */
72
72
  export type ModelNodeSet = ModelItem | string | ModelNodeList | ModelDocumentFragment | Iterable<ModelItem | string | ModelNodeList | ModelDocumentFragment>;