@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,76 @@
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 DomConverter from '../view/domconverter';
6
+ import type DataProcessor from './dataprocessor';
7
+ import type HtmlWriter from './htmlwriter';
8
+ import type ViewDocument from '../view/document';
9
+ import type ViewDocumentFragment from '../view/documentfragment';
10
+ import type { MatcherPattern } from '../view/matcher';
11
+ /**
12
+ * The HTML data processor class.
13
+ * This data processor implementation uses HTML as input and output data.
14
+ */
15
+ export default class HtmlDataProcessor implements DataProcessor {
16
+ /**
17
+ * A DOM parser instance used to parse an HTML string to an HTML document.
18
+ */
19
+ domParser: DOMParser;
20
+ /**
21
+ * A DOM converter used to convert DOM elements to view elements.
22
+ */
23
+ domConverter: DomConverter;
24
+ /**
25
+ * A basic HTML writer instance used to convert DOM elements to an HTML string.
26
+ */
27
+ htmlWriter: HtmlWriter;
28
+ skipComments: boolean;
29
+ /**
30
+ * Creates a new instance of the HTML data processor class.
31
+ *
32
+ * @param document The view document instance.
33
+ */
34
+ constructor(document: ViewDocument);
35
+ /**
36
+ * Converts a provided {@link module:engine/view/documentfragment~DocumentFragment document fragment}
37
+ * to data format — in this case to an HTML string.
38
+ *
39
+ * @returns HTML string.
40
+ */
41
+ toData(viewFragment: ViewDocumentFragment): string;
42
+ /**
43
+ * Converts the provided HTML string to a view tree.
44
+ *
45
+ * @param data An HTML string.
46
+ * @returns A converted view element.
47
+ */
48
+ toView(data: string): ViewDocumentFragment;
49
+ /**
50
+ * Registers a {@link module:engine/view/matcher~MatcherPattern} for view elements whose content should be treated as raw data
51
+ * and not processed during the conversion from the DOM to the view elements.
52
+ *
53
+ * The raw data can be later accessed by a
54
+ * {@link module:engine/view/element~Element#getCustomProperty custom property of a view element} called `"$rawContent"`.
55
+ *
56
+ * @param pattern Pattern matching all view elements whose content should be treated as raw data.
57
+ */
58
+ registerRawContentMatcher(pattern: MatcherPattern): void;
59
+ /**
60
+ * If the processor is set to use marked fillers, it will insert `&nbsp;` fillers wrapped in `<span>` elements
61
+ * (`<span data-cke-filler="true">&nbsp;</span>`) instead of regular `&nbsp;` characters.
62
+ *
63
+ * This mode allows for a more precise handling of the block fillers (so they do not leak into the editor content) but
64
+ * bloats the editor data with additional markup.
65
+ *
66
+ * This mode may be required by some features and will be turned on by them automatically.
67
+ *
68
+ * @param type Whether to use the default or the marked `&nbsp;` block fillers.
69
+ */
70
+ useFillerType(type: 'default' | 'marked'): void;
71
+ /**
72
+ * Converts an HTML string to its DOM representation. Returns a document fragment containing nodes parsed from
73
+ * the provided data.
74
+ */
75
+ protected _toDom(data: string): DocumentFragment;
76
+ }
@@ -11,42 +11,24 @@ import DomConverter from '../view/domconverter';
11
11
  /**
12
12
  * The HTML data processor class.
13
13
  * This data processor implementation uses HTML as input and output data.
14
- *
15
- * @implements module:engine/dataprocessor/dataprocessor~DataProcessor
16
14
  */
17
15
  export default class HtmlDataProcessor {
18
16
  /**
19
17
  * Creates a new instance of the HTML data processor class.
20
18
  *
21
- * @param {module:engine/view/document~Document} document The view document instance.
19
+ * @param document The view document instance.
22
20
  */
23
21
  constructor(document) {
24
22
  this.skipComments = true;
25
- /**
26
- * A DOM parser instance used to parse an HTML string to an HTML document.
27
- *
28
- * @member {DOMParser}
29
- */
30
23
  this.domParser = new DOMParser();
31
- /**
32
- * A DOM converter used to convert DOM elements to view elements.
33
- *
34
- * @member {module:engine/view/domconverter~DomConverter}
35
- */
36
24
  this.domConverter = new DomConverter(document, { renderingMode: 'data' });
37
- /**
38
- * A basic HTML writer instance used to convert DOM elements to an HTML string.
39
- *
40
- * @member {module:engine/dataprocessor/htmlwriter~HtmlWriter}
41
- */
42
25
  this.htmlWriter = new BasicHtmlWriter();
43
26
  }
44
27
  /**
45
28
  * Converts a provided {@link module:engine/view/documentfragment~DocumentFragment document fragment}
46
29
  * to data format &mdash; in this case to an HTML string.
47
30
  *
48
- * @param {module:engine/view/documentfragment~DocumentFragment} viewFragment
49
- * @returns {String} HTML string.
31
+ * @returns HTML string.
50
32
  */
51
33
  toData(viewFragment) {
52
34
  // Convert view DocumentFragment to DOM DocumentFragment.
@@ -57,8 +39,8 @@ export default class HtmlDataProcessor {
57
39
  /**
58
40
  * Converts the provided HTML string to a view tree.
59
41
  *
60
- * @param {String} data An HTML string.
61
- * @returns {module:engine/view/node~Node|module:engine/view/documentfragment~DocumentFragment|null} A converted view element.
42
+ * @param data An HTML string.
43
+ * @returns A converted view element.
62
44
  */
63
45
  toView(data) {
64
46
  // Convert input HTML data to DOM DocumentFragment.
@@ -73,8 +55,7 @@ export default class HtmlDataProcessor {
73
55
  * The raw data can be later accessed by a
74
56
  * {@link module:engine/view/element~Element#getCustomProperty custom property of a view element} called `"$rawContent"`.
75
57
  *
76
- * @param {module:engine/view/matcher~MatcherPattern} pattern Pattern matching all view elements whose content should
77
- * be treated as raw data.
58
+ * @param pattern Pattern matching all view elements whose content should be treated as raw data.
78
59
  */
79
60
  registerRawContentMatcher(pattern) {
80
61
  this.domConverter.registerRawContentMatcher(pattern);
@@ -88,7 +69,7 @@ export default class HtmlDataProcessor {
88
69
  *
89
70
  * This mode may be required by some features and will be turned on by them automatically.
90
71
  *
91
- * @param {'default'|'marked'} type Whether to use the default or the marked `&nbsp;` block fillers.
72
+ * @param type Whether to use the default or the marked `&nbsp;` block fillers.
92
73
  */
93
74
  useFillerType(type) {
94
75
  this.domConverter.blockFillerMode = type == 'marked' ? 'markedNbsp' : 'nbsp';
@@ -96,9 +77,6 @@ export default class HtmlDataProcessor {
96
77
  /**
97
78
  * Converts an HTML string to its DOM representation. Returns a document fragment containing nodes parsed from
98
79
  * the provided data.
99
- *
100
- * @param {String} data
101
- * @returns {DocumentFragment}
102
80
  */
103
81
  _toDom(data) {
104
82
  // Wrap data with a <body> tag so leading non-layout nodes (like <script>, <style>, HTML comment)
@@ -0,0 +1,16 @@
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/dataprocessor/htmlwriter
7
+ */
8
+ /**
9
+ * The HTML writer interface.
10
+ */
11
+ export default interface HtmlWriter {
12
+ /**
13
+ * Returns an HTML string created from a document fragment.
14
+ */
15
+ getHtml(fragment: DocumentFragment): string;
16
+ }
@@ -0,0 +1,90 @@
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 DomConverter from '../view/domconverter';
6
+ import type DataProcessor from './dataprocessor';
7
+ import type HtmlWriter from './htmlwriter';
8
+ import type ViewDocument from '../view/document';
9
+ import type ViewDocumentFragment from '../view/documentfragment';
10
+ import type { MatcherPattern } from '../view/matcher';
11
+ /**
12
+ * The XML data processor class.
13
+ * This data processor implementation uses XML as input and output data.
14
+ * This class is needed because unlike HTML, XML allows to use any tag with any value.
15
+ * For example, `<link>Text</link>` is a valid XML but invalid HTML.
16
+ */
17
+ export default class XmlDataProcessor implements DataProcessor {
18
+ /**
19
+ * A list of namespaces allowed to use in the XML input.
20
+ *
21
+ * For example, registering namespaces [ 'attribute', 'container' ] allows to use `<attirbute:tagName></attribute:tagName>`
22
+ * and `<container:tagName></container:tagName>` input. It is mainly for debugging.
23
+ */
24
+ namespaces: Array<string>;
25
+ /**
26
+ * DOM parser instance used to parse an XML string to an XML document.
27
+ */
28
+ domParser: DOMParser;
29
+ /**
30
+ * DOM converter used to convert DOM elements to view elements.
31
+ */
32
+ domConverter: DomConverter;
33
+ /**
34
+ * A basic HTML writer instance used to convert DOM elements to an XML string.
35
+ * There is no need to use a dedicated XML writer because the basic HTML writer works well in this case.
36
+ */
37
+ htmlWriter: HtmlWriter;
38
+ skipComments: boolean;
39
+ /**
40
+ * Creates a new instance of the XML data processor class.
41
+ *
42
+ * @param document The view document instance.
43
+ * @param options Configuration options.
44
+ * @param options.namespaces A list of namespaces allowed to use in the XML input.
45
+ */
46
+ constructor(document: ViewDocument, options?: {
47
+ namespaces?: Array<string>;
48
+ });
49
+ /**
50
+ * Converts the provided {@link module:engine/view/documentfragment~DocumentFragment document fragment}
51
+ * to data format &mdash; in this case an XML string.
52
+ *
53
+ * @returns An XML string.
54
+ */
55
+ toData(viewFragment: ViewDocumentFragment): string;
56
+ /**
57
+ * Converts the provided XML string to a view tree.
58
+ *
59
+ * @param data An XML string.
60
+ * @returns A converted view element.
61
+ */
62
+ toView(data: string): ViewDocumentFragment;
63
+ /**
64
+ * Registers a {@link module:engine/view/matcher~MatcherPattern} for view elements whose content should be treated as raw data
65
+ * and not processed during the conversion from XML to view elements.
66
+ *
67
+ * The raw data can be later accessed by a
68
+ * {@link module:engine/view/element~Element#getCustomProperty custom property of a view element} called `"$rawContent"`.
69
+ *
70
+ * @param pattern Pattern matching all view elements whose content should be treated as raw data.
71
+ */
72
+ registerRawContentMatcher(pattern: MatcherPattern): void;
73
+ /**
74
+ * If the processor is set to use marked fillers, it will insert `&nbsp;` fillers wrapped in `<span>` elements
75
+ * (`<span data-cke-filler="true">&nbsp;</span>`) instead of regular `&nbsp;` characters.
76
+ *
77
+ * This mode allows for a more precise handling of block fillers (so they do not leak into editor content) but
78
+ * bloats the editor data with additional markup.
79
+ *
80
+ * This mode may be required by some features and will be turned on by them automatically.
81
+ *
82
+ * @param type Whether to use the default or the marked `&nbsp;` block fillers.
83
+ */
84
+ useFillerType(type: 'default' | 'marked'): void;
85
+ /**
86
+ * Converts an XML string to its DOM representation. Returns a document fragment containing nodes parsed from
87
+ * the provided data.
88
+ */
89
+ private _toDom;
90
+ }
@@ -13,54 +13,27 @@ import DomConverter from '../view/domconverter';
13
13
  * This data processor implementation uses XML as input and output data.
14
14
  * This class is needed because unlike HTML, XML allows to use any tag with any value.
15
15
  * For example, `<link>Text</link>` is a valid XML but invalid HTML.
16
- *
17
- * @implements module:engine/dataprocessor/dataprocessor~DataProcessor
18
16
  */
19
17
  export default class XmlDataProcessor {
20
18
  /**
21
19
  * Creates a new instance of the XML data processor class.
22
20
  *
23
- * @param {module:engine/view/document~Document} document The view document instance.
24
- * @param {Object} options Configuration options.
25
- * @param {Array.<String>} [options.namespaces=[]] A list of namespaces allowed to use in the XML input.
21
+ * @param document The view document instance.
22
+ * @param options Configuration options.
23
+ * @param options.namespaces A list of namespaces allowed to use in the XML input.
26
24
  */
27
25
  constructor(document, options = {}) {
28
26
  this.skipComments = true;
29
- /**
30
- * A list of namespaces allowed to use in the XML input.
31
- *
32
- * For example, registering namespaces [ 'attribute', 'container' ] allows to use `<attirbute:tagName></attribute:tagName>`
33
- * and `<container:tagName></container:tagName>` input. It is mainly for debugging.
34
- *
35
- * @member {Array.<String>}
36
- */
37
27
  this.namespaces = options.namespaces || [];
38
- /**
39
- * DOM parser instance used to parse an XML string to an XML document.
40
- *
41
- * @member {DOMParser}
42
- */
43
28
  this.domParser = new DOMParser();
44
- /**
45
- * DOM converter used to convert DOM elements to view elements.
46
- *
47
- * @member {module:engine/view/domconverter~DomConverter}
48
- */
49
29
  this.domConverter = new DomConverter(document, { renderingMode: 'data' });
50
- /**
51
- * A basic HTML writer instance used to convert DOM elements to an XML string.
52
- * There is no need to use a dedicated XML writer because the basic HTML writer works well in this case.
53
- *
54
- * @member {module:engine/dataprocessor/htmlwriter~HtmlWriter}
55
- */
56
30
  this.htmlWriter = new BasicHtmlWriter();
57
31
  }
58
32
  /**
59
33
  * Converts the provided {@link module:engine/view/documentfragment~DocumentFragment document fragment}
60
34
  * to data format &mdash; in this case an XML string.
61
35
  *
62
- * @param {module:engine/view/documentfragment~DocumentFragment} viewFragment
63
- * @returns {String} An XML string.
36
+ * @returns An XML string.
64
37
  */
65
38
  toData(viewFragment) {
66
39
  // Convert view DocumentFragment to DOM DocumentFragment.
@@ -72,8 +45,8 @@ export default class XmlDataProcessor {
72
45
  /**
73
46
  * Converts the provided XML string to a view tree.
74
47
  *
75
- * @param {String} data An XML string.
76
- * @returns {module:engine/view/node~Node|module:engine/view/documentfragment~DocumentFragment|null} A converted view element.
48
+ * @param data An XML string.
49
+ * @returns A converted view element.
77
50
  */
78
51
  toView(data) {
79
52
  // Convert input XML data to DOM DocumentFragment.
@@ -91,8 +64,7 @@ export default class XmlDataProcessor {
91
64
  * The raw data can be later accessed by a
92
65
  * {@link module:engine/view/element~Element#getCustomProperty custom property of a view element} called `"$rawContent"`.
93
66
  *
94
- * @param {module:engine/view/matcher~MatcherPattern} pattern Pattern matching all view elements whose content should
95
- * be treated as raw data.
67
+ * @param pattern Pattern matching all view elements whose content should be treated as raw data.
96
68
  */
97
69
  registerRawContentMatcher(pattern) {
98
70
  this.domConverter.registerRawContentMatcher(pattern);
@@ -106,7 +78,7 @@ export default class XmlDataProcessor {
106
78
  *
107
79
  * This mode may be required by some features and will be turned on by them automatically.
108
80
  *
109
- * @param {'default'|'marked'} type Whether to use the default or the marked `&nbsp;` block fillers.
81
+ * @param type Whether to use the default or the marked `&nbsp;` block fillers.
110
82
  */
111
83
  useFillerType(type) {
112
84
  this.domConverter.blockFillerMode = type == 'marked' ? 'markedNbsp' : 'nbsp';
@@ -114,10 +86,6 @@ export default class XmlDataProcessor {
114
86
  /**
115
87
  * Converts an XML string to its DOM representation. Returns a document fragment containing nodes parsed from
116
88
  * the provided data.
117
- *
118
- * @private
119
- * @param {String} data
120
- * @returns {DocumentFragment}
121
89
  */
122
90
  _toDom(data) {
123
91
  // Stringify namespaces.
@@ -0,0 +1,124 @@
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 Model from '../model/model';
6
+ import ModelRange from '../model/range';
7
+ import ModelPosition from '../model/position';
8
+ import ModelSelection from '../model/selection';
9
+ import ModelDocumentFragment from '../model/documentfragment';
10
+ import DocumentSelection from '../model/documentselection';
11
+ import type { BatchType } from '../model/batch';
12
+ import type MarkerCollection from '../model/markercollection';
13
+ import type { default as Schema, SchemaContextDefinition } from '../model/schema';
14
+ import type ModelNode from '../model/node';
15
+ /**
16
+ * Writes the content of a model {@link module:engine/model/document~Document document} to an HTML-like string.
17
+ *
18
+ * ```ts
19
+ * getData( editor.model ); // -> '<paragraph>Foo![]</paragraph>'
20
+ * ```
21
+ *
22
+ * **Note:** A {@link module:engine/model/text~Text text} node that contains attributes will be represented as:
23
+ *
24
+ * ```xml
25
+ * <$text attribute="value">Text data</$text>
26
+ * ```
27
+ *
28
+ * **Note:** Using this tool in production-grade code is not recommended. It was designed for development, prototyping,
29
+ * debugging and testing.
30
+ *
31
+ * @param options.withoutSelection Whether to write the selection. When set to `true`, the selection will
32
+ * not be included in the returned string.
33
+ * @param options.rootName The name of the root from which the data should be stringified. If not provided,
34
+ * the default `main` name will be used.
35
+ * @param options.convertMarkers Whether to include markers in the returned string.
36
+ * @returns The stringified data.
37
+ */
38
+ export declare function getData(model: Model, options?: {
39
+ withoutSelection?: boolean;
40
+ rootName?: string;
41
+ convertMarkers?: boolean;
42
+ }): string;
43
+ export declare namespace getData {
44
+ var _stringify: typeof stringify;
45
+ }
46
+ /**
47
+ * Sets the content of a model {@link module:engine/model/document~Document document} provided as an HTML-like string.
48
+ *
49
+ * ```ts
50
+ * setData( editor.model, '<paragraph>Foo![]</paragraph>' );
51
+ * ```
52
+ *
53
+ * **Note:** Remember to register elements in the {@link module:engine/model/model~Model#schema model's schema} before
54
+ * trying to use them.
55
+ *
56
+ * **Note:** To create a {@link module:engine/model/text~Text text} node that contains attributes use:
57
+ *
58
+ * ```xml
59
+ * <$text attribute="value">Text data</$text>
60
+ * ```
61
+ *
62
+ * **Note:** Using this tool in production-grade code is not recommended. It was designed for development, prototyping,
63
+ * debugging and testing.
64
+ *
65
+ * @param data HTML-like string to write into the document.
66
+ * @param options.rootName Root name where parsed data will be stored. If not provided, the default `main`
67
+ * name will be used.
68
+ * @param options.selectionAttributes A list of attributes which will be passed to the selection.
69
+ * @param options.lastRangeBackward If set to `true`, the last range will be added as backward.
70
+ * @param options.batchType Batch type used for inserting elements. See {@link module:engine/model/batch~Batch#constructor}.
71
+ * See {@link module:engine/model/batch~Batch#type}.
72
+ */
73
+ export declare function setData(model: Model, data: string, options?: {
74
+ rootName?: string;
75
+ selectionAttributes?: Record<string, unknown>;
76
+ lastRangeBackward?: boolean;
77
+ batchType?: BatchType;
78
+ }): void;
79
+ export declare namespace setData {
80
+ var _parse: typeof parse;
81
+ }
82
+ /**
83
+ * Converts model nodes to HTML-like string representation.
84
+ *
85
+ * **Note:** A {@link module:engine/model/text~Text text} node that contains attributes will be represented as:
86
+ *
87
+ * ```xml
88
+ * <$text attribute="value">Text data</$text>
89
+ * ```
90
+ *
91
+ * @param node A node to stringify.
92
+ * @param selectionOrPositionOrRange A selection instance whose ranges will be included in the returned string data.
93
+ * If a range instance is provided, it will be converted to a selection containing this range. If a position instance
94
+ * is provided, it will be converted to a selection containing one range collapsed at this position.
95
+ * @param markers Markers to include.
96
+ * @returns An HTML-like string representing the model.
97
+ */
98
+ export declare function stringify(node: ModelNode | ModelDocumentFragment, selectionOrPositionOrRange?: ModelSelection | DocumentSelection | ModelPosition | ModelRange | null, markers?: MarkerCollection | null): string;
99
+ /**
100
+ * Parses an HTML-like string and returns the model {@link module:engine/model/rootelement~RootElement rootElement}.
101
+ *
102
+ * **Note:** To create a {@link module:engine/model/text~Text text} node that contains attributes use:
103
+ *
104
+ * ```xml
105
+ * <$text attribute="value">Text data</$text>
106
+ * ```
107
+ *
108
+ * @param data HTML-like string to be parsed.
109
+ * @param schema A schema instance used by converters for element validation.
110
+ * @param options Additional configuration.
111
+ * @param options.selectionAttributes A list of attributes which will be passed to the selection.
112
+ * @param options.lastRangeBackward If set to `true`, the last range will be added as backward.
113
+ * @param options.context The conversion context. If not provided, the default `'$root'` will be used.
114
+ * @returns Returns the parsed model node or an object with two fields: `model` and `selection`,
115
+ * when selection ranges were included in the data to parse.
116
+ */
117
+ export declare function parse(data: string, schema: Schema, options?: {
118
+ selectionAttributes?: Record<string, unknown> | Iterable<[string, unknown]>;
119
+ lastRangeBackward?: boolean;
120
+ context?: SchemaContextDefinition;
121
+ }): ModelNode | ModelDocumentFragment | {
122
+ model: ModelNode | ModelDocumentFragment;
123
+ selection: ModelSelection;
124
+ };
@@ -29,23 +29,25 @@ import { isPlainObject } from 'lodash-es';
29
29
  /**
30
30
  * Writes the content of a model {@link module:engine/model/document~Document document} to an HTML-like string.
31
31
  *
32
- * getData( editor.model ); // -> '<paragraph>Foo![]</paragraph>'
32
+ * ```ts
33
+ * getData( editor.model ); // -> '<paragraph>Foo![]</paragraph>'
34
+ * ```
33
35
  *
34
36
  * **Note:** A {@link module:engine/model/text~Text text} node that contains attributes will be represented as:
35
37
  *
36
- * <$text attribute="value">Text data</$text>
38
+ * ```xml
39
+ * <$text attribute="value">Text data</$text>
40
+ * ```
37
41
  *
38
42
  * **Note:** Using this tool in production-grade code is not recommended. It was designed for development, prototyping,
39
43
  * debugging and testing.
40
44
  *
41
- * @param {module:engine/model/model~Model} model
42
- * @param {Object} [options]
43
- * @param {Boolean} [options.withoutSelection=false] Whether to write the selection. When set to `true`, the selection will
45
+ * @param options.withoutSelection Whether to write the selection. When set to `true`, the selection will
44
46
  * not be included in the returned string.
45
- * @param {String} [options.rootName='main'] The name of the root from which the data should be stringified. If not provided,
47
+ * @param options.rootName The name of the root from which the data should be stringified. If not provided,
46
48
  * the default `main` name will be used.
47
- * @param {Boolean} [options.convertMarkers=false] Whether to include markers in the returned string.
48
- * @returns {String} The stringified data.
49
+ * @param options.convertMarkers Whether to include markers in the returned string.
50
+ * @returns The stringified data.
49
51
  */
50
52
  export function getData(model, options = {}) {
51
53
  if (!(model instanceof Model)) {
@@ -60,26 +62,28 @@ getData._stringify = stringify;
60
62
  /**
61
63
  * Sets the content of a model {@link module:engine/model/document~Document document} provided as an HTML-like string.
62
64
  *
63
- * setData( editor.model, '<paragraph>Foo![]</paragraph>' );
65
+ * ```ts
66
+ * setData( editor.model, '<paragraph>Foo![]</paragraph>' );
67
+ * ```
64
68
  *
65
69
  * **Note:** Remember to register elements in the {@link module:engine/model/model~Model#schema model's schema} before
66
70
  * trying to use them.
67
71
  *
68
72
  * **Note:** To create a {@link module:engine/model/text~Text text} node that contains attributes use:
69
73
  *
70
- * <$text attribute="value">Text data</$text>
74
+ * ```xml
75
+ * <$text attribute="value">Text data</$text>
76
+ * ```
71
77
  *
72
78
  * **Note:** Using this tool in production-grade code is not recommended. It was designed for development, prototyping,
73
79
  * debugging and testing.
74
80
  *
75
- * @param {module:engine/model/model~Model} model
76
- * @param {String} data HTML-like string to write into the document.
77
- * @param {Object} options
78
- * @param {String} [options.rootName='main'] Root name where parsed data will be stored. If not provided, the default `main`
81
+ * @param data HTML-like string to write into the document.
82
+ * @param options.rootName Root name where parsed data will be stored. If not provided, the default `main`
79
83
  * name will be used.
80
- * @param {Array<Object>} [options.selectionAttributes] A list of attributes which will be passed to the selection.
81
- * @param {Boolean} [options.lastRangeBackward=false] If set to `true`, the last range will be added as backward.
82
- * @param {Object} [options.batchType] Batch type used for inserting elements. See {@link module:engine/model/batch~Batch#constructor}.
84
+ * @param options.selectionAttributes A list of attributes which will be passed to the selection.
85
+ * @param options.lastRangeBackward If set to `true`, the last range will be added as backward.
86
+ * @param options.batchType Batch type used for inserting elements. See {@link module:engine/model/batch~Batch#constructor}.
83
87
  * See {@link module:engine/model/batch~Batch#type}.
84
88
  */
85
89
  export function setData(model, data, options = {}) {
@@ -138,17 +142,16 @@ setData._parse = parse;
138
142
  *
139
143
  * **Note:** A {@link module:engine/model/text~Text text} node that contains attributes will be represented as:
140
144
  *
141
- * <$text attribute="value">Text data</$text>
145
+ * ```xml
146
+ * <$text attribute="value">Text data</$text>
147
+ * ```
142
148
  *
143
- * @param {module:engine/model/rootelement~RootElement|module:engine/model/element~Element|module:engine/model/text~Text|
144
- * module:engine/model/documentfragment~DocumentFragment} node A node to stringify.
145
- * @param {module:engine/model/selection~Selection|module:engine/model/position~Position|
146
- * module:engine/model/range~Range} [selectionOrPositionOrRange=null]
147
- * A selection instance whose ranges will be included in the returned string data. If a range instance is provided, it will be
148
- * converted to a selection containing this range. If a position instance is provided, it will be converted to a selection
149
- * containing one range collapsed at this position.
150
- * @param {Iterable.<module:engine/model/markercollection~Marker>|null} markers Markers to include.
151
- * @returns {String} An HTML-like string representing the model.
149
+ * @param node A node to stringify.
150
+ * @param selectionOrPositionOrRange A selection instance whose ranges will be included in the returned string data.
151
+ * If a range instance is provided, it will be converted to a selection containing this range. If a position instance
152
+ * is provided, it will be converted to a selection containing one range collapsed at this position.
153
+ * @param markers Markers to include.
154
+ * @returns An HTML-like string representing the model.
152
155
  */
153
156
  export function stringify(node, selectionOrPositionOrRange = null, markers = null) {
154
157
  const model = new Model();
@@ -243,18 +246,18 @@ export function stringify(node, selectionOrPositionOrRange = null, markers = nul
243
246
  *
244
247
  * **Note:** To create a {@link module:engine/model/text~Text text} node that contains attributes use:
245
248
  *
246
- * <$text attribute="value">Text data</$text>
249
+ * ```xml
250
+ * <$text attribute="value">Text data</$text>
251
+ * ```
247
252
  *
248
- * @param {String} data HTML-like string to be parsed.
249
- * @param {module:engine/model/schema~Schema} schema A schema instance used by converters for element validation.
250
- * @param {Object} [options={}] Additional configuration.
251
- * @param {Array<Object>} [options.selectionAttributes] A list of attributes which will be passed to the selection.
252
- * @param {Boolean} [options.lastRangeBackward=false] If set to `true`, the last range will be added as backward.
253
- * @param {module:engine/model/schema~SchemaContextDefinition} [options.context='$root'] The conversion context.
254
- * If not provided, the default `'$root'` will be used.
255
- * @returns {module:engine/model/element~Element|module:engine/model/text~Text|
256
- * module:engine/model/documentfragment~DocumentFragment|Object} Returns the parsed model node or
257
- * an object with two fields: `model` and `selection`, when selection ranges were included in the data to parse.
253
+ * @param data HTML-like string to be parsed.
254
+ * @param schema A schema instance used by converters for element validation.
255
+ * @param options Additional configuration.
256
+ * @param options.selectionAttributes A list of attributes which will be passed to the selection.
257
+ * @param options.lastRangeBackward If set to `true`, the last range will be added as backward.
258
+ * @param options.context The conversion context. If not provided, the default `'$root'` will be used.
259
+ * @returns Returns the parsed model node or an object with two fields: `model` and `selection`,
260
+ * when selection ranges were included in the data to parse.
258
261
  */
259
262
  export function parse(data, schema, options = {}) {
260
263
  const mapper = new Mapper();