@ckeditor/ckeditor5-engine 48.2.0 → 48.3.0-alpha.1
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,115 +1,115 @@
|
|
|
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 { Observer } from
|
|
9
|
-
import { type ViewDomConverter } from
|
|
10
|
-
import { type EditingView } from
|
|
11
|
-
import { type ViewNode } from
|
|
12
|
-
import type { ViewDocumentChangeType } from
|
|
6
|
+
* @module engine/view/observer/mutationobserver
|
|
7
|
+
*/
|
|
8
|
+
import { Observer } from "./observer.js";
|
|
9
|
+
import { type ViewDomConverter } from "../domconverter.js";
|
|
10
|
+
import { type EditingView } from "../view.js";
|
|
11
|
+
import { type ViewNode } from "../node.js";
|
|
12
|
+
import type { ViewDocumentChangeType } from "../document.js";
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
* Mutation observer's role is to watch for any DOM changes inside the editor that weren't
|
|
15
|
+
* done by the editor's {@link module:engine/view/renderer~ViewRenderer} itself and reverting these changes.
|
|
16
|
+
*
|
|
17
|
+
* It does this by observing all mutations in the DOM, marking related view elements as changed and calling
|
|
18
|
+
* {@link module:engine/view/renderer~ViewRenderer#render}. Because all mutated nodes are marked as
|
|
19
|
+
* "to be rendered" and the {@link module:engine/view/renderer~ViewRenderer#render `render()`} method is called,
|
|
20
|
+
* all changes are reverted in the DOM (the DOM is synced with the editor's view structure).
|
|
21
|
+
*
|
|
22
|
+
* Note that this observer is attached by the {@link module:engine/view/view~EditingView} and is available by default.
|
|
23
|
+
*/
|
|
24
24
|
export declare class MutationObserver extends Observer {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
|
|
25
|
+
/**
|
|
26
|
+
* Reference to the {@link module:engine/view/view~EditingView#domConverter}.
|
|
27
|
+
*/
|
|
28
|
+
readonly domConverter: ViewDomConverter;
|
|
29
|
+
/**
|
|
30
|
+
* Native mutation observer config.
|
|
31
|
+
*/
|
|
32
|
+
private readonly _config;
|
|
33
|
+
/**
|
|
34
|
+
* Observed DOM elements.
|
|
35
|
+
*/
|
|
36
|
+
private readonly _domElements;
|
|
37
|
+
/**
|
|
38
|
+
* Native mutation observer.
|
|
39
|
+
*/
|
|
40
|
+
private _mutationObserver;
|
|
41
|
+
/**
|
|
42
|
+
* @inheritDoc
|
|
43
|
+
*/
|
|
44
|
+
constructor(view: EditingView);
|
|
45
|
+
/**
|
|
46
|
+
* Synchronously handles mutations and empties the queue.
|
|
47
|
+
*/
|
|
48
|
+
flush(): void;
|
|
49
|
+
/**
|
|
50
|
+
* @inheritDoc
|
|
51
|
+
*/
|
|
52
|
+
observe(domElement: HTMLElement): void;
|
|
53
|
+
/**
|
|
54
|
+
* @inheritDoc
|
|
55
|
+
*/
|
|
56
|
+
override stopObserving(domElement: HTMLElement): void;
|
|
57
|
+
/**
|
|
58
|
+
* @inheritDoc
|
|
59
|
+
*/
|
|
60
|
+
override enable(): void;
|
|
61
|
+
/**
|
|
62
|
+
* @inheritDoc
|
|
63
|
+
*/
|
|
64
|
+
override disable(): void;
|
|
65
|
+
/**
|
|
66
|
+
* @inheritDoc
|
|
67
|
+
*/
|
|
68
|
+
override destroy(): void;
|
|
69
|
+
/**
|
|
70
|
+
* Handles mutations. Mark view elements to sync and call render.
|
|
71
|
+
*
|
|
72
|
+
* @param domMutations Array of native mutations.
|
|
73
|
+
*/
|
|
74
|
+
private _onMutations;
|
|
75
|
+
/**
|
|
76
|
+
* Checks if mutation was generated by the browser inserting bogus br on the end of the block element.
|
|
77
|
+
* Such mutations are generated while pressing space or performing native spellchecker correction
|
|
78
|
+
* on the end of the block element in Firefox browser.
|
|
79
|
+
*
|
|
80
|
+
* @param mutation Native mutation object.
|
|
81
|
+
*/
|
|
82
|
+
private _isBogusBrMutation;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
85
|
+
* Event fired on DOM mutations detected.
|
|
86
|
+
*
|
|
87
|
+
* This event is introduced by {@link module:engine/view/observer/mutationobserver~MutationObserver} and available
|
|
88
|
+
* by default in all editor instances (attached by {@link module:engine/view/view~EditingView}).
|
|
89
|
+
*
|
|
90
|
+
* @eventName module:engine/view/document~ViewDocument#mutations
|
|
91
|
+
* @param data Event data containing detailed information about the event.
|
|
92
|
+
*/
|
|
93
93
|
export type ViewDocumentMutationsEvent = {
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
name: "mutations";
|
|
95
|
+
args: [data: ViewDocumentMutationEventData];
|
|
96
96
|
};
|
|
97
97
|
/**
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
* The value of {@link ~ViewDocumentMutationsEvent}.
|
|
99
|
+
*/
|
|
100
100
|
export type ViewDocumentMutationEventData = {
|
|
101
|
-
|
|
101
|
+
mutations: Array<ObserverMutationData>;
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
* A single entry in {@link ~ViewDocumentMutationEventData} mutations array.
|
|
105
|
+
*/
|
|
106
106
|
export type ObserverMutationData = {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
107
|
+
/**
|
|
108
|
+
* Type of mutation detected.
|
|
109
|
+
*/
|
|
110
|
+
type: ViewDocumentChangeType;
|
|
111
|
+
/**
|
|
112
|
+
* The view node related to the detected mutation.
|
|
113
|
+
*/
|
|
114
|
+
node: ViewNode;
|
|
115
115
|
};
|
|
@@ -1,89 +1,90 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import { type ViewDocument } from '../document.js';
|
|
6
|
-
import { type EditingView } from '../view.js';
|
|
7
|
-
declare const Observer_base: {
|
|
8
|
-
new (): import("@ckeditor/ckeditor5-utils").DomEmitter;
|
|
9
|
-
prototype: import("@ckeditor/ckeditor5-utils").DomEmitter;
|
|
10
|
-
};
|
|
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
|
+
*/
|
|
11
5
|
/**
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
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
|
-
|
|
6
|
+
* @module engine/view/observer/observer
|
|
7
|
+
*/
|
|
8
|
+
import { type DomEmitterMixinConstructor } from "@ckeditor/ckeditor5-utils";
|
|
9
|
+
import { type ViewDocument } from "../document.js";
|
|
10
|
+
import { type EditingView } from "../view.js";
|
|
11
|
+
declare const ObserverBase: DomEmitterMixinConstructor;
|
|
12
|
+
/**
|
|
13
|
+
* Abstract base observer class. Observers are classes which listen to DOM events, do the preliminary
|
|
14
|
+
* processing and fire events on the {@link module:engine/view/document~ViewDocument} objects.
|
|
15
|
+
* Observers can also add features to the view, for instance by updating its status or marking elements
|
|
16
|
+
* which need a refresh on DOM events.
|
|
17
|
+
*/
|
|
18
|
+
export declare abstract class Observer extends ObserverBase {
|
|
19
|
+
/**
|
|
20
|
+
* An instance of the view controller.
|
|
21
|
+
*/
|
|
22
|
+
readonly view: EditingView;
|
|
23
|
+
/**
|
|
24
|
+
* A reference to the {@link module:engine/view/document~ViewDocument} object.
|
|
25
|
+
*/
|
|
26
|
+
readonly document: ViewDocument;
|
|
27
|
+
/**
|
|
28
|
+
* The state of the observer. If it is disabled, no events will be fired.
|
|
29
|
+
*/
|
|
30
|
+
private _isEnabled;
|
|
31
|
+
/**
|
|
32
|
+
* Creates an instance of the observer.
|
|
33
|
+
*/
|
|
34
|
+
constructor(view: EditingView);
|
|
35
|
+
/**
|
|
36
|
+
* The state of the observer. If it is disabled, no events will be fired.
|
|
37
|
+
*/
|
|
38
|
+
get isEnabled(): boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Enables the observer. This method is called when the observer is registered to the
|
|
41
|
+
* {@link module:engine/view/view~EditingView} and after {@link module:engine/view/view~EditingView#forceRender rendering}
|
|
42
|
+
* (all observers are {@link #disable disabled} before rendering).
|
|
43
|
+
*
|
|
44
|
+
* A typical use case for disabling observers is that mutation observers need to be disabled for the rendering.
|
|
45
|
+
* However, a child class may not need to be disabled, so it can implement an empty method.
|
|
46
|
+
*
|
|
47
|
+
* @see module:engine/view/observer/observer~Observer#disable
|
|
48
|
+
*/
|
|
49
|
+
enable(): void;
|
|
50
|
+
/**
|
|
51
|
+
* Disables the observer. This method is called before
|
|
52
|
+
* {@link module:engine/view/view~EditingView#forceRender rendering} to prevent firing events during rendering.
|
|
53
|
+
*
|
|
54
|
+
* @see module:engine/view/observer/observer~Observer#enable
|
|
55
|
+
*/
|
|
56
|
+
disable(): void;
|
|
57
|
+
/**
|
|
58
|
+
* Disables and destroys the observer, among others removes event listeners created by the observer.
|
|
59
|
+
*/
|
|
60
|
+
destroy(): void;
|
|
61
|
+
/**
|
|
62
|
+
* Checks whether a given DOM event should be ignored (should not be turned into a synthetic view document event).
|
|
63
|
+
*
|
|
64
|
+
* Currently, an event will be ignored only if its target or any of its ancestors has the `data-cke-ignore-events` attribute.
|
|
65
|
+
* This attribute can be used inside the structures generated by
|
|
66
|
+
* {@link module:engine/view/downcastwriter~ViewDowncastWriter#createUIElement `ViewDowncastWriter#createUIElement()`} to ignore events
|
|
67
|
+
* fired within a UI that should be excluded from CKEditor 5's realms.
|
|
68
|
+
*
|
|
69
|
+
* @param domTarget The DOM event target to check (usually an element, sometimes a text node and
|
|
70
|
+
* potentially sometimes a document, too).
|
|
71
|
+
* @returns Whether this event should be ignored by the observer.
|
|
72
|
+
*/
|
|
73
|
+
checkShouldIgnoreEventFromTarget(domTarget: Node | null): boolean;
|
|
74
|
+
/**
|
|
75
|
+
* Starts observing given DOM element.
|
|
76
|
+
*
|
|
77
|
+
* @param domElement DOM element to observe.
|
|
78
|
+
* @param name The name of the related root element.
|
|
79
|
+
*/
|
|
80
|
+
abstract observe(domElement: HTMLElement, name: string): void;
|
|
81
|
+
/**
|
|
82
|
+
* Stops observing given DOM element.
|
|
83
|
+
*/
|
|
84
|
+
abstract stopObserving(domElement: HTMLElement): void;
|
|
84
85
|
}
|
|
85
86
|
/**
|
|
86
|
-
|
|
87
|
-
|
|
87
|
+
* The constructor of {@link ~Observer} subclass.
|
|
88
|
+
*/
|
|
88
89
|
export type ObserverConstructor = new (view: EditingView) => Observer;
|
|
89
90
|
export {};
|
|
@@ -1,76 +1,76 @@
|
|
|
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
|
|
6
|
+
* @module engine/view/observer/pointerobserver
|
|
7
|
+
*/
|
|
8
|
+
import { DomEventObserver } from "./domeventobserver.js";
|
|
9
|
+
import { type ViewDocumentDomEventData } from "./domeventdata.js";
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export declare class PointerObserver extends DomEventObserver<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
11
|
+
* Pointer events observer.
|
|
12
|
+
*
|
|
13
|
+
* Note that this observer is not available by default. To make it available it needs to be added to
|
|
14
|
+
* {@link module:engine/view/view~EditingView} by {@link module:engine/view/view~EditingView#addObserver} method.
|
|
15
|
+
*/
|
|
16
|
+
export declare class PointerObserver extends DomEventObserver<"pointerdown" | "pointerup" | "pointermove"> {
|
|
17
|
+
/**
|
|
18
|
+
* @inheritDoc
|
|
19
|
+
*/
|
|
20
|
+
readonly domEventType: readonly ["pointerdown", "pointerup", "pointermove"];
|
|
21
|
+
/**
|
|
22
|
+
* @inheritDoc
|
|
23
|
+
*/
|
|
24
|
+
onDomEvent(domEvent: PointerEvent): void;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
27
|
+
* Fired when a pointer is down on one of the editing roots of the editor.
|
|
28
|
+
*
|
|
29
|
+
* Introduced by {@link module:engine/view/observer/pointerobserver~PointerObserver}.
|
|
30
|
+
*
|
|
31
|
+
* Note that this event is not available by default. To make it available,
|
|
32
|
+
* {@link module:engine/view/observer/pointerobserver~PointerObserver} needs to be added to {@link module:engine/view/view~EditingView}
|
|
33
|
+
* by the {@link module:engine/view/view~EditingView#addObserver} method.
|
|
34
|
+
*
|
|
35
|
+
* @see module:engine/view/observer/pointerobserver~PointerObserver
|
|
36
|
+
* @eventName module:engine/view/document~ViewDocument#pointerdown
|
|
37
|
+
* @param data The event data.
|
|
38
|
+
*/
|
|
39
39
|
export type ViewDocumentPointerDownEvent = {
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
name: "pointerdown";
|
|
41
|
+
args: [data: ViewDocumentDomEventData<PointerEvent>];
|
|
42
42
|
};
|
|
43
43
|
/**
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
44
|
+
* Fired when a pointer is up on one of the editing roots of the editor.
|
|
45
|
+
*
|
|
46
|
+
* Introduced by {@link module:engine/view/observer/pointerobserver~PointerObserver}.
|
|
47
|
+
*
|
|
48
|
+
* Note that this event is not available by default. To make it available,
|
|
49
|
+
* {@link module:engine/view/observer/pointerobserver~PointerObserver} needs to be added to {@link module:engine/view/view~EditingView}
|
|
50
|
+
* by the {@link module:engine/view/view~EditingView#addObserver} method.
|
|
51
|
+
*
|
|
52
|
+
* @see module:engine/view/observer/pointerobserver~PointerObserver
|
|
53
|
+
* @eventName module:engine/view/document~ViewDocument#pointerup
|
|
54
|
+
* @param data The event data.
|
|
55
|
+
*/
|
|
56
56
|
export type ViewDocumentPointerUpEvent = {
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
name: "pointerup";
|
|
58
|
+
args: [data: ViewDocumentDomEventData<PointerEvent>];
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
61
|
+
* Fired when a pointer is moved on one of the editing roots of the editor.
|
|
62
|
+
*
|
|
63
|
+
* Introduced by {@link module:engine/view/observer/pointerobserver~PointerObserver}.
|
|
64
|
+
*
|
|
65
|
+
* Note that this event is not available by default. To make it available,
|
|
66
|
+
* {@link module:engine/view/observer/pointerobserver~PointerObserver} needs to be added to {@link module:engine/view/view~EditingView}
|
|
67
|
+
* by the {@link module:engine/view/view~EditingView#addObserver} method.
|
|
68
|
+
*
|
|
69
|
+
* @see module:engine/view/observer/pointerobserver~PointerObserver
|
|
70
|
+
* @eventName module:engine/view/document~ViewDocument#pointermove
|
|
71
|
+
* @param data The event data.
|
|
72
|
+
*/
|
|
73
73
|
export type ViewDocumentPointerMoveEvent = {
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
name: "pointermove";
|
|
75
|
+
args: [data: ViewDocumentDomEventData<PointerEvent>];
|
|
76
76
|
};
|