@ckeditor/ckeditor5-engine 48.3.0-alpha.6 → 48.3.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/model/writer.d.ts +4 -1
- package/package.json +2 -2
package/dist/model/writer.d.ts
CHANGED
|
@@ -851,8 +851,11 @@ export declare class ModelWriter {
|
|
|
851
851
|
* and applies a marker operation with the new marker range equal to the current range. Thanks to this, the marker range
|
|
852
852
|
* can be later correctly processed during undo.
|
|
853
853
|
*
|
|
854
|
+
* Exposed so that code applying operations directly to the model can reproduce the same marker bookkeeping.
|
|
855
|
+
*
|
|
856
|
+
* @internal
|
|
854
857
|
* @param type Writer action type.
|
|
855
858
|
* @param positionOrRange Position or range where the writer action happens.
|
|
856
859
|
*/
|
|
857
|
-
|
|
860
|
+
_addOperationForAffectedMarkers(type: "move" | "merge", positionOrRange: ModelPosition | ModelRange): void;
|
|
858
861
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-engine",
|
|
3
|
-
"version": "48.3.0-alpha.
|
|
3
|
+
"version": "48.3.0-alpha.7",
|
|
4
4
|
"description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"./package.json": "./package.json"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@ckeditor/ckeditor5-utils": "48.3.0-alpha.
|
|
40
|
+
"@ckeditor/ckeditor5-utils": "48.3.0-alpha.7",
|
|
41
41
|
"es-toolkit": "1.45.1"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|