@ckeditor/ckeditor5-engine 36.0.1 → 37.0.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 (200) hide show
  1. package/README.md +1 -1
  2. package/package.json +24 -23
  3. package/src/controller/datacontroller.d.ts +331 -0
  4. package/src/controller/datacontroller.js +62 -109
  5. package/src/controller/editingcontroller.d.ts +98 -0
  6. package/src/controller/editingcontroller.js +22 -46
  7. package/src/conversion/conversion.d.ts +476 -0
  8. package/src/conversion/conversion.js +328 -347
  9. package/src/conversion/conversionhelpers.d.ts +26 -0
  10. package/src/conversion/conversionhelpers.js +1 -5
  11. package/src/conversion/downcastdispatcher.d.ts +547 -0
  12. package/src/conversion/downcastdispatcher.js +74 -152
  13. package/src/conversion/downcasthelpers.d.ts +1226 -0
  14. package/src/conversion/downcasthelpers.js +843 -762
  15. package/src/conversion/mapper.d.ts +499 -0
  16. package/src/conversion/mapper.js +84 -99
  17. package/src/conversion/modelconsumable.d.ts +201 -0
  18. package/src/conversion/modelconsumable.js +96 -99
  19. package/src/conversion/upcastdispatcher.d.ts +492 -0
  20. package/src/conversion/upcastdispatcher.js +73 -100
  21. package/src/conversion/upcasthelpers.d.ts +499 -0
  22. package/src/conversion/upcasthelpers.js +406 -373
  23. package/src/conversion/viewconsumable.d.ts +177 -0
  24. package/src/conversion/viewconsumable.js +157 -162
  25. package/src/dataprocessor/basichtmlwriter.d.ts +18 -0
  26. package/src/dataprocessor/basichtmlwriter.js +0 -9
  27. package/src/dataprocessor/dataprocessor.d.ts +61 -0
  28. package/src/dataprocessor/htmldataprocessor.d.ts +76 -0
  29. package/src/dataprocessor/htmldataprocessor.js +6 -28
  30. package/src/dataprocessor/htmlwriter.d.ts +16 -0
  31. package/src/dataprocessor/xmldataprocessor.d.ts +90 -0
  32. package/src/dataprocessor/xmldataprocessor.js +8 -40
  33. package/src/dev-utils/model.d.ts +124 -0
  34. package/src/dev-utils/model.js +41 -38
  35. package/src/dev-utils/operationreplayer.d.ts +51 -0
  36. package/src/dev-utils/operationreplayer.js +6 -14
  37. package/src/dev-utils/utils.d.ts +37 -0
  38. package/src/dev-utils/utils.js +5 -18
  39. package/src/dev-utils/view.d.ts +319 -0
  40. package/src/dev-utils/view.js +205 -226
  41. package/src/index.d.ts +105 -0
  42. package/src/index.js +1 -0
  43. package/src/model/batch.d.ts +106 -0
  44. package/src/model/differ.d.ts +329 -0
  45. package/src/model/document.d.ts +245 -0
  46. package/src/model/document.js +1 -1
  47. package/src/model/documentfragment.d.ts +196 -0
  48. package/src/model/documentfragment.js +2 -2
  49. package/src/model/documentselection.d.ts +420 -0
  50. package/src/model/element.d.ts +165 -0
  51. package/src/model/history.d.ts +114 -0
  52. package/src/model/item.d.ts +14 -0
  53. package/src/model/liveposition.d.ts +77 -0
  54. package/src/model/liverange.d.ts +102 -0
  55. package/src/model/markercollection.d.ts +335 -0
  56. package/src/model/model.d.ts +812 -0
  57. package/src/model/model.js +59 -30
  58. package/src/model/node.d.ts +256 -0
  59. package/src/model/nodelist.d.ts +91 -0
  60. package/src/model/operation/attributeoperation.d.ts +98 -0
  61. package/src/model/operation/detachoperation.d.ts +55 -0
  62. package/src/model/operation/insertoperation.d.ts +85 -0
  63. package/src/model/operation/markeroperation.d.ts +86 -0
  64. package/src/model/operation/mergeoperation.d.ts +95 -0
  65. package/src/model/operation/moveoperation.d.ts +91 -0
  66. package/src/model/operation/nooperation.d.ts +33 -0
  67. package/src/model/operation/operation.d.ts +89 -0
  68. package/src/model/operation/operationfactory.d.ts +18 -0
  69. package/src/model/operation/renameoperation.d.ts +78 -0
  70. package/src/model/operation/rootattributeoperation.d.ts +97 -0
  71. package/src/model/operation/rootattributeoperation.js +1 -1
  72. package/src/model/operation/splitoperation.d.ts +104 -0
  73. package/src/model/operation/transform.d.ts +100 -0
  74. package/src/model/operation/utils.d.ts +71 -0
  75. package/src/model/position.d.ts +539 -0
  76. package/src/model/position.js +1 -1
  77. package/src/model/range.d.ts +458 -0
  78. package/src/model/range.js +1 -1
  79. package/src/model/rootelement.d.ts +40 -0
  80. package/src/model/schema.d.ts +1176 -0
  81. package/src/model/schema.js +15 -15
  82. package/src/model/selection.d.ts +472 -0
  83. package/src/model/text.d.ts +66 -0
  84. package/src/model/text.js +0 -2
  85. package/src/model/textproxy.d.ts +144 -0
  86. package/src/model/treewalker.d.ts +186 -0
  87. package/src/model/treewalker.js +19 -10
  88. package/src/model/typecheckable.d.ts +255 -0
  89. package/src/model/utils/autoparagraphing.d.ts +37 -0
  90. package/src/model/utils/deletecontent.d.ts +58 -0
  91. package/src/model/utils/findoptimalinsertionrange.d.ts +32 -0
  92. package/src/model/utils/getselectedcontent.d.ts +30 -0
  93. package/src/model/utils/insertcontent.d.ts +46 -0
  94. package/src/model/utils/insertcontent.js +2 -12
  95. package/src/model/utils/insertobject.d.ts +44 -0
  96. package/src/model/utils/insertobject.js +3 -14
  97. package/src/model/utils/modifyselection.d.ts +48 -0
  98. package/src/model/utils/selection-post-fixer.d.ts +65 -0
  99. package/src/model/writer.d.ts +726 -0
  100. package/src/model/writer.js +6 -4
  101. package/src/view/attributeelement.d.ts +108 -0
  102. package/src/view/attributeelement.js +25 -69
  103. package/src/view/containerelement.d.ts +49 -0
  104. package/src/view/containerelement.js +10 -43
  105. package/src/view/datatransfer.d.ts +75 -0
  106. package/src/view/document.d.ts +184 -0
  107. package/src/view/document.js +15 -84
  108. package/src/view/documentfragment.d.ts +150 -0
  109. package/src/view/documentfragment.js +40 -81
  110. package/src/view/documentselection.d.ts +219 -0
  111. package/src/view/documentselection.js +75 -121
  112. package/src/view/domconverter.d.ts +620 -0
  113. package/src/view/domconverter.js +159 -276
  114. package/src/view/downcastwriter.d.ts +804 -0
  115. package/src/view/downcastwriter.js +336 -380
  116. package/src/view/editableelement.d.ts +52 -0
  117. package/src/view/editableelement.js +9 -49
  118. package/src/view/element.d.ts +466 -0
  119. package/src/view/element.js +150 -222
  120. package/src/view/elementdefinition.d.ts +87 -0
  121. package/src/view/emptyelement.d.ts +41 -0
  122. package/src/view/emptyelement.js +11 -44
  123. package/src/view/filler.d.ts +111 -0
  124. package/src/view/filler.js +24 -21
  125. package/src/view/item.d.ts +14 -0
  126. package/src/view/matcher.d.ts +486 -0
  127. package/src/view/matcher.js +247 -218
  128. package/src/view/node.d.ts +160 -0
  129. package/src/view/node.js +26 -100
  130. package/src/view/observer/arrowkeysobserver.d.ts +41 -0
  131. package/src/view/observer/arrowkeysobserver.js +0 -13
  132. package/src/view/observer/bubblingemittermixin.d.ts +166 -0
  133. package/src/view/observer/bubblingemittermixin.js +36 -25
  134. package/src/view/observer/bubblingeventinfo.d.ts +47 -0
  135. package/src/view/observer/bubblingeventinfo.js +3 -29
  136. package/src/view/observer/clickobserver.d.ts +43 -0
  137. package/src/view/observer/clickobserver.js +9 -19
  138. package/src/view/observer/compositionobserver.d.ts +82 -0
  139. package/src/view/observer/compositionobserver.js +13 -42
  140. package/src/view/observer/domeventdata.d.ts +50 -0
  141. package/src/view/observer/domeventdata.js +5 -30
  142. package/src/view/observer/domeventobserver.d.ts +69 -0
  143. package/src/view/observer/domeventobserver.js +19 -21
  144. package/src/view/observer/fakeselectionobserver.d.ts +46 -0
  145. package/src/view/observer/fakeselectionobserver.js +2 -15
  146. package/src/view/observer/focusobserver.d.ts +82 -0
  147. package/src/view/observer/focusobserver.js +14 -40
  148. package/src/view/observer/inputobserver.d.ts +86 -0
  149. package/src/view/observer/inputobserver.js +18 -64
  150. package/src/view/observer/keyobserver.d.ts +67 -0
  151. package/src/view/observer/keyobserver.js +8 -42
  152. package/src/view/observer/mouseobserver.d.ts +89 -0
  153. package/src/view/observer/mouseobserver.js +8 -28
  154. package/src/view/observer/mutationobserver.d.ts +82 -0
  155. package/src/view/observer/mutationobserver.js +7 -37
  156. package/src/view/observer/observer.d.ts +84 -0
  157. package/src/view/observer/observer.js +12 -25
  158. package/src/view/observer/selectionobserver.d.ts +143 -0
  159. package/src/view/observer/selectionobserver.js +9 -99
  160. package/src/view/observer/tabobserver.d.ts +42 -0
  161. package/src/view/observer/tabobserver.js +0 -14
  162. package/src/view/placeholder.d.ts +85 -0
  163. package/src/view/placeholder.js +26 -43
  164. package/src/view/position.d.ts +189 -0
  165. package/src/view/position.js +36 -83
  166. package/src/view/range.d.ts +279 -0
  167. package/src/view/range.js +79 -122
  168. package/src/view/rawelement.d.ts +73 -0
  169. package/src/view/rawelement.js +34 -48
  170. package/src/view/renderer.d.ts +265 -0
  171. package/src/view/renderer.js +105 -193
  172. package/src/view/rooteditableelement.d.ts +41 -0
  173. package/src/view/rooteditableelement.js +12 -40
  174. package/src/view/selection.d.ts +375 -0
  175. package/src/view/selection.js +79 -153
  176. package/src/view/styles/background.d.ts +33 -0
  177. package/src/view/styles/background.js +14 -12
  178. package/src/view/styles/border.d.ts +43 -0
  179. package/src/view/styles/border.js +58 -48
  180. package/src/view/styles/margin.d.ts +29 -0
  181. package/src/view/styles/margin.js +13 -11
  182. package/src/view/styles/padding.d.ts +29 -0
  183. package/src/view/styles/padding.js +13 -11
  184. package/src/view/styles/utils.d.ts +93 -0
  185. package/src/view/styles/utils.js +22 -48
  186. package/src/view/stylesmap.d.ts +675 -0
  187. package/src/view/stylesmap.js +249 -244
  188. package/src/view/text.d.ts +74 -0
  189. package/src/view/text.js +16 -46
  190. package/src/view/textproxy.d.ts +97 -0
  191. package/src/view/textproxy.js +10 -59
  192. package/src/view/treewalker.d.ts +195 -0
  193. package/src/view/treewalker.js +43 -106
  194. package/src/view/typecheckable.d.ts +401 -0
  195. package/src/view/uielement.d.ts +96 -0
  196. package/src/view/uielement.js +28 -62
  197. package/src/view/upcastwriter.d.ts +328 -0
  198. package/src/view/upcastwriter.js +124 -134
  199. package/src/view/view.d.ts +327 -0
  200. package/src/view/view.js +79 -150
@@ -0,0 +1,51 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ import type Model from '../model/model';
6
+ import type Operation from '../model/operation/operation';
7
+ /**
8
+ * Operation replayer is a development tool created for easy replaying of operations on the document from stringified operations.
9
+ */
10
+ export default class OperationReplayer {
11
+ private _model;
12
+ private _logSeparator;
13
+ private _operationsToReplay;
14
+ /**
15
+ * @param model Data model.
16
+ * @param logSeparator Separator between operations.
17
+ * @param stringifiedOperations Operations to replay.
18
+ */
19
+ constructor(model: Model, logSeparator: string, stringifiedOperations: string);
20
+ /**
21
+ * Parses the given string containing stringified operations and sets parsed operations as operations to replay.
22
+ *
23
+ * @param stringifiedOperations Stringified operations to replay.
24
+ */
25
+ setStringifiedOperations(stringifiedOperations: string): void;
26
+ /**
27
+ * Returns operations to replay.
28
+ */
29
+ getOperationsToReplay(): Array<Operation>;
30
+ /**
31
+ * Applies all operations with a delay between actions.
32
+ *
33
+ * @param timeInterval Time between applying operations.
34
+ */
35
+ play(timeInterval?: number): Promise<void>;
36
+ /**
37
+ * Applies `numberOfOperations` operations, beginning after the last applied operation (or first, if no operations were applied).
38
+ *
39
+ * @param numberOfOperations The number of operations to apply.
40
+ */
41
+ applyOperations(numberOfOperations: number): Promise<void> | undefined;
42
+ /**
43
+ * Applies all operations to replay at once.
44
+ */
45
+ applyAllOperations(): Promise<void>;
46
+ /**
47
+ * Applies the next operation to replay. Returns a promise with the `isFinished` parameter that is `true` if the last
48
+ * operation in the replayer has been applied, `false` otherwise.
49
+ */
50
+ applyNextOperation(): Promise<boolean>;
51
+ }
@@ -12,9 +12,9 @@ import OperationFactory from '../model/operation/operationfactory';
12
12
  */
13
13
  export default class OperationReplayer {
14
14
  /**
15
- * @param {module:engine/model/model~Model} model Data model.
16
- * @param {String} logSeparator Separator between operations.
17
- * @param {String} stringifiedOperations Operations to replay.
15
+ * @param model Data model.
16
+ * @param logSeparator Separator between operations.
17
+ * @param stringifiedOperations Operations to replay.
18
18
  */
19
19
  constructor(model, logSeparator, stringifiedOperations) {
20
20
  this._model = model;
@@ -24,7 +24,7 @@ export default class OperationReplayer {
24
24
  /**
25
25
  * Parses the given string containing stringified operations and sets parsed operations as operations to replay.
26
26
  *
27
- * @param {String} stringifiedOperations Stringified operations to replay.
27
+ * @param stringifiedOperations Stringified operations to replay.
28
28
  */
29
29
  setStringifiedOperations(stringifiedOperations) {
30
30
  if (stringifiedOperations === '') {
@@ -37,8 +37,6 @@ export default class OperationReplayer {
37
37
  }
38
38
  /**
39
39
  * Returns operations to replay.
40
- *
41
- * @returns {Array.<module:engine/model/operation/operation~Operation>}
42
40
  */
43
41
  getOperationsToReplay() {
44
42
  return this._operationsToReplay;
@@ -46,8 +44,7 @@ export default class OperationReplayer {
46
44
  /**
47
45
  * Applies all operations with a delay between actions.
48
46
  *
49
- * @param {Number} timeInterval Time between applying operations.
50
- * @returns {Promise}
47
+ * @param timeInterval Time between applying operations.
51
48
  */
52
49
  play(timeInterval = 1000) {
53
50
  // eslint-disable-next-line @typescript-eslint/no-this-alias, consistent-this
@@ -69,8 +66,7 @@ export default class OperationReplayer {
69
66
  /**
70
67
  * Applies `numberOfOperations` operations, beginning after the last applied operation (or first, if no operations were applied).
71
68
  *
72
- * @param {Number} numberOfOperations The number of operations to apply.
73
- * @returns {Promise}
69
+ * @param numberOfOperations The number of operations to apply.
74
70
  */
75
71
  applyOperations(numberOfOperations) {
76
72
  if (numberOfOperations <= 0) {
@@ -85,8 +81,6 @@ export default class OperationReplayer {
85
81
  }
86
82
  /**
87
83
  * Applies all operations to replay at once.
88
- *
89
- * @returns {Promise}
90
84
  */
91
85
  applyAllOperations() {
92
86
  return this.applyNextOperation()
@@ -99,8 +93,6 @@ export default class OperationReplayer {
99
93
  /**
100
94
  * Applies the next operation to replay. Returns a promise with the `isFinished` parameter that is `true` if the last
101
95
  * operation in the replayer has been applied, `false` otherwise.
102
- *
103
- * @returns {Promise.<Boolean>}
104
96
  */
105
97
  applyNextOperation() {
106
98
  const model = this._model;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * Note: This package is used only internally for debugging purposes and should not be used
7
+ * in other environments. It uses a few special methods not existing in the default
8
+ * building process. That is also why there are no tests for this file.
9
+ *
10
+ * @module engine/dev-utils/utils
11
+ */
12
+ /**
13
+ * Helper function, converts a map to the 'key1="value1" key2="value1"' format.
14
+ *
15
+ * @param map Map to convert.
16
+ * @returns Converted map.
17
+ */
18
+ export declare function convertMapToTags(map: Iterable<[string, unknown]>): string;
19
+ /**
20
+ * Helper function, converts a map to the `{"key1":"value1","key2":"value2"}` format.
21
+ *
22
+ * @param map Map to convert.
23
+ * @returns Converted map.
24
+ */
25
+ export declare function convertMapToStringifiedObject(map: Iterable<[string, unknown]>): string;
26
+ /**
27
+ * Helper function that stores the `document` state for a given `version`.
28
+ */
29
+ export declare function dumpTrees(document: any, version: any): void;
30
+ /**
31
+ * Helper function that initializes document dumping.
32
+ */
33
+ export declare function initDocumentDumping(document: any): void;
34
+ /**
35
+ * Helper function that logs document for the given version.
36
+ */
37
+ export declare function logDocument(document: any, version: any): void;
@@ -13,9 +13,8 @@
13
13
  /**
14
14
  * Helper function, converts a map to the 'key1="value1" key2="value1"' format.
15
15
  *
16
- * @private
17
- * @param {Map} map Map to convert.
18
- * @returns {String} Converted map.
16
+ * @param map Map to convert.
17
+ * @returns Converted map.
19
18
  */
20
19
  export function convertMapToTags(map) {
21
20
  let string = '';
@@ -25,11 +24,10 @@ export function convertMapToTags(map) {
25
24
  return string;
26
25
  }
27
26
  /**
28
- * Helper function, converts a map to the '{"key1":"value1","key2":"value2"}' format.
27
+ * Helper function, converts a map to the `{"key1":"value1","key2":"value2"}` format.
29
28
  *
30
- * @private
31
- * @param {Map} map Map to convert.
32
- * @returns {String} Converted map.
29
+ * @param map Map to convert.
30
+ * @returns Converted map.
33
31
  */
34
32
  export function convertMapToStringifiedObject(map) {
35
33
  const obj = {};
@@ -42,10 +40,6 @@ const treeDump = Symbol('_treeDump');
42
40
  const maxTreeDumpLength = 20;
43
41
  /**
44
42
  * Helper function that stores the `document` state for a given `version`.
45
- *
46
- * @private
47
- * @param {*} document
48
- * @param {*} version
49
43
  */
50
44
  export function dumpTrees(document, version) {
51
45
  console.log(document, version);
@@ -61,19 +55,12 @@ export function dumpTrees(document, version) {
61
55
  }
62
56
  /**
63
57
  * Helper function that initializes document dumping.
64
- *
65
- * @private
66
- * @param {*} document
67
58
  */
68
59
  export function initDocumentDumping(document) {
69
60
  document[treeDump] = [];
70
61
  }
71
62
  /**
72
63
  * Helper function that logs document for the given version.
73
- *
74
- * @private
75
- * @param {*} document
76
- * @param {*} version
77
64
  */
78
65
  export function logDocument(document, version) {
79
66
  console.log('--------------------');
@@ -0,0 +1,319 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module engine/dev-utils/view
7
+ */
8
+ /**
9
+ * Collection of methods for manipulating the {@link module:engine/view/view view} for testing purposes.
10
+ */
11
+ import View from '../view/view';
12
+ import ViewDocumentFragment from '../view/documentfragment';
13
+ import ViewElement from '../view/element';
14
+ import DocumentSelection from '../view/documentselection';
15
+ import Range from '../view/range';
16
+ import Position from '../view/position';
17
+ import type ViewNode from '../view/node';
18
+ import type DomConverter from '../view/domconverter';
19
+ /**
20
+ * Writes the content of the {@link module:engine/view/document~Document document} to an HTML-like string.
21
+ *
22
+ * @param options.withoutSelection Whether to write the selection. When set to `true`, the selection will
23
+ * not be included in the returned string.
24
+ * @param options.rootName The name of the root from which the data should be stringified. If not provided,
25
+ * the default `main` name will be used.
26
+ * @param options.showType When set to `true`, the type of elements will be printed (`<container:p>`
27
+ * instead of `<p>`, `<attribute:b>` instead of `<b>` and `<empty:img>` instead of `<img>`).
28
+ * @param options.showPriority When set to `true`, the attribute element's priority will be printed
29
+ * (`<span view-priority="12">`, `<b view-priority="10">`).
30
+ * @param options.showAttributeElementId When set to `true`, the attribute element's ID will be printed
31
+ * (`<span id="marker:foo">`).
32
+ * @param options.renderUIElements When set to `true`, the inner content of each
33
+ * {@link module:engine/view/uielement~UIElement} will be printed.
34
+ * @param options.renderRawElements When set to `true`, the inner content of each
35
+ * {@link module:engine/view/rawelement~RawElement} will be printed.
36
+ * @param options.domConverter When set to an actual {@link module:engine/view/domconverter~DomConverter DomConverter}
37
+ * instance, it lets the conversion go through exactly the same flow the editing view is going through,
38
+ * i.e. with view data filtering. Otherwise the simple stub is used.
39
+ * @returns The stringified data.
40
+ */
41
+ export declare function getData(view: View, options?: {
42
+ withoutSelection?: boolean;
43
+ rootName?: string;
44
+ showType?: boolean;
45
+ showPriority?: boolean;
46
+ renderUIElements?: boolean;
47
+ renderRawElements?: boolean;
48
+ domConverter?: DomConverter;
49
+ }): string;
50
+ export declare namespace getData {
51
+ var _stringify: typeof stringify;
52
+ }
53
+ /**
54
+ * Sets the content of a view {@link module:engine/view/document~Document document} provided as an HTML-like string.
55
+ *
56
+ * @param data An HTML-like string to write into the document.
57
+ * @param options.rootName The root name where parsed data will be stored. If not provided,
58
+ * the default `main` name will be used.
59
+ */
60
+ export declare function setData(view: View, data: string, options?: {
61
+ rootName?: string;
62
+ }): void;
63
+ export declare namespace setData {
64
+ var _parse: typeof parse;
65
+ }
66
+ /**
67
+ * Converts view elements to HTML-like string representation.
68
+ *
69
+ * A root element can be provided as {@link module:engine/view/text~Text text}:
70
+ *
71
+ * ```ts
72
+ * const text = downcastWriter.createText( 'foobar' );
73
+ * stringify( text ); // 'foobar'
74
+ * ```
75
+ *
76
+ * or as an {@link module:engine/view/element~Element element}:
77
+ *
78
+ * ```ts
79
+ * const element = downcastWriter.createElement( 'p', null, downcastWriter.createText( 'foobar' ) );
80
+ * stringify( element ); // '<p>foobar</p>'
81
+ * ```
82
+ *
83
+ * or as a {@link module:engine/view/documentfragment~DocumentFragment document fragment}:
84
+ *
85
+ * ```ts
86
+ * const text = downcastWriter.createText( 'foobar' );
87
+ * const b = downcastWriter.createElement( 'b', { name: 'test' }, text );
88
+ * const p = downcastWriter.createElement( 'p', { style: 'color:red;' } );
89
+ * const fragment = downcastWriter.createDocumentFragment( [ p, b ] );
90
+ *
91
+ * stringify( fragment ); // '<p style="color:red;"></p><b name="test">foobar</b>'
92
+ * ```
93
+ *
94
+ * Additionally, a {@link module:engine/view/documentselection~DocumentSelection selection} instance can be provided.
95
+ * Ranges from the selection will then be included in the output data.
96
+ * If a range position is placed inside the element node, it will be represented with `[` and `]`:
97
+ *
98
+ * ```ts
99
+ * const text = downcastWriter.createText( 'foobar' );
100
+ * const b = downcastWriter.createElement( 'b', null, text );
101
+ * const p = downcastWriter.createElement( 'p', null, b );
102
+ * const selection = downcastWriter.createSelection(
103
+ * downcastWriter.createRangeIn( p )
104
+ * );
105
+ *
106
+ * stringify( p, selection ); // '<p>[<b>foobar</b>]</p>'
107
+ * ```
108
+ *
109
+ * If a range is placed inside the text node, it will be represented with `{` and `}`:
110
+ *
111
+ * ```ts
112
+ * const text = downcastWriter.createText( 'foobar' );
113
+ * const b = downcastWriter.createElement( 'b', null, text );
114
+ * const p = downcastWriter.createElement( 'p', null, b );
115
+ * const selection = downcastWriter.createSelection(
116
+ * downcastWriter.createRange( downcastWriter.createPositionAt( text, 1 ), downcastWriter.createPositionAt( text, 5 ) )
117
+ * );
118
+ *
119
+ * stringify( p, selection ); // '<p><b>f{ooba}r</b></p>'
120
+ * ```
121
+ *
122
+ * ** Note: **
123
+ * It is possible to unify selection markers to `[` and `]` for both (inside and outside text)
124
+ * by setting the `sameSelectionCharacters=true` option. It is mainly used when the view stringify option is used by
125
+ * model utilities.
126
+ *
127
+ * Multiple ranges are supported:
128
+ *
129
+ * ```ts
130
+ * const text = downcastWriter.createText( 'foobar' );
131
+ * const selection = downcastWriter.createSelection( [
132
+ * downcastWriter.createRange( downcastWriter.createPositionAt( text, 0 ), downcastWriter.createPositionAt( text, 1 ) ),
133
+ * downcastWriter.createRange( downcastWriter.createPositionAt( text, 3 ), downcastWriter.createPositionAt( text, 5 ) )
134
+ * ] );
135
+ *
136
+ * stringify( text, selection ); // '{f}oo{ba}r'
137
+ * ```
138
+ *
139
+ * A {@link module:engine/view/range~Range range} or {@link module:engine/view/position~Position position} instance can be provided
140
+ * instead of the {@link module:engine/view/documentselection~DocumentSelection selection} instance. If a range instance
141
+ * is provided, it will be converted to a selection containing this range. If a position instance is provided, it will
142
+ * be converted to a selection containing one range collapsed at this position.
143
+ *
144
+ * ```ts
145
+ * const text = downcastWriter.createText( 'foobar' );
146
+ * const range = downcastWriter.createRange( downcastWriter.createPositionAt( text, 0 ), downcastWriter.createPositionAt( text, 1 ) );
147
+ * const position = downcastWriter.createPositionAt( text, 3 );
148
+ *
149
+ * stringify( text, range ); // '{f}oobar'
150
+ * stringify( text, position ); // 'foo{}bar'
151
+ * ```
152
+ *
153
+ * An additional `options` object can be provided.
154
+ * If `options.showType` is set to `true`, element's types will be
155
+ * presented for {@link module:engine/view/attributeelement~AttributeElement attribute elements},
156
+ * {@link module:engine/view/containerelement~ContainerElement container elements}
157
+ * {@link module:engine/view/emptyelement~EmptyElement empty elements}
158
+ * and {@link module:engine/view/uielement~UIElement UI elements}:
159
+ *
160
+ * ```ts
161
+ * const attribute = downcastWriter.createAttributeElement( 'b' );
162
+ * const container = downcastWriter.createContainerElement( 'p' );
163
+ * const empty = downcastWriter.createEmptyElement( 'img' );
164
+ * const ui = downcastWriter.createUIElement( 'span' );
165
+ * getData( attribute, null, { showType: true } ); // '<attribute:b></attribute:b>'
166
+ * getData( container, null, { showType: true } ); // '<container:p></container:p>'
167
+ * getData( empty, null, { showType: true } ); // '<empty:img></empty:img>'
168
+ * getData( ui, null, { showType: true } ); // '<ui:span></ui:span>'
169
+ * ```
170
+ *
171
+ * If `options.showPriority` is set to `true`, a priority will be displayed for all
172
+ * {@link module:engine/view/attributeelement~AttributeElement attribute elements}.
173
+ *
174
+ * ```ts
175
+ * const attribute = downcastWriter.createAttributeElement( 'b' );
176
+ * attribute._priority = 20;
177
+ * getData( attribute, null, { showPriority: true } ); // <b view-priority="20"></b>
178
+ * ```
179
+ *
180
+ * If `options.showAttributeElementId` is set to `true`, the attribute element's id will be displayed for all
181
+ * {@link module:engine/view/attributeelement~AttributeElement attribute elements} that have it set.
182
+ *
183
+ * ```ts
184
+ * const attribute = downcastWriter.createAttributeElement( 'span' );
185
+ * attribute._id = 'marker:foo';
186
+ * getData( attribute, null, { showAttributeElementId: true } ); // <span view-id="marker:foo"></span>
187
+ * ```
188
+ *
189
+ * @param node The node to stringify.
190
+ * @param selectionOrPositionOrRange A selection instance whose ranges will be included in the returned string data.
191
+ * If a range instance is provided, it will be converted to a selection containing this range. If a position instance
192
+ * is provided, it will be converted to a selection containing one range collapsed at this position.
193
+ * @param options An object with additional options.
194
+ * @param options.showType When set to `true`, the type of elements will be printed (`<container:p>`
195
+ * instead of `<p>`, `<attribute:b>` instead of `<b>` and `<empty:img>` instead of `<img>`).
196
+ * @param options.showPriority When set to `true`, the attribute element's priority will be printed
197
+ * (`<span view-priority="12">`, `<b view-priority="10">`).
198
+ * @param options.showAttributeElementId When set to `true`, attribute element's id will be printed
199
+ * (`<span id="marker:foo">`).
200
+ * @param options.ignoreRoot When set to `true`, the root's element opening and closing will not be printed.
201
+ * Mainly used by the `getData` function to ignore the {@link module:engine/view/document~Document document's} root element.
202
+ * @param options.sameSelectionCharacters When set to `true`, the selection inside the text will be marked as
203
+ * `{` and `}` and the selection outside the text as `[` and `]`. When set to `false`, both will be marked as `[` and `]` only.
204
+ * @param options.renderUIElements When set to `true`, the inner content of each
205
+ * {@link module:engine/view/uielement~UIElement} will be printed.
206
+ * @param options.renderRawElements When set to `true`, the inner content of each
207
+ * {@link module:engine/view/rawelement~RawElement} will be printed.
208
+ * @param options.domConverter When set to an actual {@link module:engine/view/domconverter~DomConverter DomConverter}
209
+ * instance, it lets the conversion go through exactly the same flow the editing view is going through,
210
+ * i.e. with view data filtering. Otherwise the simple stub is used.
211
+ * @returns An HTML-like string representing the view.
212
+ */
213
+ export declare function stringify(node: ViewNode | ViewDocumentFragment, selectionOrPositionOrRange?: DocumentSelection | Position | Range | null, options?: {
214
+ showType?: boolean;
215
+ showPriority?: boolean;
216
+ showAttributeElementId?: boolean;
217
+ ignoreRoot?: boolean;
218
+ sameSelectionCharacters?: boolean;
219
+ renderUIElements?: boolean;
220
+ renderRawElements?: boolean;
221
+ domConverter?: DomConverter;
222
+ }): string;
223
+ /**
224
+ * Parses an HTML-like string and returns a view tree.
225
+ * A simple string will be converted to a {@link module:engine/view/text~Text text} node:
226
+ *
227
+ * ```ts
228
+ * parse( 'foobar' ); // Returns an instance of text.
229
+ * ```
230
+ *
231
+ * {@link module:engine/view/element~Element Elements} will be parsed with attributes as children:
232
+ *
233
+ * ```ts
234
+ * parse( '<b name="baz">foobar</b>' ); // Returns an instance of element with the `baz` attribute and a text child node.
235
+ * ```
236
+ *
237
+ * Multiple nodes provided on root level will be converted to a
238
+ * {@link module:engine/view/documentfragment~DocumentFragment document fragment}:
239
+ *
240
+ * ```ts
241
+ * parse( '<b>foo</b><i>bar</i>' ); // Returns a document fragment with two child elements.
242
+ * ```
243
+ *
244
+ * The method can parse multiple {@link module:engine/view/range~Range ranges} provided in string data and return a
245
+ * {@link module:engine/view/documentselection~DocumentSelection selection} instance containing these ranges. Ranges placed inside
246
+ * {@link module:engine/view/text~Text text} nodes should be marked using `{` and `}` brackets:
247
+ *
248
+ * ```ts
249
+ * const { text, selection } = parse( 'f{ooba}r' );
250
+ * ```
251
+ *
252
+ * Ranges placed outside text nodes should be marked using `[` and `]` brackets:
253
+ *
254
+ * ```ts
255
+ * const { root, selection } = parse( '<p>[<b>foobar</b>]</p>' );
256
+ * ```
257
+ *
258
+ * ** Note: **
259
+ * It is possible to unify selection markers to `[` and `]` for both (inside and outside text)
260
+ * by setting `sameSelectionCharacters=true` option. It is mainly used when the view parse option is used by model utilities.
261
+ *
262
+ * Sometimes there is a need for defining the order of ranges inside the created selection. This can be achieved by providing
263
+ * the range order array as an additional parameter:
264
+ *
265
+ * ```ts
266
+ * const { root, selection } = parse( '{fo}ob{ar}{ba}z', { order: [ 2, 3, 1 ] } );
267
+ * ```
268
+ *
269
+ * In the example above, the first range (`{fo}`) will be added to the selection as the second one, the second range (`{ar}`) will be
270
+ * added as the third and the third range (`{ba}`) will be added as the first one.
271
+ *
272
+ * If the selection's last range should be added as a backward one
273
+ * (so the {@link module:engine/view/documentselection~DocumentSelection#anchor selection anchor} is represented
274
+ * by the `end` position and {@link module:engine/view/documentselection~DocumentSelection#focus selection focus} is
275
+ * represented by the `start` position), use the `lastRangeBackward` flag:
276
+ *
277
+ * ```ts
278
+ * const { root, selection } = parse( `{foo}bar{baz}`, { lastRangeBackward: true } );
279
+ * ```
280
+ *
281
+ * Some more examples and edge cases:
282
+ *
283
+ * ```ts
284
+ * // Returns an empty document fragment.
285
+ * parse( '' );
286
+ *
287
+ * // Returns an empty document fragment and a collapsed selection.
288
+ * const { root, selection } = parse( '[]' );
289
+ *
290
+ * // Returns an element and a selection that is placed inside the document fragment containing that element.
291
+ * const { root, selection } = parse( '[<a></a>]' );
292
+ * ```
293
+ *
294
+ * @param data An HTML-like string to be parsed.
295
+ * @param options.order An array with the order of parsed ranges added to the returned
296
+ * {@link module:engine/view/documentselection~DocumentSelection Selection} instance. Each element should represent the
297
+ * desired position of each range in the selection instance. For example: `[2, 3, 1]` means that the first range will be
298
+ * placed as the second, the second as the third and the third as the first.
299
+ * @param options.lastRangeBackward If set to `true`, the last range will be added as backward to the returned
300
+ * {@link module:engine/view/documentselection~DocumentSelection selection} instance.
301
+ * @param options.rootElement The default root to use when parsing elements.
302
+ * When set to `null`, the root element will be created automatically. If set to
303
+ * {@link module:engine/view/element~Element Element} or {@link module:engine/view/documentfragment~DocumentFragment DocumentFragment},
304
+ * this node will be used as the root for all parsed nodes.
305
+ * @param options.sameSelectionCharacters When set to `false`, the selection inside the text should be marked using
306
+ * `{` and `}` and the selection outside the ext using `[` and `]`. When set to `true`, both should be marked with `[` and `]` only.
307
+ * @param options.stylesProcessor Styles processor.
308
+ * @returns Returns the parsed view node or an object with two fields: `view` and `selection` when selection ranges were included in the
309
+ * data to parse.
310
+ */
311
+ export declare function parse(data: string, options?: {
312
+ order?: Array<number>;
313
+ lastRangeBackward?: boolean;
314
+ rootElement?: ViewElement | ViewDocumentFragment;
315
+ sameSelectionCharacters?: boolean;
316
+ }): ViewNode | ViewDocumentFragment | {
317
+ view: ViewNode | ViewDocumentFragment;
318
+ selection: DocumentSelection;
319
+ };