@ckeditor/ckeditor5-engine 48.2.0 → 48.3.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/dist/controller/datacontroller.d.ts +329 -328
  2. package/dist/controller/editingcontroller.d.ts +95 -94
  3. package/dist/conversion/comparemarkers.d.ts +45 -45
  4. package/dist/conversion/conversion.d.ts +474 -474
  5. package/dist/conversion/conversionhelpers.d.ts +21 -21
  6. package/dist/conversion/downcastdispatcher.d.ts +539 -538
  7. package/dist/conversion/downcasthelpers.d.ts +1129 -1129
  8. package/dist/conversion/mapper.d.ts +692 -697
  9. package/dist/conversion/modelconsumable.d.ts +196 -196
  10. package/dist/conversion/upcastdispatcher.d.ts +483 -482
  11. package/dist/conversion/upcasthelpers.d.ts +491 -491
  12. package/dist/conversion/viewconsumable.d.ts +330 -330
  13. package/dist/dataprocessor/basichtmlwriter.d.ts +15 -15
  14. package/dist/dataprocessor/dataprocessor.d.ts +57 -57
  15. package/dist/dataprocessor/htmldataprocessor.d.ts +72 -72
  16. package/dist/dataprocessor/htmlwriter.d.ts +11 -11
  17. package/dist/dataprocessor/xmldataprocessor.d.ts +86 -86
  18. package/dist/dev-utils/model.d.ts +128 -123
  19. package/dist/dev-utils/operationreplayer.d.ts +49 -49
  20. package/dist/dev-utils/utils.d.ts +33 -33
  21. package/dist/dev-utils/view.d.ts +314 -309
  22. package/dist/engineconfig.d.ts +39 -39
  23. package/dist/index.css.map +1 -1
  24. package/dist/index.d.ts +150 -150
  25. package/dist/index.js +34026 -40107
  26. package/dist/index.js.map +1 -1
  27. package/dist/legacyerrors.d.ts +0 -4
  28. package/dist/model/batch.d.ts +86 -86
  29. package/dist/model/differ.d.ts +504 -504
  30. package/dist/model/document.d.ts +265 -268
  31. package/dist/model/documentfragment.d.ts +214 -214
  32. package/dist/model/documentselection.d.ts +406 -410
  33. package/dist/model/element.d.ts +182 -182
  34. package/dist/model/history.d.ts +109 -109
  35. package/dist/model/item.d.ts +9 -9
  36. package/dist/model/liveposition.d.ts +70 -69
  37. package/dist/model/liverange.d.ts +93 -92
  38. package/dist/model/markercollection.d.ts +317 -324
  39. package/dist/model/model.d.ts +889 -909
  40. package/dist/model/node.d.ts +254 -254
  41. package/dist/model/nodelist.d.ts +110 -110
  42. package/dist/model/operation/attributeoperation.d.ts +98 -98
  43. package/dist/model/operation/detachoperation.d.ts +57 -57
  44. package/dist/model/operation/insertoperation.d.ts +85 -85
  45. package/dist/model/operation/markeroperation.d.ts +87 -87
  46. package/dist/model/operation/mergeoperation.d.ts +95 -95
  47. package/dist/model/operation/moveoperation.d.ts +97 -97
  48. package/dist/model/operation/nooperation.d.ts +33 -33
  49. package/dist/model/operation/operation.d.ts +94 -94
  50. package/dist/model/operation/operationfactory.d.ts +14 -14
  51. package/dist/model/operation/renameoperation.d.ts +78 -78
  52. package/dist/model/operation/rootattributeoperation.d.ts +93 -93
  53. package/dist/model/operation/rootoperation.d.ts +71 -71
  54. package/dist/model/operation/splitoperation.d.ts +104 -104
  55. package/dist/model/operation/transform.d.ts +91 -91
  56. package/dist/model/operation/utils.d.ts +58 -58
  57. package/dist/model/position.d.ts +535 -535
  58. package/dist/model/range.d.ts +458 -453
  59. package/dist/model/rootelement.d.ts +55 -55
  60. package/dist/model/schema.d.ts +1325 -1327
  61. package/dist/model/selection.d.ts +452 -471
  62. package/dist/model/text.d.ts +62 -62
  63. package/dist/model/textproxy.d.ts +140 -140
  64. package/dist/model/treewalker.d.ts +190 -190
  65. package/dist/model/typecheckable.d.ts +281 -281
  66. package/dist/model/utils/autoparagraphing.d.ts +29 -29
  67. package/dist/model/utils/deletecontent.d.ts +68 -68
  68. package/dist/model/utils/getselectedcontent.d.ts +27 -27
  69. package/dist/model/utils/insertcontent.d.ts +42 -42
  70. package/dist/model/utils/insertobject.d.ts +41 -41
  71. package/dist/model/utils/modifyselection.d.ts +44 -44
  72. package/dist/model/utils/selection-post-fixer.d.ts +71 -71
  73. package/dist/model/writer.d.ts +854 -854
  74. package/dist/view/attributeelement.d.ts +123 -123
  75. package/dist/view/containerelement.d.ts +49 -49
  76. package/dist/view/datatransfer.d.ts +70 -70
  77. package/dist/view/document.d.ts +175 -177
  78. package/dist/view/documentfragment.d.ts +158 -157
  79. package/dist/view/documentselection.d.ts +308 -307
  80. package/dist/view/domconverter.d.ts +612 -657
  81. package/dist/view/downcastwriter.d.ts +1006 -1006
  82. package/dist/view/editableelement.d.ts +64 -63
  83. package/dist/view/element.d.ts +754 -754
  84. package/dist/view/elementdefinition.d.ts +79 -79
  85. package/dist/view/emptyelement.d.ts +42 -42
  86. package/dist/view/filler.d.ts +75 -75
  87. package/dist/view/item.d.ts +9 -9
  88. package/dist/view/matcher.d.ts +412 -487
  89. package/dist/view/node.d.ts +164 -163
  90. package/dist/view/observer/arrowkeysobserver.d.ts +37 -37
  91. package/dist/view/observer/bubblingemittermixin.d.ts +163 -153
  92. package/dist/view/observer/bubblingeventinfo.d.ts +45 -42
  93. package/dist/view/observer/clickobserver.d.ts +36 -36
  94. package/dist/view/observer/compositionobserver.d.ts +67 -67
  95. package/dist/view/observer/domeventdata.d.ts +46 -46
  96. package/dist/view/observer/domeventobserver.d.ts +77 -74
  97. package/dist/view/observer/fakeselectionobserver.d.ts +42 -42
  98. package/dist/view/observer/focusobserver.d.ts +84 -84
  99. package/dist/view/observer/inputobserver.d.ts +76 -76
  100. package/dist/view/observer/keyobserver.d.ts +53 -53
  101. package/dist/view/observer/mouseobserver.d.ts +73 -73
  102. package/dist/view/observer/mutationobserver.d.ts +101 -101
  103. package/dist/view/observer/observer.d.ts +84 -83
  104. package/dist/view/observer/pointerobserver.d.ts +63 -63
  105. package/dist/view/observer/selectionobserver.d.ts +136 -136
  106. package/dist/view/observer/tabobserver.d.ts +38 -38
  107. package/dist/view/observer/touchobserver.d.ts +60 -60
  108. package/dist/view/placeholder.d.ts +80 -80
  109. package/dist/view/position.d.ts +187 -187
  110. package/dist/view/range.d.ts +282 -282
  111. package/dist/view/rawelement.d.ts +72 -72
  112. package/dist/view/renderer.d.ts +270 -272
  113. package/dist/view/rooteditableelement.d.ts +43 -43
  114. package/dist/view/selection.d.ts +356 -369
  115. package/dist/view/styles/background.d.ts +15 -15
  116. package/dist/view/styles/border.d.ts +27 -27
  117. package/dist/view/styles/margin.d.ts +12 -12
  118. package/dist/view/styles/padding.d.ts +12 -12
  119. package/dist/view/styles/utils.d.ts +72 -72
  120. package/dist/view/stylesmap.d.ts +715 -715
  121. package/dist/view/text.d.ts +75 -75
  122. package/dist/view/textproxy.d.ts +92 -92
  123. package/dist/view/tokenlist.d.ts +104 -104
  124. package/dist/view/treewalker.d.ts +201 -201
  125. package/dist/view/typecheckable.d.ts +445 -445
  126. package/dist/view/uielement.d.ts +93 -93
  127. package/dist/view/upcastwriter.d.ts +412 -412
  128. package/dist/view/view.d.ts +466 -469
  129. package/package.json +2 -2
@@ -1,128 +1,128 @@
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/view/attributeelement
7
- */
8
- import { ViewElement, type ViewElementAttributes } from './element.js';
9
- import { type ViewDocument } from './document.js';
10
- import { type ViewNode } from './node.js';
6
+ * @module engine/view/attributeelement
7
+ */
8
+ import { ViewElement, type ViewElementAttributes } from "./element.js";
9
+ import { type ViewDocument } from "./document.js";
10
+ import { type ViewNode } from "./node.js";
11
11
  /**
12
- * Attribute elements are used to represent formatting elements in the view (think – `<b>`, `<span style="font-size: 2em">`, etc.).
13
- * Most often they are created when downcasting model text attributes.
14
- *
15
- * Editing engine does not define a fixed HTML DTD. This is why a feature developer needs to choose between various
16
- * types (container element, {@link module:engine/view/attributeelement~ViewAttributeElement attribute element},
17
- * {@link module:engine/view/emptyelement~ViewEmptyElement empty element}, etc) when developing a feature.
18
- *
19
- * To create a new attribute element instance use the
20
- * {@link module:engine/view/downcastwriter~ViewDowncastWriter#createAttributeElement `ViewDowncastWriter#createAttributeElement()`} method.
21
- */
12
+ * Attribute elements are used to represent formatting elements in the view (think – `<b>`, `<span style="font-size: 2em">`, etc.).
13
+ * Most often they are created when downcasting model text attributes.
14
+ *
15
+ * Editing engine does not define a fixed HTML DTD. This is why a feature developer needs to choose between various
16
+ * types (container element, {@link module:engine/view/attributeelement~ViewAttributeElement attribute element},
17
+ * {@link module:engine/view/emptyelement~ViewEmptyElement empty element}, etc) when developing a feature.
18
+ *
19
+ * To create a new attribute element instance use the
20
+ * {@link module:engine/view/downcastwriter~ViewDowncastWriter#createAttributeElement `ViewDowncastWriter#createAttributeElement()`} method.
21
+ */
22
22
  export declare class ViewAttributeElement extends ViewElement {
23
- static readonly DEFAULT_PRIORITY: number;
24
- /**
25
- * Element priority. Decides in what order elements are wrapped by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
26
- *
27
- * @internal
28
- * @readonly
29
- */
30
- _priority: number;
31
- /**
32
- * Element identifier. If set, it is used by {@link module:engine/view/element~ViewElement#isSimilar},
33
- * and then two elements are considered similar if, and only if they have the same `_id`.
34
- *
35
- * @internal
36
- * @readonly
37
- */
38
- _id: string | number | null;
39
- /**
40
- * Keeps all the attribute elements that have the same {@link module:engine/view/attributeelement~ViewAttributeElement#id ids}
41
- * and still exist in the view tree.
42
- *
43
- * This property is managed by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
44
- */
45
- private readonly _clonesGroup;
46
- /**
47
- * Creates an attribute element.
48
- *
49
- * @see module:engine/view/downcastwriter~ViewDowncastWriter#createAttributeElement
50
- * @see module:engine/view/element~ViewElement
51
- * @protected
52
- * @param document The document instance to which this element belongs.
53
- * @param name Node name.
54
- * @param attrs Collection of attributes.
55
- * @param children A list of nodes to be inserted into created element.
56
- */
57
- constructor(document: ViewDocument, name: string, attrs?: ViewElementAttributes, children?: ViewNode | Iterable<ViewNode>);
58
- /**
59
- * Element priority. Decides in what order elements are wrapped by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
60
- */
61
- get priority(): number;
62
- /**
63
- * Element identifier. If set, it is used by {@link module:engine/view/element~ViewElement#isSimilar},
64
- * and then two elements are considered similar if, and only if they have the same `id`.
65
- */
66
- get id(): string | number | null;
67
- /**
68
- * Returns all {@link module:engine/view/attributeelement~ViewAttributeElement attribute elements} that has the
69
- * same {@link module:engine/view/attributeelement~ViewAttributeElement#id id} and are in the view tree (were not removed).
70
- *
71
- * Note: If this element has been removed from the tree, returned set will not include it.
72
- *
73
- * Throws {@link module:utils/ckeditorerror~CKEditorError attribute-element-get-elements-with-same-id-no-id}
74
- * if this element has no `id`.
75
- *
76
- * @returns Set containing all the attribute elements
77
- * with the same `id` that were added and not removed from the view tree.
78
- */
79
- getElementsWithSameId(): Set<ViewAttributeElement>;
80
- /**
81
- * Checks if this element is similar to other element.
82
- *
83
- * If none of elements has set {@link module:engine/view/attributeelement~ViewAttributeElement#id}, then both elements
84
- * should have the same name, attributes and priority to be considered as similar. Two similar elements can contain
85
- * different set of children nodes.
86
- *
87
- * If at least one element has {@link module:engine/view/attributeelement~ViewAttributeElement#id} set, then both
88
- * elements have to have the same {@link module:engine/view/attributeelement~ViewAttributeElement#id} value to be
89
- * considered similar.
90
- *
91
- * Similarity is important for {@link module:engine/view/downcastwriter~ViewDowncastWriter}. For example:
92
- *
93
- * * two following similar elements can be merged together into one, longer element,
94
- * * {@link module:engine/view/downcastwriter~ViewDowncastWriter#unwrap} checks similarity of passed element and processed element to
95
- * decide whether processed element should be unwrapped,
96
- * * etc.
97
- */
98
- isSimilar(otherElement: ViewElement): boolean;
99
- /**
100
- * Converts `ViewAttributeElement` instance to plain object and returns it.
101
- *
102
- * @returns `ViewAttributeElement` instance converted to plain object.
103
- */
104
- toJSON(): unknown;
105
- /**
106
- * Clones provided element with priority.
107
- *
108
- * @internal
109
- * @param deep If set to `true` clones element and all its children recursively. When set to `false`,
110
- * element will be cloned without any children.
111
- * @returns Clone of this element.
112
- */
113
- _clone(deep?: boolean): this;
114
- /**
115
- * Used by {@link module:engine/view/element~ViewElement#_mergeAttributesFrom} to verify if the given element can be merged without
116
- * conflicts into this element.
117
- *
118
- * @internal
119
- */
120
- _canMergeAttributesFrom(otherElement: ViewAttributeElement): boolean;
121
- /**
122
- * Used by {@link module:engine/view/element~ViewElement#_subtractAttributesOf} to verify if the given element attributes
123
- * can be fully subtracted from this element.
124
- *
125
- * @internal
126
- */
127
- _canSubtractAttributesOf(otherElement: ViewAttributeElement): boolean;
23
+ static readonly DEFAULT_PRIORITY: number;
24
+ /**
25
+ * Element priority. Decides in what order elements are wrapped by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
26
+ *
27
+ * @internal
28
+ * @readonly
29
+ */
30
+ _priority: number;
31
+ /**
32
+ * Element identifier. If set, it is used by {@link module:engine/view/element~ViewElement#isSimilar},
33
+ * and then two elements are considered similar if, and only if they have the same `_id`.
34
+ *
35
+ * @internal
36
+ * @readonly
37
+ */
38
+ _id: string | number | null;
39
+ /**
40
+ * Keeps all the attribute elements that have the same {@link module:engine/view/attributeelement~ViewAttributeElement#id ids}
41
+ * and still exist in the view tree.
42
+ *
43
+ * This property is managed by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
44
+ */
45
+ private readonly _clonesGroup;
46
+ /**
47
+ * Creates an attribute element.
48
+ *
49
+ * @see module:engine/view/downcastwriter~ViewDowncastWriter#createAttributeElement
50
+ * @see module:engine/view/element~ViewElement
51
+ * @protected
52
+ * @param document The document instance to which this element belongs.
53
+ * @param name Node name.
54
+ * @param attrs Collection of attributes.
55
+ * @param children A list of nodes to be inserted into created element.
56
+ */
57
+ constructor(document: ViewDocument, name: string, attrs?: ViewElementAttributes, children?: ViewNode | Iterable<ViewNode>);
58
+ /**
59
+ * Element priority. Decides in what order elements are wrapped by {@link module:engine/view/downcastwriter~ViewDowncastWriter}.
60
+ */
61
+ get priority(): number;
62
+ /**
63
+ * Element identifier. If set, it is used by {@link module:engine/view/element~ViewElement#isSimilar},
64
+ * and then two elements are considered similar if, and only if they have the same `id`.
65
+ */
66
+ get id(): string | number | null;
67
+ /**
68
+ * Returns all {@link module:engine/view/attributeelement~ViewAttributeElement attribute elements} that has the
69
+ * same {@link module:engine/view/attributeelement~ViewAttributeElement#id id} and are in the view tree (were not removed).
70
+ *
71
+ * Note: If this element has been removed from the tree, returned set will not include it.
72
+ *
73
+ * Throws {@link module:utils/ckeditorerror~CKEditorError attribute-element-get-elements-with-same-id-no-id}
74
+ * if this element has no `id`.
75
+ *
76
+ * @returns Set containing all the attribute elements
77
+ * with the same `id` that were added and not removed from the view tree.
78
+ */
79
+ getElementsWithSameId(): Set<ViewAttributeElement>;
80
+ /**
81
+ * Checks if this element is similar to other element.
82
+ *
83
+ * If none of elements has set {@link module:engine/view/attributeelement~ViewAttributeElement#id}, then both elements
84
+ * should have the same name, attributes and priority to be considered as similar. Two similar elements can contain
85
+ * different set of children nodes.
86
+ *
87
+ * If at least one element has {@link module:engine/view/attributeelement~ViewAttributeElement#id} set, then both
88
+ * elements have to have the same {@link module:engine/view/attributeelement~ViewAttributeElement#id} value to be
89
+ * considered similar.
90
+ *
91
+ * Similarity is important for {@link module:engine/view/downcastwriter~ViewDowncastWriter}. For example:
92
+ *
93
+ * * two following similar elements can be merged together into one, longer element,
94
+ * * {@link module:engine/view/downcastwriter~ViewDowncastWriter#unwrap} checks similarity of passed element and processed element to
95
+ * decide whether processed element should be unwrapped,
96
+ * * etc.
97
+ */
98
+ override isSimilar(otherElement: ViewElement): boolean;
99
+ /**
100
+ * Converts `ViewAttributeElement` instance to plain object and returns it.
101
+ *
102
+ * @returns `ViewAttributeElement` instance converted to plain object.
103
+ */
104
+ override toJSON(): unknown;
105
+ /**
106
+ * Clones provided element with priority.
107
+ *
108
+ * @internal
109
+ * @param deep If set to `true` clones element and all its children recursively. When set to `false`,
110
+ * element will be cloned without any children.
111
+ * @returns Clone of this element.
112
+ */
113
+ override _clone(deep?: boolean): this;
114
+ /**
115
+ * Used by {@link module:engine/view/element~ViewElement#_mergeAttributesFrom} to verify if the given element can be merged without
116
+ * conflicts into this element.
117
+ *
118
+ * @internal
119
+ */
120
+ override _canMergeAttributesFrom(otherElement: ViewAttributeElement): boolean;
121
+ /**
122
+ * Used by {@link module:engine/view/element~ViewElement#_subtractAttributesOf} to verify if the given element attributes
123
+ * can be fully subtracted from this element.
124
+ *
125
+ * @internal
126
+ */
127
+ override _canSubtractAttributesOf(otherElement: ViewAttributeElement): boolean;
128
128
  }
@@ -1,56 +1,56 @@
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/view/containerelement
7
- */
8
- import { ViewElement, type ViewElementAttributes } from './element.js';
9
- import { type ViewDocument } from './document.js';
10
- import { type ViewNode } from './node.js';
6
+ * @module engine/view/containerelement
7
+ */
8
+ import { ViewElement, type ViewElementAttributes } from "./element.js";
9
+ import { type ViewDocument } from "./document.js";
10
+ import { type ViewNode } from "./node.js";
11
11
  /**
12
- * Containers are elements which define document structure. They define boundaries for
13
- * {@link module:engine/view/attributeelement~ViewAttributeElement attributes}.
14
- * They are mostly used for block elements like `<p>` or `<div>`.
15
- *
16
- * Editing engine does not define a fixed HTML DTD. This is why a feature developer needs to choose between various
17
- * types (container element, {@link module:engine/view/attributeelement~ViewAttributeElement attribute element},
18
- * {@link module:engine/view/emptyelement~ViewEmptyElement empty element}, etc) when developing a feature.
19
- *
20
- * The container element should be your default choice when writing a converter, unless:
21
- *
22
- * * this element represents a model text attribute (then use {@link module:engine/view/attributeelement~ViewAttributeElement}),
23
- * * this is an empty element like `<img>` (then use {@link module:engine/view/emptyelement~ViewEmptyElement}),
24
- * * this is a root element,
25
- * * this is a nested editable element (then use {@link module:engine/view/editableelement~ViewEditableElement}).
26
- *
27
- * To create a new container element instance use the
28
- * {@link module:engine/view/downcastwriter~ViewDowncastWriter#createContainerElement `ViewDowncastWriter#createContainerElement()`}
29
- * method.
30
- */
12
+ * Containers are elements which define document structure. They define boundaries for
13
+ * {@link module:engine/view/attributeelement~ViewAttributeElement attributes}.
14
+ * They are mostly used for block elements like `<p>` or `<div>`.
15
+ *
16
+ * Editing engine does not define a fixed HTML DTD. This is why a feature developer needs to choose between various
17
+ * types (container element, {@link module:engine/view/attributeelement~ViewAttributeElement attribute element},
18
+ * {@link module:engine/view/emptyelement~ViewEmptyElement empty element}, etc) when developing a feature.
19
+ *
20
+ * The container element should be your default choice when writing a converter, unless:
21
+ *
22
+ * * this element represents a model text attribute (then use {@link module:engine/view/attributeelement~ViewAttributeElement}),
23
+ * * this is an empty element like `<img>` (then use {@link module:engine/view/emptyelement~ViewEmptyElement}),
24
+ * * this is a root element,
25
+ * * this is a nested editable element (then use {@link module:engine/view/editableelement~ViewEditableElement}).
26
+ *
27
+ * To create a new container element instance use the
28
+ * {@link module:engine/view/downcastwriter~ViewDowncastWriter#createContainerElement `ViewDowncastWriter#createContainerElement()`}
29
+ * method.
30
+ */
31
31
  export declare class ViewContainerElement extends ViewElement {
32
- /**
33
- * Creates a container element.
34
- *
35
- * @see module:engine/view/downcastwriter~ViewDowncastWriter#createContainerElement
36
- * @see module:engine/view/element~ViewElement
37
- * @internal
38
- * @param document The document instance to which this element belongs.
39
- * @param name Node name.
40
- * @param attrs Collection of attributes.
41
- * @param children A list of nodes to be inserted into created element.
42
- */
43
- constructor(document: ViewDocument, name: string, attrs?: ViewElementAttributes, children?: ViewNode | Iterable<ViewNode>);
44
- /**
45
- * Converts `ViewContainerElement` instance to plain object and returns it.
46
- *
47
- * @returns `ViewContainerElement` instance converted to plain object.
48
- */
49
- toJSON(): unknown;
32
+ /**
33
+ * Creates a container element.
34
+ *
35
+ * @see module:engine/view/downcastwriter~ViewDowncastWriter#createContainerElement
36
+ * @see module:engine/view/element~ViewElement
37
+ * @internal
38
+ * @param document The document instance to which this element belongs.
39
+ * @param name Node name.
40
+ * @param attrs Collection of attributes.
41
+ * @param children A list of nodes to be inserted into created element.
42
+ */
43
+ constructor(document: ViewDocument, name: string, attrs?: ViewElementAttributes, children?: ViewNode | Iterable<ViewNode>);
44
+ /**
45
+ * Converts `ViewContainerElement` instance to plain object and returns it.
46
+ *
47
+ * @returns `ViewContainerElement` instance converted to plain object.
48
+ */
49
+ override toJSON(): unknown;
50
50
  }
51
51
  /**
52
- * Returns block {@link module:engine/view/filler filler} offset or `null` if block filler is not needed.
53
- *
54
- * @returns Block filler offset or `null` if block filler is not needed.
55
- */
52
+ * Returns block {@link module:engine/view/filler filler} offset or `null` if block filler is not needed.
53
+ *
54
+ * @returns Block filler offset or `null` if block filler is not needed.
55
+ */
56
56
  export declare function getViewFillerOffset(this: ViewContainerElement): number | null;
@@ -1,79 +1,79 @@
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/view/datatransfer
7
- */
6
+ * @module engine/view/datatransfer
7
+ */
8
8
  type DomDataTransfer = globalThis.DataTransfer;
9
9
  /**
10
- * A facade over the native [`DataTransfer`](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer) object.
11
- */
10
+ * A facade over the native [`DataTransfer`](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer) object.
11
+ */
12
12
  export declare class ViewDataTransfer {
13
- /**
14
- * The array of files created from the native `DataTransfer#files` or `DataTransfer#items`.
15
- */
16
- private _files;
17
- /**
18
- * The native DataTransfer object.
19
- */
20
- private _native;
21
- /**
22
- * @param nativeDataTransfer The native [`DataTransfer`](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer) object.
23
- * @param options.cacheFiles Whether `files` list should be initialized in the constructor.
24
- */
25
- constructor(nativeDataTransfer: DomDataTransfer, options?: {
26
- cacheFiles?: boolean;
27
- });
28
- /**
29
- * The array of files created from the native `DataTransfer#files` or `DataTransfer#items`.
30
- */
31
- get files(): Array<File>;
32
- /**
33
- * Returns an array of available native content types.
34
- */
35
- get types(): ReadonlyArray<string>;
36
- /**
37
- * Gets the data from the data transfer by its MIME type.
38
- *
39
- * ```ts
40
- * dataTransfer.getData( 'text/plain' );
41
- * ```
42
- *
43
- * @param type The MIME type. E.g. `text/html` or `text/plain`.
44
- */
45
- getData(type: string): string;
46
- /**
47
- * Sets the data in the data transfer.
48
- *
49
- * @param type The MIME type. E.g. `text/html` or `text/plain`.
50
- */
51
- setData(type: string, data: string): void;
52
- /**
53
- * The effect that is allowed for a drag operation.
54
- */
55
- set effectAllowed(value: ViewEffectAllowed);
56
- get effectAllowed(): ViewEffectAllowed;
57
- /**
58
- * The actual drop effect.
59
- */
60
- set dropEffect(value: ViewDropEffect);
61
- get dropEffect(): ViewDropEffect;
62
- /**
63
- * Set a preview image of the dragged content.
64
- */
65
- setDragImage(image: Element, x: number, y: number): void;
66
- /**
67
- * Whether the dragging operation was canceled.
68
- */
69
- get isCanceled(): boolean;
13
+ /**
14
+ * The array of files created from the native `DataTransfer#files` or `DataTransfer#items`.
15
+ */
16
+ private _files;
17
+ /**
18
+ * The native DataTransfer object.
19
+ */
20
+ private _native;
21
+ /**
22
+ * @param nativeDataTransfer The native [`DataTransfer`](https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer) object.
23
+ * @param options.cacheFiles Whether `files` list should be initialized in the constructor.
24
+ */
25
+ constructor(nativeDataTransfer: DomDataTransfer, options?: {
26
+ cacheFiles?: boolean;
27
+ });
28
+ /**
29
+ * The array of files created from the native `DataTransfer#files` or `DataTransfer#items`.
30
+ */
31
+ get files(): Array<File>;
32
+ /**
33
+ * Returns an array of available native content types.
34
+ */
35
+ get types(): ReadonlyArray<string>;
36
+ /**
37
+ * Gets the data from the data transfer by its MIME type.
38
+ *
39
+ * ```ts
40
+ * dataTransfer.getData( 'text/plain' );
41
+ * ```
42
+ *
43
+ * @param type The MIME type. E.g. `text/html` or `text/plain`.
44
+ */
45
+ getData(type: string): string;
46
+ /**
47
+ * Sets the data in the data transfer.
48
+ *
49
+ * @param type The MIME type. E.g. `text/html` or `text/plain`.
50
+ */
51
+ setData(type: string, data: string): void;
52
+ /**
53
+ * The effect that is allowed for a drag operation.
54
+ */
55
+ set effectAllowed(value: ViewEffectAllowed);
56
+ get effectAllowed(): ViewEffectAllowed;
57
+ /**
58
+ * The actual drop effect.
59
+ */
60
+ set dropEffect(value: ViewDropEffect);
61
+ get dropEffect(): ViewDropEffect;
62
+ /**
63
+ * Set a preview image of the dragged content.
64
+ */
65
+ setDragImage(image: Element, x: number, y: number): void;
66
+ /**
67
+ * Whether the dragging operation was canceled.
68
+ */
69
+ get isCanceled(): boolean;
70
70
  }
71
71
  /**
72
- * The effect that is allowed for a drag operation.
73
- */
74
- export type ViewEffectAllowed = DomDataTransfer['effectAllowed'];
72
+ * The effect that is allowed for a drag operation.
73
+ */
74
+ export type ViewEffectAllowed = DomDataTransfer["effectAllowed"];
75
75
  /**
76
- * The actual drop effect.
77
- */
78
- export type ViewDropEffect = DomDataTransfer['dropEffect'];
76
+ * The actual drop effect.
77
+ */
78
+ export type ViewDropEffect = DomDataTransfer["dropEffect"];
79
79
  export {};