@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,80 +1,80 @@
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/text
7
- */
8
- import { ViewNode } from './node.js';
9
- import { type ViewDocument } from './document.js';
6
+ * @module engine/view/text
7
+ */
8
+ import { ViewNode } from "./node.js";
9
+ import { type ViewDocument } from "./document.js";
10
10
  /**
11
- * Tree view text node.
12
- *
13
- * The constructor of this class should not be used directly. To create a new text node instance
14
- * use the {@link module:engine/view/downcastwriter~ViewDowncastWriter#createText `ViewDowncastWriter#createText()`}
15
- * method when working on data downcasted from the model or the
16
- * {@link module:engine/view/upcastwriter~ViewUpcastWriter#createText `ViewUpcastWriter#createText()`}
17
- * method when working on non-semantic views.
18
- */
11
+ * Tree view text node.
12
+ *
13
+ * The constructor of this class should not be used directly. To create a new text node instance
14
+ * use the {@link module:engine/view/downcastwriter~ViewDowncastWriter#createText `ViewDowncastWriter#createText()`}
15
+ * method when working on data downcasted from the model or the
16
+ * {@link module:engine/view/upcastwriter~ViewUpcastWriter#createText `ViewUpcastWriter#createText()`}
17
+ * method when working on non-semantic views.
18
+ */
19
19
  export declare class ViewText extends ViewNode {
20
- /**
21
- * The text content.
22
- *
23
- * Setting the data fires the {@link module:engine/view/node~ViewNode#event:change:text change event}.
24
- */
25
- private _textData;
26
- /**
27
- * Creates a tree view text node.
28
- *
29
- * @see module:engine/view/downcastwriter~ViewDowncastWriter#createText
30
- * @internal
31
- * @param document The document instance to which this text node belongs.
32
- * @param data The text's data.
33
- */
34
- constructor(document: ViewDocument, data: string);
35
- /**
36
- * The text content.
37
- */
38
- get data(): string;
39
- /**
40
- * The `_data` property is controlled by a getter and a setter.
41
- *
42
- * The getter is required when using the addition assignment operator on protected property:
43
- *
44
- * ```ts
45
- * const foo = downcastWriter.createText( 'foo' );
46
- * const bar = downcastWriter.createText( 'bar' );
47
- *
48
- * foo._data += bar.data; // executes: `foo._data = foo._data + bar.data`
49
- * console.log( foo.data ); // prints: 'foobar'
50
- * ```
51
- *
52
- * If the protected getter didn't exist, `foo._data` will return `undefined` and result of the merge will be invalid.
53
- *
54
- * The setter sets data and fires the {@link module:engine/view/node~ViewNode#event:change:text change event}.
55
- *
56
- * @internal
57
- */
58
- get _data(): string;
59
- set _data(data: string);
60
- /**
61
- * Checks if this text node is similar to other text node.
62
- * Both nodes should have the same data to be considered as similar.
63
- *
64
- * @param otherNode Node to check if it is same as this node.
65
- */
66
- isSimilar(otherNode: ViewNode): boolean;
67
- /**
68
- * Converts `ViewText` instance to plain object and returns it.
69
- *
70
- * @returns `ViewText` instance converted to plain object.
71
- */
72
- toJSON(): unknown;
73
- /**
74
- * Clones this node.
75
- *
76
- * @internal
77
- * @returns Text node that is a clone of this node.
78
- */
79
- _clone(): ViewText;
20
+ /**
21
+ * The text content.
22
+ *
23
+ * Setting the data fires the {@link module:engine/view/node~ViewNode#event:change:text change event}.
24
+ */
25
+ private _textData;
26
+ /**
27
+ * Creates a tree view text node.
28
+ *
29
+ * @see module:engine/view/downcastwriter~ViewDowncastWriter#createText
30
+ * @internal
31
+ * @param document The document instance to which this text node belongs.
32
+ * @param data The text's data.
33
+ */
34
+ constructor(document: ViewDocument, data: string);
35
+ /**
36
+ * The text content.
37
+ */
38
+ get data(): string;
39
+ /**
40
+ * The `_data` property is controlled by a getter and a setter.
41
+ *
42
+ * The getter is required when using the addition assignment operator on protected property:
43
+ *
44
+ * ```ts
45
+ * const foo = downcastWriter.createText( 'foo' );
46
+ * const bar = downcastWriter.createText( 'bar' );
47
+ *
48
+ * foo._data += bar.data; // executes: `foo._data = foo._data + bar.data`
49
+ * console.log( foo.data ); // prints: 'foobar'
50
+ * ```
51
+ *
52
+ * If the protected getter didn't exist, `foo._data` will return `undefined` and result of the merge will be invalid.
53
+ *
54
+ * The setter sets data and fires the {@link module:engine/view/node~ViewNode#event:change:text change event}.
55
+ *
56
+ * @internal
57
+ */
58
+ get _data(): string;
59
+ set _data(data: string);
60
+ /**
61
+ * Checks if this text node is similar to other text node.
62
+ * Both nodes should have the same data to be considered as similar.
63
+ *
64
+ * @param otherNode Node to check if it is same as this node.
65
+ */
66
+ isSimilar(otherNode: ViewNode): boolean;
67
+ /**
68
+ * Converts `ViewText` instance to plain object and returns it.
69
+ *
70
+ * @returns `ViewText` instance converted to plain object.
71
+ */
72
+ override toJSON(): unknown;
73
+ /**
74
+ * Clones this node.
75
+ *
76
+ * @internal
77
+ * @returns Text node that is a clone of this node.
78
+ */
79
+ _clone(): ViewText;
80
80
  }
@@ -1,97 +1,97 @@
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/textproxy
7
- */
8
- import { ViewTypeCheckable } from './typecheckable.js';
9
- import { type ViewDocument } from './document.js';
10
- import { type ViewDocumentFragment } from './documentfragment.js';
11
- import { type ViewElement } from './element.js';
12
- import { type ViewNode } from './node.js';
13
- import { type ViewText } from './text.js';
6
+ * @module engine/view/textproxy
7
+ */
8
+ import { ViewTypeCheckable } from "./typecheckable.js";
9
+ import { type ViewDocument } from "./document.js";
10
+ import { type ViewDocumentFragment } from "./documentfragment.js";
11
+ import { type ViewElement } from "./element.js";
12
+ import { type ViewNode } from "./node.js";
13
+ import { type ViewText } from "./text.js";
14
14
  /**
15
- * ViewTextProxy is a wrapper for substring of {@link module:engine/view/text~ViewText}. Instance of this class is created by
16
- * {@link module:engine/view/treewalker~ViewTreeWalker} when only a part of {@link module:engine/view/text~ViewText} needs to be returned.
17
- *
18
- * `ViewTextProxy` has an API similar to {@link module:engine/view/text~ViewText Text} and allows to do most of the common tasks performed
19
- * on view nodes.
20
- *
21
- * **Note:** Some `ViewTextProxy` instances may represent whole text node, not just a part of it.
22
- * See {@link module:engine/view/textproxy~ViewTextProxy#isPartial}.
23
- *
24
- * **Note:** `ViewTextProxy` is a readonly interface.
25
- *
26
- * **Note:** `ViewTextProxy` instances are created on the fly basing
27
- * on the current state of parent {@link module:engine/view/text~ViewText}.
28
- * Because of this it is highly unrecommended to store references to `TextProxy instances because they might get
29
- * invalidated due to operations on Document. Also ViewTextProxy is not a {@link module:engine/view/node~ViewNode} so it cannot be
30
- * inserted as a child of {@link module:engine/view/element~ViewElement}.
31
- *
32
- * `ViewTextProxy` instances are created by {@link module:engine/view/treewalker~ViewTreeWalker view tree walker}.
33
- * You should not need to create an instance of this class by your own.
34
- */
15
+ * ViewTextProxy is a wrapper for substring of {@link module:engine/view/text~ViewText}. Instance of this class is created by
16
+ * {@link module:engine/view/treewalker~ViewTreeWalker} when only a part of {@link module:engine/view/text~ViewText} needs to be returned.
17
+ *
18
+ * `ViewTextProxy` has an API similar to {@link module:engine/view/text~ViewText Text} and allows to do most of the common tasks performed
19
+ * on view nodes.
20
+ *
21
+ * **Note:** Some `ViewTextProxy` instances may represent whole text node, not just a part of it.
22
+ * See {@link module:engine/view/textproxy~ViewTextProxy#isPartial}.
23
+ *
24
+ * **Note:** `ViewTextProxy` is a readonly interface.
25
+ *
26
+ * **Note:** `ViewTextProxy` instances are created on the fly basing
27
+ * on the current state of parent {@link module:engine/view/text~ViewText}.
28
+ * Because of this it is highly unrecommended to store references to `TextProxy instances because they might get
29
+ * invalidated due to operations on Document. Also ViewTextProxy is not a {@link module:engine/view/node~ViewNode} so it cannot be
30
+ * inserted as a child of {@link module:engine/view/element~ViewElement}.
31
+ *
32
+ * `ViewTextProxy` instances are created by {@link module:engine/view/treewalker~ViewTreeWalker view tree walker}.
33
+ * You should not need to create an instance of this class by your own.
34
+ */
35
35
  export declare class ViewTextProxy extends ViewTypeCheckable {
36
- /**
37
- * Reference to the {@link module:engine/view/text~ViewText} element which ViewTextProxy is a substring.
38
- */
39
- readonly textNode: ViewText;
40
- /**
41
- * Text data represented by this text proxy.
42
- */
43
- readonly data: string;
44
- /**
45
- * Offset in the `textNode` where this `ViewTextProxy` instance starts.
46
- */
47
- readonly offsetInText: number;
48
- /**
49
- * Creates a text proxy.
50
- *
51
- * @internal
52
- * @param textNode Text node which part is represented by this text proxy.
53
- * @param offsetInText Offset in {@link module:engine/view/textproxy~ViewTextProxy#textNode text node}
54
- * from which the text proxy starts.
55
- * @param length Text proxy length, that is how many text node's characters, starting from `offsetInText` it represents.
56
- */
57
- constructor(textNode: ViewText, offsetInText: number, length: number);
58
- /**
59
- * Offset size of this node.
60
- */
61
- get offsetSize(): number;
62
- /**
63
- * Flag indicating whether `ViewTextProxy` instance covers only part of the original {@link module:engine/view/text~ViewText text node}
64
- * (`true`) or the whole text node (`false`).
65
- *
66
- * This is `false` when text proxy starts at the very beginning of {@link module:engine/view/textproxy~ViewTextProxy#textNode textNode}
67
- * ({@link module:engine/view/textproxy~ViewTextProxy#offsetInText offsetInText} equals `0`) and text proxy sizes is equal to
68
- * text node size.
69
- */
70
- get isPartial(): boolean;
71
- /**
72
- * Parent of this text proxy, which is same as parent of text node represented by this text proxy.
73
- */
74
- get parent(): ViewElement | ViewDocumentFragment | null;
75
- /**
76
- * Root of this text proxy, which is same as root of text node represented by this text proxy.
77
- */
78
- get root(): ViewNode | ViewDocumentFragment;
79
- /**
80
- * {@link module:engine/view/document~ViewDocument View document} that owns this text proxy, or `null` if the text proxy is inside
81
- * {@link module:engine/view/documentfragment~ViewDocumentFragment document fragment}.
82
- */
83
- get document(): ViewDocument | null;
84
- /**
85
- * Returns ancestors array of this text proxy.
86
- *
87
- * @param options Options object.
88
- * @param options.includeSelf When set to `true`, textNode will be also included in parent's array.
89
- * @param options.parentFirst When set to `true`, array will be sorted from text proxy parent to
90
- * root element, otherwise root element will be the first item in the array.
91
- * @returns Array with ancestors.
92
- */
93
- getAncestors(options?: {
94
- includeSelf?: boolean;
95
- parentFirst?: boolean;
96
- }): Array<ViewText | ViewElement | ViewDocumentFragment>;
36
+ /**
37
+ * Reference to the {@link module:engine/view/text~ViewText} element which ViewTextProxy is a substring.
38
+ */
39
+ readonly textNode: ViewText;
40
+ /**
41
+ * Text data represented by this text proxy.
42
+ */
43
+ readonly data: string;
44
+ /**
45
+ * Offset in the `textNode` where this `ViewTextProxy` instance starts.
46
+ */
47
+ readonly offsetInText: number;
48
+ /**
49
+ * Creates a text proxy.
50
+ *
51
+ * @internal
52
+ * @param textNode Text node which part is represented by this text proxy.
53
+ * @param offsetInText Offset in {@link module:engine/view/textproxy~ViewTextProxy#textNode text node}
54
+ * from which the text proxy starts.
55
+ * @param length Text proxy length, that is how many text node's characters, starting from `offsetInText` it represents.
56
+ */
57
+ constructor(textNode: ViewText, offsetInText: number, length: number);
58
+ /**
59
+ * Offset size of this node.
60
+ */
61
+ get offsetSize(): number;
62
+ /**
63
+ * Flag indicating whether `ViewTextProxy` instance covers only part of the original {@link module:engine/view/text~ViewText text node}
64
+ * (`true`) or the whole text node (`false`).
65
+ *
66
+ * This is `false` when text proxy starts at the very beginning of {@link module:engine/view/textproxy~ViewTextProxy#textNode textNode}
67
+ * ({@link module:engine/view/textproxy~ViewTextProxy#offsetInText offsetInText} equals `0`) and text proxy sizes is equal to
68
+ * text node size.
69
+ */
70
+ get isPartial(): boolean;
71
+ /**
72
+ * Parent of this text proxy, which is same as parent of text node represented by this text proxy.
73
+ */
74
+ get parent(): ViewElement | ViewDocumentFragment | null;
75
+ /**
76
+ * Root of this text proxy, which is same as root of text node represented by this text proxy.
77
+ */
78
+ get root(): ViewNode | ViewDocumentFragment;
79
+ /**
80
+ * {@link module:engine/view/document~ViewDocument View document} that owns this text proxy, or `null` if the text proxy is inside
81
+ * {@link module:engine/view/documentfragment~ViewDocumentFragment document fragment}.
82
+ */
83
+ get document(): ViewDocument | null;
84
+ /**
85
+ * Returns ancestors array of this text proxy.
86
+ *
87
+ * @param options Options object.
88
+ * @param options.includeSelf When set to `true`, textNode will be also included in parent's array.
89
+ * @param options.parentFirst When set to `true`, array will be sorted from text proxy parent to
90
+ * root element, otherwise root element will be the first item in the array.
91
+ * @returns Array with ancestors.
92
+ */
93
+ getAncestors(options?: {
94
+ includeSelf?: boolean;
95
+ parentFirst?: boolean;
96
+ }): Array<ViewText | ViewElement | ViewDocumentFragment>;
97
97
  }
@@ -1,109 +1,109 @@
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/tokenlist
7
- */
8
- import { type ArrayOrItem } from '@ckeditor/ckeditor5-utils';
9
- import type { ViewElementAttributeValue } from './element.js';
6
+ * @module engine/view/tokenlist
7
+ */
8
+ import { type ArrayOrItem } from "@ckeditor/ckeditor5-utils";
9
+ import type { ViewElementAttributeValue } from "./element.js";
10
10
  /**
11
- * Token list. Allows handling (adding, removing, retrieving) a set of tokens (for example class names).
12
- */
11
+ * Token list. Allows handling (adding, removing, retrieving) a set of tokens (for example class names).
12
+ */
13
13
  export declare class ViewTokenList implements ViewElementAttributeValue {
14
- /**
15
- * The set of tokens.
16
- */
17
- private _set;
18
- /**
19
- * Returns true if token list has no tokens set.
20
- */
21
- get isEmpty(): boolean;
22
- /**
23
- * Number of tokens.
24
- */
25
- get size(): number;
26
- /**
27
- * Checks if a given token is set.
28
- */
29
- has(name: string): boolean;
30
- /**
31
- * Returns all tokens.
32
- */
33
- keys(): Array<string>;
34
- /**
35
- * Resets the value to the given one.
36
- */
37
- setTo(value: string): this;
38
- /**
39
- * Sets a given token without affecting other tokens.
40
- */
41
- set(tokens: ArrayOrItem<string>): void;
42
- /**
43
- * Removes given token.
44
- */
45
- remove(tokens: ArrayOrItem<string>): void;
46
- /**
47
- * Removes all tokens.
48
- */
49
- clear(): void;
50
- /**
51
- * Returns a normalized tokens string.
52
- */
53
- toString(): string;
54
- /**
55
- * Returns `true` if both attributes have the same tokens.
56
- */
57
- isSimilar(other: ViewTokenList): boolean;
58
- /**
59
- * Clones the attribute value.
60
- *
61
- * @internal
62
- */
63
- _clone(): this;
64
- /**
65
- * Used by the {@link module:engine/view/matcher~Matcher Matcher} to collect matching attribute tokens.
66
- *
67
- * @internal
68
- * @param tokenPattern The matched token name pattern.
69
- * @returns An array of matching tokens.
70
- */
71
- _getTokensMatch(tokenPattern: true | string | RegExp): Array<string> | undefined;
72
- /**
73
- * Returns a list of consumables for the attribute.
74
- *
75
- * Could be filtered by the given token name.
76
- *
77
- * @internal
78
- */
79
- _getConsumables(name?: string): Array<string>;
80
- /**
81
- * Used by {@link module:engine/view/element~ViewElement#_canMergeAttributesFrom} to verify if the given attribute
82
- * can be merged without conflicts into the attribute.
83
- *
84
- * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while downcasting
85
- * an {@link module:engine/view/attributeelement~ViewAttributeElement} to merge it with other `AttributeElement`.
86
- *
87
- * @internal
88
- */
89
- _canMergeFrom(): boolean;
90
- /**
91
- * Used by {@link module:engine/view/element~ViewElement#_mergeAttributesFrom} to merge a given attribute into the attribute.
92
- *
93
- * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while down-casting
94
- * an {@link module:engine/view/attributeelement~ViewAttributeElement} to merge it with other ViewAttributeElement.
95
- *
96
- * @internal
97
- */
98
- _mergeFrom(other: ViewTokenList): void;
99
- /**
100
- * Used by {@link module:engine/view/element~ViewElement#_canSubtractAttributesOf} to verify if the given attribute
101
- * can be fully subtracted from the attribute.
102
- *
103
- * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while down-casting
104
- * an {@link module:engine/view/attributeelement~ViewAttributeElement} to unwrap the ViewAttributeElement.
105
- *
106
- * @internal
107
- */
108
- _isMatching(other: ViewTokenList): boolean;
14
+ /**
15
+ * The set of tokens.
16
+ */
17
+ private _set;
18
+ /**
19
+ * Returns true if token list has no tokens set.
20
+ */
21
+ get isEmpty(): boolean;
22
+ /**
23
+ * Number of tokens.
24
+ */
25
+ get size(): number;
26
+ /**
27
+ * Checks if a given token is set.
28
+ */
29
+ has(name: string): boolean;
30
+ /**
31
+ * Returns all tokens.
32
+ */
33
+ keys(): Array<string>;
34
+ /**
35
+ * Resets the value to the given one.
36
+ */
37
+ setTo(value: string): this;
38
+ /**
39
+ * Sets a given token without affecting other tokens.
40
+ */
41
+ set(tokens: ArrayOrItem<string>): void;
42
+ /**
43
+ * Removes given token.
44
+ */
45
+ remove(tokens: ArrayOrItem<string>): void;
46
+ /**
47
+ * Removes all tokens.
48
+ */
49
+ clear(): void;
50
+ /**
51
+ * Returns a normalized tokens string.
52
+ */
53
+ toString(): string;
54
+ /**
55
+ * Returns `true` if both attributes have the same tokens.
56
+ */
57
+ isSimilar(other: ViewTokenList): boolean;
58
+ /**
59
+ * Clones the attribute value.
60
+ *
61
+ * @internal
62
+ */
63
+ _clone(): this;
64
+ /**
65
+ * Used by the {@link module:engine/view/matcher~Matcher Matcher} to collect matching attribute tokens.
66
+ *
67
+ * @internal
68
+ * @param tokenPattern The matched token name pattern.
69
+ * @returns An array of matching tokens.
70
+ */
71
+ _getTokensMatch(tokenPattern: true | string | RegExp): Array<string> | undefined;
72
+ /**
73
+ * Returns a list of consumables for the attribute.
74
+ *
75
+ * Could be filtered by the given token name.
76
+ *
77
+ * @internal
78
+ */
79
+ _getConsumables(name?: string): Array<string>;
80
+ /**
81
+ * Used by {@link module:engine/view/element~ViewElement#_canMergeAttributesFrom} to verify if the given attribute
82
+ * can be merged without conflicts into the attribute.
83
+ *
84
+ * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while downcasting
85
+ * an {@link module:engine/view/attributeelement~ViewAttributeElement} to merge it with other `AttributeElement`.
86
+ *
87
+ * @internal
88
+ */
89
+ _canMergeFrom(): boolean;
90
+ /**
91
+ * Used by {@link module:engine/view/element~ViewElement#_mergeAttributesFrom} to merge a given attribute into the attribute.
92
+ *
93
+ * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while down-casting
94
+ * an {@link module:engine/view/attributeelement~ViewAttributeElement} to merge it with other ViewAttributeElement.
95
+ *
96
+ * @internal
97
+ */
98
+ _mergeFrom(other: ViewTokenList): void;
99
+ /**
100
+ * Used by {@link module:engine/view/element~ViewElement#_canSubtractAttributesOf} to verify if the given attribute
101
+ * can be fully subtracted from the attribute.
102
+ *
103
+ * This method is indirectly used by the {@link module:engine/view/downcastwriter~ViewDowncastWriter} while down-casting
104
+ * an {@link module:engine/view/attributeelement~ViewAttributeElement} to unwrap the ViewAttributeElement.
105
+ *
106
+ * @internal
107
+ */
108
+ _isMatching(other: ViewTokenList): boolean;
109
109
  }