@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,96 +1,96 @@
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/placeholder
7
- */
8
- import '../../theme/placeholder.css';
9
- import { type ViewDowncastWriter } from './downcastwriter.js';
10
- import { type ViewEditableElement } from './editableelement.js';
11
- import { type ViewElement } from './element.js';
12
- import { type EditingView } from './view.js';
6
+ * @module engine/view/placeholder
7
+ */
8
+ import "../../theme/placeholder.css";
9
+ import { type ViewDowncastWriter } from "./downcastwriter.js";
10
+ import { type ViewEditableElement } from "./editableelement.js";
11
+ import { type ViewElement } from "./element.js";
12
+ import { type EditingView } from "./view.js";
13
13
  /**
14
- * A helper that enables a placeholder on the provided view element (also updates its visibility).
15
- * The placeholder is a CSS pseudo–element (with a text content) attached to the element.
16
- *
17
- * To change the placeholder text, change value of the `placeholder` property in the provided `element`.
18
- *
19
- * To disable the placeholder, use {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} helper.
20
- *
21
- * @param options Configuration options of the placeholder.
22
- * @param options.view Editing view instance.
23
- * @param options.element Element that will gain a placeholder. See `options.isDirectHost` to learn more.
24
- * @param options.isDirectHost If set `false`, the placeholder will not be enabled directly
25
- * in the passed `element` but in one of its children (selected automatically, i.e. a first empty child element).
26
- * Useful when attaching placeholders to elements that can host other elements (not just text), for instance,
27
- * editable root elements.
28
- * @param options.text Placeholder text. It's **deprecated** and will be removed soon. Use
29
- * {@link module:engine/view/placeholder~PlaceholderableViewElement#placeholder `options.element.placeholder`} instead.
30
- * @param options.keepOnFocus If set `true`, the placeholder stay visible when the host element is focused.
31
- */
14
+ * A helper that enables a placeholder on the provided view element (also updates its visibility).
15
+ * The placeholder is a CSS pseudo–element (with a text content) attached to the element.
16
+ *
17
+ * To change the placeholder text, change value of the `placeholder` property in the provided `element`.
18
+ *
19
+ * To disable the placeholder, use {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} helper.
20
+ *
21
+ * @param options Configuration options of the placeholder.
22
+ * @param options.view Editing view instance.
23
+ * @param options.element Element that will gain a placeholder. See `options.isDirectHost` to learn more.
24
+ * @param options.isDirectHost If set `false`, the placeholder will not be enabled directly
25
+ * in the passed `element` but in one of its children (selected automatically, i.e. a first empty child element).
26
+ * Useful when attaching placeholders to elements that can host other elements (not just text), for instance,
27
+ * editable root elements.
28
+ * @param options.text Placeholder text. It's **deprecated** and will be removed soon. Use
29
+ * {@link module:engine/view/placeholder~PlaceholderableViewElement#placeholder `options.element.placeholder`} instead.
30
+ * @param options.keepOnFocus If set `true`, the placeholder stay visible when the host element is focused.
31
+ */
32
32
  export declare function enableViewPlaceholder({ view, element, text, isDirectHost, keepOnFocus }: {
33
- view: EditingView;
34
- element: PlaceholderableViewElement | ViewEditableElement;
35
- isDirectHost?: boolean;
36
- text?: string;
37
- keepOnFocus?: boolean;
33
+ view: EditingView;
34
+ element: PlaceholderableViewElement | ViewEditableElement;
35
+ isDirectHost?: boolean;
36
+ text?: string;
37
+ keepOnFocus?: boolean;
38
38
  }): void;
39
39
  /**
40
- * Disables the placeholder functionality from a given element.
41
- *
42
- * See {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} to learn more.
43
- */
40
+ * Disables the placeholder functionality from a given element.
41
+ *
42
+ * See {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} to learn more.
43
+ */
44
44
  export declare function disableViewPlaceholder(view: EditingView, element: ViewElement): void;
45
45
  /**
46
- * Shows a placeholder in the provided element by changing related attributes and CSS classes.
47
- *
48
- * **Note**: This helper will not update the placeholder visibility nor manage the
49
- * it in any way in the future. What it does is a one–time state change of an element. Use
50
- * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} and
51
- * {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} for full
52
- * placeholder functionality.
53
- *
54
- * **Note**: This helper will blindly show the placeholder directly in the root editable element if
55
- * one is passed, which could result in a visual clash if the editable element has some children
56
- * (for instance, an empty paragraph). Use {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`}
57
- * in that case or make sure the correct element is passed to the helper.
58
- *
59
- * @returns `true`, if any changes were made to the `element`.
60
- */
46
+ * Shows a placeholder in the provided element by changing related attributes and CSS classes.
47
+ *
48
+ * **Note**: This helper will not update the placeholder visibility nor manage the
49
+ * it in any way in the future. What it does is a one–time state change of an element. Use
50
+ * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} and
51
+ * {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} for full
52
+ * placeholder functionality.
53
+ *
54
+ * **Note**: This helper will blindly show the placeholder directly in the root editable element if
55
+ * one is passed, which could result in a visual clash if the editable element has some children
56
+ * (for instance, an empty paragraph). Use {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`}
57
+ * in that case or make sure the correct element is passed to the helper.
58
+ *
59
+ * @returns `true`, if any changes were made to the `element`.
60
+ */
61
61
  export declare function showViewPlaceholder(writer: ViewDowncastWriter, element: ViewElement): boolean;
62
62
  /**
63
- * Hides a placeholder in the element by changing related attributes and CSS classes.
64
- *
65
- * **Note**: This helper will not update the placeholder visibility nor manage the
66
- * it in any way in the future. What it does is a one–time state change of an element. Use
67
- * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} and
68
- * {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} for full
69
- * placeholder functionality.
70
- *
71
- * @returns `true`, if any changes were made to the `element`.
72
- */
63
+ * Hides a placeholder in the element by changing related attributes and CSS classes.
64
+ *
65
+ * **Note**: This helper will not update the placeholder visibility nor manage the
66
+ * it in any way in the future. What it does is a one–time state change of an element. Use
67
+ * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} and
68
+ * {@link module:engine/view/placeholder~disableViewPlaceholder `disableViewPlaceholder()`} for full
69
+ * placeholder functionality.
70
+ *
71
+ * @returns `true`, if any changes were made to the `element`.
72
+ */
73
73
  export declare function hideViewPlaceholder(writer: ViewDowncastWriter, element: ViewElement): boolean;
74
74
  /**
75
- * Checks if a placeholder should be displayed in the element.
76
- *
77
- * **Note**: This helper will blindly check the possibility of showing a placeholder directly in the
78
- * root editable element if one is passed, which may not be the expected result. If an element can
79
- * host other elements (not just text), most likely one of its children should be checked instead
80
- * because it will be the final host for the placeholder. Use
81
- * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} in that case or make
82
- * sure the correct element is passed to the helper.
83
- *
84
- * @param element Element that holds the placeholder.
85
- * @param keepOnFocus Focusing the element will keep the placeholder visible.
86
- */
75
+ * Checks if a placeholder should be displayed in the element.
76
+ *
77
+ * **Note**: This helper will blindly check the possibility of showing a placeholder directly in the
78
+ * root editable element if one is passed, which may not be the expected result. If an element can
79
+ * host other elements (not just text), most likely one of its children should be checked instead
80
+ * because it will be the final host for the placeholder. Use
81
+ * {@link module:engine/view/placeholder~enableViewPlaceholder `enableViewPlaceholder()`} in that case or make
82
+ * sure the correct element is passed to the helper.
83
+ *
84
+ * @param element Element that holds the placeholder.
85
+ * @param keepOnFocus Focusing the element will keep the placeholder visible.
86
+ */
87
87
  export declare function needsViewPlaceholder(element: ViewElement, keepOnFocus: boolean): boolean;
88
88
  /**
89
- * Element that could have a placeholder.
90
- */
89
+ * Element that could have a placeholder.
90
+ */
91
91
  export interface PlaceholderableViewElement extends ViewElement {
92
- /**
93
- * The text of element's placeholder.
94
- */
95
- placeholder?: string;
92
+ /**
93
+ * The text of element's placeholder.
94
+ */
95
+ placeholder?: string;
96
96
  }
@@ -1,194 +1,194 @@
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/position
7
- */
8
- import { ViewTypeCheckable } from './typecheckable.js';
9
- import { ViewEditableElement } from './editableelement.js';
10
- import { type ViewDocumentFragment } from './documentfragment.js';
11
- import { type ViewItem } from './item.js';
12
- import { type ViewNode } from './node.js';
13
- import { ViewTreeWalker, type ViewTreeWalkerValue, type ViewTreeWalkerOptions } from './treewalker.js';
6
+ * @module engine/view/position
7
+ */
8
+ import { ViewTypeCheckable } from "./typecheckable.js";
9
+ import { ViewEditableElement } from "./editableelement.js";
10
+ import { type ViewDocumentFragment } from "./documentfragment.js";
11
+ import { type ViewItem } from "./item.js";
12
+ import { type ViewNode } from "./node.js";
13
+ import { ViewTreeWalker, type ViewTreeWalkerValue, type ViewTreeWalkerOptions } from "./treewalker.js";
14
14
  /**
15
- * Position in the view tree. Position is represented by its parent node and an offset in this parent.
16
- *
17
- * In order to create a new position instance use the `createPosition*()` factory methods available in:
18
- *
19
- * * {@link module:engine/view/view~EditingView}
20
- * * {@link module:engine/view/downcastwriter~ViewDowncastWriter}
21
- * * {@link module:engine/view/upcastwriter~ViewUpcastWriter}
22
- */
15
+ * Position in the view tree. Position is represented by its parent node and an offset in this parent.
16
+ *
17
+ * In order to create a new position instance use the `createPosition*()` factory methods available in:
18
+ *
19
+ * * {@link module:engine/view/view~EditingView}
20
+ * * {@link module:engine/view/downcastwriter~ViewDowncastWriter}
21
+ * * {@link module:engine/view/upcastwriter~ViewUpcastWriter}
22
+ */
23
23
  export declare class ViewPosition extends ViewTypeCheckable {
24
- /**
25
- * Position parent.
26
- */
27
- readonly parent: ViewNode | ViewDocumentFragment;
28
- /**
29
- * Position offset.
30
- */
31
- offset: number;
32
- /**
33
- * Creates a position.
34
- *
35
- * @param parent Position parent.
36
- * @param offset Position offset.
37
- */
38
- constructor(parent: ViewNode | ViewDocumentFragment, offset: number);
39
- /**
40
- * Node directly after the position. Equals `null` when there is no node after position or position is located
41
- * inside text node.
42
- */
43
- get nodeAfter(): ViewNode | null;
44
- /**
45
- * Node directly before the position. Equals `null` when there is no node before position or position is located
46
- * inside text node.
47
- */
48
- get nodeBefore(): ViewNode | null;
49
- /**
50
- * Is `true` if position is at the beginning of its {@link module:engine/view/position~ViewPosition#parent parent}, `false` otherwise.
51
- */
52
- get isAtStart(): boolean;
53
- /**
54
- * Is `true` if position is at the end of its {@link module:engine/view/position~ViewPosition#parent parent}, `false` otherwise.
55
- */
56
- get isAtEnd(): boolean;
57
- /**
58
- * Position's root, that is the root of the position's parent element.
59
- */
60
- get root(): ViewNode | ViewDocumentFragment;
61
- /**
62
- * {@link module:engine/view/editableelement~ViewEditableElement ViewEditableElement} instance that contains this position, or `null` if
63
- * position is not inside an editable element.
64
- */
65
- get editableElement(): ViewEditableElement | null;
66
- /**
67
- * Returns a new instance of Position with offset incremented by `shift` value.
68
- *
69
- * @param shift How position offset should get changed. Accepts negative values.
70
- * @returns Shifted position.
71
- */
72
- getShiftedBy(shift: number): ViewPosition;
73
- /**
74
- * Gets the farthest position which matches the callback using
75
- * {@link module:engine/view/treewalker~ViewTreeWalker TreeWalker}.
76
- *
77
- * For example:
78
- *
79
- * ```ts
80
- * getLastMatchingPosition( value => value.type == 'text' ); // <p>{}foo</p> -> <p>foo[]</p>
81
- * getLastMatchingPosition( value => value.type == 'text', { direction: 'backward' } ); // <p>foo[]</p> -> <p>{}foo</p>
82
- * getLastMatchingPosition( value => false ); // Do not move the position.
83
- * ```
84
- *
85
- * @param skip Callback function. Gets {@link module:engine/view/treewalker~ViewTreeWalkerValue} and should
86
- * return `true` if the value should be skipped or `false` if not.
87
- * @param options Object with configuration options. See {@link module:engine/view/treewalker~ViewTreeWalker}.
88
- * @returns The position after the last item which matches the `skip` callback test.
89
- */
90
- getLastMatchingPosition(skip: (value: ViewTreeWalkerValue) => boolean, options?: ViewTreeWalkerOptions): ViewPosition;
91
- /**
92
- * Returns ancestors array of this position, that is this position's parent and it's ancestors.
93
- *
94
- * @returns Array with ancestors.
95
- */
96
- getAncestors(): Array<ViewNode | ViewDocumentFragment>;
97
- /**
98
- * Returns a {@link module:engine/view/node~ViewNode} or {@link module:engine/view/documentfragment~ViewDocumentFragment}
99
- * which is a common ancestor of both positions.
100
- */
101
- getCommonAncestor(position: ViewPosition): ViewNode | ViewDocumentFragment | null;
102
- /**
103
- * Checks whether this position equals given position.
104
- *
105
- * @param otherPosition Position to compare with.
106
- * @returns True if positions are same.
107
- */
108
- isEqual(otherPosition: ViewPosition): boolean;
109
- /**
110
- * Checks whether this position is located before given position. When method returns `false` it does not mean that
111
- * this position is after give one. Two positions may be located inside separate roots and in that situation this
112
- * method will still return `false`.
113
- *
114
- * @see module:engine/view/position~ViewPosition#isAfter
115
- * @see module:engine/view/position~ViewPosition#compareWith
116
- * @param otherPosition Position to compare with.
117
- * @returns Returns `true` if this position is before given position.
118
- */
119
- isBefore(otherPosition: ViewPosition): boolean;
120
- /**
121
- * Checks whether this position is located after given position. When method returns `false` it does not mean that
122
- * this position is before give one. Two positions may be located inside separate roots and in that situation this
123
- * method will still return `false`.
124
- *
125
- * @see module:engine/view/position~ViewPosition#isBefore
126
- * @see module:engine/view/position~ViewPosition#compareWith
127
- * @param otherPosition Position to compare with.
128
- * @returns Returns `true` if this position is after given position.
129
- */
130
- isAfter(otherPosition: ViewPosition): boolean;
131
- /**
132
- * Checks whether this position is before, after or in same position that other position. Two positions may be also
133
- * different when they are located in separate roots.
134
- *
135
- * @param otherPosition Position to compare with.
136
- */
137
- compareWith(otherPosition: ViewPosition): ViewPositionRelation;
138
- /**
139
- * Creates a {@link module:engine/view/treewalker~ViewTreeWalker TreeWalker} instance with this positions as a start position.
140
- *
141
- * @param options Object with configuration options. See {@link module:engine/view/treewalker~ViewTreeWalker}
142
- */
143
- getWalker(options?: ViewTreeWalkerOptions): ViewTreeWalker;
144
- /**
145
- * Clones this position.
146
- */
147
- clone(): ViewPosition;
148
- /**
149
- * Converts `ViewPosition` instance to plain object and returns it.
150
- *
151
- * @returns `ViewPosition` instance converted to plain object.
152
- */
153
- toJSON(): unknown;
154
- /**
155
- * Creates position at the given location. The location can be specified as:
156
- *
157
- * * a {@link module:engine/view/position~ViewPosition position},
158
- * * parent element and offset (offset defaults to `0`),
159
- * * parent element and `'end'` (sets position at the end of that element),
160
- * * {@link module:engine/view/item~ViewItem view item} and `'before'` or `'after'` (sets position before or after given view item).
161
- *
162
- * This method is a shortcut to other constructors such as:
163
- *
164
- * * {@link module:engine/view/position~ViewPosition._createBefore},
165
- * * {@link module:engine/view/position~ViewPosition._createAfter}.
166
- *
167
- * @internal
168
- * @param offset Offset or one of the flags. Used only when first parameter is a {@link module:engine/view/item~ViewItem view item}.
169
- */
170
- static _createAt(itemOrPosition: ViewItem | ViewPosition, offset?: ViewPositionOffset): ViewPosition;
171
- /**
172
- * Creates a new position after given view item.
173
- *
174
- * @internal
175
- * @param item View item after which the position should be located.
176
- */
177
- static _createAfter(item: ViewItem): ViewPosition;
178
- /**
179
- * Creates a new position before given view item.
180
- *
181
- * @internal
182
- * @param item View item before which the position should be located.
183
- */
184
- static _createBefore(item: ViewItem): ViewPosition;
24
+ /**
25
+ * Position parent.
26
+ */
27
+ readonly parent: ViewNode | ViewDocumentFragment;
28
+ /**
29
+ * Position offset.
30
+ */
31
+ offset: number;
32
+ /**
33
+ * Creates a position.
34
+ *
35
+ * @param parent Position parent.
36
+ * @param offset Position offset.
37
+ */
38
+ constructor(parent: ViewNode | ViewDocumentFragment, offset: number);
39
+ /**
40
+ * Node directly after the position. Equals `null` when there is no node after position or position is located
41
+ * inside text node.
42
+ */
43
+ get nodeAfter(): ViewNode | null;
44
+ /**
45
+ * Node directly before the position. Equals `null` when there is no node before position or position is located
46
+ * inside text node.
47
+ */
48
+ get nodeBefore(): ViewNode | null;
49
+ /**
50
+ * Is `true` if position is at the beginning of its {@link module:engine/view/position~ViewPosition#parent parent}, `false` otherwise.
51
+ */
52
+ get isAtStart(): boolean;
53
+ /**
54
+ * Is `true` if position is at the end of its {@link module:engine/view/position~ViewPosition#parent parent}, `false` otherwise.
55
+ */
56
+ get isAtEnd(): boolean;
57
+ /**
58
+ * Position's root, that is the root of the position's parent element.
59
+ */
60
+ get root(): ViewNode | ViewDocumentFragment;
61
+ /**
62
+ * {@link module:engine/view/editableelement~ViewEditableElement ViewEditableElement} instance that contains this position, or `null` if
63
+ * position is not inside an editable element.
64
+ */
65
+ get editableElement(): ViewEditableElement | null;
66
+ /**
67
+ * Returns a new instance of Position with offset incremented by `shift` value.
68
+ *
69
+ * @param shift How position offset should get changed. Accepts negative values.
70
+ * @returns Shifted position.
71
+ */
72
+ getShiftedBy(shift: number): ViewPosition;
73
+ /**
74
+ * Gets the farthest position which matches the callback using
75
+ * {@link module:engine/view/treewalker~ViewTreeWalker TreeWalker}.
76
+ *
77
+ * For example:
78
+ *
79
+ * ```ts
80
+ * getLastMatchingPosition( value => value.type == 'text' ); // <p>{}foo</p> -> <p>foo[]</p>
81
+ * getLastMatchingPosition( value => value.type == 'text', { direction: 'backward' } ); // <p>foo[]</p> -> <p>{}foo</p>
82
+ * getLastMatchingPosition( value => false ); // Do not move the position.
83
+ * ```
84
+ *
85
+ * @param skip Callback function. Gets {@link module:engine/view/treewalker~ViewTreeWalkerValue} and should
86
+ * return `true` if the value should be skipped or `false` if not.
87
+ * @param options Object with configuration options. See {@link module:engine/view/treewalker~ViewTreeWalker}.
88
+ * @returns The position after the last item which matches the `skip` callback test.
89
+ */
90
+ getLastMatchingPosition(skip: (value: ViewTreeWalkerValue) => boolean, options?: ViewTreeWalkerOptions): ViewPosition;
91
+ /**
92
+ * Returns ancestors array of this position, that is this position's parent and it's ancestors.
93
+ *
94
+ * @returns Array with ancestors.
95
+ */
96
+ getAncestors(): Array<ViewNode | ViewDocumentFragment>;
97
+ /**
98
+ * Returns a {@link module:engine/view/node~ViewNode} or {@link module:engine/view/documentfragment~ViewDocumentFragment}
99
+ * which is a common ancestor of both positions.
100
+ */
101
+ getCommonAncestor(position: ViewPosition): ViewNode | ViewDocumentFragment | null;
102
+ /**
103
+ * Checks whether this position equals given position.
104
+ *
105
+ * @param otherPosition Position to compare with.
106
+ * @returns True if positions are same.
107
+ */
108
+ isEqual(otherPosition: ViewPosition): boolean;
109
+ /**
110
+ * Checks whether this position is located before given position. When method returns `false` it does not mean that
111
+ * this position is after give one. Two positions may be located inside separate roots and in that situation this
112
+ * method will still return `false`.
113
+ *
114
+ * @see module:engine/view/position~ViewPosition#isAfter
115
+ * @see module:engine/view/position~ViewPosition#compareWith
116
+ * @param otherPosition Position to compare with.
117
+ * @returns Returns `true` if this position is before given position.
118
+ */
119
+ isBefore(otherPosition: ViewPosition): boolean;
120
+ /**
121
+ * Checks whether this position is located after given position. When method returns `false` it does not mean that
122
+ * this position is before give one. Two positions may be located inside separate roots and in that situation this
123
+ * method will still return `false`.
124
+ *
125
+ * @see module:engine/view/position~ViewPosition#isBefore
126
+ * @see module:engine/view/position~ViewPosition#compareWith
127
+ * @param otherPosition Position to compare with.
128
+ * @returns Returns `true` if this position is after given position.
129
+ */
130
+ isAfter(otherPosition: ViewPosition): boolean;
131
+ /**
132
+ * Checks whether this position is before, after or in same position that other position. Two positions may be also
133
+ * different when they are located in separate roots.
134
+ *
135
+ * @param otherPosition Position to compare with.
136
+ */
137
+ compareWith(otherPosition: ViewPosition): ViewPositionRelation;
138
+ /**
139
+ * Creates a {@link module:engine/view/treewalker~ViewTreeWalker TreeWalker} instance with this positions as a start position.
140
+ *
141
+ * @param options Object with configuration options. See {@link module:engine/view/treewalker~ViewTreeWalker}
142
+ */
143
+ getWalker(options?: ViewTreeWalkerOptions): ViewTreeWalker;
144
+ /**
145
+ * Clones this position.
146
+ */
147
+ clone(): ViewPosition;
148
+ /**
149
+ * Converts `ViewPosition` instance to plain object and returns it.
150
+ *
151
+ * @returns `ViewPosition` instance converted to plain object.
152
+ */
153
+ toJSON(): unknown;
154
+ /**
155
+ * Creates position at the given location. The location can be specified as:
156
+ *
157
+ * * a {@link module:engine/view/position~ViewPosition position},
158
+ * * parent element and offset (offset defaults to `0`),
159
+ * * parent element and `'end'` (sets position at the end of that element),
160
+ * * {@link module:engine/view/item~ViewItem view item} and `'before'` or `'after'` (sets position before or after given view item).
161
+ *
162
+ * This method is a shortcut to other constructors such as:
163
+ *
164
+ * * {@link module:engine/view/position~ViewPosition._createBefore},
165
+ * * {@link module:engine/view/position~ViewPosition._createAfter}.
166
+ *
167
+ * @internal
168
+ * @param offset Offset or one of the flags. Used only when first parameter is a {@link module:engine/view/item~ViewItem view item}.
169
+ */
170
+ static _createAt(itemOrPosition: ViewItem | ViewPosition, offset?: ViewPositionOffset): ViewPosition;
171
+ /**
172
+ * Creates a new position after given view item.
173
+ *
174
+ * @internal
175
+ * @param item View item after which the position should be located.
176
+ */
177
+ static _createAfter(item: ViewItem): ViewPosition;
178
+ /**
179
+ * Creates a new position before given view item.
180
+ *
181
+ * @internal
182
+ * @param item View item before which the position should be located.
183
+ */
184
+ static _createBefore(item: ViewItem): ViewPosition;
185
185
  }
186
186
  /**
187
- * A flag indicating whether this position is `'before'` or `'after'` or `'same'` as given position.
188
- * If positions are in different roots `'different'` flag is returned.
189
- */
190
- export type ViewPositionRelation = 'before' | 'after' | 'same' | 'different';
187
+ * A flag indicating whether this position is `'before'` or `'after'` or `'same'` as given position.
188
+ * If positions are in different roots `'different'` flag is returned.
189
+ */
190
+ export type ViewPositionRelation = "before" | "after" | "same" | "different";
191
191
  /**
192
- * Offset or one of the flags.
193
- */
194
- export type ViewPositionOffset = number | 'before' | 'after' | 'end';
192
+ * Offset or one of the flags.
193
+ */
194
+ export type ViewPositionOffset = number | "before" | "after" | "end";