@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,166 +1,176 @@
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/bubblingemittermixin
7
- */
8
- import { type ArrayOrItem, type Emitter, type BaseEvent, type CallbackOptions, type Constructor, type Mixed } from '@ckeditor/ckeditor5-utils';
9
- import { BubblingEventInfo } from './bubblingeventinfo.js';
10
- import { type ViewNode } from '../node.js';
6
+ * @module engine/view/observer/bubblingemittermixin
7
+ */
8
+ import { type ArrayOrItem, type Emitter, type BaseEvent, type CallbackOptions, type Constructor, type Mixed } from "@ckeditor/ckeditor5-utils";
9
+ import { BubblingEventInfo } from "./bubblingeventinfo.js";
10
+ import { type ViewNode } from "../node.js";
11
11
  /**
12
- * Bubbling emitter mixin for the view document as described in the {@link ~BubblingEmitter} interface.
13
- *
14
- * This function creates a class that inherits from the provided `base` and implements `Emitter` interface.
15
- * The base class must implement {@link module:utils/emittermixin~Emitter} interface.
16
- *
17
- * ```ts
18
- * class BaseClass extends EmitterMixin() {
19
- * // ...
20
- * }
21
- *
22
- * class MyClass extends BubblingEmitterMixin( BaseClass ) {
23
- * // This class derives from `BaseClass` and implements the `BubblingEmitter` interface.
24
- * }
25
- * ```
26
- */
27
- export declare function BubblingEmitterMixin<Base extends Constructor<Emitter>>(base: Base): Mixed<Base, BubblingEmitter>;
12
+ * Constructor returned by {@link ~BubblingEmitterMixin}. Use it to name a mixin base class before extending it.
13
+ *
14
+ * ```ts
15
+ * const MyBubblingEmitterBase: BubblingEmitterMixinConstructor<typeof BaseClass> = BubblingEmitterMixin( BaseClass );
16
+ *
17
+ * class MyBubblingEmitter extends MyBubblingEmitterBase {}
18
+ * ```
19
+ */
20
+ export type BubblingEmitterMixinConstructor<Base extends Constructor<Emitter>> = Mixed<Base, BubblingEmitter>;
28
21
  /**
29
- * Bubbling emitter for the view document.
30
- *
31
- * Bubbling emitter is triggering events in the context of specified {@link module:engine/view/element~ViewElement view element} name,
32
- * predefined `'$text'`, `'$root'`, `'$document'` and `'$capture'` contexts, and context matchers provided as a function.
33
- *
34
- * Before bubbling starts, listeners for `'$capture'` context are triggered. Then the bubbling starts from the deeper selection
35
- * position (by firing event on the `'$text'` context) and propagates the view document tree up to the `'$root'` and finally
36
- * the listeners at `'$document'` context are fired (this is the default context).
37
- *
38
- * Examples:
39
- *
40
- * ```ts
41
- * // Listeners registered in the context of the view element names:
42
- * this.listenTo( viewDocument, 'enter', ( evt, data ) => {
43
- * // ...
44
- * }, { context: 'blockquote' } );
45
- *
46
- * this.listenTo( viewDocument, 'enter', ( evt, data ) => {
47
- * // ...
48
- * }, { context: 'li' } );
49
- *
50
- * // Listeners registered in the context of the '$text' and '$root' nodes.
51
- * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
52
- * // ...
53
- * }, { context: '$text', priority: 'high' } );
54
- *
55
- * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
56
- * // ...
57
- * }, { context: '$root' } );
58
- *
59
- * // Listeners registered in the context of custom callback function.
60
- * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
61
- * // ...
62
- * }, { context: isWidget } );
63
- *
64
- * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
65
- * // ...
66
- * }, { context: isWidget, priority: 'high' } );
67
- * ```
68
- *
69
- * Example flow for selection in text:
70
- *
71
- * ```xml
72
- * <blockquote><p>Foo[]bar</p></blockquote>
73
- * ```
74
- *
75
- * Fired events on contexts:
76
- * 1. `'$capture'`
77
- * 2. `'$text'`
78
- * 3. `'p'`
79
- * 4. `'blockquote'`
80
- * 5. `'$root'`
81
- * 6. `'$document'`
82
- *
83
- * Example flow for selection on element (i.e., Widget):
84
- *
85
- * ```xml
86
- * <blockquote><p>Foo[<widget/>]bar</p></blockquote>
87
- * ```
88
- *
89
- * Fired events on contexts:
90
- * 1. `'$capture'`
91
- * 2. *widget* (custom matcher)
92
- * 3. `'p'`
93
- * 4. `'blockquote'`
94
- * 5. `'$root'`
95
- * 6. `'$document'`
96
- *
97
- * There could be multiple listeners registered for the same context and at different priority levels:
98
- *
99
- * ```html
100
- * <p>Foo[]bar</p>
101
- * ```
102
- *
103
- * 1. `'$capture'` at priorities:
104
- * 1. `'highest'`
105
- * 2. `'high'`
106
- * 3. `'normal'`
107
- * 4. `'low'`
108
- * 5. `'lowest'`
109
- * 2. `'$text'` at priorities:
110
- * 1. `'highest'`
111
- * 2. `'high'`
112
- * 3. `'normal'`
113
- * 4. `'low'`
114
- * 5. `'lowest'`
115
- * 3. `'p'` at priorities:
116
- * 1. `'highest'`
117
- * 2. `'high'`
118
- * 3. `'normal'`
119
- * 4. `'low'`
120
- * 5. `'lowest'`
121
- * 4. `'$root'` at priorities:
122
- * 1. `'highest'`
123
- * 2. `'high'`
124
- * 3. `'normal'`
125
- * 4. `'low'`
126
- * 5. `'lowest'`
127
- * 5. `'$document'` at priorities:
128
- * 1. `'highest'`
129
- * 2. `'high'`
130
- * 3. `'normal'`
131
- * 4. `'low'`
132
- * 5. `'lowest'`
133
- */
22
+ * Bubbling emitter mixin for the view document as described in the {@link ~BubblingEmitter} interface.
23
+ *
24
+ * This function creates a class that inherits from the provided `base` and implements `Emitter` interface.
25
+ * The base class must implement {@link module:utils/emittermixin~Emitter} interface.
26
+ *
27
+ * ```ts
28
+ * class BaseClass extends EmitterMixin() {
29
+ * // ...
30
+ * }
31
+ *
32
+ * class MyClass extends BubblingEmitterMixin( BaseClass ) {
33
+ * // This class derives from `BaseClass` and implements the `BubblingEmitter` interface.
34
+ * }
35
+ * ```
36
+ */
37
+ export declare function BubblingEmitterMixin<Base extends Constructor<Emitter>>(base: Base): BubblingEmitterMixinConstructor<Base>;
38
+ /**
39
+ * Bubbling emitter for the view document.
40
+ *
41
+ * Bubbling emitter is triggering events in the context of specified {@link module:engine/view/element~ViewElement view element} name,
42
+ * predefined `'$text'`, `'$root'`, `'$document'` and `'$capture'` contexts, and context matchers provided as a function.
43
+ *
44
+ * Before bubbling starts, listeners for `'$capture'` context are triggered. Then the bubbling starts from the deeper selection
45
+ * position (by firing event on the `'$text'` context) and propagates the view document tree up to the `'$root'` and finally
46
+ * the listeners at `'$document'` context are fired (this is the default context).
47
+ *
48
+ * Examples:
49
+ *
50
+ * ```ts
51
+ * // Listeners registered in the context of the view element names:
52
+ * this.listenTo( viewDocument, 'enter', ( evt, data ) => {
53
+ * // ...
54
+ * }, { context: 'blockquote' } );
55
+ *
56
+ * this.listenTo( viewDocument, 'enter', ( evt, data ) => {
57
+ * // ...
58
+ * }, { context: 'li' } );
59
+ *
60
+ * // Listeners registered in the context of the '$text' and '$root' nodes.
61
+ * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
62
+ * // ...
63
+ * }, { context: '$text', priority: 'high' } );
64
+ *
65
+ * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
66
+ * // ...
67
+ * }, { context: '$root' } );
68
+ *
69
+ * // Listeners registered in the context of custom callback function.
70
+ * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
71
+ * // ...
72
+ * }, { context: isWidget } );
73
+ *
74
+ * this.listenTo( view.document, 'arrowKey', ( evt, data ) => {
75
+ * // ...
76
+ * }, { context: isWidget, priority: 'high' } );
77
+ * ```
78
+ *
79
+ * Example flow for selection in text:
80
+ *
81
+ * ```xml
82
+ * <blockquote><p>Foo[]bar</p></blockquote>
83
+ * ```
84
+ *
85
+ * Fired events on contexts:
86
+ * 1. `'$capture'`
87
+ * 2. `'$text'`
88
+ * 3. `'p'`
89
+ * 4. `'blockquote'`
90
+ * 5. `'$root'`
91
+ * 6. `'$document'`
92
+ *
93
+ * Example flow for selection on element (i.e., Widget):
94
+ *
95
+ * ```xml
96
+ * <blockquote><p>Foo[<widget/>]bar</p></blockquote>
97
+ * ```
98
+ *
99
+ * Fired events on contexts:
100
+ * 1. `'$capture'`
101
+ * 2. *widget* (custom matcher)
102
+ * 3. `'p'`
103
+ * 4. `'blockquote'`
104
+ * 5. `'$root'`
105
+ * 6. `'$document'`
106
+ *
107
+ * There could be multiple listeners registered for the same context and at different priority levels:
108
+ *
109
+ * ```html
110
+ * <p>Foo[]bar</p>
111
+ * ```
112
+ *
113
+ * 1. `'$capture'` at priorities:
114
+ * 1. `'highest'`
115
+ * 2. `'high'`
116
+ * 3. `'normal'`
117
+ * 4. `'low'`
118
+ * 5. `'lowest'`
119
+ * 2. `'$text'` at priorities:
120
+ * 1. `'highest'`
121
+ * 2. `'high'`
122
+ * 3. `'normal'`
123
+ * 4. `'low'`
124
+ * 5. `'lowest'`
125
+ * 3. `'p'` at priorities:
126
+ * 1. `'highest'`
127
+ * 2. `'high'`
128
+ * 3. `'normal'`
129
+ * 4. `'low'`
130
+ * 5. `'lowest'`
131
+ * 4. `'$root'` at priorities:
132
+ * 1. `'highest'`
133
+ * 2. `'high'`
134
+ * 3. `'normal'`
135
+ * 4. `'low'`
136
+ * 5. `'lowest'`
137
+ * 5. `'$document'` at priorities:
138
+ * 1. `'highest'`
139
+ * 2. `'high'`
140
+ * 3. `'normal'`
141
+ * 4. `'low'`
142
+ * 5. `'lowest'`
143
+ */
134
144
  export type BubblingEmitter = Emitter;
135
145
  /**
136
- * A context matcher function.
137
- *
138
- * Should return true for nodes that that match the custom context.
139
- */
146
+ * A context matcher function.
147
+ *
148
+ * Should return true for nodes that that match the custom context.
149
+ */
140
150
  export type BubblingEventContextFunction = (node: ViewNode) => boolean;
141
151
  /**
142
- * Helper type that allows describing bubbling event. Extends `TEvent` so that:
143
- *
144
- * * the event is called with {@link module:engine/view/observer/bubblingeventinfo~BubblingEventInfo}`
145
- * instead of {@link module:utils/eventinfo~EventInfo}, and
146
- * * {@link ~BubblingCallbackOptions} can be specified as additional options.
147
- *
148
- * @typeParam TEvent The event description to extend.
149
- */
152
+ * Helper type that allows describing bubbling event. Extends `TEvent` so that:
153
+ *
154
+ * * the event is called with {@link module:engine/view/observer/bubblingeventinfo~BubblingEventInfo}`
155
+ * instead of {@link module:utils/eventinfo~EventInfo}, and
156
+ * * {@link ~BubblingCallbackOptions} can be specified as additional options.
157
+ *
158
+ * @typeParam TEvent The event description to extend.
159
+ */
150
160
  export type BubblingEvent<TEvent extends BaseEvent> = TEvent & {
151
- eventInfo: BubblingEventInfo<TEvent['name'], (TEvent extends {
152
- return: infer TReturn;
153
- } ? TReturn : unknown)>;
154
- callbackOptions: BubblingCallbackOptions;
161
+ eventInfo: BubblingEventInfo<TEvent["name"], (TEvent extends {
162
+ return: infer TReturn;
163
+ } ? TReturn : unknown)>;
164
+ callbackOptions: BubblingCallbackOptions;
155
165
  };
156
166
  /**
157
- * Additional options for registering a callback.
158
- */
167
+ * Additional options for registering a callback.
168
+ */
159
169
  export interface BubblingCallbackOptions extends CallbackOptions {
160
- /**
161
- * Specifies the context in which the event should be triggered to call the callback.
162
- *
163
- * @see ~BubblingEmitter
164
- */
165
- context?: ArrayOrItem<string | BubblingEventContextFunction>;
170
+ /**
171
+ * Specifies the context in which the event should be triggered to call the callback.
172
+ *
173
+ * @see ~BubblingEmitter
174
+ */
175
+ context?: ArrayOrItem<string | BubblingEventContextFunction>;
166
176
  }
@@ -1,47 +1,50 @@
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/bubblingeventinfo
7
- */
8
- import { EventInfo } from '@ckeditor/ckeditor5-utils';
9
- import { type ViewDocument } from '../document.js';
10
- import { type ViewNode } from '../node.js';
11
- import { type ViewRange } from '../range.js';
6
+ * @module engine/view/observer/bubblingeventinfo
7
+ */
8
+ import { EventInfo } from "@ckeditor/ckeditor5-utils";
9
+ import { type ViewDocument } from "../document.js";
10
+ import { type ViewNode } from "../node.js";
11
+ import { type ViewRange } from "../range.js";
12
12
  /**
13
- * The event object passed to bubbling event callbacks. It is used to provide information about the event as well as a tool to
14
- * manipulate it.
15
- */
16
- export declare class BubblingEventInfo<TName extends string = string, TReturn = unknown> extends EventInfo<TName, TReturn> {
17
- /**
18
- * The view range that the bubbling should start from.
19
- */
20
- readonly startRange: ViewRange;
21
- /**
22
- * The current event phase.
23
- */
24
- private _eventPhase;
25
- /**
26
- * The current bubbling target.
27
- */
28
- private _currentTarget;
29
- /**
30
- * @param source The emitter.
31
- * @param name The event name.
32
- * @param startRange The view range that the bubbling should start from.
33
- */
34
- constructor(source: object, name: TName, startRange: ViewRange);
35
- /**
36
- * The current event phase.
37
- */
38
- get eventPhase(): BubblingEventPhase;
39
- /**
40
- * The current bubbling target.
41
- */
42
- get currentTarget(): ViewDocument | ViewNode | null;
13
+ * The event object passed to bubbling event callbacks. It is used to provide information about the event as well as a tool to
14
+ * manipulate it.
15
+ */
16
+ export declare class BubblingEventInfo<
17
+ TName extends string = string,
18
+ TReturn = unknown
19
+ > extends EventInfo<TName, TReturn> {
20
+ /**
21
+ * The view range that the bubbling should start from.
22
+ */
23
+ readonly startRange: ViewRange;
24
+ /**
25
+ * The current event phase.
26
+ */
27
+ private _eventPhase;
28
+ /**
29
+ * The current bubbling target.
30
+ */
31
+ private _currentTarget;
32
+ /**
33
+ * @param source The emitter.
34
+ * @param name The event name.
35
+ * @param startRange The view range that the bubbling should start from.
36
+ */
37
+ constructor(source: object, name: TName, startRange: ViewRange);
38
+ /**
39
+ * The current event phase.
40
+ */
41
+ get eventPhase(): BubblingEventPhase;
42
+ /**
43
+ * The current bubbling target.
44
+ */
45
+ get currentTarget(): ViewDocument | ViewNode | null;
43
46
  }
44
47
  /**
45
- * The phase the event is in.
46
- */
47
- export type BubblingEventPhase = 'none' | 'capturing' | 'atTarget' | 'bubbling';
48
+ * The phase the event is in.
49
+ */
50
+ export type BubblingEventPhase = "none" | "capturing" | "atTarget" | "bubbling";
@@ -1,43 +1,43 @@
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/clickobserver
7
- */
8
- import { DomEventObserver } from './domeventobserver.js';
9
- import { type ViewDocumentDomEventData } from './domeventdata.js';
10
- import type { BubblingEvent } from './bubblingemittermixin.js';
6
+ * @module engine/view/observer/clickobserver
7
+ */
8
+ import { DomEventObserver } from "./domeventobserver.js";
9
+ import { type ViewDocumentDomEventData } from "./domeventdata.js";
10
+ import type { BubblingEvent } from "./bubblingemittermixin.js";
11
11
  /**
12
- * {@link module:engine/view/document~ViewDocument#event:click Click} event observer.
13
- *
14
- * Note that this observer is not available by default. To make it available it needs to be added to
15
- * {@link module:engine/view/view~EditingView view controller} by a {@link module:engine/view/view~EditingView#addObserver} method.
16
- */
17
- export declare class ClickObserver extends DomEventObserver<'click'> {
18
- /**
19
- * @inheritDoc
20
- */
21
- readonly domEventType: "click";
22
- /**
23
- * @inheritDoc
24
- */
25
- onDomEvent(domEvent: MouseEvent): void;
12
+ * {@link module:engine/view/document~ViewDocument#event:click Click} event observer.
13
+ *
14
+ * Note that this observer is not available by default. To make it available it needs to be added to
15
+ * {@link module:engine/view/view~EditingView view controller} by a {@link module:engine/view/view~EditingView#addObserver} method.
16
+ */
17
+ export declare class ClickObserver extends DomEventObserver<"click"> {
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ readonly domEventType = "click";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ onDomEvent(domEvent: MouseEvent): void;
26
26
  }
27
27
  /**
28
- * Fired when one of the editables has been clicked.
29
- *
30
- * Introduced by {@link module:engine/view/observer/clickobserver~ClickObserver}.
31
- *
32
- * Note that this event is not available by default. To make it available
33
- * {@link module:engine/view/observer/clickobserver~ClickObserver} needs to be added
34
- * to {@link module:engine/view/view~EditingView} by a {@link module:engine/view/view~EditingView#addObserver} method.
35
- *
36
- * @see module:engine/view/observer/clickobserver~ClickObserver
37
- * @eventName module:engine/view/document~ViewDocument#click
38
- * @param data Event data.
39
- */
28
+ * Fired when one of the editables has been clicked.
29
+ *
30
+ * Introduced by {@link module:engine/view/observer/clickobserver~ClickObserver}.
31
+ *
32
+ * Note that this event is not available by default. To make it available
33
+ * {@link module:engine/view/observer/clickobserver~ClickObserver} needs to be added
34
+ * to {@link module:engine/view/view~EditingView} by a {@link module:engine/view/view~EditingView#addObserver} method.
35
+ *
36
+ * @see module:engine/view/observer/clickobserver~ClickObserver
37
+ * @eventName module:engine/view/document~ViewDocument#click
38
+ * @param data Event data.
39
+ */
40
40
  export type ViewDocumentClickEvent = BubblingEvent<{
41
- name: 'click';
42
- args: [data: ViewDocumentDomEventData<MouseEvent>];
41
+ name: "click";
42
+ args: [data: ViewDocumentDomEventData<MouseEvent>];
43
43
  }>;