@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.
- package/dist/controller/datacontroller.d.ts +329 -328
- package/dist/controller/editingcontroller.d.ts +95 -94
- package/dist/conversion/comparemarkers.d.ts +45 -45
- package/dist/conversion/conversion.d.ts +474 -474
- package/dist/conversion/conversionhelpers.d.ts +21 -21
- package/dist/conversion/downcastdispatcher.d.ts +539 -538
- package/dist/conversion/downcasthelpers.d.ts +1129 -1129
- package/dist/conversion/mapper.d.ts +692 -697
- package/dist/conversion/modelconsumable.d.ts +196 -196
- package/dist/conversion/upcastdispatcher.d.ts +483 -482
- package/dist/conversion/upcasthelpers.d.ts +491 -491
- package/dist/conversion/viewconsumable.d.ts +330 -330
- package/dist/dataprocessor/basichtmlwriter.d.ts +15 -15
- package/dist/dataprocessor/dataprocessor.d.ts +57 -57
- package/dist/dataprocessor/htmldataprocessor.d.ts +72 -72
- package/dist/dataprocessor/htmlwriter.d.ts +11 -11
- package/dist/dataprocessor/xmldataprocessor.d.ts +86 -86
- package/dist/dev-utils/model.d.ts +128 -123
- package/dist/dev-utils/operationreplayer.d.ts +49 -49
- package/dist/dev-utils/utils.d.ts +33 -33
- package/dist/dev-utils/view.d.ts +314 -309
- package/dist/engineconfig.d.ts +39 -39
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +150 -150
- package/dist/index.js +34026 -40107
- package/dist/index.js.map +1 -1
- package/dist/legacyerrors.d.ts +0 -4
- package/dist/model/batch.d.ts +86 -86
- package/dist/model/differ.d.ts +504 -504
- package/dist/model/document.d.ts +265 -268
- package/dist/model/documentfragment.d.ts +214 -214
- package/dist/model/documentselection.d.ts +406 -410
- package/dist/model/element.d.ts +182 -182
- package/dist/model/history.d.ts +109 -109
- package/dist/model/item.d.ts +9 -9
- package/dist/model/liveposition.d.ts +70 -69
- package/dist/model/liverange.d.ts +93 -92
- package/dist/model/markercollection.d.ts +317 -324
- package/dist/model/model.d.ts +889 -909
- package/dist/model/node.d.ts +254 -254
- package/dist/model/nodelist.d.ts +110 -110
- package/dist/model/operation/attributeoperation.d.ts +98 -98
- package/dist/model/operation/detachoperation.d.ts +57 -57
- package/dist/model/operation/insertoperation.d.ts +85 -85
- package/dist/model/operation/markeroperation.d.ts +87 -87
- package/dist/model/operation/mergeoperation.d.ts +95 -95
- package/dist/model/operation/moveoperation.d.ts +97 -97
- package/dist/model/operation/nooperation.d.ts +33 -33
- package/dist/model/operation/operation.d.ts +94 -94
- package/dist/model/operation/operationfactory.d.ts +14 -14
- package/dist/model/operation/renameoperation.d.ts +78 -78
- package/dist/model/operation/rootattributeoperation.d.ts +93 -93
- package/dist/model/operation/rootoperation.d.ts +71 -71
- package/dist/model/operation/splitoperation.d.ts +104 -104
- package/dist/model/operation/transform.d.ts +91 -91
- package/dist/model/operation/utils.d.ts +58 -58
- package/dist/model/position.d.ts +535 -535
- package/dist/model/range.d.ts +458 -453
- package/dist/model/rootelement.d.ts +55 -55
- package/dist/model/schema.d.ts +1325 -1327
- package/dist/model/selection.d.ts +452 -471
- package/dist/model/text.d.ts +62 -62
- package/dist/model/textproxy.d.ts +140 -140
- package/dist/model/treewalker.d.ts +190 -190
- package/dist/model/typecheckable.d.ts +281 -281
- package/dist/model/utils/autoparagraphing.d.ts +29 -29
- package/dist/model/utils/deletecontent.d.ts +68 -68
- package/dist/model/utils/getselectedcontent.d.ts +27 -27
- package/dist/model/utils/insertcontent.d.ts +42 -42
- package/dist/model/utils/insertobject.d.ts +41 -41
- package/dist/model/utils/modifyselection.d.ts +44 -44
- package/dist/model/utils/selection-post-fixer.d.ts +71 -71
- package/dist/model/writer.d.ts +854 -854
- package/dist/view/attributeelement.d.ts +123 -123
- package/dist/view/containerelement.d.ts +49 -49
- package/dist/view/datatransfer.d.ts +70 -70
- package/dist/view/document.d.ts +175 -177
- package/dist/view/documentfragment.d.ts +158 -157
- package/dist/view/documentselection.d.ts +308 -307
- package/dist/view/domconverter.d.ts +612 -657
- package/dist/view/downcastwriter.d.ts +1006 -1006
- package/dist/view/editableelement.d.ts +64 -63
- package/dist/view/element.d.ts +754 -754
- package/dist/view/elementdefinition.d.ts +79 -79
- package/dist/view/emptyelement.d.ts +42 -42
- package/dist/view/filler.d.ts +75 -75
- package/dist/view/item.d.ts +9 -9
- package/dist/view/matcher.d.ts +412 -487
- package/dist/view/node.d.ts +164 -163
- package/dist/view/observer/arrowkeysobserver.d.ts +37 -37
- package/dist/view/observer/bubblingemittermixin.d.ts +163 -153
- package/dist/view/observer/bubblingeventinfo.d.ts +45 -42
- package/dist/view/observer/clickobserver.d.ts +36 -36
- package/dist/view/observer/compositionobserver.d.ts +67 -67
- package/dist/view/observer/domeventdata.d.ts +46 -46
- package/dist/view/observer/domeventobserver.d.ts +77 -74
- package/dist/view/observer/fakeselectionobserver.d.ts +42 -42
- package/dist/view/observer/focusobserver.d.ts +84 -84
- package/dist/view/observer/inputobserver.d.ts +76 -76
- package/dist/view/observer/keyobserver.d.ts +53 -53
- package/dist/view/observer/mouseobserver.d.ts +73 -73
- package/dist/view/observer/mutationobserver.d.ts +101 -101
- package/dist/view/observer/observer.d.ts +84 -83
- package/dist/view/observer/pointerobserver.d.ts +63 -63
- package/dist/view/observer/selectionobserver.d.ts +136 -136
- package/dist/view/observer/tabobserver.d.ts +38 -38
- package/dist/view/observer/touchobserver.d.ts +60 -60
- package/dist/view/placeholder.d.ts +80 -80
- package/dist/view/position.d.ts +187 -187
- package/dist/view/range.d.ts +282 -282
- package/dist/view/rawelement.d.ts +72 -72
- package/dist/view/renderer.d.ts +270 -272
- package/dist/view/rooteditableelement.d.ts +43 -43
- package/dist/view/selection.d.ts +356 -369
- package/dist/view/styles/background.d.ts +15 -15
- package/dist/view/styles/border.d.ts +27 -27
- package/dist/view/styles/margin.d.ts +12 -12
- package/dist/view/styles/padding.d.ts +12 -12
- package/dist/view/styles/utils.d.ts +72 -72
- package/dist/view/stylesmap.d.ts +715 -715
- package/dist/view/text.d.ts +75 -75
- package/dist/view/textproxy.d.ts +92 -92
- package/dist/view/tokenlist.d.ts +104 -104
- package/dist/view/treewalker.d.ts +201 -201
- package/dist/view/typecheckable.d.ts +445 -445
- package/dist/view/uielement.d.ts +93 -93
- package/dist/view/upcastwriter.d.ts +412 -412
- package/dist/view/view.d.ts +466 -469
- package/package.json +2 -2
|
@@ -1,166 +1,176 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
import { type ArrayOrItem, type Emitter, type BaseEvent, type CallbackOptions, type Constructor, type Mixed } from
|
|
9
|
-
import { BubblingEventInfo } from
|
|
10
|
-
import { type ViewNode } from
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
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
|
-
|
|
137
|
-
|
|
138
|
-
|
|
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
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
161
|
+
eventInfo: BubblingEventInfo<TEvent["name"], (TEvent extends {
|
|
162
|
+
return: infer TReturn;
|
|
163
|
+
} ? TReturn : unknown)>;
|
|
164
|
+
callbackOptions: BubblingCallbackOptions;
|
|
155
165
|
};
|
|
156
166
|
/**
|
|
157
|
-
|
|
158
|
-
|
|
167
|
+
* Additional options for registering a callback.
|
|
168
|
+
*/
|
|
159
169
|
export interface BubblingCallbackOptions extends CallbackOptions {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
-
|
|
3
|
-
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
import { EventInfo } from
|
|
9
|
-
import { type ViewDocument } from
|
|
10
|
-
import { type ViewNode } from
|
|
11
|
-
import { type ViewRange } from
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export declare class BubblingEventInfo<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
-
|
|
46
|
-
|
|
47
|
-
export type BubblingEventPhase =
|
|
48
|
+
* The phase the event is in.
|
|
49
|
+
*/
|
|
50
|
+
export type BubblingEventPhase = "none" | "capturing" | "atTarget" | "bubbling";
|
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
import { DomEventObserver } from
|
|
9
|
-
import { type ViewDocumentDomEventData } from
|
|
10
|
-
import type { BubblingEvent } from
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export declare class ClickObserver extends DomEventObserver<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
-
|
|
42
|
-
|
|
41
|
+
name: "click";
|
|
42
|
+
args: [data: ViewDocumentDomEventData<MouseEvent>];
|
|
43
43
|
}>;
|