@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.
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,201 +1,201 @@
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/conversion/modelconsumable
7
- */
8
- import { ModelTextProxy } from '../model/textproxy.js';
9
- import { type ModelItem } from '../model/item.js';
10
- import { type ModelSelection } from '../model/selection.js';
11
- import { type ModelDocumentSelection } from '../model/documentselection.js';
12
- import { type ModelRange } from '../model/range.js';
6
+ * @module engine/conversion/modelconsumable
7
+ */
8
+ import { ModelTextProxy } from "../model/textproxy.js";
9
+ import { type ModelItem } from "../model/item.js";
10
+ import { type ModelSelection } from "../model/selection.js";
11
+ import { type ModelDocumentSelection } from "../model/documentselection.js";
12
+ import { type ModelRange } from "../model/range.js";
13
13
  /**
14
- * Manages a list of consumable values for the {@link module:engine/model/item~ModelItem model items}.
15
- *
16
- * Consumables are various aspects of the model. A model item can be broken down into separate, single properties that might be
17
- * taken into consideration when converting that item.
18
- *
19
- * `ModelConsumable` is used by {@link module:engine/conversion/downcastdispatcher~DowncastDispatcher} while analyzing the changed
20
- * parts of {@link module:engine/model/document~ModelDocument the document}. The added / changed / removed model items are broken down
21
- * into singular properties (the item itself and its attributes). All those parts are saved in `ModelConsumable`. Then,
22
- * during conversion, when the given part of a model item is converted (i.e. the view element has been inserted into the view,
23
- * but without attributes), the consumable value is removed from `ModelConsumable`.
24
- *
25
- * For model items, `ModelConsumable` stores consumable values of one of following types: `insert`, `addattribute:<attributeKey>`,
26
- * `changeattributes:<attributeKey>`, `removeattributes:<attributeKey>`.
27
- *
28
- * In most cases, it is enough to let th {@link module:engine/conversion/downcastdispatcher~DowncastDispatcher}
29
- * gather consumable values, so there is no need to use
30
- * the {@link module:engine/conversion/modelconsumable~ModelConsumable#add add method} directly.
31
- * However, it is important to understand how consumable values can be
32
- * {@link module:engine/conversion/modelconsumable~ModelConsumable#consume consumed}.
33
- * See {@link module:engine/conversion/downcasthelpers default downcast converters} for more information.
34
- *
35
- * Keep in mind that one conversion event may have multiple callbacks (converters) attached to it. Each of those is
36
- * able to convert one or more parts of the model. However, when one of those callbacks actually converts
37
- * something, the others should not, because they would duplicate the results. Using `ModelConsumable` helps to avoid
38
- * this situation, because callbacks should only convert these values that were not yet consumed from `ModelConsumable`.
39
- *
40
- * Consuming multiple values in a single callback:
41
- *
42
- * ```ts
43
- * // Converter for custom `imageBlock` element that might have a `caption` element inside which changes
44
- * // how the image is displayed in the view:
45
- * //
46
- * // Model:
47
- * //
48
- * // [imageBlock]
49
- * // └─ [caption]
50
- * // └─ foo
51
- * //
52
- * // View:
53
- * //
54
- * // <figure>
55
- * // ├─ <img />
56
- * // └─ <caption>
57
- * // └─ foo
58
- * modelConversionDispatcher.on( 'insert:imageBlock', ( evt, data, conversionApi ) => {
59
- * // First, consume the `imageBlock` element.
60
- * conversionApi.consumable.consume( data.item, 'insert' );
61
- *
62
- * // Just create normal image element for the view.
63
- * // Maybe it will be "decorated" later.
64
- * const viewImage = new ViewElement( 'img' );
65
- * const insertPosition = conversionApi.mapper.toViewPosition( data.range.start );
66
- * const viewWriter = conversionApi.writer;
67
- *
68
- * // Check if the `imageBlock` element has children.
69
- * if ( data.item.childCount > 0 ) {
70
- * const modelCaption = data.item.getChild( 0 );
71
- *
72
- * // `modelCaption` insertion change is consumed from consumable values.
73
- * // It will not be converted by other converters, but it's children (probably some text) will be.
74
- * // Through mapping, converters for text will know where to insert contents of `modelCaption`.
75
- * if ( conversionApi.consumable.consume( modelCaption, 'insert' ) ) {
76
- * const viewCaption = new ViewElement( 'figcaption' );
77
- *
78
- * const viewImageHolder = new ViewElement( 'figure', null, [ viewImage, viewCaption ] );
79
- *
80
- * conversionApi.mapper.bindElements( modelCaption, viewCaption );
81
- * conversionApi.mapper.bindElements( data.item, viewImageHolder );
82
- * viewWriter.insert( insertPosition, viewImageHolder );
83
- * }
84
- * } else {
85
- * conversionApi.mapper.bindElements( data.item, viewImage );
86
- * viewWriter.insert( insertPosition, viewImage );
87
- * }
88
- *
89
- * evt.stop();
90
- * } );
91
- * ```
92
- */
14
+ * Manages a list of consumable values for the {@link module:engine/model/item~ModelItem model items}.
15
+ *
16
+ * Consumables are various aspects of the model. A model item can be broken down into separate, single properties that might be
17
+ * taken into consideration when converting that item.
18
+ *
19
+ * `ModelConsumable` is used by {@link module:engine/conversion/downcastdispatcher~DowncastDispatcher} while analyzing the changed
20
+ * parts of {@link module:engine/model/document~ModelDocument the document}. The added / changed / removed model items are broken down
21
+ * into singular properties (the item itself and its attributes). All those parts are saved in `ModelConsumable`. Then,
22
+ * during conversion, when the given part of a model item is converted (i.e. the view element has been inserted into the view,
23
+ * but without attributes), the consumable value is removed from `ModelConsumable`.
24
+ *
25
+ * For model items, `ModelConsumable` stores consumable values of one of following types: `insert`, `addattribute:<attributeKey>`,
26
+ * `changeattributes:<attributeKey>`, `removeattributes:<attributeKey>`.
27
+ *
28
+ * In most cases, it is enough to let th {@link module:engine/conversion/downcastdispatcher~DowncastDispatcher}
29
+ * gather consumable values, so there is no need to use
30
+ * the {@link module:engine/conversion/modelconsumable~ModelConsumable#add add method} directly.
31
+ * However, it is important to understand how consumable values can be
32
+ * {@link module:engine/conversion/modelconsumable~ModelConsumable#consume consumed}.
33
+ * See {@link module:engine/conversion/downcasthelpers default downcast converters} for more information.
34
+ *
35
+ * Keep in mind that one conversion event may have multiple callbacks (converters) attached to it. Each of those is
36
+ * able to convert one or more parts of the model. However, when one of those callbacks actually converts
37
+ * something, the others should not, because they would duplicate the results. Using `ModelConsumable` helps to avoid
38
+ * this situation, because callbacks should only convert these values that were not yet consumed from `ModelConsumable`.
39
+ *
40
+ * Consuming multiple values in a single callback:
41
+ *
42
+ * ```ts
43
+ * // Converter for custom `imageBlock` element that might have a `caption` element inside which changes
44
+ * // how the image is displayed in the view:
45
+ * //
46
+ * // Model:
47
+ * //
48
+ * // [imageBlock]
49
+ * // └─ [caption]
50
+ * // └─ foo
51
+ * //
52
+ * // View:
53
+ * //
54
+ * // <figure>
55
+ * // ├─ <img />
56
+ * // └─ <caption>
57
+ * // └─ foo
58
+ * modelConversionDispatcher.on( 'insert:imageBlock', ( evt, data, conversionApi ) => {
59
+ * // First, consume the `imageBlock` element.
60
+ * conversionApi.consumable.consume( data.item, 'insert' );
61
+ *
62
+ * // Just create normal image element for the view.
63
+ * // Maybe it will be "decorated" later.
64
+ * const viewImage = new ViewElement( 'img' );
65
+ * const insertPosition = conversionApi.mapper.toViewPosition( data.range.start );
66
+ * const viewWriter = conversionApi.writer;
67
+ *
68
+ * // Check if the `imageBlock` element has children.
69
+ * if ( data.item.childCount > 0 ) {
70
+ * const modelCaption = data.item.getChild( 0 );
71
+ *
72
+ * // `modelCaption` insertion change is consumed from consumable values.
73
+ * // It will not be converted by other converters, but it's children (probably some text) will be.
74
+ * // Through mapping, converters for text will know where to insert contents of `modelCaption`.
75
+ * if ( conversionApi.consumable.consume( modelCaption, 'insert' ) ) {
76
+ * const viewCaption = new ViewElement( 'figcaption' );
77
+ *
78
+ * const viewImageHolder = new ViewElement( 'figure', null, [ viewImage, viewCaption ] );
79
+ *
80
+ * conversionApi.mapper.bindElements( modelCaption, viewCaption );
81
+ * conversionApi.mapper.bindElements( data.item, viewImageHolder );
82
+ * viewWriter.insert( insertPosition, viewImageHolder );
83
+ * }
84
+ * } else {
85
+ * conversionApi.mapper.bindElements( data.item, viewImage );
86
+ * viewWriter.insert( insertPosition, viewImage );
87
+ * }
88
+ *
89
+ * evt.stop();
90
+ * } );
91
+ * ```
92
+ */
93
93
  export declare class ModelConsumable {
94
- /**
95
- * Contains list of consumable values.
96
- */
97
- private _consumable;
98
- /**
99
- * For each {@link module:engine/model/textproxy~ModelTextProxy} added to `ModelConsumable`, this registry holds a parent
100
- * of that `ModelTextProxy` and the start and end indices of that `ModelTextProxy`. This allows identification of the `ModelTextProxy`
101
- * instances that point to the same part of the model but are different instances. Each distinct `ModelTextProxy`
102
- * is given a unique `Symbol` which is then registered as consumable. This process is transparent for the `ModelConsumable`
103
- * API user because whenever `ModelTextProxy` is added, tested, consumed or reverted, the internal mechanisms of
104
- * `ModelConsumable` translate `ModelTextProxy` to that unique `Symbol`.
105
- */
106
- private _textProxyRegistry;
107
- /**
108
- * Adds a consumable value to the consumables list and links it with a given model item.
109
- *
110
- * ```ts
111
- * modelConsumable.add( modelElement, 'insert' ); // Add `modelElement` insertion change to consumable values.
112
- * modelConsumable.add( modelElement, 'addAttribute:bold' ); // Add `bold` attribute insertion on `modelElement` change.
113
- * modelConsumable.add( modelElement, 'removeAttribute:bold' ); // Add `bold` attribute removal on `modelElement` change.
114
- * modelConsumable.add( modelSelection, 'selection' ); // Add `modelSelection` to consumable values.
115
- * modelConsumable.add( modelRange, 'range' ); // Add `modelRange` to consumable values.
116
- * ```
117
- *
118
- * @param item Model item, range or selection that has the consumable.
119
- * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
120
- * Second colon and everything after will be cut. Passing event name is a safe and good practice.
121
- */
122
- add(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): void;
123
- /**
124
- * Removes a given consumable value from a given model item.
125
- *
126
- * ```ts
127
- * modelConsumable.consume( modelElement, 'insert' ); // Remove `modelElement` insertion change from consumable values.
128
- * modelConsumable.consume( modelElement, 'addAttribute:bold' ); // Remove `bold` attribute insertion on `modelElement` change.
129
- * modelConsumable.consume( modelElement, 'removeAttribute:bold' ); // Remove `bold` attribute removal on `modelElement` change.
130
- * modelConsumable.consume( modelSelection, 'selection' ); // Remove `modelSelection` from consumable values.
131
- * modelConsumable.consume( modelRange, 'range' ); // Remove 'modelRange' from consumable values.
132
- * ```
133
- *
134
- * @param item Model item, range or selection from which consumable will be consumed.
135
- * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
136
- * Second colon and everything after will be cut. Passing event name is a safe and good practice.
137
- * @returns `true` if consumable value was available and was consumed, `false` otherwise.
138
- */
139
- consume(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean;
140
- /**
141
- * Tests whether there is a consumable value of a given type connected with a given model item.
142
- *
143
- * ```ts
144
- * modelConsumable.test( modelElement, 'insert' ); // Check for `modelElement` insertion change.
145
- * modelConsumable.test( modelElement, 'addAttribute:bold' ); // Check for `bold` attribute insertion on `modelElement` change.
146
- * modelConsumable.test( modelElement, 'removeAttribute:bold' ); // Check for `bold` attribute removal on `modelElement` change.
147
- * modelConsumable.test( modelSelection, 'selection' ); // Check if `modelSelection` is consumable.
148
- * modelConsumable.test( modelRange, 'range' ); // Check if `modelRange` is consumable.
149
- * ```
150
- *
151
- * @param item Model item, range or selection to be tested.
152
- * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
153
- * Second colon and everything after will be cut. Passing event name is a safe and good practice.
154
- * @returns `null` if such consumable was never added, `false` if the consumable values was
155
- * already consumed or `true` if it was added and not consumed yet.
156
- */
157
- test(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean | null;
158
- /**
159
- * Reverts consuming of a consumable value.
160
- *
161
- * ```ts
162
- * modelConsumable.revert( modelElement, 'insert' ); // Revert consuming `modelElement` insertion change.
163
- * modelConsumable.revert( modelElement, 'addAttribute:bold' ); // Revert consuming `bold` attribute insert from `modelElement`.
164
- * modelConsumable.revert( modelElement, 'removeAttribute:bold' ); // Revert consuming `bold` attribute remove from `modelElement`.
165
- * modelConsumable.revert( modelSelection, 'selection' ); // Revert consuming `modelSelection`.
166
- * modelConsumable.revert( modelRange, 'range' ); // Revert consuming `modelRange`.
167
- * ```
168
- *
169
- * @param item Model item, range or selection to be reverted.
170
- * @param type Consumable type.
171
- * @returns `true` if consumable has been reversed, `false` otherwise. `null` if the consumable has
172
- * never been added.
173
- */
174
- revert(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean | null;
175
- /**
176
- * Verifies if all events from the specified group were consumed.
177
- *
178
- * @param eventGroup The events group to verify.
179
- */
180
- verifyAllConsumed(eventGroup: string): void;
181
- /**
182
- * Gets a unique symbol for the passed {@link module:engine/model/textproxy~ModelTextProxy} instance.
183
- * All `ModelTextProxy` instances that have same parent, same start index and same end index will get the same symbol.
184
- *
185
- * Used internally to correctly consume `ModelTextProxy` instances.
186
- *
187
- * @internal
188
- * @param textProxy `ModelTextProxy` instance to get a symbol for.
189
- * @returns Symbol representing all equal instances of `ModelTextProxy`.
190
- */
191
- _getSymbolForTextProxy(textProxy: ModelTextProxy): symbol;
192
- /**
193
- * Adds a symbol for the given {@link module:engine/model/textproxy~ModelTextProxy} instance.
194
- *
195
- * Used internally to correctly consume `ModelTextProxy` instances.
196
- *
197
- * @param textProxy Text proxy instance.
198
- * @returns Symbol generated for given `ModelTextProxy`.
199
- */
200
- private _addSymbolForTextProxy;
94
+ /**
95
+ * Contains list of consumable values.
96
+ */
97
+ private _consumable;
98
+ /**
99
+ * For each {@link module:engine/model/textproxy~ModelTextProxy} added to `ModelConsumable`, this registry holds a parent
100
+ * of that `ModelTextProxy` and the start and end indices of that `ModelTextProxy`. This allows identification of the `ModelTextProxy`
101
+ * instances that point to the same part of the model but are different instances. Each distinct `ModelTextProxy`
102
+ * is given a unique `Symbol` which is then registered as consumable. This process is transparent for the `ModelConsumable`
103
+ * API user because whenever `ModelTextProxy` is added, tested, consumed or reverted, the internal mechanisms of
104
+ * `ModelConsumable` translate `ModelTextProxy` to that unique `Symbol`.
105
+ */
106
+ private _textProxyRegistry;
107
+ /**
108
+ * Adds a consumable value to the consumables list and links it with a given model item.
109
+ *
110
+ * ```ts
111
+ * modelConsumable.add( modelElement, 'insert' ); // Add `modelElement` insertion change to consumable values.
112
+ * modelConsumable.add( modelElement, 'addAttribute:bold' ); // Add `bold` attribute insertion on `modelElement` change.
113
+ * modelConsumable.add( modelElement, 'removeAttribute:bold' ); // Add `bold` attribute removal on `modelElement` change.
114
+ * modelConsumable.add( modelSelection, 'selection' ); // Add `modelSelection` to consumable values.
115
+ * modelConsumable.add( modelRange, 'range' ); // Add `modelRange` to consumable values.
116
+ * ```
117
+ *
118
+ * @param item Model item, range or selection that has the consumable.
119
+ * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
120
+ * Second colon and everything after will be cut. Passing event name is a safe and good practice.
121
+ */
122
+ add(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): void;
123
+ /**
124
+ * Removes a given consumable value from a given model item.
125
+ *
126
+ * ```ts
127
+ * modelConsumable.consume( modelElement, 'insert' ); // Remove `modelElement` insertion change from consumable values.
128
+ * modelConsumable.consume( modelElement, 'addAttribute:bold' ); // Remove `bold` attribute insertion on `modelElement` change.
129
+ * modelConsumable.consume( modelElement, 'removeAttribute:bold' ); // Remove `bold` attribute removal on `modelElement` change.
130
+ * modelConsumable.consume( modelSelection, 'selection' ); // Remove `modelSelection` from consumable values.
131
+ * modelConsumable.consume( modelRange, 'range' ); // Remove 'modelRange' from consumable values.
132
+ * ```
133
+ *
134
+ * @param item Model item, range or selection from which consumable will be consumed.
135
+ * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
136
+ * Second colon and everything after will be cut. Passing event name is a safe and good practice.
137
+ * @returns `true` if consumable value was available and was consumed, `false` otherwise.
138
+ */
139
+ consume(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean;
140
+ /**
141
+ * Tests whether there is a consumable value of a given type connected with a given model item.
142
+ *
143
+ * ```ts
144
+ * modelConsumable.test( modelElement, 'insert' ); // Check for `modelElement` insertion change.
145
+ * modelConsumable.test( modelElement, 'addAttribute:bold' ); // Check for `bold` attribute insertion on `modelElement` change.
146
+ * modelConsumable.test( modelElement, 'removeAttribute:bold' ); // Check for `bold` attribute removal on `modelElement` change.
147
+ * modelConsumable.test( modelSelection, 'selection' ); // Check if `modelSelection` is consumable.
148
+ * modelConsumable.test( modelRange, 'range' ); // Check if `modelRange` is consumable.
149
+ * ```
150
+ *
151
+ * @param item Model item, range or selection to be tested.
152
+ * @param type Consumable type. Will be normalized to a proper form, that is either `<word>` or `<part>:<part>`.
153
+ * Second colon and everything after will be cut. Passing event name is a safe and good practice.
154
+ * @returns `null` if such consumable was never added, `false` if the consumable values was
155
+ * already consumed or `true` if it was added and not consumed yet.
156
+ */
157
+ test(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean | null;
158
+ /**
159
+ * Reverts consuming of a consumable value.
160
+ *
161
+ * ```ts
162
+ * modelConsumable.revert( modelElement, 'insert' ); // Revert consuming `modelElement` insertion change.
163
+ * modelConsumable.revert( modelElement, 'addAttribute:bold' ); // Revert consuming `bold` attribute insert from `modelElement`.
164
+ * modelConsumable.revert( modelElement, 'removeAttribute:bold' ); // Revert consuming `bold` attribute remove from `modelElement`.
165
+ * modelConsumable.revert( modelSelection, 'selection' ); // Revert consuming `modelSelection`.
166
+ * modelConsumable.revert( modelRange, 'range' ); // Revert consuming `modelRange`.
167
+ * ```
168
+ *
169
+ * @param item Model item, range or selection to be reverted.
170
+ * @param type Consumable type.
171
+ * @returns `true` if consumable has been reversed, `false` otherwise. `null` if the consumable has
172
+ * never been added.
173
+ */
174
+ revert(item: ModelItem | ModelSelection | ModelDocumentSelection | ModelRange, type: string): boolean | null;
175
+ /**
176
+ * Verifies if all events from the specified group were consumed.
177
+ *
178
+ * @param eventGroup The events group to verify.
179
+ */
180
+ verifyAllConsumed(eventGroup: string): void;
181
+ /**
182
+ * Gets a unique symbol for the passed {@link module:engine/model/textproxy~ModelTextProxy} instance.
183
+ * All `ModelTextProxy` instances that have same parent, same start index and same end index will get the same symbol.
184
+ *
185
+ * Used internally to correctly consume `ModelTextProxy` instances.
186
+ *
187
+ * @internal
188
+ * @param textProxy `ModelTextProxy` instance to get a symbol for.
189
+ * @returns Symbol representing all equal instances of `ModelTextProxy`.
190
+ */
191
+ _getSymbolForTextProxy(textProxy: ModelTextProxy): symbol;
192
+ /**
193
+ * Adds a symbol for the given {@link module:engine/model/textproxy~ModelTextProxy} instance.
194
+ *
195
+ * Used internally to correctly consume `ModelTextProxy` instances.
196
+ *
197
+ * @param textProxy Text proxy instance.
198
+ * @returns Symbol generated for given `ModelTextProxy`.
199
+ */
200
+ private _addSymbolForTextProxy;
201
201
  }