@ckeditor/ckeditor5-engine 48.2.0-alpha.7 → 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,171 +1,172 @@
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/node
7
- */
8
- import { ViewTypeCheckable } from './typecheckable.js';
9
- import type { ViewDocument, ViewDocumentChangeType } from './document.js';
10
- import { type ViewDocumentFragment } from './documentfragment.js';
11
- import { type ViewElement } from './element.js';
12
- declare const ViewNode_base: import("@ckeditor/ckeditor5-utils").Mixed<typeof ViewTypeCheckable, import("@ckeditor/ckeditor5-utils").Emitter>;
6
+ * @module engine/view/node
7
+ */
8
+ import { ViewTypeCheckable } from "./typecheckable.js";
9
+ import { type EmitterMixinConstructor } from "@ckeditor/ckeditor5-utils";
10
+ import type { ViewDocument, ViewDocumentChangeType } from "./document.js";
11
+ import { type ViewDocumentFragment } from "./documentfragment.js";
12
+ import { type ViewElement } from "./element.js";
13
+ declare const ViewNodeBase: EmitterMixinConstructor<typeof ViewTypeCheckable>;
13
14
  /**
14
- * Abstract view node class.
15
- *
16
- * This is an abstract class. Its constructor should not be used directly.
17
- * Use the {@link module:engine/view/downcastwriter~ViewDowncastWriter} or {@link module:engine/view/upcastwriter~ViewUpcastWriter}
18
- * to create new instances of view nodes.
19
- */
20
- export declare abstract class ViewNode extends /* #__PURE__ */ ViewNode_base {
21
- /**
22
- * The document instance to which this node belongs.
23
- */
24
- readonly document: ViewDocument;
25
- /**
26
- * Parent element. Null by default. Set by {@link module:engine/view/element~ViewElement#_insertChild}.
27
- */
28
- readonly parent: ViewElement | ViewDocumentFragment | null;
29
- /**
30
- * Creates a tree view node.
31
- *
32
- * @param document The document instance to which this node belongs.
33
- */
34
- protected constructor(document: ViewDocument);
35
- /**
36
- * Index of the node in the parent element or null if the node has no parent.
37
- *
38
- * Accessing this property throws an error if this node's parent element does not contain it.
39
- * This means that view tree got broken.
40
- */
41
- get index(): number | null;
42
- /**
43
- * Node's next sibling, or `null` if it is the last child.
44
- */
45
- get nextSibling(): ViewNode | null;
46
- /**
47
- * Node's previous sibling, or `null` if it is the first child.
48
- */
49
- get previousSibling(): ViewNode | null;
50
- /**
51
- * Top-most ancestor of the node. If the node has no parent it is the root itself.
52
- */
53
- get root(): ViewElement | ViewDocumentFragment;
54
- /**
55
- * Returns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
56
- */
57
- isAttached(): boolean;
58
- /**
59
- * Gets a path to the node. The path is an array containing indices of consecutive ancestors of this node,
60
- * beginning from {@link module:engine/view/node~ViewNode#root root}, down to this node's index.
61
- *
62
- * ```ts
63
- * const abc = downcastWriter.createText( 'abc' );
64
- * const foo = downcastWriter.createText( 'foo' );
65
- * const h1 = downcastWriter.createElement( 'h1', null, downcastWriter.createText( 'header' ) );
66
- * const p = downcastWriter.createElement( 'p', null, [ abc, foo ] );
67
- * const div = downcastWriter.createElement( 'div', null, [ h1, p ] );
68
- * foo.getPath(); // Returns [ 1, 3 ]. `foo` is in `p` which is in `div`. `p` starts at offset 1, while `foo` at 3.
69
- * h1.getPath(); // Returns [ 0 ].
70
- * div.getPath(); // Returns [].
71
- * ```
72
- *
73
- * @returns The path.
74
- */
75
- getPath(): Array<number>;
76
- /**
77
- * Returns ancestors array of this node.
78
- *
79
- * @param options Options object.
80
- * @param options.includeSelf When set to `true` this node will be also included in parent's array.
81
- * @param options.parentFirst When set to `true`, array will be sorted from node's parent to root element,
82
- * otherwise root element will be the first item in the array.
83
- * @returns Array with ancestors.
84
- */
85
- getAncestors(options?: {
86
- includeSelf?: boolean;
87
- parentFirst?: boolean;
88
- }): Array<ViewNode | ViewDocumentFragment>;
89
- /**
90
- * Returns a {@link module:engine/view/element~ViewElement} or {@link module:engine/view/documentfragment~ViewDocumentFragment}
91
- * which is a common ancestor of both nodes.
92
- *
93
- * @param node The second node.
94
- * @param options Options object.
95
- * @param options.includeSelf When set to `true` both nodes will be considered "ancestors" too.
96
- * Which means that if e.g. node A is inside B, then their common ancestor will be B.
97
- */
98
- getCommonAncestor(node: ViewNode, options?: {
99
- includeSelf?: boolean;
100
- }): ViewElement | ViewDocumentFragment | null;
101
- /**
102
- * Returns whether this node is before given node. `false` is returned if nodes are in different trees (for example,
103
- * in different {@link module:engine/view/documentfragment~ViewDocumentFragment}s).
104
- *
105
- * @param node Node to compare with.
106
- */
107
- isBefore(node: ViewNode): boolean;
108
- /**
109
- * Returns whether this node is after given node. `false` is returned if nodes are in different trees (for example,
110
- * in different {@link module:engine/view/documentfragment~ViewDocumentFragment}s).
111
- *
112
- * @param node Node to compare with.
113
- */
114
- isAfter(node: ViewNode): boolean;
115
- /**
116
- * Removes node from parent.
117
- *
118
- * @internal
119
- */
120
- _remove(): void;
121
- /**
122
- * @internal
123
- * @param type Type of the change.
124
- * @param node Changed node.
125
- * @param data Additional data.
126
- * @fires change
127
- */
128
- _fireChange(type: ViewDocumentChangeType, node: ViewNode, data?: {
129
- index: number;
130
- }): void;
131
- /**
132
- * Converts `ViewNode` to plain object and returns it.
133
- *
134
- * @returns `ViewNode` converted to plain object.
135
- */
136
- toJSON(): unknown;
137
- /**
138
- * Clones this node.
139
- *
140
- * @internal
141
- * @returns Clone of this node.
142
- */
143
- abstract _clone(deep?: boolean): ViewNode;
144
- /**
145
- * Checks if provided node is similar to this node.
146
- *
147
- * @returns True if nodes are similar.
148
- */
149
- abstract isSimilar(other: ViewNode): boolean;
15
+ * Abstract view node class.
16
+ *
17
+ * This is an abstract class. Its constructor should not be used directly.
18
+ * Use the {@link module:engine/view/downcastwriter~ViewDowncastWriter} or {@link module:engine/view/upcastwriter~ViewUpcastWriter}
19
+ * to create new instances of view nodes.
20
+ */
21
+ export declare abstract class ViewNode extends ViewNodeBase {
22
+ /**
23
+ * The document instance to which this node belongs.
24
+ */
25
+ readonly document: ViewDocument;
26
+ /**
27
+ * Parent element. Null by default. Set by {@link module:engine/view/element~ViewElement#_insertChild}.
28
+ */
29
+ readonly parent: ViewElement | ViewDocumentFragment | null;
30
+ /**
31
+ * Creates a tree view node.
32
+ *
33
+ * @param document The document instance to which this node belongs.
34
+ */
35
+ protected constructor(document: ViewDocument);
36
+ /**
37
+ * Index of the node in the parent element or null if the node has no parent.
38
+ *
39
+ * Accessing this property throws an error if this node's parent element does not contain it.
40
+ * This means that view tree got broken.
41
+ */
42
+ get index(): number | null;
43
+ /**
44
+ * Node's next sibling, or `null` if it is the last child.
45
+ */
46
+ get nextSibling(): ViewNode | null;
47
+ /**
48
+ * Node's previous sibling, or `null` if it is the first child.
49
+ */
50
+ get previousSibling(): ViewNode | null;
51
+ /**
52
+ * Top-most ancestor of the node. If the node has no parent it is the root itself.
53
+ */
54
+ get root(): ViewElement | ViewDocumentFragment;
55
+ /**
56
+ * Returns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
57
+ */
58
+ isAttached(): boolean;
59
+ /**
60
+ * Gets a path to the node. The path is an array containing indices of consecutive ancestors of this node,
61
+ * beginning from {@link module:engine/view/node~ViewNode#root root}, down to this node's index.
62
+ *
63
+ * ```ts
64
+ * const abc = downcastWriter.createText( 'abc' );
65
+ * const foo = downcastWriter.createText( 'foo' );
66
+ * const h1 = downcastWriter.createElement( 'h1', null, downcastWriter.createText( 'header' ) );
67
+ * const p = downcastWriter.createElement( 'p', null, [ abc, foo ] );
68
+ * const div = downcastWriter.createElement( 'div', null, [ h1, p ] );
69
+ * foo.getPath(); // Returns [ 1, 3 ]. `foo` is in `p` which is in `div`. `p` starts at offset 1, while `foo` at 3.
70
+ * h1.getPath(); // Returns [ 0 ].
71
+ * div.getPath(); // Returns [].
72
+ * ```
73
+ *
74
+ * @returns The path.
75
+ */
76
+ getPath(): Array<number>;
77
+ /**
78
+ * Returns ancestors array of this node.
79
+ *
80
+ * @param options Options object.
81
+ * @param options.includeSelf When set to `true` this node will be also included in parent's array.
82
+ * @param options.parentFirst When set to `true`, array will be sorted from node's parent to root element,
83
+ * otherwise root element will be the first item in the array.
84
+ * @returns Array with ancestors.
85
+ */
86
+ getAncestors(options?: {
87
+ includeSelf?: boolean;
88
+ parentFirst?: boolean;
89
+ }): Array<ViewNode | ViewDocumentFragment>;
90
+ /**
91
+ * Returns a {@link module:engine/view/element~ViewElement} or {@link module:engine/view/documentfragment~ViewDocumentFragment}
92
+ * which is a common ancestor of both nodes.
93
+ *
94
+ * @param node The second node.
95
+ * @param options Options object.
96
+ * @param options.includeSelf When set to `true` both nodes will be considered "ancestors" too.
97
+ * Which means that if e.g. node A is inside B, then their common ancestor will be B.
98
+ */
99
+ getCommonAncestor(node: ViewNode, options?: {
100
+ includeSelf?: boolean;
101
+ }): ViewElement | ViewDocumentFragment | null;
102
+ /**
103
+ * Returns whether this node is before given node. `false` is returned if nodes are in different trees (for example,
104
+ * in different {@link module:engine/view/documentfragment~ViewDocumentFragment}s).
105
+ *
106
+ * @param node Node to compare with.
107
+ */
108
+ isBefore(node: ViewNode): boolean;
109
+ /**
110
+ * Returns whether this node is after given node. `false` is returned if nodes are in different trees (for example,
111
+ * in different {@link module:engine/view/documentfragment~ViewDocumentFragment}s).
112
+ *
113
+ * @param node Node to compare with.
114
+ */
115
+ isAfter(node: ViewNode): boolean;
116
+ /**
117
+ * Removes node from parent.
118
+ *
119
+ * @internal
120
+ */
121
+ _remove(): void;
122
+ /**
123
+ * @internal
124
+ * @param type Type of the change.
125
+ * @param node Changed node.
126
+ * @param data Additional data.
127
+ * @fires change
128
+ */
129
+ _fireChange(type: ViewDocumentChangeType, node: ViewNode, data?: {
130
+ index: number;
131
+ }): void;
132
+ /**
133
+ * Converts `ViewNode` to plain object and returns it.
134
+ *
135
+ * @returns `ViewNode` converted to plain object.
136
+ */
137
+ toJSON(): unknown;
138
+ /**
139
+ * Clones this node.
140
+ *
141
+ * @internal
142
+ * @returns Clone of this node.
143
+ */
144
+ abstract _clone(deep?: boolean): ViewNode;
145
+ /**
146
+ * Checks if provided node is similar to this node.
147
+ *
148
+ * @returns True if nodes are similar.
149
+ */
150
+ abstract isSimilar(other: ViewNode): boolean;
150
151
  }
151
152
  /**
152
- * Fired when list of {@link module:engine/view/element~ViewElement elements} children, attributes or text changes.
153
- *
154
- * Change event is bubbled – it is fired on all ancestors.
155
- *
156
- * All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
157
- *
158
- * If `change:children` event is fired, there is an additional second parameter, which is an object with additional data related to change.
159
- *
160
- * @eventName ~ViewNode#change
161
- * @eventName ~ViewNode#change:children
162
- * @eventName ~ViewNode#change:attributes
163
- * @eventName ~ViewNode#change:text
164
- */
153
+ * Fired when list of {@link module:engine/view/element~ViewElement elements} children, attributes or text changes.
154
+ *
155
+ * Change event is bubbled – it is fired on all ancestors.
156
+ *
157
+ * All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
158
+ *
159
+ * If `change:children` event is fired, there is an additional second parameter, which is an object with additional data related to change.
160
+ *
161
+ * @eventName ~ViewNode#change
162
+ * @eventName ~ViewNode#change:children
163
+ * @eventName ~ViewNode#change:attributes
164
+ * @eventName ~ViewNode#change:text
165
+ */
165
166
  export type ViewNodeChangeEvent = {
166
- name: 'change' | `change:${ViewDocumentChangeType}`;
167
- args: [changedNode: ViewNode, data?: {
168
- index: number;
169
- }];
167
+ name: "change" | `change:${ViewDocumentChangeType}`;
168
+ args: [changedNode: ViewNode, data?: {
169
+ index: number;
170
+ }];
170
171
  };
171
172
  export {};
@@ -1,45 +1,45 @@
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/observer/arrowkeysobserver
7
- */
8
- import { Observer } from './observer.js';
9
- import { type EditingView } from '../view.js';
10
- import type { ViewDocumentKeyEventData } from './keyobserver.js';
11
- import type { BubblingEvent } from './bubblingemittermixin.js';
6
+ * @module engine/view/observer/arrowkeysobserver
7
+ */
8
+ import { Observer } from "./observer.js";
9
+ import { type EditingView } from "../view.js";
10
+ import type { ViewDocumentKeyEventData } from "./keyobserver.js";
11
+ import type { BubblingEvent } from "./bubblingemittermixin.js";
12
12
  /**
13
- * Arrow keys observer introduces the {@link module:engine/view/document~ViewDocument#event:arrowKey `Document#arrowKey`} event.
14
- *
15
- * Note that this observer is attached by the {@link module:engine/view/view~EditingView} and is available by default.
16
- */
13
+ * Arrow keys observer introduces the {@link module:engine/view/document~ViewDocument#event:arrowKey `Document#arrowKey`} event.
14
+ *
15
+ * Note that this observer is attached by the {@link module:engine/view/view~EditingView} and is available by default.
16
+ */
17
17
  export declare class ArrowKeysObserver extends Observer {
18
- /**
19
- * @inheritDoc
20
- */
21
- constructor(view: EditingView);
22
- /**
23
- * @inheritDoc
24
- */
25
- observe(): void;
26
- /**
27
- * @inheritDoc
28
- */
29
- stopObserving(): void;
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ constructor(view: EditingView);
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ override observe(): void;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ override stopObserving(): void;
30
30
  }
31
31
  /**
32
- * Event fired when the user presses an arrow keys.
33
- *
34
- * Introduced by {@link module:engine/view/observer/arrowkeysobserver~ArrowKeysObserver}.
35
- *
36
- * Note that because {@link module:engine/view/observer/arrowkeysobserver~ArrowKeysObserver} is attached by the
37
- * {@link module:engine/view/view~EditingView} this event is available by default.
38
- *
39
- * @eventName module:engine/view/document~ViewDocument#arrowKey
40
- * @param data
41
- */
32
+ * Event fired when the user presses an arrow keys.
33
+ *
34
+ * Introduced by {@link module:engine/view/observer/arrowkeysobserver~ArrowKeysObserver}.
35
+ *
36
+ * Note that because {@link module:engine/view/observer/arrowkeysobserver~ArrowKeysObserver} is attached by the
37
+ * {@link module:engine/view/view~EditingView} this event is available by default.
38
+ *
39
+ * @eventName module:engine/view/document~ViewDocument#arrowKey
40
+ * @param data
41
+ */
42
42
  export type ViewDocumentArrowKeyEvent = BubblingEvent<{
43
- name: 'arrowKey';
44
- args: [data: ViewDocumentKeyEventData];
43
+ name: "arrowKey";
44
+ args: [data: ViewDocumentKeyEventData];
45
45
  }>;