@ckeditor/ckeditor5-engine 47.5.0 → 47.6.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/index.js.map +1 -1
- package/package.json +2 -2
- package/src/model/node.d.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-engine",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.6.0-alpha.0",
|
|
4
4
|
"description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "src/index.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ckeditor/ckeditor5-utils": "47.
|
|
27
|
+
"@ckeditor/ckeditor5-utils": "47.6.0-alpha.0",
|
|
28
28
|
"es-toolkit": "1.39.5"
|
|
29
29
|
},
|
|
30
30
|
"author": "CKSource (http://cksource.com/)",
|
package/src/model/node.d.ts
CHANGED
|
@@ -253,6 +253,9 @@ export declare abstract class ModelNode extends ModelTypeCheckable {
|
|
|
253
253
|
_clearAttributes(): void;
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* Represents a set of model node attributes, accepted as either a plain object
|
|
257
|
+
* with string keys or an iterable of `[ key, value ]` pairs (e.g., a `Map`).
|
|
258
|
+
*
|
|
259
|
+
* See {@link module:utils/tomap~toMap} for more details and examples.
|
|
257
260
|
*/
|
|
258
261
|
export type ModelNodeAttributes = Record<string, unknown> | Iterable<[string, unknown]>;
|